<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>

	<artifactId>cloud-altemistafwk-core</artifactId>
	<name>cloud-altemistafwk framework core</name>
	<description>Core module of the framework</description>
	
	<dependencies>

		<!-- == Begin Altemista cloud framework == -->		
		<dependency>
			<groupId>cloud.altemista.fwk.framework</groupId>
			<artifactId>cloud-altemistafwk-common</artifactId>
		</dependency>
		<!-- == End Altemista cloud framework == -->
		
		<!-- == Begin Terasoluna Server Framework for Java == -->
		<dependency>
			<groupId>org.terasoluna.gfw</groupId>
			<artifactId>terasoluna-gfw-common</artifactId>
			<!-- Exclusions to minimize dependencies in pure business projects -->
			<exclusions>
			
				<!-- Logging -->
				<exclusion>
					<groupId>org.lazyluke</groupId>
					<artifactId>log4jdbc-remix</artifactId>
				</exclusion>
				
				<!-- Spring Framework -->
				<exclusion>
					<groupId>org.springframework</groupId>
					<artifactId>spring-orm</artifactId>
				</exclusion>
				
				<!-- Spring Data -->
				<exclusion>
					<groupId>org.springframework.data</groupId>
					<artifactId>spring-data-commons</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<!-- == End Terasoluna Server Framework for Java == -->

		<!-- == Begin Spring Framework == -->
		<dependency>
			<!-- Allows DatabasePropertiesProvider to extend JdbcDaoSupport (optional) -->
			<groupId>org.springframework</groupId>
			<artifactId>spring-jdbc</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<!-- Recommended dependency to allow services to be declared @Transactional (optional) -->
			<groupId>org.springframework</groupId>
			<artifactId>spring-tx</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- == End Spring Framework == -->

		<!-- == Begin Apache Commons == -->
		<dependency>
			<groupId>commons-codec</groupId>
			<artifactId>commons-codec</artifactId>
		</dependency>
		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
		</dependency>
		<!-- == End Apache Commons == -->

		<!-- == Begin test dependencies == -->
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-test</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- == End test dependencies == -->
	
		<!-- == Begin test dependencies for embedded test database == -->
		<dependency>
			<!-- http://www.springframework.org/schema/jdbc for jdbc:embedded-database -->
			<groupId>org.springframework</groupId>
			<artifactId>spring-jdbc</artifactId>
		</dependency>
		<dependency>
			<groupId>org.hsqldb</groupId>
			<artifactId>hsqldb</artifactId>
		</dependency>
		<!-- <dependency>
			<!- - (convenience JDBC utilities) - -> 
			<groupId>commons-dbutils</groupId>
			<artifactId>commons-dbutils</artifactId>
		</dependency> -->
		<!-- == Begin test dependencies for embedded test database == -->
		
	</dependencies>
		
</project>
