Created
August 8, 2019 08:47
-
-
Save xfun68/ec6f407ab430e434316326e1a3a252ea to your computer and use it in GitHub Desktop.
simplest JUnit 5 build.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| plugins { | |
| id 'java' | |
| } | |
| group 'com.twuc' | |
| version '1.0-SNAPSHOT' | |
| sourceCompatibility = 1.8 | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.1' | |
| testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.1' | |
| } | |
| test { | |
| useJUnitPlatform() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment