Skip to content

Commit

Permalink
Bump junit from 4.12 to 4.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Oct 19, 2020
1 parent a13c512 commit 90a4b86
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Once comfortable enough with the command line interface, the build plugin for Gr

* [`BuildTask.java`](src/main/java/org/bytedeco/gradle/javacpp/BuildTask.java)
* [`BuildPlugin.java`](src/main/java/org/bytedeco/gradle/javacpp/BuildPlugin.java)
* [`BuildExtension.java`](src/main/java/org/bytedeco/gradle/javacpp/BuildExtension.java)

```groovy
plugins {
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {

dependencies {
api "org.bytedeco:javacpp:$version"
testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13.1'
}

gradlePlugin {
Expand Down Expand Up @@ -51,7 +51,7 @@ javadoc {
'https://docs.gradle.org/current/javadoc',
'http://bytedeco.org/javacpp/apidocs',
'http://www.slf4j.org/apidocs',
'http://junit.org/junit4/javadoc/4.12']
'http://junit.org/junit4/javadoc/4.13.1']
}

//doesn't work with Gradle 5.x
Expand Down
2 changes: 1 addition & 1 deletion samples/javacv-demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {
dependencies {
api "org.bytedeco:javacv-platform:$version"
// api "org.bytedeco:opencv-platform-gpu:4.4.0-$version"
testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13.1'
}

// Let's create a standalone "uber JAR" to see what we get in it
Expand Down
2 changes: 1 addition & 1 deletion samples/zlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
javacppPlatform "org.bytedeco:zlib:$version:windows-x86"
javacppPlatform "org.bytedeco:zlib:$version:windows-x86_64"
testRuntimeOnly "org.bytedeco:javacpp:$javacppVersion:$javacppPlatform"
testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13.1'
}

tasks.withType(org.bytedeco.gradle.javacpp.BuildTask) {
Expand Down

0 comments on commit 90a4b86

Please sign in to comment.