Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,594 for Mathis (0.31 sec)

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

                final boolean addedToClasspath) {
            this.type = requireNonNull(type);
            this.extension = extension;
            this.classifier = classifier;
            this.directory = directory;
            this.packaging = packaging;
            this.includesDependencies = includesDependencies;
            this.language = language;
            this.addedToClasspath = addedToClasspath;
        }
    
        public String getType() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

        private final Map<Object, InputLocation> locations;
    
        public InputLocation(InputSource source) {
            this.lineNumber = -1;
            this.columnNumber = -1;
            this.source = source;
            this.locations = Collections.singletonMap(0, this);
        }
    
        public InputLocation(int lineNumber, int columnNumber) {
            this(lineNumber, columnNumber, null, null);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Sep 05 16:06:44 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlWriterRequest.java

                this.path = path;
                return this;
            }
    
            public XmlWriterRequestBuilder<T> outputStream(OutputStream outputStream) {
                this.outputStream = outputStream;
                return this;
            }
    
            public XmlWriterRequestBuilder<T> writer(Writer writer) {
                this.writer = writer;
                return this;
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Nov 17 15:52:15 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerRequest.java

                this.session = session;
                return this;
            }
    
            @Nonnull
            public ArtifactDeployerRequestBuilder repository(RemoteRepository repository) {
                this.repository = repository;
                return this;
            }
    
            public ArtifactDeployerRequestBuilder artifacts(Collection<Artifact> artifacts) {
                this.artifacts = artifacts;
                return this;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelVersionParser.java

                this.versionScheme = versionScheme;
                this.delegate = delegate;
            }
    
            DefaultVersion(VersionScheme versionScheme, String delegateValue) {
                this.versionScheme = versionScheme;
                try {
                    this.delegate = versionScheme.parseVersion(delegateValue);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionResult.java

            this.project = project;
    
            return this;
        }
    
        public MavenProject getProject() {
            return project;
        }
    
        public MavenExecutionResult setTopologicallySortedProjects(List<MavenProject> topologicallySortedProjects) {
            this.topologicallySortedProjects = topologicallySortedProjects;
    
            return this;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java

                this.pomArtifact = ArtifactUtils.copyArtifact(pomArtifact);
                this.relocatedArtifact = ArtifactUtils.copyArtifactSafe(relocatedArtifact);
                this.artifacts = ArtifactUtils.copyArtifacts(artifacts, new ArrayList<>());
                this.remoteRepositories = new ArrayList<>(remoteRepositories);
    
                this.managedVersions = managedVersions;
    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)
  8. maven-core/src/main/java/org/apache/maven/project/DuplicateProjectException.java

            this(null, null, null, message);
        }
    
        /**
         * @deprecated use {@link #DuplicateProjectException(String, File, File, String)}
         */
        @Deprecated
        public DuplicateProjectException(String message, Exception e) {
            super(message, e);
            this.projectId = null;
            this.existingProjectFile = null;
            this.conflictingProjectFile = null;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginConfigurationException.java

            super(originalMessage);
            this.pluginDescriptor = pluginDescriptor;
            this.originalMessage = originalMessage;
        }
    
        public PluginConfigurationException(PluginDescriptor pluginDescriptor, String originalMessage, Throwable cause) {
            super(originalMessage, cause);
            this.pluginDescriptor = pluginDescriptor;
            this.originalMessage = originalMessage;
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

                LifecycleStarter lifecycleStarter) {
            this.lifeCyclePluginAnalyzer = lifeCyclePluginAnalyzer;
            this.defaultLifeCycles = defaultLifeCycles;
            this.lifecycleTaskSegmentCalculator = lifecycleTaskSegmentCalculator;
            this.lifecycleExecutionPlanCalculator = lifecycleExecutionPlanCalculator;
            this.mojoExecutor = mojoExecutor;
            this.lifecycleStarter = lifecycleStarter;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 7K bytes
    - Viewed (0)
Back to top