File tree Expand file tree Collapse file tree 22 files changed +178
-82
lines changed
dapr-spring-boot-autoconfigure
dapr-spring-boot-starters
dapr-spring-boot-starter-test
src/test/java/io/dapr/client Expand file tree Collapse file tree 22 files changed +178
-82
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ jobs:
146
146
publish :
147
147
runs-on : ubuntu-latest
148
148
needs : build
149
- timeout-minutes : 10
149
+ timeout-minutes : 30
150
150
env :
151
151
JDK_VER : 17
152
152
OSSRH_USER_TOKEN : ${{ secrets.OSSRH_USER_TOKEN }}
@@ -181,4 +181,4 @@ jobs:
181
181
echo ${{ secrets.GPG_PRIVATE_KEY }} | base64 -d > private-key.gpg
182
182
export GPG_TTY=$(tty)
183
183
gpg --batch --import private-key.gpg
184
- ./mvnw -V -B -Dgpg.skip=false -s settings.xml deploy -Pdeploy-profile
184
+ ./mvnw -V -B -Dgpg.skip=false -s settings.xml deploy
Original file line number Diff line number Diff line change 53
53
git remote set-url origin https://x-access-token:${{ secrets.DAPR_BOT_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git
54
54
# Copy first to allow automation to use the latest version and not the release branch's version.
55
55
cp -R ./.github/scripts ${RUNNER_TEMP}/
56
- ${RUNNER_TEMP}/scripts/create-release.sh ${{ inputs.rel_version }}
57
- trigger :
58
- name : Triggers the Dapr SDK build
59
- runs-on : ubuntu-latest
60
- needs : create-release
61
- steps :
62
- - name : Identify build ref to trigger build and release.
63
- run : |
64
- if [[ "${{ inputs.rel_version }}" == *"SNAPSHOT"* ]]; then
65
- echo "BUILD_GIT_REF=master" >> $GITHUB_ENV
66
- else
67
- echo "BUILD_GIT_REF=v${{ inputs.rel_version }}" >> $GITHUB_ENV
68
- fi
69
- - name : Triggers the build and release.
70
- env :
71
- GITHUB_TOKEN : ${{ secrets.DAPR_BOT_TOKEN }}
72
- run : |
73
- gh workflow run build.yml --repo ${GITHUB_REPOSITORY} --ref '${{ env.BUILD_GIT_REF }}'
56
+ ${RUNNER_TEMP}/scripts/create-release.sh ${{ inputs.rel_version }}
Original file line number Diff line number Diff line change 75
75
<scope >test</scope >
76
76
</dependency >
77
77
</dependencies >
78
-
78
+ <build >
79
+ <plugins >
80
+ <plugin >
81
+ <groupId >org.sonatype.plugins</groupId >
82
+ <artifactId >nexus-staging-maven-plugin</artifactId >
83
+ </plugin >
84
+ </plugins >
85
+ </build >
79
86
</project >
Original file line number Diff line number Diff line change 40
40
<optional >true</optional >
41
41
</dependency >
42
42
</dependencies >
43
-
43
+ <build >
44
+ <plugins >
45
+ <plugin >
46
+ <groupId >org.sonatype.plugins</groupId >
47
+ <artifactId >nexus-staging-maven-plugin</artifactId >
48
+ </plugin >
49
+ </plugins >
50
+ </build >
44
51
</project >
Original file line number Diff line number Diff line change 47
47
</dependency >
48
48
</dependencies >
49
49
50
+ <build >
51
+ <plugins >
52
+ <plugin >
53
+ <groupId >org.sonatype.plugins</groupId >
54
+ <artifactId >nexus-staging-maven-plugin</artifactId >
55
+ </plugin >
56
+ </plugins >
57
+ </build >
50
58
</project >
Original file line number Diff line number Diff line change 41
41
<version >${dapr.sdk.alpha.version} </version >
42
42
</dependency >
43
43
</dependencies >
44
-
44
+ <build >
45
+ <plugins >
46
+ <plugin >
47
+ <groupId >org.sonatype.plugins</groupId >
48
+ <artifactId >nexus-staging-maven-plugin</artifactId >
49
+ </plugin >
50
+ </plugins >
51
+ </build >
45
52
</project >
Original file line number Diff line number Diff line change 21
21
</dependency >
22
22
</dependencies >
23
23
24
+ <build >
25
+ <plugins >
26
+ <plugin >
27
+ <groupId >org.sonatype.plugins</groupId >
28
+ <artifactId >nexus-staging-maven-plugin</artifactId >
29
+ </plugin >
30
+ </plugins >
31
+ </build >
24
32
</project >
Original file line number Diff line number Diff line change 14
14
<description >Dapr Spring Messaging</description >
15
15
<packaging >jar</packaging >
16
16
17
+ <build >
18
+ <plugins >
19
+ <plugin >
20
+ <groupId >org.sonatype.plugins</groupId >
21
+ <artifactId >nexus-staging-maven-plugin</artifactId >
22
+ </plugin >
23
+ </plugins >
24
+ </build >
17
25
</project >
Original file line number Diff line number Diff line change 21
21
<version >${project.version} </version >
22
22
</dependency >
23
23
</dependencies >
24
+ <build >
25
+ <plugins >
26
+ <plugin >
27
+ <groupId >org.sonatype.plugins</groupId >
28
+ <artifactId >nexus-staging-maven-plugin</artifactId >
29
+ </plugin >
30
+ </plugins >
31
+ </build >
24
32
</project >
Original file line number Diff line number Diff line change 92
92
93
93
<build >
94
94
<plugins >
95
+ <plugin >
96
+ <groupId >org.sonatype.plugins</groupId >
97
+ <artifactId >nexus-staging-maven-plugin</artifactId >
98
+ </plugin >
95
99
<plugin >
96
100
<groupId >org.apache.maven.plugins</groupId >
97
101
<artifactId >maven-source-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments