Hello community,

here is the log from the commit of package objectweb-asm for openSUSE:Factory 
checked in at 2019-12-02 11:33:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/objectweb-asm (Old)
 and      /work/SRC/openSUSE:Factory/.objectweb-asm.new.4691 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "objectweb-asm"

Mon Dec  2 11:33:32 2019 rev:22 rq:751513 version:7.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/objectweb-asm/objectweb-asm.changes      
2019-03-13 09:06:41.183439649 +0100
+++ /work/SRC/openSUSE:Factory/.objectweb-asm.new.4691/objectweb-asm.changes    
2019-12-02 11:38:05.478457525 +0100
@@ -1,0 +2,6 @@
+Mon Nov 25 07:55:52 UTC 2019 - Fridrich Strba <fst...@suse.com>
+
+- Upgrade to version 7.2
+  * Upstream dropped asm-xml submodule
+
+-------------------------------------------------------------------

Old:
----
  asm-6.2.1.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

New:
----
  asm-7.2.pom
  asm-analysis-7.2.pom
  asm-commons-7.2.pom
  asm-test-7.2.pom
  asm-tree-7.2.pom
  asm-util-7.2.pom
  objectweb-asm-7.2-build.tar.xz
  objectweb-asm-7.2.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ objectweb-asm.spec ++++++
--- /var/tmp/diff_new_pack.vcI6wD/_old  2019-12-02 11:38:06.334457704 +0100
+++ /var/tmp/diff_new_pack.vcI6wD/_new  2019-12-02 11:38:06.334457704 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package objectweb-asm
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # 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.2.1
+Version:        7.2
 Release:        0
 Summary:        Java bytecode manipulation framework
 License:        BSD-3-Clause
@@ -32,7 +32,6 @@
 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
@@ -95,15 +94,17 @@
 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
+for i in asm asm-analysis asm-commons asm-tree asm-util asm-all; do
   %pom_remove_parent ${i}
 done
 
+# We don't want to build modular jars
+find . -name module-info.java -print -delete
+
 %build
 %ant \
     package javadoc
@@ -111,13 +112,13 @@
 %install
 # jars
 install -dm 0755 %{buildroot}/%{_javadir}/%{name}
-for i in asm asm-analysis asm-commons asm-tree asm-util asm-xml asm-all; do
+for i in asm asm-analysis asm-commons asm-tree asm-util asm-all; do
   install -pm 0644 ${i}/target/${i}-%{version}.jar 
%{buildroot}/%{_javadir}/%{name}/${i}.jar
 done
 
 # poms
 install -dm 0755 %{buildroot}%{_mavenpomdir}/%{name}
-for i in asm asm-analysis asm-commons asm-tree asm-util asm-xml; do
+for i in asm asm-analysis asm-commons asm-tree asm-util; do
   install -pm 0644 ${i}/pom.xml %{buildroot}%{_mavenpomdir}/%{name}/${i}.pom
   %add_maven_depmap %{name}/${i}.pom %{name}/${i}.jar
 done
@@ -126,13 +127,13 @@
 
 # javadoc
 install -dm 0755 %{buildroot}/%{_javadocdir}/%{name}
-for i in asm asm-analysis asm-commons asm-tree asm-util asm-xml; do
+for i in asm asm-analysis asm-commons asm-tree asm-util; do
   cp -pr ${i}/target/site/apidocs %{buildroot}/%{_javadocdir}/%{name}/${i}
 done
 %fdupes -s %{buildroot}/%{_javadocdir}
 
 # script
-%jpackage_script org.objectweb.asm.xml.Processor "" "" 
%{name}/asm:%{name}/asm-util:%{name}/asm-xml %{name}-processor true
+%jpackage_script org.objectweb.asm.xml.Processor "" "" 
%{name}/asm:%{name}/asm-util %{name}-processor true
 
 %files -f .mfiles
 %license LICENSE.txt

