<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> <groupId>de.javastream</groupId> <artifactId>java-net-utils</artifactId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> <name>java-net-utils</name> <url>http://maven.apache.org</url> <developers> <developer> <id>philipp</id> <name>Philipp Haussleiter</name> <email>philipp@haussleiter.de</email> <url>http://philipp.haussleiter.de</url> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>jdknight</id> <name>James Knight</name> <email>...</email> <url>http://code.google.com/u/100836165314299466745/</url> <organization>java-mac-address</organization> <organizationUrl>http://code.google.com/p/java-mac-address/</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.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> <version>2.7</version> <executions> <execution> <id>attach-javadocs</id> <phase>verify</phase> <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> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>