diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2013-09-03 15:57:36 +0200 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2013-09-03 15:57:36 +0200 |
commit | fef9b07b2c4542b54a79c8632268fc98f7ba460e (patch) | |
tree | 6824dbda587b6c1f060b5f32eff535db3c503cca /build.gradle | |
parent | e2940ccfd91df2cef19f725fc431d7ff5c50f960 (diff) | |
download | pdf-as-4-fef9b07b2c4542b54a79c8632268fc98f7ba460e.tar.gz pdf-as-4-fef9b07b2c4542b54a79c8632268fc98f7ba460e.tar.bz2 pdf-as-4-fef9b07b2c4542b54a79c8632268fc98f7ba460e.zip |
Basic gradle files
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle new file mode 100644 index 00000000..b0bf446d --- /dev/null +++ b/build.gradle @@ -0,0 +1,20 @@ +subprojects { + apply plugin: 'java' + apply plugin: 'eclipse' + + repositories { + mavenCentral() + } + + dependencies { + testCompile 'junit:junit:4.8.2' + } + + sourceCompatibility = 1.5 + + version = '4.0' + + jar { + manifest.attributes provider: 'EGIZ' + } +} |