Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for artifact (0.05 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java

     * and downloads the artifact in the local repository.  This operation returns a {@link DownloadedArtifact}.
     * </p>
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Artifact {
        /**
         * {@return a unique identifier for this artifact}
         * The identifier is composed of groupId, artifactId, extension, classifier, and version.
         *
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-09-28 09:03
    - 4.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @param artifact the artifact for which to get a local path
         * @return local path associated to the given artifact, or {@code null} if none
         *
         * @see org.apache.maven.api.services.LocalRepositoryManager#getPathForLocalArtifact(Session, LocalRepository, Artifact)
         */
        Path getPathForLocalArtifact(@Nonnull Artifact artifact);
    
        /**
         * Gets the relative path for an artifact cached from a remote repository.
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-19 14:33
    - 36.2K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/LocalRepositoryManager.java

         * Gets the relative path for a locally installed artifact.
         * Note that the artifact need not actually exist yet at
         * the returned location, the path merely indicates where
         * the artifact would eventually be stored.
         *
         * @param session The session to use, must not be {@code null}.
         * @param artifact The artifact for which to determine the path, must not be {@code null}.
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-07 00:45
    - 3.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

        public static Map<String, String> beanToMap(final Artifact artifact) {
            final Map<String, String> item = new HashMap<>();
            item.put("type", artifact.getType().getId());
            item.put("id", artifact.getName() + ":" + artifact.getVersion());
            item.put("name", artifact.getName());
            item.put("version", artifact.getVersion());
            item.put("url", artifact.getUrl());
            return item;
        }
    
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 9.9K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/ProducedArtifact.java

    import org.apache.maven.api.annotations.Immutable;
    
    /**
     * An {@link Artifact} that is being produced by a {@link Project} during the build.
     *
     * <p>Produced artifacts includes:</p><ul>
     *     <li>{@linkplain Project#getPomArtifact() the project POM artifact}</li>
     *     <li>{@linkplain Project#getMainArtifact() the main artifact}</li>
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-08-27 21:13
    - 1.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

        public void test_getArtifactFromFileName1() {
            Artifact artifact = pluginHelper.getArtifactFromFileName(ArtifactType.DATA_STORE, "fess-ds-atlassian-13.2.0.jar");
            assertEquals("fess-ds-atlassian", artifact.getName());
            assertEquals("13.2.0", artifact.getVersion());
        }
    
        public void test_getArtifactFromFileName2() {
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 5.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactFactory.java

        /**
         * Creates an artifact.
         *
         * @param request the request holding artifact creation parameters
         * @return an {@code Artifact}, never {@code null}
         * @throws IllegalArgumentException if {@code request} is null or {@code request.session} is null or invalid
         */
        @Nonnull
        Artifact create(@Nonnull ArtifactFactoryRequest request);
    
        @Nonnull
        default Artifact create(
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-08-27 21:13
    - 3.3K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

         * Collects the transitive dependencies of some artifacts and builds a dependency graph for the given path scope.
         * Note that this operation is only concerned about determining the coordinates of the transitive dependencies and
         * does not actually resolve the artifact files.
         *
         * @param session the {@link Session}, must not be {@code null}
         * @param artifact the {@link Artifact}, must not be {@code null}
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-10-16 14:15
    - 9.4K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         * Artifact type name for a JAR file containing test classes. If the main artifact is placed on the class path
         * ({@value #JAR} or {@value #CLASSPATH_JAR} types), then the test artifact will also be placed on the class path.
         * Otherwise, if the main artifact is placed on the module path ({@value #JAR} or {@value #MODULAR_JAR} types),
         * then the test artifact will be added using {@code --patch-module} option.
         */
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-03 11:22
    - 6.5K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

            List<ProducedArtifact> artifacts = getArtifacts();
            return artifacts.size() == 2 ? Optional.of(artifacts.get(1)) : Optional.empty();
        }
    
        /**
         * {@return the project artifacts as immutable list}. Elements are the project POM artifact and the artifact
         * produced by this project build, if applicable. Hence, the returned list may have one or two elements
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-27 11:07
    - 10.6K bytes
    - Viewed (0)
Back to top