forked from neich/TODOSpring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (38 loc) · 1.09 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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'java'
id 'idea'
id 'org.springframework.boot' version "2.2.2.RELEASE"
id 'io.spring.dependency-management' version "1.0.8.RELEASE"
id 'net.ltgt.apt' version '0.21'
}
bootRun {
if (project.hasProperty('jvmArgs')) {
jvmArgs project.jvmArgs.split('\\s+')
}
}
bootJar {
baseName = 'todo-spring'
version = '0.3.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
// JPA Data (We are going to use Repositories, Entities, Hibernate, etc...)
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// Use MySQL Connector-J
implementation 'mysql:mysql-connector-java'
implementation 'io.minio:minio:6.0.11'
implementation 'commons-io:commons-io:2.6'
compileOnly 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.10'
testCompile("org.springframework.boot:spring-boot-starter-test")
}