<?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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.springsource.insight</groupId>
	<artifactId>parent</artifactId>
	<version>1.5.0.RELEASE</version>
	<name>com.springsource.insight:parent</name>
	<description>Spring Insight parent project.  Defines dependencies and common configuration for the build process.</description>
	<packaging>pom</packaging>
	
	<properties>
		<spring.framework.version>3.0.5.RELEASE</spring.framework.version>
		<spring.security.version>3.0.5.RELEASE</spring.security.version>
		<aspectj.version>1.6.11</aspectj.version>
		<junit.version>4.5</junit.version>
		<mockito.version>1.8.0</mockito.version>
		<commons.logging.version>1.1.1</commons.logging.version>
		<log4j.version>1.2.16</log4j.version>
		<commons.math.version>2.1</commons.math.version>
		<clover2.version>2.6.3</clover2.version>
		<slf4j.version>1.6.1</slf4j.version>
		<servlet-api.version>2.5</servlet-api.version>
		<freemarker.version>2.3.15</freemarker.version>
		<jstl.version>1.2</jstl.version>
		<cglib.version>2.2</cglib.version>
		<spring.integration.version>2.0.3.RELEASE</spring.integration.version>
		<activemq.version>5.4.2</activemq.version>
		<xbean.version>3.5</xbean.version>
        <catalina.version>6.0.18</catalina.version>
        <h2.version>1.2.147</h2.version>
        <hibernate.version>3.6.0.Final</hibernate.version>
        <commons.dbcp.version>1.2.2</commons.dbcp.version>
        <liquibase.version>2.0.1</liquibase.version>
        <gemfire.version>6.5</gemfire.version>
        <spring.gemfire.version>1.0.0.RELEASE</spring.gemfire.version>
        <ehcache.version>2.3.0</ehcache.version>
        <groovy.version>1.7.0</groovy.version>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
	
	<profiles>
		<profile>
			<id>fast</id>
			<properties>
				<maven.test.skip>true</maven.test.skip>
				<maven.javadoc.skip>true</maven.javadoc.skip>
			</properties>
		</profile>
	</profiles>
	
	
	
	<build>
		<extensions>
			<extension>
				<groupId>org.springframework.build.aws</groupId>
				<artifactId>org.springframework.build.aws.maven</artifactId>
				<version>3.0.0.RELEASE</version>
			</extension>
		</extensions>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-deploy-plugin</artifactId>
					<version>2.4</version>
					<configuration>
						<skip>false</skip>
					</configuration>
				</plugin>
				<plugin>
					<groupId>com.mycila.maven-license-plugin</groupId>
					<artifactId>maven-license-plugin</artifactId>
					<configuration>
						<header>../../etc/aslHeader.txt</header>
						<includes>
							<include>**/*.java</include>
							<include>**/*.aj</include>
						</includes>
						<properties>
							<year>2009-2010</year>
						</properties>
					</configuration>
					<executions>
						<execution>
							<goals>
								<goal>check</goal>
							</goals>
						</execution>
					</executions>
				</plugin>
			</plugins>
		</pluginManagement>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-dependency-plugin</artifactId>
				<executions>
					<execution>
						<id>install</id>
						<phase>install</phase>
						<goals>
							<goal>sources</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<addMavenDescriptor>false</addMavenDescriptor>
					</archive>
					<excludes>
						<exclude>**/.gitignore</exclude>
						<exclude>**/builddef.*</exclude>
					</excludes>
				</configuration>
			</plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <forkMode>once</forkMode><!-- at least once -->
                    <systemProperties>
                        <property>
                            <name>java.awt.headless</name>
                            <value>true</value>
                        </property>
                    </systemProperties>
                </configuration>
            </plugin>
		</plugins>
	</build>
	
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<reportSets>
					<reportSet>
						<reports>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
		</plugins>
	</reporting>
	
	<distributionManagement>
        <repository>
            <id>spring-milestone</id>
            <name>Spring Milestone Repository</name>
            <url>s3://maven.springframework.org/release</url>
        </repository>
    </distributionManagement>
	
</project>
