<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>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<groupId>org.javafxdata</groupId>
	<artifactId>datafx-parent</artifactId>
	<version>2.0b5</version>
	<packaging>pom</packaging>

	<name>datafx-parent</name>
	<url>http://www.javafxdata.org</url>

	<developers>
		<developer>
			<name>Jonathan Giles</name>
		</developer>
		<developer>
			<name>Johan Vos</name>
		</developer>
		<developer>
			<name>Hendrik Ebbers</name>
		</developer>
	</developers>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-javadoc-plugin</artifactId>
    				<version>2.9</version>
    				<executions>
        				<execution>
            				<id>attach-javadocs</id>
            				<goals>
                				<goal>jar</goal>
            				</goals>
            				<configuration>
                				<additionalparam>-Xdoclint:none</additionalparam>
                                                <failOnError>false</failOnError>
            				</configuration>
        				</execution>
    				</executions>
			</plugin>
		</plugins>
	</build>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<scm>
		<connection>scm:hg:https://bitbucket.org/datafx/datafx</connection>
		<developerConnection>scm:hg:https://bitbucket.org/datafx/datafx</developerConnection>
		<url>https://bitbucket.org/datafx/datafx/overview</url>
	</scm>

	<modules>
		<module>datafx-core</module>
		<module>datafx-controller</module>
		<module>datafx-cell</module>
		<module>datafx-websocket</module>
		<module>datafx-samples</module>
	</modules>

	<profiles>
		<profile>
			<id>release-sign-artifacts</id>
			<activation>
				<property>
					<name>performRelease</name>
					<value>true</value>
				</property>
			</activation>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-javadoc-plugin</artifactId>
						<version>2.9</version>
						<configuration>
							<additionalparam>-Xdoclint:none</additionalparam>
							<quiet>true</quiet>
						</configuration>
						<executions>
							<execution>
								<id>attach-doc</id>
								<goals>
									<goal>jar</goal>
								</goals>
							</execution>
						</executions>
					</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-gpg-plugin</artifactId>
						<version>1.1</version>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>
