- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 583 for groupId2 (0.07 sec)
-
impl/maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/d/0.1/d-0.1.jar
org.apache.maven.its.mng3906 d 0.1 jar maven-core-it file:///${basedir}/repo true true . pom.xml src/** src/main/resources META-INF/maven/org.apache.maven.its.mng3906/d/pom.properties #Generated by Maven #Sun Dec 14 12:11:46 CET 2008 version=0.1 groupId=org.apache.maven.its.mng3906 artifactId=d...Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
if (orgModelVersion != intModelVersion) { model.setModelVersion(intModelVersion); } visit(model.getParent()); // GroupId String orgGroupId = model.getGroupId(); String intGroupId = interpolate(orgGroupId); if (orgGroupId != intGroupId) { model.setGroupId(intGroupId);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 43.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableMultimap.java
* * <p><a id="iteration"></a> * * <p><b>Key-grouped iteration.</b> All view collections follow the same iteration order. In all * current implementations, the iteration order always keeps multiple entries with the same key * together. Any creation method that would customarily respect insertion order (such as {@link * #copyOf(Multimap)}) instead preserves key-grouped order by inserting entries for an existing key
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Dec 09 15:58:48 UTC 2025 - 27.1K bytes - Viewed (0) -
impl/maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/a/0.1/a-0.1.jar
org.apache.maven.its.mng3906 a 0.1 jar maven-core-it file:///${basedir}/repo true true . pom.xml src/** src/main/resources META-INF/maven/org.apache.maven.its.mng3906/a/pom.properties #Generated by Maven #Sun Dec 14 12:10:53 CET 2008 version=0.1 groupId=org.apache.maven.its.mng3906 artifactId=a...Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
impl/maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/b/0.1/b-0.1.jar
org.apache.maven.its.mng3906 b 0.1 jar maven-core-it file:///${basedir}/repo true true . pom.xml src/** src/main/resources META-INF/maven/org.apache.maven.its.mng3906/b/pom.properties #Generated by Maven #Sun Dec 14 12:11:28 CET 2008 version=0.1 groupId=org.apache.maven.its.mng3906 artifactId=b...Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java
protected void assertPluginDescriptor( MojoDescriptor mojoDescriptor, String groupId, String artifactId, String version) { assertNotNull(mojoDescriptor); PluginDescriptor pd = mojoDescriptor.getPluginDescriptor(); assertNotNull(pd); assertEquals(groupId, pd.getGroupId()); assertEquals(artifactId, pd.getArtifactId()); assertEquals(version, pd.getVersion());Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 8.3K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
String src = source.getGroupId(); if (src != null) { if (sourceDominant || target.getGroupId() == null) { target.setGroupId(src); target.setLocation("groupId", source.getLocation("groupId")); } } } protected void mergeModel_ArtifactId( Model target, Model source, boolean sourceDominant, Map<Object, Object> context) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 11:21:39 UTC 2025 - 99.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMultimap.java
* * <p><a id="iteration"></a> * * <p><b>Key-grouped iteration.</b> All view collections follow the same iteration order. In all * current implementations, the iteration order always keeps multiple entries with the same key * together. Any creation method that would customarily respect insertion order (such as {@link * #copyOf(Multimap)}) instead preserves key-grouped order by inserting entries for an existing key
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Dec 09 15:58:48 UTC 2025 - 28.1K bytes - Viewed (0) -
README.md
`33.5.0-android`. For more about depending on Guava, see [using Guava in your build]. To add a dependency on Guava using Maven, use the following: ```xml <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>33.5.0-jre</version> <!-- or, for Android: --> <version>33.5.0-android</version> </dependency> ``` To add a dependency using Gradle:
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 16 22:01:32 UTC 2025 - 6.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
} return ""; } static String getGroupId(Model model) { String groupId = model.getGroupId(); if (groupId == null && model.getParent() != null) { groupId = model.getParent().getGroupId(); } return groupId; } static String getVersion(Model model) { String version = model.getVersion();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0)