-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gradle Guide.txt
47 lines (39 loc) · 1.17 KB
/
Gradle Guide.txt
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
# use proxy in gradle
# gradle.properties
..............................................
systemProp.http.proxyHost=127.0.0.1
systemProp.https.proxyHost=127.0.0.1
systemProp.http.proxyPort=8118
systemProp.https.proxyPort=8118
..............................................
# enable WAR (web archive) output
..............................................
apply plugin: 'war'
..............................................
# enable jar output (java archive)
..............................................
apply plugin: 'java'
jar {
baseName = 'gs-rest-service'
version = '0.1.0'
}
..............................................
# Setup Spring Web Services
..............................................
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.8.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
testCompile('org.springframework.boot:spring-boot-starter-test')
}
..............................................