++++++ asm-6.2.1.pom -> asm-7.2.pom ++++++
--- /work/SRC/openSUSE:Factory/objectweb-asm/asm-6.2.1.pom      2019-03-13 
09:06:40.799439689 +0100
+++ /work/SRC/openSUSE:Factory/.objectweb-asm.new.4691/asm-7.2.pom      
2019-12-02 11:38:05.270457481 +0100
@@ -9,10 +9,10 @@
   </parent>
   <groupId>org.ow2.asm</groupId>
   <artifactId>asm</artifactId>
-  <version>6.2.1</version>
+  <version>7.2</version>
   <name>asm</name>
   <description>ASM, a very small and fast Java bytecode manipulation 
framework</description>
-  <url>http://asm.ow2.org/</url>
+  <url>http://asm.ow2.io/</url>
   <inceptionYear>2000</inceptionYear>
   <organization>
     <name>OW2</name>
@@ -20,8 +20,8 @@
   </organization>
   <licenses>
     <license>
-      <name>BSD</name>
-      <url>http://asm.ow2.org/license.html</url>
+      <name>BSD-3-Clause</name>
+      <url>https://asm.ow2.io/license.html</url>
     </license>
   </licenses>
   <developers>
@@ -77,19 +77,19 @@
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-test</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-api</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-params</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

++++++ asm-all.pom ++++++
--- /var/tmp/diff_new_pack.vcI6wD/_old  2019-12-02 11:38:06.374457713 +0100
+++ /var/tmp/diff_new_pack.vcI6wD/_new  2019-12-02 11:38:06.374457713 +0100
@@ -36,11 +36,6 @@
       <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>

++++++ asm-analysis-6.2.1.pom -> asm-analysis-7.2.pom ++++++
--- /work/SRC/openSUSE:Factory/objectweb-asm/asm-analysis-6.2.1.pom     
2019-03-13 09:06:40.931439676 +0100
+++ /work/SRC/openSUSE:Factory/.objectweb-asm.new.4691/asm-analysis-7.2.pom     
2019-12-02 11:38:05.314457490 +0100
@@ -9,10 +9,10 @@
   </parent>
   <groupId>org.ow2.asm</groupId>
   <artifactId>asm-analysis</artifactId>
-  <version>6.2.1</version>
+  <version>7.2</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>
+  <url>http://asm.ow2.io/</url>
   <inceptionYear>2000</inceptionYear>
   <organization>
     <name>OW2</name>
@@ -20,8 +20,8 @@
   </organization>
   <licenses>
     <license>
-      <name>BSD</name>
-      <url>http://asm.ow2.org/license.html</url>
+      <name>BSD-3-Clause</name>
+      <url>https://asm.ow2.io/license.html</url>
     </license>
   </licenses>
   <developers>
@@ -77,25 +77,25 @@
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-tree</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-test</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-api</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-params</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

++++++ asm-commons-6.2.1.pom -> asm-commons-7.2.pom ++++++
--- /work/SRC/openSUSE:Factory/objectweb-asm/asm-commons-6.2.1.pom      
2019-03-13 09:06:40.959439673 +0100
+++ /work/SRC/openSUSE:Factory/.objectweb-asm.new.4691/asm-commons-7.2.pom      
2019-12-02 11:38:05.358457500 +0100
@@ -9,10 +9,10 @@
   </parent>
   <groupId>org.ow2.asm</groupId>
   <artifactId>asm-commons</artifactId>
-  <version>6.2.1</version>
+  <version>7.2</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>
+  <url>http://asm.ow2.io/</url>
   <inceptionYear>2000</inceptionYear>
   <organization>
     <name>OW2</name>
@@ -20,8 +20,8 @@
   </organization>
   <licenses>
     <license>
-      <name>BSD</name>
-      <url>http://asm.ow2.org/license.html</url>
+      <name>BSD-3-Clause</name>
+      <url>https://asm.ow2.io/license.html</url>
     </license>
   </licenses>
   <developers>
@@ -77,43 +77,43 @@
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-tree</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-analysis</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-util</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-test</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-api</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-params</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

++++++ asm-test-6.2.1.pom -> asm-test-7.2.pom ++++++
--- /work/SRC/openSUSE:Factory/objectweb-asm/asm-test-6.2.1.pom 2019-03-13 
09:06:40.999439668 +0100
+++ /work/SRC/openSUSE:Factory/.objectweb-asm.new.4691/asm-test-7.2.pom 
2019-12-02 11:38:05.374457503 +0100
@@ -9,10 +9,10 @@
   </parent>
   <groupId>org.ow2.asm</groupId>
   <artifactId>asm-test</artifactId>
