Created
January 29, 2020 07:26
-
-
Save tkobayas/29d0047e8b6e3019ab8a42ea335c3fc4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<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>org.kie.kogito</groupId> | |
<artifactId>kogito-examples</artifactId> | |
<version>8.0.0-SNAPSHOT</version> | |
</parent> | |
<groupId>org.kie.kogito.examples</groupId> | |
<artifactId>jbpm-quarkus-example</artifactId> | |
<name>Kogito Example :: jBPM and Quarkus</name> | |
<description>Order management service</description> | |
<dependencies> | |
<dependency> | |
<groupId>io.quarkus</groupId> | |
<artifactId>quarkus-resteasy-jackson</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.kie.kogito</groupId> | |
<artifactId>kogito-api</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.kie.kogito</groupId> | |
<artifactId>kogito-drools</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.kie.kogito</groupId> | |
<artifactId>jbpm-flow</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.kie.kogito</groupId> | |
<artifactId>process-management-addon</artifactId> | |
</dependency> | |
<!-- Included so swagger-ui is available in quarkus dev mode on http://localhost:8080/swagger-ui --> | |
<dependency> | |
<groupId>io.quarkus</groupId> | |
<artifactId>quarkus-smallrye-openapi</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>io.quarkus</groupId> | |
<artifactId>quarkus-junit5</artifactId> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>io.rest-assured</groupId> | |
<artifactId>rest-assured</artifactId> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>io.quarkus</groupId> | |
<artifactId>quarkus-maven-plugin</artifactId> | |
<executions> | |
<execution> | |
<goals> | |
<goal>build</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.kie.kogito</groupId> | |
<artifactId>kogito-maven-plugin</artifactId> | |
<extensions>true</extensions> | |
</plugin> | |
<plugin> | |
<groupId>io.openapitools.swagger</groupId> | |
<artifactId>swagger-maven-plugin</artifactId> | |
<configuration> | |
<resourcePackages> | |
<resourcePackage>org.kie.kogito.examples</resourcePackage> | |
</resourcePackages> | |
<outputDirectory>${basedir}/target/classes/META-INF/resources/docs/</outputDirectory> | |
<outputFilename>swagger</outputFilename> | |
<outputFormats>JSON,YAML</outputFormats> | |
<prettyPrint>true</prettyPrint> | |
<swaggerConfig> | |
<info> | |
<title>${project.description}</title> | |
<version>${project.version}</version> | |
</info> | |
</swaggerConfig> | |
</configuration> | |
<executions> | |
<execution> | |
<goals> | |
<goal>generate</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
<profiles> | |
<profile> | |
<id>native</id> | |
<activation> | |
<property> | |
<name>native</name> | |
</property> | |
</activation> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>io.quarkus</groupId> | |
<artifactId>quarkus-maven-plugin</artifactId> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-failsafe-plugin</artifactId> | |
</plugin> | |
</plugins> | |
</build> | |
</profile> | |
<profile> | |
<id>persistence</id> | |
<activation> | |
<property> | |
<name>persistence</name> | |
</property> | |
</activation> | |
<dependencies> | |
<dependency> | |
<groupId>io.quarkus</groupId> | |
<artifactId>quarkus-infinispan-client</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.kie.kogito</groupId> | |
<artifactId>infinispan-persistence-addon</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
</dependencies> | |
</profile> | |
</profiles> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment