Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Warner (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/project/ProjectRealmCache.java

     * prior notice.
     *
     */
    public interface ProjectRealmCache {
    
        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        /**
         * CacheRecord
         */
        class CacheRecord {
    
            public ClassRealm getRealm() {
                return realm;
            }
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactStatus.java

         */
        public static final ArtifactStatus CONVERTED = new ArtifactStatus("converted", 2);
    
        /**
         * Moderate trust - it was deployed directly from a partner.
         */
        public static final ArtifactStatus PARTNER = new ArtifactStatus("partner", 3);
    
        /**
         * Moderate trust - it was deployed directly by a user.
         */
        public static final ArtifactStatus DEPLOYED = new ArtifactStatus("deployed", 4);
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

        protected File getLocalRepositoryPath() throws FileNotFoundException, URISyntaxException {
            File markerFile = getFileForClasspathResource("local-repo/marker.txt");
    
            return markerFile.getAbsoluteFile().getParentFile();
        }
    
        protected static File getFileForClasspathResource(String resource)
                throws FileNotFoundException, URISyntaxException {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  4. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/SpiService.java

     * under the License.
     */
    package org.apache.maven.api.spi;
    
    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * Marker interface to indicate services that can be provided by plugins and extensions.
     */
    @Experimental
    @Consumer
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 23:32:09 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadata.java

         *
         * @param remoteRepository the repository
         */
        void setRepository(ArtifactRepository remoteRepository);
    
        /**
         * Get the repository metadata associated with this marker.
         *
         * @return the metadata, or <code>null</code> if none loaded
         */
        Metadata getMetadata();
    
        /**
         * Set the metadata contents.
         *
         * @param metadata the metadata
         */
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

        protected File getLocalRepositoryPath() throws FileNotFoundException, URISyntaxException {
            File markerFile = getFileForClasspathResource("local-repo/marker.txt");
    
            return markerFile.getAbsoluteFile().getParentFile();
        }
    
        protected static File getFileForClasspathResource(String resource)
                throws FileNotFoundException, URISyntaxException {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/configuration-management.apt

     maven.multiproject.includes property.
     2. it works without problems only for projects with relative paths, e.g., from
     one CVS repository.. for projects from multiple SCM repositories it's harder
     to maintain the same relative links on all developer computers.
     not sure the unified source directory structure addresses this issue.
    
     Properties
    
     maven.user.config.dir (system,default=${user.home}/.m2)
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/PluginArtifactsCache.java

     * prior notice.
     *
     */
    public interface PluginArtifactsCache {
    
        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        /**
         * CacheRecord
         */
        class CacheRecord {
    
            private final List<Artifact> artifacts;
    
            public List<Artifact> getArtifacts() {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifactsCache.java

     * prior notice.
     *
     */
    public interface ProjectArtifactsCache {
    
        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        interface ArtifactsSetWithResult extends Set<Artifact> {
            DependencyResolutionResult getResult();
        }
    
        /**
         * CacheRecord
         */
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Dec 15 06:34:19 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    documented in the class descriptions for the corresponding implementation class. Finally, some Log implementations (such as the one for Log4J) require an external configuration file for the entire logging environment. This file should be prepared in a manner that is specific to the actual logging technology being used. Using the Logging Package APIs Use of the Logging Package APIs, from the perspective of an application component, consists of the following steps: Acquire a reference to an instance of...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 37.1K bytes
    - Viewed (0)
Back to top