-  <version>6.2.1</version>
+  <version>7.2</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>
+  <url>http://asm.ow2.io/</url>
   <inceptionYear>2000</inceptionYear>
   <organization>
     <name>OW2</name>
@@ -20,8 +20,8 @@
   </organization>
   <licenses>
     <license>
-      <name>BSD</name>
-      <url>http://asm.ow2.org/license.html</url>
+      <name>BSD-3-Clause</name>
+      <url>https://asm.ow2.io/license.html</url>
     </license>
   </licenses>
   <developers>
@@ -77,19 +77,19 @@
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-api</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-params</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-test</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

++++++ asm-tree-6.2.1.pom -> asm-tree-7.2.pom ++++++
--- /work/SRC/openSUSE:Factory/objectweb-asm/asm-tree-6.2.1.pom 2019-03-13 
09:06:41.075439661 +0100
+++ /work/SRC/openSUSE:Factory/.objectweb-asm.new.4691/asm-tree-7.2.pom 
2019-12-02 11:38:05.398457507 +0100
@@ -9,10 +9,10 @@
   </parent>
   <groupId>org.ow2.asm</groupId>
   <artifactId>asm-tree</artifactId>
-  <version>6.2.1</version>
+  <version>7.2</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>
+  <url>http://asm.ow2.io/</url>
   <inceptionYear>2000</inceptionYear>
   <organization>
     <name>OW2</name>
@@ -20,8 +20,8 @@
   </organization>
   <licenses>
     <license>
-      <name>BSD</name>
-      <url>http://asm.ow2.org/license.html</url>
+      <name>BSD-3-Clause</name>
+      <url>https://asm.ow2.io/license.html</url>
     </license>
   </licenses>
   <developers>
@@ -77,25 +77,25 @@
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-test</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-api</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-params</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

++++++ asm-util-6.2.1.pom -> asm-util-7.2.pom ++++++
--- /work/SRC/openSUSE:Factory/objectweb-asm/asm-util-6.2.1.pom 2019-03-13 
09:06:41.099439658 +0100
+++ /work/SRC/openSUSE:Factory/.objectweb-asm.new.4691/asm-util-7.2.pom 
2019-12-02 11:38:05.426457514 +0100
@@ -9,10 +9,10 @@
   </parent>
   <groupId>org.ow2.asm</groupId>
   <artifactId>asm-util</artifactId>
-  <version>6.2.1</version>
+  <version>7.2</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>
+  <url>http://asm.ow2.io/</url>
   <inceptionYear>2000</inceptionYear>
   <organization>
     <name>OW2</name>
@@ -20,8 +20,8 @@
   </organization>
   <licenses>
     <license>
-      <name>BSD</name>
-      <url>http://asm.ow2.org/license.html</url>
+      <name>BSD-3-Clause</name>
+      <url>https://asm.ow2.io/license.html</url>
     </license>
   </licenses>
   <developers>
@@ -77,43 +77,43 @@
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-tree</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-analysis</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.codehaus.janino</groupId>
       <artifactId>janino</artifactId>
-      <version>3.0.7</version>
+      <version>3.0.11</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-test</artifactId>
-      <version>6.2.1</version>
+      <version>7.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-api</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-params</artifactId>
-      <version>5.1.0</version>
+      <version>5.3.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

++++++ objectweb-asm-6.2.1-build.tar.xz -> objectweb-asm-7.2-build.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asm/build.xml new/asm/build.xml
--- old/asm/build.xml   2019-03-06 10:32:07.973091330 +0100
+++ new/asm/build.xml   2019-11-25 08:26:49.513810766 +0100
@@ -102,7 +102,7 @@
         <attribute name="Bundle-RequiredExecutionEnvironment" 
value="JavaSE-${compiler.target}"/>
         <attribute name="Bundle-SymbolicName" value="org.objectweb.asm"/>
         <attribute name="Bundle-Vendor" value="${project.organization.name}"/>
