mirror of
https://github.com/zhigang1992/tw_ns_practice.git
synced 2026-01-12 17:53:04 +08:00
21 lines
293 B
Groovy
21 lines
293 B
Groovy
apply plugin: 'idea'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'war'
|
|
apply plugin: 'jetty'
|
|
|
|
group = 'com.thoughtworks.ns.practice'
|
|
version = '0.0.1'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.11'
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '1.8'
|
|
}
|
|
|