kogito-addons-quarkus-knative-serving
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-addons-quarkus-knative-serving</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"> <parent> <groupId>org.kie.kogito</groupId> <artifactId>kogito-addons-quarkus-knative-serving-parent</artifactId> <version>1.44.0.Final</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>kogito-addons-quarkus-knative-serving</artifactId> <name>Kogito Add-On Knative Serving</name> <description>Knative Serving Kogito Add-On. Adds Knative Serverless Workflow custom functions.</description> <dependencies> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-addons-quarkus-kubernetes</artifactId> </dependency> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-serverless-workflow-runtime</artifactId> </dependency> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-serverless-workflow-rest-runtime</artifactId> </dependency> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-rest-workitem</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-vertx</artifactId> </dependency> <dependency> <groupId>io.smallrye.reactive</groupId> <artifactId>smallrye-mutiny-vertx-web-client</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock-jre8</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-test-kubernetes-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-addons-quarkus-fabric8-kubernetes-service-catalog</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-addons-quarkus-fabric8-kubernetes-service-catalog-test-utils</artifactId> <scope>test</scope> </dependency> <!-- this is used implicitly by Maven parallel builds so let's make Maven aware of it --> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-addons-quarkus-kubernetes-deployment</artifactId> <version>${project.version}</version> <type>pom</type> <scope>test</scope> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </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.knative.serving</provides> </capabilities> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <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>