Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for etc (0.14 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java

        private static final String DEFAULT_SNAPSHOT_TIMESTAMP_FORMAT = "yyyyMMdd.HHmmss";
    
        private static final TimeZone DEFAULT_SNAPSHOT_TIME_ZONE = TimeZone.getTimeZone("Etc/UTC");
    
        private String deploymentTimestamp;
    
        public void transformForResolve(Artifact artifact, RepositoryRequest request) throws ArtifactResolutionException {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  2. README.md

    Contributing
    ------------
    
    If you are interested in the development of Maven, please consult the
    documentation first and afterward you are welcome to join the developers
    mailing list to ask questions or discuss new ideas/features/bugs etc.
    
    Take a look into the [contribution guidelines](CONTRIBUTING.md).
    
    License
    -------
    This code is under the [Apache License, Version 2.0, January 2004][license].
    
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

        @Nullable
        String getClassifier();
    
        /**
         * Specifies if the artifact already embeds its own dependencies.
         * This is the case for JEE packages or similar artifacts such as
         * WARs, EARs, etc.
         *
         * @return if the artifact's dependencies are included in the artifact
         */
        boolean isIncludesDependencies();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 29 09:32:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/shared/validate

    # -----------------------------------------------------------------------------
    
    if [ -z "$MAVEN_SKIP_RC" ] ; then
    
      if [ -f /usr/local/etc/mavenrc ] ; then
        . /usr/local/etc/mavenrc
      fi
    
      if [ -f /etc/mavenrc ] ; then
        . /etc/mavenrc
      fi
    
      if [ -f "$HOME/.mavenrc" ] ; then
        . "$HOME/.mavenrc"
      fi
    
    fi
    
    # OS specific support. $var _must_ be set to either true or false.
    Shell Script
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 21 09:29:19 GMT 2021
    - 1.7K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenBuildTimestamp.java

        public static final String BUILD_TIMESTAMP_FORMAT_PROPERTY = "maven.build.timestamp.format";
    
        public static final TimeZone DEFAULT_BUILD_TIME_ZONE = TimeZone.getTimeZone("Etc/UTC");
    
        private String formattedTimestamp;
    
        public MavenBuildTimestamp() {
            this(Instant.now());
        }
    
        public MavenBuildTimestamp(Instant time) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  6. apache-maven/src/site/apt/index.apt.vm

    ||         || system level                              || user level 
    *----------+--------------------------------------------+-----------------------+
    || POSIX   | <<</etc/mavenrc>>>\
    ||         | <<</usr/local/etc/mavenrc>>> (since 3.8.2) | <<<$HOME/.mavenrc>>> 
    *----------+--------------------------------------------+-----------------------+
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Aug 20 00:26:03 GMT 2021
    - 1.9K bytes
    - Viewed (0)
  7. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

          This is a list of attachments to the main artifact produced by building the current POM.
          Attachments are derived works, based on the main build process, such as an ejb-client jar,
          project sources jar, etc.
        ]]></description>
      </expression>
    </expressions>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 5.6K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java

     *
     */
    public interface ArtifactHandler {
        @Deprecated
        String ROLE = ArtifactHandler.class.getName();
    
        /**
         * Returns the file name extension of the artifact;
         * e.g. "jar", "pom", "xml", etc.
         *
         * @return the file extension
         */
        String getExtension();
    
        String getDirectory();
    
        /**
         * Returns the default classifier used if a different one is not set in pom.xml.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/RemoteSnapshotMetadata.java

    final class RemoteSnapshotMetadata extends MavenSnapshotMetadata {
        public static final String DEFAULT_SNAPSHOT_TIMESTAMP_FORMAT = "yyyyMMdd.HHmmss";
    
        public static final TimeZone DEFAULT_SNAPSHOT_TIME_ZONE = TimeZone.getTimeZone("Etc/UTC");
    
        private final Map<String, SnapshotVersion> versions = new LinkedHashMap<>();
    
        private final Integer buildNumber;
    
        RemoteSnapshotMetadata(Artifact artifact, Date timestamp, Integer buildNumber) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 10:10:21 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         * phase when this method was invoked (i.e. is javadoc jar built and attached, is sources jar built attached, are
         * all the artifact signed, etc.).
         * <p>
         * This method is shorthand for {@link Project#getArtifacts()} and {@link #getAttachedArtifacts(Project)} methods.
         *
         * @see org.apache.maven.api.services.ArtifactManager#getPath(Artifact)
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Feb 09 17:13:31 GMT 2024
    - 5.9K bytes
    - Viewed (0)
Back to top