Skip to content

Commit

Permalink
Merge branch 'dev' into df/#417_transformer_inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
staudtMarius committed May 7, 2024
2 parents 6ac61ff + df34787 commit a038249
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -224,3 +224,6 @@ gradle-app.setting
# Don't commit the virtual environment of python
**/venv
docs/readthedocs/build

# Ignore output files
/output/
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'scala'
id 'pmd' // code check, working on source code
id 'com.diffplug.spotless' version '6.25.0'//code format
id 'com.github.spotbugs' version '6.0.12' // code check, working on byte code
id 'com.github.spotbugs' version '6.0.14' // code check, working on byte code
id 'de.undercouch.download' version '5.6.0'
id 'kr.motd.sphinx' version '2.10.1' // documentation generation
id "com.github.maiflai.scalatest" version "0.32" // run scalatest without specific spec task
Expand All @@ -17,11 +17,11 @@ ext {
javaVersion = JavaVersion.VERSION_17

scalaVersion = '2.13'
scalaBinaryVersion = '2.13.13'
scalaBinaryVersion = '2.13.14'
pekkoVersion = '1.0.2'

tscfgVersion = '0.9.995'
scapegoatVersion = '2.1.5'
scapegoatVersion = '2.1.6'

scriptsLocation = 'gradle' + File.separator + 'scripts' + File.separator
docsDirName = 'docs'
Expand Down
2 changes: 1 addition & 1 deletion gradle/scripts/scoverage.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// https://github.com/scoverage/gradle-scoverage/issues/109 for details

scoverage {
scoverageVersion = "2.1.0"
scoverageVersion = "2.1.1"
scoverageScalaVersion = scalaBinaryVersion
coverageOutputHTML = false
coverageOutputXML = true
Expand Down

0 comments on commit a038249

Please sign in to comment.