123 lines
3.8 KiB
XML
123 lines
3.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
JBoss, Home of Professional Open Source
|
|
Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
|
|
contributors by the @authors tag. See the copyright.txt in the
|
|
distribution for a full listing of individual contributors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.armundia</groupId>
|
|
<artifactId>stub-pom</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../stub-pom/pom.xml</relativePath>
|
|
</parent>
|
|
<artifactId>stub-war</artifactId>
|
|
<packaging>war</packaging>
|
|
|
|
<name>stub-war: WAR Module</name>
|
|
|
|
<url>http://wildfly.org</url>
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License, Version 2.0</name>
|
|
<distribution>repo</distribution>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<dependencies>
|
|
<!-- Import the JAX-RS API, we use provided scope as the API is included in JBoss WildFly -->
|
|
<dependency>
|
|
<groupId>javax</groupId>
|
|
<artifactId>javaee-api</artifactId>
|
|
<version>8.0.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Import the CDI API, we use provided scope as the API is included in JBoss WildFly -->
|
|
<dependency>
|
|
<groupId>javax.enterprise</groupId>
|
|
<artifactId>cdi-api</artifactId>
|
|
<scope>provided</scope>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.17.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.armundia.Shared-JavaEE</groupId>
|
|
<artifactId>Shared-JavaEE</artifactId>
|
|
<version>0.0.56</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.armundia.arm-core-utility</groupId>
|
|
<artifactId>arm-core-utility</artifactId>
|
|
<version>3.2.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.armundia.arm-core-users</groupId>
|
|
<artifactId>arm-core-users-JAR</artifactId>
|
|
<version>3.0.21</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>armtest</artifactId>
|
|
<groupId>com.armundia.tech</groupId>
|
|
<version>1.0.3-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.0</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>3.4.0</version>
|
|
<configuration>
|
|
<outputFileNameMapping>@{artifactId}@.@{extension}@</outputFileNameMapping>
|
|
<archive>
|
|
<manifestEntries>
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
</manifestEntries>
|
|
</archive>
|
|
<!-- Java EE 7 doesn't require web.xml, Maven needs to catch up! -->
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.5.2</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |