Skip to content

Commit 842510e

Browse files
AnkaBoD
authored andcommitted
Add Kotlin Dev and Maven Central Snapshots repositories
1 parent 8262729 commit 842510e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

gradle/repositories.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
listOf(pluginManagement.repositories, dependencyResolutionManagement.repositories).forEach {
22
it.apply {
33
// Uncomment this one to use the Kotlin "dev" repository
4-
// maven { url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/") }
4+
maven { url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/") }
5+
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots/") }
56

67
mavenCentral()
78

intellij-plugin/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ commonSetup()
1919
// XXX: this should use the settings repositories instead
2020
repositories {
2121
// Uncomment this one to use the Kotlin "dev" repository
22-
// maven { url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/") }
22+
maven { url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/") }
23+
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots/") }
2324
mavenCentral()
2425
}
2526

libraries/apollo-gradle-plugin/testProjects/gradle-min-version/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ repositories {
2222
url = uri("../../../../build/localMaven")
2323
}
2424
mavenCentral()
25+
// Uncomment this one to use the Kotlin "dev" repository
26+
maven { url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/") }
2527
}
2628

2729
configure<ApolloExtension> {

0 commit comments

Comments
 (0)