-        <attribute name="Bundle-Version" value="${project.version}"/>
+        <attribute name="Bundle-Version" value="${bundle.version}"/>
         <attribute name="Export-Package" 
value="org.objectweb.asm;version=&quot;${project.version}&quot;,org.objectweb.asm.signature;version=&quot;${project.version}&quot;"/>
         <attribute name="JavaPackages-ArtifactId" 
value="${project.artifactId}"/>
         <attribute name="JavaPackages-GroupId" value="${project.groupId}"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asm-all/build.xml new/asm-all/build.xml
--- old/asm-all/build.xml       2019-03-06 10:25:35.579062799 +0100
+++ new/asm-all/build.xml       2019-11-25 08:19:07.423315208 +0100
@@ -54,7 +54,6 @@
       <fileset dir="../asm-commons/target/classes/"/>
       <fileset dir="../asm-tree/target/classes/"/>
       <fileset dir="../asm-util/target/classes/"/>
-      <fileset dir="../asm-xml/target/classes/"/>
       <manifest>
         <attribute name="JavaPackages-ArtifactId" 
value="${project.artifactId}"/>
         <attribute name="JavaPackages-GroupId" value="${project.groupId}"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asm-analysis/build.xml new/asm-analysis/build.xml
--- old/asm-analysis/build.xml  2019-03-06 10:31:59.173045832 +0100
+++ new/asm-analysis/build.xml  2019-11-25 08:26:53.237830878 +0100
@@ -105,9 +105,9 @@
         <attribute name="Bundle-RequiredExecutionEnvironment" 
value="JavaSE-${compiler.target}"/>
         <attribute name="Bundle-SymbolicName" 
value="org.objectweb.asm.analysis"/>
         <attribute name="Bundle-Vendor" value="${project.organization.name}"/>
-        <attribute name="Bundle-Version" value="${project.version}"/>
+        <attribute name="Bundle-Version" value="${bundle.version}"/>
         <attribute name="Export-Package" 
value="org.objectweb.asm.tree.analysis;uses:=&quot;org.objectweb.asm,org.objectweb.asm.tree&quot;;version=&quot;${project.version}&quot;"/>
-        <attribute name="Import-Package" 
value="org.objectweb.asm;version=&quot;[6.2,7)&quot;,org.objectweb.asm.tree;version=&quot;[6.2,7)&quot;"/>
+        <attribute name="Import-Package" 
value="org.objectweb.asm;version=&quot;[7.2,8)&quot;,org.objectweb.asm.tree;version=&quot;[7.2,8)&quot;"/>
         <attribute name="JavaPackages-ArtifactId" 
value="${project.artifactId}"/>
         <attribute name="JavaPackages-GroupId" value="${project.groupId}"/>
         <attribute name="JavaPackages-Version" value="${project.version}"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asm-commons/build.xml new/asm-commons/build.xml
--- old/asm-commons/build.xml   2019-03-06 10:32:13.733121111 +0100
+++ new/asm-commons/build.xml   2019-11-25 08:26:46.113792402 +0100
@@ -106,9 +106,9 @@
         <attribute name="Bundle-RequiredExecutionEnvironment" 
value="JavaSE-${compiler.target}"/>
         <attribute name="Bundle-SymbolicName" 
value="org.objectweb.asm.commons"/>
         <attribute name="Bundle-Vendor" value="${project.organization.name}"/>
-        <attribute name="Bundle-Version" value="${project.version}"/>
+        <attribute name="Bundle-Version" value="${bundle.version}"/>
         <attribute name="Export-Package" 
value="org.objectweb.asm.commons;uses:=&quot;org.objectweb.asm,org.objectweb.asm.signature,org.objectweb.asm.tree&quot;;version=&quot;${project.version}&quot;"/>
-        <attribute name="Import-Package" 
value="org.objectweb.asm;version=&quot;[6.2,7)&quot;,org.objectweb.asm.signature;version=&quot;[6.2,7)&quot;,org.objectweb.asm.tree;version=&quot;[6.2,7)&quot;"/>
+        <attribute name="Import-Package" 
value="org.objectweb.asm;version=&quot;[7.2,8)&quot;,org.objectweb.asm.signature;version=&quot;[7.2,8)&quot;,org.objectweb.asm.tree;version=&quot;[7.2,8)&quot;"/>
         <attribute name="JavaPackages-ArtifactId" 
