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

release: release 0.6.0 #99

Merged
merged 25 commits into from
Sep 2, 2022
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
801c3af
release: 0.6.0
bsbodden Aug 31, 2022
58fb6c5
refactor: re-order Java modifiers per conventions
bsbodden Aug 31, 2022
9e29f77
refactor: use Collections.emptyList() instead of Collections.EMPTY_LIST
bsbodden Aug 31, 2022
4208c78
refactor: use the diamond operator ("<>") to reduce the verbosity of …
bsbodden Aug 31, 2022
ad1012a
refactor: lambdas should be replaced with method references (SonarLin…
bsbodden Aug 31, 2022
78ce216
refactor: chained AssertJ assertions should be simplified to the corr…
bsbodden Aug 31, 2022
319a859
refactor: consecutive AssertJ "assertThat" statements should be chain…
bsbodden Aug 31, 2022
8e85518
refactor: Strings should not be concatenated using '+' in a loop (Son…
bsbodden Aug 31, 2022
71cb60f
refactor: boxed "Boolean" should be avoided in boolean expressions (S…
bsbodden Aug 31, 2022
27e412f
refactor: "equals(Object obj)" should be overridden along with the "c…
bsbodden Aug 31, 2022
45005ab
refactor: boxing and unboxing should not be immediately reversed (Son…
bsbodden Aug 31, 2022
32eee98
refactor: "equals(Object obj)" and "hashCode()" should be overridden …
bsbodden Aug 31, 2022
f9a1829
refactor: deprecated code should be removed (java:S1133)
bsbodden Aug 31, 2022
364ad01
refactor: utility classes should not have public constructors (SonarL…
bsbodden Aug 31, 2022
cee7bf4
refactor: "@Override" should be used on overriding and implementing m…
bsbodden Aug 31, 2022
ac5b303
refactor: optional value should only be accessed after calling isPres…
bsbodden Aug 31, 2022
f7629d5
fix: second class type in Pair not properly declared in getFirstGetter
bsbodden Aug 31, 2022
c8f3903
refactor: constructors of an "abstract" class should not be declared …
bsbodden Aug 31, 2022
5d7e695
docs: add Spring Data Redis dependent version to README
bsbodden Aug 31, 2022
e580ec2
ci: update wordlist for spellchecker action
bsbodden Aug 31, 2022
0708a56
refactor: clean up the wording on metamodel generator messages
bsbodden Sep 1, 2022
3aa27b2
fixing syntax
chayim Sep 1, 2022
d7fa985
ci: update maven commands in integration workflow
bsbodden Sep 1, 2022
65b6919
test: skip test-containers-based tests if docker is not available
bsbodden Sep 1, 2022
0faa1f2
ci: update targets in integration workflow
bsbodden Sep 1, 2022
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
ci: update maven commands in integration workflow
  • Loading branch information
bsbodden committed Sep 1, 2022
commit d7fa9853a3ac9b92fa3687370fc89481a02dfa14
7 changes: 4 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:
java-version: 11
- run: mvn dependency:go-offline
- name: Build
run: mvn integration-test
- name: cobertura
run: mvn cobertura:cobertura
run: mvn clean process-test-classes verify
# TODO: needs to be replaced with Jacoco (Cobertura does not work with JDK 11+)
# - name: cobertura
# run: mvn cobertura:cobertura
- name: codecov
run: |
curl -s https://raw.githubusercontent.com/codecov/codecov-bash/master/codecov