summaryrefslogtreecommitdiff
path: root/asm4/archive
diff options
context:
space:
mode:
Diffstat (limited to 'asm4/archive')
-rw-r--r--asm4/archive/README.txt60
-rw-r--r--asm4/archive/asm-all.bnd60
-rw-r--r--asm4/archive/asm-all.pom45
-rw-r--r--asm4/archive/asm-all.xml62
-rw-r--r--asm4/archive/asm-analysis.bnd58
-rw-r--r--asm4/archive/asm-analysis.pom51
-rw-r--r--asm4/archive/asm-analysis.xml56
-rw-r--r--asm4/archive/asm-commons.bnd58
-rw-r--r--asm4/archive/asm-commons.pom51
-rw-r--r--asm4/archive/asm-commons.xml56
-rw-r--r--asm4/archive/asm-debug-all.bnd60
-rw-r--r--asm4/archive/asm-debug-all.pom45
-rw-r--r--asm4/archive/asm-debug-all.xml62
-rw-r--r--asm4/archive/asm-parent.pom163
-rw-r--r--asm4/archive/asm-parent.xml46
-rw-r--r--asm4/archive/asm-tree.bnd58
-rw-r--r--asm4/archive/asm-tree.pom51
-rw-r--r--asm4/archive/asm-tree.xml56
-rw-r--r--asm4/archive/asm-util.bnd58
-rw-r--r--asm4/archive/asm-util.pom51
-rw-r--r--asm4/archive/asm-util.xml56
-rw-r--r--asm4/archive/asm-xml.bnd61
-rw-r--r--asm4/archive/asm-xml.pom51
-rw-r--r--asm4/archive/asm-xml.xml56
-rw-r--r--asm4/archive/asm.bnd56
-rw-r--r--asm4/archive/asm.pom44
-rw-r--r--asm4/archive/asm.xml56
27 files changed, 0 insertions, 1587 deletions
diff --git a/asm4/archive/README.txt b/asm4/archive/README.txt
deleted file mode 100644
index 35155ac..0000000
--- a/asm4/archive/README.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-*******************************************************************************
-* ASM: a very small and fast Java bytecode manipulation framework
-* Copyright (c) 2000-2011 INRIA, France Telecom
-* All rights reserved.
-*
-* 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 copyright holders nor the names of its
-* contributors may be used to endorse or promote products derived from
-* this software without specific prior written permission.
-*
-* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-* THE POSSIBILITY OF SUCH DAMAGE.
-*******************************************************************************
-
-This directory contains ant files to build the jars of the product.
-The following rules describe the convention to write such files:
-
-- An ant file must build only one jar file.
-
-- The name of the ant file must be the name of the jar it builds:
- org-foo-bar.xml must build org-foo-bar.jar.
-
-- Among the elements which are included into a jar, you must specify
- a manifest. It is adviced to store the manifest file in this directory.
- The manifest file can be shared by several jars. The name of the manifest
- file must be similar to the name of the jar file.
-
-- Only the default task is called on each ant file.
-
-- The jar file must be produced into the ${dist.lib} directory.
-
-Sample ant file:
-
-<project name="foo" default="dist">
- <target name="dist">
- <jar jarfile="${out.dist.lib}/foo.jar"
- basedir="${out.build}"
- manifest="${archive}/foo.mf">
-
- ...
-
- </jar>
- </target>
-</project>
diff --git a/asm4/archive/asm-all.bnd b/asm4/archive/asm-all.bnd
deleted file mode 100644
index b654794..0000000
--- a/asm4/archive/asm-all.bnd
+++ /dev/null
@@ -1,60 +0,0 @@
-###############################################################################
-#ASM: a very small and fast Java bytecode manipulation framework
-#Copyright (c) 2000-2011 INRIA, France Telecom
-#All rights reserved.
-#
-#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 copyright holders nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-#AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-#IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-#ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-#LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-#CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-#SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-#INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-#CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-#ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-#THE POSSIBILITY OF SUCH DAMAGE.
-###############################################################################
-
-
-Implementation-Title: ASM all classes
-Implementation-Version: ${product.artifact}
-Implementation-Vendor: France Telecom R&D
-
-Bundle-Name: ASM all classes with debug info
-Bundle-Vendor: France Telecom R&D
-Bundle-Version: ${product.artifact}
-Bundle-DocURL: http://asm.objectweb.org
-Bundle-SymbolicName: org.objectweb.asm.all
-
-Export-Package: \
- !org.objectweb.asm.optimizer.*,\
- org.objectweb.asm.*;version=${product.artifact}
-
-Import-Package: \
- javax.xml.transform.*;resolution:="optional",\
- org.xml.sax.*;resolution:="optional"
-
-Bundle-RequiredExecutionEnvironment: J2SE-1.3
-
--removeheaders:\
- ANNV,\
- DSTAMP,\
- FRAMESV,\
- RESIZEV,\
- SIGV,\
- TODAY,\
- TSTAMP,\
- WRITERV
diff --git a/asm4/archive/asm-all.pom b/asm4/archive/asm-all.pom
deleted file mode 100644
index d4f123b..0000000
--- a/asm4/archive/asm-all.pom
+++ /dev/null
@@ -1,45 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project>
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-parent</artifactId>
- <version>@product.artifact@</version>
- </parent>
-
- <name>ASM All</name>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-all</artifactId>
- <packaging>jar</packaging>
-
-</project>
diff --git a/asm4/archive/asm-all.xml b/asm4/archive/asm-all.xml
deleted file mode 100644
index 3d82865..0000000
--- a/asm4/archive/asm-all.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project name="asm-all" default="dist">
-
- <target name="dist" depends="build-jar,build-snapshot"/>
-
- <target name="build-jar">
- <mkdir dir="${out.dist.lib}/all"/>
- <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="${config}/biz.aQute.bnd.jar"/>
- <bnd
- classpath="${out.build}"
- eclipse="true"
- failok="false"
- exceptions="true"
- files="archive/asm-all.bnd"
- output="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.jar"/>
-
- <copy file="${archive}/asm-all.pom" toFile="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.pom"/>
- <replace file="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.pom" token="@product.name@" value="${ant.project.name}"/>
- <replace file="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.pom" token="@product.artifact@" value="${product.artifact}"/>
-
- <echo file="${out.dist.lib}/all/README.txt">It is highly recommended to use only the necessary ASM jars for your
-application instead of using the asm-all jar, unless you really need
-all ASM packages.</echo>
- </target>
-
- <target name="build-snapshot" if="product.snapshot">
- <mkdir dir="${out.dist.lib}/all"/>
- <copy file="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.jar" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.jar"/>
- <copy file="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.pom" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.pom"/>
- <echo file="${out.dist.lib}/all/${ant.project.name}-snapshot-version" message="${product.build.time}"/>
- </target>
-
-</project> \ No newline at end of file
diff --git a/asm4/archive/asm-analysis.bnd b/asm4/archive/asm-analysis.bnd
deleted file mode 100644
index a05c03b..0000000
--- a/asm4/archive/asm-analysis.bnd
+++ /dev/null
@@ -1,58 +0,0 @@
-###############################################################################
-#ASM: a very small and fast Java bytecode manipulation framework
-#Copyright (c) 2000-2011 INRIA, France Telecom
-#All rights reserved.
-#
-#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 copyright holders nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-#AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-#IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-#ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-#LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-#CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-#SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-#INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-#CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-#ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-#THE POSSIBILITY OF SUCH DAMAGE.
-###############################################################################
-
-
-Implementation-Title: ASM static code analysis framework
-Implementation-Version: ${product.artifact}
-Implementation-Vendor: France Telecom R&D
-
-Bundle-Name: ASM static code analysis framework
-Bundle-Vendor: France Telecom R&D
-Bundle-Version: ${product.artifact}
-Bundle-DocURL: http://asm.objectweb.org
-Bundle-SymbolicName: org.objectweb.asm.analysis
-
-Export-Package: \
- org.objectweb.asm.tree.analysis;version=${product.artifact}
-
-Import-Package: \
- org.objectweb.asm.*;version:="[${product.artifact},${product.artifact}]"
-
-Bundle-RequiredExecutionEnvironment: J2SE-1.3
-
--removeheaders:\
- ANNV,\
- DSTAMP,\
- FRAMESV,\
- RESIZEV,\
- SIGV,\
- TODAY,\
- TSTAMP,\
- WRITERV
diff --git a/asm4/archive/asm-analysis.pom b/asm4/archive/asm-analysis.pom
deleted file mode 100644
index 47273a1..0000000
--- a/asm4/archive/asm-analysis.pom
+++ /dev/null
@@ -1,51 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project>
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <artifactId>asm-parent</artifactId>
- <groupId>org.ow2.asm</groupId>
- <version>@product.artifact@</version>
- </parent>
-
- <name>ASM Analysis</name>
- <artifactId>asm-analysis</artifactId>
- <packaging>jar</packaging>
-
- <dependencies>
- <dependency>
- <artifactId>asm-tree</artifactId>
- <groupId>org.ow2.asm</groupId>
- </dependency>
- </dependencies>
-
-</project>
diff --git a/asm4/archive/asm-analysis.xml b/asm4/archive/asm-analysis.xml
deleted file mode 100644
index c3ecd65..0000000
--- a/asm4/archive/asm-analysis.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project name="asm-analysis" default="dist">
-
- <target name="dist" depends="build-jar,build-snapshot"/>
-
- <target name="build-jar">
- <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="${config}/biz.aQute.bnd.jar"/>
- <bnd
- classpath="${out.build}"
- eclipse="true"
- failok="false"
- exceptions="true"
- files="archive/asm-analysis.bnd"
- output="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar"/>
-
- <copy file="${archive}/asm-analysis.pom" toFile="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.name@" value="${ant.project.name}"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.artifact@" value="${product.artifact}"/>
- </target>
-
- <target name="build-snapshot" if="product.snapshot">
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.jar"/>
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.pom"/>
- <echo file="${out.dist.lib}/${ant.project.name}-snapshot-version" message="${product.build.time}"/>
- </target>
-
-</project>
diff --git a/asm4/archive/asm-commons.bnd b/asm4/archive/asm-commons.bnd
deleted file mode 100644
index fde93b2..0000000
--- a/asm4/archive/asm-commons.bnd
+++ /dev/null
@@ -1,58 +0,0 @@
-###############################################################################
-#ASM: a very small and fast Java bytecode manipulation framework
-#Copyright (c) 2000-2011 INRIA, France Telecom
-#All rights reserved.
-#
-#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 copyright holders nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-#AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-#IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-#ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-#LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-#CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-#SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-#INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-#CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-#ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-#THE POSSIBILITY OF SUCH DAMAGE.
-###############################################################################
-
-
-Implementation-Title: ASM commons classes
-Implementation-Version: ${product.artifact}
-Implementation-Vendor: France Telecom R&D
-
-Bundle-Name: ASM commons classes
-Bundle-Vendor: France Telecom R&D
-Bundle-Version: ${product.artifact}
-Bundle-DocURL: http://asm.objectweb.org
-Bundle-SymbolicName: org.objectweb.asm.commons
-
-Export-Package: \
- org.objectweb.asm.commons;version=${product.artifact}
-
-Import-Package: \
- org.objectweb.asm.*;version:="[${product.artifact},${product.artifact}]"
-
-Bundle-RequiredExecutionEnvironment: J2SE-1.3
-
--removeheaders:\
- ANNV,\
- DSTAMP,\
- FRAMESV,\
- RESIZEV,\
- SIGV,\
- TODAY,\
- TSTAMP,\
- WRITERV
diff --git a/asm4/archive/asm-commons.pom b/asm4/archive/asm-commons.pom
deleted file mode 100644
index eaccb73..0000000
--- a/asm4/archive/asm-commons.pom
+++ /dev/null
@@ -1,51 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project>
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <artifactId>asm-parent</artifactId>
- <groupId>org.ow2.asm</groupId>
- <version>@product.artifact@</version>
- </parent>
-
- <name>ASM Commons</name>
- <artifactId>asm-commons</artifactId>
- <packaging>jar</packaging>
-
- <dependencies>
- <dependency>
- <artifactId>asm-tree</artifactId>
- <groupId>org.ow2.asm</groupId>
- </dependency>
- </dependencies>
-
-</project>
diff --git a/asm4/archive/asm-commons.xml b/asm4/archive/asm-commons.xml
deleted file mode 100644
index 95129a7..0000000
--- a/asm4/archive/asm-commons.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project name="asm-commons" default="dist">
-
- <target name="dist" depends="build-jar,build-snapshot"/>
-
- <target name="build-jar">
- <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="${config}/biz.aQute.bnd.jar"/>
- <bnd
- classpath="${out.build}"
- eclipse="true"
- failok="false"
- exceptions="true"
- files="archive/asm-commons.bnd"
- output="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar"/>
-
- <copy file="${archive}/asm-commons.pom" toFile="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.name@" value="${ant.project.name}"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.artifact@" value="${product.artifact}"/>
- </target>
-
- <target name="build-snapshot" if="product.snapshot">
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.jar"/>
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.pom"/>
- <echo file="${out.dist.lib}/${ant.project.name}-snapshot-version" message="${product.build.time}"/>
- </target>
-
-</project>
diff --git a/asm4/archive/asm-debug-all.bnd b/asm4/archive/asm-debug-all.bnd
deleted file mode 100644
index 194e6a1..0000000
--- a/asm4/archive/asm-debug-all.bnd
+++ /dev/null
@@ -1,60 +0,0 @@
-###############################################################################
-#ASM: a very small and fast Java bytecode manipulation framework
-#Copyright (c) 2000-2011 INRIA, France Telecom
-#All rights reserved.
-#
-#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 copyright holders nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-#AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-#IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-#ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-#LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-#CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-#SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-#INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-#CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-#ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-#THE POSSIBILITY OF SUCH DAMAGE.
-###############################################################################
-
-
-Implementation-Title: ASM all classes with debug info
-Implementation-Version: ${product.artifact}
-Implementation-Vendor: France Telecom R&D
-
-Bundle-Name: ASM all classes with debug info
-Bundle-Vendor: France Telecom R&D
-Bundle-Version: ${product.artifact}
-Bundle-DocURL: http://asm.objectweb.org
-Bundle-SymbolicName: org.objectweb.asm.all.debug
-
-Export-Package: \
- !org.objectweb.asm.optimizer.*,\
- org.objectweb.asm.*;version=${product.artifact}
-
-Import-Package: \
- javax.xml.transform.*;resolution:="optional",\
- org.xml.sax.*;resolution:="optional"
-
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
-
--removeheaders:\
- ANNV,\
- DSTAMP,\
- FRAMESV,\
- RESIZEV,\
- SIGV,\
- TODAY,\
- TSTAMP,\
- WRITERV
diff --git a/asm4/archive/asm-debug-all.pom b/asm4/archive/asm-debug-all.pom
deleted file mode 100644
index ad88584..0000000
--- a/asm4/archive/asm-debug-all.pom
+++ /dev/null
@@ -1,45 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project>
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-parent</artifactId>
- <version>@product.artifact@</version>
- </parent>
-
- <name>ASM Debug All</name>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-debug-all</artifactId>
- <packaging>jar</packaging>
-
-</project>
diff --git a/asm4/archive/asm-debug-all.xml b/asm4/archive/asm-debug-all.xml
deleted file mode 100644
index 865e5e5..0000000
--- a/asm4/archive/asm-debug-all.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project name="asm-debug-all" default="dist">
-
- <target name="dist" depends="build-jar,build-snapshot"/>
-
- <target name="build-jar">
- <mkdir dir="${out.dist.lib}/all"/>
- <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="${config}/biz.aQute.bnd.jar"/>
- <bnd
- classpath="${out.build}/tmp"
- eclipse="true"
- failok="false"
- exceptions="true"
- files="archive/asm-debug-all.bnd"
- output="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.jar"/>
-
- <copy file="${archive}/asm-debug-all.pom" toFile="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.pom"/>
- <replace file="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.pom" token="@product.name@" value="${ant.project.name}"/>
- <replace file="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.pom" token="@product.artifact@" value="${product.artifact}"/>
-
- <echo file="${out.dist.lib}/all/README.txt">It is highly recommended to use only the necessary ASM jars for your
-application instead of using the asm-all jar, unless you really need
-all ASM packages.</echo>
- </target>
-
- <target name="build-snapshot" if="product.snapshot">
- <mkdir dir="${out.dist.lib}/all"/>
- <copy file="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.jar" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.jar"/>
- <copy file="${out.dist.lib}/all/${ant.project.name}-${product.artifact}.pom" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.pom"/>
- <echo file="${out.dist.lib}/all/${ant.project.name}-snapshot-version" message="${product.build.time}"/>
- </target>
-
-</project> \ No newline at end of file
diff --git a/asm4/archive/asm-parent.pom b/asm4/archive/asm-parent.pom
deleted file mode 100644
index 0f30c8e..0000000
--- a/asm4/archive/asm-parent.pom
+++ /dev/null
@@ -1,163 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<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">
-
- <parent>
- <artifactId>ow2</artifactId>
- <groupId>org.ow2</groupId>
- <version>1.3</version>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
-
- <artifactId>asm-parent</artifactId>
- <groupId>org.ow2.asm</groupId>
- <version>@product.artifact@</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>
-
- <licenses>
- <license>
- <name>BSD</name>
- <url>http://asm.objectweb.org/license.html</url>
- </license>
- </licenses>
-
- <developers>
- <developer>
- <name>Eric Bruneton</name>
- <id>ebruneton</id>
- <email>ebruneton@free.fr</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>
- <developer>
- <name>Remi Forax</name>
- <id>forax</id>
- <email>forax@univ-mlv.fr</email>
- <roles>
- <role>Java Developer</role>
- </roles>
- </developer>
- </developers>
-
- <scm>
- <connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/asm/trunk</connection>
- <developerConnection>scm:svn:svn+ssh://${maven.username}@svn.forge.objectweb.org/svnroot/asm/trunk</developerConnection>
- <url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/asm/trunk/</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@objectweb.org?subject=subscribe%20asm</subscribe>
- <unsubscribe>sympa@objectweb.org?subject=unsubscribe%20asm</unsubscribe>
- <post>asm@objectweb.org</post>
- <archive>http://www.objectweb.org/wws/arc/asm</archive>
- </mailingList>
- <mailingList>
- <name>ASM Team List</name>
- <subscribe>sympa@objectweb.org?subject=subscribe%20asm-team</subscribe>
- <unsubscribe>sympa@objectweb.org?subject=unsubscribe%20asm-team</unsubscribe>
- <post>asm-team@objectweb.org</post>
- <archive>http://www.objectweb.org/wws/arc/asm-team</archive>
- </mailingList>
- </mailingLists>
-
-</project>
diff --git a/asm4/archive/asm-parent.xml b/asm4/archive/asm-parent.xml
deleted file mode 100644
index 11381f7..0000000
--- a/asm4/archive/asm-parent.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project name="asm-parent" default="dist">
-
- <target name="dist" depends="build-jar,build-snapshot"/>
-
- <target name="build-jar">
- <copy file="${archive}/asm-parent.pom" toFile="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.name@" value="${ant.project.name}"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.artifact@" value="${product.artifact}"/>
- </target>
-
- <target name="build-snapshot" if="product.snapshot">
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.pom"/>
- <echo file="${out.dist.lib}/${ant.project.name}-snapshot-version" message="${product.build.time}"/>
- </target>
-
-</project>
diff --git a/asm4/archive/asm-tree.bnd b/asm4/archive/asm-tree.bnd
deleted file mode 100644
index d869914..0000000
--- a/asm4/archive/asm-tree.bnd
+++ /dev/null
@@ -1,58 +0,0 @@
-###############################################################################
-#ASM: a very small and fast Java bytecode manipulation framework
-#Copyright (c) 2000-2011 INRIA, France Telecom
-#All rights reserved.
-#
-#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 copyright holders nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-#AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-#IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-#ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-#LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-#CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-#SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-#INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-#CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-#ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-#THE POSSIBILITY OF SUCH DAMAGE.
-###############################################################################
-
-
-Implementation-Title: ASM Tree class visitor
-Implementation-Version: ${product.artifact}
-Implementation-Vendor: France Telecom R&D
-
-Bundle-Name: ASM Tree class visitor
-Bundle-Vendor: France Telecom R&D
-Bundle-Version: ${product.artifact}
-Bundle-DocURL: http://asm.objectweb.org
-Bundle-SymbolicName: org.objectweb.asm.tree
-
-Export-Package: \
- org.objectweb.asm.tree;version=${product.artifact}
-
-Import-Package: \
- org.objectweb.asm.*;version:="[${product.artifact},${product.artifact}]"
-
-Bundle-RequiredExecutionEnvironment: J2SE-1.3
-
--removeheaders:\
- ANNV,\
- DSTAMP,\
- FRAMESV,\
- RESIZEV,\
- SIGV,\
- TODAY,\
- TSTAMP,\
- WRITERV
diff --git a/asm4/archive/asm-tree.pom b/asm4/archive/asm-tree.pom
deleted file mode 100644
index 624120b..0000000
--- a/asm4/archive/asm-tree.pom
+++ /dev/null
@@ -1,51 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project>
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <artifactId>asm-parent</artifactId>
- <groupId>org.ow2.asm</groupId>
- <version>@product.artifact@</version>
- </parent>
-
- <name>ASM Tree</name>
- <artifactId>asm-tree</artifactId>
- <packaging>jar</packaging>
-
- <dependencies>
- <dependency>
- <artifactId>asm</artifactId>
- <groupId>org.ow2.asm</groupId>
- </dependency>
- </dependencies>
-
-</project>
diff --git a/asm4/archive/asm-tree.xml b/asm4/archive/asm-tree.xml
deleted file mode 100644
index 527a9ef..0000000
--- a/asm4/archive/asm-tree.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project name="asm-tree" default="dist">
-
- <target name="dist" depends="build-jar,build-snapshot"/>
-
- <target name="build-jar">
- <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="${config}/biz.aQute.bnd.jar"/>
- <bnd
- classpath="${out.build}"
- eclipse="true"
- failok="false"
- exceptions="true"
- files="archive/asm-tree.bnd"
- output="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar"/>
-
- <copy file="${archive}/asm-tree.pom" toFile="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.name@" value="${ant.project.name}"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.artifact@" value="${product.artifact}"/>
- </target>
-
- <target name="build-snapshot" if="product.snapshot">
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.jar"/>
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.pom"/>
- <echo file="${out.dist.lib}/${ant.project.name}-snapshot-version" message="${product.build.time}"/>
- </target>
-
-</project>
diff --git a/asm4/archive/asm-util.bnd b/asm4/archive/asm-util.bnd
deleted file mode 100644
index dfc4c99..0000000
--- a/asm4/archive/asm-util.bnd
+++ /dev/null
@@ -1,58 +0,0 @@
-###############################################################################
-#ASM: a very small and fast Java bytecode manipulation framework
-#Copyright (c) 2000-2011 INRIA, France Telecom
-#All rights reserved.
-#
-#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 copyright holders nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-#AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-#IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-#ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-#LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-#CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-#SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-#INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-#CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-#ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-#THE POSSIBILITY OF SUCH DAMAGE.
-###############################################################################
-
-
-Implementation-Title: ASM Utilities
-Implementation-Version: ${product.artifact}
-Implementation-Vendor: France Telecom R&D
-
-Bundle-Name: ASM Utilities
-Bundle-Vendor: France Telecom R&D
-Bundle-Version: ${product.artifact}
-Bundle-DocURL: http://asm.objectweb.org
-Bundle-SymbolicName: org.objectweb.asm.util
-
-Export-Package: \
- org.objectweb.asm.util;version=${product.artifact}
-
-Import-Package: \
- org.objectweb.asm.*;version:="[${product.artifact},${product.artifact}]"
-
-Bundle-RequiredExecutionEnvironment: J2SE-1.3
-
--removeheaders:\
- ANNV,\
- DSTAMP,\
- FRAMESV,\
- RESIZEV,\
- SIGV,\
- TODAY,\
- TSTAMP,\
- WRITERV
diff --git a/asm4/archive/asm-util.pom b/asm4/archive/asm-util.pom
deleted file mode 100644
index 065ddd8..0000000
--- a/asm4/archive/asm-util.pom
+++ /dev/null
@@ -1,51 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project>
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <artifactId>asm-parent</artifactId>
- <groupId>org.ow2.asm</groupId>
- <version>@product.artifact@</version>
- </parent>
-
- <name>ASM Util</name>
- <artifactId>asm-util</artifactId>
- <packaging>jar</packaging>
-
- <dependencies>
- <dependency>
- <artifactId>asm-tree</artifactId>
- <groupId>org.ow2.asm</groupId>
- </dependency>
- </dependencies>
-
-</project>
diff --git a/asm4/archive/asm-util.xml b/asm4/archive/asm-util.xml
deleted file mode 100644
index b20b783..0000000
--- a/asm4/archive/asm-util.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project name="asm-util" default="dist">
-
- <target name="dist" depends="build-jar,build-snapshot"/>
-
- <target name="build-jar">
- <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="${config}/biz.aQute.bnd.jar"/>
- <bnd
- classpath="${out.build}"
- eclipse="true"
- failok="false"
- exceptions="true"
- files="archive/asm-util.bnd"
- output="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar"/>
-
- <copy file="${archive}/asm-util.pom" toFile="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.name@" value="${ant.project.name}"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.artifact@" value="${product.artifact}"/>
- </target>
-
- <target name="build-snapshot" if="product.snapshot">
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.jar"/>
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.pom"/>
- <echo file="${out.dist.lib}/${ant.project.name}-snapshot-version" message="${product.build.time}"/>
- </target>
-
-</project>
diff --git a/asm4/archive/asm-xml.bnd b/asm4/archive/asm-xml.bnd
deleted file mode 100644
index 03e7439..0000000
--- a/asm4/archive/asm-xml.bnd
+++ /dev/null
@@ -1,61 +0,0 @@
-###############################################################################
-#ASM: a very small and fast Java bytecode manipulation framework
-#Copyright (c) 2000-2011 INRIA, France Telecom
-#All rights reserved.
-#
-#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 copyright holders nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-#AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-#IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-#ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-#LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-#CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-#SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-#INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-#CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-#ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-#THE POSSIBILITY OF SUCH DAMAGE.
-###############################################################################
-
-
-Implementation-Title: ASM XML classes
-Implementation-Version: ${product.artifact}
-Implementation-Vendor: Eugene Kuleshov
-Class-Path: asm-${product.artifact}.jar asm-util-${product.artifact}.jar asm-attrs-${product.artifact}.jar
-Main-Class: org.objectweb.asm.xml.Processor
-
-Bundle-Name: ASM xml classes
-Bundle-Vendor: France Telecom R&D
-Bundle-Version: ${product.artifact}
-Bundle-DocURL: http://asm.objectweb.org
-Bundle-SymbolicName: org.objectweb.asm.xml
-
-Export-Package: \
- org.objectweb.asm.xml;version=${product.artifact}
-
-Import-Package: \
- javax.xml.transform.*;resolution:="optional",\
- org.xml.sax.*;resolution:="optional"
-
-Bundle-RequiredExecutionEnvironment: J2SE-1.3
-
--removeheaders:\
- ANNV,\
- DSTAMP,\
- FRAMESV,\
- RESIZEV,\
- SIGV,\
- TODAY,\
- TSTAMP,\
- WRITERV
diff --git a/asm4/archive/asm-xml.pom b/asm4/archive/asm-xml.pom
deleted file mode 100644
index a95e658..0000000
--- a/asm4/archive/asm-xml.pom
+++ /dev/null
@@ -1,51 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project>
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <artifactId>asm-parent</artifactId>
- <groupId>org.ow2.asm</groupId>
- <version>@product.artifact@</version>
- </parent>
-
- <name>ASM XML</name>
- <artifactId>asm-xml</artifactId>
- <packaging>jar</packaging>
-
- <dependencies>
- <dependency>
- <artifactId>asm-util</artifactId>
- <groupId>org.ow2.asm</groupId>
- </dependency>
- </dependencies>
-
-</project>
diff --git a/asm4/archive/asm-xml.xml b/asm4/archive/asm-xml.xml
deleted file mode 100644
index c7a123d..0000000
--- a/asm4/archive/asm-xml.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project name="asm-xml" default="dist">
-
- <target name="dist" depends="build-jar,build-snapshot"/>
-
- <target name="build-jar">
- <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="${config}/biz.aQute.bnd.jar"/>
- <bnd
- classpath="${out.build}"
- eclipse="true"
- failok="false"
- exceptions="true"
- files="archive/asm-xml.bnd"
- output="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar"/>
-
- <copy file="${archive}/asm-xml.pom" toFile="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.name@" value="${ant.project.name}"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.artifact@" value="${product.artifact}"/>
- </target>
-
- <target name="build-snapshot" if="product.snapshot">
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.jar"/>
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.pom"/>
- <echo file="${out.dist.lib}/${ant.project.name}-snapshot-version" message="${product.build.time}"/>
- </target>
-
-</project>
diff --git a/asm4/archive/asm.bnd b/asm4/archive/asm.bnd
deleted file mode 100644
index d9abde8..0000000
--- a/asm4/archive/asm.bnd
+++ /dev/null
@@ -1,56 +0,0 @@
-###############################################################################
-#ASM: a very small and fast Java bytecode manipulation framework
-#Copyright (c) 2000-2011 INRIA, France Telecom
-#All rights reserved.
-#
-#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 copyright holders nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-#AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-#IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-#ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-#LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-#CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-#SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-#INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-#CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-#ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-#THE POSSIBILITY OF SUCH DAMAGE.
-###############################################################################
-
-
-Implementation-Title: ASM
-Implementation-Version: ${product.artifact}
-Implementation-Vendor: France Telecom R&D
-
-Bundle-Name: ASM
-Bundle-Vendor: France Telecom R&D
-Bundle-Version: ${product.artifact}
-Bundle-DocURL: http://asm.objectweb.org
-Bundle-SymbolicName: org.objectweb.asm
-
-Export-Package: \
- org.objectweb.asm;version=${product.artifact}, \
- org.objectweb.asm.signature;version=${product.artifact}
-
-Bundle-RequiredExecutionEnvironment: J2SE-1.3
-
--removeheaders:\
- ANNV,\
- DSTAMP,\
- FRAMESV,\
- RESIZEV,\
- SIGV,\
- TODAY,\
- TSTAMP,\
- WRITERV
diff --git a/asm4/archive/asm.pom b/asm4/archive/asm.pom
deleted file mode 100644
index 2f57353..0000000
--- a/asm4/archive/asm.pom
+++ /dev/null
@@ -1,44 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project>
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <artifactId>asm-parent</artifactId>
- <groupId>org.ow2.asm</groupId>
- <version>@product.artifact@</version>
- </parent>
-
- <name>ASM Core</name>
- <artifactId>asm</artifactId>
- <packaging>jar</packaging>
-
-</project>
diff --git a/asm4/archive/asm.xml b/asm4/archive/asm.xml
deleted file mode 100644
index 47e7b9e..0000000
--- a/asm4/archive/asm.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<!--
- ! ASM: a very small and fast Java bytecode manipulation framework
- ! Copyright (c) 2000-2011 INRIA, France Telecom
- ! All rights reserved.
- !
- ! 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 copyright holders nor the names of its
- ! contributors may be used to endorse or promote products derived from
- ! this software without specific prior written permission.
- !
- ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- ! THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<project name="asm" default="dist">
-
- <target name="dist" depends="build-jar,build-snapshot"/>
-
- <target name="build-jar">
- <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="${config}/biz.aQute.bnd.jar"/>
- <bnd
- classpath="${out.build}"
- eclipse="true"
- failok="false"
- exceptions="true"
- files="archive/asm.bnd"
- output="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar"/>
-
- <copy file="${archive}/asm.pom" toFile="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.name@" value="${ant.project.name}"/>
- <replace file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" token="@product.artifact@" value="${product.artifact}"/>
- </target>
-
- <target name="build-snapshot" if="product.snapshot">
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.jar" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.jar"/>
- <copy file="${out.dist.lib}/${ant.project.name}-${product.artifact}.pom" toFile="${out.dist.lib}/${ant.project.name}-SNAPSHOT.pom"/>
- <echo file="${out.dist.lib}/${ant.project.name}-snapshot-version" message="${product.build.time}"/>
- </target>
-
-</project>