Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.2.8 changes #279

Merged
merged 13 commits into from
Feb 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Capture maven version info during CI builds.
  • Loading branch information
norrisjeremy committed Feb 15, 2023
commit a51e4d61780551dc320797b3101df63ff6731753
2 changes: 1 addition & 1 deletion .github/workflows/javadoc.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ jobs:
java-version: '17'
check-latest: true
- name: Build Javadoc
run: mvn javadoc:javadoc
run: mvn -B -V javadoc:javadoc --file pom.xml
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ jobs:
java-version: '17'
check-latest: true
- name: Build with Maven
run: mvn -B -DskipTests=true package --file pom.xml
run: mvn -B -V -DskipTests=true package --file pom.xml
- uses: actions/upload-artifact@v3
with:
name: java-${{ matrix.java }}-jars
@@ -49,7 +49,7 @@ jobs:
java-version: ${{ matrix.java }}
check-latest: true
- name: Test with Maven
run: mvn -B -P coverage verify -Denforcer.skip=true -Dmaven.resources.skip=true -Dmaven.main.skip=true -Dassembly.skipAssembly=true -Dmaven.javadoc.skip=true -DskipITs=false --file pom.xml
run: mvn -B -V -P coverage verify -Denforcer.skip=true -Dmaven.resources.skip=true -Dmaven.main.skip=true -Dassembly.skipAssembly=true -Dmaven.javadoc.skip=true -DskipITs=false --file pom.xml
- uses: actions/upload-artifact@v3
with:
name: java-${{ matrix.java }}-testresults