tet123/debezium-quarkus/extensions/pom.xml
Chris Cranford afdc883329 DBZ-1478 Various fixes
* Removed and consolidated unnecessary poms
* Cleaned up build dependencies
* Added checkstyle exclusions for auto generated files
* Added outbox extension to Travis CI
* Aligned naming convention for build-time configuration options
2020-01-15 10:48:06 +01:00

42 lines
1.6 KiB
XML

<?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>