File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed
Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ allprojects {
3030 sonatypeReleaseUrl = " $sonatypeBaseUrl /service/local/staging/deploy/maven2/"
3131 sonatypeUploadUrl = isSnapshot ? sonatypeSnapshotUrl : sonatypeReleaseUrl
3232 primaryEmail = " functionaljava@googlegroups.com"
33+
34+ dependencyJunit = " junit:junit:4.11"
3335 }
3436 version = fjVersion
3537 group = " org.functionaljava"
Original file line number Diff line number Diff line change 1616
1717dependencies {
1818 compile ' org.slf4j:slf4j-api:1.7.5'
19- testCompile " junit:junit:4.11 "
19+ testCompile dependencyJunit
2020}
2121
2222task javadocJar (type : Jar , dependsOn : javadoc) {
Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ archivesBaseName = "${project.projectName}-${project.name}"
99dependencies {
1010 compile ' org.slf4j:slf4j-api:1.7.5'
1111 compile project(" :core" )
12- testCompile " junit:junit:4.11 "
12+ testCompile dependencyJunit
1313}
Original file line number Diff line number Diff line change @@ -26,6 +26,6 @@ dependencies {
2626 testCompile " org.scala-lang:scala-library:$scalaVersion "
2727 testCompile " org.scalacheck:scalacheck_$scalacheckScalaVersion :$scalacheckVersion "
2828
29- testCompile " junit:junit:4.11 "
29+ testCompile dependencyJunit
3030 testCompile ' org.scalatest:scalatest_2.10:1.9.2'
3131}
You can’t perform that action at this time.
0 commit comments