Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Wain (0.01 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

         */
        @Override
        String id();
    
        /**
         * Collection of main phases for this lifecycle.
         *
         * @return the collection of top-level phases in this lifecycle
         */
        Collection<Phase> phases();
    
        /**
         * Collection of main phases for this lifecycle used with the Maven 3 builders.
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-04-05 11:52
    - 7.8K bytes
    - Viewed (0)
  2. Jenkinsfile

                  // recordCoverage id: "coverage-jdk21", name: "Coverage jdk21", tools: [[parser: 'JACOCO',pattern: 'target/site/jacoco-aggregate/jacoco.xml']],
                  //    sourceCodeRetention: 'MODIFIED', sourceDirectories: [[path: 'src/main/java']]
                }
              }
            }
          }
        }
      }
    }
    
    /**
     * To other developers, if you are using this method above, please use the following syntax.
     *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-15 08:48
    - 3.6K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/bin/m2.conf

    # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    # KIND, either express or implied.  See the License for the
    # specific language governing permissions and limitations
    # under the License.
    
    main is ${maven.mainClass} from plexus.core
    
    set maven.conf default ${maven.home}/conf
    set maven.installation.conf default ${maven.conf}
    
    [plexus.core]
    load       ${maven.conf}/logging
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-10-03 16:03
    - 1.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

        String MAVEN_PLUGIN = "maven-plugin";
    
        /**
         * Artifact type name for a JAR file containing test classes. If the main artifact is placed on the class path
         * ({@value #JAR} or {@value #CLASSPATH_JAR} types), then the test artifact will also be placed on the class path.
         * Otherwise, if the main artifact is placed on the module path ({@value #JAR} or {@value #MODULAR_JAR} types),
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-03 11:22
    - 6.5K bytes
    - Viewed (0)
  5. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/package-info.java

     *   <li>Core extensions configuration</li>
     *   <li>Early-stage logging before the full Maven logging system is initialized</li>
     * </ul>
     *
     * <p>The main components are:</p>
     * <ul>
     *   <li>{@link org.apache.maven.api.cli.Invoker} - Base interface for executing Maven tools</li>
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-04 14:17
    - 1.9K bytes
    - Viewed (0)
  6. api/maven-api-cli/pom.xml

          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <configuration>
              <version>1.2.0</version>
              <models>
                <model>src/main/mdo/core-extensions.mdo</model>
              </models>
              <templates>
                <template>model.vm</template>
              </templates>
              <params>
                <param>locationTracking=true</param>
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-13 12:50
    - 2.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     * specific language governing permissions and limitations
     * under the License.
     */
    
    /**
     * <h2>Maven Core API</h2>
     *
     * <h3>Session</h3>
     *
     * <p>The {@link org.apache.maven.api.Session} interface is the main entry point for Maven operations.
     * It maintains the state of a Maven execution and provides access to all core services and components.
     * Sessions are thread-safe and can be obtained in session-scoped components using the
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-05 14:29
    - 7.7K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

        String id();
    
        /**
         * The language of this packaging.
         */
        @Nonnull
        default Language language() {
            return type().getLanguage();
        }
    
        /**
         * The type of main artifact produced by this packaging.
         */
        @Nonnull
        Type type();
    
        /**
         * Returns the binding to use specifically for this packaging keyed by lifecycle id.
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-08-27 21:13
    - 3.2K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

        Set<DependencyScope> dependencyScopes();
    
        PathScope MAIN_COMPILE = pathScope(
                "main-compile",
                ProjectScope.MAIN,
                DependencyScope.COMPILE_ONLY,
                DependencyScope.COMPILE,
                DependencyScope.PROVIDED);
    
        PathScope MAIN_RUNTIME =
                pathScope("main-runtime", ProjectScope.MAIN, DependencyScope.COMPILE, DependencyScope.RUNTIME);
    
        PathScope TEST_COMPILE = pathScope(
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-07-10 20:52
    - 2.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java

        /**
         * {@return in which context the source files will be used}.
         * Not to be confused with dependency scope.
         * The default value is {@code "main"}.
         *
         * @see ProjectScope#MAIN
         */
        default ProjectScope scope() {
            return ProjectScope.MAIN;
        }
    
        /**
         * {@return the language of the source files}.
         * The default value is {@code "java"}.
         *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-05-20 11:54
    - 6.5K bytes
    - Viewed (0)
Back to top