gradle 5 的 build.gradle 格式

apply plugin: 'eclipse'
apply plugin: 'java'
apply plugin: 'maven'

version = '2.0.0'

repositories {
mavenLocal()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }
jcenter()
}

compileJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

dependencies {
compile group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '8.5.5'
compile group: 'redis.clients', name: 'jedis', version: '2.7.3'
compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.2'

}

artifacts {
archives jar

}
posted on 2023-05-24 13:02  蔻德盈  阅读(18)  评论(0)    收藏  举报