Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for LOCAL (0.17 sec)

  1. maven-core/src/test/resources/org/apache/maven/project/workspace/buildFromRepo/tests/project-caching/maven-metadata-local.xml

    Britton Isbell <******@****.***> 1240982438 +0000
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 229 bytes
    - Viewed (0)
  2. maven-core/src/test/resources-settings/settings-no-pom/settings.xml

      <profiles>
        <profile>
          <id>local-profile</id>
          <properties>
            <local-profile-prop>local-profile-prop-value</local-profile-prop>
          </properties>
        </profile>
      </profiles>
    
      <activeProfiles>
        <activeProfile>local-profile</activeProfile>
      </activeProfiles>
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 24 18:50:27 GMT 2020
    - 565 bytes
    - Viewed (0)
  3. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/rootless.paramdoc.xml

          Inside ~/.m2/settings.xml:
    
          <localRepository>/path/to/local/repository</localRepository>
          ]]></configuration>
          <description>The ArtifactRepository instance referencing the local artifact
            repository.</description>
          <cliOptions>
            <cliOption>
              <key>-Dmaven.repo.local=/path/to/local/repo</key>
              <value>Override the local repository location on a per-build basis.</value>
            </cliOption>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 1.8K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java

        /**
         * Gets the local repository to use for the resolution.
         *
         * @return The local repository to use for the resolution or {@code null} if not set.
         */
        ArtifactRepository getLocalRepository();
    
        /**
         * Sets the local repository to use for the resolution.
         *
         * @param localRepository The local repository to use for the resolution.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/settings/PomConstructionWithSettingsTest.java

        }
    
        @Test
        void testSettingsNoPom() throws Exception {
            PomTestWrapper pom = buildPom("settings-no-pom");
            assertEquals("local-profile-prop-value", pom.getValue("properties/local-profile-prop"));
        }
    
        /**
         * MNG-4107
         */
        @Test
        void testPomAndSettingsInterpolation() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

                if ("local".equals(repository.getId())) {
                    addViolation(
                            problems,
                            BuilderProblem.Severity.WARNING,
                            prefix + ".id",
                            null,
                            "must not be 'local'"
                                    + ", this identifier is reserved for the local repository"
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/legacy/repository/ArtifactRepositoryFactory.java

    import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;
    
    @Deprecated
    public interface ArtifactRepositoryFactory {
    
        String DEFAULT_LAYOUT_ID = "default";
    
        String LOCAL_REPOSITORY_ID = "local";
    
        @Deprecated
        ArtifactRepositoryLayout getLayout(String layoutId) throws UnknownRepositoryLayoutException;
    
        @Deprecated
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  8. apache-maven/README.txt

      Memory:
        No minimum requirement.
      Disk:
        Approximately 10MB is required for the Maven installation itself. In addition to
        that, additional disk space will be used for your local Maven repository. The size
        of your local repository will vary depending on usage but expect at least 500MB.
      Operating System:
        Windows:
          Windows 2000 or above.
        Unix based systems (Linux, Solaris and Mac OS X) and others:
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 13 20:21:20 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                                            + ") from repository " + repository.getId() + " (" + repository.getUrl()
                                            + ") in favor of local copy");
                        }
                    } else {
                        update = updateCheckManager.isUpdateRequired(metadata, repository, file);
                    }
    
                    if (update) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  10. maven-core/plugin-manager.txt

    of a plugin whether that be from a workspace of an IDE, a local Maven repository, or a remote Maven repository. During development in an IDE we would need layered resolution approach that would allow resolution from the workspace, then the local Maven repository and then from any number of remote Maven repositories. During development from the command line we would need a layered resolution approach that would allow resolution from the local Maven repository and then from any number of remote Maven...
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
Back to top