- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TestArtifactHandler (0.12 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/repository/TestArtifactHandler.java
/** * Assists unit testing. * */ @Deprecated class TestArtifactHandler implements ArtifactHandler { private String type; private String extension; public TestArtifactHandler(String type) { this(type, type); } public TestArtifactHandler(String type, String extension) { this.type = type; this.extension = extension; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java
} @Override public Artifact createArtifact(String groupId, String artifactId, String version, String scope, String type) { return new DefaultArtifact(groupId, artifactId, version, scope, type, null, new TestArtifactHandler(type)); } @Override public ArtifactRepository createArtifactRepository( String id, String url, ArtifactRepositoryLayout repositoryLayout,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12K bytes - Viewed (0)