77
88![ Logo] ( .images/logo.png )
99
10- A Gradle plugin that allows for the execution of [ JUnit 5] [ junit5gh ] tests in Android environments using ** Android Gradle Plugin 3.2 .0 or later.**
10+ A Gradle plugin that allows for the execution of [ JUnit 5] [ junit5gh ] tests in Android environments using ** Android Gradle Plugin 3.5 .0 or later.**
1111
1212## How?
1313
@@ -56,15 +56,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
5656
5757 dependencies {
5858 // (Required) Writing and executing Unit Tests on the JUnit Platform
59- testImplementation "org.junit.jupiter:junit-jupiter-api:5.5.2 "
60- testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.5.2 "
59+ testImplementation "org.junit.jupiter:junit-jupiter-api:5.6.0 "
60+ testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.6.0 "
6161
6262 // (Optional) If you need "Parameterized Tests"
63- testImplementation "org.junit.jupiter:junit-jupiter-params:5.5.2 "
63+ testImplementation "org.junit.jupiter:junit-jupiter-params:5.6.0 "
6464
6565 // (Optional) If you also have JUnit 4-based tests
66- testImplementation "junit:junit:4.12 "
67- testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.5.2 "
66+ testImplementation "junit:junit:4.13 "
67+ testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.6.0 "
6868 }
6969 ```
7070</details >
@@ -79,15 +79,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
7979
8080 dependencies {
8181 // (Required) Writing and executing Unit Tests on the JUnit Platform
82- testImplementation(" org.junit.jupiter:junit-jupiter-api:5.5.2 " )
83- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.5.2 " )
82+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.6.0 " )
83+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.6.0 " )
8484
8585 // (Optional) If you need "Parameterized Tests"
86- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.5.2 " )
86+ testImplementation(" org.junit.jupiter:junit-jupiter-params:5.6.0 " )
8787
8888 // (Optional) If you also have JUnit 4-based tests
89- testImplementation(" junit:junit:4.12 " )
90- testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.5.2 " )
89+ testImplementation(" junit:junit:4.13 " )
90+ testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.6.0 " )
9191 }
9292 ```
9393</details >
@@ -99,8 +99,8 @@ More information on Getting Started can be found [on the wiki][wiki-gettingstart
9999## Requirements
100100
101101The latest version of this plugin requires:
102- * Android Gradle Plugin ` 3.2 .0 ` or above
103- * Gradle ` 4.7 ` or above
102+ * Android Gradle Plugin ` 3.5 .0 ` or above
103+ * Gradle ` 6.1.1 ` or above
104104
105105## Instrumentation Test Support
106106
@@ -135,7 +135,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
135135 dependencies {
136136 // 5) Jupiter API & Test Runner, if you don't have it already
137137 androidTestImplementation "androidx.test:runner:1.2.0"
138- androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.5.2 "
138+ androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.6.0 "
139139
140140 // 6) The instrumentation test companion libraries
141141 androidTestImplementation "de.mannodermaus.junit5:android-test-core:1.2.0"
@@ -170,7 +170,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
170170 dependencies {
171171 // 5) Jupiter API & Test Runner, if you don't have it already
172172 androidTestImplementation("androidx.test:runner:1.2.0")
173- androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.5.2 ")
173+ androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0 ")
174174
175175 // 6) The instrumentation test companion libraries
176176 androidTestImplementation("de.mannodermaus.junit5:android-test-core:1.2.0")
@@ -199,7 +199,7 @@ This repository contains multiple modules, divided into two sub-projects. The re
199199## License
200200
201201```
202- Copyright 2017-2019 Marcel Schnelle
202+ Copyright 2017-2020 Marcel Schnelle
203203
204204Licensed under the Apache License, Version 2.0 (the "License");
205205you may not use this file except in compliance with the License.
0 commit comments