Created
August 18, 2021 07:36
-
-
Save fercomunello/e801b0130ffb525b1944d1530cdd6a59 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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> | |
<groupId>me.fernando.jakarta.demo</groupId> | |
<artifactId>jakarta-wildfly-demo</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<name>jakarta-wildfly-demo</name> | |
<packaging>war</packaging> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<maven.compiler.target>11</maven.compiler.target> | |
<maven.compiler.source>11</maven.compiler.source> | |
<jakarta.version>9.1.0</jakarta.version> | |
<jakarta.mvc.api.version>2.0.0</jakarta.mvc.api.version> | |
<krazo.version>2.0.1</krazo.version> | |
<junit.version>5.7.2</junit.version> | |
</properties> | |
<dependencies> | |
<!-- Jakarta API --> | |
<dependency> | |
<groupId>jakarta.platform</groupId> | |
<artifactId>jakarta.jakartaee-api</artifactId> | |
<version>${jakarta.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<!-- Jakarta MVC --> | |
<dependency> | |
<groupId>jakarta.mvc</groupId> | |
<artifactId>jakarta.mvc-api</artifactId> | |
<version>${jakarta.mvc.api.version}</version> | |
</dependency> | |
<!-- Eclipse Krazo MVC --> | |
<dependency> | |
<groupId>org.eclipse.krazo</groupId> | |
<artifactId>krazo-core</artifactId> | |
<version>${krazo.version}</version> | |
</dependency> | |
<!-- Eclipse Krazo MVC (RestEasy) --> | |
<dependency> | |
<groupId>org.eclipse.krazo</groupId> | |
<artifactId>krazo-resteasy</artifactId> | |
<version>${krazo.version}</version> | |
</dependency> | |
<!-- JUnit --> | |
<dependency> | |
<groupId>org.junit.jupiter</groupId> | |
<artifactId>junit-jupiter-api</artifactId> | |
<version>${junit.version}</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.junit.jupiter</groupId> | |
<artifactId>junit-jupiter-engine</artifactId> | |
<version>${junit.version}</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-war-plugin</artifactId> | |
<version>3.3.1</version> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment