File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818- Added mising fields to field validation [ #1422 ] ( https://github.com/ie3-institute/PowerSystemDataModel/issues/1422 )
1919- Fixed the issues with rtd for Cylindrical thermal storage [ #1273 ] ( https://github.com/ie3-institute/PowerSystemDataModel/issues/1273 )
2020- Updated Controlling_em for all the loads in readthedocs[ #1447 ] ( https://github.com/ie3-institute/PowerSystemDataModel/issues/1447 )
21+ - Included a doFirst clause into ` checkJavaVersion.gradle ` [ #1462 ] ( https://github.com/ie3-institute/PowerSystemDataModel/issues/1462 )
2122
2223### Changed
2324- Updated CI-Pipeline to run task ` Deploy ` and ` Staging ` only for ` Main ` [ #1403 ] ( https://github.com/ie3-institute/PowerSystemDataModel/issues/1403 )
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55 id ' signing'
66 id ' pmd' // code check, working on source code
77 id ' com.diffplug.spotless' version ' 8.0.0' // code format
8- id ' com.github.spotbugs' version ' 6.4.3 ' // code check, working on byte code
8+ id ' com.github.spotbugs' version ' 6.4.4 ' // code check, working on byte code
99 id ' de.undercouch.download' version ' 5.6.0'
1010 id ' kr.motd.sphinx' version ' 2.10.1' // documentation generation
1111 id ' jacoco' // java code coverage plugin
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ tasks.register("checkJavaVersion") {
44 group = ' Verification'
55 description = ' Enforces correct Java version'
66
7- doLast {
7+ doFirst {
88 def foundVersion = JavaVersion . current()
99 if (foundVersion != javaVersion)
1010 throw new IllegalStateException (" Wrong Java version: required is "
You can’t perform that action at this time.
0 commit comments