Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for maven_central (0.08 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. 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)
  3. 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)
  4. 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"))
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 10:14:25 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top