-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
73 lines (64 loc) · 3.01 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
buildscript {
repositories {
maven { url "http://repo.spring.io/libs-milestone" }
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.2.RELEASE")
}
}
apply plugin: 'base'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'
jar {
baseName = 'how-tfg'
}
ext.springBootVersion='1.0.2.RELEASE'
ext.hibernateVersion='4.3.5.Final'
ext.hibernateValidatorVersion='5.1.0.Final'
ext.springSocialVersion='1.1.0.RELEASE'
ext.userTypeVersion='3.1.0.GA'
repositories {
mavenCentral()
maven { url "https://github.com/sgavmp/mavenrepo/raw/master/snapshots" }
maven { url "http://repo.spring.io/libs-milestone" }
maven { url 'http://repo.spring.io/milestone' }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-thymeleaf:$springBootVersion",
"org.springframework.boot:spring-boot-starter-security:$springBootVersion",
"org.springframework.boot:spring-boot-starter-test:$springBootVersion",
"org.springframework.social:spring-social-config:$springSocialVersion",
"org.springframework.social:spring-social-security:$springSocialVersion",
"org.springframework.social:spring-social-facebook:$springSocialVersion",
"org.springframework.social:spring-social-google:1.0.0.M3",
"org.springframework.security:spring-security-crypto:3.2.3.RELEASE",
"joda-time:joda-time:2.3",
"org.jadira.usertype:usertype.spi:$userTypeVersion",
"org.jadira.usertype:usertype.core:$userTypeVersion",
"org.apache.commons:commons-lang3:3.3.2",
'org.thymeleaf.extras:thymeleaf-extras-springsecurity3:2.1.1.RELEASE',
'com.julienvey.trello:trello-java-wrapper:0.3',
'org.springframework.social:spring-social-test:1.0.2.RELEASE')
compile 'org.springframework.social:spring-social-core:1.1.0.RELEASE'
compile("org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion")
compile 'org.springframework.social:spring-social-github:1.0.1.BUILD-SNAPSHOT'
compile 'org.webjars:bootstrap:3.1.1-1'
compile 'org.webjars:jquery:2.1.1'
compile 'org.springframework.social:spring-social-trello:0.1.1-SNAPSHOT'
compile 'org.springframework.cloud:spring-cloud-spring-service-connector:1.0.0.RC1'
compile 'org.springframework.cloud:spring-cloud-heroku-connector:1.0.0.RC1'
compile 'org.webjars:font-awesome:4.1.0'
compile 'org.webjars:chartjs:26962ce'
compile("org.springframework.boot:spring-boot-starter-data-mongodb:$springBootVersion")
compile 'org.webjars:highcharts:3.0.9'
compile 'org.kubek2k:springockito:1.0.9'
compile 'org.kubek2k:springockito-annotations:1.0.9'
compile('postgresql:postgresql:9.1-901.jdbc4')
compile("mysql:mysql-connector-java:5.1.30")
testCompile("junit:junit")
testCompile("org.springframework.boot:spring-boot-starter-test:$springBootVersion")
}
test.onlyIf { Boolean.getBoolean('skip.tests') }
task stage(dependsOn: ['build'])