Newer
Older
piccolo2d.java / examples / pom.xml
@Marcus Rohrmoser Marcus Rohrmoser on 22 Jul 2008 1 KB issue#6 fixed some urls
<?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>
	<parent>
		<artifactId>parent</artifactId>
		<groupId>org.piccolo2d</groupId>
		<version>1.3-SNAPSHOT</version>
		<relativePath>../parent/pom.xml</relativePath>
	</parent>
	<artifactId>examples</artifactId>
	<version>1.3-SNAPSHOT</version>
	<name>Piccolo2D Examples</name>
	<url>http://code.google.com/p/piccolo2d/</url>
	<description>
		A revolutionary way to create robust, full-featured graphical
		applications in Java and C#, with striking visual effects such
		as zooming, animation and multiple representations.
	</description>
	<dependencies>
		<dependency>
			<groupId>org.piccolo2d</groupId>
			<artifactId>piccolo2dx</artifactId>
			<version>1.3-SNAPSHOT</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.2</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<reporting>
		<plugins>
			<!-- don't use UmlGraph as the current settings (see ../parent/pom.xml) cause pain with swt  -->
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
				<configuration>
					<source>1.2</source>
					<verbose>false</verbose>
					<show>package</show>
					<links>
						<link>
							http://java.sun.com/j2se/1.3/docs/api/
						</link>
					</links>
				</configuration>
			</plugin>
		</plugins>
	</reporting>
</project>