27 lines
543 B
Groovy
27 lines
543 B
Groovy
group = 'kinosearch'
|
||
version = '2.0.7с'
|
||
|
||
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'])
|
||
compile (['com.google.code.gson:gson:2.4'])
|
||
testCompile (['junit:junit:4.12'])
|
||
}
|
||
|
||
idea.module.downloadSources = false
|
||
eclipse.classpath.downloadSources = false
|
||
|
||
war {
|
||
webAppDirName = 'webapp'
|
||
}
|