-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (37 loc) · 1.32 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()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
jar {
baseName = 'web-scrapping'
version = '0.1.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
// JPA Data (We are going to use Repositories, Entities, Hibernate, etc...)
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.8'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'
compile group: 'mysql', name: 'mysql-connector-java', version: '6.0.6'
compile group: 'org.quartz-scheduler', name: 'quartz', version: '2.2.1'
//testCompile('org.springframework.boot:spring-boot-starter-test')
//jSoup
compile 'org.jsoup:jsoup:1.10.2'
//Java mail
// compile group: 'org.springframework', name: 'spring-context-support', version: '3.2.0.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '1.2.0.RELEASE'
compile "javax.mail:mail:1.4.3"
}