Skip to content

Commit b5c0377

Browse files
authored
Merge pull request #15 from dai0304/feature/organize-build-scripts
Organize build scripts
2 parents 1be1880 + 0cc7a5b commit b5c0377

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ buildscript {
1515
}
1616

1717
plugins {
18-
id "com.github.hierynomus.license" version "0.12.1"
1918
id "com.jfrog.bintray" version "1.7.1"
2019
}
2120

@@ -60,11 +59,13 @@ subprojects {
6059
apply from: "${rootProject.projectDir}/gradle/quality/forbiddenapis.gradle"
6160
apply from: "${rootProject.projectDir}/gradle/quality/spotless.gradle"
6261

63-
apply from: "${rootProject.projectDir}/gradle/resolveDependencies.gradle"
6462
apply from: "${rootProject.projectDir}/gradle/sourceArtifact.gradle"
6563
apply from: "${rootProject.projectDir}/gradle/bintray.gradle"
6664

6765
// compiler
66+
tasks.withType(AbstractCompile) each {
67+
it.options.encoding = "UTF-8"
68+
}
6869
compileJava {
6970
options.compilerArgs << "-Xlint"
7071
}

0 commit comments

Comments
 (0)