aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-lib/build.gradle
diff options
context:
space:
mode:
authorAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2013-09-03 15:57:36 +0200
committerAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2013-09-03 15:57:36 +0200
commitfef9b07b2c4542b54a79c8632268fc98f7ba460e (patch)
tree6824dbda587b6c1f060b5f32eff535db3c503cca /pdf-as-lib/build.gradle
parente2940ccfd91df2cef19f725fc431d7ff5c50f960 (diff)
downloadpdf-as-4-fef9b07b2c4542b54a79c8632268fc98f7ba460e.tar.gz
pdf-as-4-fef9b07b2c4542b54a79c8632268fc98f7ba460e.tar.bz2
pdf-as-4-fef9b07b2c4542b54a79c8632268fc98f7ba460e.zip
Basic gradle files
Diffstat (limited to 'pdf-as-lib/build.gradle')
-rw-r--r--pdf-as-lib/build.gradle29
1 files changed, 29 insertions, 0 deletions
diff --git a/pdf-as-lib/build.gradle b/pdf-as-lib/build.gradle
new file mode 100644
index 00000000..41c9a3ba
--- /dev/null
+++ b/pdf-as-lib/build.gradle
@@ -0,0 +1,29 @@
+apply plugin: 'java'
+apply plugin: 'eclipse'
+
+jar {
+ manifest {
+ attributes 'Implementation-Title': 'PDF-AS-4 Library', 'Implementation-Version': version
+ }
+}
+
+repositories {
+ mavenCentral()
+}
+
+dependencies {
+ compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
+ testCompile group: 'junit', name: 'junit', version: '4.+'
+}
+
+test {
+ systemProperties 'property': 'value'
+}
+
+uploadArchives {
+ repositories {
+ flatDir {
+ dirs 'repos'
+ }
+ }
+}