Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Motivation (0.18 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            for (int index = 0; index < profiles.size(); index++) {
                Profile profile = profiles.get(index);
                Activation activation = profile.getActivation();
                if (activation != null) {
                    ActivationFile file = activation.getFile();
                    if (file != null) {
                        String oldExists = file.getExists();
                        if (isNotEmpty(oldExists)) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 59.1K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            }
        }
    
        private void validate30RawProfileActivation(ModelProblemCollector problems, Activation activation, String prefix) {
            if (activation == null || activation.getFile() == null) {
                return;
            }
    
            ActivationFile file = activation.getFile();
    
            String path;
            String location;
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 65K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        @Test
        void testJdkActivation() throws Exception {
            Properties props = new Properties();
            props.put("java.version", "1.5.0_15");
    
            PomTestWrapper pom = buildPom("jdk-activation", props, null);
            assertEquals(3, pom.getMavenProject().getActiveProfiles().size());
            assertEquals("PASSED", pom.getValue("properties/jdkProperty3"));
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
Back to top