File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 49
49
needs : [jvm]
50
50
runs-on : [ubuntu-latest]
51
51
env :
52
- ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.SONATYPE_NEXUS_USERNAME }}
53
- ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
54
- ORG_GRADLE_PROJECT_signingInMemoryKey : ${{ secrets.ARTIFACT_SIGNING_PRIVATE_KEY }}
52
+ ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.SONATYPE_CENTRAL_USERNAME }}
53
+ ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.SONATYPE_CENTRAL_PASSWORD }}
54
+ ORG_GRADLE_PROJECT_signingInMemoryKey : ${{ secrets.GPG_SECRET_KEY }}
55
+ ORG_GRADLE_PROJECT_signingInMemoryKeyPassword : ${{ secrets.GPG_SECRET_PASSPHRASE }}
55
56
56
57
steps :
57
58
- name : Checkout
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ allprojects {
31
31
32
32
plugins.withId(" com.vanniktech.maven.publish.base" ) {
33
33
configure<MavenPublishBaseExtension > {
34
- publishToMavenCentral(SonatypeHost .DEFAULT , automaticRelease = true )
34
+ publishToMavenCentral(SonatypeHost .CENTRAL_PORTAL , automaticRelease = true )
35
35
signAllPublications()
36
36
pom {
37
37
description.set(" Typesafe DynamoDB in Kotlin" )
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ kotlinxCoroutinesJdk8 = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-jdk
39
39
kotlinxCoroutinesReactive = { module = " org.jetbrains.kotlinx:kotlinx-coroutines-reactive" , version = " 1.6.4" }
40
40
log4jCore = { module = " org.apache.logging.log4j:log4j-core" , version = " 2.17.1" }
41
41
loggingApi = { module = " io.github.microutils:kotlin-logging" , version = " 2.0.10" }
42
- mavenPublishGradlePlugin = { module = " com.vanniktech:gradle-maven-publish-plugin" , version = " 0.28 .0" }
42
+ mavenPublishGradlePlugin = { module = " com.vanniktech:gradle-maven-publish-plugin" , version = " 0.31 .0" }
43
43
moshiCore = { module = " com.squareup.moshi:moshi" , version = " 1.15.2" }
44
44
moshiKotlin = { module = " com.squareup.moshi:moshi-kotlin" , version = " 1.15.2" }
45
45
nettyBom = { module = " io.netty:netty-bom" , version = " 4.1.79.Final" }
You can’t perform that action at this time.
0 commit comments