value="${project.artifactId}"/>
         <attribute name="JavaPackages-GroupId" value="${project.groupId}"/>
         <attribute name="JavaPackages-Version" value="${project.version}"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asm-tree/build.xml new/asm-tree/build.xml
--- old/asm-tree/build.xml      2019-03-06 10:32:18.045143405 +0100
+++ new/asm-tree/build.xml      2019-11-25 08:26:42.097770714 +0100
@@ -104,9 +104,9 @@
         <attribute name="Bundle-RequiredExecutionEnvironment" 
value="JavaSE-${compiler.target}"/>
         <attribute name="Bundle-SymbolicName" value="org.objectweb.asm.tree"/>
         <attribute name="Bundle-Vendor" value="${project.organization.name}"/>
-        <attribute name="Bundle-Version" value="${project.version}"/>
+        <attribute name="Bundle-Version" value="${bundle.version}"/>
         <attribute name="Export-Package" 
value="org.objectweb.asm.tree;uses:=&quot;org.objectweb.asm&quot;;version=&quot;${project.version}&quot;"/>
-        <attribute name="Import-Package" 
value="org.objectweb.asm;version=&quot;[6.2,7)&quot;"/>
+        <attribute name="Import-Package" 
value="org.objectweb.asm;version=&quot;[7.2,8)&quot;"/>
         <attribute name="JavaPackages-ArtifactId" 
value="${project.artifactId}"/>
         <attribute name="JavaPackages-GroupId" value="${project.groupId}"/>
         <attribute name="JavaPackages-Version" value="${project.version}"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asm-util/build.xml new/asm-util/build.xml
--- old/asm-util/build.xml      2019-03-06 10:32:22.029164000 +0100
+++ new/asm-util/build.xml      2019-11-25 08:26:37.941748270 +0100
@@ -106,9 +106,9 @@
         <attribute name="Bundle-RequiredExecutionEnvironment" 
value="JavaSE-${compiler.target}"/>
         <attribute name="Bundle-SymbolicName" value="org.objectweb.asm.util"/>
         <attribute name="Bundle-Vendor" value="${project.organization.name}"/>
-        <attribute name="Bundle-Version" value="${project.version}"/>
+        <attribute name="Bundle-Version" value="${bundle.version}"/>
         <attribute name="Export-Package" 
value="org.objectweb.asm.util;uses:=&quot;org.objectweb.asm,org.objectweb.asm.signature&quot;;version=&quot;${project.version}&quot;"/>
-        <attribute name="Import-Package" 
value="org.objectweb.asm;version=&quot;[6.2,7)&quot;,org.objectweb.asm.signature;version=&quot;[6.2,7)&quot;,org.objectweb.asm.tree;version=&quot;[6.2,7)&quot;,org.objectweb.asm.tree.analysis;version=&quot;[6.2,7)&quot;"/>
+        <attribute name="Import-Package" 
value="org.objectweb.asm;version=&quot;[7.2,8)&quot;,org.objectweb.asm.signature;version=&quot;[7.2,8)&quot;,org.objectweb.asm.tree;version=&quot;[7.2,8)&quot;,org.objectweb.asm.tree.analysis;version=&quot;[7.2,8)&quot;"/>
         <attribute name="JavaPackages-ArtifactId" 
value="${project.artifactId}"/>
         <attribute name="JavaPackages-GroupId" value="${project.groupId}"/>
         <attribute name="JavaPackages-Version" value="${project.version}"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asm-xml/build.xml new/asm-xml/build.xml
