Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for type (0.14 sec)

  1. maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

          </dependency>
          <dependency>
            <groupId>org.apache.maven.mercury</groupId>
            <artifactId>mercury-transport-http</artifactId>
            <version>${mercuryVersion}</version>
            <type>test-jar</type>
            <scope>test</scope>
          </dependency>
          <dependency>
            <groupId>org.sonatype.plexus</groupId>
            <artifactId>plexus-plugin-manager</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  2. maven-core/src/main/resources/META-INF/maven/extension.xml

        <exportedPackage>org.codehaus.plexus.classworlds</exportedPackage>
    
        <!-- classworlds (for legacy code) -->
        <exportedPackage>org.codehaus.classworlds</exportedPackage>
    
        <!-- plexus-utils (for DOM-type fields in maven-model) -->
        <exportedPackage>org.codehaus.plexus.util.xml.Xpp3Dom</exportedPackage>
        <exportedPackage>org.codehaus.plexus.util.xml.Xpp3DomBuilder</exportedPackage>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        public ArtifactCoordinate createArtifactCoordinate(
                String groupId, String artifactId, String version, String classifier, String extension, String type) {
            return getService(ArtifactCoordinateFactory.class)
                    .create(this, groupId, artifactId, version, classifier, extension, type);
        }
    
        /**
         * Shortcut for <code>getService(CoordinateFactory.class).create(...)</code>
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 27.2K bytes
    - Viewed (0)
  4. maven-core/pom.xml

                  <exclude>org.apache.maven.toolchain.DefaultToolchain#getLog():METHOD_RETURN_TYPE_CHANGED</exclude>
                  <exclude>org.apache.maven.toolchain.DefaultToolchain#DefaultToolchain(org.apache.maven.toolchain.model.ToolchainModel,org.codehaus.plexus.logging.Logger):CONSTRUCTOR_REMOVED</exclude>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        String getBuilderId();
    
        /**
         *
         * @param toolchains all toolchains grouped by type
         * @return this request
         * @since 3.3.0
         */
        MavenExecutionRequest setToolchains(Map<String, List<ToolchainModel>> toolchains);
    
        /**
         *
         * @return all toolchains grouped by type, never {@code null}
         * @since 3.3.0
         */
        Map<String, List<ToolchainModel>> getToolchains();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  6. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

            }
    
            if (artifactId == null) {
                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The artifactId cannot be empty.");
            }
    
            if (type == null) {
                throw new InvalidArtifactRTException(groupId, artifactId, getVersion(), type, "The type cannot be empty.");
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Feb 09 19:20:54 GMT 2024
    - 14.5K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    org/codehaus/plexus/component/repository/ComponentDependency.class package org.codehaus.plexus.component.repository; public synchronized class ComponentDependency { private static final String DEAULT_DEPENDENCY_TYPE = jar; private String groupId; private String artifactId; private String type; private String version; public void ComponentDependency(); public String getArtifactId(); public void setArtifactId(String); public String getGroupId(); public void setGroupId(String); public String getType();...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 35.3K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

                String message,
                String groupId,
                String artifactId,
                String version,
                String type,
                String classifier,
                List<ArtifactRepository> remoteRepositories,
                List<String> path) {
            this(message, groupId, artifactId, version, type, classifier, remoteRepositories, path, null);
        }
    
        @SuppressWarnings("checkstyle:parameternumber")
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         */
        private boolean containsPatches(Set<PathType> types) {
            for (PathType type : types) {
                if (type instanceof JavaPathType.Modular) {
                    type = ((JavaPathType.Modular) type).rawType();
                }
                if (JavaPathType.PATCH_MODULE.equals(type)) {
                    return true;
                }
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        public ArtifactCoordinate createArtifactCoordinate(
                String groupId, String artifactId, String version, String classifier, String extension, String type) {
            return getService(ArtifactCoordinateFactory.class)
                    .create(this, groupId, artifactId, version, classifier, extension, type);
        }
    
        /**
         * Shortcut for <code>getService(CoordinateFactory.class).create(...)</code>
         *
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 21.7K bytes
    - Viewed (0)
Back to top