Init project
This commit is contained in:
23
build.gradle
Normal file
23
build.gradle
Normal file
@@ -0,0 +1,23 @@
|
||||
group = 'kinosearch'
|
||||
version = '2.0.1'
|
||||
|
||||
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'
|
||||
}
|
||||
Reference in New Issue
Block a user