Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getImplementationVersion (0.13 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/superpom/DefaultSuperPomProvider.java

                    options.put("xml:4.0.0", "xml:4.0.0");
    
                    String modelId = "org.apache.maven:maven-model-builder:"
                            + this.getClass().getPackage().getImplementationVersion() + ":super-pom";
                    InputSource inputSource = new InputSource();
                    inputSource.setModelId(modelId);
                    inputSource.setLocation(getClass().getResource(resource).toExternalForm());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java

        private final InputLocation location;
    
        {
            String modelId = "org.apache.maven:maven-model-builder:"
                    + this.getClass().getPackage().getImplementationVersion() + ":reporting-converter";
            InputSource inputSource = new InputSource();
            inputSource.setModelId(modelId);
            location = new InputLocation(-1, -1, inputSource);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

        private static final String MAVEN_PLUGINS = "org.apache.maven.plugins:";
    
        public static final String DEFAULT_LIFECYCLE_MODELID = "org.apache.maven:maven-core:"
                + DefaultLifecycleRegistry.class.getPackage().getImplementationVersion()
                + ":default-lifecycle-bindings";
    
        public static final InputLocation DEFAULT_LIFECYCLE_INPUT_LOCATION =
                InputLocation.of(InputSource.of(DEFAULT_LIFECYCLE_MODELID, null));
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 20.1K bytes
    - Viewed (0)
Back to top