-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
55 lines (44 loc) · 1.69 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
plugins {
// id 'org.springframework.boot' version '2.1.3.RELEASE'
id 'java'
id 'maven-publish'
id 'org.springframework.boot' version '2.1.5.RELEASE'
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'com.allpass'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
mavenLocal()
maven {
url = 'http://repo.maven.apache.org/maven2'
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// 測試註解
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
// 新增
// compile group:'org.thymeleaf', name:'thymeleaf', version:'2.1.3.RELEASE'
// 測試結束
compile 'org.web3j:quorum:4.0.6'
compile 'org.springframework.boot:spring-boot-starter-security'
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
compile 'com.h2database:h2'
// compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.2'
// compile group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-springsecurity4', version: '2.1.2.RELEASE'
// compile group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.3'
// compile group: 'commons-fileupload', name: 'commons-fileupload'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4:2.1.2.RELEASE'
// compile group: 'commons-beanutils', name: 'commons-beanutils'
// email
// 要用的
compile 'org.springframework.boot:spring-boot-starter'
compile 'org.springframework.boot:spring-boot-starter-mail'
compile 'org.thymeleaf:thymeleaf-spring5'
// compile 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
}