kogito-quarkus-predictions
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-quarkus-predictions</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> <artifactId>kogito-quarkus-predictions-extension</artifactId> <groupId>org.kie.kogito</groupId> <version>1.44.0.Final</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>kogito-quarkus-predictions</artifactId> <name>Kogito :: Quarkus Predictions Extension :: Runtime</name> <description>Add Kogito predictions (PMML) capabilities - Include Drools PMML engine</description> <dependencies> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-quarkus-common</artifactId> </dependency> <!-- kogito --> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-pmml</artifactId> </dependency> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-api-incubation-predictions-services</artifactId> </dependency> <dependency> <groupId>org.kie.kogito</groupId> <artifactId>kogito-quarkus-incubation-common</artifactId> </dependency> <dependency> <groupId>io.cloudevents</groupId> <artifactId>cloudevents-json-jackson</artifactId> </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.predictions</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> <plugin> <groupId>${jandex-maven-plugin.group-id}</groupId> <artifactId>jandex-maven-plugin</artifactId> </plugin> </plugins> </build> </project>