<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>
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
	<groupId>org.eclipse.xtend</groupId>
	<artifactId>org.eclipse.xtend.maven</artifactId>
	<packaging>pom</packaging>
	<version>2.4.2</version>
	<modules>
		<module>../org.eclipse.xtend.lib</module>
		<module>../org.eclipse.xtext.xbase.lib</module>
		<module>../org.eclipse.xtend.standalone.maven</module>
		<module>../org.eclipse.xtend.lib.gwt</module>
		<module>../org.eclipse.xtext.xbase.lib.gwt</module>
		<module>../org.eclipse.xtend.maven.plugin</module>
		<module>../org.eclipse.xtend.maven.archetype</module>
		<module>../org.eclipse.xtend.maven.android.archetype</module>
	</modules>
	<name>Xtend Parent/Container</name>

	<properties>
		<guava.version>[10.0.1,15.0)</guava.version>
		<xtend.repo.name>Xtend provisional repository</xtend.repo.name>
		<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
		<project.reporting.outputEncoding>ISO-8859-1</project.reporting.outputEncoding>
	</properties>
	<licenses>
		<license>
			<name>Eclipse Public License - v 1.0</name>
			<url>http://www.eclipse.org/legal/epl-v10.html</url>
		</license>
	</licenses>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<configuration>
					<executable>/usr/local/bin/gpg</executable>
					<skip>false</skip>
				</configuration>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.0</version>
				<configuration>
					<compilerId>eclipse</compilerId>
					<source>1.5</source>
					<target>1.5</target>
					<optimize>true</optimize>
				</configuration>
				<dependencies>
					<dependency>
						<groupId>org.codehaus.plexus</groupId>
						<artifactId>plexus-compiler-eclipse</artifactId>
						<version>2.2</version>
					</dependency>
				</dependencies>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-deploy-plugin</artifactId>
				<version>2.6</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<scm>
		<connection>scm:git:git://git.eclipse.org/gitroot/tmf/org.eclipse.xtext.git</connection>
		<developerConnection>scm:git:ssh://git.eclipse.org:29418/tmf/org.eclipse.xtext.git</developerConnection>
		<url>http://git.eclipse.org/c/tmf/org.eclipse.xtext.git</url>
	</scm>
	<profiles>
		<profile>
			<id>local-build</id>
			<properties>
				<!-- local.build changes ant script behavior which creates standalone 
					jar -->
				<local.build>true</local.build>
			</properties>

			<distributionManagement>
				<repository>
					<id>local-nexus</id>
					<name>Nexus Release Repository</name>
					<url>http://localhost:8081/nexus/content/repositories/releases/</url>
				</repository>
				<snapshotRepository>
					<id>local-nexus-snapshots</id>
					<name>Sonatype Nexus Snapshots</name>
					<url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
				</snapshotRepository>
			</distributionManagement>
			<!-- <repositories>
				<repository>
					<releases>
						<enabled>false</enabled>
					</releases>
					<snapshots>
						<enabled>true</enabled>
					</snapshots>
					<id>local-nexus-snapshots</id>
					<name>Sonatype Nexus Snapshots</name>
					<url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
				</repository>
				<repository>
					<snapshots>
						<enabled>false</enabled>
					</snapshots>
					<id>local-nexus</id>
					<name>Nexus Release Repository</name>
					<url>http://localhost:8081/nexus/content/repositories/releases/</url>
				</repository>
			</repositories>
			-->
			<pluginRepositories>
				<pluginRepository>
					<releases>
						<updatePolicy>never</updatePolicy>
					</releases>
					<snapshots>
						<enabled>false</enabled>
					</snapshots>
					<id>central</id>
					<name>Central Repository</name>
					<url>http://repo.maven.apache.org/maven2</url>
				</pluginRepository>
			</pluginRepositories>
		</profile>
		<profile>
			<id>eclipse-hudson-build</id>
			<properties>
				<deployment.folder>/shared/common/xtend/maven/</deployment.folder>
				<deployment.url>file:///shared/common/xtend/maven/</deployment.url>
			</properties>

			<distributionManagement>
				<repository>
					<id>xtend-eclipse-local</id>
					<name>build.eclipse.org Release Repository</name>
					<url>file:///shared/common/xtend/maven</url>
				</repository>
				<snapshotRepository>
					<id>xtend-eclipse-local</id>
					<name>build.eclipse.org Release Repository</name>
					<url>file:///shared/common/xtend/maven</url>
				</snapshotRepository>
			</distributionManagement>
			<repositories>
				<repository>
					<releases>
						<enabled>false</enabled>
					</releases>
					<snapshots>
						<enabled>true</enabled>
					</snapshots>
					<id>build-eclipse-snapshots</id>
					<name>Sonatype Nexus Snapshots</name>
					<url>http://build.eclipse.org/common/xtend/maven/</url>
				</repository>
				<repository>
					<snapshots>
						<enabled>false</enabled>
					</snapshots>
					<id>build-eclipse</id>
					<name>Nexus Release Repository</name>
					<url>http://build.eclipse.org/common/xtend/maven/</url>
				</repository>
			</repositories>
			<pluginRepositories>
				<pluginRepository>
					<releases>
						<updatePolicy>never</updatePolicy>
					</releases>
					<snapshots>
						<enabled>false</enabled>
					</snapshots>
					<id>central</id>
					<name>Central Repository</name>
					<url>http://repo.maven.apache.org/maven2</url>
				</pluginRepository>
			</pluginRepositories>
			<!-- <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> 
				<version>1.1.1</version> <executions> <execution> <id>Reindex nexus</id> 
				<phase>deploy</phase> <goals> <goal>exec</goal> </goals> </execution> </executions> 
				<configuration> <executable>java</executable> <workingDirectory>${deployment.folder}/</workingDirectory> 
				<arguments> <argument>-jar</argument> <argument>${deployment.folder}/nexus-indexer-3.0.4-cli.jar</argument> 
				<argument>-t</argument> <argument>min</argument> <argument>-i</argument> 
				<argument>maven-index</argument> <argument>-r</argument> <argument>./</argument> 
				<argument>-n</argument> <argument>${xtend.repo.name}</argument> <argument>-d</argument> 
				<argument>.index</argument> </arguments> </configuration> </plugin> </plugins> 
				</build> -->
		</profile>
	</profiles>
	<url>http://www.eclipse.org/xtend/</url>
	<description>Xtend is a little language that compiles into idiomatic Java source code. You can use any existing Java library seamlessly from Xtend (and vice-versa). The compiled output is readable and pretty-printed, and tends to run as fast or faster than the equivalent handwritten Java code. It's the CoffeeScript for Java.</description>
	<developers>
		<developer>
			<id>dennis.huebner</id>
			<name>Dennis</name>
			<email>dennis.huebner@itemis.de</email>
			<organization>itemis AG</organization>
		</developer>
		<developer>
			<id>holger.schill</id>
			<name>Holger</name>
			<email>Holger.Schill@itemis.de</email>
			<organization>itemis AG</organization>
		</developer>
		<developer>
			<id>jan.koehnlein</id>
			<name>Jan</name>
			<email>jan.koehnlein@itemis.de</email>
			<organization>itemis AG</organization>
		</developer>
		<developer>
			<id>knut.wannheden</id>
			<name>Knut</name>
			<email>knut.wannheden@paranor.ch</email>
			<organization>Paranor</organization>
		</developer>
		<developer>
			<id>michael.clay</id>
			<name>Michael</name>
			<email>michael.clay@codeworkz.at</email>
			<organization>Codeworkz</organization>
		</developer>
		<developer>
			<id>moritz.eysholdt</id>
			<name>Moritz</name>
			<email>moritz.eysholdt@itemis.de</email>
			<organization>itemis AG</organization>
		</developer>
		<developer>
			<id>sebastian.zarnekow</id>
			<name>Sebastian</name>
			<email>sebastian.Zarnekow@itemis.de</email>
			<organization>itemis AG</organization>
		</developer>
		<developer>
			<id>sven.efftinge</id>
			<name>Sven</name>
			<email>sven.efftinge@itemis.de</email>
			<organization>itemis AG</organization>
			<roles>
				<role>project lead</role>
			</roles>
		</developer>
	</developers>
</project>