--- old/asm-xml/build.xml       2019-03-06 10:32:26.149185298 +0100
+++ new/asm-xml/build.xml       1970-01-01 01:00:00.000000000 +0100
@@ -1,127 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<project name="asm-xml" default="package" basedir=".">
-
-  <!-- ====================================================================== 
-->
-  <!-- Build environment properties                                           
-->
-  <!-- ====================================================================== 
-->
-
-  <include file="../common.xml"/>
-  <property file="build.properties"/>
-  
-  <property name="project.artifactId" value="asm-xml"/>
-
-  <property name="build.finalName" 
value="${project.artifactId}-${project.version}"/>
-  <property name="build.dir" value="target"/>
-  <property name="build.outputDir" value="${build.dir}/classes"/>
-  <property name="build.srcDir.0" value="src/main/java"/>
-  <property name="build.resourceDir.0" value="src/main/resources"/>
-  <property name="reporting.outputDirectory" value="${build.dir}/site"/>
-
-  <!-- ====================================================================== 
-->
-  <!-- Defining classpaths                                                    
-->
-  <!-- ====================================================================== 
-->
-
-  <path id="build.classpath">
-    <pathelement location="../asm/target/classes"/>
-    <pathelement location="../asm-util/target/classes"/>
-    <pathelement location="../asm-tree/target/classes"/>
-    <pathelement location="../asm-analysis/target/classes"/>
-  </path>
-
-  <!-- ====================================================================== 
-->
-  <!-- Cleaning up target                                                     
-->
-  <!-- ====================================================================== 
-->
-
-  <target name="clean" description="Clean the output directory">
-    <delete dir="${build.dir}"/>
-  </target>
-
-  <!-- ====================================================================== 
-->
-  <!-- Compilation target                                                     
-->
-  <!-- ====================================================================== 
-->
-
-  <target name="compile" description="Compile the code">
-    <mkdir dir="${build.outputDir}"/>
-    <javac destdir="${build.outputDir}" 
-           nowarn="false" 
-           debug="true" 
-           optimize="false" 
-           deprecation="true" 
-           target="${compiler.target}" 
-           verbose="false" 
-           fork="false" 
-           source="${compiler.source}">
-      <src>
-        <pathelement location="${build.srcDir.0}"/>
-      </src>
-      <classpath refid="build.classpath"/>
-    </javac>
-  </target>
-
-  <!-- ====================================================================== 
-->
-  <!-- Javadoc target                                                         
-->
-  <!-- ====================================================================== 
-->
-
-  <target name="javadoc" description="Generates the Javadoc of the 
application">
-    <javadoc sourcepath="${build.srcDir.0}" 
-             packagenames="*" 
-             destdir="${reporting.outputDirectory}/apidocs" 
-             access="protected" 
-             source="${compiler.source}" 
-             verbose="false" 
-             version="true" 
-             use="true" 
-             author="true" 
-             splitindex="false" 
-             nodeprecated="false" 
-             nodeprecatedlist="false" 
-             notree="false" 
-             noindex="false" 
-             nohelp="false" 
-             nonavbar="false" 
-             serialwarn="false" 
-             charset="ISO-8859-1" 
-             linksource="false" 
-             breakiterator="false">
-      <classpath refid="build.classpath"/>
-    </javadoc>
-  </target>
-
-  <!-- ====================================================================== 
-->
-  <!-- Package target                                                         
-->
-  <!-- ====================================================================== 
-->
-
-  <target name="package" depends="compile" description="Package the 
application">
-    <jar jarfile="${build.dir}/${build.finalName}.jar" 
-         compress="true" 
-         index="false" 
-         basedir="${build.outputDir}" 
-         excludes="**/package.html">
-      <manifest>
-        <attribute name="Bundle-Description" value="XML API of ASM, a very 
small and fast Java bytecode manipulation framework"/>
-        <attribute name="Bundle-DocURL" value="${project.organization.url}"/>
-        <attribute name="Bundle-License" value="${project.license.url}"/>
-        <attribute name="Bundle-ManifestVersion" value="2"/>
-        <attribute name="Bundle-Name" value="${project.artifactId}"/>
-        <attribute name="Bundle-RequiredExecutionEnvironment" 
value="JavaSE-${compiler.target}"/>
-        <attribute name="Bundle-SymbolicName" value="org.objectweb.asm.xml"/>
-        <attribute name="Bundle-Vendor" value="${project.organization.name}"/>
-        <attribute name="Bundle-Version" value="${project.version}"/>
-        <attribute name="Export-Package" 
value="org.objectweb.asm.xml;uses:=&quot;javax.xml.transform,org.objectweb.asm,org.xml.sax,org.xml.sax.helpers&quot;;version=&quot;${project.version}&quot;"/>
-        <attribute name="Import-Package" 
value="javax.xml.transform,javax.xml.transform.sax,javax.xml.transform.stream,org.objectweb.asm;version=&quot;[6.2,7)&quot;,org.objectweb.asm.util;version=&quot;[6.2,7)&quot;,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers"/>
-        <attribute name="JavaPackages-ArtifactId" 
value="${project.artifactId}"/>
-        <attribute name="JavaPackages-GroupId" value="${project.groupId}"/>
-        <attribute name="JavaPackages-Version" value="${project.version}"/>
-        <attribute name="Private-Package" value="org.objectweb.asm.xml"/>
-      </manifest>
-    </jar>     
-  </target>
-
-  <!-- ====================================================================== 
-->
-  <!-- A dummy target for the package named after the type it creates         
-->
-  <!-- ====================================================================== 
-->
-
-  <target name="jar" depends="package" description="Builds the jar for the 
application"/>
-
-</project>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/build.xml new/build.xml
--- old/build.xml       2019-03-06 10:08:47.573856218 +0100
+++ new/build.xml       2019-11-25 08:15:23.206102910 +0100
@@ -12,7 +12,6 @@
     <ant antfile="build.xml" dir="asm-analysis" target="clean"/>
     <ant antfile="build.xml" dir="asm-util" target="clean"/>
     <ant antfile="build.xml" dir="asm-commons" target="clean"/>
