flowee-bpms-bpm-quarkus-engine-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.finture.bpm.quarkus</groupId> <artifactId>flowee-bpms-bpm-quarkus-engine-parent</artifactId> <version>0.7.1</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>flowee-bpms-bpm-quarkus-parent</artifactId> <groupId>com.finture.bpm.quarkus</groupId> <version>0.7.1</version> </parent> <artifactId>flowee-bpms-bpm-quarkus-engine-parent</artifactId> <name>Flowee BPMS Platform - Quarkus Extension - Engine - Parent</name> <packaging>pom</packaging> <modules> <module>deployment</module> <module>runtime</module> <module>qa</module> </modules> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <!-- Quarkus requires version 3.8+ for Maven plugins. --> <version>3.8.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <trimStackTrace>false</trimStackTrace> <argLine>-Xmx2048m</argLine> </configuration> </plugin> </plugins> </build> </project>