Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for system (0.24 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

        private Artifact artifact;
    
        private List<ArtifactRepository> remoteRepositories;
    
        private final String originalMessage;
    
        private final String path;
    
        static final String LS = System.lineSeparator();
    
        @SuppressWarnings("checkstyle:parameternumber")
        protected AbstractArtifactResolutionException(
                String message,
                String groupId,
                String artifactId,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.1K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                    // TODO should this be inside the above check?
                    // touch file so that this is not checked again until interval has passed
                    if (file.exists()) {
                        file.setLastModified(System.currentTimeMillis());
                    }
                }
            }
    
            try {
                mergeMetadata(metadata, remoteRepositories, localRepo);
            } catch (RepositoryMetadataStoreException e) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    "org.apache.maven.its.plugins:maven-it-plugin:0.1:java", session, session.getCurrentProject());
            XmlNode dom = MojoDescriptorCreator.convert(mojoDescriptor).getDom();
            System.out.println(dom);
        }
    
        MavenExecutionPlan calculateExecutionPlan(MavenSession session, String... tasks) throws Exception {
            List<TaskSegment> taskSegments =
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
Back to top