Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for PROVIDED (0.78 sec)

  1. maven-compat/src/test/resources/projects/scope/transitive-provided-dep.xml

      <groupId>maven-test</groupId>
      <artifactId>scope-provided</artifactId>
      <version>1.0</version>
      <dependencies>
    
        <dependency>
          <groupId>maven-test-provided</groupId>
          <artifactId>scope-default</artifactId>
          <version>1.0</version>
        </dependency>
    
        <dependency>
          <groupId>maven-test-provided</groupId>
          <artifactId>scope-test</artifactId>
          <version>1.0</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 1.7K bytes
    - Viewed (0)
  2. maven-compat/src/test/resources/projects/scope/project-with-scoped-dependencies.xml

          <version>1.0</version>
          <scope>compile</scope>
        </dependency>
    
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>scope-provided</artifactId>
          <version>1.0</version>
          <scope>provided</scope>
        </dependency>
    
        <dependency>
          <groupId>maven-inherited</groupId>
          <artifactId>scope-default</artifactId>
          <version>1.0</version>
        </dependency>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 2.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

            private final Map<Key<?>, CachingProvider<?>> provided = new ConcurrentHashMap<>();
    
            public <T> void seed(Class<T> clazz, Provider<T> value) {
                provided.put(Key.get(clazz), new CachingProvider<>(value));
            }
    
            @SuppressWarnings("unchecked")
            public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) {
                Provider<?> provider = provided.computeIfAbsent(key, k -> new CachingProvider<>(unscoped));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 12:52:20 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/artifact/factory/DefaultArtifactFactory.java

            }
    
            if (Artifact.SCOPE_TEST.equals(inheritedScope)) {
                desiredScope = Artifact.SCOPE_TEST;
            }
    
            if (Artifact.SCOPE_PROVIDED.equals(inheritedScope)) {
                desiredScope = Artifact.SCOPE_PROVIDED;
            }
    
            if (Artifact.SCOPE_SYSTEM.equals(scope)) {
                // system scopes come through unchanged...
                desiredScope = Artifact.SCOPE_SYSTEM;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 6.9K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/Apache-2.0.txt

          "Work" shall mean the work of authorship, whether in Source or
          Object form, made available under the License, as indicated by a
          copyright notice that is included in or attached to the work
          (an example is provided in the Appendix below).
    
          "Derivative Works" shall mean any work, whether in Source or Object
          form, that is based on (or derived from) the Work and for which the
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 28 11:47:17 GMT 2020
    - 11.1K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Scope.java

    /**
     * Scope for a dependency
     *
     * @since 4.0.0
     */
    @Experimental
    public enum Scope {
        EMPTY(""),
        COMPILE_ONLY("compile-only"),
        COMPILE("compile"),
        RUNTIME("runtime"),
        PROVIDED("provided"),
        TEST_COMPILE_ONLY("test-compile-only"),
        TEST("test"),
        TEST_RUNTIME("test-runtime"),
        IMPORT("import"); // TODO: v4: remove import scope somehow
    
        private final String id;
    
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 1.7K bytes
    - Viewed (1)
  7. maven-core/src/site/apt/plugin-execution-isolation.apt

     in a hierarchical structure where the resources in the parent realms are
     available but the <<realm is searched first before a search is made in
     the parent realm>>.
    
     Plugins are guaranteed to be provided the resources found in
     <<<plexus.core>>> and <<<plexus.core.maven>>> realms at run-time if required.
     Plugins can state compile-time dependencies on any of the resources found in
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 03 09:12:28 GMT 2017
    - 2.3K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/ProjectClasspathTestType.java

            assertEquals("test", artifact.getScope(), "Check scope");
    
            // check all transitive deps of a provided dependency are provided scope, except for test
            checkGroupIdScope(project, "provided", "maven-test-provided");
            artifact = getArtifact(project, "maven-test-provided", "scope-runtime");
            assertEquals("provided", artifact.getScope(), "Check scope");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactScopeEnum.java

                return Artifact.SCOPE_PROVIDED;
            } else if (id == 5) {
                return Artifact.SCOPE_SYSTEM;
            } else {
                return Artifact.SCOPE_RUNTIME_PLUS_SYSTEM;
            }
        }
    
        private static final ArtifactScopeEnum[][][] COMPLIANCY_SETS = {
            {{compile}, {compile, provided, system}},
            {{test}, {compile, test, provided, system}},
            {{runtime}, {compile, runtime, system}},
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  10. maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java

        String SCOPE_COMPILE_PLUS_RUNTIME = "compile+runtime";
    
        String SCOPE_TEST = "test";
    
        String SCOPE_RUNTIME = "runtime";
    
        String SCOPE_RUNTIME_PLUS_SYSTEM = "runtime+system";
    
        String SCOPE_PROVIDED = "provided";
    
        String SCOPE_SYSTEM = "system";
    
        String SCOPE_IMPORT = "import"; // Used to import dependencyManagement dependencies
    
        String getGroupId();
    
        String getArtifactId();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Feb 09 17:47:51 GMT 2023
    - 4K bytes
    - Viewed (0)
Back to top