-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
55 lines (46 loc) · 1.68 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven'
}
repositories {
mavenLocal()
maven {
url = 'https://repo.spring.io/milestone'
}
maven {
url = 'https://repo.spring.io/snapshot'
}
maven {
url = 'https://dl.bintray.com/rabbitmq/maven-milestones'
}
maven {
url = 'http://repo.maven.apache.org/maven2'
}
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web:2.0.0.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-data-jpa:2.0.0.RELEASE'
compile 'mysql:mysql-connector-java:5.1.45'
compile 'org.postgresql:postgresql:42.2.1'
compile 'io.springfox:springfox-swagger2:2.7.0'
compile 'io.springfox:springfox-swagger-ui:2.7.0'
compile 'io.netty:netty-all:4.1.29.Final'
compile 'org.apache.commons:commons-lang3:3.8'
compile 'org.springframework.cloud:spring-cloud-starter-bus-amqp:2.0.0.RELEASE'
compile 'org.springframework.data:spring-data-redis:2.0.5.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-data-mongodb:2.0.0.RELEASE'
compile 'com.twitter:finagle-memcached_2.12:18.10.0'
compile 'redis.clients:jedis:2.9.0'
compile 'com.google.guava:guava:27.0.1-jre'
compile 'org.springframework.boot:spring-boot-configuration-processor:2.0.0.RELEASE'
compile('org.springframework.boot:spring-boot-starter-integration')
compile('org.springframework.integration:spring-integration-mqtt')
testCompile 'org.springframework.boot:spring-boot-starter-test:2.0.0.RELEASE'
compileOnly 'org.projectlombok:lombok:1.18.2'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}