Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,358 for artifact1 (0.25 sec)

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

                return realm;
            }
    
            public List<Artifact> getArtifacts() {
                return artifacts;
            }
    
            private final ClassRealm realm;
    
            private final List<Artifact> artifacts;
    
            public CacheRecord(ClassRealm realm, List<Artifact> artifacts) {
                this.realm = realm;
                this.artifacts = artifacts;
            }
        }
    
        /**
         * A cache key.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/transforms/Minify.kt

    import gradlebuild.basics.classanalysis.addJarEntry
    import org.gradle.api.artifacts.transform.CacheableTransform
    import org.gradle.api.artifacts.transform.InputArtifact
    import org.gradle.api.artifacts.transform.TransformAction
    import org.gradle.api.artifacts.transform.TransformOutputs
    import org.gradle.api.artifacts.transform.TransformParameters
    import org.gradle.api.file.FileSystemLocation
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginArtifactsCache.java

        class CacheRecord {
    
            private final List<Artifact> artifacts;
    
            public List<Artifact> getArtifacts() {
                return artifacts;
            }
    
            public PluginResolutionException getException() {
                return exception;
            }
    
            private final PluginResolutionException exception;
    
            public CacheRecord(List<Artifact> artifacts) {
                this.artifacts = artifacts;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactDeployer.java

            Collection<Artifact> artifacts = nonNull(request.getArtifacts(), "request.artifacts");
            RemoteRepository repository = nonNull(request.getRepository(), "request.repository");
            try {
                DeployRequest deployRequest = new DeployRequest()
                        .setRepository(session.toRepository(repository))
                        .setArtifacts(session.toArtifacts(artifacts));
    
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Dec 15 06:34:19 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

            private final Set<String> keys = new HashSet<>();
    
            ReactorDependencyFilter(Collection<Artifact> artifacts) {
                for (Artifact artifact : artifacts) {
                    String key = ArtifactUtils.key(artifact);
                    keys.add(key);
                }
            }
    
            public boolean accept(DependencyNode node, List<DependencyNode> parents) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/artifact/factory/ArtifactFactory.java

                boolean optional);
    
        Artifact createBuildArtifact(String groupId, String artifactId, String version, String packaging);
    
        Artifact createProjectArtifact(String groupId, String artifactId, String version);
    
        Artifact createParentArtifact(String groupId, String artifactId, String version);
    
        Artifact createPluginArtifact(String groupId, String artifactId, VersionRange versionRange);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManager.java

         * @param artifacts The artifacts to add to the class realm, may be {@code null}. Unresolved artifacts (i.e. with a
         *            missing file) will automatically be excluded from the realm.
         * @return The new project realm, never {@code null}.
         */
        ClassRealm createProjectRealm(Model model, List<Artifact> artifacts);
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ExclusionArtifactFilter.java

        public boolean include(Artifact artifact) {
            return predicates.stream().noneMatch(p -> p.test(artifact));
        }
    
        private static Predicate<Artifact> toPredicate(Exclusion exclusion) {
            PathMatcher groupId = FileSystems.getDefault().getPathMatcher("glob:" + exclusion.getGroupId());
            PathMatcher artifactId = FileSystems.getDefault().getPathMatcher("glob:" + exclusion.getArtifactId());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Aug 29 15:25:58 GMT 2023
    - 3K bytes
    - Viewed (0)
  9. api/maven-api-plugin/src/main/mdo/plugin.mdo

                this case, you want the user to modify {@code &lt;build&gt;&lt;finalName/&gt;&lt;/build&gt;} rather
                than specifying a value for finalName directly in the plugin configuration section. It is also useful to
                ensure that - for example - a List-typed parameter which expects items of type Artifact doesn't get a List
                full of Strings.
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/artifact/FatArtifactTraverser.java

    package org.apache.maven.internal.impl.resolver.artifact;
    
    import org.eclipse.aether.collection.DependencyCollectionContext;
    import org.eclipse.aether.collection.DependencyTraverser;
    import org.eclipse.aether.graph.Dependency;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * A dependency traverser that excludes the dependencies of fat artifacts from the traversal. Fat artifacts are
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
Back to top