Skip to content

Commit

Permalink
Use 5.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Sep 11, 2018
1 parent 6c81972 commit c155a7f
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions junit5-jupiter-extensions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ tasks.withType(JavaCompile) {
}

dependencies {
compile("org.junit.jupiter:junit-jupiter-api:5.3.0") {
compile("org.junit.jupiter:junit-jupiter-api:5.3.1") {
because 'building extensions in "main" using JUnit Jupiter API'
}
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.3.0") {
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.3.1") {
because 'at least one engine is needed at test runtime'
}
}
Expand Down
2 changes: 1 addition & 1 deletion junit5-jupiter-starter-ant/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Set constants.
#
junit_platform_version='1.3.0'
junit_platform_version='1.3.1'
ant_version='1.10.5'
ant_folder="apache-ant-${ant_version}"
ant_archive="${ant_folder}-bin.tar.gz"
Expand Down
6 changes: 3 additions & 3 deletions junit5-jupiter-starter-gradle-groovy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ repositories {

dependencies {
compile localGroovy()
testCompile('org.junit.jupiter:junit-jupiter-api:5.3.0')
testCompile('org.junit.jupiter:junit-jupiter-params:5.3.0')
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.3.0')
testCompile('org.junit.jupiter:junit-jupiter-api:5.3.1')
testCompile('org.junit.jupiter:junit-jupiter-params:5.3.1')
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.3.1')
}

test {
Expand Down
6 changes: 3 additions & 3 deletions junit5-jupiter-starter-gradle-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ repositories {
}

dependencies {
testCompile("org.junit.jupiter:junit-jupiter-api:5.3.0")
testCompile("org.junit.jupiter:junit-jupiter-params:5.3.0")
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.3.0")
testCompile("org.junit.jupiter:junit-jupiter-api:5.3.1")
testCompile("org.junit.jupiter:junit-jupiter-params:5.3.1")
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.3.1")
}

tasks.withType<Test> {
Expand Down
6 changes: 3 additions & 3 deletions junit5-jupiter-starter-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ repositories {
}

dependencies {
testCompile('org.junit.jupiter:junit-jupiter-api:5.3.0')
testCompile('org.junit.jupiter:junit-jupiter-params:5.3.0')
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.3.0')
testCompile('org.junit.jupiter:junit-jupiter-api:5.3.1')
testCompile('org.junit.jupiter:junit-jupiter-params:5.3.1')
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.3.1')
}

test {
Expand Down
2 changes: 1 addition & 1 deletion junit5-jupiter-starter-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>

<junit.jupiter.version>5.3.0</junit.jupiter.version>
<junit.jupiter.version>5.3.1</junit.jupiter.version>
</properties>

<dependencies>
Expand Down
6 changes: 3 additions & 3 deletions junit5-migration-gradle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ implementation similar to the following.

```groovy
dependencies {
testCompile("org.junit.jupiter:junit-jupiter-api:5.2.0")
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.2.0")
testCompile("org.junit.jupiter:junit-jupiter-api:5.3.1")
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.3.1")
}
```

Expand All @@ -71,7 +71,7 @@ JUnit Vintage TestEngine implementation similar to the following.
```groovy
dependencies {
testCompile("junit:junit:4.12")
testRuntime("org.junit.vintage:junit-vintage-engine:5.2.0")
testRuntime("org.junit.vintage:junit-vintage-engine:5.3.1")
}
```

Expand Down
6 changes: 3 additions & 3 deletions junit5-migration-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ repositories {

dependencies {
def junit4Version = '4.12'
def junitVintageVersion = '5.3.0'
def junitJupiterVersion = '5.3.0'
def junitPlatformVersion = '1.3.0'
def junitVintageVersion = '5.3.1'
def junitJupiterVersion = '5.3.1'
def junitPlatformVersion = '1.3.1'

// JUnit Jupiter API and TestEngine implementation
testCompile("org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}")
Expand Down
6 changes: 3 additions & 3 deletions junit5-migration-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>

<junit.version>4.12</junit.version>
<junit.jupiter.version>5.3.0</junit.jupiter.version>
<junit.vintage.version>5.3.0</junit.vintage.version>
<junit.platform.version>1.3.0</junit.platform.version>
<junit.jupiter.version>5.3.1</junit.jupiter.version>
<junit.vintage.version>5.3.1</junit.vintage.version>
<junit.platform.version>1.3.1</junit.platform.version>
</properties>

<dependencies>
Expand Down
8 changes: 4 additions & 4 deletions junit5-modular-world/compile.jsh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
//
// download main and test dependencies
//
String platformVersion = "1.3.0"
String jupiterVersion = "5.3.0"
String vintageVersion = "5.3.0"
String platformVersion = "1.3.1"
String jupiterVersion = "5.3.1"
String vintageVersion = "5.3.1"
get("lib", "org.junit.platform", "junit-platform-commons", platformVersion)
get("lib", "org.junit.platform", "junit-platform-console", platformVersion)
get("lib", "org.junit.platform", "junit-platform-engine", platformVersion)
Expand All @@ -19,7 +19,7 @@ get("lib", "org.junit.vintage", "junit-vintage-engine", vintageVersion)
get("lib", "junit", "junit", "4.12")
get("lib", "org.hamcrest", "hamcrest-core", "1.3")
get("lib", "org.apiguardian", "apiguardian-api", "1.0.0")
get("lib", "org.opentest4j", "opentest4j", "1.1.0")
get("lib", "org.opentest4j", "opentest4j", "1.1.1")
get("lib", "net.jqwik", "jqwik", "0.8.10")

// create target directories
Expand Down
6 changes: 3 additions & 3 deletions junit5-multiple-engines/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ repositories {

dependencies {
def junit4Version = '4.12'
def junitVintageVersion = '5.3.0'
def junitJupiterVersion = '5.3.0'
def junitPlatformVersion = '1.3.0'
def junitVintageVersion = '5.3.1'
def junitJupiterVersion = '5.3.1'
def junitPlatformVersion = '1.3.1'

// JUnit Jupiter
testCompile("org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}")
Expand Down

0 comments on commit c155a7f

Please sign in to comment.