Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for toArtifacts (0.27 sec)

  1. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

            return result;
        }
    
        public static void toArtifacts(
                Collection<org.apache.maven.artifact.Artifact> artifacts,
                Collection<? extends DependencyNode> nodes,
                List<String> trail,
                DependencyFilter filter) {
            for (DependencyNode node : nodes) {
                org.apache.maven.artifact.Artifact artifact = toArtifact(node.getDependency());
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 16K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/InternalSession.java

        List<org.eclipse.aether.artifact.Artifact> toArtifacts(Collection<Artifact> artifacts);
    
        org.eclipse.aether.artifact.Artifact toArtifact(Artifact artifact);
    
        org.eclipse.aether.artifact.Artifact toArtifact(ArtifactCoordinate coord);
    
        RepositorySystemSession getSession();
    
        RepositorySystem getRepositorySystem();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:55:57 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactInstaller.java

            InternalSession session = InternalSession.from(request.getSession());
            try {
                InstallRequest installRequest =
                        new InstallRequest().setArtifacts(session.toArtifacts(request.getArtifacts()));
    
                InstallResult result = repositorySystem.install(session.getSession(), installRequest);
            } catch (InstallationException e) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/InternalSession.java

        List<org.eclipse.aether.artifact.Artifact> toArtifacts(Collection<Artifact> artifacts);
    
        org.eclipse.aether.artifact.Artifact toArtifact(Artifact artifact);
    
        org.eclipse.aether.artifact.Artifact toArtifact(ArtifactCoordinate coord);
    
        MavenSession getMavenSession();
    
        RepositorySystemSession getSession();
    
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 13:37:36 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactInstaller.java

            InternalSession session = InternalSession.from(request.getSession());
            try {
                InstallRequest installRequest =
                        new InstallRequest().setArtifacts(session.toArtifacts(request.getArtifacts()));
    
                InstallResult result = repositorySystem.install(session.getSession(), installRequest);
            } catch (InstallationException e) {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Dec 07 20:05:02 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactDeployer.java

            try {
                DeployRequest deployRequest = new DeployRequest()
                        .setRepository(session.toRepository(repository))
                        .setArtifacts(session.toArtifacts(artifacts));
    
                DeployResult result = session.getRepositorySystem().deploy(session.getSession(), deployRequest);
            } catch (DeploymentException e) {
    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)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactDeployer.java

            try {
                DeployRequest deployRequest = new DeployRequest()
                        .setRepository(session.toRepository(repository))
                        .setArtifacts(session.toArtifacts(artifacts));
    
                DeployResult result = session.getRepositorySystem().deploy(session.getSession(), deployRequest);
            } catch (DeploymentException e) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

        }
    
        private List<org.eclipse.aether.artifact.Artifact> toAetherArtifacts(final List<Artifact> pluginArtifacts) {
            return new ArrayList<>(RepositoryUtils.toArtifacts(pluginArtifacts));
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

            Set<Artifact> artifacts = new LinkedHashSet<>();
            if (result.getDependencyGraph() != null
                    && !result.getDependencyGraph().getChildren().isEmpty()) {
                RepositoryUtils.toArtifacts(
                        artifacts,
                        result.getDependencyGraph().getChildren(),
                        Collections.singletonList(project.getArtifact().getId()),
                        collectionFilter);
    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)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        @Override
        public List<org.eclipse.aether.artifact.Artifact> toArtifacts(Collection<Artifact> artifacts) {
            return artifacts == null ? null : map(artifacts, this::toArtifact);
        }
    
        @Override
        public org.eclipse.aether.artifact.Artifact toArtifact(Artifact artifact) {
            File file = getService(ArtifactManager.class)
                    .getPath(artifact)
    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