File: markdown-to-ascii.patch

package info (click to toggle)
moarvm 2020.12%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 18,652 kB
  • sloc: ansic: 268,178; perl: 8,186; python: 1,316; makefile: 768; sh: 287
file content (18 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/build.gradle b/build.gradle
index a88e815..90fe7a6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -138,3 +138,13 @@ eclipse {
     defaultOutputDir = file('build/eclipse')
   }
 }
+
+jar {
+  manifest {
+    attributes "Main-Class": "nl.jworks.markdown_to_asciidoc.Converter"
+  }
+
+  from {
+    configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
+  }
+}