- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 63 for Toolchain (0.05 sec)
-
pom.xml
<properties> <!-- When building Guava, you can pass (e.g.) `-Dsurefire.toolchain.version=21` to change which version to run tests under. You may find that you need to use Java 11+ to *build* Guava, but it continues to work under Java 8, and you can run tests to verify that, as we do. --> <surefire.toolchain.version>${java.specification.version}</surefire.toolchain.version> <!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 23.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainFactoryException.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.api.services; /** * Exception thrown when toolchain factory operations fail. * * <p>This exception wraps errors that occur during toolchain creation or initialization.</p> */ public class ToolchainFactoryException extends MavenException { public ToolchainFactoryException(String message) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/DefaultJavaToolChain.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.toolchain.java; import org.apache.maven.toolchain.model.ToolchainModel; import org.slf4j.Logger; /** * Provides backwards compatibility with Maven 3.2.3 and earlier. Clients that do not require compatibility with Maven
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 1.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderResult.java
import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.toolchain.PersistedToolchains; /** * * @since 4.0.0 */ @Experimental public interface ToolchainsBuilderResult extends Result<ToolchainsBuilderRequest> { /** * Gets the assembled toolchains. * * @return the assembled toolchains, never {@code null} */ @Nonnull PersistedToolchains getEffectiveToolchains();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 1.8K bytes - Viewed (0) -
api/maven-api-toolchain/pom.xml
<groupId>org.apache.maven</groupId> <artifactId>maven-api</artifactId> <version>4.1.0-SNAPSHOT</version> </parent> <artifactId>maven-api-toolchain</artifactId> <name>Maven 4 API :: Toolchain</name> <description>Maven 4 API - Immutable Toolchain model.</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-annotations</artifactId>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 3.4K bytes - Viewed (0) -
api/maven-api-toolchain/src/main/java/org/apache/maven/api/toolchain/package-info.java
// CHECKSTYLE_OFF: RegexpHeader /** * Provides classes for managing Maven toolchains, which allow projects to use specific * tool installations (like JDKs, compilers, or other build tools) across different * environments without hardcoding paths. * * @since 4.0.0 */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Mar 04 14:17:18 UTC 2025 - 313 bytes - Viewed (0) -
api/maven-api-toolchain/src/site/apt/index.apt
----- 2006-11-04 ----- Maven 4 API - Immutable Toolchains Model This is strictly the immutable model for Maven toolchains in <<<org.apache.maven.api.toolchain>>> package. The following are generated from this model: * {{{./apidocs/index.html}Java sources}} with <<<Builder>>> inner classes for immutable instances creation.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Dec 31 16:32:07 UTC 2022 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/JavaToolchainImpl.java
* under the License. */ package org.apache.maven.toolchain.java; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import org.apache.maven.toolchain.DefaultToolchain; import org.apache.maven.toolchain.model.ToolchainModel; import org.apache.maven.utils.Os; import org.slf4j.Logger; /** * JDK toolchain implementation. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.6K bytes - Viewed (0) -
compat/maven-compat/pom.xml
</dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-toolchain-builder</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-toolchain-model</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 7.8K bytes - Viewed (0) -
samples/guide/build.gradle.kts
implementation(libs.animalsniffer.annotations) implementation(libs.squareup.moshi) implementation(libs.squareup.okio.fakefilesystem) ksp(libs.squareup.moshi.compiler) } java { toolchain { languageVersion.set(JavaLanguageVersion.of(17)) } } tasks.compileJava { options.isWarnings = false
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 17 05:15:32 UTC 2025 - 554 bytes - Viewed (0)