mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
248a7d97d9
Updates the testing infrastructure to use the latest relesae of junit and leverages the new extension mechanism to create an easy to use testing framework. Also adds additional test coverage for several plugins.
25 lines
531 B
Groovy
25 lines
531 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.1.0'
|
|
}
|
|
}
|
|
|
|
subprojects { subproj ->
|
|
if (subproj.buildFile.exists()) {
|
|
apply plugin: 'apollo-plugin'
|
|
apply plugin: 'org.junit.platform.gradle.plugin'
|
|
|
|
|
|
dependencies {
|
|
implementation group: 'com.google.guava', name: 'guava', version: guavaVersion
|
|
}
|
|
}
|
|
}
|