test(cache): 修复CacheConfigTest边界值测试
- 修改 shouldVerifyCacheManager_withMaximumIntegerTtl 为 shouldVerifyCacheManager_withMaximumAllowedTtl - 使用正确的最大TTL值(10080分钟,7天)而不是 Integer.MAX_VALUE - 新增 shouldThrowException_whenTtlExceedsMaximum 测试验证边界检查 - 所有1266个测试用例通过 - 覆盖率: 指令81.89%, 行88.48%, 分支51.55% docs: 添加项目状态报告 - 生成 PROJECT_STATUS_REPORT.md 详细记录项目当前状态 - 包含质量指标、已完成功能、待办事项和技术债务
This commit is contained in:
4
.m2/org/ow2/asm/asm-analysis/8.0/_remote.repositories
Normal file
4
.m2/org/ow2/asm/asm-analysis/8.0/_remote.repositories
Normal file
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:39:21 CST 2026
|
||||
asm-analysis-8.0.jar>aliyunmaven=
|
||||
asm-analysis-8.0.pom>aliyunmaven=
|
||||
@@ -0,0 +1 @@
|
||||
57b12c6a9e14788f63ee3c6c0132fadcce1727d0
|
||||
102
.m2/org/ow2/asm/asm-analysis/8.0/asm-analysis-8.0.pom
Normal file
102
.m2/org/ow2/asm/asm-analysis/8.0/asm-analysis-8.0.pom
Normal file
@@ -0,0 +1,102 @@
|
||||
<?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>8.0</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.io/</url>
|
||||
<inceptionYear>2000</inceptionYear>
|
||||
<organization>
|
||||
<name>OW2</name>
|
||||
<url>http://www.ow2.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD-3-Clause</name>
|
||||
<url>https://asm.ow2.io/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>8.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-test</artifactId>
|
||||
<version>8.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<version>5.3.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-params</artifactId>
|
||||
<version>5.3.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
e9ef727d5390f9faefafa7bfab2fd4a18e1ebe49
|
||||
3
.m2/org/ow2/asm/asm-bom/9.5/_remote.repositories
Normal file
3
.m2/org/ow2/asm/asm-bom/9.5/_remote.repositories
Normal file
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:38:36 CST 2026
|
||||
asm-bom-9.5.pom>aliyunmaven=
|
||||
104
.m2/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom
Normal file
104
.m2/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom
Normal file
@@ -0,0 +1,104 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-bom</artifactId>
|
||||
<version>9.5</version>
|
||||
<name>asm-bom</name>
|
||||
<description>ASM, a very small and fast Java bytecode manipulation framework</description>
|
||||
<url>http://asm.ow2.io/</url>
|
||||
<inceptionYear>2000</inceptionYear>
|
||||
<organization>
|
||||
<name>OW2</name>
|
||||
<url>http://www.ow2.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD-3-Clause</name>
|
||||
<url>https://asm.ow2.io/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>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm</artifactId>
|
||||
<version>9.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-tree</artifactId>
|
||||
<version>9.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-analysis</artifactId>
|
||||
<version>9.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-util</artifactId>
|
||||
<version>9.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-commons</artifactId>
|
||||
<version>9.5</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<parent>
|
||||
<groupId>org.ow2</groupId>
|
||||
<artifactId>ow2</artifactId>
|
||||
<version>1.5.1</version>
|
||||
</parent>
|
||||
</project>
|
||||
1
.m2/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1
Normal file
1
.m2/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
2b5d6f54150ef4cbef69c3b09b281353f42e1366
|
||||
4
.m2/org/ow2/asm/asm-commons/8.0/_remote.repositories
Normal file
4
.m2/org/ow2/asm/asm-commons/8.0/_remote.repositories
Normal file
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:39:21 CST 2026
|
||||
asm-commons-8.0.pom>aliyunmaven=
|
||||
asm-commons-8.0.jar>aliyunmaven=
|
||||
1
.m2/org/ow2/asm/asm-commons/8.0/asm-commons-8.0.jar.sha1
Normal file
1
.m2/org/ow2/asm/asm-commons/8.0/asm-commons-8.0.jar.sha1
Normal file
@@ -0,0 +1 @@
|
||||
ea2231bdb3394bcca5989db7f7586f743829a9cb
|
||||
120
.m2/org/ow2/asm/asm-commons/8.0/asm-commons-8.0.pom
Normal file
120
.m2/org/ow2/asm/asm-commons/8.0/asm-commons-8.0.pom
Normal file
@@ -0,0 +1,120 @@
|
||||
<?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>8.0</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.io/</url>
|
||||
<inceptionYear>2000</inceptionYear>
|
||||
<organization>
|
||||
<name>OW2</name>
|
||||
<url>http://www.ow2.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD-3-Clause</name>
|
||||
<url>https://asm.ow2.io/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>8.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-tree</artifactId>
|
||||
<version>8.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-analysis</artifactId>
|
||||
<version>8.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-util</artifactId>
|
||||
<version>8.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-test</artifactId>
|
||||
<version>8.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<version>5.3.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-params</artifactId>
|
||||
<version>5.3.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
1
.m2/org/ow2/asm/asm-commons/8.0/asm-commons-8.0.pom.sha1
Normal file
1
.m2/org/ow2/asm/asm-commons/8.0/asm-commons-8.0.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
92946423017f753ede6d4470a763c4eff4a0e2f6
|
||||
4
.m2/org/ow2/asm/asm-commons/9.5/_remote.repositories
Normal file
4
.m2/org/ow2/asm/asm-commons/9.5/_remote.repositories
Normal file
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:39:08 CST 2026
|
||||
asm-commons-9.5.pom>aliyunmaven=
|
||||
asm-commons-9.5.jar>aliyunmaven=
|
||||
1
.m2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar.sha1
Normal file
1
.m2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar.sha1
Normal file
@@ -0,0 +1 @@
|
||||
19ab5b5800a3910d30d3a3e64fdb00fd0cb42de0
|
||||
89
.m2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.pom
Normal file
89
.m2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.pom
Normal file
@@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-commons</artifactId>
|
||||
<version>9.5</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.io/</url>
|
||||
<inceptionYear>2000</inceptionYear>
|
||||
<organization>
|
||||
<name>OW2</name>
|
||||
<url>http://www.ow2.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD-3-Clause</name>
|
||||
<url>https://asm.ow2.io/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>9.5</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-tree</artifactId>
|
||||
<version>9.5</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<parent>
|
||||
<groupId>org.ow2</groupId>
|
||||
<artifactId>ow2</artifactId>
|
||||
<version>1.5.1</version>
|
||||
</parent>
|
||||
</project>
|
||||
1
.m2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.pom.sha1
Normal file
1
.m2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
fa5a5be8aad46e084710303b8c2b2b6c65fe3c49
|
||||
4
.m2/org/ow2/asm/asm-tree/8.0/_remote.repositories
Normal file
4
.m2/org/ow2/asm/asm-tree/8.0/_remote.repositories
Normal file
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:39:21 CST 2026
|
||||
asm-tree-8.0.pom>aliyunmaven=
|
||||
asm-tree-8.0.jar>aliyunmaven=
|
||||
1
.m2/org/ow2/asm/asm-tree/8.0/asm-tree-8.0.jar.sha1
Normal file
1
.m2/org/ow2/asm/asm-tree/8.0/asm-tree-8.0.jar.sha1
Normal file
@@ -0,0 +1 @@
|
||||
7b31ca94da9f57334a5aed79b40f2b88c5ee9f4f
|
||||
102
.m2/org/ow2/asm/asm-tree/8.0/asm-tree-8.0.pom
Normal file
102
.m2/org/ow2/asm/asm-tree/8.0/asm-tree-8.0.pom
Normal file
@@ -0,0 +1,102 @@
|
||||
<?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>8.0</version>
|
||||
<name>asm-tree</name>
|
||||
<description>Tree API of ASM, a very small and fast Java bytecode manipulation framework</description>
|
||||
<url>http://asm.ow2.io/</url>
|
||||
<inceptionYear>2000</inceptionYear>
|
||||
<organization>
|
||||
<name>OW2</name>
|
||||
<url>http://www.ow2.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD-3-Clause</name>
|
||||
<url>https://asm.ow2.io/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>8.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-test</artifactId>
|
||||
<version>8.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<version>5.3.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-params</artifactId>
|
||||
<version>5.3.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
1
.m2/org/ow2/asm/asm-tree/8.0/asm-tree-8.0.pom.sha1
Normal file
1
.m2/org/ow2/asm/asm-tree/8.0/asm-tree-8.0.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
e80355a497077d7a16a47c449dfdd83626b0bf9c
|
||||
4
.m2/org/ow2/asm/asm-tree/9.5/_remote.repositories
Normal file
4
.m2/org/ow2/asm/asm-tree/9.5/_remote.repositories
Normal file
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:39:08 CST 2026
|
||||
asm-tree-9.5.pom>aliyunmaven=
|
||||
asm-tree-9.5.jar>aliyunmaven=
|
||||
1
.m2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar.sha1
Normal file
1
.m2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar.sha1
Normal file
@@ -0,0 +1 @@
|
||||
fd33c8b6373abaa675be407082fdfda35021254a
|
||||
83
.m2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.pom
Normal file
83
.m2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.pom
Normal file
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-tree</artifactId>
|
||||
<version>9.5</version>
|
||||
<name>asm-tree</name>
|
||||
<description>Tree API of ASM, a very small and fast Java bytecode manipulation framework</description>
|
||||
<url>http://asm.ow2.io/</url>
|
||||
<inceptionYear>2000</inceptionYear>
|
||||
<organization>
|
||||
<name>OW2</name>
|
||||
<url>http://www.ow2.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD-3-Clause</name>
|
||||
<url>https://asm.ow2.io/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>9.5</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<parent>
|
||||
<groupId>org.ow2</groupId>
|
||||
<artifactId>ow2</artifactId>
|
||||
<version>1.5.1</version>
|
||||
</parent>
|
||||
</project>
|
||||
1
.m2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.pom.sha1
Normal file
1
.m2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
3e9552b02a64dc1c887075d9ccbbaffa570d5539
|
||||
4
.m2/org/ow2/asm/asm-util/8.0/_remote.repositories
Normal file
4
.m2/org/ow2/asm/asm-util/8.0/_remote.repositories
Normal file
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:39:21 CST 2026
|
||||
asm-util-8.0.pom>aliyunmaven=
|
||||
asm-util-8.0.jar>aliyunmaven=
|
||||
1
.m2/org/ow2/asm/asm-util/8.0/asm-util-8.0.jar.sha1
Normal file
1
.m2/org/ow2/asm/asm-util/8.0/asm-util-8.0.jar.sha1
Normal file
@@ -0,0 +1 @@
|
||||
b21996293fd49851ed9017cfde3191e49f77fbd0
|
||||
120
.m2/org/ow2/asm/asm-util/8.0/asm-util-8.0.pom
Normal file
120
.m2/org/ow2/asm/asm-util/8.0/asm-util-8.0.pom
Normal file
@@ -0,0 +1,120 @@
|
||||
<?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>8.0</version>
|
||||
<name>asm-util</name>
|
||||
<description>Utilities for ASM, a very small and fast Java bytecode manipulation framework</description>
|
||||
<url>http://asm.ow2.io/</url>
|
||||
<inceptionYear>2000</inceptionYear>
|
||||
<organization>
|
||||
<name>OW2</name>
|
||||
<url>http://www.ow2.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD-3-Clause</name>
|
||||
<url>https://asm.ow2.io/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>8.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-tree</artifactId>
|
||||
<version>8.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-analysis</artifactId>
|
||||
<version>8.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.janino</groupId>
|
||||
<artifactId>janino</artifactId>
|
||||
<version>3.0.11</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-test</artifactId>
|
||||
<version>8.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<version>5.3.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-params</artifactId>
|
||||
<version>5.3.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
1
.m2/org/ow2/asm/asm-util/8.0/asm-util-8.0.pom.sha1
Normal file
1
.m2/org/ow2/asm/asm-util/8.0/asm-util-8.0.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
83a3d02ed5354a1516e10251f3b3be247c934e87
|
||||
4
.m2/org/ow2/asm/asm/8.0/_remote.repositories
Normal file
4
.m2/org/ow2/asm/asm/8.0/_remote.repositories
Normal file
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:39:21 CST 2026
|
||||
asm-8.0.jar>aliyunmaven=
|
||||
asm-8.0.pom>aliyunmaven=
|
||||
1
.m2/org/ow2/asm/asm/8.0/asm-8.0.jar.sha1
Normal file
1
.m2/org/ow2/asm/asm/8.0/asm-8.0.jar.sha1
Normal file
@@ -0,0 +1 @@
|
||||
d1a17d07c60e9e82c8b31b1d8f9ca98726418db4
|
||||
96
.m2/org/ow2/asm/asm/8.0/asm-8.0.pom
Normal file
96
.m2/org/ow2/asm/asm/8.0/asm-8.0.pom
Normal file
@@ -0,0 +1,96 @@
|
||||
<?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>8.0</version>
|
||||
<name>asm</name>
|
||||
<description>ASM, a very small and fast Java bytecode manipulation framework</description>
|
||||
<url>http://asm.ow2.io/</url>
|
||||
<inceptionYear>2000</inceptionYear>
|
||||
<organization>
|
||||
<name>OW2</name>
|
||||
<url>http://www.ow2.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD-3-Clause</name>
|
||||
<url>https://asm.ow2.io/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>8.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<version>5.3.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-params</artifactId>
|
||||
<version>5.3.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
1
.m2/org/ow2/asm/asm/8.0/asm-8.0.pom.sha1
Normal file
1
.m2/org/ow2/asm/asm/8.0/asm-8.0.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
9498cc1db19c6c8492581795ce3373af0978b105
|
||||
4
.m2/org/ow2/asm/asm/9.3/_remote.repositories
Normal file
4
.m2/org/ow2/asm/asm/9.3/_remote.repositories
Normal file
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:39:05 CST 2026
|
||||
asm-9.3.jar>aliyunmaven=
|
||||
asm-9.3.pom>aliyunmaven=
|
||||
1
.m2/org/ow2/asm/asm/9.3/asm-9.3.jar.sha1
Normal file
1
.m2/org/ow2/asm/asm/9.3/asm-9.3.jar.sha1
Normal file
@@ -0,0 +1 @@
|
||||
8e6300ef51c1d801a7ed62d07cd221aca3a90640
|
||||
75
.m2/org/ow2/asm/asm/9.3/asm-9.3.pom
Normal file
75
.m2/org/ow2/asm/asm/9.3/asm-9.3.pom
Normal file
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm</artifactId>
|
||||
<version>9.3</version>
|
||||
<name>asm</name>
|
||||
<description>ASM, a very small and fast Java bytecode manipulation framework</description>
|
||||
<url>http://asm.ow2.io/</url>
|
||||
<inceptionYear>2000</inceptionYear>
|
||||
<organization>
|
||||
<name>OW2</name>
|
||||
<url>http://www.ow2.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD-3-Clause</name>
|
||||
<url>https://asm.ow2.io/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>
|
||||
<parent>
|
||||
<groupId>org.ow2</groupId>
|
||||
<artifactId>ow2</artifactId>
|
||||
<version>1.5</version>
|
||||
</parent>
|
||||
</project>
|
||||
1
.m2/org/ow2/asm/asm/9.3/asm-9.3.pom.sha1
Normal file
1
.m2/org/ow2/asm/asm/9.3/asm-9.3.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
617c35341920b1af4ebdf3dd347965fe725b19e0
|
||||
4
.m2/org/ow2/asm/asm/9.4/_remote.repositories
Normal file
4
.m2/org/ow2/asm/asm/9.4/_remote.repositories
Normal file
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:39:11 CST 2026
|
||||
asm-9.4.pom>aliyunmaven=
|
||||
asm-9.4.jar>aliyunmaven=
|
||||
1
.m2/org/ow2/asm/asm/9.4/asm-9.4.jar.sha1
Normal file
1
.m2/org/ow2/asm/asm/9.4/asm-9.4.jar.sha1
Normal file
@@ -0,0 +1 @@
|
||||
b4e0e2d2e023aa317b7cfcfc916377ea348e07d1
|
||||
75
.m2/org/ow2/asm/asm/9.4/asm-9.4.pom
Normal file
75
.m2/org/ow2/asm/asm/9.4/asm-9.4.pom
Normal file
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm</artifactId>
|
||||
<version>9.4</version>
|
||||
<name>asm</name>
|
||||
<description>ASM, a very small and fast Java bytecode manipulation framework</description>
|
||||
<url>http://asm.ow2.io/</url>
|
||||
<inceptionYear>2000</inceptionYear>
|
||||
<organization>
|
||||
<name>OW2</name>
|
||||
<url>http://www.ow2.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD-3-Clause</name>
|
||||
<url>https://asm.ow2.io/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>
|
||||
<parent>
|
||||
<groupId>org.ow2</groupId>
|
||||
<artifactId>ow2</artifactId>
|
||||
<version>1.5.1</version>
|
||||
</parent>
|
||||
</project>
|
||||
1
.m2/org/ow2/asm/asm/9.4/asm-9.4.pom.sha1
Normal file
1
.m2/org/ow2/asm/asm/9.4/asm-9.4.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
91bffd75aa63f199ab1a97746ae563d6099890b9
|
||||
4
.m2/org/ow2/asm/asm/9.5/_remote.repositories
Normal file
4
.m2/org/ow2/asm/asm/9.5/_remote.repositories
Normal file
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:39:08 CST 2026
|
||||
asm-9.5.pom>aliyunmaven=
|
||||
asm-9.5.jar>aliyunmaven=
|
||||
1
.m2/org/ow2/asm/asm/9.5/asm-9.5.jar.sha1
Normal file
1
.m2/org/ow2/asm/asm/9.5/asm-9.5.jar.sha1
Normal file
@@ -0,0 +1 @@
|
||||
dc6ea1875f4d64fbc85e1691c95b96a3d8569c90
|
||||
75
.m2/org/ow2/asm/asm/9.5/asm-9.5.pom
Normal file
75
.m2/org/ow2/asm/asm/9.5/asm-9.5.pom
Normal file
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm</artifactId>
|
||||
<version>9.5</version>
|
||||
<name>asm</name>
|
||||
<description>ASM, a very small and fast Java bytecode manipulation framework</description>
|
||||
<url>http://asm.ow2.io/</url>
|
||||
<inceptionYear>2000</inceptionYear>
|
||||
<organization>
|
||||
<name>OW2</name>
|
||||
<url>http://www.ow2.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD-3-Clause</name>
|
||||
<url>https://asm.ow2.io/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>
|
||||
<parent>
|
||||
<groupId>org.ow2</groupId>
|
||||
<artifactId>ow2</artifactId>
|
||||
<version>1.5.1</version>
|
||||
</parent>
|
||||
</project>
|
||||
1
.m2/org/ow2/asm/asm/9.5/asm-9.5.pom.sha1
Normal file
1
.m2/org/ow2/asm/asm/9.5/asm-9.5.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
29d57fb2366b772c530508ebdeea81b61a4657c1
|
||||
3
.m2/org/ow2/ow2/1.5.1/_remote.repositories
Normal file
3
.m2/org/ow2/ow2/1.5.1/_remote.repositories
Normal file
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:38:36 CST 2026
|
||||
ow2-1.5.1.pom>aliyunmaven=
|
||||
309
.m2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom
Normal file
309
.m2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom
Normal file
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2011-2012 Bull S.A.S.
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.ow2</groupId>
|
||||
<artifactId>ow2</artifactId>
|
||||
<version>1.5.1</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>OW2 Consortium</name>
|
||||
<description>
|
||||
The OW2 Consortium is an open source community committed to making available to everyone
|
||||
the best and most reliable middleware technology, including generic enterprise applications
|
||||
and cloud computing technologies. The mission of the OW2 Consortium is to
|
||||
i) develop open source code for middleware, generic enterprise applications and cloud computing and
|
||||
ii) to foster a vibrant community and business ecosystem.
|
||||
</description>
|
||||
|
||||
<!-- License of this POM -->
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<!-- Consortium description -->
|
||||
<organization>
|
||||
<name>OW2 Consortium</name>
|
||||
<url>http://www.ow2.org</url>
|
||||
</organization>
|
||||
|
||||
<!-- TODO Needs to be changed in the future
|
||||
with a reference to a page explaining how to do releases -->
|
||||
<url>http://www.ow2.org</url>
|
||||
|
||||
<!-- Who worked on this project ? -->
|
||||
<developers>
|
||||
<developer>
|
||||
<id>sauthieg</id>
|
||||
<name>Guillaume Sauthier</name>
|
||||
<email>guillaume.sauthier@ow2.org</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<properties>
|
||||
<!-- OW2 Logo can be referred using the '${organization.logo}' property -->
|
||||
<organization.logo>
|
||||
http://www.ow2.org/xwiki/bin/download/NewsEvents/MarketingResources/ow2_logo_small_transp.png
|
||||
</organization.logo>
|
||||
<!-- Avoid the annoying warning -->
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
||||
<!-- Use properties so they could be overridden if needed -->
|
||||
<ow2DistMgmtSnapshotsUrl>https://repository.ow2.org/nexus/content/repositories/snapshots</ow2DistMgmtSnapshotsUrl>
|
||||
<ow2DistMgmtReleasesUrl>https://repository.ow2.org/nexus/service/local/staging/deploy/maven2</ow2DistMgmtReleasesUrl>
|
||||
<ow2SourceAssemblyDescriptorRef>source-release</ow2SourceAssemblyDescriptorRef>
|
||||
<ow2ReleaseProfiles>ow2-release</ow2ReleaseProfiles>
|
||||
<maven-source-assemblies.version>1.0.1</maven-source-assemblies.version>
|
||||
|
||||
<!-- Used plugins default versions (make them overridable) -->
|
||||
<maven-assembly-plugin.version>2.3</maven-assembly-plugin.version>
|
||||
<maven-gpg-plugin.version>1.4</maven-gpg-plugin.version>
|
||||
<maven-javadoc-plugin.version>2.8.1</maven-javadoc-plugin.version>
|
||||
<maven-source-plugin.version>2.1.2</maven-source-plugin.version>
|
||||
<maven-release-plugin.version>2.3.2</maven-release-plugin.version>
|
||||
</properties>
|
||||
|
||||
<!-- Source Code Management -->
|
||||
<scm>
|
||||
<connection>scm:git:git@gitlab.ow2.org:ow2-lifecycle/ow2-parent-pom.git</connection>
|
||||
<developerConnection>scm:git:git@gitlab.ow2.org:ow2-lifecycle/ow2-parent-pom.git</developerConnection>
|
||||
<url>https://gitlab.ow2.org/ow2-lifecycle/ow2-parent-pom/</url>
|
||||
<tag>1.5.1</tag>
|
||||
</scm>
|
||||
|
||||
<!-- Distribution -->
|
||||
<distributionManagement>
|
||||
|
||||
<!-- Site omitted - each project must provide their own -->
|
||||
|
||||
<!-- Release Repository (with staging):
|
||||
Refer to this server in your settings.xml using the 'ow2.release' ID -->
|
||||
<repository>
|
||||
<id>ow2.release</id>
|
||||
<name>OW2 Maven Releases Repository</name>
|
||||
<url>${ow2DistMgmtReleasesUrl}</url>
|
||||
</repository>
|
||||
|
||||
<!-- Snapshots Repository:
|
||||
Refer to this server in your settings.xml using the 'ow2.snapshot' ID -->
|
||||
<snapshotRepository>
|
||||
<id>ow2.snapshot</id>
|
||||
<name>OW2 Maven Snapshots Repository</name>
|
||||
<url>${ow2DistMgmtSnapshotsUrl}</url>
|
||||
</snapshotRepository>
|
||||
</distributionManagement>
|
||||
|
||||
<!-- ============================================================================================
|
||||
- TODO Remove the snapshots repositories from the super pom
|
||||
- Explanation:
|
||||
- http://www.sonatype.com/people/2010/03/why-external-repos-are-being-phased-out-of-central/
|
||||
============================================================================================ -->
|
||||
|
||||
<!-- Plugin Repositories -->
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
- Used to search plugins, plugins dependencies and build extensions
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
||||
<pluginRepositories>
|
||||
|
||||
<!-- Only list the snapshot repository here since the
|
||||
main repository is synchronized to central -->
|
||||
<pluginRepository>
|
||||
<id>ow2-plugin-snapshot</id>
|
||||
<name>OW2 Snapshot Plugin Repository</name>
|
||||
<url>https://repository.ow2.org/nexus/content/repositories/snapshots</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
</pluginRepository>
|
||||
|
||||
</pluginRepositories>
|
||||
|
||||
<!-- Repositories -->
|
||||
<repositories>
|
||||
|
||||
<!-- Only list the snapshot repository here since the
|
||||
main repository is synchronized to central -->
|
||||
<repository>
|
||||
<id>ow2-snapshot</id>
|
||||
<name>OW2 Snapshot Repository</name>
|
||||
<url>https://repository.ow2.org/nexus/content/repositories/snapshots</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
|
||||
<!-- Enforce Maven version usage: excludes some that are known with defects -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.0-beta-1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-maven</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireMavenVersion>
|
||||
<version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
|
||||
<message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
|
||||
</requireMavenVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!-- Default configuration of the maven-release-plugin:
|
||||
* 'release' profile not used
|
||||
* use 'ow2-release' profile
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>${maven-release-plugin.version}</version>
|
||||
<configuration>
|
||||
<mavenExecutorId>forked-path</mavenExecutorId>
|
||||
|
||||
<!-- Do not use the default release profile, use our own instead -->
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<!-- Our own release profile -->
|
||||
<releaseProfiles>${ow2ReleaseProfiles}</releaseProfiles>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
|
||||
<id>ow2-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<!-- Attach the sources to the project -->
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>${maven-source-plugin.version}</version>
|
||||
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
|
||||
</plugin>
|
||||
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<!-- Attach the javadoc to the project -->
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>${maven-javadoc-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<!-- Sign all the artifacts -->
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>${maven-gpg-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<!-- Generates a source assembly -->
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>${maven-assembly-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>source-release-assembly</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<!-- Do not execute that plugin for all modules -->
|
||||
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
|
||||
<descriptorRefs>
|
||||
<descriptorRef>${ow2SourceAssemblyDescriptorRef}</descriptorRef>
|
||||
</descriptorRefs>
|
||||
<!-- Use GNU Tar -->
|
||||
<tarLongFileMode>gnu</tarLongFileMode>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.ow2</groupId>
|
||||
<artifactId>maven-source-assemblies</artifactId>
|
||||
<version>${maven-source-assemblies.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
|
||||
</project>
|
||||
|
||||
1
.m2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1
Normal file
1
.m2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
bda66fa5f1b68fa7d2de3d569bdc8508b2af82d4
|
||||
3
.m2/org/ow2/ow2/1.5/_remote.repositories
Normal file
3
.m2/org/ow2/ow2/1.5/_remote.repositories
Normal file
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:38:51 CST 2026
|
||||
ow2-1.5.pom>aliyunmaven=
|
||||
309
.m2/org/ow2/ow2/1.5/ow2-1.5.pom
Normal file
309
.m2/org/ow2/ow2/1.5/ow2-1.5.pom
Normal file
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2011-2012 Bull S.A.S.
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.ow2</groupId>
|
||||
<artifactId>ow2</artifactId>
|
||||
<version>1.5</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>OW2 Consortium</name>
|
||||
<description>
|
||||
The OW2 Consortium is an open source community committed to making available to everyone
|
||||
the best and most reliable middleware technology, including generic enterprise applications
|
||||
and cloud computing technologies. The mission of the OW2 Consortium is to
|
||||
i) develop open source code for middleware, generic enterprise applications and cloud computing and
|
||||
ii) to foster a vibrant community and business ecosystem.
|
||||
</description>
|
||||
|
||||
<!-- License of this POM -->
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<!-- Consortium description -->
|
||||
<organization>
|
||||
<name>OW2 Consortium</name>
|
||||
<url>http://www.ow2.org</url>
|
||||
</organization>
|
||||
|
||||
<!-- TODO Needs to be changed in the future
|
||||
with a reference to a page explaining how to do releases -->
|
||||
<url>http://www.ow2.org</url>
|
||||
|
||||
<!-- Who worked on this project ? -->
|
||||
<developers>
|
||||
<developer>
|
||||
<id>sauthieg</id>
|
||||
<name>Guillaume Sauthier</name>
|
||||
<email>guillaume.sauthier@ow2.org</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<properties>
|
||||
<!-- OW2 Logo can be referred using the '${organization.logo}' property -->
|
||||
<organization.logo>
|
||||
http://www.ow2.org/xwiki/bin/download/NewsEvents/MarketingResources/ow2_logo_small_transp.png
|
||||
</organization.logo>
|
||||
<!-- Avoid the annoying warning -->
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
||||
<!-- Use properties so they could be overridden if needed -->
|
||||
<ow2DistMgmtSnapshotsUrl>http://repository.ow2.org/nexus/content/repositories/snapshots</ow2DistMgmtSnapshotsUrl>
|
||||
<ow2DistMgmtReleasesUrl>http://repository.ow2.org/nexus/service/local/staging/deploy/maven2</ow2DistMgmtReleasesUrl>
|
||||
<ow2SourceAssemblyDescriptorRef>source-release</ow2SourceAssemblyDescriptorRef>
|
||||
<ow2ReleaseProfiles>ow2-release</ow2ReleaseProfiles>
|
||||
<maven-source-assemblies.version>1.0.1</maven-source-assemblies.version>
|
||||
|
||||
<!-- Used plugins default versions (make them overridable) -->
|
||||
<maven-assembly-plugin.version>2.3</maven-assembly-plugin.version>
|
||||
<maven-gpg-plugin.version>1.4</maven-gpg-plugin.version>
|
||||
<maven-javadoc-plugin.version>2.8.1</maven-javadoc-plugin.version>
|
||||
<maven-source-plugin.version>2.1.2</maven-source-plugin.version>
|
||||
<maven-release-plugin.version>2.3.2</maven-release-plugin.version>
|
||||
</properties>
|
||||
|
||||
<!-- Source Code Management -->
|
||||
<scm>
|
||||
<connection>scm:git:git@gitorious.ow2.org:ow2/pom.git</connection>
|
||||
<developerConnection>scm:git:git@gitorious.ow2.org:ow2/pom.git</developerConnection>
|
||||
<url>http://gitorious.ow2.org/ow2/pom</url>
|
||||
<tag>ow2-1.5</tag>
|
||||
</scm>
|
||||
|
||||
<!-- Distribution -->
|
||||
<distributionManagement>
|
||||
|
||||
<!-- Site omitted - each project must provide their own -->
|
||||
|
||||
<!-- Release Repository (with staging):
|
||||
Refer to this server in your settings.xml using the 'ow2.release' ID -->
|
||||
<repository>
|
||||
<id>ow2.release</id>
|
||||
<name>OW2 Maven Releases Repository</name>
|
||||
<url>${ow2DistMgmtReleasesUrl}</url>
|
||||
</repository>
|
||||
|
||||
<!-- Snapshots Repository:
|
||||
Refer to this server in your settings.xml using the 'ow2.snapshot' ID -->
|
||||
<snapshotRepository>
|
||||
<id>ow2.snapshot</id>
|
||||
<name>OW2 Maven Snapshots Repository</name>
|
||||
<url>${ow2DistMgmtSnapshotsUrl}</url>
|
||||
</snapshotRepository>
|
||||
</distributionManagement>
|
||||
|
||||
<!-- ============================================================================================
|
||||
- TODO Remove the snapshots repositories from the super pom
|
||||
- Explanation:
|
||||
- http://www.sonatype.com/people/2010/03/why-external-repos-are-being-phased-out-of-central/
|
||||
============================================================================================ -->
|
||||
|
||||
<!-- Plugin Repositories -->
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
- Used to search plugins, plugins dependencies and build extensions
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
||||
<pluginRepositories>
|
||||
|
||||
<!-- Only list the snapshot repository here since the
|
||||
main repository is synchronized to central -->
|
||||
<pluginRepository>
|
||||
<id>ow2-plugin-snapshot</id>
|
||||
<name>OW2 Snapshot Plugin Repository</name>
|
||||
<url>http://repository.ow2.org/nexus/content/repositories/snapshots</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
</pluginRepository>
|
||||
|
||||
</pluginRepositories>
|
||||
|
||||
<!-- Repositories -->
|
||||
<repositories>
|
||||
|
||||
<!-- Only list the snapshot repository here since the
|
||||
main repository is synchronized to central -->
|
||||
<repository>
|
||||
<id>ow2-snapshot</id>
|
||||
<name>OW2 Snapshot Repository</name>
|
||||
<url>http://repository.ow2.org/nexus/content/repositories/snapshots</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
|
||||
<!-- Enforce Maven version usage: excludes some that are known with defects -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.0-beta-1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-maven</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireMavenVersion>
|
||||
<version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
|
||||
<message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
|
||||
</requireMavenVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!-- Default configuration of the maven-release-plugin:
|
||||
* 'release' profile not used
|
||||
* use 'ow2-release' profile
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>${maven-release-plugin.version}</version>
|
||||
<configuration>
|
||||
<mavenExecutorId>forked-path</mavenExecutorId>
|
||||
|
||||
<!-- Do not use the default release profile, use our own instead -->
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<!-- Our own release profile -->
|
||||
<releaseProfiles>${ow2ReleaseProfiles}</releaseProfiles>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
|
||||
<id>ow2-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<!-- Attach the sources to the project -->
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>${maven-source-plugin.version}</version>
|
||||
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
|
||||
</plugin>
|
||||
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<!-- Attach the javadoc to the project -->
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>${maven-javadoc-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<!-- Sign all the artifacts -->
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>${maven-gpg-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<!-- Generates a source assembly -->
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>${maven-assembly-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>source-release-assembly</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<!-- Do not execute that plugin for all modules -->
|
||||
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
|
||||
<descriptorRefs>
|
||||
<descriptorRef>${ow2SourceAssemblyDescriptorRef}</descriptorRef>
|
||||
</descriptorRefs>
|
||||
<!-- Use GNU Tar -->
|
||||
<tarLongFileMode>gnu</tarLongFileMode>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.ow2</groupId>
|
||||
<artifactId>maven-source-assemblies</artifactId>
|
||||
<version>${maven-source-assemblies.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
|
||||
</project>
|
||||
|
||||
1
.m2/org/ow2/ow2/1.5/ow2-1.5.pom.sha1
Normal file
1
.m2/org/ow2/ow2/1.5/ow2-1.5.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
d8edc69335f4d9f95f511716fb689c86fb0ebaae
|
||||
Reference in New Issue
Block a user