Skip to content

Commit

Permalink
#128: Fix errors after Gradle Upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
Sabrina Wullschleger committed Apr 11, 2024
1 parent c00a613 commit fa644af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions gretl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ plugins {
id 'org.cyclonedx.bom' version '1.7.4'
}

sourceCompatibility = 1.8
targetCompatibility = 1.8
java {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

compileJava.options.encoding = 'US-ASCII'

apply from: '../dependencies.gradle'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ task ili2gpkgimport(type: Ili2gpkgImport) {
defaultSrsCode = "2056"
dataFile = fileTree(".").matching {
include"*.xtf"
}
}.files.toList()
dataset = [ 'DatasetA', 'DatasetB']
dbfile = file("Beispiel2.gpkg")
}

0 comments on commit fa644af

Please sign in to comment.