132 lines
4.9 KiB
XML
132 lines
4.9 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>
|
|
<artifactId>portal</artifactId>
|
|
<groupId>com.fp.armas</groupId>
|
|
<version>2.1</version>
|
|
</parent>
|
|
|
|
<artifactId>portal-web</artifactId>
|
|
<packaging>war</packaging>
|
|
|
|
<name>portal - web</name>
|
|
|
|
<url>http://jboss.org/jbossas</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>
|
|
|
|
<!-- Dependency on the EJB module so we can use it's services if needed -->
|
|
<dependency>
|
|
<groupId>com.fp.armas</groupId>
|
|
<artifactId>portal-ejb</artifactId>
|
|
<type>ejb</type>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Import the JAX-RS API, we use provided scope as the API is included in JBoss AS 7 -->
|
|
<dependency>
|
|
<groupId>org.jboss.spec.javax.ws.rs</groupId>
|
|
<artifactId>jboss-jaxrs-api_1.1_spec</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Import the CDI API, we use provided scope as the API is included in JBoss AS 7 -->
|
|
<dependency>
|
|
<groupId>javax.enterprise</groupId>
|
|
<artifactId>cdi-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Import the JSF API, we use provided scope as the API is included in JBoss AS 7 -->
|
|
<dependency>
|
|
<groupId>org.jboss.spec.javax.faces</groupId>
|
|
<artifactId>jboss-jsf-api_2.1_spec</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Import the JPA API, we use provided scope as the API is included in JBoss AS 7 -->
|
|
<dependency>
|
|
<groupId>org.hibernate.javax.persistence</groupId>
|
|
<artifactId>hibernate-jpa-2.0-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- JSR-303 (Bean Validation) Implementation -->
|
|
<!-- Provides portable constraints such as @Email -->
|
|
<!-- Hibernate Validator is shipped in JBoss AS 7 -->
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.primefaces</groupId>
|
|
<artifactId>primefaces</artifactId>
|
|
<version>5.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.primefaces.extensions</groupId>
|
|
<artifactId>primefaces-extensions</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>1.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.6.1</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>${version.war.plugin}</version>
|
|
<configuration>
|
|
<!-- Java EE 6 doesn't require web.xml, Maven needs to catch up! -->
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|