<?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>
		<groupId>at.chrl</groupId>
		<artifactId>chrl-bom</artifactId>
		<version>1.1.0</version>
	</parent>
	<!--  -->
	
	<!--  -->
	<artifactId>chrl-parent</artifactId>
	<packaging>pom</packaging>
	<!--  -->
	
	<!--  -->
	<name>ChRL - Parent</name>
	<description>ChRL Maven Parent</description>
	<!--  -->
	
	<!--  -->
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.tomcat.maven</groupId>
				<artifactId>tomcat7-maven-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>${java-version}</source>
					<target>${java-version}</target>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<!--  -->

	<!--  -->
	<modules>
		<module>chrl-callback-utils</module>
		<module>chrl-callbacks</module>
		<module>chrl-config</module>
		<module>chrl-cron</module>
		<module>chrl-orm-spring-integration</module>
		<module>chrl-orm</module>
		<module>chrl-rebellion</module>
		<module>chrl-spring</module>
		<module>chrl-utils</module>
		<module>chrl-jms</module>
		<module>chrl-vaadin-utils</module>

		<!-- Archetypes -->
		<module>chrl-spring-sample</module>
	</modules>
	<!--  -->
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>
