Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 487 for snapshots (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

                TreeSet<Version> snapshots = new TreeSet<>(Collections.reverseOrder());
    
                for (String ver : versions.versions.keySet()) {
                    try {
                        Version v = versionScheme.parseVersion(ver);
    
                        if (ver.endsWith("-SNAPSHOT")) {
                            snapshots.add(v);
                        } else {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

                }
    
                ArtifactRepositoryPolicy snapshots = buildArtifactRepositoryPolicy(repo.getSnapshots());
    
                ArtifactRepositoryPolicy releases = buildArtifactRepositoryPolicy(repo.getReleases());
    
                return createArtifactRepository(id, url, getLayout(repo.getLayout()), snapshots, releases);
            } else {
                return null;
            }
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/repository/DefaultMirrorSelectorTest.java

    class DefaultMirrorSelectorTest {
        @Test
        void testMirrorWithMirrorOfPatternContainingANegationIsNotSelected() {
            ArtifactRepository repository = new DefaultArtifactRepository("snapshots.repo", "http://whatever", null);
            String pattern = "external:*, !snapshots.repo";
            assertFalse(DefaultMirrorSelector.matchPattern(repository, pattern));
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  4. apache-maven/pom.xml

      <pluginRepositories>
        <pluginRepository>
          <releases>
            <enabled>false</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
          <id>apache.snapshots</id>
          <url>https://repository.apache.org/snapshots/</url>
        </pluginRepository>
      </pluginRepositories>
    
      <build>
        <finalName>${distributionFileName}</finalName>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  5. maven-core/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

            <enabled>false</enabled>
          </releases>
          <id>snapshots</id>
          <name>Maven Central Development Repository</name>
          <url>http://snapshots.maven.codehaus.org/maven2</url>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <releases>
            <enabled>false</enabled>
          </releases>
          <id>snapshots</id>
          <name>Maven Central Plugins Development Repository</name>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Oct 27 10:08:56 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom

          <url>dav:https://dav.codehaus.org/snapshots.repository/plexus</url>
        </snapshotRepository>
        <site>
          <id>codehaus.org</id>
          <url>dav:https://dav.codehaus.org/plexus</url>
        </site>
      </distributionManagement>
      <repositories>
        <repository>
          <id>codehaus.snapshots</id>
          <name>Codehaus Snapshot Development Repository</name>
          <url>http://snapshots.repository.codehaus.org</url>
          <releases>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 8.8K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

                String id,
                String url,
                ArtifactRepositoryLayout repositoryLayout,
                ArtifactRepositoryPolicy snapshots,
                ArtifactRepositoryPolicy releases) {
            return new MavenArtifactRepository(id, url, repositoryLayout, snapshots, releases);
        }
    
        public Artifact createArtifactWithClassifier(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  8. maven-api-impl/src/test/remote-repo/org/apache/apache/1/apache-1.pom

        <url>http://www.apache.org/</url>
      </organization>
      <url>http://www.apache.org/</url>
      <repositories>
        <repository>
          <id>apache.snapshots</id>
          <name>Apache Snapshot Repository</name>
          <url>http://svn.apache.org/maven-snapshot-repository</url>
          <releases>
            <enabled>false</enabled>
          </releases>
        </repository>
      </repositories>
      <distributionManagement>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  9. apache-maven/src/assembly/maven/conf/settings.xml

      -->
      <repositories>
        <repository>
          <id>central</id>
          <name>Central Repository</name>
          <url>https://repo.maven.apache.org/maven2</url>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
      </repositories>
    
      <!-- plugin repositories
       | Specifies the list of default remote repositories that maven will search plugins for.
      -->
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/multiple-repos/pom.xml

         <repository>
           <id>central-parent</id>
           <name>Maven Repository Switchboard</name>
           <layout>default</layout>
           <url>https://repo1.maven.org/maven2</url>
           <snapshots>
             <enabled>false</enabled>
           </snapshots>
         </repository>
       </repositories>
    
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.3K bytes
    - Viewed (0)
Back to top