<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>
	<groupId>tld.company</groupId>
	<artifactId>judok.designer</artifactId>
	<version>6.0.2-SNAPSHOT</version>
	<packaging>pom</packaging>
	<name>NAME</name>
	<inceptionYear>2014</inceptionYear>
	<organization>
		<name>ORGANIZATION-NAME</name>
		<url>ORGANIZATION-URL</url>
	</organization>
	<url>URL</url>
	<properties>
		<plugin.tycho.version>0.20.0</plugin.tycho.version>
		<plugin.dependency.version>2.8</plugin.dependency.version>
		<plugin.maven-resources.version>2.6</plugin.maven-resources.version>
		<plugin.izpack.version>5.0.0-rc1</plugin.izpack.version>
		<plugin.maven-assembly.version>2.4</plugin.maven-assembly.version>
		<plugin.maven-release.version>2.5</plugin.maven-release.version>
		<plugin.maven-antrun.version>1.7</plugin.maven-antrun.version>

		<dependency.brz-compositionengine.version>5.0.4</dependency.brz-compositionengine.version>
		<dependency.commons-codec.version>1.9</dependency.commons-codec.version>
		<dependency.commons-collections4.version>4.0</dependency.commons-collections4.version>
		<dependency.commons-exec.version>1.2</dependency.commons-exec.version>
		<dependency.commons-io.version>2.4</dependency.commons-io.version>
		<dependency.commons-lang.version>3.3.2</dependency.commons-lang.version>
		<dependency.commons-logging.version>1.1.3</dependency.commons-logging.version>
		<dependency.spring.version>2.5.5</dependency.spring.version>
		<dependency.soa-model.version>1.4.1.4</dependency.soa-model.version>
		<dependency.xerces.version>2.9.1</dependency.xerces.version>
		
		<dependency.izpack-panel.version>${plugin.izpack.version}</dependency.izpack-panel.version>

		<product.name>PRODUCT-NAME</product.name>
		<product.version>${project.parent.version}</product.version>
		<product.url>http://juwiki.justiz.cal.local/index.php?title=JUDok</product.url>
		<product.copyright.owner>PRODUCT-COPYRIGHT-OWNER</product.copyright.owner>
		<product.copyright.duration>2008-2014</product.copyright.duration>
		<product.copyright>Copyright (C) ${product.copyright.duration} ${product.copyright.owner}. All rights reserved.</product.copyright>

		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
	<issueManagement>
		<system>JIRA</system>
		<url>ISSUEMANAGEMANET-URL</url>
	</issueManagement>
	<ciManagement>
		<system>Jenkins</system>
		<url>CIMANAGEMENT-URL</url>
	</ciManagement>
	<scm>
		<connection>scm:svn:https://svn.company.tld/PRODUCT/trunk/${project.artifactId}</connection>
		<developerConnection>scm:svn:https://svn.company.tld/PRODUCT/trunk/${project.artifactId}</developerConnection>
		<tag>HEAD</tag>
		<url>https://svn.company.tld/PRODUCT/trunk/${project.artifactId}</url>
	</scm>
	<repositories>
		<repository>
			<id>p2-kepler</id>
			<layout>p2</layout>
			<url>http://download.eclipse.org/releases/kepler</url>
		</repository>
		<repository>
			<id>p2-babel</id>
			<layout>p2</layout>
			<url>http://download.eclipse.org/technology/babel/update-site/R0.11.1/kepler</url>
		</repository>
	</repositories>
	<build>
		<plugins>
			<plugin>
				<groupId>org.eclipse.tycho</groupId>
				<artifactId>tycho-compiler-plugin</artifactId>
				<version>${plugin.tycho.version}</version>
				<configuration>
					<compilerArgument>-err:-forbidden</compilerArgument>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.eclipse.tycho</groupId>
				<artifactId>target-platform-configuration</artifactId>
				<version>${plugin.tycho.version}</version>
				<configuration>
					<environments>
						<environment>
							<os>win32</os>
							<ws>win32</ws>
							<arch>x86</arch>
						</environment>
					</environments>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.eclipse.tycho</groupId>
				<artifactId>tycho-maven-plugin</artifactId>
				<version>${plugin.tycho.version}</version>
				<extensions>true</extensions>
			</plugin>
			<plugin>
				<groupId>org.eclipse.tycho</groupId>
				<artifactId>tycho-versions-plugin</artifactId>
				<version>${plugin.tycho.version}</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>${plugin.maven-release.version}</version>
				<configuration>
					<tagBase>https://svn.company.tld/PRODUCT/tags</tagBase>
					<branchBase>https://svn.company.tld/PRODUCT/branches</branchBase>
					<tagNameFormat>@{project.version}</tagNameFormat>
					<autoVersionSubmodules>true</autoVersionSubmodules>
					<preparationGoals>tycho-versions:set-version</preparationGoals>
					<releaseProfiles>release</releaseProfiles>
					<!-- "install" goal because of not deploying files into Archiva (or local) -->
					<goals>install</goals>
					<arguments>-DnewVersion=${releaseVersion}</arguments>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<modules>
		<module>../judok.designer.core</module>
		<module>../judok.designer.product</module>
		<module>../judok.designer.installer</module>
	</modules>
</project>