0
Files
KinoSearch/build.gradle
2016-03-30 15:56:27 +03:00

27 lines
543 B
Groovy
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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'
}