- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 783 for Relocation (0.1 sec)
-
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/DistributionManagementArtifactRelocationSource.java
if (distMgmt != null) { Relocation relocation = distMgmt.getRelocation(); if (relocation != null) { Artifact result = new RelocatedArtifact( artifactDescriptorResult.getRequest().getArtifact(), relocation.getGroupId(), relocation.getArtifactId(), null, null,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/UserPropertiesArtifactRelocationSource.java
} } private static class Relocations { private final List<Relocation> relocations; private Relocations(List<Relocation> relocations) { this.relocations = relocations; } private Relocation getRelocation(Artifact artifact) { return relocations.stream() .filter(r -> r.predicate.test(artifact))
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.1K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/RelocationTest.java
/** * Tests {@code Relocation}. * */ class RelocationTest { @Test void testHashCodeNullSafe() { new Relocation().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Relocation().equals(null)); new Relocation().equals(new Relocation()); } @Test void testEqualsIdentity() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
} if (relocation != null) { if (relocation.getGroupId() != null) { artifact.setGroupId(relocation.getGroupId()); relocatedArtifact = artifact; project.setGroupId(relocation.getGroupId()); } if (relocation.getArtifactId() != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenArtifactRelocationSource.java
import org.eclipse.aether.artifact.Artifact; import org.eclipse.aether.resolution.ArtifactDescriptorException; import org.eclipse.aether.resolution.ArtifactDescriptorResult; /** * Maven relocation source. * Note: implementations of this component should avoid the "default" name (has special meaning in Eclipse Sisu) and * explicitly order implementations using Sisu priorities. * * @since 4.0.0
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
pom.xml
<include>org.dbflute:dbflute-runtime</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.dbflute</pattern> <shadedPattern>org.codelibs.fess.crawler.dbflute</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 2.2K bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/resources/META-INF/sisu/javax.inject.Named
org.apache.maven.repository.internal.SnapshotMetadataGeneratorFactory org.apache.maven.repository.internal.VersionsMetadataGeneratorFactory org.apache.maven.repository.internal.relocation.DistributionManagementArtifactRelocationSource org.apache.maven.repository.internal.relocation.UserPropertiesArtifactRelocationSource
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 838 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
if (model.getDistributionManagement() != null && model.getDistributionManagement().getRelocation() != null) { // keep relocation only builder.distributionManagement(DistributionManagement.newBuilder() .relocation(model.getDistributionManagement().getRelocation()) .build()); } // only keep repositories other than 'central'
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/loong64.s
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Mar 22 18:50:59 UTC 2023 - 434 bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
* so even plugins will get relocated artifacts) relocation. * <br/> * For example, * <pre>maven.relocations.entries = org.foo:*:*>, \\<br/> org.here:*:*>org.there:*:*, \\<br/> javax.inject:javax.inject:1>>jakarta.inject:jakarta.inject:1.0.5</pre> * means: 3 entries, ban <code>org.foo group</code> (exactly, so <code>org.foo.bar</code> is allowed),
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:24:08 UTC 2024 - 14K bytes - Viewed (0)