Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for group (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixResult.java

    /**
     * Describes the result of a plugin prefix resolution request.
     *
     * @since 3.0
     */
    public interface PluginPrefixResult {
    
        /**
         * The resolved group id for the plugin.
         *
         * @return The resolved group id for the plugin, never {@code null}.
         */
        String getGroupId();
    
        /**
         * The resolved artifact id for the plugin.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/configuration-management.apt

    Configuration levels in maven
    
     In maven configuration control happens on four differ levels: the site level, the group level,
     the project level, and the user level. On the site level you can configure maven for all users
     utilizing the local installation, the group level allows configuration management for all the projects
     that belong to the same group, the project level allows configuration management at
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

        }
    
        /**
         * Searches an artifact of the given group and artifact identifiers, and returns its path
         *
         * @param group the group identifier to search
         * @param artifact the artifact identifier to search
         * @return path to the desired artifact, or {@code null} if not found
         */
        private Path findArtifactPath(String group, String artifact) throws IOException {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestMavenWorkspaceReader.java

        }
    
        @Override
        public Model findModel(Artifact artifact) {
            if (GROUP_ID.equals(artifact.getGroupId())
                    && ARTIFACT_ID.equals(artifact.getArtifactId())
                    && VERSION.equals(artifact.getVersion())) {
                Model m = new Model();
                m.setArtifactId(ARTIFACT_ID);
                m.setGroupId(GROUP_ID);
                m.setVersion(VERSION);
                Repository repository = new Repository();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Feb 05 12:17:09 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

          Maven.
        </description>
      </expression>
      <expression>
        <syntax>project.artifact</syntax>
        <configuration>
          <![CDATA[
    <groupId>project.group</groupId>
    <artifactId>project-artifact</artifactId>
    <version>0.0.0.0</version>
    <packaging>type</packaging>
        ]]></configuration>
        <description> This is the Artifact instance created from the essential project
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 5.6K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/maven/conf/settings.xml

       | This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e.
       | when invoking a command line like "mvn prefix:goal". Maven will automatically add the group identifiers
       | "org.apache.maven.plugins" and "org.codehaus.mojo" if these are not already contained in the list.
       |-->
      <pluginGroups>
        <!-- pluginGroup
         | Specifies a further group identifier to use for plugin lookup.
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java

            this.remainingProjects = remainingProjects;
        }
    
        /**
         * Returns the projects that still need to be built when resuming.
         * @return A list containing the group and artifact id of the projects.
         */
        public List<String> getRemainingProjects() {
            return this.remainingProjects;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelProblemUtils.java

            }
            return toId(groupId, artifactId, version);
        }
    
        /**
         * Creates a user-friendly artifact id from the specified coordinates.
         *
         * @param groupId The group id, may be {@code null}.
         * @param artifactId The artifact id, may be {@code null}.
         * @param version The version, may be {@code null}.
         * @return The user-friendly artifact id, never {@code null}.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/GroupRepositoryMetadata.java

     */
    package org.apache.maven.artifact.repository.metadata;
    
    import java.util.Iterator;
    import java.util.List;
    
    import org.apache.maven.artifact.repository.ArtifactRepository;
    
    /**
     * Metadata for the group directory of the repository.
     *
     */
    @Deprecated
    public class GroupRepositoryMetadata extends AbstractRepositoryMetadata {
        private final String groupId;
    
        public GroupRepositoryMetadata(String groupId) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmConstituent.java

    import java.io.File;
    
    /**
     * Describes a constituent of a class realm.
     *
     */
    public interface ClassRealmConstituent {
    
        /**
         * Gets the group id of the constituent's artifact.
         *
         * @return The group id, never {@code null}.
         */
        String getGroupId();
    
        /**
         * Gets the artifact id of the constituent's artifact.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
Back to top