12345678910111213141516171819202122232425 |
- allprojects{
- apply plugin: 'java'
- apply plugin: "idea"
- group = 'com.phoenix.fun'
- version = '1.0-SNAPSHOT'
- sourceCompatibility = 1.8
- targetCompatibility = 1.8
- }
- subprojects {
- repositories {
- mavenCentral()
- maven {url 'http://maven.aliyun.com/nexus/content/groups/public/'}
- mavenLocal()
- }
- dependencies {
- testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
- testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
- }
- test {
- useJUnitPlatform()
- }
- }
|