Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 336 for clean (0.11 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

            public String id() {
                return Lifecycle.CLEAN;
            }
    
            @Override
            public Collection<Phase> phases() {
                return List.of(phase(
                        Phase.CLEAN,
                        plugin(
                                MAVEN_PLUGINS + "maven-clean-plugin:" + MAVEN_CLEAN_PLUGIN_VERSION + ":clean",
                                Phase.CLEAN)));
            }
    
            @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

        }
    
        // <lifecycle>
        //   <id>clean</id>
        //   <phases>
        //     <phase>pre-clean</phase>
        //     <phase>clean</phase>
        //     <phase>post-clean</phase>
        //   </phases>
        //   <default-phases>
        //     <clean>org.apache.maven.plugins:maven-clean-plugin:clean</clean>
        //   </default-phases>
        // </lifecycle>
    
        private String id;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

     * {@link #DEFAULT default}, {@link #CLEAN clean}, and {@link #SITE site}, with the
     * {@code default} lifecycle being the most commonly used for project builds.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Lifecycle extends ExtensibleEnum {
    
        // =========================
        // Maven defined lifecycles
        // =========================
        String CLEAN = "clean";
        String DEFAULT = "default";
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Sep 24 07:54:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. .github/workflows/maven_build_itself.yml

                echo "${{ env.TAR_BALL }} does not exist."
                exit 1;
              fi
            env:
              TAR_BALL: apache-maven/target/apache-maven-bin.tar.gz
    
          - name: Clean with Maven
            run: ./mvnw -e -B -V clean
    
          - name: Build again with Maven SNAPSHOT
            shell: bash
            run: |
              set +e
              export PATH=${{ env.TEMP_MAVEN_BIN_DIR }}:$PATH
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/resident/DefaultResidentMavenInvokerTest.java

            invoke(tempDir, Arrays.asList("clean", "verify"));
        }
    
        @Disabled("Until we move off fully from File")
        @Test
        void jimFs() throws Exception {
            try (FileSystem fs = Jimfs.newFileSystem(Configuration.unix())) {
                invoke(fs.getPath("/"), Arrays.asList("clean", "verify"));
            }
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. disabled-Jenkinsfile

    def buildOs = 'linux'
    def buildJdk = '17'
    def buildMvn = '3.8.x'
    def runITsOses = ['linux']
    def runITsJdks = ['17', '21']
    def runITsMvn = '3.8.x'
    def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
    def tests
    
    try {
    
    def osNode = jenkinsEnv.labelForOS(buildOs)
    node(jenkinsEnv.nodeSelection(osNode)) {
        dir('build') {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon Sep 30 14:11:55 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/local/DefaultLocalMavenInvokerTest.java

            invoke(tempDir, Arrays.asList("clean", "verify"));
        }
    
        @Disabled("Until we move off fully from File")
        @Test
        void jimFs() throws Exception {
            try (FileSystem fs = Jimfs.newFileSystem(Configuration.unix())) {
                invoke(fs.getPath("/"), Arrays.asList("clean", "verify"));
            }
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. disabled-Jenkinsfile.s390x

    def buildOs = 'linux'
    def buildJdk = '17'
    def buildMvn = '3.8.x'
    def runITsOses = ['linux']
    def runITsJdks = ['17']
    def runITsMvn = '3.8.x'
    def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
    def tests
    
    try {
    
    def osNode = jenkinsEnv.labelForOS(buildOs)
    node('s390x') {
        dir('build') {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon Sep 30 14:11:55 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. apache-maven/pom.xml

            <plugins>
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-clean-plugin</artifactId>
                <executions>
                  <execution>
                    <id>clean-target-dir</id>
                    <goals>
                      <goal>clean</goal>
                    </goals>
                    <phase>prepare-package</phase>
                    <configuration>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 13:41:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

            last = null;
          }
        };
      }
    
      @Override
      public Iterator<E> iterator() {
        return Multisets.iteratorImpl(this);
      }
    
      @Override
      public void clear() {
        countMap.clear();
      }
    
      @WeakOuter
      private class EntrySet extends AbstractMultiset<E>.EntrySet {
        @Override
        ConcurrentHashMultiset<E> multiset() {
          return ConcurrentHashMultiset.this;
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top