Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for mavenCore (0.16 sec)

  1. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/MavenProjectsCreator.java

            ContainerConfiguration containerConfiguration = new DefaultContainerConfiguration()
                    .setClassWorld(new ClassWorld("plexus.core", Thread.currentThread().getContextClassLoader()))
                    .setName("mavenCore").setClassPathScanning(PlexusConstants.SCANNING_INDEX).setAutoWiring(true);
    
            DefaultPlexusContainer container = new DefaultPlexusContainer(containerConfiguration);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInvocationSpec.groovy

            MavenInvocationSpec build() {
                MavenInstallation mavenInstallation = null
                if (mavenVersion != null && mavenHome != null) {
                    assertMavenHomeAndVersionMatch()
                } else if (mavenHome != null) {
                    mavenVersion = MavenInstallation.probeVersion(mavenHome)
                } else {
                    mavenVersion = mavenVersion ?: DEFAULT_MAVEN_VERSION
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplierTest.groovy

        def userHome = temporaryFolder.getTestDirectory().getCanonicalPath()
        def mavenHome = temporaryFolder.createDir(".m2")
    
        def "supplies no installations for non-existing directory"(boolean useProperty) {
            assert mavenHome.delete()
    
            given:
            def supplier = useProperty ? createSupplier(mavenHome.getCanonicalPath(), null) : createSupplier(null, userHome)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. platforms/software/build-init/build.gradle.kts

        compileOnly(libs.maven3Artifact)
        compileOnly(libs.mavenResolverApi)
        compileOnly(libs.plexusClassworlds)
    
        compileOnly(libs.maven3Core)
        compileOnly(libs.maven3PluginApi)
    
        compileOnly(project(":platform-base"))
    
        testRuntimeOnly(libs.maven3Compat)
        testRuntimeOnly(libs.maven3PluginApi)
    
        testImplementation(project(":cli"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.maven3Artifact)        { version { strictly(mavenVersion); because("transitive dependency of Maven modules to process POM metadata") }}
            api(libs.maven3Core)            { version { strictly(mavenVersion); because("transitive dependency of Maven modules to process POM metadata") }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val kotlinStdlib = futureKotlin("stdlib")
        val kryo = "com.esotericsoftware.kryo:kryo"
        val log4jToSlf4j = "org.slf4j:log4j-over-slf4j"
        val maven3Artifact = "org.apache.maven:maven-artifact"
        val maven3Core = "org.apache.maven:maven-core"
        val maven3BuilderSupport = "org.apache.maven:maven-builder-support"
        val maven3Model = "org.apache.maven:maven-model"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // Windows paths.
            //
            String mavenHome = System.getProperty("maven.home");
    
            if (mavenHome != null) {
                System.setProperty("maven.home", new File(mavenHome).getAbsolutePath());
            }
        }
    
        void cli(CliRequest cliRequest) throws Exception {
            //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top