Created
February 4, 2022 15:51
-
-
Save Francisco-Castillo/0db684b0e52fb5cb4d6ece9fa4cab8ee to your computer and use it in GitHub Desktop.
Archivo pom para Payara Micro
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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.fcastillo</groupId> | |
| <artifactId>jakarta-websocket</artifactId> | |
| <version>1.0-SNAPSHOT</version> | |
| <packaging>war</packaging> | |
| <name>jakarta-websocket</name> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <maven.compiler.source>1.8</maven.compiler.source> | |
| <maven.compiler.target>1.8</maven.compiler.target> | |
| <failOnMissingWebXml>false</failOnMissingWebXml> | |
| <version.payara>5.201</version.payara> | |
| <version.microprofile>2.0.1</version.microprofile> | |
| <jakartaee.version>9.0.0</jakartaee.version> | |
| </properties> | |
| <dependencies> | |
| <dependency> | |
| <groupId>jakarta.platform</groupId> | |
| <artifactId>jakarta.jakartaee-api</artifactId> | |
| <version>${jakartaee.version}</version> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>3.1</version> | |
| <configuration> | |
| <source>1.8</source> | |
| <target>1.8</target> | |
| <compilerArguments> | |
| <endorseddirs>${endorsed.dir}</endorseddirs> | |
| </compilerArguments> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-war-plugin</artifactId> | |
| <version>2.3</version> | |
| <configuration> | |
| <failOnMissingWebXml>false</failOnMissingWebXml> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>fish.payara.maven.plugins</groupId> | |
| <artifactId>payara-micro-maven-plugin</artifactId> | |
| <version>1.3.0</version> | |
| <configuration> | |
| <payaraVersion>${version.payara}</payaraVersion> | |
| <deployWar>false</deployWar> | |
| <commandLineOptions> | |
| <option> | |
| <key>--autoBindHttp</key> | |
| </option> | |
| <option> | |
| <key>--deploy</key> | |
| <value>${project.build.directory}/${project.build.finalName}</value> | |
| </option> | |
| </commandLineOptions> | |
| <contextRoot>/</contextRoot> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment