- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for Wain (0.01 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
default ProducedArtifact getPomArtifact() { return getArtifacts().get(0); } /** * {@return the project main artifact}, which is the artifact produced by this project build, if applicable. * This artifact MAY be absent if the project is actually not producing any main artifact (i.e. "pom" packaging). * * @see #getPackaging() * @see org.apache.maven.api.services.ArtifactManager#getPath(Artifact)
Registered: 2025-05-24 08:56 - Last Modified: 2025-02-27 11:07 - 10.6K bytes - Viewed (0) -
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) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/package-info.java
* specific language governing permissions and limitations * under the License. */ /** * Provides the API for the Maven build tool ({@code mvn}). * * <p>This package contains interfaces and classes specific to the main Maven build * tool, which is responsible for project build lifecycle execution and dependency management.</p> * * <p>Key features include:</p> * <ul> * <li>Build lifecycle execution control</li>
Registered: 2025-05-24 08:56 - Last Modified: 2025-03-04 14:17 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
/** * Shortcut for {@code getService(DependencyResolver.class).flatten(...)}. * * @param node node for which to get a flattened list * @param scope build path scope (main compile, test compile, etc.) of desired nodes * @return flattened list of node with the given build path scope * @throws org.apache.maven.api.services.DependencyResolverException if the dependency flattening failed *
Registered: 2025-05-24 08:56 - Last Modified: 2025-03-19 14:33 - 36.2K bytes - Viewed (0)