--- asm3-3.2.orig/debian/maven.rules
+++ asm3-3.2/debian/maven.rules
@@ -0,0 +1 @@
+asm * * s/3\..*/3.x/
--- asm3-3.2.orig/debian/libasm3-java-doc.dirs
+++ asm3-3.2/debian/libasm3-java-doc.dirs
@@ -0,0 +1 @@
+usr/share/doc/libasm3-java-doc
--- asm3-3.2.orig/debian/copyright
+++ asm3-3.2/debian/copyright
@@ -0,0 +1,28 @@
+This package was debianized by Marcus Crafter <crafterm@debian.org> on
+Fri, 27 Aug 2004 19:08:25 +0200.
+
+It was downloaded from http://asm.objectweb.org/
+
+Upstream Authors: Eric Bruneton, Eugene Kuleshov
+
+Copyright: (c) 2004-2008 Eric Bruneton, Eugene Kuleshov
+
+License:
+
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted provided that the following conditions
+    are met:
+
+    1. Redistributions of source code must retain the above copyright
+       notice, this list of conditions and the following disclaimer.
+
+    2. Redistributions in binary form must reproduce the above copyright
+       notice, this list of conditions and the following disclaimer in the
+       documentation and/or other materials provided with the distribution.
+
+    3. Neither the name of the University nor the names of its contributors
+       may be used to endorse or promote products derived from this software
+       without specific prior written permission.
+
+ASM is licensed under the BSD license, a full copy of which is available
+in /usr/share/common-licenses/BSD
--- asm3-3.2.orig/debian/ant.properties
+++ asm3-3.2/debian/ant.properties
@@ -0,0 +1,17 @@
+# Properties that are set within asm's default build.properties
+product.name=asm
+
+# Build class path (classes needed to build the project)
+# Class path for the ObjectWeb utility Ant tasks (version 1.2 or higher)
+# See http://forge.objectweb.org/projects/monolog
+objectweb.ant.tasks.path=/usr/share/java/ow_util_ant_tasks.jar
+
+# URL for Javadoc generation
+jdk.url=file:///usr/share/doc/classpath-doc/api
+
+# javac settings used in compilation
+javac.debug=on
+javac.deprecation=on
+javac.includes=org/**/*.java
+javac.nowarn=off
+javac.verbose=yes
--- asm3-3.2.orig/debian/osgi.MF
+++ asm3-3.2/debian/osgi.MF
@@ -0,0 +1 @@
+Bundle-SymbolicName: org.objectweb.asm
--- asm3-3.2.orig/debian/libasm3-java.dirs
+++ asm3-3.2/debian/libasm3-java.dirs
@@ -0,0 +1 @@
+usr/share/java
--- asm3-3.2.orig/debian/rules
+++ asm3-3.2/debian/rules
@@ -0,0 +1,55 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+PACKAGE              := $(DEB_SOURCE_PACKAGE)
+VERSION              := $(DEB_UPSTREAM_VERSION)
+POM_VERSION          := 3.1
+JAVA_HOME            := /usr/lib/jvm/default-java
+DEB_JARS             := gnujaxp ant ant-junit junit xalan2 $(JAVA_HOME)/lib/tools.jar
+DEB_ANT_BUILD_TARGET := dist
+DEB_ANT_BUILDFILE    := build.xml
+DEB_ANT_ARGS         := -propertyfile debian/ant.properties -Dproduct.version=$(VERSION)
+MAVEN_REPO           := http://repository.sonatype.org/service/local/repositories/central/content
+
+get-orig-pom:
+	wget -O debian/poms/asm-parent.pom $(MAVEN_REPO)/asm/asm-parent/$(POM_VERSION)/asm-parent-$(POM_VERSION).pom
+	wget -O debian/poms/asm.pom $(MAVEN_REPO)/asm/asm/$(POM_VERSION)/asm-$(POM_VERSION).pom
+	wget -O debian/poms/asm-analysis.pom $(MAVEN_REPO)/asm/asm-analysis/$(POM_VERSION)/asm-analysis-$(POM_VERSION).pom
+	wget -O debian/poms/asm-commons.pom $(MAVEN_REPO)/asm/asm-commons/$(POM_VERSION)/asm-commons-$(POM_VERSION).pom
+	wget -O debian/poms/asm-tree.pom $(MAVEN_REPO)/asm/asm-tree/$(POM_VERSION)/asm-tree-$(POM_VERSION).pom
+	wget -O debian/poms/asm-util.pom $(MAVEN_REPO)/asm/asm-util/$(POM_VERSION)/asm-util-$(POM_VERSION).pom
+	wget -O debian/poms/asm-xml.pom $(MAVEN_REPO)/asm/asm-xml/$(POM_VERSION)/asm-xml-$(POM_VERSION).pom
+	perl -p -i -e 's/<version>$(POM_VERSION)/<version>$(VERSION)/' debian/poms/*.pom
+
+get-orig-source:
+		-uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename
+
+binary-post-install/lib$(PACKAGE)-java::
+	mh_installpoms -plib$(PACKAGE)-java
+	mh_installjar -plib$(PACKAGE)-java -l --usj-name=asm3 debian/poms/asm.pom output/dist/lib/asm-$(VERSION).jar
+	mh_installjar -plib$(PACKAGE)-java -l --usj-name=asm3-analysis debian/poms/asm-analysis.pom output/dist/lib/asm-analysis-$(VERSION).jar
+	mh_installjar -plib$(PACKAGE)-java -l --usj-name=asm3-commons debian/poms/asm-commons.pom output/dist/lib/asm-commons-$(VERSION).jar
+	mh_installjar -plib$(PACKAGE)-java -l --usj-name=asm3-tree debian/poms/asm-tree.pom output/dist/lib/asm-tree-$(VERSION).jar
+	mh_installjar -plib$(PACKAGE)-java -l --usj-name=asm3-util debian/poms/asm-util.pom output/dist/lib/asm-util-$(VERSION).jar
+	mh_installjar -plib$(PACKAGE)-java -l --usj-name=asm3-xml debian/poms/asm-xml.pom output/dist/lib/asm-xml-$(VERSION).jar
+	# make symlinks to the "all" jar
+	for FILE in debian/lib$(PACKAGE)-java/usr/share/java/*.jar ; do \
+		if [ ! -L "$$FILE" ] ; then \
+			rm -f "$$FILE" ; \
+			ln -s asm3-all-$(VERSION).jar "$$FILE" ; \
+		fi ; \
+	done
+	# Rename so the versionless link does not cause confusion/conflicts with earlier versions.
+	mv output/dist/lib/all/asm-all-$(VERSION).jar output/dist/lib/all/asm3-all-$(VERSION).jar
+	jar umf debian/osgi.MF output/dist/lib/all/asm3-all-$(VERSION).jar
+	jh_installlibs output/dist/lib/all/asm3-all-$(VERSION).jar
+
+binary-post-install/lib$(PACKAGE)-java-doc::
+	dh_install -plib$(PACKAGE)-java-doc output/dist/doc/javadoc/user/* usr/share/doc/libasm3-java-doc/api
+	dh_install -plib$(PACKAGE)-java-doc output/dist/examples usr/share/doc/libasm3-java-doc
+
+clean::
+	-rm -rf debian/tmp
+
--- asm3-3.2.orig/debian/libasm3-java.docs
+++ asm3-3.2/debian/libasm3-java.docs
@@ -0,0 +1 @@
+README.txt
--- asm3-3.2.orig/debian/changelog
+++ asm3-3.2/debian/changelog
@@ -0,0 +1,123 @@
+asm3 (3.2-3) unstable; urgency=low
+
+  * Added myself to Uploaders.
+  * Added a fix to the OSGi-metadata for the asm3-all jar and install
+    said jar (it is needed by eclipse).
+  * Replaced all other jars with a symlink to the asm3-all jar.
+  * Bumped Standards-Version to 3.8.4 - no changes required.
+  * Bumped debhelper compat to 7.
+
+ -- Niels Thykier <niels@thykier.net>  Wed, 10 Feb 2010 22:01:29 +0100
+
+asm3 (3.2-2) unstable; urgency=low
+
+  * Upload to unstable.
+
+ -- Torsten Werner <twerner@debian.org>  Sun, 09 Aug 2009 10:10:09 +0200
+
+asm3 (3.2-1) experimental; urgency=low
+
+  [Ludovic Claude]
+  * New upstream version, add myself to Uploaders
+  * Change section to java, bump up Standards-Version to 3.8.1
+  * Use cdbs for the build
+  * Add the Maven POM to the package,
+  * Add a Build-Depends-Indep dependency on maven-repo-helper
+  * Use mh_installpom and mh_installjar to install the POM and the jar to the
+    Maven repository
+  * Add ${misc:Depends} to Depends to clear Lintian warnings  
+  * Change the dependency on java-gcj to default-jdk
+  * Remove Depends on Java runtimes as it is a library
+
+  [Damien Raude-Morvan]
+  * Removed Marcus Crafter from Uploaders (Closes: #521480)
+
+ -- Ludovic Claude <ludovic.claude@laposte.net>  Fri, 15 May 2009 19:59:46 +0100
+
+asm3 (3.1-2) unstable; urgency=low
+
+  * Cleaned up diff.gz and removed patch to asm 3.0.
+  * Cleaned up debian/copyright.
+  * Build package in binary-indep target of debian/rules.
+  * Don't Build-Depend on dpatch.
+  * Don't use '-1' in Build-Depends.
+  * Updated Standards-Version to 3.7.3.
+  * Added Vcs-Svn and Vcs-Browser fields.
+  * Changed watch file to another mirror.
+
+ -- Michael Koch <konqueror@gmx.de>  Sat, 26 Apr 2008 23:26:33 +0200
+
+asm3 (3.1-1) unstable; urgency=low
+
+  * New upstream version.
+  * Fixed watch file to point to the correct upstream download.
+  * Updated debhelper level to 5.
+  * Added Homepage field to debian/control.
+
+ -- Michael Koch <konqueror@gmx.de>  Tue, 30 Oct 2007 08:35:02 +0100
+
+asm3 (3.0+svn20070511-1) unstable; urgency=low
+
+  * New upstream release
+  * debian/ant.properties: fixed path to local java api docs
+
+ -- Michael Koch <konqueror@gmx.de>  Fri, 11 May 2007 09:09:29 -0100
+
+asm3 (3.0-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Michael Koch <konqueror@gmx.de>  Mon, 16 Apr 2007 22:00:36 +0200
+
+asm (1.5.3-4) unstable; urgency=low
+
+  * Updated standards version and uploader email
+  * Added Section: specifications for binary packages
+
+ -- Barry Hawkins <barry@alltc.com>  Sat, 06 May 2006 21:48:59 -0400
+
+asm (1.5.3-3) unstable; urgency=low
+
+  * kaffe compiler transition
+  * Added myself to uploaders
+
+ -- Wolfgang Baer <WBaer@gmx.de>  Mon, 16 Jan 2006 14:29:46 +0100
+
+asm (1.5.3-2) unstable; urgency=low
+
+  * Added missing dpatch build dependency (Closes: #328741) 
+
+ -- Barry Hawkins <barry@bytemason.org>  Sat, 17 Sep 2005 16:37:36 -0400
+
+asm (1.5.3-1) unstable; urgency=low
+
+  * New upstream version.
+  * Package moved to main using kaffe and ant (Closes: #310237)
+  * Removed ow_util_ant_tasks.uue and build against libow-util-ant-tasks-java
+  * Removed sharutils build dependency - no longer needed
+  * Removed ${misc:Depends} from depends - not needed in binary all package
+  * Adjusted build-dep on libow-util-ant-tasks-java to fixed 1.3-2 version
+  * Fixed description to make linda happy
+  * Package moved into Debian Java Maintainers project
+  * Updated standards version to 3.6.2
+
+ -- Barry Hawkins <barry@bytemason.org>  Wed, 17 Aug 2005 00:18:39 -0400
+
+asm (1.5.2-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Marcus Crafter <crafterm@debian.org>  Sat, 18 Dec 2004 23:05:32 +0100
+
+asm (1.4.3-2) unstable; urgency=low
+
+  * Fixed broken link to asm.jar
+
+ -- Marcus Crafter <crafterm@debian.org>  Wed,  1 Sep 2004 22:30:33 +0200
+
+asm (1.4.3-1) unstable; urgency=low
+
+  * Initial Release.
+    (closes: #268643)
+
+ -- Marcus Crafter <crafterm@debian.org>  Fri, 27 Aug 2004 19:08:25 +0200
--- asm3-3.2.orig/debian/libasm3-java.poms
+++ asm3-3.2/debian/libasm3-java.poms
@@ -0,0 +1,8 @@
+debian/poms/asm-parent.pom --no-parent
+debian/poms/asm-analysis.pom
+debian/poms/asm-commons.pom
+debian/poms/asm-tree.pom
+debian/poms/asm-util.pom
+debian/poms/asm-xml.pom
+debian/poms/asm.pom
+
--- asm3-3.2.orig/debian/watch
+++ asm3-3.2/debian/watch
@@ -0,0 +1,3 @@
+version=3
+http://download.forge.objectweb.org/asm/asm-(3.*).tar.gz
+
--- asm3-3.2.orig/debian/control
+++ asm3-3.2/debian/control
@@ -0,0 +1,39 @@
+Source: asm3
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
+Uploaders: Barry Hawkins <barry@alltc.com>, Michael Koch <konqueror@gmx.de>,
+ Ludovic Claude <ludovic.claude@laposte.net>, Niels Thykier <niels@thykier.net>
+Build-Depends: debhelper (>= 7), cdbs, default-jdk
+Build-Depends-Indep: maven-repo-helper, ant (>= 1.6.5), libow-util-ant-tasks-java (>= 1.3-2), javahelper
+Standards-Version: 3.8.4
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/asm3
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/asm3
+Homepage: http://asm.objectweb.org/
+
+Package: libasm3-java
+Architecture: all
+Depends: ${misc:Depends}
+Description: Java bytecode manipulation framework
+ It can be used to dynamically generate stub classes or other proxy classes,
+ directly in binary form, or to dynamically modify classes at load time, i.e.,
+ just before they are loaded into the Java Virtual Machine.
+ .
+ ASM offers similar functionalities as BCEL or SERP, but is much smaller
+ (25KB instead of 350KB for BCEL and 150KB for SERP) and faster
+ than these tools (the overhead of a load time class transformation is on
+ the order of 60% with ASM, 700% or more with BCEL, and 1100% or more with
+ SERP). ASM was designed to be used in a dynamic and static way and was
+ therefore designed and implemented to be as small and as fast as possible.
+
+Package: libasm3-java-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends}
+Suggests: libasm3-java
+Description: Documentation for ASM, the Java(TM) bytecode manipulation framework
+ It can be used to dynamically generate stub classes or other proxy classes,
+ directly in binary form, or to dynamically modify classes at load time, i.e.,
+ just before they are loaded into a Java(TM) Virtual Machine.
+ .
+ This package includes the API Javadoc and examples.
--- asm3-3.2.orig/debian/compat
+++ asm3-3.2/debian/compat
@@ -0,0 +1 @@
+5
--- asm3-3.2.orig/debian/libasm3-java-doc.doc-base
+++ asm3-3.2/debian/libasm3-java-doc.doc-base
@@ -0,0 +1,10 @@
+Document: libasm3-java-doc
+Title: API Javadoc for ObjectWeb ASM Bytecode Manipulation Framework
+Author: ObjectWeb ASM Project Team
+Abstract: This is the API Javadoc provided by the Objectweb
+ ASM bytecode manipulation framework
+Section: Programming
+
+Format: HTML
+Index: /usr/share/doc/libasm3-java-doc/api/index.html
+Files: /usr/share/doc/libasm3-java-doc/api/*.html
--- asm3-3.2.orig/debian/poms/asm.pom
+++ asm3-3.2/debian/poms/asm.pom
@@ -0,0 +1,14 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <artifactId>asm-parent</artifactId>
+    <groupId>asm</groupId>
+    <version>3.2</version>
+  </parent>
+
+  <name>ASM Core</name>
+  <artifactId>asm</artifactId>
+  <packaging>jar</packaging>
+  
+</project>
--- asm3-3.2.orig/debian/poms/asm-tree.pom
+++ asm3-3.2/debian/poms/asm-tree.pom
@@ -0,0 +1,21 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <artifactId>asm-parent</artifactId>
+    <groupId>asm</groupId>
+    <version>3.2</version>
+  </parent>
+
+  <name>ASM Tree</name>
+  <artifactId>asm-tree</artifactId>
+  <packaging>jar</packaging>
+  
+  <dependencies>
+    <dependency>
+      <artifactId>asm</artifactId>
+      <groupId>asm</groupId>
+    </dependency>
+  </dependencies>
+
+</project>
--- asm3-3.2.orig/debian/poms/asm-commons.pom
+++ asm3-3.2/debian/poms/asm-commons.pom
@@ -0,0 +1,21 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <artifactId>asm-parent</artifactId>
+    <groupId>asm</groupId>
+    <version>3.2</version>
+  </parent>
+
+  <name>ASM Commons</name>
+  <artifactId>asm-commons</artifactId>
+  <packaging>jar</packaging>
+  
+  <dependencies>
+    <dependency>
+      <artifactId>asm-tree</artifactId>
+      <groupId>asm</groupId>
+    </dependency>
+  </dependencies>
+
+</project>
--- asm3-3.2.orig/debian/poms/asm-parent.pom
+++ asm3-3.2/debian/poms/asm-parent.pom
@@ -0,0 +1,129 @@
+<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>
+
+  <artifactId>asm-parent</artifactId>
+  <groupId>asm</groupId>
+  <version>3.2</version>
+  <packaging>pom</packaging>
+
+  <name>ASM</name>
+  <description>A very small and fast Java bytecode manipulation framework</description>
+  <url>http://asm.objectweb.org/</url>
+  
+  <organization>
+    <name>ObjectWeb</name>
+    <url>http://www.objectweb.org/</url>
+  </organization>
+  <inceptionYear>2000</inceptionYear>
+
+  <developers>
+    <developer>
+      <name>Eric Bruneton</name>
+      <id>ebruneton</id>
+      <email>Eric.Bruneton@rd.francetelecom.com</email>
+      <roles>
+        <role>Creator</role>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Eugene Kuleshov</name>
+      <id>eu</id>
+      <email>eu@javatx.org</email>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+  </developers>
+
+  <scm>
+    <connection>scm:cvs:pserver:anonymous@cvs.forge.objectweb.org:/cvsroot/asm:asm</connection>
+    <developerConnection>scm:cvs:ext:${maven.username}@cvs.forge.objectweb.org:/cvsroot/asm:asm</developerConnection>
+    <url>http://cvs.forge.objectweb.org/cgi-bin/viewcvs.cgi/asm/asm/</url>
+  </scm>
+  
+  <issueManagement>
+    <url>http://forge.objectweb.org/tracker/?group_id=23</url>
+  </issueManagement>
+
+  <dependencyManagement>
+    <dependencies>
+
+      <dependency>
+        <artifactId>asm</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+        <artifactId>asm-tree</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+        <artifactId>asm-analysis</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+        <artifactId>asm-commons</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+        <artifactId>asm-util</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+        <artifactId>asm-xml</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+
+  <mailingLists>
+    <mailingList>
+      <name>ASM Users List</name>
+      <subscribe>sympa@ow2.org?subject=subscribe%20asm</subscribe>
+      <unsubscribe>sympa@ow2.org?subject=unsubscribe%20asm</unsubscribe>
+      <post>asm@ow2.org</post>
+      <archive>http://www.ow2.org/wws/arc/asm</archive>
+    </mailingList>
+    <mailingList>
+      <name>ASM Team List</name>
+      <subscribe>sympa@ow2.org?subject=subscribe%20asm-team</subscribe>
+      <unsubscribe>sympa@ow2.org?subject=unsubscribe%20asm-team</unsubscribe>
+      <post>asm-team@ow2.org</post>
+      <archive>http://www.ow2.org/wws/arc/asm-team</archive>
+    </mailingList>
+  </mailingLists>
+
+  <distributionManagement>
+    <downloadUrl>http://mojo.codehaus.org/my-project</downloadUrl>
+    <repository>
+      <id>objectweb</id>
+      <uniqueVersion>false</uniqueVersion>
+      <name>ObjectWeb Maven 2.0 Repository</name>
+      <url>dav:https://maven.forge.objectweb.org:8002/maven2/</url>
+      <layout>default</layout>
+    </repository>
+    <snapshotRepository>
+      <id>objectweb.snapshots</id>
+      <uniqueVersion>false</uniqueVersion>
+      <name>ObjectWeb Maven 2.0 Snapshot Repository</name>
+      <url>dav:https://maven.forge.objectweb.org:8002/maven2-snapshot/</url>
+      <layout>default</layout>
+    </snapshotRepository>
+  </distributionManagement>
+
+</project>
--- asm3-3.2.orig/debian/poms/asm-analysis.pom
+++ asm3-3.2/debian/poms/asm-analysis.pom
@@ -0,0 +1,21 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <artifactId>asm-parent</artifactId>
+    <groupId>asm</groupId>
+    <version>3.2</version>
+  </parent>
+
+  <name>ASM Analysis</name>
+  <artifactId>asm-analysis</artifactId>
+  <packaging>jar</packaging>
+  
+  <dependencies>
+    <dependency>
+      <artifactId>asm-tree</artifactId>
+      <groupId>asm</groupId>
+    </dependency>
+  </dependencies>
+
+</project>
--- asm3-3.2.orig/debian/poms/asm-util.pom
+++ asm3-3.2/debian/poms/asm-util.pom
@@ -0,0 +1,21 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <artifactId>asm-parent</artifactId>
+    <groupId>asm</groupId>
+    <version>3.2</version>
+  </parent>
+
+  <name>ASM Util</name>
+  <artifactId>asm-util</artifactId>
+  <packaging>jar</packaging>
+  
+  <dependencies>
+    <dependency>
+      <artifactId>asm-tree</artifactId>
+      <groupId>asm</groupId>
+    </dependency>
+  </dependencies>
+
+</project>
--- asm3-3.2.orig/debian/poms/asm-xml.pom
+++ asm3-3.2/debian/poms/asm-xml.pom
@@ -0,0 +1,21 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <artifactId>asm-parent</artifactId>
+    <groupId>asm</groupId>
+    <version>3.2</version>
+  </parent>
+
+  <name>ASM XML</name>
+  <artifactId>asm-xml</artifactId>
+  <packaging>jar</packaging>
+  
+  <dependencies>
+    <dependency>
+      <artifactId>asm-util</artifactId>
+      <groupId>asm</groupId>
+    </dependency>
+  </dependencies>
+
+</project>
