META-INF.maven.io.quarkus.quarkus-panache-common.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-panache-common Show documentation
Show all versions of quarkus-panache-common Show documentation
An opinionated approach to make Hibernate as easy as possible
<?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"> <parent> <artifactId>quarkus-panache-common-parent</artifactId> <groupId>io.quarkus</groupId> <version>3.14.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>quarkus-panache-common</artifactId> <name>Quarkus - Panache - Common - Runtime</name> <description>An opinionated approach to make Hibernate as easy as possible</description> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-core</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-arc</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> </plugins> </build> </project>