<?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"> <artifactId>dmn-verifier-api</artifactId> <dependencyManagement> <dependencies> <dependency> <artifactId>camunda-bom</artifactId> <groupId>org.camunda.bpm</groupId> <scope>import</scope> <type>pom</type> <version>${version.camunda}</version> </dependency> </dependencies> </dependencyManagement> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>dmn-verifier-parent</artifactId> <groupId>de.unikoblenz.fgbks</groupId> <relativePath>../dmnverifierparent/pom.xml</relativePath> <version>0.9.9</version> </parent> <properties> <build.name>dmn-verifier-api</build.name> <version.camunda>7.11.0</version.camunda> </properties> <dependencies> <!-- camunda dmn --> <dependency> <groupId>org.camunda.bpm.dmn</groupId> <artifactId>camunda-engine-dmn</artifactId> <version>${version.camunda}</version> </dependency> <dependency> <groupId>org.camunda.bpm.model</groupId> <artifactId>camunda-dmn-model</artifactId> <version>${version.camunda}</version> </dependency> <!-- Quarkus --> <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> <!-- wordnet --> <dependency> <groupId>edu.mit</groupId> <artifactId>jwi</artifactId> <version>2.2.3</version> </dependency> <!-- Utils --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.7</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.11</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-maven-plugin</artifactId> <version>${quarkus.version}</version> <configuration> <uberJar>true</uberJar> </configuration> <executions> <execution> <goals> <goal>build</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jboss.jandex</groupId> <artifactId>jandex-maven-plugin</artifactId> <version>1.0.6</version> <executions> <execution> <id>make-index</id> <goals> <goal>jandex</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire-plugin.version}</version> <configuration> <systemProperties> <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> </systemProperties> </configuration> </plugin> </plugins> </build> </project>