You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
178 lines
5.8 KiB
178 lines
5.8 KiB
<?xml version="1.0"?> |
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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"> |
|
<repositories> |
|
<repository> |
|
<id>jboss</id> |
|
<name>JBoss repository</name> |
|
<url>http://repository.jboss.org/maven2</url> |
|
</repository> |
|
</repositories> |
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
<groupId>com.redhat.ncaughey</groupId> |
|
<artifactId>rest-json-quickstart</artifactId> |
|
<version>1.0.0-SNAPSHOT</version> |
|
<properties> |
|
<compiler-plugin.version>3.10.1</compiler-plugin.version> |
|
<maven.compiler.release>17</maven.compiler.release> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id> |
|
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id> |
|
<quarkus.platform.version>2.16.5.Final</quarkus.platform.version> |
|
<skipITs>true</skipITs> |
|
<surefire-plugin.version>3.0.0-M7</surefire-plugin.version> |
|
</properties> |
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>${quarkus.platform.group-id}</groupId> |
|
<artifactId>${quarkus.platform.artifact-id}</artifactId> |
|
<version>${quarkus.platform.version}</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/org.json/json --> |
|
<!-- https://mvnrepository.com/artifact/org.json/json --> |
|
|
|
<!-- <dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<version>2.12.1</version> |
|
</dependency> --> |
|
<!-- <dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-core</artifactId> |
|
<version>2.12.1</version> |
|
</dependency> --> |
|
</dependencies> |
|
</dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>io.quarkus</groupId> |
|
<artifactId>quarkus-openshift</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.json</groupId> |
|
<artifactId>json</artifactId> |
|
<version>20220320</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.quarkus</groupId> |
|
<artifactId>quarkus-resteasy-reactive-jackson</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.quarkus</groupId> |
|
<artifactId>quarkus-arc</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.quarkus</groupId> |
|
<artifactId>quarkus-junit5</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<version>1.18.26</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
|
|
<!-- Bean Validation API and RI --> |
|
<dependency> |
|
<groupId>javax.validation</groupId> |
|
<artifactId>validation-api</artifactId> |
|
<version>1.0.0.GA</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hibernate</groupId> |
|
<artifactId>hibernate-validator</artifactId> |
|
<version>4.0.2.GA</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.eclipse.microprofile.rest.client/microprofile-rest-client-api --> |
|
<dependency> |
|
<groupId>org.eclipse.microprofile.rest.client</groupId> |
|
<artifactId>microprofile-rest-client-api</artifactId> |
|
<version>3.0.1</version> |
|
</dependency> |
|
<!-- <dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-core</artifactId> |
|
<version>2.5.2</version> |
|
</dependency> --> |
|
|
|
|
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>${quarkus.platform.group-id}</groupId> |
|
<artifactId>quarkus-maven-plugin</artifactId> |
|
<version>${quarkus.platform.version}</version> |
|
<extensions>true</extensions> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>build</goal> |
|
<goal>generate-code</goal> |
|
<goal>generate-code-tests</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>${compiler-plugin.version}</version> |
|
<configuration> |
|
<compilerArgs> |
|
<arg>-parameters</arg> |
|
</compilerArgs> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>${surefire-plugin.version}</version> |
|
<configuration> |
|
<systemPropertyVariables> |
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
|
<maven.home>${maven.home}</maven.home> |
|
</systemPropertyVariables> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-failsafe-plugin</artifactId> |
|
<version>${surefire-plugin.version}</version> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>integration-test</goal> |
|
<goal>verify</goal> |
|
</goals> |
|
<configuration> |
|
<systemPropertyVariables> |
|
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path> |
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
|
<maven.home>${maven.home}</maven.home> |
|
</systemPropertyVariables> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<profiles> |
|
<profile> |
|
<id>native</id> |
|
<activation> |
|
<property> |
|
<name>native</name> |
|
</property> |
|
</activation> |
|
<properties> |
|
<skipITs>false</skipITs> |
|
<quarkus.package.type>native</quarkus.package.type> |
|
</properties> |
|
</profile> |
|
</profiles> |
|
</project>
|
|
|