Skip to content

Commit

Permalink
0.6.39 Fix looping editing gradle.properties
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaslanjaka committed Dec 23, 2020
1 parent 2504a6e commit 43edcd1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,11 @@ dependencies {
testImplementation "org.robolectric:robolectric:4.4"
}

// compatibility
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
compileJava.options.fork = true

// repackage jar
task repackageDependencies(type: Jar) {
enabled = true
Expand Down Expand Up @@ -269,7 +274,7 @@ task oneJar(type: Jar, dependsOn: mainProjects.collect { it + ":compileJava" })
}
}

// jar builder
// single jar builder
jar {
//reset actions
//actions = []
Expand Down

0 comments on commit 43edcd1

Please sign in to comment.