Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for uniqueVersion (0.25 sec)

  1. maven-core/src/test/resources-project-builder/limited-inheritance/pom.xml

          <name>parent-distros</name>
          <url>ssh://parent.url/distros</url>
          <uniqueVersion>false</uniqueVersion>
          <layout>legacy</layout>
        </repository>
        <snapshotRepository>
          <id>parent-snaps</id>
          <name>parent-snaps</name>
          <url>ssh://parent.url/snaps</url>
          <uniqueVersion>false</uniqueVersion>
          <layout>legacy</layout>
        </snapshotRepository>
        <site>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepositoryFactory.java

                String id, String url, String layoutId, boolean uniqueVersion) throws UnknownRepositoryLayoutException {
            return injectSession(factory.createDeploymentArtifactRepository(id, url, layoutId, uniqueVersion), false);
        }
    
        public ArtifactRepository createDeploymentArtifactRepository(
                String id, String url, ArtifactRepositoryLayout repositoryLayout, boolean uniqueVersion) {
            return injectSession(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/repository/DefaultArtifactRepositoryFactory.java

                String id, String url, String layoutId, boolean uniqueVersion) throws UnknownRepositoryLayoutException {
            ArtifactRepositoryLayout layout = repositoryLayouts.get(layoutId);
    
            checkLayout(id, layoutId, layout);
    
            return createDeploymentArtifactRepository(id, url, layout, uniqueVersion);
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/repository/ArtifactRepositoryFactory.java

        @Deprecated
        ArtifactRepository createDeploymentArtifactRepository(String id, String url, String layoutId, boolean uniqueVersion)
                throws UnknownRepositoryLayoutException;
    
        ArtifactRepository createDeploymentArtifactRepository(
                String id, String url, ArtifactRepositoryLayout layout, boolean uniqueVersion);
    
        ArtifactRepository createArtifactRepository(
                String id,
                String url,
    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)
  5. maven-compat/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryFactory.java

        @Deprecated
        ArtifactRepository createDeploymentArtifactRepository(String id, String url, String layoutId, boolean uniqueVersion)
                throws UnknownRepositoryLayoutException;
    
        ArtifactRepository createDeploymentArtifactRepository(
                String id, String url, ArtifactRepositoryLayout layout, boolean uniqueVersion);
    
        ArtifactRepository createArtifactRepository(
                String id,
                String url,
    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)
  6. maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java

         * @param url           the URL of the repository
         * @param layout        the layout of the repository
         * @param uniqueVersion whether to assign each snapshot a unique version
         */
        public DefaultArtifactRepository(String id, String url, ArtifactRepositoryLayout layout, boolean uniqueVersion) {
            super(id, url);
            this.layout = layout;
        }
    
        /**
         * Create a remote download repository.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml

          <name>distros</name>
        </repository>
        <snapshotRepository>
          <url>https://project.url/snaps</url>
          <id>project.snaps</id>
          <name>snaps</name>
          <uniqueVersion>false</uniqueVersion>
        </snapshotRepository>
        <site>
          <url>https://project.url/site</url>
          <id>project.site</id>
          <name>docs</name>
        </site>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml

          <name>distros</name>
        </repository>
        <snapshotRepository>
          <url>https://project.url/snaps</url>
          <id>project.snaps</id>
          <name>snaps</name>
          <uniqueVersion>false</uniqueVersion>
        </snapshotRepository>
        <site>
          <url>https://project.url/site</url>
          <id>project.site</id>
          <name>docs</name>
        </site>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.8K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertNull(pom.getValue("distributionManagement/repository/name"));
            assertEquals(true, pom.getValue("distributionManagement/repository/uniqueVersion"));
            assertEquals("default", pom.getValue("distributionManagement/repository/layout"));
            assertEquals("child-snaps", pom.getValue("distributionManagement/snapshotRepository/id"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

          <description>Deployment repository contains the information needed for deploying to the remote
            repository, which adds uniqueVersion property to usual repositories for download.</description>
          <fields>
            <field>
              <name>uniqueVersion</name>
              <description>Whether to assign snapshots a unique version comprised of the timestamp and
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top