-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (32 loc) · 936 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
group 'cc.gospy.chollima'
version '0.0.1'
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
buildscript {
repositories {
mavenLocal()
maven { url("https://plugins.gradle.org/m2/") }
maven { url "https://jitpack.io" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE")
}
}
jar {
baseName = 'gospy-chollima'
version = '0.0.1'
}
repositories {
mavenLocal()
maven { url("https://plugins.gradle.org/m2/") }
}
dependencies {
compile 'cc.gospy:gospy-core:0.2.2'
compile 'com.github.detro:ghostdriver:2.0.0'
compile 'org.elasticsearch.client:rest:5.3.0'
compile 'org.mybatis:mybatis:3.4.4'
compile 'mysql:mysql-connector-java:6.0.6'
compile 'org.apache.poi:poi:3.16'
compile 'org.springframework.boot:spring-boot-starter-web'
testCompile group: 'junit', name: 'junit', version: '4.11'
}