Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 995 for asSnapshot (0.88 sec)

  1. maven-compat/src/test/resources/local-repo/snapshot-test/poms/maven-test-snapshot-resolving-1.0.pom

        </dependency>
        <dependency>
          <groupId>snapshot-test</groupId>
          <artifactId>maven-snapshot-b</artifactId>
          <version>1.0-SNAPSHOT</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>snapshot-test</groupId>
          <artifactId>maven-snapshot-c</artifactId>
          <version>1.0-SNAPSHOT</version>
          <type>jar</type>
          <scope>compile</scope>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 26 20:16:00 UTC 2009
    - 1.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/validation/bad-snapshot-version.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>foo</groupId>
      <artifactId>bar</artifactId>
      <version>1.2.3.SNAPSHOT</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 03 20:45:41 UTC 2011
    - 917 bytes
    - Viewed (0)
  3. maven-artifact/src/test/java/org/apache/maven/artifact/ArtifactUtilsTest.java

            assertFalse(ArtifactUtils.isSnapshot(null));
            assertFalse(ArtifactUtils.isSnapshot(""));
            assertFalse(ArtifactUtils.isSnapshot("1.2.3"));
            assertTrue(ArtifactUtils.isSnapshot("1.2.3-SNAPSHOT"));
            assertTrue(ArtifactUtils.isSnapshot("1.2.3-snapshot"));
            assertTrue(ArtifactUtils.isSnapshot("1.2.3-20090413.094722-2"));
            assertFalse(ArtifactUtils.isSnapshot("1.2.3-20090413X094722-2"));
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. maven-compat/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-a-1.0-SNAPSHOT.jar.snapshot-version

    Benjamin Bentmann <******@****.***> 1256588160 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 26 20:16:00 UTC 2009
    - 15 bytes
    - Viewed (0)
  5. maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-a-1.0-SNAPSHOT.jar.snapshot-version

    Britton Isbell <******@****.***> 1240982438 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 15 bytes
    - Viewed (0)
  6. maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-b-1.0-SNAPSHOT.jar.snapshot-version

    Britton Isbell <******@****.***> 1240982438 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 15 bytes
    - Viewed (0)
  7. maven-compat/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-b-1.0-SNAPSHOT.jar.snapshot-version

    Benjamin Bentmann <******@****.***> 1256588160 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 26 20:16:00 UTC 2009
    - 15 bytes
    - Viewed (0)
  8. maven-core/src/test/resources/remote-repo-1/snapshot-test/jars/maven-snapshot-c-1.0-SNAPSHOT.jar.snapshot-version

    Jason van Zyl <******@****.***> 1092078151 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Aug 09 19:02:31 UTC 2004
    - 16 bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java

            String version = null;
            Snapshot snapshot = versioning.getSnapshot();
            if (snapshot != null) {
                if (snapshot.getTimestamp() != null && snapshot.getBuildNumber() > 0) {
                    String newVersion = snapshot.getTimestamp() + "-" + snapshot.getBuildNumber();
                    version = baseVersion.replace(Artifact.SNAPSHOT_VERSION, newVersion);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/SnapshotArtifactRepositoryMetadata.java

        }
    
        public Object getKey() {
            return "snapshot " + artifact.getGroupId() + ":" + artifact.getArtifactId() + ":" + artifact.getBaseVersion();
        }
    
        public boolean isSnapshot() {
            return artifact.isSnapshot();
        }
    
        public int getNature() {
            return isSnapshot() ? SNAPSHOT : RELEASE;
        }
    
        public ArtifactRepository getRepository() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top