Skip to content

Commit

Permalink
Fixing dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
dartartem committed Dec 8, 2017
1 parent 00be2d8 commit 4aa8aa1
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 19 deletions.
12 changes: 1 addition & 11 deletions common/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@

dependencies {
compile "io.eventuate.tram.sagas:eventuate-jpa-sagas-framework:$eventuateTramSagasVersion"
compile "io.eventuate.tram.sagas:eventuate-tram-sagas-simple-dsl:$eventuateTramSagasVersion"
compile "io.eventuate.tram.core:eventuate-tram-jdbc-kafka:$eventuateTramVersion"

compile 'mysql:mysql-connector-java:5.1.36'
compile ('org.postgresql:postgresql:9.4-1200-jdbc41') {
exclude group: "org.slf4j", module: "slf4j-simple"
}

compile "commons-lang:commons-lang:2.6"
compile "org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion"
compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
}

12 changes: 11 additions & 1 deletion customer-backend/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
dependencies {
compile project(":common")
compile project(":customer-api")
compile project(":common-swagger")

compile "io.eventuate.tram.sagas:eventuate-jpa-sagas-framework:$eventuateTramSagasVersion"
compile "io.eventuate.tram.sagas:eventuate-tram-sagas-simple-dsl:$eventuateTramSagasVersion"
compile "io.eventuate.tram.core:eventuate-tram-jdbc-kafka:$eventuateTramVersion"

compile 'mysql:mysql-connector-java:5.1.36'
compile ('org.postgresql:postgresql:9.4-1200-jdbc41') {
exclude group: "org.slf4j", module: "slf4j-simple"
}

compile "org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion"
}
4 changes: 3 additions & 1 deletion customer-service/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
dependencies {
compile project(":common-swagger")
compile project(":customer-backend")
compile project(":customer-web-api")

compile "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion"

compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
}

apply plugin: 'spring-boot'
3 changes: 1 addition & 2 deletions customer-web-api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
dependencies {
compile project(":common-swagger")
compile project(":customer-backend")
compile project(":common")
}
3 changes: 2 additions & 1 deletion docker-compose-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,15 @@ mysql:
- MYSQL_PASSWORD=mysqlpw

cdcservice:
image: eventuateio/eventuate-tram-cdc-mysql-service:0.4.0.RELEASE
image: test-eventuate-tram-cdc-mysql-service
ports:
- "8099:8080"
links:
- mysql
- kafka
- zookeeper
environment:
LOGGING_LEVEL_ : DEBUG
SPRING_DATASOURCE_URL: jdbc:mysql://mysql/eventuate
SPRING_DATASOURCE_USERNAME: mysqluser
SPRING_DATASOURCE_PASSWORD: mysqlpw
Expand Down
14 changes: 13 additions & 1 deletion order-backend/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
dependencies {
compile project(":common")
compile project(":customer-api")
compile project(":common-swagger")

compile "io.eventuate.tram.sagas:eventuate-jpa-sagas-framework:$eventuateTramSagasVersion"
compile "io.eventuate.tram.sagas:eventuate-tram-sagas-simple-dsl:$eventuateTramSagasVersion"
compile "io.eventuate.tram.core:eventuate-tram-jdbc-kafka:$eventuateTramVersion"

compile 'mysql:mysql-connector-java:5.1.36'
compile ('org.postgresql:postgresql:9.4-1200-jdbc41') {
exclude group: "org.slf4j", module: "slf4j-simple"
}

compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
compile "org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion"
}


4 changes: 3 additions & 1 deletion order-service/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
dependencies {
compile project(":common-swagger")
compile project(":order-backend")
compile project(":order-web-api")

compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
compile "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion"

}

apply plugin: 'spring-boot'
Expand Down
2 changes: 1 addition & 1 deletion order-web-api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
compile project(":common-swagger")
compile project(":common")
compile project(":order-backend")
}

Expand Down

0 comments on commit 4aa8aa1

Please sign in to comment.