-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
executable file
·63 lines (56 loc) · 1.86 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
buildscript {
repositories{
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.5.RELEASE")
}
}
apply plugin: 'spring-boot'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
/**
* Project settings
*/
project.ext {
//------------------------------------------------//
/**
* Spring Related Variables
*/
springVersion = '4.2.0.RELEASE'
springBootVersion = '1.2.5.RELEASE'
//------------------------------------------------//
//------------------------------------------------//
/**
* Application Related Version
*/
applicationVersion = version
applicationVersionDebian = "1";
//------------------------------------------------//
//------------------------------------------------//
/**
* gradle Related Vars
*/
mainClass = 'org.nubomedia.qosmanager.Main'
//------------------------------------------------//
}
repositories {
mavenCentral()
maven {
url "http://get.openbaton.org:8081/nexus/content/groups/public"
}
}
dependencies {
compile 'org.openbaton:sdk:0.16-SNAPSHOT'
compile 'org.springframework.boot:spring-boot-starter-test:' + springBootVersion
compile 'org.springframework.boot:spring-boot:' + springBootVersion
compile 'org.springframework.boot:spring-boot-starter-web:' + springBootVersion
compile 'org.springframework.boot:spring-boot-starter-amqp:' + springBootVersion
compile 'org.springframework.boot:spring-boot-starter-websocket:' + springBootVersion
compile 'org.hibernate:hibernate-entitymanager:4.3.10.Final'
compile 'org.springframework.data:spring-data-jpa:1.8.2.RELEASE'
compile 'org.hsqldb:hsqldb:2.3.2'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'org.springframework:spring-test:' + springVersion
}