Skip to content

Commit 326e870

Browse files
authored
Fixing the release process (#84)
* Rename projects by adding arrow-endpoint as prefix * Change POM properties in gradle.properties files * Rename folders for WebFlux client and server * Remove unnecessary env variables in workflow * Rename public API files
1 parent 4108811 commit 326e870

38 files changed

+51
-55
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ on:
88
env:
99
SONATYPE_USER: ${{ secrets.SONATYPE_USER }}
1010
SONATYPE_PWD: ${{ secrets.SONATYPE_PWD }}
11-
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.PGP_SECRET }}
12-
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.PGP_PASSPHRASE }}
1311
OSS_USER: '${{ secrets.OSS_USER }}'
1412
OSS_TOKEN: '${{ secrets.OSS_TOKEN }}'
1513
OSS_STAGING_PROFILE_ID: '${{ secrets.OSS_STAGING_PROFILE_ID }}'
File renamed without changes.

clients/http4k-client/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ plugins {
77
}
88

99
dependencies {
10-
api(projects.core)
10+
api(projects.arrowEndpointCore)
1111
api(libs.http4k.core)
1212

13-
testImplementation(projects.test)
13+
testImplementation(projects.arrowEndpointTest)
1414
testImplementation(libs.http4k.client.apache)
1515
testImplementation(libs.coroutines.core)
1616
testImplementation(libs.kotest.assertionsCore)
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
POM_NAME=Arrow Endpoint Http4k Client
2-
POM_ARTIFACT_ID=arrow-endpoint-client-http4k
3-
POM_PACKAGING=jar
1+
pom.name=Arrow Endpoint Http4k Client
File renamed without changes.

clients/ktor-client/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ plugins {
77
}
88

99
dependencies {
10-
api(projects.core)
10+
api(projects.arrowEndpointCore)
1111
api(libs.ktor.client.core)
1212

13-
testImplementation(projects.core)
13+
testImplementation(projects.arrowEndpointCore)
1414
testImplementation(libs.ktor.client.cio)
15-
testImplementation(projects.test)
15+
testImplementation(projects.arrowEndpointTest)
1616
testImplementation(libs.coroutines.core)
1717
testImplementation(libs.kotest.assertionsCore)
1818
testImplementation(libs.kotest.property)
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
POM_NAME=Arrow Endpoint Ktor Client
2-
POM_ARTIFACT_ID=arrow-endpoint-client-ktor
3-
POM_PACKAGING=jar
1+
pom.name=Arrow Endpoint Ktor Client

clients/spring-web-client/api/spring-web-client.api renamed to clients/spring-web-client/api/arrow-endpoint-spring-web-client.api

File renamed without changes.

clients/spring-web-client/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ plugins {
77
}
88

99
dependencies {
10-
api(projects.core)
10+
api(projects.arrowEndpointCore)
1111
api(libs.spring.boot.starter.web)
1212

13-
testImplementation(projects.test)
13+
testImplementation(projects.arrowEndpointTest)
1414
testImplementation(libs.coroutines.core)
1515
testImplementation(libs.kotest.assertionsCore)
1616
testImplementation(libs.kotest.property)
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
POM_NAME=Arrow Endpoint Spring Web Client
2-
POM_ARTIFACT_ID=arrow-endpoint-client-spring-web
3-
POM_PACKAGING=jar
1+
pom.name=Arrow Endpoint Spring Web Client

0 commit comments

Comments
 (0)