Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 594 for groupId1 (0.05 seconds)

  1. impl/maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/pom.xml

      </description>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-class-loader</artifactId>
            <version>2.1-SNAPSHOT</version>
            <dependencies>
              <dependency>
                <groupId>org.apache.maven.its.mng3906</groupId>
                <artifactId>c</artifactId>
                <version>0.1</version>
              </dependency>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.4K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java

        public UnresolvableModelException(
                String message, String groupId, String artifactId, String version, Throwable cause) {
            super(message, cause);
            this.groupId = (groupId != null) ? groupId : "";
            this.artifactId = (artifactId != null) ? artifactId : "";
            this.version = (version != null) ? version : "";
        }
    
        /**
         * Creates a new exception with specified detail message.
         *
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  3. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelCache.java

        }
    
        @Override
        public Object get(String groupId, String artifactId, String version, String tag) {
            return cache.get(session, new Key(groupId, artifactId, version, tag));
        }
    
        @Override
        public void put(String groupId, String artifactId, String version, String tag, Object data) {
            cache.put(session, new Key(groupId, artifactId, version, tag), data);
        }
    
        static class Key {
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 10 07:09:12 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  4. impl/maven-core/src/test/projects/plugin-manager/project-with-build-extensions-plugin/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.test</groupId>
      <artifactId>project-with-build-extensions-plugin</artifactId>
      <version>1.0</version>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin</artifactId>
            <version>0.1</version>
            <extensions>true</extensions>
            <executions>
              <execution>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 884 bytes
    - Click Count (0)
  5. impl/maven-core/src/test/projects/lifecycle-dependency-resolver/war/pom.xml

    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven.its.mng6300</groupId>
        <artifactId>test</artifactId>
        <version>1.0</version>
      </parent>
      <artifactId>mng6300-war</artifactId>
      <packaging>war</packaging>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <configuration>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.5K bytes
    - Click Count (0)
  6. impl/maven-core/src/test/resources-project-builder/build-extension-inheritance/pom.xml

      </description>
    
      <build>
        <extensions>
          <extension>
            <groupId>org.apache.maven.its.mng3899</groupId>
            <artifactId>a</artifactId>
            <version>0.1</version>
          </extension>
          <extension>
            <groupId>org.apache.maven.its.mng3899</groupId>
            <artifactId>c</artifactId>
            <version>0.1</version>
          </extension>
        </extensions>
      </build>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.5K bytes
    - Click Count (0)
  7. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java

         */
        public String getGroupId() {
            return (groupId != null) ? groupId : "";
        }
    
        /**
         * Sets the effective group identifier of the model.
         *
         * @param groupId The effective group identifier of the model, may be {@code null}.
         */
        public void setGroupId(String groupId) {
            this.groupId = groupId;
        }
    
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  8. 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;
            }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 37K bytes
    - Click Count (0)
  9. compat/maven-resolver-provider/src/test/resources/repo/ut/simple/artifact/1.0/artifact-1.0.pom

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>ut.simple</groupId>
        <artifactId>parent</artifactId>
        <version>1.0</version>
      </parent>
    
      <artifactId>artifact</artifactId>
    
      <name>Simple Unit Test Artifact</name>
    
      <dependencies>
        <dependency>
          <groupId>ut.simple</groupId>
          <artifactId>dependency</artifactId>
        </dependency>
        <dependency>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.6K bytes
    - Click Count (0)
  10. compat/maven-compat/src/test/resources/inheritance-repo/t06/maven-test/poms/t06-b-1.0.pom

      <groupId>maven-test</groupId>
      <artifactId>t06-b</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
      <dependencies>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t06-c</artifactId>
          <version>1.0</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>maven-test</groupId>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 622 bytes
    - Click Count (0)
Back to Top