153 lines
5.6 KiB
XML
153 lines
5.6 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>
|
|
<parent>
|
|
<artifactId>shared</artifactId>
|
|
<groupId>de.muehlencord</groupId>
|
|
<version>1.2-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>de.muehlencord.shared</groupId>
|
|
<artifactId>shared-account-ui</artifactId>
|
|
<packaging>war</packaging>
|
|
|
|
<name>shared-account-ui</name>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
<!-- default filter if not selected via profile -->
|
|
<applicationUuid>143a2bd3-7e0b-4162-a76e-3031331c7dfe</applicationUuid>
|
|
<filter.name>development</filter.name>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.primefaces</groupId>
|
|
<artifactId>primefaces</artifactId>
|
|
</dependency>
|
|
<!-- Admin faces template -->
|
|
<dependency>
|
|
<groupId>com.github.adminfaces</groupId>
|
|
<artifactId>admin-template</artifactId>
|
|
</dependency>
|
|
<!-- Omnifaces, faces utils -->
|
|
<dependency>
|
|
<groupId>org.omnifaces</groupId>
|
|
<artifactId>omnifaces</artifactId>
|
|
</dependency>
|
|
<!-- Apache Shiro, Security API -->
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-core</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>commons-collections</groupId>
|
|
<artifactId>commons-collections</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.muehlencord.shared</groupId>
|
|
<artifactId>shared-shiro-faces</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.muehlencord.shared</groupId>
|
|
<artifactId>shared-account</artifactId>
|
|
<type>ejb</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.muehlencord.shared</groupId>
|
|
<artifactId>shared-util</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.muehlencord.shared</groupId>
|
|
<artifactId>shared-jeeutil</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.muehlencord.sf</groupId>
|
|
<artifactId>filter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax</groupId>
|
|
<artifactId>javaee-web-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<filters>
|
|
<filter>${basedir}/src/main/filters/${filter.name}.properties</filter>
|
|
</filters>
|
|
|
|
<resources>
|
|
<!-- fill buildinformation file -->
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
<includes>
|
|
<include>**/*.properties</include>
|
|
<include>**/*.xml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
|
|
<finalName>account</finalName>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>3.2.2</version>
|
|
<configuration>
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
<webResources>
|
|
<resource>
|
|
<directory>${basedir}/src/main/webapp</directory>
|
|
<filtering>true</filtering>
|
|
<includes>
|
|
<include>WEB-INF/web.xml</include>
|
|
<include>WEB-INF/jboss-web.xml</include>
|
|
<include>WEB-INF/shiro.ini</include>
|
|
</includes>
|
|
</resource>
|
|
</webResources>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>development</id>
|
|
<properties>
|
|
<filter.name>development</filter.name>
|
|
</properties>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>production</id>
|
|
<properties>
|
|
<filter.name>production</filter.name>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|