Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for mavenLocal (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         */
        MavenArtifactRepository mavenLocal();
    
        /**
         * Adds a repository which looks in the local Maven cache for dependencies. The name of the repository is
         * {@value org.gradle.api.artifacts.ArtifactRepositoryContainer#DEFAULT_MAVEN_LOCAL_REPO_NAME}.
         *
         * <p>Examples:</p>
         * <pre class='autoTested'>
         * repositories {
         *     mavenLocal()
         * }
         * </pre>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. integration-tests/gradle/build.gradle.kts

          guavaVersionJre.replace("jre", "android")
        } else {
          guavaVersionJre
        }
      val javaVersion = JavaVersion.VERSION_1_8
    
      repositories {
        mavenCentral()
        mavenLocal()
      }
      val java = the<JavaPluginExtension>()
      java.targetCompatibility = javaVersion
      java.sourceCompatibility = javaVersion
    
      if (!runningGradle5) {
        configurations.all {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

                    m2.execute(executer)
                    m2.mavenRepo().module("thing", "lib1", "2.1").publish()
                    buildFile << """
                        repositories {
                            mavenLocal()
                        }
                    """
                }
            }
    
            @Override
            void publishWithDifferentArtifactContent(AbstractIntegrationSpec owner) {
                owner.with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            return new MavenFileRepository(repo)
        }
    
        public MavenFileRepository maven(Object repo) {
            return new MavenFileRepository(file(repo))
        }
    
        public MavenLocalRepository mavenLocal(Object repo) {
            return new MavenLocalRepository(file(repo))
        }
    
        protected configureRepositoryCredentials(String username, String password, String repositoryName = "maven") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top