build.gradle 551 B

12345678910111213141516171819202122232425
  1. allprojects{
  2. apply plugin: 'java'
  3. apply plugin: "idea"
  4. group = 'com.phoenix.fun'
  5. version = '1.0-SNAPSHOT'
  6. sourceCompatibility = 1.8
  7. targetCompatibility = 1.8
  8. }
  9. subprojects {
  10. repositories {
  11. mavenCentral()
  12. maven {url 'http://maven.aliyun.com/nexus/content/groups/public/'}
  13. mavenLocal()
  14. }
  15. dependencies {
  16. testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
  17. testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
  18. }
  19. test {
  20. useJUnitPlatform()
  21. }
  22. }