Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 580 for groupId1 (0.04 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/DomUtils.java

         * Convenience method to add GAV (groupId, artifactId, version) elements to a parent.
         *
         * @param parent the parent element (e.g., dependency or plugin)
         * @param groupId the groupId value
         * @param artifactId the artifactId value
         * @param version the version value (can be null to skip)
         *
         */
        public static void addGAVElements(Element parent, String groupId, String artifactId, String version) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactFactory.java

        @Nonnull
        default Artifact create(
                @Nonnull Session session, String groupId, String artifactId, String version, String extension) {
            return create(ArtifactFactoryRequest.build(session, groupId, artifactId, version, extension));
        }
    
        @Nonnull
        default Artifact create(
                @Nonnull Session session,
                String groupId,
                String artifactId,
                String version,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategy.java

         */
        private String getPluginKey(Plugin plugin) {
            String groupId = plugin.getGroupId();
            String artifactId = plugin.getArtifactId();
    
            // Default groupId for Maven plugins
            if (groupId == null && artifactId != null && artifactId.startsWith(MAVEN_PLUGIN_PREFIX)) {
                groupId = DEFAULT_MAVEN_PLUGIN_GROUP_ID;
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 37K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/test/resources/poms/depmgmt/junit-0.2.xml

        <modelVersion>4.0.0</modelVersion>
    
        <groupId>org.junit</groupId>
        <artifactId>bom</artifactId>
        <version>0.2</version>
        <packaging>pom</packaging>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.junit</groupId>
                    <artifactId>junit</artifactId>
                    <version>0.2</version>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 724 bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/test/resources/poms/validation/deprecated-dependency-metaversions-latest-and-release.xml

    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>gid</groupId>
      <artifactId>aid</artifactId>
      <version>0.1</version>
    
        <dependencies>
          <dependency>
            <groupId>test</groupId>
            <artifactId>a</artifactId>
            <version>LATEST</version>
          </dependency>
          <dependency>
            <groupId>test</groupId>
            <artifactId>b</artifactId>
            <version>RELEASE</version>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/test/resources/poms/depmgmt/distant-import.xml

        <modelVersion>4.0.0</modelVersion>
    
        <groupId>test</groupId>
        <artifactId>other</artifactId>
        <version>0.1-SNAPSHOT</version>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.junit</groupId>
                    <artifactId>bom</artifactId>
                    <version>0.1</version>
                    <type>pom</type>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 768 bytes
    - Viewed (0)
  7. compat/maven-compat/src/test/projects/project-dependencies-resolver/project-with-exclusions/pom.xml

    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.apache.maven.its.mng4034</groupId>
      <artifactId>parent</artifactId>
      <version>1.0-SNAPSHOT</version>
      <dependencies>
        <dependency>
          <groupId>org.apache.maven.its</groupId>
          <artifactId>maven-core-it-support</artifactId>
          <version>1.3</version>
          <scope>runtime</scope>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/GAVUtilsTest.java

                        <modelVersion>4.0.0</modelVersion>
                        <parent>
                            <groupId>com.example</groupId>
                            <artifactId>parent-project</artifactId>
                            <version>1.0.0</version>
                        </parent>
                        <groupId>com.example.child</groupId>
                        <artifactId>child-project</artifactId>
                        <version>2.0.0</version>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  9. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtension.java

        } // -- void setClassLoadingStrategy( String )
    
        /**
         * Set the group ID of the extension's artifact.
         *
         * @param groupId a groupId object.
         */
        public void setGroupId(String groupId) {
            this.groupId = groupId;
        } // -- void setGroupId( String )
    
        /**
         * Set the version of the extension.
         *
         * @param version a version object.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. impl/maven-core/src/test/remote-repo/org/apache/maven/its/bom/0.1/bom-0.1.pom

        <modelVersion>4.0.0</modelVersion>
    
        <groupId>org.apache.maven.its</groupId>
        <artifactId>bom</artifactId>
        <version>0.1</version>
        <packaging>pom</packaging>
    
        <name>Maven Integration Test :: Dummy BOM</name>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.apache.maven.its</groupId>
                    <artifactId>a</artifactId>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 776 bytes
    - Viewed (0)
Back to top