<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>cloud.altemista.fwk.framework</groupId>
		<artifactId>cloud-altemistafwk-parent</artifactId>
		<version>3.0.0.RELEASE</version>
		<relativePath />
	</parent>
	<groupId>cloud.altemista.fwk.security</groupId>
	<artifactId>cloud-altemistafwk-web-security</artifactId>
	<name>cloud-altemistafwk security: Web/HTTP authorization</name>

	<dependencies>

		<!-- == Begin ACF framework == -->
		<dependency>
			<groupId>cloud.altemista.fwk.framework</groupId>
			<artifactId>cloud-altemistafwk-web</artifactId>
			<scope>provided</scope>
		</dependency>
		<!-- == End ACF framework == -->
		
		<!-- == Begin Terasoluna Server Framework for Java == -->
		<dependency>
			<groupId>org.terasoluna.gfw</groupId>
			<artifactId>terasoluna-gfw-security-web</artifactId>
		</dependency>
		<!-- == End Terasoluna Server Framework for Java == -->

		<!-- == Begin JavaEE API == -->
		<dependency>
			<groupId>javax</groupId>
			<artifactId>javaee-api</artifactId>
			<scope>provided</scope>
		</dependency>
		<!-- == End JavaEE API == -->
		
		<!-- == Begin Apache HttpComponents == -->
		<dependency>
			<!-- required for ForwardedSecurityCredentials -->
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- == End Apache HttpComponents == -->
		
	</dependencies>

</project>