<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-maven-modul</artifactId> <name>macwidgets-maven-modul</name> <packaging>pom</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> <distributionManagement> <repository> <id>maven.javastream.de</id> <name>javastream Repository</name> <url>scp://maven.javastream.de/home/javastream.de/www/maven</url> </repository> <snapshotRepository> <id>maven.javastream.de</id> <name>javastream Repository</name> <url>scp://maven.javastream.de/home/javastream.de/www/maven</url> </snapshotRepository> </distributionManagement> <licenses> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/lgpl.html</url> </license> </licenses> <modules> <module>macwidgets</module> <module>macwidgets-demo</module> </modules> <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-javadoc-plugin</artifactId> <configuration> <aggregate>true</aggregate> </configuration> <executions> <execution> <id>aggregate</id> <goals> <goal>aggregate</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>1.0-beta-7</version> </extension> </extensions> </build> </project>