2019-10-31 21:43:47 -04:00
|
|
|
<?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>javax.ws.rs</groupId>
|
|
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${rs-api.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.enterprise</groupId>
|
|
|
|
<artifactId>cdi-api</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${cdi-api.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.json.bind</groupId>
|
|
|
|
<artifactId>javax.json.bind-api</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${bind-api.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<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>
|
2020-01-15 15:23:26 -05:00
|
|
|
<rs-api.version>2.1</rs-api.version>
|
|
|
|
<cdi-api.version>2.0</cdi-api.version>
|
|
|
|
<bind-api.version>1.0</bind-api.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|