Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for maven_central (0.09 seconds)

  1. build-tools-internal/build.gradle

     *                    Dependencies used by the entire build                  *
     *****************************************************************************/
    
    repositories {
      mavenCentral()
      gradlePluginPortal()
    }
    
    configurations {
      integTestRuntimeOnly.extendsFrom(testRuntimeOnly)
    }
    dependencies {
      api localGroovy()
      api gradleApi()
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 18:10:22 GMT 2021
    - 11.3K bytes
    - Click Count (0)
  2. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

                fun Project.configureTestWithLeftover(ignoreFailures: Boolean, hasLeftover: Boolean) {
                    apply(plugin = "java-library")
                    repositories {
                        mavenCentral()
                    }
    
                    dependencies {
                        "testImplementation"("org.junit.jupiter:junit-jupiter-engine:5.8.1")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 10 00:16:44 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                            apply(plugin = "kotlin")
                            the<GradleModuleExtension>().identity.baseName.set("api-module")
                            repositories {
                                mavenCentral()
                            }
                            dependencies {
                                "implementation"(gradleApi())
                                "implementation"(kotlin("stdlib"))
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jan 19 11:30:48 GMT 2026
    - 18.3K bytes
    - Click Count (0)
  4. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/PublishPluginFuncTest.groovy

                    id 'elasticsearch.java'
                    id 'elasticsearch.publish'
                    id 'com.github.johnrengelman.shadow'
                }
                
                repositories {
                    mavenCentral()
                }
                
                dependencies {
                    implementation 'org.slf4j:log4j-over-slf4j:1.7.30'
                    shadow 'org.slf4j:slf4j-api:1.7.30'
                }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 19K bytes
    - Click Count (0)
Back to Top