-    <ant antfile="build.xml" dir="asm-xml" target="clean"/>
     <ant antfile="build.xml" dir="asm-all" target="clean"/>
   </target>
 
@@ -26,7 +25,6 @@
     <ant antfile="build.xml" dir="asm-analysis" target="compile"/>
     <ant antfile="build.xml" dir="asm-util" target="compile"/>
     <ant antfile="build.xml" dir="asm-commons" target="compile"/>
-    <ant antfile="build.xml" dir="asm-xml" target="compile"/>
     <ant antfile="build.xml" dir="asm-all" target="compile"/>
   </target>
 
@@ -40,7 +38,6 @@
     <ant antfile="build.xml" dir="asm-analysis" target="javadoc"/>
     <ant antfile="build.xml" dir="asm-util" target="javadoc"/>
     <ant antfile="build.xml" dir="asm-commons" target="javadoc"/>
-    <ant antfile="build.xml" dir="asm-xml" target="javadoc"/>
     <ant antfile="build.xml" dir="asm-all" target="javadoc"/>
   </target>
 
@@ -54,7 +51,6 @@
     <ant antfile="build.xml" dir="asm-analysis" target="package"/>
     <ant antfile="build.xml" dir="asm-util" target="package"/>
     <ant antfile="build.xml" dir="asm-commons" target="package"/>
-    <ant antfile="build.xml" dir="asm-xml" target="package"/>
     <ant antfile="build.xml" dir="asm-all" target="package"/>
   </target>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/common.xml new/common.xml
--- old/common.xml      2019-03-06 10:13:54.095438674 +0100
+++ new/common.xml      2019-11-25 08:25:52.453502616 +0100
@@ -3,7 +3,7 @@
 <project name="common" basedir=".">
 
   <property file="build.properties"/>
-  <property name="project.version" value="6.2.1"/>
+  <property name="project.version" value="7.2"/>
   <property name="project.groupId" value="org.ow2.asm"/>
   
   <property name="project.organization.name" value="OW2"/>
@@ -12,5 +12,7 @@
 
   <property name="compiler.source" value="1.8"/>
   <property name="compiler.target" value="${compiler.source}"/>
+  
+  <property name="bundle.version" value="${project.version}.0"/>
 
 </project>

++++++ objectweb-asm-6.2.1-build.tar.xz -> objectweb-asm-7.2.tar.xz ++++++
++++ 111235 lines of diff (skipped)


Reply via email to