Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for JDK (0.01 seconds)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                validator.accept(pa.getValue());
                stk.pop();
                stk.pop();
            });
            root.map(Activation::getJdk).ifPresent(jdk -> {
                stk.push(new ActivationFrame("jdk", Optional.empty()));
                validator.accept(jdk);
                stk.pop();
            });
        }
    
        private void validate20RawPlugins(
                ModelProblemCollector problems,
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 03 15:06:05 GMT 2025
    - 66.8K bytes
    - Click Count (0)
  2. .teamcity/.mvn/wrapper/maven-wrapper.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Implementation-Title: maven-wrapper Implementation-Version: 0.5.6 Archiver-Version: Provisio Archiver Built-By: manfred Specification-Title: maven-wrapper Implementation-Vendor-Id: io.takari Created-By: Takari Inc. Build-Jdk: 1.8.0_232 Specification-Version: 0.5.6 META-INF/maven/io.takari/maven-wrapper/pom.properties version=0.5.6 groupId=io.takari artifactId=maven-wrapper org/apache/maven/wrapper/BootstrapMainStarter.class package org.apache.maven.wrapper; public synchronized...
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 49.5K bytes
    - Click Count (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    nt.performFor(pa.getValue(), "value", pa::setValue);
                });
                a.map(Activation::getJdk).ifPresent(ja -> new Interpolation(activation, interpolator::interpolate)
                        .performFor(ja, "jdk", activation::setJdk));
            }
            return interpolatedActivations;
        }
    
        @Override
        public ModelBuildingResult build(ModelBuildingRequest request, ModelBuildingResult result)
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Mar 30 23:08:08 GMT 2025
    - 55.3K bytes
    - Click Count (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            topDirectory = getCanonicalPath(topDirectory);
            cliRequest.topDirectory = topDirectory;
            // We're very early in the process, and we don't have the container set up yet,
            // so we rely on the JDK services to eventually look up a custom RootLocator.
            // This is used to compute {@code session.rootDirectory} but all {@code project.rootDirectory}
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 78.1K bytes
    - Click Count (0)
  5. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        /*MNG-1957*/
        @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"));
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 94.8K bytes
    - Click Count (0)
Back to Top