Browse Source

Fix NoClassDefFoundError from Gradle upgradle

3.0.x
Rob Winch 12 years ago
parent
commit
0a48b38179
  1. 9
      gradle/javaprojects.gradle

9
gradle/javaprojects.gradle

@ -74,13 +74,12 @@ dependencies { @@ -74,13 +74,12 @@ dependencies {
exclude(group: 'commons-logging', module: 'commons-logging')
}
testCompile 'junit:junit:4.10',
'junit:junit-dep:4.10',
testCompile 'junit:junit-dep:4.10',
'org.mockito:mockito-core:1.9.5',
'org.jmock:jmock:2.6.0',
'org.jmock:jmock-junit4:2.6.0',
'org.hamcrest:hamcrest-core:1.1',
'org.hamcrest:hamcrest-library:1.1',
'org.hamcrest:hamcrest-core:1.3',
'org.hamcrest:hamcrest-library:1.3',
"org.springframework:spring-test:$springVersion"
// Use slf4j/logback for logging
testRuntime "org.slf4j:jcl-over-slf4j:$slf4jVersion",
@ -95,7 +94,7 @@ test { @@ -95,7 +94,7 @@ test {
jvmArgs = ['-ea', '-Xmx500m']
maxParallelForks = guessMaxForks()
logging.captureStandardOutput(LogLevel.INFO)
testReport = false
//testReport = false
}
def guessMaxForks() {
int processors = Runtime.runtime.availableProcessors()

Loading…
Cancel
Save