- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 246 for relocation (0.27 sec)
-
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 Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 10:49:22 UTC 2025 - 30.4K 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 Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 25 11:08:20 UTC 2025 - 25.4K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
</field> <field> <name>relocation</name> <version>4.0.0+</version> <description> Relocation information of the artifact if it has been moved to a new group ID and/or artifact ID. </description> <association> <type>Relocation</type> </association> </field> <field>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 07 14:32:16 UTC 2025 - 132.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.api.services.xml; public interface Location { /** * Return the line number where the current event ends, * returns -1 if none is available. * @return the current line number */ int getLineNumber(); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Mar 25 10:50:01 UTC 2024 - 1.9K bytes - Viewed (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/SourcesTest.java
void testResolvedSource() { Path path = Paths.get("/tmp"); String location = "custom-location"; ModelSource source = Sources.resolvedSource(path, location); assertNotNull(source); assertInstanceOf(Sources.ResolvedPathSource.class, source); assertNull(source.getPath()); assertEquals(location, source.getLocation()); } @Test void testPathSourceFunctionality() {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 5.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderException.java
private final Location location; /** * @param message the message for the exception * @param e the exception itself */ public XmlReaderException(String message, Location location, Exception e) { super(message, e); this.location = location; } public Location getLocation() { return location; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderRequest.java
public XmlReaderRequestBuilder modelId(String modelId) { this.modelId = modelId; return this; } public XmlReaderRequestBuilder location(String location) { this.location = location; return this; } public XmlReaderRequestBuilder addDefaultEntities(boolean addDefaultEntities) { this.addDefaultEntities = addDefaultEntities;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Aug 29 12:46:27 UTC 2025 - 6.8K bytes - Viewed (0) -
compat/maven-builder-support/src/test/java/org/apache/maven/building/StringSourceTest.java
assertEquals("(memory)", source.getLocation()); source = new StringSource("Hello World!", "LOCATION"); assertEquals("LOCATION", source.getLocation()); } @Test void testGetContent() { StringSource source = new StringSource(null); assertEquals("", source.getContent()); source = new StringSource("Hello World!", "LOCATION");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputSource.java
public InputSource(String modelId, String location) { this(modelId, location, null); } public InputSource(String modelId, String location, InputLocation importedFrom) { this.modelId = modelId; this.location = location; this.inputs = null; this.importedFrom = importedFrom; } public InputSource(Collection<InputSource> inputs) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 3.8K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/StringSource.java
* * @param content The String representation, may be empty or {@code null}. * @param location The location to report for this use, may be {@code null}. */ public StringSource(CharSequence content, String location) { this.content = (content != null) ? content.toString() : ""; this.location = (location != null) ? location : "(memory)"; this.hashCode = this.content.hashCode(); } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 15 18:51:29 UTC 2025 - 3K bytes - Viewed (0)