Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for maven_central (0.09 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 Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Oct 31 02:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. buildSrc/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        `kotlin-dsl`
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
      implementation("biz.aQute.bnd:biz.aQute.bnd.gradle:6.4.0")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Oct 18 20:40:57 UTC 2023
    - 746 bytes
    - Viewed (0)
  3. 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 Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Oct 11 18:49:54 UTC 2024
    - 1.5K 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()
        }
    }
    
    plugins {
        id("com.gradle.develocity").version("3.18.1") // Run `java build-logic-settings/UpdateDevelocityPluginVersion.java <new-version>` to update
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Oct 11 06:42:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. build.gradle.kts

        classpath(libs.gradlePlugin.mavenPublish)
        classpath(libs.gradlePlugin.binaryCompatibilityValidator)
        classpath(libs.gradlePlugin.mavenSympathy)
      }
    
      repositories {
        mavenCentral()
        gradlePluginPortal()
        google()
      }
    }
    
    apply(plugin = "org.jetbrains.dokka")
    apply(plugin = "com.diffplug.spotless")
    
    configure<SpotlessExtension> {
      kotlin {
        target("**/*.kt")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Jun 23 17:02:02 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. 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")
                    }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Jun 14 12:35:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                            apply(plugin = "kotlin")
                            the<ModuleIdentityExtension>().baseName.set("api-module")
                            repositories {
                                mavenCentral()
                            }
                            dependencies {
                                "implementation"(gradleApi())
                                "implementation"(kotlin("stdlib"))
                            }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top