Skip to content

Commit 83e11cc

Browse files
authored
Merge pull request #2 from openbaton/develop
Merging version 1.3.0 in develop into master
2 parents ce53742 + 88412f4 commit 83e11cc

File tree

88 files changed

+3110
-3284
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+3110
-3284
lines changed

README.md

-58 Bytes
Binary file not shown.

build.gradle

Lines changed: 55 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,23 @@
1313
* limitations under the License.
1414
*/
1515

16+
plugins {
17+
id "com.github.sherter.google-java-format" version "0.3.2"
18+
}
19+
1620
apply plugin: 'java'
1721
apply from: 'gradle/application.java.gradle'
1822

23+
1924
repositories {
2025
mavenCentral()
2126
maven {
2227
url "http://get.openbaton.org:8081/nexus/content/groups/public"
2328
}
29+
// fc dependency
30+
maven {
31+
url "https://repository.jboss.org"
32+
}
2433
}
2534

2635
project.ext{
@@ -49,49 +58,69 @@ apply from: 'gradle/run.application.java.gradle'
4958

5059
dependencies {
5160

52-
compile project(':fault-correlator')
53-
compile project(':cli')
54-
compile project(':high-availability')
55-
5661
/**
5762
* Spring dependencies
5863
*/
5964
compile 'org.springframework.boot:spring-boot:'+ springBootVersion
6065
compile 'org.springframework.boot:spring-boot-starter-logging:'+ springBootVersion
6166

6267

63-
//EnableJPA annotation
64-
compile 'org.springframework.data:spring-data-jpa:1.9.4.RELEASE'
65-
6668
//Rest Annotation in RestRegister
6769
compile "org.springframework.boot:spring-boot-starter-web:" + springBootVersion
6870

6971

72+
//fc dependencies start
7073

71-
//Testing Service in Spring (see PolicyManagerTest)
72-
testCompile 'junit:junit:4.12'
73-
testCompile group: 'junit', name: 'junit', version: '4.11'
74+
//compile project (':high-availability')
7475

75-
}
76+
//Rest Annotation in AlarmReceiverImpl
77+
compile 'org.springframework.boot:spring-boot-starter-websocket:1.3.3.RELEASE'
7678

77-
allprojects{
78-
dependencies {
79-
//Unirest
80-
compile 'com.mashape.unirest:unirest-java:1.3.0'
79+
// CrudRepository
80+
//compile 'org.springframework.data:spring-data-jpa:1.9.4.RELEASE'
81+
compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '1.10.2.RELEASE'
82+
//compile 'org.hibernate:hibernate-entitymanager:4.3.10.Final'
83+
compile group: 'org.hibernate', name: 'hibernate-entitymanager', version: '5.1.0.Final'
8184

82-
/**
83-
* Spring dependencies
84-
*/
85-
compile 'org.springframework.boot:spring-boot:' + springBootVersion
86-
compile 'org.springframework.boot:spring-boot-starter-logging:' + springBootVersion
85+
compile 'commons-dbcp:commons-dbcp:1.4'
86+
compile 'mysql:mysql-connector-java:5.1.35'
87+
compile 'org.aspectj:aspectjweaver:1.8.7'
8788

88-
//Openbaton
89-
compile 'org.openbaton:monitoring:2.0.1'
89+
compile 'org.springframework:spring-jdbc'
90+
compile 'org.springframework.boot:spring-boot-starter-jdbc:1.3.3.RELEASE'
91+
92+
//NFVO Requestor
93+
compile 'org.openbaton:sdk:2.1.1-SNAPSHOT-fm' /*{
94+
exclude module: 'catalogue'
95+
}*/
96+
97+
//RABBIT
98+
compile 'org.springframework.boot:spring-boot-starter-amqp:1.3.3.RELEASE'
99+
100+
//Drools
101+
compile 'org.kie:kie-spring:6.3.0.Final'
102+
103+
// fc dependencies end
104+
105+
//Unirest
106+
compile 'com.mashape.unirest:unirest-java:1.3.0'
107+
108+
// cli dependencies start
109+
compile 'org.springframework.boot:spring-boot:1.3.3.RELEASE'
110+
compile 'commons-io:commons-io:2.4'
111+
compile "org.springframework.shell:spring-shell:1.1.0.RELEASE"
112+
// cli dependencies end
113+
114+
//Openbaton
115+
compile 'org.openbaton:monitoring:2.1.0'
116+
117+
//Gson
118+
compile 'com.google.code.gson:gson:2.4'
119+
120+
//Testing Service in Spring (see PolicyManagerTest)
121+
testCompile 'junit:junit:4.12'
122+
testCompile group: 'junit', name: 'junit', version: '4.11'
90123

91-
testCompile 'org.springframework:spring-test:' + springVersion
92-
//Gson
93-
compile 'com.google.code.gson:gson:2.4'
94-
}
95124
}
96125

97126

cli/build.gradle

Lines changed: 0 additions & 34 deletions
This file was deleted.

cli/src/main/java/org/openbaton/faultmanagement/cli/FaultManagementCli.java

Lines changed: 0 additions & 172 deletions
This file was deleted.

fault-correlator/build.gradle

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)