We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a9ebadf + f0b76c5 commit c1e5b64Copy full SHA for c1e5b64
3 files changed
.github/scripts/generate-wiki-docs.py
@@ -828,4 +828,4 @@ def main():
828
829
830
if __name__ == "__main__":
831
- sys.exit(main())
+ sys.exit(main())
.github/workflows/maven-build.yml
@@ -32,9 +32,10 @@ jobs:
32
with:
33
distribution: 'temurin'
34
java-version: ${{ matrix.java }}
35
+ cache: maven
36
37
- name: Build with Maven
- run: ./mvnw
38
+ run: mvn
39
--batch-mode
40
--update-snapshots
41
--file pom.xml
.github/workflows/maven-publish.yml
@@ -40,13 +40,9 @@ jobs:
java-version: '11'
42
43
- server-id: ossrh
44
- server-username: MAVEN_USERNAME
45
- server-password: MAVEN_PASSWORD
46
- cache: maven
47
48
- name: Publish package
49
- run: mvn
+ run: ./mvnw
50
51
52
0 commit comments