Skip to content

Commit f5467c3

Browse files
authored
Merge branch 'dev' into ps/#1445-CsvToFile
2 parents 61908d2 + 07ee1b6 commit f5467c3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

gradle/scripts/checkJavaVersion.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 "

0 commit comments

Comments
 (0)