DBZ-1478 Fixed Travis CI configs and more POM cleanup

This commit is contained in:
Chris Cranford 2020-01-14 16:19:12 -05:00 committed by Gunnar Morling
parent 98fa50a538
commit 8124412ff1
6 changed files with 17 additions and 69 deletions

View File

@ -11,7 +11,7 @@ env:
- MAVEN_CLI: '"clean install -B -pl debezium-connector-postgres -am -Passembly,pgoutput-decoder,postgres-10 -Ddebezium.test.records.waittime=5 -Dformat.formatter.goal=validate -Dformat.imports.goal=check"'
- MAVEN_CLI: '"clean install -B -pl debezium-connector-mongodb -am -Passembly -Dformat.formatter.goal=validate -Dformat.imports.goal=check"'
- MAVEN_CLI: '"clean install -B -pl debezium-connector-mongodb -am -Passembly -Dformat.formatter.goal=validate -Dformat.imports.goal=check -Dversion.mongo.server=4.0"'
- MAVEN_CLI: '"clean install -B -pl debezium-quarkus/extensiosn/outbox -am -Passembly -Dformat.formatter.goal=validate -Dformat.imports.goal=check"'
- MAVEN_CLI: '"clean install -B -pl debezium-quarkus/extensions/outbox -am -Passembly -Dformat.formatter.goal=validate -Dformat.imports.goal=check"'
sudo: required

View File

@ -13,18 +13,6 @@
<artifactId>debezium-quarkus-outbox-deployment</artifactId>
<name>Debezium Quarkus :: Outbox :: Deployment</name>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.debezium.quarkus</groupId>
<artifactId>debezium-quarkus-bom-deployment</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Quarkus deployment dependencies -->
<dependency>
@ -40,6 +28,7 @@
<dependency>
<groupId>io.debezium.quarkus</groupId>
<artifactId>debezium-quarkus-outbox</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

View File

@ -5,9 +5,9 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.debezium.quarkus</groupId>
<artifactId>debezium-quarkus-build-parent</artifactId>
<artifactId>debezium-quarkus-parent</artifactId>
<version>1.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>debezium-quarkus-outbox-parent</artifactId>

View File

@ -13,18 +13,6 @@
<artifactId>debezium-quarkus-outbox</artifactId>
<name>Debezium Quarkus :: Outbox :: Runtime</name>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.debezium.quarkus</groupId>
<artifactId>debezium-quarkus-bom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Quarkus extensions -->
<dependency>

View File

@ -1,41 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.debezium.quarkus</groupId>
<artifactId>debezium-quarkus-parent</artifactId>
<version>1.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>debezium-quarkus-extensions</artifactId>
<packaging>pom</packaging>
<name>Debezium Quarkus :: Extensions</name>
<modules>
<module>outbox</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<artifactIdPrefix>debezium-quarkus-</artifactIdPrefix>
<namePrefix xml:space="preserve">Debezium Quarkus :: </namePrefix>
<nameSegmentDelimiter xml:space="preserve"> :: </nameSegmentDelimiter>
<javaPackageInfix>component</javaPackageInfix>
<templatesUriBase>file:///${project.basedir}/../build/create-extension-templates</templatesUriBase>
<runtimeBomPath>../poms/bom/pom.xml</runtimeBomPath>
<deploymentBomPath>../poms/bom-deployment/pom.xml</deploymentBomPath>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -26,6 +26,18 @@
<maven.compiler.testSource>${maven.compiler.source}</maven.compiler.testSource>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bom-deployment</artifactId>
<version>${quarkus.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
@ -94,7 +106,7 @@
</build>
<modules>
<module>extensions</module>
<module>extensions/outbox</module>
</modules>
</project>