re-import sources as agreed with the maintainer
This commit is contained in:
parent
6146be9b8d
commit
2a5afec411
15
.gitignore
vendored
15
.gitignore
vendored
@ -1 +1,14 @@
|
|||||||
SOURCES/objectweb-asm-6.2.tar.gz
|
/LICENSE-2.0.txt
|
||||||
|
/.project
|
||||||
|
/.build-*.log
|
||||||
|
/*.src.rpm
|
||||||
|
/noarch
|
||||||
|
/archive.tar.gz
|
||||||
|
/asm-6.2.pom
|
||||||
|
/asm-analysis-6.2.pom
|
||||||
|
/asm-commons-6.2.pom
|
||||||
|
/asm-test-6.2.pom
|
||||||
|
/asm-tree-6.2.pom
|
||||||
|
/asm-util-6.2.pom
|
||||||
|
/asm-xml-6.2.pom
|
||||||
|
/objectweb-asm-6.2.tar.gz
|
||||||
|
96
asm-6.2.pom
96
asm-6.2.pom
@ -1,96 +0,0 @@
|
|||||||
<?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</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>ebruneton@free.fr</email>
|
|
||||||
<roles>
|
|
||||||
<role>Creator</role>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>eu</id>
|
|
||||||
<name>Eugene Kuleshov</name>
|
|
||||||
<email>eu@javatx.org</email>
|
|
||||||
<roles>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>forax</id>
|
|
||||||
<name>Remi Forax</name>
|
|
||||||
<email>forax@univ-mlv.fr</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>asm@objectweb.org</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>asm-team@objectweb.org</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</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>
|
|
@ -1,102 +0,0 @@
|
|||||||
<?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</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>ebruneton@free.fr</email>
|
|
||||||
<roles>
|
|
||||||
<role>Creator</role>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>eu</id>
|
|
||||||
<name>Eugene Kuleshov</name>
|
|
||||||
<email>eu@javatx.org</email>
|
|
||||||
<roles>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>forax</id>
|
|
||||||
<name>Remi Forax</name>
|
|
||||||
<email>forax@univ-mlv.fr</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>asm@objectweb.org</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>asm-team@objectweb.org</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</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.ow2.asm</groupId>
|
|
||||||
<artifactId>asm-test</artifactId>
|
|
||||||
<version>6.2</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>
|
|
@ -1,120 +0,0 @@
|
|||||||
<?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</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>ebruneton@free.fr</email>
|
|
||||||
<roles>
|
|
||||||
<role>Creator</role>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>eu</id>
|
|
||||||
<name>Eugene Kuleshov</name>
|
|
||||||
<email>eu@javatx.org</email>
|
|
||||||
<roles>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>forax</id>
|
|
||||||
<name>Remi Forax</name>
|
|
||||||
<email>forax@univ-mlv.fr</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>asm@objectweb.org</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>asm-team@objectweb.org</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</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.ow2.asm</groupId>
|
|
||||||
<artifactId>asm-tree</artifactId>
|
|
||||||
<version>6.2</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.ow2.asm</groupId>
|
|
||||||
<artifactId>asm-analysis</artifactId>
|
|
||||||
<version>6.2</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.ow2.asm</groupId>
|
|
||||||
<artifactId>asm-util</artifactId>
|
|
||||||
<version>6.2</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.ow2.asm</groupId>
|
|
||||||
<artifactId>asm-test</artifactId>
|
|
||||||
<version>6.2</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>
|
|
@ -1,96 +0,0 @@
|
|||||||
<?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</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>ebruneton@free.fr</email>
|
|
||||||
<roles>
|
|
||||||
<role>Creator</role>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>eu</id>
|
|
||||||
<name>Eugene Kuleshov</name>
|
|
||||||
<email>eu@javatx.org</email>
|
|
||||||
<roles>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>forax</id>
|
|
||||||
<name>Remi Forax</name>
|
|
||||||
<email>forax@univ-mlv.fr</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>asm@objectweb.org</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>asm-team@objectweb.org</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</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</project>
|
|
102
asm-tree-6.2.pom
102
asm-tree-6.2.pom
@ -1,102 +0,0 @@
|
|||||||
<?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</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>ebruneton@free.fr</email>
|
|
||||||
<roles>
|
|
||||||
<role>Creator</role>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>eu</id>
|
|
||||||
<name>Eugene Kuleshov</name>
|
|
||||||
<email>eu@javatx.org</email>
|
|
||||||
<roles>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>forax</id>
|
|
||||||
<name>Remi Forax</name>
|
|
||||||
<email>forax@univ-mlv.fr</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>asm@objectweb.org</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>asm-team@objectweb.org</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</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.ow2.asm</groupId>
|
|
||||||
<artifactId>asm-test</artifactId>
|
|
||||||
<version>6.2</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>
|
|
120
asm-util-6.2.pom
120
asm-util-6.2.pom
@ -1,120 +0,0 @@
|
|||||||
<?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</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>ebruneton@free.fr</email>
|
|
||||||
<roles>
|
|
||||||
<role>Creator</role>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>eu</id>
|
|
||||||
<name>Eugene Kuleshov</name>
|
|
||||||
<email>eu@javatx.org</email>
|
|
||||||
<roles>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>forax</id>
|
|
||||||
<name>Remi Forax</name>
|
|
||||||
<email>forax@univ-mlv.fr</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>asm@objectweb.org</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>asm-team@objectweb.org</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</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.ow2.asm</groupId>
|
|
||||||
<artifactId>asm-tree</artifactId>
|
|
||||||
<version>6.2</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.ow2.asm</groupId>
|
|
||||||
<artifactId>asm-analysis</artifactId>
|
|
||||||
<version>6.2</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</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>
|
|
108
asm-xml-6.2.pom
108
asm-xml-6.2.pom
@ -1,108 +0,0 @@
|
|||||||
<?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</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>ebruneton@free.fr</email>
|
|
||||||
<roles>
|
|
||||||
<role>Creator</role>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>eu</id>
|
|
||||||
<name>Eugene Kuleshov</name>
|
|
||||||
<email>eu@javatx.org</email>
|
|
||||||
<roles>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>forax</id>
|
|
||||||
<name>Remi Forax</name>
|
|
||||||
<email>forax@univ-mlv.fr</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>asm@objectweb.org</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>asm-team@objectweb.org</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</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.ow2.asm</groupId>
|
|
||||||
<artifactId>asm-util</artifactId>
|
|
||||||
<version>6.2</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.ow2.asm</groupId>
|
|
||||||
<artifactId>asm-test</artifactId>
|
|
||||||
<version>6.2</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>
|
|
@ -1,8 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-9
|
|
||||||
decision_contexts:
|
|
||||||
- osci_compose_gate
|
|
||||||
rules:
|
|
||||||
# https://docs.engineering.redhat.com/display/RHELPLAN/Maven+Bootstrap+manual+gating+test
|
|
||||||
- !PassingTestCaseRule {test_case_name: manual.sst_cs_apps.maven.bootstrap}
|
|
0
generate-tarball.sh
Executable file → Normal file
0
generate-tarball.sh
Executable file → Normal file
7
sources
7
sources
@ -1 +1,8 @@
|
|||||||
SHA512 (objectweb-asm-6.2.tar.gz) = 52de20e11eb7f09bb47ef7394138c3fb425197c552786bf01e1f17331f2d32481e09ce2dd7267058647e29bcd4cbd0b4e7a2f2f3ee583945b18eefebbe407238
|
SHA512 (objectweb-asm-6.2.tar.gz) = 52de20e11eb7f09bb47ef7394138c3fb425197c552786bf01e1f17331f2d32481e09ce2dd7267058647e29bcd4cbd0b4e7a2f2f3ee583945b18eefebbe407238
|
||||||
|
SHA512 (asm-6.2.pom) = a6cebb211772ac4e13df2c519593da5ce0742bb88d928fc0c2cf9094141f88c4e88dbff29ca6f7b7b3749d0ada02ddc07c27c25493c6562be8dbcecf8a1fcad5
|
||||||
|
SHA512 (asm-analysis-6.2.pom) = 853742bb74ffae42314c162f624c8bb2a6149a3fc7763a9ac2ec2528f2381c5b84d7bfd41c61f89e59bd1650a06faf64d4124f6e0fa2cfd23554257949d6006b
|
||||||
|
SHA512 (asm-commons-6.2.pom) = c8033bde09af20576aee78237e555620f22de6fccfa9ab8840d7e09657f6d92cf2b467080c18207cf978c4a21af86eba120bd9a19430b264822b55fbfefa5e4f
|
||||||
|
SHA512 (asm-test-6.2.pom) = 3ef16fee0924ffd6da3bc3e715574cc6324250707980586beadd1bbee50bf9e709f251593e21c6637d56f5c90db9b7c599b5617f22e4da5bc87932fb610914da
|
||||||
|
SHA512 (asm-tree-6.2.pom) = cb8eec7d54024595cd2c13a7fb2e8fec9d04f83ccd0c50b71745fd51a6fb6f4e5e56521b86932f9da3e775dd2a0d3a1fe90c8bf2da3c2ee39453b1019e0efd43
|
||||||
|
SHA512 (asm-util-6.2.pom) = 0fcf4c8c0dc98b71cd53f1e2253a5f8293bfed4a673b2d231993365645326a27f8ded6a2879e3f9a341ffeb2cdbb5b8d659c789ee1bd3ed109676f505b61bc18
|
||||||
|
SHA512 (asm-xml-6.2.pom) = 078aa27a82b3513080e238830e6ac7cd09e5dd374587544ec55c56a9ddf53d050b660b2f61ed51ff7421fd6134ee0fdf686c4e6c55cbb9fc8f48123eb750c96c
|
||||||
|
Loading…
Reference in New Issue
Block a user