- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 632 for scopej (0.21 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java
@Nonnull Session session, @Nonnull DependencyCoordinates root, @Nonnull PathScope scope) { return collect( DependencyResolverRequest.build(session, DependencyResolverRequest.RequestType.COLLECT, root, scope)); } /** * Collects the transitive dependencies of some artifacts and builds a dependency graph for the given path scope.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Name.java
* @param hexCode * @param scope */ public Name ( Configuration cfg, String name, int hexCode, String scope ) { this.config = cfg; if ( name.length() > 15 ) { name = name.substring(0, 15); } this.name = name.toUpperCase(); this.hexCode = hexCode; this.scope = scope != null && scope.length() > 0 ? scope : cfg.getNetbiosScope();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
Project prj = nonNull(project, "project"); if (nonNull(scope, "scope") == ProjectScope.MAIN) { return prj.getBuild().getResources(); } else if (scope == ProjectScope.TEST) { return prj.getBuild().getTestResources(); } else { throw new IllegalArgumentException("Unsupported scope " + scope); } } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java
return scope; } public void setScope(ArtifactScopeEnum scope) { this.scope = scope; } // ------------------------------------------------------------------------------------------- @Override public String toString() { StringBuilder sb = new StringBuilder(256); sb.append("[scope=").append(scope.getScope()); if (classpath != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java
artifact = new DefaultArtifact(groupId, artifactId, versionRange, scope, type, classifier, artifactHandler); snapshotVersionRange = VersionRange.createFromVersion(snapshotResolvedVersion); snapshotArtifact = new DefaultArtifact( groupId, artifactId, snapshotVersionRange, scope, type, classifier, artifactHandler); } @Test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ScopeArtifactFilter.java
private final String scope; public ScopeArtifactFilter(String scope) { this.scope = scope; addScopeInternal(scope); } public String getScope() { return scope; } @Override public int hashCode() { int hash = 17; hash = hash * 31 + (scope != null ? scope.hashCode() : 0); return hash; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/factory/ArtifactFactory.java
Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, String classifier); Artifact createDependencyArtifact( String groupId, String artifactId, VersionRange versionRange, String type, String classifier, String scope); Artifact createDependencyArtifact(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t05/maven-test/poms/t05-b-1.1.pom
<artifactId>t05-c</artifactId> <version>1.0</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>t05-d</artifactId> <version>1.1</version> <type>jar</type> <scope>compile</scope> <optional>false</optional> </dependency> </dependencies>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 622 bytes - Viewed (0) -
compat/maven-compat/src/test/resources/local-repo/maven-test/poms/maven-test-b-1.0.pom
<artifactId>maven-test-c</artifactId> <version>1.0</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>maven-test-d</artifactId> <version>1.1</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 610 bytes - Viewed (0) -
compat/maven-model-builder/pom.xml
<artifactId>hamcrest</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-matchers</artifactId> <scope>test</scope> </dependency> <dependency>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.4K bytes - Viewed (0)