Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,491 for _this3 (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

            this.processPlugins = processPlugins;
            return this;
        }
    
        public ProjectBuildingRequest setResolveDependencies(boolean resolveDependencies) {
            this.resolveDependencies = resolveDependencies;
            return this;
        }
    
        public boolean isResolveDependencies() {
            return resolveDependencies;
        }
    
        /**
         * @since 3.2.2
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

            this.mojoDescriptor = mojoDescriptor;
            this.executionId = executionId;
            this.configuration = null;
            this.source = source;
        }
    
        public MojoExecution(MojoDescriptor mojoDescriptor, String executionId) {
            this.mojoDescriptor = mojoDescriptor;
            this.executionId = executionId;
            this.configuration = null;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/InvalidArtifactRTException.java

            this.groupId = groupId;
            this.artifactId = artifactId;
            this.version = version;
            this.type = type;
            this.baseMessage = message;
        }
    
        public InvalidArtifactRTException(
                String groupId, String artifactId, String version, String type, String message, Throwable cause) {
            super(cause);
    
            this.groupId = groupId;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphEdge.java

                String version, boolean resolved, ArtifactScopeEnum scope, String artifactUri, int depth, int pomOrder) {
            super();
            this.version = version;
            this.scope = scope;
            this.artifactUri = artifactUri;
            this.depth = depth;
            this.resolved = resolved;
            this.pomOrder = pomOrder;
        }
        // ----------------------------------------------------------------------------
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultMessageBuilder.java

        public DefaultMessageBuilder() {
            this(new StringBuilder());
        }
    
        public DefaultMessageBuilder(StringBuilder buffer) {
            this.buffer = buffer;
        }
    
        @Override
        public MessageBuilder style(String style) {
            return this;
        }
    
        @Override
        public MessageBuilder resetStyle() {
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. 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);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java

            }
    
            return this;
        }
    
        public Model getPom() {
            return pom;
        }
    
        public DefaultPluginPrefixRequest setPom(Model pom) {
            this.pom = pom;
    
            return this;
        }
    
        public List<RemoteRepository> getRepositories() {
            return repositories;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. 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;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/DefaultDependencyResolutionRequest.java

            this.filter = filter;
            return this;
        }
    
        public DependencyResolutionRequest setMavenProject(MavenProject project) {
            this.project = project;
            return this;
        }
    
        public DependencyResolutionRequest setRepositorySession(RepositorySystemSession repositorySession) {
            this.session = repositorySession;
            return this;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputSource.java

        private final List<InputSource> inputs;
    
        public InputSource(String modelId, String location) {
            this.modelId = modelId;
            this.location = location;
            this.inputs = null;
        }
    
        public InputSource(Collection<InputSource> inputs) {
            this.modelId = null;
            this.location = null;
            this.inputs = ImmutableCollections.copy(inputs);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top