aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorpacien2018-07-25 19:03:42 +0200
committerpacien2018-07-25 19:03:42 +0200
commit4d80dd03b75421f2fb40cb89f9634be47b09a779 (patch)
tree6a3768b25e021f33c4d1b7ba73af53d4be9e4f34 /build.gradle
parent1278fb74340e2c1d9ed33ff9afe085ac31e9dba3 (diff)
downloadpandoc-filter-plantuml-4d80dd03b75421f2fb40cb89f9634be47b09a779.tar.gz
Reindent
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle20
1 files changed, 10 insertions, 10 deletions
diff --git a/build.gradle b/build.gradle
index 8d7325b..f6a0a4f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,21 +6,21 @@ apply plugin: 'java'
6sourceCompatibility = 1.8 6sourceCompatibility = 1.8
7 7
8jar { 8jar {
9 manifest { 9 manifest {
10 attributes 'Main-Class': 'org.pacien.pandoc.filter.plantuml.Filter' 10 attributes 'Main-Class': 'org.pacien.pandoc.filter.plantuml.Filter'
11 } 11 }
12 12
13 from { 13 from {
14 configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } 14 configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
15 } 15 }
16} 16}
17 17
18repositories { 18repositories {
19 mavenCentral() 19 mavenCentral()
20} 20}
21 21
22dependencies { 22dependencies {
23 testCompile group: 'junit', name: 'junit', version: '4.12' 23 testCompile group: 'junit', name: 'junit', version: '4.12'
24 compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6' 24 compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6'
25 compile group: 'net.sourceforge.plantuml', name: 'plantuml', version: '8059' 25 compile group: 'net.sourceforge.plantuml', name: 'plantuml', version: '8059'
26} 26}