Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 280 for Packaging (0.42 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        Language requireLanguage(@Nonnull String id);
    
        /**
         * Obtain the {@link Packaging} from the specified {@code id}.
         * <p>
         * Shortcut for {@code getService(PackagingRegistry.class).require(...)}.
         *
         * @see org.apache.maven.api.services.PackagingRegistry#require(String)
         */
        @Nonnull
        Packaging requirePackaging(@Nonnull String id);
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java

    import org.slf4j.LoggerFactory;
    
    /**
     * An implementation of a workspace reader that knows how to search the Maven reactor for artifacts, either as packaged
     * jar if it has been built, or only compile output directory if packaging hasn't happened yet.
     *
     */
    @Named(ReactorReader.HINT)
    @SessionScoped
    class ReactorReader implements MavenWorkspaceReader {
        public static final String HINT = "reactor";
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:20:38 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    String intVersion = interpolate(orgVersion);
                    if (orgVersion != intVersion) {
                        model.setVersion(intVersion);
                    }
    
                    // Packaging
                    String orgPackaging = model.getPackaging();
                    String intPackaging = interpolate(orgPackaging);
                    if (orgPackaging != intPackaging) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
    
            return version;
        }
    
        public String getPackaging() {
            return getModel().getPackaging();
        }
    
        public void setPackaging(String packaging) {
            getModel().setPackaging(packaging);
        }
    
        public void setInceptionYear(String inceptionYear) {
            getModel().setInceptionYear(inceptionYear);
        }
    
        public String getInceptionYear() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  5. LICENSE

    is widely used among developers working in that language.
    
      The "System Libraries" of an executable work include anything, other
    than the work as a whole, that (a) is included in the normal form of
    packaging a Major Component, but which is not part of that Major
    Component, and (b) serves only to enable use of the work with that
    Major Component, or to implement a Standard Interface for which an
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  6. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            if (src != null) {
                if (sourceDominant || target.getPackaging() == null) {
                    target.setPackaging(src);
                    target.setLocation("packaging", source.getLocation("packaging"));
                }
            }
        }
    
        protected void mergeModel_Name(Model target, Model source, boolean sourceDominant, Map<Object, Object> context) {
            String src = source.getName();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  7. compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolutionExceptionTest.java

                    + "-Dclassifier=aClassifier -Dpackaging=jar -Dfile=/path/to/file" + LS + LS
                    + "  Alternatively, if you host your own repository you can deploy the file there: " + LS
                    + "      mvn deploy:deploy-file -DgroupId=aGroupId -DartifactId=anArtifactId"
                    + " -Dversion=aVersion -Dclassifier=aClassifier -Dpackaging=jar -Dfile=/path/to/file"
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

                if (classifier != null && !classifier.isEmpty()) {
                    sb.append(" -Dclassifier=");
                    sb.append(classifier);
                }
                sb.append(" -Dpackaging=");
                sb.append(type);
                sb.append(" -Dfile=/path/to/file");
                sb.append(LS);
    
                // If people want to deploy it
                sb.append(LS);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Apr 01 21:22:14 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/test/resources/dag.txt

    quarkus/extensions/caffeine/deployment/pom.xml
    	quarkus/core/deployment/pom.xml
    	quarkus/extensions/caffeine/runtime/pom.xml
    	quarkus/extensions/vertx-http/dev-ui-spi/pom.xml
    quarkus/integration-tests/packaging/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy/runtime/pom.xml
    	quarkus/integration-tests/shared-library/pom.xml
    	quarkus/test-framework/junit5-internal/pom.xml
    quarkus/extensions/vertx-graphql/runtime/pom.xml
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 224K bytes
    - Viewed (0)
  10. CREDITS

    is widely used among developers working in that language.
    
      The "System Libraries" of an executable work include anything, other
    than the work as a whole, that (a) is included in the normal form of
    packaging a Major Component, but which is not part of that Major
    Component, and (b) serves only to enable use of the work with that
    Major Component, or to implement a Standard Interface for which an
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Thu Mar 13 05:29:51 UTC 2025
    - 1.8M bytes
    - Viewed (0)
Back to top