Hello community, here is the log from the commit of package objectweb-asm for openSUSE:Factory checked in at 2019-03-13 09:06:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/objectweb-asm (Old) and /work/SRC/openSUSE:Factory/.objectweb-asm.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "objectweb-asm" Wed Mar 13 09:06:39 2019 rev:21 rq:682092 version:6.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/objectweb-asm/objectweb-asm.changes 2018-12-14 20:44:55.133713799 +0100 +++ /work/SRC/openSUSE:Factory/.objectweb-asm.new.28833/objectweb-asm.changes 2019-03-13 09:06:41.183439649 +0100 @@ -1,0 +2,13 @@ +Wed Mar 6 10:17:42 UTC 2019 - Fridrich Strba <[email protected]> + +- Upgrade to version 6.2.1 +- Generate and customize the ant build system to be able to build + without gradle +- Removed patches: + * objectweb-asm-6.0-no_bnd.patch + * objectweb-asm-6.0-no_retrofit.patch + * objectweb-asm-6.0-sourcetarget.patch + * objectweb-asm-6.0-uberjar.patch + + not needed in this version + +------------------------------------------------------------------- Old: ---- objectweb-asm-6.0-no_bnd.patch objectweb-asm-6.0-no_retrofit.patch objectweb-asm-6.0-sourcetarget.patch objectweb-asm-6.0-uberjar.patch objectweb-asm-6.0.tar.xz New: ---- asm-6.2.1.pom asm-all.pom asm-analysis-6.2.1.pom asm-commons-6.2.1.pom asm-test-6.2.1.pom asm-tree-6.2.1.pom asm-util-6.2.1.pom asm-xml-6.2.1.pom objectweb-asm-6.2.1-build.tar.xz objectweb-asm-6.2.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ objectweb-asm.spec ++++++ --- /var/tmp/diff_new_pack.0eNWBz/_old 2019-03-13 09:06:41.863439579 +0100 +++ /var/tmp/diff_new_pack.0eNWBz/_new 2019-03-13 09:06:41.867439579 +0100 @@ -1,7 +1,7 @@ # # spec file for package objectweb-asm # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: objectweb-asm -Version: 6.0 +Version: 6.2.1 Release: 0 Summary: Java bytecode manipulation framework License: BSD-3-Clause @@ -25,18 +25,25 @@ URL: http://asm.objectweb.org/ # ./generate-tarball.sh Source0: %{name}-%{version}.tar.xz +Source1: %{name}-%{version}-build.tar.xz +Source2: http://repo1.maven.org/maven2/org/ow2/asm/asm/%{version}/asm-%{version}.pom +Source3: http://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/%{version}/asm-analysis-%{version}.pom +Source4: http://repo1.maven.org/maven2/org/ow2/asm/asm-commons/%{version}/asm-commons-%{version}.pom +Source5: http://repo1.maven.org/maven2/org/ow2/asm/asm-test/%{version}/asm-test-%{version}.pom +Source6: http://repo1.maven.org/maven2/org/ow2/asm/asm-tree/%{version}/asm-tree-%{version}.pom +Source7: http://repo1.maven.org/maven2/org/ow2/asm/asm-util/%{version}/asm-util-%{version}.pom +Source8: http://repo1.maven.org/maven2/org/ow2/asm/asm-xml/%{version}/asm-xml-%{version}.pom +# We still want to create an "all" uberjar, so this is a custom pom to generate it +# TODO: Fix other packages to no longer depend on "asm-all" so we can drop this +Source9: asm-all.pom # The source contains binary jars that cannot be verified for licensing and could be proprietary -Source1: generate-tarball.sh -Patch0: %{name}-%{version}-uberjar.patch -Patch1: %{name}-%{version}-sourcetarget.patch -Patch2: %{name}-%{version}-no_bnd.patch -Patch3: %{name}-%{version}-no_retrofit.patch +Source10: generate-tarball.sh BuildRequires: ant BuildRequires: fdupes BuildRequires: java-devel >= 1.8 BuildRequires: javapackages-local -BuildRequires: objectweb-anttask BuildRequires: xz +Obsoletes: %{name}-examples BuildArch: noarch %description @@ -81,75 +88,57 @@ smaller. %prep -%setup -q -%patch0 -p1 -%patch1 -p1 -%patch2 -p1 -rm -f src/org/objectweb/asm/tools/ModuleInfoBndPlugin.java -%patch3 -p1 -# wrong end of line encoding -find examples/ -type 'f' | xargs sed -i -e 's/.$//' -sed -i -e 's/.$//' README.txt LICENSE.txt -mkdir -p test/lib +%setup -q -a1 +cp %{SOURCE2} asm/pom.xml +cp %{SOURCE3} asm-analysis/pom.xml +cp %{SOURCE4} asm-commons/pom.xml +cp %{SOURCE5} asm-test/pom.xml +cp %{SOURCE6} asm-tree/pom.xml +cp %{SOURCE7} asm-util/pom.xml +cp %{SOURCE8} asm-xml/pom.xml +# Insert asm-all pom +mkdir -p asm-all +sed 's/@VERSION@/%{version}/g' %{SOURCE9} > asm-all/pom.xml + +for i in asm asm-analysis asm-commons asm-tree asm-util asm-xml asm-all; do + %pom_remove_parent ${i} +done %build -ant \ - -Dcompile.source=8 -Dcompile.target=8 \ - -Dobjectweb.ant.tasks.path=$(build-classpath objectweb-anttask) \ - dist.version jar jdoc +%ant \ + package javadoc %install -install -d -m 755 %{buildroot}/%{_javadir}/%{name} # jars -install -m 644 output/dist/lib/*jar %{buildroot}/%{_javadir}/%{name} -(cd %{buildroot}%{_javadir}/%{name} && for jar in *-%{version}.jar; do ln -sf ${jar} ${jar/-%{version}/}; done) - -install -m 644 output/dist/lib/all/asm-all-%{version}.jar \ - %{buildroot}%{_javadir}/%{name}-all-%{version}.jar -(cd %{buildroot}%{_javadir} && for jar in *-%{version}*; do ln -sf ${jar} ${jar/-%{version}/}; done) - -# pom -install -d -m 755 %{buildroot}%{_mavenpomdir}/%{name} - -install -pm 644 output/dist/lib/all/asm-all-%{version}.pom %{buildroot}%{_mavenpomdir}/%{name}-all-%{version}.pom -%add_maven_depmap %{name}-all-%{version}.pom %{name}-all-%{version}.jar - -install -pm 644 output/dist/lib/asm-%{version}.pom %{buildroot}%{_mavenpomdir}/%{name}/asm-%{version}.pom -%add_maven_depmap %{name}/asm-%{version}.pom %{name}/asm-%{version}.jar - -install -pm 644 output/dist/lib/asm-parent-%{version}.pom %{buildroot}%{_mavenpomdir}/%{name}/asm-parent-%{version}.pom -%add_maven_depmap %{name}/asm-parent-%{version}.pom +install -dm 0755 %{buildroot}/%{_javadir}/%{name} +for i in asm asm-analysis asm-commons asm-tree asm-util asm-xml asm-all; do + install -pm 0644 ${i}/target/${i}-%{version}.jar %{buildroot}/%{_javadir}/%{name}/${i}.jar +done -for i in analysis commons tree util xml; do - install -pm 644 output/dist/lib/asm-$i-%{version}.pom %{buildroot}%{_mavenpomdir}/%{name}/asm-$i-%{version}.pom - %add_maven_depmap %{name}/asm-$i-%{version}.pom %{name}/asm-$i-%{version}.jar +# poms +install -dm 0755 %{buildroot}%{_mavenpomdir}/%{name} +for i in asm asm-analysis asm-commons asm-tree asm-util asm-xml; do + install -pm 0644 ${i}/pom.xml %{buildroot}%{_mavenpomdir}/%{name}/${i}.pom + %add_maven_depmap %{name}/${i}.pom %{name}/${i}.jar done +install -pm 0644 asm-all/pom.xml %{buildroot}%{_mavenpomdir}/%{name}/asm-all.pom +%add_maven_depmap %{name}/asm-all.pom %{name}/asm-all.jar -a org.ow2.asm:asm-debug-all # javadoc -install -d -m 755 %{buildroot}/%{_javadocdir}/%{name}-%{version} -cp -pr output/dist/doc/javadoc/user/* %{buildroot}/%{_javadocdir}/%{name}-%{version} -ln -s %{name}-%{version} %{buildroot}/%{_javadocdir}/%{name} -%fdupes -s %{buildroot} -%fdupes -s examples/ +install -dm 0755 %{buildroot}/%{_javadocdir}/%{name} +for i in asm asm-analysis asm-commons asm-tree asm-util asm-xml; do + cp -pr ${i}/target/site/apidocs %{buildroot}/%{_javadocdir}/%{name}/${i} +done +%fdupes -s %{buildroot}/%{_javadocdir} -%files +# script +%jpackage_script org.objectweb.asm.xml.Processor "" "" %{name}/asm:%{name}/asm-util:%{name}/asm-xml %{name}-processor true + +%files -f .mfiles %license LICENSE.txt -%doc README.txt -%{_javadir}/%{name}-all*.jar -%{_javadir}/%{name} -%{_mavenpomdir}/%{name}-all-%{version}.pom -%{_mavenpomdir}/%{name} -%if %{defined _maven_repository} -%{_mavendepmapfragdir}/%{name} -%else -%{_datadir}/maven-metadata/%{name}.xml* -%endif +%{_bindir}/%{name}-processor %files javadoc -%{_javadocdir}/%{name}-%{version} %{_javadocdir}/%{name} -%files examples -%doc examples/* - %changelog ++++++ asm-6.2.1.pom ++++++ <?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ow2</groupId> <artifactId>ow2</artifactId> <version>1.5</version> </parent> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>6.2.1</version> <name>asm</name> <description>ASM, a very small and fast Java bytecode manipulation framework</description> <url>http://asm.ow2.org/</url> <inceptionYear>2000</inceptionYear> <organization> <name>OW2</name> <url>http://www.ow2.org/</url> </organization> <licenses> <license> <name>BSD</name> <url>http://asm.ow2.org/license.html</url> </license> </licenses> <developers> <developer> <id>ebruneton</id> <name>Eric Bruneton</name> <email>[email protected]</email> <roles> <role>Creator</role> <role>Java Developer</role> </roles> </developer> <developer> <id>eu</id> <name>Eugene Kuleshov</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> <developer> <id>forax</id> <name>Remi Forax</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> </developers> <mailingLists> <mailingList> <name>ASM Users List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm/</archive> </mailingList> <mailingList> <name>ASM Team List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm-team</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm-team/</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:https://gitlab.ow2.org/asm/asm/</connection> <developerConnection>scm:git:https://gitlab.ow2.org/asm/asm/</developerConnection> <url>https://gitlab.ow2.org/asm/asm/</url> </scm> <issueManagement> <url>https://gitlab.ow2.org/asm/asm/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-test</artifactId> <version>6.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> </dependencies> </project> ++++++ asm-all.pom ++++++ <?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ow2</groupId> <artifactId>ow2</artifactId> <version>1.5</version> </parent> <groupId>org.ow2.asm</groupId> <artifactId>asm-all</artifactId> <version>@VERSION@</version> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>@VERSION@</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-analysis</artifactId> <version>@VERSION@</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-commons</artifactId> <version>@VERSION@</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-tree</artifactId> <version>@VERSION@</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-util</artifactId> <version>@VERSION@</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-xml</artifactId> <version>@VERSION@</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project> ++++++ asm-analysis-6.2.1.pom ++++++ <?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ow2</groupId> <artifactId>ow2</artifactId> <version>1.5</version> </parent> <groupId>org.ow2.asm</groupId> <artifactId>asm-analysis</artifactId> <version>6.2.1</version> <name>asm-analysis</name> <description>Static code analysis API of ASM, a very small and fast Java bytecode manipulation framework</description> <url>http://asm.ow2.org/</url> <inceptionYear>2000</inceptionYear> <organization> <name>OW2</name> <url>http://www.ow2.org/</url> </organization> <licenses> <license> <name>BSD</name> <url>http://asm.ow2.org/license.html</url> </license> </licenses> <developers> <developer> <id>ebruneton</id> <name>Eric Bruneton</name> <email>[email protected]</email> <roles> <role>Creator</role> <role>Java Developer</role> </roles> </developer> <developer> <id>eu</id> <name>Eugene Kuleshov</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> <developer> <id>forax</id> <name>Remi Forax</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> </developers> <mailingLists> <mailingList> <name>ASM Users List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm/</archive> </mailingList> <mailingList> <name>ASM Team List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm-team</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm-team/</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:https://gitlab.ow2.org/asm/asm/</connection> <developerConnection>scm:git:https://gitlab.ow2.org/asm/asm/</developerConnection> <url>https://gitlab.ow2.org/asm/asm/</url> </scm> <issueManagement> <url>https://gitlab.ow2.org/asm/asm/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-tree</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-test</artifactId> <version>6.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> </dependencies> </project> ++++++ asm-commons-6.2.1.pom ++++++ <?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ow2</groupId> <artifactId>ow2</artifactId> <version>1.5</version> </parent> <groupId>org.ow2.asm</groupId> <artifactId>asm-commons</artifactId> <version>6.2.1</version> <name>asm-commons</name> <description>Usefull class adapters based on ASM, a very small and fast Java bytecode manipulation framework</description> <url>http://asm.ow2.org/</url> <inceptionYear>2000</inceptionYear> <organization> <name>OW2</name> <url>http://www.ow2.org/</url> </organization> <licenses> <license> <name>BSD</name> <url>http://asm.ow2.org/license.html</url> </license> </licenses> <developers> <developer> <id>ebruneton</id> <name>Eric Bruneton</name> <email>[email protected]</email> <roles> <role>Creator</role> <role>Java Developer</role> </roles> </developer> <developer> <id>eu</id> <name>Eugene Kuleshov</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> <developer> <id>forax</id> <name>Remi Forax</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> </developers> <mailingLists> <mailingList> <name>ASM Users List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm/</archive> </mailingList> <mailingList> <name>ASM Team List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm-team</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm-team/</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:https://gitlab.ow2.org/asm/asm/</connection> <developerConnection>scm:git:https://gitlab.ow2.org/asm/asm/</developerConnection> <url>https://gitlab.ow2.org/asm/asm/</url> </scm> <issueManagement> <url>https://gitlab.ow2.org/asm/asm/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-tree</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-analysis</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-util</artifactId> <version>6.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-test</artifactId> <version>6.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> </dependencies> </project> ++++++ asm-test-6.2.1.pom ++++++ <?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ow2</groupId> <artifactId>ow2</artifactId> <version>1.5</version> </parent> <groupId>org.ow2.asm</groupId> <artifactId>asm-test</artifactId> <version>6.2.1</version> <name>asm-test</name> <description>Utilities for testing ASM, a very small and fast Java bytecode manipulation framework</description> <url>http://asm.ow2.org/</url> <inceptionYear>2000</inceptionYear> <organization> <name>OW2</name> <url>http://www.ow2.org/</url> </organization> <licenses> <license> <name>BSD</name> <url>http://asm.ow2.org/license.html</url> </license> </licenses> <developers> <developer> <id>ebruneton</id> <name>Eric Bruneton</name> <email>[email protected]</email> <roles> <role>Creator</role> <role>Java Developer</role> </roles> </developer> <developer> <id>eu</id> <name>Eugene Kuleshov</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> <developer> <id>forax</id> <name>Remi Forax</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> </developers> <mailingLists> <mailingList> <name>ASM Users List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm/</archive> </mailingList> <mailingList> <name>ASM Team List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm-team</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm-team/</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:https://gitlab.ow2.org/asm/asm/</connection> <developerConnection>scm:git:https://gitlab.ow2.org/asm/asm/</developerConnection> <url>https://gitlab.ow2.org/asm/asm/</url> </scm> <issueManagement> <url>https://gitlab.ow2.org/asm/asm/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-test</artifactId> <version>6.2.1</version> <scope>test</scope> </dependency> </dependencies> </project> ++++++ asm-tree-6.2.1.pom ++++++ <?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ow2</groupId> <artifactId>ow2</artifactId> <version>1.5</version> </parent> <groupId>org.ow2.asm</groupId> <artifactId>asm-tree</artifactId> <version>6.2.1</version> <name>asm-tree</name> <description>Tree API of ASM, a very small and fast Java bytecode manipulation framework</description> <url>http://asm.ow2.org/</url> <inceptionYear>2000</inceptionYear> <organization> <name>OW2</name> <url>http://www.ow2.org/</url> </organization> <licenses> <license> <name>BSD</name> <url>http://asm.ow2.org/license.html</url> </license> </licenses> <developers> <developer> <id>ebruneton</id> <name>Eric Bruneton</name> <email>[email protected]</email> <roles> <role>Creator</role> <role>Java Developer</role> </roles> </developer> <developer> <id>eu</id> <name>Eugene Kuleshov</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> <developer> <id>forax</id> <name>Remi Forax</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> </developers> <mailingLists> <mailingList> <name>ASM Users List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm/</archive> </mailingList> <mailingList> <name>ASM Team List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm-team</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm-team/</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:https://gitlab.ow2.org/asm/asm/</connection> <developerConnection>scm:git:https://gitlab.ow2.org/asm/asm/</developerConnection> <url>https://gitlab.ow2.org/asm/asm/</url> </scm> <issueManagement> <url>https://gitlab.ow2.org/asm/asm/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-test</artifactId> <version>6.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> </dependencies> </project> ++++++ asm-util-6.2.1.pom ++++++ <?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ow2</groupId> <artifactId>ow2</artifactId> <version>1.5</version> </parent> <groupId>org.ow2.asm</groupId> <artifactId>asm-util</artifactId> <version>6.2.1</version> <name>asm-util</name> <description>Utilities for ASM, a very small and fast Java bytecode manipulation framework</description> <url>http://asm.ow2.org/</url> <inceptionYear>2000</inceptionYear> <organization> <name>OW2</name> <url>http://www.ow2.org/</url> </organization> <licenses> <license> <name>BSD</name> <url>http://asm.ow2.org/license.html</url> </license> </licenses> <developers> <developer> <id>ebruneton</id> <name>Eric Bruneton</name> <email>[email protected]</email> <roles> <role>Creator</role> <role>Java Developer</role> </roles> </developer> <developer> <id>eu</id> <name>Eugene Kuleshov</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> <developer> <id>forax</id> <name>Remi Forax</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> </developers> <mailingLists> <mailingList> <name>ASM Users List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm/</archive> </mailingList> <mailingList> <name>ASM Team List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm-team</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm-team/</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:https://gitlab.ow2.org/asm/asm/</connection> <developerConnection>scm:git:https://gitlab.ow2.org/asm/asm/</developerConnection> <url>https://gitlab.ow2.org/asm/asm/</url> </scm> <issueManagement> <url>https://gitlab.ow2.org/asm/asm/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-tree</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-analysis</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.codehaus.janino</groupId> <artifactId>janino</artifactId> <version>3.0.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-test</artifactId> <version>6.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> </dependencies> </project> ++++++ asm-xml-6.2.1.pom ++++++ <?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ow2</groupId> <artifactId>ow2</artifactId> <version>1.5</version> </parent> <groupId>org.ow2.asm</groupId> <artifactId>asm-xml</artifactId> <version>6.2.1</version> <name>asm-xml</name> <description>XML API of ASM, a very small and fast Java bytecode manipulation framework</description> <url>http://asm.ow2.org/</url> <inceptionYear>2000</inceptionYear> <organization> <name>OW2</name> <url>http://www.ow2.org/</url> </organization> <licenses> <license> <name>BSD</name> <url>http://asm.ow2.org/license.html</url> </license> </licenses> <developers> <developer> <id>ebruneton</id> <name>Eric Bruneton</name> <email>[email protected]</email> <roles> <role>Creator</role> <role>Java Developer</role> </roles> </developer> <developer> <id>eu</id> <name>Eugene Kuleshov</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> <developer> <id>forax</id> <name>Remi Forax</name> <email>[email protected]</email> <roles> <role>Java Developer</role> </roles> </developer> </developers> <mailingLists> <mailingList> <name>ASM Users List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm/</archive> </mailingList> <mailingList> <name>ASM Team List</name> <subscribe>https://mail.ow2.org/wws/subscribe/asm-team</subscribe> <post>[email protected]</post> <archive>https://mail.ow2.org/wws/arc/asm-team/</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:https://gitlab.ow2.org/asm/asm/</connection> <developerConnection>scm:git:https://gitlab.ow2.org/asm/asm/</developerConnection> <url>https://gitlab.ow2.org/asm/asm/</url> </scm> <issueManagement> <url>https://gitlab.ow2.org/asm/asm/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-util</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-test</artifactId> <version>6.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.1.0</version> <scope>test</scope> </dependency> </dependencies> </project> ++++++ objectweb-asm-6.0.tar.xz -> objectweb-asm-6.2.1.tar.xz ++++++ ++++ 201660 lines of diff (skipped)
