123456789101112131415161718192021222324252627 |
- /*
- * This file was generated by the Gradle 'init' task.
- *
- * This is a general purpose Gradle build.
- * Learn more about Gradle by exploring our samples at https://docs.gradle.org/7.0/samples
- */
- plugins {
- // Apply the java plugin to add support for Java
- id 'war'
- id 'java'
- }
- repositories {
- maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
- maven{ url 'https://maven.aliyun.com/nexus/content/repositories/jcenter'}
- }
- java{
- sourceCompatibility=JavaVersion.VERSION_11
- targetCompatibility=JavaVersion.VERSION_11
- }
- dependencies {
- providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
- // Use JUnit test framework
- testImplementation 'junit:junit:4.12'
- }
|