Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 523 for Properties (0.23 sec)

  1. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorReaderDelegate.java

                properties.put("license." + i + ".name", license.getName());
                properties.put("license." + i + ".url", license.getUrl());
                properties.put("license." + i + ".comments", license.getComments());
                properties.put("license." + i + ".distribution", license.getDistribution());
            }
    
            result.setProperties(properties);
    
            setArtifactProperties(result, model);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultType.java

            Map<String, String> properties = new HashMap<>();
            properties.put(ArtifactProperties.TYPE, id);
            properties.put(ArtifactProperties.LANGUAGE, language.id());
            properties.put(MavenArtifactProperties.INCLUDES_DEPENDENCIES, Boolean.toString(includesDependencies));
            properties.put(
                    MavenArtifactProperties.CONSTITUTES_BUILD_PATH,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java

            assertNotNull(result.getProblems());
            assertEquals(0, result.getProblems().size());
        }
    
        @Test
        void testBuildRequestWithUserToolchains() throws Exception {
            Properties props = new Properties();
            props.put("key", "user_value");
            ToolchainModel toolchain = new ToolchainModel();
            toolchain.setType("TYPE");
            toolchain.setProvides(props);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/ClasspathManifest.kt

        }
    
        private
        fun createProperties() = Properties().also { properties ->
            properties["runtime"] = runtime.get().joinToString(",")
            properties["projects"] = projects.get().joinToString(",")
            optionalProjects.get().takeIf { it.isNotEmpty() }?.let { optional ->
                properties["optional"] = optional.joinForProperties()
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:26:58 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        MavenExecutionRequest setSystemProperties(Properties systemProperties);
    
        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @return The system properties, never {@code null}.
         */
        Properties getSystemProperties();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/ArtifactDescriptorReaderDelegate.java

                properties.put("license." + i + ".name", license.getName());
                properties.put("license." + i + ".url", license.getUrl());
                properties.put("license." + i + ".comments", license.getComments());
                properties.put("license." + i + ".distribution", license.getDistribution());
            }
    
            result.setProperties(properties);
    
            setArtifactProperties(result, model);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

            }
    
            return this;
        }
    
        @Override
        public Properties getSystemProperties() {
            if (systemProperties == null) {
                systemProperties = new Properties();
            }
    
            return systemProperties;
        }
    
        @Override
        public DefaultModelBuildingRequest setSystemProperties(Properties systemProperties) {
            if (systemProperties != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

    import org.gradle.internal.properties.PropertyValue
    import org.gradle.internal.properties.PropertyVisitor
    import org.gradle.internal.properties.annotations.AbstractPropertyAnnotationHandler
    import org.gradle.internal.properties.annotations.DefaultTypeMetadataStore
    import org.gradle.internal.properties.annotations.MissingPropertyAnnotationHandler
    import org.gradle.internal.properties.annotations.PropertyMetadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/configuration-management.apt

    +-----+
    ${maven.home}
         |
         +--- maven.properties
    +-----+
    
    * Group configuration
    
     As far as properties go for an entire build the maven.properties could be placed at
     the top of the group but I'm not really sure how this might work. There could probably
     also be a directory for plugins.xml and maven.properties.
    
    * Project configuration
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PropertiesAsMap.java

    import java.util.NoSuchElementException;
    import java.util.Set;
    
    class PropertiesAsMap extends AbstractMap<String, String> {
    
        private final Map<Object, Object> properties;
    
        PropertiesAsMap(Map<Object, Object> properties) {
            this.properties = properties;
        }
    
        @Override
        public Set<Entry<String, String>> entrySet() {
            return new AbstractSet<Entry<String, String>>() {
                @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top