File: 0013-add-fixtures-jar.patch

package info (click to toggle)
sop-java 7.0.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,524 kB
  • sloc: java: 8,357; xml: 170; sh: 98; makefile: 32
file content (20 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
build sop-java-testfixtures jar

This builds an extra jar file to provide sop.testsuite, which is used not only
in this project (sop-java) but in pgpainless as well.

Forwarded: not-needed
Index: sop-java/sop-java/build.gradle
===================================================================
--- sop-java.orig/sop-java/build.gradle
+++ sop-java/sop-java/build.gradle
@@ -48,3 +48,9 @@ dependencies {
     outputDirs sourceSets.testFixtures.output
     testFixturesUsageCompile project(project.path)
 }
+
+task testFixturesJar(type: Jar) {
+    classifier = 'testfixtures'
+    from sourceSets.testFixtures.output
+    include 'sop/testsuite/**'
+}