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