diff options
author | pacien | 2018-07-25 19:03:42 +0200 |
---|---|---|
committer | pacien | 2018-07-25 19:03:42 +0200 |
commit | 4d80dd03b75421f2fb40cb89f9634be47b09a779 (patch) | |
tree | 6a3768b25e021f33c4d1b7ba73af53d4be9e4f34 | |
parent | 1278fb74340e2c1d9ed33ff9afe085ac31e9dba3 (diff) | |
download | pandoc-filter-plantuml-4d80dd03b75421f2fb40cb89f9634be47b09a779.tar.gz |
Reindent
-rw-r--r-- | build.gradle | 20 |
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' | |||
6 | sourceCompatibility = 1.8 | 6 | sourceCompatibility = 1.8 |
7 | 7 | ||
8 | jar { | 8 | jar { |
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 | ||
18 | repositories { | 18 | repositories { |
19 | mavenCentral() | 19 | mavenCentral() |
20 | } | 20 | } |
21 | 21 | ||
22 | dependencies { | 22 | dependencies { |
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 | } |