Description: Additions on top of upstream-derived POM in order to get the
 project build using maven.
Author: Andrius Merkys <merkys@debian.org>
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.msgpack</groupId>
     <artifactId>msgpack-java</artifactId>
-    <packaging>jar</packaging>
+    <packaging>pom</packaging>
     <description>Jackson extension that adds support for MessagePack</description>
     <version>0.9.6</version>
     <name>jackson-dataformat-msgpack</name>
@@ -77,4 +77,24 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+    <modules>
+        <module>msgpack-core</module>
+        <module>msgpack-jackson</module>
+    </modules>
+    <build>
+    <plugins>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-compiler-plugin</artifactId>
+            <configuration>
+                <source>1.7</source>
+                <target>1.7</target>
+            </configuration>
+        </plugin>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jar-plugin</artifactId>
+        </plugin>
+    </plugins>
+    </build>
 </project>
