Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for maven_central (0.92 sec)

  1. .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>
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 29 22:04:16 UTC 2025
    - 7.4K bytes
    - Viewed (2)
  2. buildSrc/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
      `kotlin-dsl`
    }
    
    repositories {
      mavenCentral()
      gradlePluginPortal()
    }
    
    dependencies {
      implementation(libs.gradlePlugin.bnd)
    
      implementation(libs.kotlin.gradle.plugin.api)
    
      implementation(libs.gradlePlugin.mrjar)
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 836 bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/androidhomewarmup/AndroidHomeWarmupTask.kt

            """
                |plugins {
                |    id("com.android.application") version "${version.agpVersion}"
                |}
                |
                |repositories {
                |    google()
                |    mavenCentral()
                |}
                |
                |android {
                |    namespace = "org.gradle.android.warmup"
                |    compileSdk = ${version.compileSdk}
                |    defaultConfig {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 09 09:24:29 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  4. build-logic-settings/settings.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
            gradlePluginPortal()
        }
    }
    
    pluginManagement {
        repositories {
            maven {
                url = uri("https://repo.gradle.org/gradle/enterprise-libs-release-candidates")
                content {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Dec 10 16:27:16 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.repositories.gradle.kts

            }
        }
        maven {
            name = "CHAMP libs"
            url = uri("https://releases.usethesource.io/maven/")
            mavenContent {
                includeGroup("io.usethesource")
            }
        }
        mavenCentral()
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Sep 05 12:30:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  6. .ci/init.gradle

    import com.bettercloud.vault.VaultConfig
    import com.bettercloud.vault.Vault
    
    initscript {
      repositories {
        mavenCentral()
      }
      dependencies {
        classpath 'com.bettercloud:vault-java-driver:4.1.0'
      }
    }
    
    boolean USE_ARTIFACTORY = false
    
    if (System.getenv('VAULT_ADDR') == null) {
      throw new GradleException("You must set the VAULT_ADDR environment variable to use this init script.")
    }
    
    Registered: Sun Dec 21 06:47:06 UTC 2025
    - Last Modified: Wed Nov 13 10:14:04 UTC 2019
    - 3K bytes
    - Viewed (0)
Back to top