Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,421 for groupID (0.14 sec)

  1. maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml

        <extensions>
          <extension>
            <groupId>org.apache.maven.its.mng3899</groupId>
            <artifactId>b</artifactId>
            <version>0.1</version>
          </extension>
          <extension>
            <!-- project extensions should override inherited extension with equal gid:aid -->
            <groupId>org.apache.maven.its.mng3899</groupId>
            <artifactId>a</artifactId>
            <version>0.2</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  2. maven-artifact/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven</artifactId>
        <version>4.0.0-beta-4-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-artifact</artifactId>
    
      <name>Maven Artifact</name>
    
      <dependencies>
        <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter-api</artifactId>
          <scope>test</scope>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

        }
    
        private void validateIdentity() {
            if (empty(groupId)) {
                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The groupId cannot be empty.");
            }
    
            if (artifactId == null) {
                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The artifactId cannot be empty.");
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 19:20:54 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/execution-configuration/pom.xml

    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>org.sonatype.nexus</groupId>
        <artifactId>nexus</artifactId>
        <version>1.3.0-SNAPSHOT</version>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.modello</groupId>
                    <artifactId>modello-maven-plugin</artifactId>
                    <version>1.0-alpha-21</version>
                    <executions>
                        <execution>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/javadocJar/some-thing/pom.xml

        <groupId>util</groupId>
        <artifactId>util</artifactId>
        <version>2.5</version>
        <packaging>jar</packaging>
    
        <dependencies>
            <dependency>
                <groupId>commons-lang</groupId>
                <artifactId>commons-lang</artifactId>
                <version>2.6</version>
            </dependency>
            <dependency>
                <groupId>junit</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/pom.xml

          <build>
            <pluginManagement>
              <plugins>
                <plugin>
                  <groupId>org.apache.maven.its.plugins</groupId>
                  <artifactId>maven-it-plugin-class-loader</artifactId>
                  <dependencies>
                    <dependency>
                      <groupId>org.apache.maven.its.mng2174</groupId>
                      <artifactId>a</artifactId>
                      <version>0.1</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/data/MavenDependencyKey.java

    public class MavenDependencyKey {
        private static final String KEY_SEPARATOR = ":";
        private final String groupId;
        private final String artifactId;
        private final String type;
        private final String classifier;
    
        public MavenDependencyKey(String groupId, String artifactId, String type, String classifier) {
            this.groupId = groupId;
            this.artifactId = artifactId;
            this.type = type;
            this.classifier = classifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/ProjectSorterTest.java

        }
    
        private Plugin createPlugin(String groupId, String artifactId, String version) {
            Plugin plugin = new Plugin();
            plugin.setGroupId(groupId);
            plugin.setArtifactId(artifactId);
            plugin.setVersion(version);
            return plugin;
        }
    
        private Extension createExtension(String groupId, String artifactId, String version) {
            Extension extension = new Extension();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/maven/MavenProjectsCreatorSpec.groovy

    <project>
      <modelVersion>4.0.0</modelVersion>
      <packaging>pom</packaging>
      <groupId>org.gradle</groupId>
      <artifactId>test</artifactId>
      <version>0</version>
    
      <modules>
        <module>commons</module>
      </modules>
    </project>
    """
    
            temp.file("commons/pom.xml").text = """\
    <project>
      <parent>
        <groupId>org.gradle</groupId>
        <artifactId>test</artifactId>
        <version>0</version>
      </parent>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. maven-core/src/test/projects/project-builder/MNG-6983/pom.xml

        <parent>
            <groupId>org.example</groupId>
            <artifactId>parent</artifactId>
            <version>0.0.1-SNAPSHOT</version>
            <relativePath>./parent-pom.xml</relativePath>
        </parent>
    
        <artifactId>child</artifactId>
        <packaging>jar</packaging>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>${codehaus.groupId}</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Oct 03 10:51:51 UTC 2020
    - 753 bytes
    - Viewed (0)
Back to top