90 lines
3.5 KiB
XML
90 lines
3.5 KiB
XML
<?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>
|
|
<artifactId>sse-jaxrs-server</artifactId>
|
|
<name>sse-jaxrs-server</name>
|
|
<packaging>war</packaging>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>sse-jaxrs</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>jakarta.ws.rs</groupId>
|
|
<artifactId>jakarta.ws.rs-api</artifactId>
|
|
<version>${jakarta-ws.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.enterprise</groupId>
|
|
<artifactId>jakarta.enterprise.cdi-api</artifactId>
|
|
<version>${jakarta-cdi-api}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.json.bind</groupId>
|
|
<artifactId>javax.json.bind-api</artifactId>
|
|
<version>${bind-api.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>${maven-war-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>net.wasdev.wlp.maven.plugins</groupId>
|
|
<artifactId>liberty-maven-plugin</artifactId>
|
|
<version>${liberty-maven-plugin.version}</version>
|
|
<configuration>
|
|
<assemblyArtifact>
|
|
<groupId>io.openliberty</groupId>
|
|
<artifactId>openliberty-webProfile8</artifactId>
|
|
<version>${openliberty-version}</version>
|
|
<type>zip</type>
|
|
</assemblyArtifact>
|
|
<installAppPackages>project</installAppPackages>
|
|
<looseApplication>true</looseApplication>
|
|
<configFile>src/main/liberty/config/server.xml</configFile>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>install-server</id>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>install-server</goal>
|
|
<goal>create-server</goal>
|
|
<goal>install-feature</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>install-apps</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>install-apps</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<liberty-maven-plugin.version>2.4.2</liberty-maven-plugin.version>
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
<openliberty-version>18.0.0.2</openliberty-version>
|
|
<jakarta-ws.version>3.1.0</jakarta-ws.version>
|
|
<jakarta-cdi-api>4.0.1</jakarta-cdi-api>
|
|
<bind-api.version>1.0</bind-api.version>
|
|
<maven-war-plugin.version>3.3.2</maven-war-plugin.version>
|
|
</properties>
|
|
|
|
</project> |