blob: e9827a9c99eb36732e8a79006fecbd0ff5249042 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
#=============================================================================#
# Copyright (c) 2018, 2020 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================#
-->
<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>
<parent>
<groupId>org.eclipse.statet.rj</groupId>
<artifactId>rj.servi</artifactId>
<version>4.1.0.202003050800-r</version>
</parent>
<artifactId>org.eclipse.statet.rj.servi.webapp</artifactId>
<version>4.1.0.202003050800-r</version>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>org.eclipse.statet.jcommons</groupId>
<artifactId>org.eclipse.statet.jcommons.util</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.statet.rj</groupId>
<artifactId>org.eclipse.statet.rj.servi</artifactId>
</dependency>
<!-- Java Web (EE 7) -->
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
<scope>provided</scope>
</dependency>
<!-- JSF -->
<dependency>
<groupId>jakarta.faces</groupId>
<artifactId>jakarta.faces-api</artifactId>
<version>2.3.1</version>
<!-- <groupId>org.glassfish</groupId> -->
<!-- <artifactId>jakarta.faces</artifactId> -->
<!-- <version>2.3.9</version> -->
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jstl-impl</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<outputFileNameMapping>@{artifactId}@_@{version}@.@{extension}@</outputFileNameMapping>
<warName>rservi</warName>
</configuration>
</plugin>
</plugins>
</build>
</project>