build.gradle 714 B

123456789101112131415161718192021222324252627
  1. /*
  2. * This file was generated by the Gradle 'init' task.
  3. *
  4. * This is a general purpose Gradle build.
  5. * Learn more about Gradle by exploring our samples at https://docs.gradle.org/7.0/samples
  6. */
  7. plugins {
  8. // Apply the java plugin to add support for Java
  9. id 'war'
  10. id 'java'
  11. }
  12. repositories {
  13. maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
  14. maven{ url 'https://maven.aliyun.com/nexus/content/repositories/jcenter'}
  15. }
  16. java{
  17. sourceCompatibility=JavaVersion.VERSION_11
  18. targetCompatibility=JavaVersion.VERSION_11
  19. }
  20. dependencies {
  21. providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
  22. // Use JUnit test framework
  23. testImplementation 'junit:junit:4.12'
  24. }