Skip to content

Commit bdb754b

Browse files
Move alpha to stable (#1531)
* chore: Move alpha components to stable Signed-off-by: Javier Aliaga <[email protected]> * ci: Do not run tests on publish step Signed-off-by: Javier Aliaga <[email protected]> * chore: Fix build Signed-off-by: Javier Aliaga <[email protected]> --------- Signed-off-by: Javier Aliaga <[email protected]>
1 parent d3a3359 commit bdb754b

File tree

18 files changed

+27
-30
lines changed

18 files changed

+27
-30
lines changed

.github/scripts/update_sdk_version.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ mvn versions:set-property -Dproperty=dapr.sdk.alpha.version -DnewVersion=$DAPR_J
1919
###################
2020

2121
# sdk-workflows
22-
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_ALPHA_VERSION -f sdk-workflows/pom.xml
22+
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_VERSION -f sdk-workflows/pom.xml
2323

2424
# testcontainers-dapr
25-
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_ALPHA_VERSION -f testcontainers-dapr/pom.xml
25+
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_VERSION -f testcontainers-dapr/pom.xml
2626

2727
# dapr-spring
28-
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_ALPHA_VERSION -DprocessDependencies=true -f dapr-spring/pom.xml
29-
mvn versions:set-property -Dproperty=dapr.spring.version -DnewVersion=$DAPR_JAVA_SDK_ALPHA_VERSION -f dapr-spring/pom.xml
28+
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_VERSION -DprocessDependencies=true -f dapr-spring/pom.xml
29+
mvn versions:set-property -Dproperty=dapr.spring.version -DnewVersion=$DAPR_JAVA_SDK_VERSION -f dapr-spring/pom.xml
3030

3131
# spring-boot-examples
32-
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_ALPHA_VERSION -f spring-boot-examples/pom.xml
32+
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_VERSION -f spring-boot-examples/pom.xml
3333

3434
git clean -f

.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,14 +190,11 @@ jobs:
190190
if: startswith(github.ref, 'refs/tags/v') && !contains(env.PARENT_VERSION, '-SNAPSHOT')
191191
run: |
192192
echo "DEPLOY_OSSRH=true" >> $GITHUB_ENV
193-
- name: Install jars
194-
if: env.DEPLOY_OSSRH == 'true'
195-
run: ./mvnw install -DskipTests -B -q
196193
- name: Publish to ossrh
197194
if: env.DEPLOY_OSSRH == 'true'
198195
run: |
199196
echo ${{ secrets.GPG_PRIVATE_KEY }} | base64 -d > private-key.gpg
200197
export GPG_TTY=$(tty)
201198
gpg --batch --import private-key.gpg
202-
./mvnw -V -B -Dgpg.skip=false -s settings.xml deploy
199+
./mvnw -V -B -Dgpg.skip=false -DskipTests -s settings.xml deploy
203200
curl -X POST https://ossrh-staging-api.central.sonatype.com/manual/upload/defaultRepository/io.dapr

dapr-spring/dapr-spring-boot-autoconfigure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.17.0-SNAPSHOT</version>
9+
<version>1.17.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-boot-autoconfigure</artifactId>

dapr-spring/dapr-spring-boot-starters/dapr-spring-boot-starter-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.17.0-SNAPSHOT</version>
9+
<version>1.17.0-SNAPSHOT</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

dapr-spring/dapr-spring-boot-starters/dapr-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.17.0-SNAPSHOT</version>
9+
<version>1.17.0-SNAPSHOT</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

dapr-spring/dapr-spring-boot-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.17.0-SNAPSHOT</version>
9+
<version>1.17.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-boot-tests</artifactId>

dapr-spring/dapr-spring-data/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.17.0-SNAPSHOT</version>
9+
<version>1.17.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-data</artifactId>

dapr-spring/dapr-spring-messaging/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.17.0-SNAPSHOT</version>
9+
<version>1.17.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-messaging</artifactId>

dapr-spring/dapr-spring-workflows/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.17.0-SNAPSHOT</version>
9+
<version>1.17.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-workflows</artifactId>

dapr-spring/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<groupId>io.dapr.spring</groupId>
1414
<artifactId>dapr-spring-parent</artifactId>
1515
<packaging>pom</packaging>
16-
<version>0.17.0-SNAPSHOT</version>
16+
<version>1.17.0-SNAPSHOT</version>
1717
<name>dapr-spring-parent</name>
1818
<description>SDK extension for Spring and Spring Boot</description>
1919

@@ -34,7 +34,7 @@
3434
<testcontainers.version>1.19.8</testcontainers.version>
3535
<junit.version>5.11.2</junit.version>
3636
<!-- WARNING: don't change this property unless you also update .github/scripts/update_sdk_version.sh -->
37-
<dapr.spring.version>0.17.0-SNAPSHOT</dapr.spring.version>
37+
<dapr.spring.version>1.17.0-SNAPSHOT</dapr.spring.version>
3838
</properties>
3939

4040
<dependencyManagement>
@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>io.dapr</groupId>
6060
<artifactId>dapr-sdk-workflows</artifactId>
61-
<version>${dapr.sdk.alpha.version}</version>
61+
<version>${dapr.sdk.version}</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>io.dapr.spring</groupId>

0 commit comments

Comments
 (0)