mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 15:30:38 -05:00
Update build; improve caching; improve tests
This commit is contained in:
12
fixtures/dependency/maven-bom/kotlin/build.gradle.kts
Normal file
12
fixtures/dependency/maven-bom/kotlin/build.gradle.kts
Normal file
@@ -0,0 +1,12 @@
|
||||
plugins {
|
||||
java
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven { url = uri("http://localhost:9999") }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(platform("io.micrometer:micrometer-bom:1.5.1"))
|
||||
implementation("io.micrometer:micrometer-core")
|
||||
}
|
||||
11
fixtures/dependency/snapshot-dynamic/groovy/build.gradle
Normal file
11
fixtures/dependency/snapshot-dynamic/groovy/build.gradle
Normal file
@@ -0,0 +1,11 @@
|
||||
plugins {
|
||||
id "java"
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven { url = uri("http://localhost:9999") }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "org.apache:test-SNAPSHOT1:2.0.2-SNAPSHOT"
|
||||
}
|
||||
11
fixtures/dependency/snapshot-dynamic/kotlin/build.gradle.kts
Normal file
11
fixtures/dependency/snapshot-dynamic/kotlin/build.gradle.kts
Normal file
@@ -0,0 +1,11 @@
|
||||
plugins {
|
||||
java
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven { url = uri("http://localhost:9999") }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
"implementation"("org.apache:test-SNAPSHOT1:2.0.2-SNAPSHOT")
|
||||
}
|
||||
@@ -3,10 +3,9 @@ plugins {
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
||||
maven { url = uri("http://localhost:9999") }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "com.squareup.okio:okio:2.5.0-SNAPSHOT"
|
||||
implementation "org.apache:test-SNAPSHOT2:2.0.2-SNAPSHOT"
|
||||
}
|
||||
@@ -3,10 +3,9 @@ plugins {
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots/") }
|
||||
maven { url = uri("http://localhost:9999") }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
"implementation"("com.squareup.okio:okio:2.5.0-SNAPSHOT")
|
||||
"implementation"("org.apache:test-SNAPSHOT2:2.0.2-SNAPSHOT")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user