We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc330a5 commit 36032a9Copy full SHA for 36032a9
1 file changed
.github/workflows/maven-central-release.yml
@@ -26,18 +26,18 @@ jobs:
26
with:
27
node-version: '20'
28
29
+ # Deploy runs the integration tests, but only with Jackson 3
30
+ # We run Jackson 2 IT manually
31
- name: Jackson 2 Integration Tests
32
run: mvn -pl mcp-test -am -Pjackson2 test
33
- - name: Build and Test
- run: mvn clean verify
34
-
+ # Deploy runs all previous maven goals, including test and verify
35
- name: Publish to Maven Central
36
run: |
37
mvn --batch-mode \
38
-Prelease \
39
-Pjavadoc \
40
- deploy
+ clean deploy
41
env:
42
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
43
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
0 commit comments