-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (37 loc) · 1.47 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
buildscript {
ext {
springBootVersion = '1.5.8.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
group = 'pl.tomo'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter')
compile('org.springframework.boot:spring-boot-starter-web')
compile("org.springframework.boot:spring-boot-starter-data-jpa")
testCompile('org.springframework.boot:spring-boot-starter-test')
compile group: 'com.google.gdata', name: 'core', version: '1.47.1'
compile group: 'com.google.api-client', name: 'google-api-client', version: '1.23.0'
compile group: 'com.google.apis', name: 'google-api-services-drive', version: 'v3-rev61-1.22.0'
compile group: 'com.google.guava', name: 'guava', version: '23.0'
compile group: 'com.h2database', name: 'h2', version: '1.4.196'
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.18'
compile group: 'com.flickr4java', name: 'flickr4java', version: '2.17'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.3'
compile group: 'com.drewnoakes', name: 'metadata-extractor', version: '2.11.0'
}