Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for grouping (0.1 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/api/services/model/WorkspaceModelResolver.java

    import org.apache.maven.api.model.Model;
    
    /**
     * WorkspaceModelResolver
     */
    public interface WorkspaceModelResolver {
    
        Model resolveRawModel(String groupId, String artifactId, String versionConstraint);
    
        Model resolveEffectiveModel(String groupId, String artifactId, String versionConstraint);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadata.java

        static final class PluginInfo {
            final String groupId;
    
            private final String artifactId;
    
            private final String goalPrefix;
    
            private final String name;
    
            PluginInfo(String groupId, String artifactId, String goalPrefix, String name) {
                this.groupId = groupId;
                this.artifactId = artifactId;
                this.goalPrefix = goalPrefix;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 10:10:21 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelCache.java

            GavCacheKey(String groupId, String artifactId, String version, String tag) {
                this(gav(groupId, artifactId, version), tag);
            }
    
            GavCacheKey(String gav, String tag) {
                this.gav = gav;
                this.tag = tag;
                this.hash = Objects.hash(gav, tag);
            }
    
            private static String gav(String groupId, String artifactId, String version) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                    return false;
                }
    
                Key that = (Key) obj;
                return artifactId.equals(that.artifactId)
                        && groupId.equals(that.groupId)
                        && classifier.equals(that.classifier)
                        && extension.equals(that.extension)
                        && version.equals(that.version)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomBuilderTest.java

            @Override
            public ModelSource resolveModel(
                    Session session, String groupId, String artifactId, String version, Consumer<String> resolvedVersion)
                    throws ModelResolverException {
                String id = groupId + ":" + artifactId + ":" + version;
                if (id.startsWith("org.sonatype.mavenbook.multi:parent:")) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                ModelBuilderRequest request) {
            // We only check for groupId/artifactId/version/classifier cause if there is another
            // module with the same groupId/artifactId/version/classifier this will fail the build
            // earlier like "Project '...' is duplicated in the reactor.
            // So it is sufficient to check only groupId/artifactId/version/classifier and not the
            // packaging type.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

     *
     * @since 4.0.0
     */
    @Experimental
    public interface ProjectBuilderResult {
    
        /**
         * Gets the identifier of the project that could not be built. The general format of the identifier is {@code
         * <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the exception
         * is thrown so this information is merely meant to assist the user.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

            packagingRegistry = emptyPackagingRegistry;
        }
    
        private static Plugin newPlugin(String artifactId, String... goals) {
            return Plugin.newBuilder()
                    .groupId("org.apache.maven.plugins")
                    .artifactId(artifactId)
                    .executions(Arrays.stream(goals)
                            .map(goal -> PluginExecution.newBuilder()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

            packagingRegistry = emptyPackagingRegistry;
        }
    
        private static Plugin newPlugin(String artifactId, String... goals) {
            return Plugin.newBuilder()
                    .groupId("org.apache.maven.plugins")
                    .artifactId(artifactId)
                    .executions(Arrays.stream(goals)
                            .map(goal -> PluginExecution.newBuilder()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelCache.java

     * identity of a model. The tag allows for further classification of the associated data on the sole discretion of the
     * model builder.
     *
     */
    public interface ModelCache {
    
        <T> T computeIfAbsent(String groupId, String artifactId, String version, String tag, Supplier<T> data);
    
        <T> T computeIfAbsent(Source path, String tag, Supplier<T> data);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top