<?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>
	<groupId>com.explodingpixels</groupId>
	<artifactId>macwidgets</artifactId>
	<name>macwidgets</name>
	<parent>
		<groupId>com.explodingpixels</groupId>
		<artifactId>macwidgets-maven-modul</artifactId>
		<version>0.9.6-SNAPSHOT</version>
	</parent>
	<packaging>jar</packaging>
	<version>0.9.6-SNAPSHOT</version>
	<description>Mac Widgets for Java are a collection of widgets seen in OS X applications</description>
	<url>http://code.google.com/p/macwidgets</url>
	<scm>
		<connection>scm:svn:https://concordia.consolving.de/svn/macwidgets-maven-modul/</connection>
		<url>https://concordia.consolving.de/svn/macwidgets-maven-modul/</url>
	</scm>
	<repositories>
		<repository>
			<id>maven.javastream.de</id>
			<name>javastream Repository</name>
			<url>http://maven.javastream.de</url>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
		</repository>
	</repositories>
	<licenses>
		<license>
			<name>GNU Lesser General Public License</name>
			<url>http://www.gnu.org/licenses/lgpl.html</url>
		</license>
	</licenses>
	<dependencies>
		<dependency>
			<groupId>com.jgoodies</groupId>
			<artifactId>forms</artifactId>
			<version>1.2.1</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.5</version>
		</dependency>
	</dependencies>
	<developers>
		<developer>
			<id>com.exploding-pixels</id>
			<name>Kenneth Orr</name>
			<email>kenneth.orr@gmail.com</email>
		</developer>
	</developers>
	<contributors>
		<contributor>
			<name>Philipp Haussleiter</name>
			<email>philipp.haussleiter@innoq.com</email>
		</contributor>
	</contributors>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.0.2</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</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-surefire-plugin</artifactId>
				<configuration>
					<excludes>
						<exclude>**/Abstract*</exclude>
					</excludes>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>