Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ jobs:
LIBRARIAN_SONATYPE_PASSWORD: ${{ secrets.LIBRARIAN_SONATYPE_PASSWORD }}
LIBRARIAN_SIGNING_PRIVATE_KEY: ${{ secrets.LIBRARIAN_SIGNING_PRIVATE_KEY }}
LIBRARIAN_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.LIBRARIAN_SIGNING_PRIVATE_KEY_PASSWORD }}
LIBRARIAN_GOOGLE_SERVICES_JSON: ${{ secrets.LIBRARIAN_GOOGLE_SERVICES_JSON }}
GH_TOKEN: ${{ github.token }}
1 change: 1 addition & 0 deletions .github/workflows/publish-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ jobs:
LIBRARIAN_SONATYPE_PASSWORD: ${{ secrets.LIBRARIAN_SONATYPE_PASSWORD }}
LIBRARIAN_SIGNING_PRIVATE_KEY: ${{ secrets.LIBRARIAN_SIGNING_PRIVATE_KEY }}
LIBRARIAN_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.LIBRARIAN_SIGNING_PRIVATE_KEY_PASSWORD }}
LIBRARIAN_GOOGLE_SERVICES_JSON: ${{ secrets.LIBRARIAN_GOOGLE_SERVICES_JSON }}
4 changes: 2 additions & 2 deletions apollo-mockserver/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import com.gradleup.librarian.gradle.librarianModule
import com.gradleup.librarian.gradle.Librarian
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi

plugins {
id("org.jetbrains.kotlin.multiplatform")
}

librarianModule(true)
Librarian.module(project)

kotlin {
jvm()
Expand Down
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import com.gradleup.librarian.gradle.librarianRoot

plugins {
alias(libs.plugins.kgp).apply(false)
id("com.gradleup.librarian").version("0.0.6").apply(false)
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.16.3" apply false
id("com.gradleup.librarian").version("0.0.8-SNAPSHOT-b703634bb1858f471503e23d2c23d7aeae9d6120").apply(false)
}

librarianRoot()
4 changes: 3 additions & 1 deletion librarian.properties → librarian.root.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ pom.description=KMP ready HTTP mock server
pom.vcsUrl=https://github.com/apollographql/apollo-kotlin-mockserver
pom.developer=Apollo Kotlin Mockserver contributors
pom.license=MIT License
pom.licenseUrl=https://raw.githubusercontent.com/apollographql/apollo-kotlin-mockserver/main/LICENSE

gcs.bucket=apollo-snapshots
gcs.prefix=m2
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
pluginManagement {
listOf(repositories, dependencyResolutionManagement.repositories).forEach {
it.mavenCentral()
it.maven("https://storage.googleapis.com/gradleup/m2")
}
}

Expand Down