Last active
July 5, 2021 07:54
-
-
Save zachpendleton/2d5893afe1cfada8d8bebe9b03cbcd13 to your computer and use it in GitHub Desktop.
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
| allprojects { | |
| apply plugin: 'java' | |
| group 'com.instructure' | |
| version '0.0-SNAPSHOT' | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' | |
| testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' | |
| } | |
| test { | |
| useJUnitPlatform() | |
| } | |
| } | |
| subprojects { | |
| } | |
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
| rootProject.name = 'multi-module' | |
| include 'multi-module-greeter' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment