File tree 4 files changed +9
-6
lines changed 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 20
20
with :
21
21
java-version : ${{ matrix.java }}
22
22
- run : |
23
- mvn clean install -DskipTests -B
24
- mvn verify -B
23
+ ./mvnw clean install -DskipTests -B
24
+ ./mvnw verify -B
25
+
25
26
deploy :
26
27
runs-on : ubuntu-latest
27
28
name : Deploy
38
39
gpg-private-key : ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import
39
40
gpg-passphrase : MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
40
41
- name : Publish to Apache Maven Central
41
- run : mvn clean deploy -Drelease -DskipTests -B
42
+ run : ./mvnw clean deploy -Drelease -DskipTests -B
42
43
env :
43
44
MAVEN_USERNAME : ${{ secrets.MAVEN_USERNAME }}
44
45
MAVEN_CENTRAL_TOKEN : ${{ secrets.MAVEN_CENTRAL_TOKEN }}
Original file line number Diff line number Diff line change 19
19
with :
20
20
java-version : 8
21
21
- name : Bump version using Maven
22
- run : ' mvn versions:set -DnewVersion=$NEW_VERSION -DgenerateBackupPoms=false -B'
22
+ run : ' ./mvnw versions:set -DnewVersion=$NEW_VERSION -DgenerateBackupPoms=false -B'
23
23
- name : Bump version in docs
24
24
if : ${{ !endsWith(github.event.inputs.version, 'SNAPSHOT') }}
25
25
run : ' find . -type f -name "*.md" -exec sed -i -e "s+<version>[a-zA-Z0-9.-]*<\/version>+<version>$NEW_VERSION</version>+g" {} +'
Original file line number Diff line number Diff line change 22
22
java-version : ${{ matrix.java }}
23
23
distribution : ' temurin'
24
24
- run : |
25
- mvn clean install -DskipTests -B
26
- mvn verify -B
25
+ ./mvnw clean install -DskipTests -B
26
+ ./mvnw verify -B
27
+ ./mvnw javadoc:javadoc
Original file line number Diff line number Diff line change 168
168
<link >https://qpid.apache.org/releases/qpid-proton-j-0.33.7/api/</link >
169
169
<link >https://fasterxml.github.io/jackson-databind/javadoc/2.10/</link >
170
170
</links >
171
+ <source >8</source >
171
172
</configuration >
172
173
<executions >
173
174
<execution >
You can’t perform that action at this time.
0 commit comments