Skip to content

Commit

Permalink
next release version 2.7 with updated junit* dependencies for builds
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Schmid <service@aaschmid.de>
  • Loading branch information
aaschmid committed Nov 6, 2020
1 parent dc1d381 commit 4364d3f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ build-job: &build-job
- gradle-repo-v2-{{ .Environment.CIRCLE_JOB }}-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}

- run: ./gradlew --build-cache --scan build -Pjunit4Version=4.10 -PjunitJupiterVersion=5.5.0 -PskipSpotBugs
- run: ./gradlew --build-cache --scan build -Pjunit4Version=4.11 -PjunitJupiterVersion=5.5.1 -PskipSpotBugs
- run: ./gradlew --build-cache --scan build -Pjunit4Version=4.12 -PjunitJupiterVersion=5.5.1 -PskipSpotBugs
- run: ./gradlew --build-cache --scan build -Pjunit4Version=4.13 -PjunitJupiterVersion=5.5.1 -PskipSpotBugs
- run: ./gradlew --build-cache --scan build -Pjunit4Version=4.11 -PjunitJupiterVersion=5.5.2 -PskipSpotBugs
- run: ./gradlew --build-cache --scan build -Pjunit4Version=4.12 -PjunitJupiterVersion=5.6.3 -PskipSpotBugs
- run: ./gradlew --build-cache --scan build
- run: COVERALLS_REPO_TOKEN=Npp4tyTSCz0wSMZTJ81vXdVe1uw6WtRrC ./gradlew --build-cache --scan jacocoRootReport coveralls

Expand Down
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ jdk:

script:
- ./gradlew --scan build -Pjunit4Version=4.10 -PjunitJupiterVersion=5.5.0 -PskipSpotBugs
- ./gradlew --scan build -Pjunit4Version=4.11 -PjunitJupiterVersion=5.5.1 -PskipSpotBugs
- ./gradlew --scan build -Pjunit4Version=4.12 -PjunitJupiterVersion=5.5.1 -PskipSpotBugs
- ./gradlew --scan build -Pjunit4Version=4.13 -PjunitJupiterVersion=5.5.1 -PskipSpotBugs
- ./gradlew --scan build -Pjunit4Version=4.11 -PjunitJupiterVersion=5.5.2 -PskipSpotBugs
- ./gradlew --scan build -Pjunit4Version=4.12 -PjunitJupiterVersion=5.6.3 -PskipSpotBugs
- ./gradlew --scan build

- cd ${TRAVIS_BUILD_DIR}/junit4/
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ println("Using skipSpotBugs = $skipSpotBugs for current build.")
// set default junit versions if not set via command line
val junit4Version by extra(findProperty("junit4Version")?.toString() ?: "4.13")
println("Using JUnit4 version $junit4Version for current build.")
val junitJupiterVersion by extra(findProperty("junitJupiterVersion")?.toString() ?: "5.5.2")
val junitJupiterVersion by extra(findProperty("junitJupiterVersion")?.toString() ?: "5.7.0")
println("Using JUnit Jupiter version $junitJupiterVersion for current build.")

class Dependency {
Expand Down Expand Up @@ -54,7 +54,7 @@ subprojects {
apply<aQute.bnd.gradle.BndBuilderPlugin>()

group = "com.tngtech.junit.dataprovider"
version = "2.7-SNAPSHOT"
version = "2.7"

dependencies {
"compileOnly"(dependency.spotBugsAnnotations)
Expand Down

0 comments on commit 4364d3f

Please sign in to comment.