Skip to content

Commit

Permalink
chore: use nebule-test-4.0.0
Browse files Browse the repository at this point in the history
that version works with gradle 2.11
  • Loading branch information
tschulte committed Aug 2, 2017
1 parent 49c0879 commit f4a8325
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions gradle-jnlp-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@ apply from: "$rootDir/gradle/code-quality.gradle"
apply from: "$rootDir/gradle/code-coverage.gradle"

dependencies {
compile files(gradleApi().resolve().findAll { !it.name.startsWith('xerces') && !it.name.startsWith('xml-apis') })
compile 'org.codehaus.gpars:gpars:1.2.1'
compile 'org.codehaus.mojo.webstart:webstart-jnlp-servlet:1.0-6.0.02_ea_b02.2'
testCompile 'com.netflix.nebula:nebula-test:2.2.2', {
exclude module: 'groovy-all'
}
compile files(gradleApi().resolve().findAll { !it.name.startsWith('xerces') && !it.name.startsWith('xml-apis') })
compile 'org.codehaus.gpars:gpars:1.2.1'
compile 'org.codehaus.mojo.webstart:webstart-jnlp-servlet:1.0-6.0.02_ea_b02.2'
testCompile 'com.netflix.nebula:nebula-test:4.0.0', {
exclude module: 'groovy-all'
}
}

// we need the servlet published for the tests
test.dependsOn ':jnlp-servlet:publishToMavenLocal'

processResources {
inputs.property 'version', project.version.toString()
filesMatching('META-INF/gradle-plugins/*.properties') {
filter ReplaceTokens, tokens: [version: project.version.toString()]
}
inputs.property 'version', project.version.toString()
filesMatching('META-INF/gradle-plugins/*.properties') {
filter ReplaceTokens, tokens: [version: project.version.toString()]
}
}

0 comments on commit f4a8325

Please sign in to comment.