- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setPackaging (0.04 sec)
-
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
Model target, Model source, boolean sourceDominant, Map<Object, Object> context) { String src = source.getPackaging(); if (src != null) { if (sourceDominant || target.getPackaging() == null) { target.setPackaging(src); target.setLocation("packaging", source.getLocation("packaging")); } } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 11:21:39 UTC 2025 - 99.2K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
id.append( ( getGroupId() == null ) ? "[inherited]" : getGroupId() ); id.append( ":" ); id.append( getArtifactId() ); id.append( ":" ); id.append( getPackaging() ); id.append( ":" ); id.append( ( getVersion() == null ) ? "[inherited]" : getVersion() ); return id.toString(); } @Override public String toString() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 26 03:07:35 UTC 2025 - 133.3K bytes - Viewed (0)