apicurio-registry-storage-kafkasql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-storage-kafkasql</artifactId> <version>2.6.3.Final</version> </dependency>
<?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-storage</artifactId> <version>2.6.3.Final</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>apicurio-registry-storage-kafkasql</artifactId> <packaging>jar</packaging> <name>apicurio-registry-storage-kafkasql</name> <dependencies> <!-- Project Deps --> <dependency> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-app</artifactId> </dependency> <dependency> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-utils-kafka</artifactId> </dependency> <!-- Third Party Deps --> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>io.strimzi</groupId> <artifactId>kafka-oauth-client</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>redpanda</artifactId> <scope>test</scope> </dependency> <!-- Test Only --> <dependency> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-app</artifactId> <type>test-jar</type> <exclusions> <exclusion> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-schema-util-provider</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> <filtering>true</filtering> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy</id> <phase>generate-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <type>jar</type> <outputDirectory>${project.build.directory}</outputDirectory> <destFileName>h2.jar</destFileName> </artifactItem> </artifactItems> </configuration> </execution> <execution> <id>unpack-static-resources</id> <phase>generate-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>apicurio-registry-app</artifactId> <version>${project.version}</version> <type>jar</type> <overWrite>true</overWrite> <includes>**/web.xml,**/application.properties</includes> </artifactItem> </artifactItems> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> </configuration> </execution> <execution> <id>unpack-test-dependencies</id> <phase>process-test-classes</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includeGroupIds>io.apicurio</includeGroupIds> <includeTypes>test-jar</includeTypes> <includeScope>test</includeScope> <outputDirectory> ${project.build.directory}/test-classes </outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> </configuration> </execution> </executions> </plugin> <plugin> <groupId>io.apicurio</groupId> <artifactId>apicurio-common-app-components-maven-plugin</artifactId> <version>${apicurio-common-app-components.version}</version> <executions> <execution> <id>merge-properties</id> <phase>prepare-package</phase> <goals> <goal>merge</goal> </goals> <configuration> <output>${project.build.outputDirectory}/application.properties</output> <inputs> <param>${project.build.outputDirectory}/application.properties</param> <param>${project.build.outputDirectory}/overlay.properties</param> </inputs> <deleteInputs>true</deleteInputs> </configuration> </execution> <execution> <id>merge-test-properties</id> <phase>process-test-classes</phase> <goals> <goal>merge</goal> </goals> <configuration> <output>${project.build.testOutputDirectory}/application.properties</output> <inputs> <param>${project.build.outputDirectory}/application.properties</param> <param>${project.build.testOutputDirectory}/test-overlay.properties</param> </inputs> </configuration> </execution> </executions> </plugin> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-maven-plugin</artifactId> <executions> <execution> <goals> <goal>build</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemProperties> <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> <kafka.storage>true</kafka.storage> </systemProperties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>${project.artifactId}-${project.version}</finalName> <attach>true</attach> <descriptors> <descriptor>src/main/assembly/assembly.xml</descriptor> </descriptors> <archiverConfig> <defaultDirectoryMode>0755</defaultDirectoryMode> </archiverConfig> <tarLongFileMode>${tar.long.file.mode}</tarLongFileMode> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>no-slow-tests</id> <properties> <groups>!slow</groups> </properties> </profile> <profile> <id>native</id> <activation> <property> <name>native</name> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <systemPropertyVariables> <native.image.path> ${project.build.directory}/${project.build.finalName}-runner </native.image.path> <java.util.logging.manager>org.jboss.logmanager.LogManager </java.util.logging.manager> <maven.home>${maven.home}</maven.home> </systemPropertyVariables> </configuration> </execution> </executions> </plugin> </plugins> </build> <properties> <quarkus.package.type>native</quarkus.package.type> </properties> </profile> </profiles> </project>