-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (26 loc) · 1.18 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
apply plugin: 'java'
apply plugin: 'maven'
group = 'top.kiswich'
version = '0.0.1-SNAPSHOT'
description = """code-builder"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
maven { url "http://repo1.maven.org/maven2" }
maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
maven { url "http://192.168.103.133:8080/repository/internal" }
maven { url "http://192.168.103.133:8080/repository/snapshots" }
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://dl.bintray.com/rabbitmq/maven-milestones" }
}
dependencies {
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version:'2.0.0.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version:'2.0.0.RELEASE'
compile group: 'org.freemarker', name: 'freemarker', version:'2.3.27-incubating'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version:'2.0.0.RELEASE'
runtime group: 'mysql', name: 'mysql-connector-java', version:'5.1.45'
}