Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 234 for testartifacts (0.19 sec)

  1. 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) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. maven-api-impl/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));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java

        int SELECT_VERSION_FROM_RANGE = 10;
    
        int RESTRICT_RANGE = 11;
    
        int MANAGE_ARTIFACT_VERSION = 12;
    
        int MANAGE_ARTIFACT_SCOPE = 13;
    
        int MANAGE_ARTIFACT_SYSTEM_PATH = 14;
    
        void testArtifact(Artifact node);
    
        void startProcessChildren(Artifact artifact);
    
        void endProcessChildren(Artifact artifact);
    
        void includeArtifact(Artifact artifact);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

         * }
         * </pre>
         *
         * @param sources The set of artifacts for this publication.
         */
        void setArtifacts(Iterable<?> sources);
    
        /**
         * Returns the complete set of artifacts for this publication.
         * @return the artifacts.
         */
        MavenArtifactSet getArtifacts();
    
        /**
         * Returns the groupId for this publication.
         */
        String getGroupId();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                setDependencyArtifacts(Collections.unmodifiableSet(project.getDependencyArtifacts()));
            }
    
            if (project.getArtifacts() != null) {
                setArtifacts(Collections.unmodifiableSet(project.getArtifacts()));
            }
    
            if (project.getParentFile() != null) {
                parentFile = new File(project.getParentFile().getAbsolutePath());
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                Artifact replacement,
                VersionRange newRange) {
            for (ResolutionListener listener : listeners) {
                switch (event) {
                    case ResolutionListener.TEST_ARTIFACT:
                        listener.testArtifact(node.getArtifact());
                        break;
                    case ResolutionListener.PROCESS_CHILDREN:
                        listener.startProcessChildren(node.getArtifact());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

         * like {@code maven-project}.
         *
         * @return The plugin artifacts, never {@code null}.
         */
        public List<Artifact> getArtifacts() {
            return artifacts;
        }
    
        public void setArtifacts(List<Artifact> artifacts) {
            this.artifacts = artifacts;
    
            // clear the calculated artifactMap
            artifactMap = null;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

        @Test
        void testShouldExtractPluginArtifacts() throws Exception {
            PluginDescriptor pd = new PluginDescriptor();
    
            Artifact artifact = createArtifact("testGroup", "testArtifact", "1.0");
    
            pd.setArtifacts(Collections.singletonList(artifact));
    
            ExpressionEvaluator ee = createExpressionEvaluator(createDefaultProject(), pd, new Properties());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         * </pre>
         *
         * @return the artifacts.
         */
        IvyArtifactSet getArtifacts();
    
        /**
         * Sets the artifacts for this publication. Each supplied value is interpreted as per {@link #artifact(Object)}.
         *
         * @param sources The set of artifacts for this publication.
         */
        void setArtifacts(Iterable<?> sources);
    
        /**
         * Returns the organisation for this publication.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java

                artifacts = new LinkedHashSet<>();
            }
    
            artifacts.add(artifact);
        }
    
        public Set<Artifact> getArtifacts() {
            if (artifacts == null) {
                artifacts = new LinkedHashSet<>();
            }
    
            return artifacts;
        }
    
        public void setArtifacts(Set<Artifact> artifacts) {
            this.artifacts = artifacts;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top