Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 15 of 15 for mavenCentral (0.07 seconds)

  1. 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)
  2. 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)
  3. build-logic/settings.gradle.kts

    @file:Suppress("UnstableApiUsage")
    
    pluginManagement {
      repositories {
        mavenCentral()
        gradlePluginPortal()
        google()
      }
    }
    enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
    rootProject.name = "build-logic"
    
    dependencyResolutionManagement {
      repositories {
        mavenCentral()
        gradlePluginPortal()
        google()
      }
      versionCatalogs {
        create("libs") {
          from(files("../gradle/libs.versions.toml"))
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 434 bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/RepositoriesSetupPlugin.java

                // useful for development ie. bwc tests where we install stuff in the local repository
                // such that we don't have to pass hardcoded files to gradle
                repos.mavenLocal();
            }
            repos.mavenCentral();
    
            String luceneVersion = VersionProperties.getLucene();
            if (luceneVersion.contains("-snapshot")) {
                // extract the revision number from the version with a regex matcher
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.7K bytes
    - Click Count (0)
  5. .teamcity/pom.xml

                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
            </repository>
            <repository>
                <id>maven_central</id>
                <name>Maven Central</name>
                <url>https://repo.maven.apache.org/maven2/</url>
            </repository>
        </repositories>
    
        <pluginRepositories>
            <pluginRepository>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 22:03:46 GMT 2026
    - 7.4K bytes
    - Click Count (2)
Back to Top