Skip to content

Commit

Permalink
Fix quarkusio#9780 Manage debezium in quarkus-bom-test instead of qua…
Browse files Browse the repository at this point in the history
…rkus-bom
  • Loading branch information
ppalaga authored and johnaohara committed Jun 29, 2020
1 parent 180324d commit fe5bdc9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
12 changes: 0 additions & 12 deletions bom/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@
<axle-client.version>0.0.16</axle-client.version>
<mutiny-client.version>0.1.0</mutiny-client.version>
<kafka2.version>2.5.0</kafka2.version>
<debezium.version>1.1.2.Final</debezium.version>
<zookeeper.version>3.5.7</zookeeper.version>
<!-- Scala is used by Kafka so we need to choose a compatible version -->
<scala.version>2.12.9</scala.version>
Expand Down Expand Up @@ -1415,17 +1414,6 @@
</exclusions>
</dependency>

<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-core</artifactId>
<version>${debezium.version}</version>
</dependency>
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-core</artifactId>
<version>${debezium.version}</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
Expand Down
14 changes: 14 additions & 0 deletions bom/test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<description>Dependency management for integration tests. Importable by third party extension developers.</description>

<properties>
<debezium.version>1.1.2.Final</debezium.version>
<testcontainers.version>1.14.3</testcontainers.version>
</properties>

Expand All @@ -28,6 +29,19 @@
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-core</artifactId>
<version>${debezium.version}</version>
</dependency>
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-core</artifactId>
<version>${debezium.version}</version>
<type>test-jar</type>
</dependency>

</dependencies>
</dependencyManagement>
</project>

0 comments on commit fe5bdc9

Please sign in to comment.