<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>cloud-altemistafwk-parent</artifactId>
		<groupId>cloud.altemista.fwk.framework</groupId>
		<version>3.0.0.RELEASE</version>
		<relativePath/>
	</parent>
	<groupId>cloud.altemista.fwk.webapp.modules</groupId>
	<artifactId>cloud-altemistafwk-webapp-jsf</artifactId>
	<name>cloud-altemistafwk presentation layer: JSF support (PrimeFaces)</name>

	<dependencies>

		<!-- == Begin ACF framework == -->
		<dependency>
			<groupId>cloud.altemista.fwk.framework</groupId>
			<artifactId>cloud-altemistafwk-webapp-conf</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<!-- For CustomFacesExceptionHandler to use ExceptionCounter -->
			<groupId>cloud.altemista.fwk.monitoring</groupId>
			<artifactId>cloud-altemistafwk-common-monitoring</artifactId>
		</dependency>
		<!-- == End ACF framework == -->

		<!-- == Begin PrimeFaces == -->
		<dependency>
			<groupId>org.primefaces</groupId>
			<artifactId>primefaces</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- == End PrimeFaces == -->
		
		<!-- == Begin Apache Commons == -->
		<dependency>
			<groupId>commons-fileupload</groupId>
			<artifactId>commons-fileupload</artifactId>
		</dependency>
		<!-- == End Apache Commons == -->

		<!-- == Begin JSF 2.2 Specification == -->
		<dependency>
			<groupId>com.sun.faces</groupId>
			<artifactId>jsf-api</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>com.sun.faces</groupId>
			<artifactId>jsf-impl</artifactId>
			<scope>provided</scope>
		</dependency>
		<!-- == End JSF 2.2 Specification == -->

		<!-- == Begin JavaEE APIs == -->
		<dependency>
			<groupId>javax</groupId>
			<artifactId>javaee-api</artifactId>
			<scope>provided</scope>
		</dependency>
		<!-- == End JavaEE APIs == -->
		
	</dependencies>

</project>
