Skip to content
Snippets Groups Projects
Commit d126d3c4 authored by hansen's avatar hansen
Browse files

update gradle file

parent bd261f38
Branches
Tags
No related merge requests found
...@@ -7,6 +7,7 @@ apply plugin: 'findbugs' ...@@ -7,6 +7,7 @@ apply plugin: 'findbugs'
project.version = '1.0.5-SNAPSHOT' project.version = '1.0.5-SNAPSHOT'
project.group = 'de.prob' project.group = 'de.prob'
repositories { repositories {
mavenCentral() mavenCentral()
maven { maven {
...@@ -18,6 +19,10 @@ configurations { // configuration that holds jars to copy into lib ...@@ -18,6 +19,10 @@ configurations { // configuration that holds jars to copy into lib
releaseJars releaseJars
} }
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
def parser_version = '2.5.0-SNAPSHOT' def parser_version = '2.5.0-SNAPSHOT'
dependencies { dependencies {
...@@ -68,7 +73,7 @@ tasks.withType(FindBugs) { ...@@ -68,7 +73,7 @@ tasks.withType(FindBugs) {
test { test {
exclude('testing') exclude('testing')
allJvmArgs = [ "-Xss515m" ] //allJvmArgs = [ "-Xss515m" ]
} }
jar { from sourceSets.main.allJava } jar { from sourceSets.main.allJava }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment