Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 408 for pomFile (0.24 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/VersionNotFoundException.java

                            + pomFile,
                    cause);
    
            this.projectId = projectId;
    
            this.pomFile = pomFile;
    
            this.cause = cause;
    
            this.dependency = dependency;
        }
    
        private static String formatLocationInPom(Dependency dependency) {
            return "Dependency: " + ArtifactUtils.versionlessKey(dependency.getGroupId(), dependency.getArtifactId());
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java

                }
    
                File pomFile = pomArtifact.getFile();
                if (pomFile != null && pomFile.canRead()) {
                    this.length = pomFile.length();
                    this.timestamp = pomFile.lastModified();
                } else {
                    this.length = -1;
                    this.timestamp = -1;
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelTransformerContext.java

        /**
         * Get the model based on the path when resolving the parent based on relativePath.
         *
         * @param from    the requiring model
         * @param pomFile the path to the pomFile
         * @return the model, otherwise {@code null}
         */
        Model getRawModel(Path from, Path pomFile);
    
        /**
         * Get the model from the reactor based on the groupId and artifactId when resolving reactor dependencies.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    List<File> pomFiles,
                    Set<File> aggregatorFiles,
                    boolean root,
                    boolean recursive) {
                List<Callable<InterimResult>> tasks = pomFiles.stream()
                        .map(pomFile -> ((Callable<InterimResult>)
                                () -> build(projectIndex, pomFile, concat(aggregatorFiles, pomFile), root, recursive)))
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingResult.java

         * @param pomFile The POM file from which the project was built, may be {@code null}.
         * @param problems The problems that were encountered, may be {@code null}.
         */
        DefaultProjectBuildingResult(String projectId, File pomFile, List<ModelProblem> problems) {
            this.projectId = (projectId != null) ? projectId : "";
            this.pomFile = pomFile;
            this.project = null;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/harness/PomTestWrapper.java

    import org.apache.maven.project.MavenProject;
    
    public class PomTestWrapper {
    
        private File pomFile;
    
        private JXPathContext context;
    
        private MavenProject mavenProject;
    
        static {
            JXPathContextReferenceImpl.addNodePointerFactory(new Xpp3DomPointerFactory());
        }
    
        public PomTestWrapper(File pomFile, MavenProject mavenProject) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 3.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingException.java

            super(createMessage(message, projectId, pomFile));
            this.projectId = projectId;
            this.pomFile = pomFile;
        }
    
        /**
         * @param projectId
         * @param message
         * @param pomFile   pom file location
         * @param cause
         */
        protected ProjectBuildingException(String projectId, String message, File pomFile, Throwable cause) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/artifact/InvalidDependencyVersionException.java

        private Dependency dependency;
    
        public InvalidDependencyVersionException(
                String projectId, Dependency dependency, File pomFile, InvalidVersionSpecificationException cause) {
            super(projectId, formatLocationInPom(dependency), dependency.getVersion(), pomFile, cause);
            this.dependency = dependency;
        }
    
        private static String formatLocationInPom(Dependency dependency) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/InvalidProjectVersionException.java

                String projectId,
                String locationInPom,
                String offendingVersion,
                File pomFile,
                InvalidVersionSpecificationException cause) {
            super(projectId, formatMessage(projectId, locationInPom, offendingVersion, cause), pomFile, cause);
            this.locationInPom = locationInPom;
            this.offendingVersion = offendingVersion;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/MavenExecutionException.java

    public class MavenExecutionException extends Exception {
        private File pomFile;
    
        public MavenExecutionException(String message, File pomFile) {
            super(message);
            this.pomFile = pomFile;
        }
    
        public MavenExecutionException(String message, File pomFile, ProjectBuildingException cause) {
            super(message, cause);
            this.pomFile = pomFile;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.4K bytes
    - Viewed (0)
Back to top