Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 426 for groupId2 (0.07 sec)

  1. compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

            public ProjectBuilder addDependency(String groupId, String artifactId, String version, String scope) {
                return addDependency(groupId, artifactId, version, scope, (Exclusion) null);
            }
    
            public ProjectBuilder addDependency(
                    String groupId, String artifactId, String version, String scope, Exclusion exclusion) {
                return addDependency(groupId, artifactId, version, scope, null, exclusion);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. compat/maven-compat/src/test/resources/inheritance-repo/t05/maven-test/poms/t05-a-1.0.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven-test</groupId>
      <artifactId>t05-a</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
      <repositories>
        <repository>
          <id>central</id>
          <name>Fake Maven Central Repository</name>
          <url>file://dummy</url>
        </repository>
      </repositories>
      <dependencies>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t05-b</artifactId>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 572 bytes
    - Viewed (0)
  3. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadataGenerator.java

                                if (Objects.equals(artifact.getGroupId(), groupId)
                                        && Objects.equals(artifact.getArtifactId(), artifactId)) {
                                    // here groupId and artifactId cannot be null
                                    return new PluginInfo(groupId, artifactId, goalPrefix, name);
                                } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/test/resources/poms/validation/raw-model/repository-with-expression.xml

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.apache.maven.validation</groupId>
        <artifactId>parent</artifactId>
        <version>1</version>
      </parent>
    
      <groupId>org.apache.maven.validation</groupId>
      <artifactId>project</artifactId>
      <version>1.0.0-SNAPSHOT</version>
    
      <properties>
        <x>just/some/path</x>
      </properties>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/test/resources/poms/validation/raw-model/bad-parent-version-latest.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>com.example.group</groupId>
        <artifactId>com-parent</artifactId>
        <version>LATEST</version>
      </parent>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-wrong</artifactId>
      <version>1.0</version>
    
      <description>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/test/resources/poms/depmgmt/other-import.xml

        <modelVersion>4.1.0</modelVersion>
    
        <groupId>test</groupId>
        <artifactId>other-import</artifactId>
        <version>0.1-SNAPSHOT</version>
        <packaging>pom</packaging>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>test</groupId>
                    <artifactId>mydep</artifactId>
                    <version>0.3</version>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 732 bytes
    - Viewed (0)
  7. plugin.xml

    		<delete dir="${plugins.dir}" />
    		<mkdir dir="${plugins.dir}" />
    		<!-- analysis-extension -->
    		<antcall target="install.plugin">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="plugin.groupId" value="org/codelibs/opensearch" />
    			<param name="plugin.name.prefix" value="opensearch-" />
    			<param name="plugin.name" value="analysis-extension" />
    			<param name="plugin.version" value="2.17.1" />
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 25 23:33:43 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadata.java

            @Nonnull
            final String groupId;
    
            @Nonnull
            private final String artifactId;
    
            @Nullable
            private final String goalPrefix;
    
            @Nullable
            private final String name;
    
            PluginInfo(String groupId, String artifactId, String goalPrefix, String name) {
                this.groupId = groupId;
                this.artifactId = artifactId;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

                    // Compute goal coordinates
                    String groupId, artifactId, version, goal;
                    String[] p = mojo.getGoal().trim().split(":");
                    if (p.length == 3) {
                        // <groupId>:<artifactId>:<goal>
                        groupId = p[0];
                        artifactId = p[1];
                        version = null;
                        goal = p[2];
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionException.java

        public ArtifactResolutionException(
                String message,
                String groupId,
                String artifactId,
                String version,
                String type,
                String classifier,
                List<ArtifactRepository> remoteRepositories,
                List<String> path,
                Throwable t) {
            super(message, groupId, artifactId, version, type, classifier, remoteRepositories, path, t);
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top