forked from teamProjectAlpha/facebook-timemeachine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (43 loc) · 1.54 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
buildscript {
repositories {
maven { url "https://repo.spring.io/libs-milestone" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.3.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'fb'
version = '0.1.0'
}
repositories {
mavenCentral()
maven { url "https://repo.spring.io/libs-milestone" }
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
// compile("org.springframework.boot:spring-boot-starter-web:1.2.1.RELEASE")
compile("org.springframework.social:spring-social-facebook")
/*compile "org.springframework:spring-core:3.2.2.RELEASE"
compile "org.springframework:spring-context:3.2.2.RELEASE"*/
compile ("org.mongodb:mongo-java-driver:2.11.0")
// compile "org.springframework.data:spring-data-mongodb:1.2.0.RELEASE"
compile ("cglib:cglib:2.2.2")
compile("org.springframework.boot:spring-boot-starter-web:1.2.2.RELEASE")
testCompile("org.springframework.boot:spring-boot-starter-test")
compile("org.scala-lang:scala-library:2.11.5")
compile("org.webjars:bootstrap:3.1.1")
compile("org.springframework.boot:spring-boot-starter-web")
testCompile("junit:junit")
//compile("org.springframework.boot:spring-boot-starter-security")
compile("org.springframework.boot:spring-boot-starter-data-mongodb")
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}