Skip to content

Commit

Permalink
Add filteringCharset = 'UTF-8' (JabRef#1945)
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr authored and zesaro committed Oct 27, 2016
1 parent 967632e commit 4e13aa6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ install4j {
}

task wrapper(type: Wrapper) {
gradleVersion = '2.14.1'
gradleVersion = '3.0'
}


Expand All @@ -66,8 +66,8 @@ configurations {
databaseTestCompile.extendsFrom testCompile
databaseTestRuntime.extendsFrom testRuntime

integrationTestCompile.extendsFrom testCompile
integrationTestRuntime.extendsFrom testRuntime
integrationTestCompile.extendsFrom testCompile
integrationTestRuntime.extendsFrom testRuntime
}

dependencies {
Expand Down Expand Up @@ -142,7 +142,7 @@ sourceSets {
runtimeClasspath += main.output + test.output
}
}
integrationTest {
integrationTest {
java {
compileClasspath += main.output + test.output
runtimeClasspath += main.output + test.output
Expand All @@ -158,6 +158,8 @@ processResources {
"year": String.valueOf(Calendar.getInstance().get(Calendar.YEAR)),
"authors": new File('AUTHORS').readLines().findAll { !it.startsWith("#") }.join(", "),
"developers": new File('DEVELOPERS').readLines().findAll { !it.startsWith("#") }.join(", "))

filteringCharset = 'UTF-8'
}

filesMatching("resource/**/meta.xml") {
Expand Down

0 comments on commit 4e13aa6

Please sign in to comment.