Skip to content

Instantly share code, notes, and snippets.

@zachpendleton
Last active July 5, 2021 07:54
Show Gist options
  • Select an option

  • Save zachpendleton/2d5893afe1cfada8d8bebe9b03cbcd13 to your computer and use it in GitHub Desktop.

Select an option

Save zachpendleton/2d5893afe1cfada8d8bebe9b03cbcd13 to your computer and use it in GitHub Desktop.
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 {
}
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