kogito-addons-quarkus-microprofile-config-service-catalog
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-addons-quarkus-microprofile-config-service-catalog</artifactId> <version>1.44.0.Final</version> </dependency>
<?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>org.kie.kogito</groupId> <artifactId>kogito-addons-quarkus-microprofile-config-service-catalog-parent</artifactId> <version>1.44.0.Final</version> </parent> <artifactId>kogito-addons-quarkus-microprofile-config-service-catalog</artifactId> <name>Kogito Add-On MicroProfile Config Service Catalog</name> <dependencies> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-addons-kubernetes-service-catalog</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-arc</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.microprofile.config</groupId> <artifactId>microprofile-config-api</artifactId> </dependency> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-addons-kubernetes-service-catalog</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-bootstrap-maven-plugin</artifactId> <version>${version.io.quarkus}</version> <executions> <execution> <phase>compile</phase> <goals> <goal>extension-descriptor</goal> </goals> <configuration> <deployment>${project.groupId}:${project.artifactId}-deployment:${project.version} </deployment> <capabilities> <provides>org.kie.kogito.addons.quarkus.microprofile.config.service.catalog</provides> </capabilities> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-processor</artifactId> <version>${version.io.quarkus}</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> </project>