Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for mavenLocal (0.14 sec)

  1. testing/internal-performance-testing/src/templates/root-project/build.gradle

    <% if (binding.hasVariable("buildScanPluginVersion") || binding.hasVariable("springDmPluginVersion")) {%>
    
    buildscript {
        repositories {
    <% if(binding.hasVariable("springDmPluginVersion")) { %>
            mavenLocal()
            mavenCentral()
    <% } %>
    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
            maven {
                url 'https://repo.gradle.org/gradle/enterprise-libs-snapshots-local/'
            }
    <% } %>
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 965 bytes
    - Viewed (0)
  2. testing/performance/src/templates/kts-empty/build.gradle.kts

     */
    
    <% if (binding.hasVariable("buildScanPluginVersion") || binding.hasVariable("springDmPluginVersion")) {%>
    
    buildscript {
        repositories {
    <% if(binding.hasVariable("springDmPluginVersion")) { %>
            mavenLocal()
            mavenCentral()
    <% } %>
    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
            maven {
                setUrl("https://repo.gradle.org/gradle/gradlecom-libs-snapshots-local")
            }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/MavenDuplicatePublicationTracker.java

        }
    
        public void checkCanPublishToMavenLocal(MavenNormalizedPublication publication) {
            checkCanPublish(publication, mavenRepositoryLocator.getLocalMavenRepository().toURI(), "mavenLocal");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenLocalModule.groovy

        }
    
        @Override
        boolean getUniqueSnapshots() {
            return uniqueSnapshots
        }
    
        @Override
        MavenLocalModule withNonUniqueSnapshots() {
            //NO-OP for mavenLocal cache.
            this
        }
    
        @Override
        protected String getMetadataFileName() {
            return "maven-metadata-local.xml"
        }
    
        @Override
        String getMetaDataFileContent() {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    plugins {
        `maven-publish`
    }
    
    publishing {
        publications {
            create<MavenPublication>("mavenJava") {
                from(components["java"])
            }
        }
        repositories {
            mavenLocal()
        }
    }
    ----
    3. *Apply your plugin:* when you want to use the plugin, include the plugin ID and version in the `plugins{}` block of the build file.
    +
    [source,kotlin]
    ----
    // Apply the plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top