Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for Change (0.2 sec)

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

    import org.apache.maven.artifact.repository.metadata.Versioning;
    import org.apache.maven.artifact.resolver.ArtifactNotFoundException;
    import org.apache.maven.artifact.resolver.ArtifactResolutionException;
    
    /**
     * Change the version <code>RELEASE</code> to the appropriate release version from the remote repository.
     *
     */
    @Named("release")
    @Singleton
    @Deprecated
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/toolchain/java/DefaultJavaToolChain.java

     * 3.2.3 and earlier are encouraged to use {@link JavaToolchainImpl}.
     * <strong>Note:</strong> This is an internal component whose interface can change without prior notice.
     *
     * @deprecated clients that do not require compatibility with Maven 3.2.3 and earlier should link to
     *             {@link JavaToolchainImpl} instead.
     */
    @Deprecated
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Feb 07 19:46:28 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom

    <!--
    
     !!!
    
     NOTE: If you change this file, you MUST bump the version up from 1.0. That is the version of the POM, and was
     used for releases of plexus-compiler and plexus-archiver in the past.
    
     !!!
    
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <artifactId>plexus</artifactId>
        <groupId>org.codehaus.plexus</groupId>
        <version>1.0.8</version>
      </parent>
      <groupId>org.codehaus.plexus</groupId>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java

     */
    public interface PluginValidationManager {
        enum IssueLocality {
            /**
             * Issue is "user actionable", is internal to the currently built project and is reparable from scope of it
             * by doing some change (for example by changing POM and fixing the problematic plugin configuration).
             */
            INTERNAL,
    
            /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri May 26 16:22:12 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  5. Jenkinsfile

                                    }
                                }
                                dir ('its') {
                                    def ITS_BRANCH = env.CHANGE_BRANCH != null ? env.CHANGE_BRANCH :  env.BRANCH_NAME;
                                    try {
                                      echo "Checkout ITs from branch: ${ITS_BRANCH}"
                                      checkout([$class: 'GitSCM',
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom

    <!--
    
     !!!
    
     NOTE: If you change this file, you MUST bump the version up from 1.0. That is the version of the POM, and was
     used for releases of plexus-compiler and plexus-archiver in the past.
    
     !!!
    
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <artifactId>plexus</artifactId>
        <groupId>org.codehaus.plexus</groupId>
        <version>1.0.8</version>
      </parent>
      <groupId>org.codehaus.plexus</groupId>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 1.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/artifact/AttachedArtifact.java

                    "Cannot change the artifactId for an attached artifact." + " It is derived from the main artifact.");
        }
    
        public List<ArtifactVersion> getAvailableVersions() {
            return parent.getAvailableVersions();
        }
    
        public void setAvailableVersions(List<ArtifactVersion> availableVersions) {
            throw new UnsupportedOperationException("Cannot change the version information for an attached artifact."
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/DefaultExtensionRealmCache.java

    import org.codehaus.plexus.classworlds.realm.NoSuchRealmException;
    import org.codehaus.plexus.personality.plexus.lifecycle.phase.Disposable;
    
    /**
     * Default extension realm cache implementation. Assumes cached data does not change.
     */
    @Named
    @Singleton
    public class DefaultExtensionRealmCache implements ExtensionRealmCache, Disposable {
        /**
         * CacheKey
         */
        protected static class CacheKey implements Key {
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 4.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                    /**
                     * MNG-6300: resolvedArtifacts can be cache result; this ensures reactor files are always up-to-date
                     * During lifecycle the Artifact.getFile() can change from target/classes to the actual jar.
                     * This clearly shows that target/classes should not be abused as artifactFile just for the classpath
                     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section)...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 37.1K bytes
    - Viewed (0)
Back to top