aboutsummaryrefslogtreecommitdiff
path: root/pkgs/signald/gradle-plugin.patch
blob: 6952654758d36f643c89cf01fe147f79d858ed41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff --git a/build.gradle b/build.gradle
index 11d7a99..66805bb 100644
--- a/build.gradle
+++ b/build.gradle
@@ -3,9 +3,12 @@ import org.gradle.nativeplatform.platform.internal.OperatingSystemInternal
 import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
 import org.xml.sax.SAXParseException
 
-plugins {
-   id 'de.fuerstenau.buildconfig' version '1.1.8'
+buildscript {
+  dependencies {
+    classpath files ("BuildConfig.jar")
+  }
 }
+apply plugin: 'de.fuerstenau.buildconfig'
 
 apply plugin: 'java'
 apply plugin: 'application'
@@ -185,4 +188,4 @@ task integrationTest(type: Test) {
     testClassesDirs = sourceSets.integrationTest.output.classesDirs
     classpath = sourceSets.integrationTest.runtimeClasspath
     outputs.upToDateWhen { false }
-}
\ No newline at end of file
+}