-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update project to latest tag verificafirma-eidas-beans-1.12.0
- Loading branch information
1 parent
63c3e99
commit 80245db
Showing
2,372 changed files
with
208,997 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Wed Jan 29 11:27:57 CET 2025 | ||
aopalliance-1.0.pom>parer-repositories-mirror= | ||
aopalliance-1.0.jar>parer-repositories-mirror= |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0235ba8b489512805ac13a8f9ea77a1ca5ebe3e8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>aopalliance</groupId> | ||
<artifactId>aopalliance</artifactId> | ||
<name>AOP alliance</name> | ||
<version>1.0</version> | ||
<description>AOP Alliance</description> | ||
<url>http://aopalliance.sourceforge.net</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>Public Domain</name> | ||
</license> | ||
</licenses> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
5128a2b0efbba460a1178d07773618e0986ea152 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Wed Jan 29 11:24:51 CET 2025 | ||
asm-parent-3.3.1.pom>parer-repositories-mirror= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
<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> | ||
|
||
<artifactId>asm-parent</artifactId> | ||
<groupId>asm</groupId> | ||
<version>3.3.1</version> | ||
<packaging>pom</packaging> | ||
|
||
<name>ASM</name> | ||
<description>A very small and fast Java bytecode manipulation framework</description> | ||
<url>http://asm.objectweb.org/</url> | ||
|
||
<organization> | ||
<name>ObjectWeb</name> | ||
<url>http://www.objectweb.org/</url> | ||
</organization> | ||
<inceptionYear>2000</inceptionYear> | ||
|
||
<licenses> | ||
<license> | ||
<name>BSD</name> | ||
<url>http://asm.objectweb.org/license.html</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Eric Bruneton</name> | ||
<id>ebruneton</id> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Creator</role> | ||
<role>Java Developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<name>Eugene Kuleshov</name> | ||
<id>eu</id> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Java Developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<name>Remi Forax</name> | ||
<id>forax</id> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Java Developer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/asm/trunk</connection> | ||
<developerConnection>scm:svn:svn+ssh://${maven.username}@svn.forge.objectweb.org/svnroot/asm/trunk</developerConnection> | ||
<url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/asm/trunk/</url> | ||
</scm> | ||
|
||
<issueManagement> | ||
<url>http://forge.objectweb.org/tracker/?group_id=23</url> | ||
</issueManagement> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
|
||
<dependency> | ||
<artifactId>asm</artifactId> | ||
<groupId>${project.groupId}</groupId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>asm-tree</artifactId> | ||
<groupId>${project.groupId}</groupId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>asm-analysis</artifactId> | ||
<groupId>${project.groupId}</groupId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>asm-commons</artifactId> | ||
<groupId>${project.groupId}</groupId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>asm-util</artifactId> | ||
<groupId>${project.groupId}</groupId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>asm-xml</artifactId> | ||
<groupId>${project.groupId}</groupId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<mailingLists> | ||
<mailingList> | ||
<name>ASM Users List</name> | ||
<subscribe>[email protected]?subject=subscribe%20asm</subscribe> | ||
<unsubscribe>[email protected]?subject=unsubscribe%20asm</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>http://www.ow2.org/wws/arc/asm</archive> | ||
</mailingList> | ||
<mailingList> | ||
<name>ASM Team List</name> | ||
<subscribe>[email protected]?subject=subscribe%20asm-team</subscribe> | ||
<unsubscribe>[email protected]?subject=unsubscribe%20asm-team</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>http://www.ow2.org/wws/arc/asm-team</archive> | ||
</mailingList> | ||
</mailingLists> | ||
|
||
<distributionManagement> | ||
<downloadUrl>http://mojo.codehaus.org/my-project</downloadUrl> | ||
<repository> | ||
<id>objectweb</id> | ||
<uniqueVersion>false</uniqueVersion> | ||
<name>ObjectWeb Maven 2.0 Repository</name> | ||
<url>dav:https://maven.forge.objectweb.org:8002/maven2/</url> | ||
<layout>default</layout> | ||
</repository> | ||
<snapshotRepository> | ||
<id>objectweb.snapshots</id> | ||
<uniqueVersion>false</uniqueVersion> | ||
<name>ObjectWeb Maven 2.0 Snapshot Repository</name> | ||
<url>dav:https://maven.forge.objectweb.org:8002/maven2-snapshot/</url> | ||
<layout>default</layout> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
72945d9cb6faa5082dcd190da850aa06760e4350 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Wed Jan 29 11:24:54 CET 2025 | ||
asm-3.3.1.pom>parer-repositories-mirror= | ||
asm-3.3.1.jar>parer-repositories-mirror= |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1d5f20b4ea675e6fab6ab79f1cd60ec268ddc015 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<artifactId>asm-parent</artifactId> | ||
<groupId>asm</groupId> | ||
<version>3.3.1</version> | ||
</parent> | ||
|
||
<name>ASM Core</name> | ||
<artifactId>asm</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bbcde0189656fa6cc671f27437432ac7e7f95673 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Wed Jan 29 11:24:54 CET 2025 | ||
cglib-2.2.2.pom>parer-repositories-mirror= | ||
cglib-2.2.2.jar>parer-repositories-mirror= |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
a47a971686474124562bdd4a7ccbd8ac8c3e8b11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?xml version="1.0"?> | ||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>cglib</groupId> | ||
<artifactId>cglib</artifactId> | ||
<name>Code Generation Library</name> | ||
<version>2.2.2</version> | ||
<url>http://cglib.sourceforge.net/</url> | ||
<description>Code generation library</description> | ||
<licenses> | ||
<license> | ||
<name>ASF 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:cvs:pserver:[email protected]:/cvsroot/cglib:cglib</connection> | ||
<url>http://cglib.cvs.sourceforge.net/cglib</url> | ||
</scm> | ||
<dependencies> | ||
<dependency> | ||
<groupId>asm</groupId> | ||
<artifactId>asm</artifactId> | ||
<version>3.3.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>asm</groupId> | ||
<artifactId>asm-util</artifactId> | ||
<version>3.3.1</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>ant</groupId> | ||
<artifactId>ant</artifactId> | ||
<version>1.6.2</version> | ||
<optional>true</optional> | ||
</dependency> | ||
</dependencies> | ||
<developers> | ||
<developer> | ||
<id>baliuka</id> | ||
<name>Juozas Baliuka</name> | ||
</developer> | ||
<developer> | ||
<id>herbyderby</id> | ||
<name>Chris Nokleberg</name> | ||
</developer> | ||
<developer> | ||
<id>sameb</id> | ||
<name>Sam Berlin</name> | ||
</developer> | ||
</developers> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
f5b7f35716edd620ed9df63060dccf5a2a2a02e7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Wed Jan 29 11:25:43 CET 2025 | ||
classworlds-1.1-alpha-2.pom>parer-repositories-mirror= |
95 changes: 95 additions & 0 deletions
95
.m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>classworlds</groupId> | ||
<artifactId>classworlds</artifactId> | ||
<name>classworlds</name> | ||
<version>1.1-alpha-2</version> | ||
<description></description> | ||
<url>http://classworlds.codehaus.org/</url> | ||
<ciManagement> | ||
<notifiers> | ||
<notifier> | ||
<address>[email protected]</address> | ||
</notifier> | ||
</notifiers> | ||
</ciManagement> | ||
<inceptionYear>2002</inceptionYear> | ||
<mailingLists> | ||
<mailingList> | ||
<name>classworlds users</name> | ||
<subscribe>http://lists.codehaus.org/mailman/listinfo/classworlds-user</subscribe> | ||
<unsubscribe>http://lists.codehaus.org/mailman/listinfo/classworlds-user</unsubscribe> | ||
<archive>http://lists.codehaus.org/pipermail/classworlds-user/</archive> | ||
</mailingList> | ||
<mailingList> | ||
<name>classworlds developers</name> | ||
<subscribe>http://lists.codehaus.org/mailman/listinfo/classworlds-dev</subscribe> | ||
<unsubscribe>http://lists.codehaus.org/mailman/listinfo/classworlds-dev</unsubscribe> | ||
<archive>http://lists.codehaus.org/pipermail/classworlds-dev/</archive> | ||
</mailingList> | ||
<mailingList> | ||
<name>classworlds commit messages</name> | ||
<subscribe>http://lists.codehaus.org/mailman/listinfo/classworlds-scm</subscribe> | ||
<unsubscribe>http://lists.codehaus.org/mailman/listinfo/classworlds-scm</unsubscribe> | ||
<archive>http://lists.codehaus.org/pipermail/classworlds-scm/</archive> | ||
</mailingList> | ||
</mailingLists> | ||
<developers> | ||
<developer> | ||
<id>bob</id> | ||
<name>bob mcwhirter</name> | ||
<email>[email protected]</email> | ||
<organization>The Werken Company</organization> | ||
<roles> | ||
<role>Founder</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>jvanzyl</id> | ||
<name>Jason van Zyl</name> | ||
<email>[email protected]</email> | ||
<organization>Zenplex</organization> | ||
<roles> | ||
<role>Developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>bwalding</id> | ||
<name>Ben Walding</name> | ||
<email>[email protected]</email> | ||
<organization>Walding Consulting Services</organization> | ||
<roles> | ||
<role>Developer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<connection>scm:cvs:pserver:[email protected]:/scm/cvspublic/:classworlds</connection> | ||
<url>http://cvs.classworlds.codehaus.org/</url> | ||
</scm> | ||
<organization> | ||
<name>The Codehaus</name> | ||
<url>http://codehaus.org/</url> | ||
</organization> | ||
<build> | ||
<sourceDirectory>src/java/main</sourceDirectory> | ||
<testSourceDirectory>src/java/test</testSourceDirectory> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<includes> | ||
<include>**/*Test.java</include> | ||
</includes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<distributionManagement> | ||
<site> | ||
<id>default</id> | ||
<name>Default Site</name> | ||
<url>scp://classworlds.codehaus.org//www/classworlds.codehaus.org</url> | ||
</site> | ||
</distributionManagement> | ||
</project> |
1 change: 1 addition & 0 deletions
1
.m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
8c8ad6a96a8c1168f8b12ec8a227b8261b160b26 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Wed Jan 29 11:27:56 CET 2025 | ||
minlog-1.3.1.jar>parer-repositories-mirror= | ||
minlog-1.3.1.pom>parer-repositories-mirror= |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
a406e29d3a44d5f020d7b3218aee6d0952db4f73 |
Oops, something went wrong.