Skip to content

Commit

Permalink
Add Kotlin Dev and Maven Central Snapshots repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
Anka authored and BoD committed Jul 1, 2024
1 parent 8262729 commit 842510e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion gradle/repositories.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
listOf(pluginManagement.repositories, dependencyResolutionManagement.repositories).forEach {
it.apply {
// Uncomment this one to use the Kotlin "dev" repository
// maven { url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/") }
maven { url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/") }
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots/") }

mavenCentral()

Expand Down
3 changes: 2 additions & 1 deletion intellij-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ commonSetup()
// XXX: this should use the settings repositories instead
repositories {
// Uncomment this one to use the Kotlin "dev" repository
// maven { url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/") }
maven { url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/") }
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots/") }
mavenCentral()
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ repositories {
url = uri("../../../../build/localMaven")
}
mavenCentral()
// Uncomment this one to use the Kotlin "dev" repository
maven { url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/") }
}

configure<ApolloExtension> {
Expand Down

0 comments on commit 842510e

Please sign in to comment.