diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-01-21 09:57:16 +0100 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-01-21 09:57:16 +0100 |
commit | 2436aa273f00dafb465c2342ea8e7297898915d2 (patch) | |
tree | 27cf115b4ec6d36f84b01b50acc403cf31b3ab6b /build.gradle | |
parent | 8d801ab37834b0f11c6a16c240d77da71a6ab816 (diff) | |
download | pdf-as-4-2436aa273f00dafb465c2342ea8e7297898915d2.tar.gz pdf-as-4-2436aa273f00dafb465c2342ea8e7297898915d2.tar.bz2 pdf-as-4-2436aa273f00dafb465c2342ea8e7297898915d2.zip |
Implementations for pdf-as-web and pdf-as-legacy
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/build.gradle b/build.gradle index b0bf446d..e70b4abc 100644 --- a/build.gradle +++ b/build.gradle @@ -1,20 +1,16 @@ subprojects { - apply plugin: 'java' - apply plugin: 'eclipse' + apply plugin: 'java' + apply plugin: 'eclipse' - repositories { - mavenCentral() - } + repositories { + mavenCentral() + } - dependencies { - testCompile 'junit:junit:4.8.2' - } + dependencies { testCompile 'junit:junit:4.8.2' } sourceCompatibility = 1.5 - - version = '4.0' - jar { - manifest.attributes provider: 'EGIZ' - } + version = '4.0.0-SNAPSHOT' + + jar { manifest.attributes provider: 'EGIZ' } } |