projects
/
rhynodge.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
514c5ee
)
Add war configuration
author
David ‘Bombe’ Roden
<bombe@pterodactylus.net>
Thu, 7 May 2015 05:06:04 +0000
(07:06 +0200)
committer
David ‘Bombe’ Roden
<bombe@pterodactylus.net>
Thu, 7 May 2015 16:14:37 +0000
(18:14 +0200)
build.gradle
patch
|
blob
|
history
diff --git
a/build.gradle
b/build.gradle
index
643c22d
..
8984693
100644
(file)
--- a/
build.gradle
+++ b/
build.gradle
@@
-1,4
+1,5
@@
apply plugin: "java"
+apply plugin: "war"
apply plugin: "jacoco"
apply plugin: "idea"
@@
-75,4
+76,9
@@
createVersion << {
new File("src/generated/resources/version.txt").withWriter() { it.write(version) }
}
+war {
+ classpath sourceSets.generated.output
+ dependsOn(test)
+}
+
/* vim: set ts=4 sw=4 et: */