24 lines
466 B
Groovy
24 lines
466 B
Groovy
group = 'kinosearch'
|
|
version = '2.0.4'
|
|
|
|
apply plugin: 'war'
|
|
apply plugin: 'jetty'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'eclipse'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
providedCompile (['javax.servlet:javax.servlet-api:3.0.1'])
|
|
compile (['org.jsoup:jsoup:1.8.3'])
|
|
compile (['org.freemarker:freemarker:2.3.23'])
|
|
testCompile (['junit:junit:4.12'],
|
|
['com.google.code.gson:gson:2.4'])
|
|
}
|
|
|
|
war {
|
|
webAppDirName = 'webapp'
|
|
}
|