Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 345 for defaults (0.17 sec)

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

         * @throws IllegalArgumentException if an argument is null or invalid
         * @see #collect(DependencyCollectorRequest)
         */
        @Nonnull
        default DependencyCollectorResult collect(@Nonnull Session session, @Nonnull DependencyCoordinate root) {
            return collect(DependencyCollectorRequest.build(session, root));
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryFactory.java

    /**
     */
    @Deprecated
    public interface ArtifactRepositoryFactory {
        String ROLE = ArtifactRepositoryFactory.class.getName();
    
        String DEFAULT_LAYOUT_ID = "default";
    
        String LOCAL_REPOSITORY_ID = "local";
    
        @Deprecated
        ArtifactRepositoryLayout getLayout(String layoutId) throws UnknownRepositoryLayoutException;
    
        @Deprecated
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/pom.xml

                    <goal>parent-2</goal>
                  </goals>
                </execution>
                <execution>
                  <!-- NOTE: <id> deliberately omitted to use default value -->
                  <phase>validate</phase>
                  <goals>
                    <goal>parent-default</goal>
                  </goals>
                </execution>
              </executions>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

        }
    
        public ArtifactRepository createDefaultRemoteRepository() throws InvalidRepositoryException {
            return createRepository(
                    RepositorySystem.DEFAULT_REMOTE_REPO_URL,
                    RepositorySystem.DEFAULT_REMOTE_REPO_ID,
                    true,
                    ArtifactRepositoryPolicy.UPDATE_POLICY_DAILY,
                    false,
                    ArtifactRepositoryPolicy.UPDATE_POLICY_DAILY,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

            org.apache.maven.api.RemoteRepository remoteRepository = session.getRemoteRepository(
                    new RemoteRepository.Builder("mirror", "default", "file:target/test-classes/repo").build());
            this.session = session.withLocalRepository(localRepository)
                    .withRemoteRepositories(Collections.singletonList(remoteRepository));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 9.9K bytes
    - Viewed (2)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                    String defaultValue = ce.getAttribute("default-value", null);
                    if (value != null || defaultValue != null) {
                        XmlNodeImpl e = new XmlNodeImpl(
                                ce.getName(),
                                value,
                                defaultValue != null ? Collections.singletonMap("default-value", defaultValue) : null,
                                null,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryPolicy.java

        public static final String CHECKSUM_POLICY_WARN = "warn";
    
        public static final String CHECKSUM_POLICY_IGNORE = "ignore";
    
        public static final String DEFAULT_CHECKSUM_POLICY = CHECKSUM_POLICY_FAIL;
    
        private boolean enabled;
    
        private String updatePolicy;
    
        private String checksumPolicy;
    
        public ArtifactRepositoryPolicy() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

        private static final String MAVEN_PLUGIN_VALIDATION_EXCLUDES_KEY = "maven.plugin.validation.excludes";
    
        private static final ValidationReportLevel DEFAULT_VALIDATION_LEVEL = ValidationReportLevel.INLINE;
    
        private static final Collection<ValidationReportLevel> INLINE_VALIDATION_LEVEL = Collections.unmodifiableCollection(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/ProjectModelResolverTest.java

            final RemoteRepository remoteRepository = new RemoteRepository.Builder(
                            MavenRepositorySystem.DEFAULT_REMOTE_REPO_ID,
                            "default",
                            repoDir.toURI().toASCIIString())
                    .build();
    
            return Collections.singletonList(remoteRepository);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 03 17:49:40 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/sub/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <artifactId>nexus-proxy</artifactId>
      <dependencies>
        <!-- For App basic -->
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-container-default</artifactId>
        </dependency>
      </dependencies>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 628 bytes
    - Viewed (0)
Back to top