<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>org.codehaus.openxma</groupId>
	<artifactId>dsl-parent</artifactId>
	<packaging>pom</packaging>
	<version>5.0.6</version>
	<name>openXMA Dsl Parent</name>
	<scm>
		<developerConnection>
    scm:svn:https://svn.codehaus.org/openxma/dsl/org.openxma.dsl.parent/trunk</developerConnection>
	</scm>
	<modules>
		<module>../org.openxma.dsl.common</module>
		<module>../org.openxma.dsl.core</module>
		<module>../org.openxma.dsl.ddl</module>
		<module>../org.openxma.dsl.dom</module>
		<module>../org.openxma.dsl.pom</module>
		<module>../org.openxma.dsl.platform</module>
		<module>../org.openxma.dsl.generator.api</module>
		<module>../org.openxma.dsl.generator</module>
		<module>../org.openxma.dsl.generator.mojo</module>
		<module>../org.openxma.dsl.tests</module>
		<module>../org.openxma.dsl.reference</module>
	</modules>
	<properties>
    	<project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding>
  	</properties>
	<dependencies>
		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymock</artifactId>
			<version>3.0</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.5</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<repositories>
		<repository>
			<id>codehaus.org.snapshots</id>
			<name>Codehaus Snapshots</name>
			<url>http://snapshots.repository.codehaus.org</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>codehaus.org.milestone.080M4</id>
			<url>http://svn.codehaus.org/openxma/maven</url>
			<releases>
				<enabled>true</enabled>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>Xtext Maven Repo</id>
			<url>http://build.eclipse.org/common/xtext/maven/maven-snapshot/final/</url>
			<releases>
				<enabled>true</enabled>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>Xtend2 Maven Repo</id>
			<url>http://build.eclipse.org/common/xtend/maven</url>
			<releases>
				<enabled>true</enabled>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
	</repositories>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
					<verbose>false</verbose>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.1.2</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-plugin-plugin</artifactId>
				<version>2.2</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.10</version>
				<configuration>
					<includes>
						<include>**/*Test.java</include>
					</includes>
					<printSummary>false</printSummary>
					<redirectTestOutputToFile>true</redirectTestOutputToFile>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<archive>
						<manifestEntries>
							<Built-On>${COMPUTERNAME}</Built-On>
							<Build-Time>${BUILD_ID}</Build-Time>
							<SVN-Revision>${SVN_REVISION}</SVN-Revision>
						</manifestEntries>
						<manifest>
							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
							<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
						</manifest>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>build-helper-maven-plugin</artifactId>
				<version>1.1</version>
				<executions>
					<execution>
						<id>add-source</id>
						<phase>generate-sources</phase>
						<goals>
							<goal>add-source</goal>
						</goals>
						<configuration>
							<sources>
								<source>src-gen</source>
							</sources>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
		<pluginManagement>
			<plugins>
				<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
				<plugin>
					<groupId>org.eclipse.m2e</groupId>
					<artifactId>lifecycle-mapping</artifactId>
					<version>1.0.0</version>
					<configuration>
						<lifecycleMappingMetadata>
							<pluginExecutions>
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>
											org.apache.maven.plugins
										</groupId>
										<artifactId>
											maven-plugin-plugin
										</artifactId>
										<versionRange>
											[2.2,)
										</versionRange>
										<goals>
											<goal>descriptor</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore></ignore>
									</action>
								</pluginExecution>
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>
											org.codehaus.mojo
										</groupId>
										<artifactId>
											build-helper-maven-plugin
										</artifactId>
										<versionRange>
											[1.1,)
										</versionRange>
										<goals>
											<goal>add-source</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore></ignore>
									</action>
								</pluginExecution>
							</pluginExecutions>
						</lifecycleMappingMetadata>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-javadoc-plugin</artifactId>
					<version>2.8.1</version>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>org.codehaus.openxma</groupId>
				<artifactId>guidesigner</artifactId>
				<version>${project.version}</version>
			</dependency>
		</dependencies>
	</dependencyManagement>
	<distributionManagement>
		<repository>
			<id>codehaus.org</id>
			<name>openXMA Central Distribution Repository</name>
			<url>dav:https://dav.codehaus.org/repository/openxma/</url>
		</repository>
		<snapshotRepository>
			<uniqueVersion>false</uniqueVersion>
			<id>codehaus.org</id>
			<name>openXMA Central Development Repository</name>
			<url>dav:https://dav.codehaus.org/snapshots.repository/openxma/</url>
		</snapshotRepository>
		<site>
			<id>codehaus.org</id>
			<url>dav:https://dav.codehaus.org/openxma/</url>
		</site>
	</distributionManagement>
	<profiles>
		<profile>
			<id>hudsonInternal</id>
			<activation>
				<property>
					<name>environment</name>
					<value>hudsonInternal</value>
				</property>
			</activation>
			<distributionManagement>
				<snapshotRepository>
					<uniqueVersion>false</uniqueVersion>
					<id>codehaus.org</id>
					<name>openXMA Central Development Repository</name>
					<url>${snapshotRepositoryUrl}</url>
				</snapshotRepository>
				<repository>
					<id>codehaus.org</id>
					<name>openXMA Central Distribution Repository</name>
					<url>${releaseRepositoryUrl}</url>
				</repository>
			</distributionManagement>
		</profile>
	</profiles>
</project>
