Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for slashpath (0.48 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java

         * Whether the artifact should be added to the classpath depends on other
         * dependency properties.
         *
         * @return if the artifact can be added to the class path
         *
         * @deprecated A value of {@code true} does not mean that the dependency should
         * be placed on the classpath. See {@code JavaPathType} instead for better analysis.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         * Artifact type name for a JAR file to unconditionally place on the class-path.
         * If the JAR is modular, its module information are ignored.
         * This type is new in Maven 4.
         */
        String CLASSPATH_JAR = "classpath-jar";
    
        /**
         * Artifact type name for a JAR file to unconditionally place on the module-path.
         * If the JAR is not modular, then it is loaded by Java as an unnamed module.
         * This type is new in Maven 4.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    exception to the GPLv2, based on the GNU Project exception for its
    Classpath libraries, known as the GNU Classpath Exception, but only
    where Oracle has expressly included in the particular source file's
    header the words "Oracle designates this particular file as subject to
    the "Classpath" exception as provided by Oracle in the LICENSE file
    that accompanied this code."
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/java/org/apache/maven/model/inheritance/MergerTest.java

        @Test
        void testMergerPreserveLocations() throws Exception {
            try (InputStream is = getClass().getResourceAsStream("/poms/factory/complex.xml")) {
    
                InputSource inputSource = new InputSource(null, "classpath:/poms/factory/complex.xml");
                Model model = new MavenStaxReader().read(is, true, inputSource);
                InputLocation propertiesLocation = model.getLocation("properties");
                assertNotNull(propertiesLocation);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

        private Collection<String> toScopes(String classpath) {
            Collection<String> scopes = Collections.emptyList();
    
            if (classpath != null && !classpath.isEmpty()) {
                if (Artifact.SCOPE_COMPILE.equals(classpath)) {
                    scopes = Arrays.asList(Artifact.SCOPE_COMPILE, Artifact.SCOPE_SYSTEM, Artifact.SCOPE_PROVIDED);
                } else if (Artifact.SCOPE_RUNTIME.equals(classpath)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/repo-marker.txt

    This is a marker file to allow the repository to be found in the classpath....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 75 bytes
    - Viewed (0)
  7. maven-core/src/site/apt/artifact-handlers.apt

      define for each {{{../maven-model/maven.html#class_dependency}dependency type}} information on the artifact
      (classifier, extension, language) and how to manage it as dependency (add to classpath, include dependencies).
    
      They are replaced in Maven 4 with Maven 4 API Core's {{{../api/maven-api-core/apidocs/org/apache/maven/api/Type.html}Dependency Types}},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 06:12:44 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

        protected String type;
        protected ArtifactScopeEnum artifactScope;
        protected String classifier;
    
        /**
         * explanation: why this MD was chosen over its siblings
         * in the resulting structure (classpath for now)
         */
        protected String why;
    
        /** dependencies of the artifact behind this metadata */
        protected Collection<ArtifactMetadata> dependencies;
    
        /** metadata URI */
        protected String uri;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*      *##set ( $spdx = 'BSD-3-Clause' )
    #*    *##elseif ( $license.name == "Public Domain" )
    #*      *##set ( $spdx = 'Public-Domain' )
    #*    *##elseif ( $license.name == "CDDL + GPLv2 with classpath exception" )
    #*      *##set ( $spdx = 'CDDL+GPLv2-with-classpath-exception' )
    #*    *##else
    #*      *### unrecognized license will require analysis to know obligations
    #*      *##set ( $spdx = 'unrecognized' )
    #*    *##end
    #*    *###
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/project/TestMavenRepositorySystem.java

    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.artifact.resolver.ArtifactResolver;
    import org.apache.maven.repository.legacy.LegacyRepositorySystem;
    
    @Named("classpath")
    @Singleton
    @Deprecated
    public class TestMavenRepositorySystem extends LegacyRepositorySystem {
        @Inject
        private ArtifactResolver artifactResolver;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top