We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3ebaae commit 0158b34Copy full SHA for 0158b34
build.gradle
@@ -12,14 +12,22 @@ plugins {
12
}
13
14
group = 'net.minecrell'
15
-version = '0.8.2-SNAPSHOT'
+version = '0.9.0-SNAPSHOT'
16
description = 'A Gradle plugin to manage patches for Git repositories'
17
18
-sourceCompatibility = 1.6
19
-targetCompatibility = 1.6
+sourceCompatibility = '1.7'
+targetCompatibility = '1.7'
20
+
21
+repositories {
22
+ jcenter()
23
+}
24
25
dependencies {
- compile localGroovy()
26
+ compileOnly'org.codehaus.groovy:groovy-all:2.4.7:indy'
27
28
29
+tasks.withType(GroovyCompile) {
30
+ groovyOptions.optimizationOptions.indy = true
31
32
33
license {
0 commit comments