Skip to content

Commit

Permalink
Updated libraries.
Browse files Browse the repository at this point in the history
  • Loading branch information
dartartem committed Mar 6, 2020
1 parent 2e63d34 commit 51fd5eb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docker-compose-mysql-binlog.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
zookeeper:
image: test-eventuate-zookeeper
image: eventuateio/eventuate-zookeeper:$EVENTUATE_COMMON_VERSION
ports:
- 2181:2181

Expand Down
4 changes: 2 additions & 2 deletions eventuate-tram-consumer-http-micronaut/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ dependencies {
testRuntime "org.junit.jupiter:junit-jupiter-engine"
testRuntime 'io.micronaut.configuration:micronaut-jdbc-hikari'

testCompile "io.eventuate.common:eventuate-common-jdbc-micronaut-spring:$eventuateCommonVersion"
testCompile "io.eventuate.tram.core:eventuate-tram-producer-jdbc-micronaut:$eventuateTramVersion"
testCompile "io.eventuate.common:eventuate-common-micronaut-spring-jdbc:$eventuateCommonVersion"
testCompile "io.eventuate.tram.core:eventuate-tram-micronaut-producer-jdbc:$eventuateTramVersion"
testCompile "io.eventuate.util:eventuate-util-test:$eventuateUtilVersion"
}

Expand Down
4 changes: 2 additions & 2 deletions eventuate-tram-messaging-proxy-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ dependencies {
exclude group: "io.micronaut"
}

compile "io.eventuate.tram.core:eventuate-tram-consumer-jdbc-spring:$eventuateTramVersion"
compile "io.eventuate.tram.core:eventuate-tram-consumer-kafka-spring:$eventuateTramVersion"
compile "io.eventuate.tram.core:eventuate-tram-spring-consumer-jdbc:$eventuateTramVersion"
compile "io.eventuate.tram.core:eventuate-tram-spring-consumer-kafka:$eventuateTramVersion"

compile "org.springframework.boot:spring-boot-starter"
compile "org.springframework.boot:spring-boot-starter-actuator"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package io.eventuate.tram.messaging.proxy.service;

import io.eventuate.common.jdbc.spring.EventuateCommonJdbcOperationsConfiguration;
import io.eventuate.common.spring.jdbc.EventuateCommonJdbcOperationsConfiguration;
import io.eventuate.tram.consumer.common.MessageConsumerImplementation;
import io.eventuate.tram.consumer.jdbc.spring.TramConsumerJdbcAutoConfiguration;
import io.eventuate.tram.consumer.kafka.spring.EventuateTramKafkaMessageConsumerConfiguration;
import io.eventuate.tram.messaging.common.ChannelMapping;
import io.eventuate.tram.messaging.common.DefaultChannelMapping;
import io.eventuate.tram.spring.consumer.jdbc.TramConsumerJdbcAutoConfiguration;
import io.eventuate.tram.spring.consumer.kafka.EventuateTramKafkaMessageConsumerConfiguration;
import org.apache.curator.RetryPolicy;
import org.apache.curator.framework.CuratorFramework;
import org.apache.curator.framework.CuratorFrameworkFactory;
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ eventuateMavenRepoUrl=https://dl.bintray.com/eventuateio-oss/eventuate-maven-rel

springBootVersion=2.1.5.RELEASE
micronautVersion=1.2.4
eventuateTramVersion=0.23.0.MICRONAUT.M6
eventuateTramVersion=0.22.0-SNAPSHOT
eventuateUtilVersion=0.2.0.RELEASE
eventuateMessagingKafkaVersion=0.5.0-SNAPSHOT
eventuateCommonVersion=0.8.0.MICRONAUT.M5
eventuateCommonVersion=0.8.3-SNAPSHOT
dockerComposePluginVersion=0.4.5
version=0.1.0-SNAPSHOT

eventuateCommonImageVersion=0.8.0.RELEASE
eventuateMessagingKafkaImageVersion=0.3.0.RELEASE
eventuateCommonImageVersion=0.9.0.RC3
eventuateMessagingKafkaImageVersion=0.9.0.RC2
eventuateCdcImageVersion=0.5.0.RELEASE

0 comments on commit 51fd5eb

Please sign in to comment.