From 3f9e90c5a62dac4557f34f85b2d0ce70d58b439d Mon Sep 17 00:00:00 2001 From: Chris Knoll Date: Mon, 11 Dec 2023 16:54:36 -0500 Subject: [PATCH 001/141] Start version 2.15.0 Bump to version 2.15.0 Updated Milestones for Atlas and WebAPI --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 651c6c333..a152507ca 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.ohdsi WebAPI war - 2.14.0 + 2.15.0-SNAPSHOT WebAPI ${BUILD_NUMBER} @@ -274,8 +274,8 @@ true - 42 - 43 + 47 + 49 * * From f258186ce9955ff5ee1cef220de88da7a9049de2 Mon Sep 17 00:00:00 2001 From: Chris Knoll Date: Tue, 13 Feb 2024 19:21:49 -0500 Subject: [PATCH 002/141] Permission Performance Optimizations (#2341) * Implemented permission lookup to bypass hibernate. * Moved PermissionsDTO to PermissionManager * Removed GSON to use the app-wide ObjectMapper from Jackson * Removed unused imports to GSON. --- pom.xml | 5 -- .../org/ohdsi/webapi/service/UserService.java | 4 ++ .../ohdsi/webapi/shiro/PermissionManager.java | 69 ++++++++++++++++++- .../filters/SendTokenInHeaderFilter.java | 25 ++++--- .../filters/UpdateAccessTokenFilter.java | 4 +- .../management/AtlasRegularSecurity.java | 6 +- .../security/getPermissionsForUser.sql | 6 ++ 7 files changed, 97 insertions(+), 22 deletions(-) create mode 100644 src/main/resources/resources/security/getPermissionsForUser.sql diff --git a/pom.xml b/pom.xml index a152507ca..bf5b8deee 100644 --- a/pom.xml +++ b/pom.xml @@ -1024,11 +1024,6 @@ HikariCP 4.0.3 - - com.google.code.gson - gson - 2.9.0 - org.jasypt jasypt-hibernate4 diff --git a/src/main/java/org/ohdsi/webapi/service/UserService.java b/src/main/java/org/ohdsi/webapi/service/UserService.java index fc19c071a..2c786a844 100644 --- a/src/main/java/org/ohdsi/webapi/service/UserService.java +++ b/src/main/java/org/ohdsi/webapi/service/UserService.java @@ -1,5 +1,6 @@ package org.ohdsi.webapi.service; +import com.fasterxml.jackson.databind.JsonNode; import com.odysseusinc.logging.event.*; import org.eclipse.collections.impl.block.factory.Comparators; import org.ohdsi.webapi.shiro.Entities.PermissionEntity; @@ -50,6 +51,7 @@ public static class User implements Comparable { public String login; public String name; public List permissions; + public JsonNode permissionIdx; public User() {} @@ -114,6 +116,8 @@ public User getCurrentUser() throws Exception { user.login = currentUser.getLogin(); user.name = currentUser.getName(); user.permissions = convertPermissions(permissions); + user.permissionIdx = authorizer.queryUserPermissions(currentUser.getLogin()).permissions; + return user; } diff --git a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java index 4e0eeec5b..96c6d13c5 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java +++ b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java @@ -1,5 +1,8 @@ package org.ohdsi.webapi.shiro; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.node.ArrayNode; import com.odysseusinc.logging.event.AddUserEvent; import com.odysseusinc.logging.event.DeleteRoleEvent; import org.apache.shiro.SecurityUtils; @@ -25,10 +28,16 @@ import org.springframework.transaction.annotation.Transactional; import java.security.Principal; +import java.util.HashMap; import java.util.LinkedHashSet; +import java.util.List; import java.util.Map; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; +import org.apache.commons.lang3.StringUtils; +import org.ohdsi.circe.helper.ResourceHelper; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.jdbc.core.JdbcTemplate; /** * @@ -38,6 +47,9 @@ @Transactional public class PermissionManager { + @Value("${datasource.ohdsi.schema}") + private String ohdsiSchema; + @Autowired private UserRepository userRepository; @@ -55,9 +67,20 @@ public class PermissionManager { @Autowired private ApplicationEventPublisher eventPublisher; - + + @Autowired + private JdbcTemplate jdbcTemplate; + + @Autowired + private ObjectMapper objectMapper; + private ThreadLocal> authorizationInfoCache = ThreadLocal.withInitial(ConcurrentHashMap::new); + public static class PermissionsDTO { + + public JsonNode permissions = null; + } + public RoleEntity addRole(String roleName, boolean isSystem) { Guard.checkNotEmpty(roleName); @@ -305,7 +328,51 @@ public Set getUserPermissions(UserEntity user) { return permissions; } + + public PermissionsDTO queryUserPermissions(final String login) { + String permQuery = StringUtils.replace( + ResourceHelper.GetResourceAsString("/resources/security/getPermissionsForUser.sql"), + "@ohdsi_schema", + this.ohdsiSchema); + final UserEntity user = userRepository.findByLogin(login); + + List permissions = this.jdbcTemplate.query( + permQuery, + (ps) -> { + ps.setLong(1, user.getId()); + }, + (rs, rowNum) -> { + return rs.getString("value"); + }); + PermissionsDTO permDto = new PermissionsDTO(); + permDto.permissions = permsToJsonNode(permissions); + return permDto; + } + + /** + * This method takes a list of strings and returns a JSObject representing + * the first element of each permission as a key, and the List of + * permissions that start with the key as the value + */ + private JsonNode permsToJsonNode(List permissions) { + + Map resultMap = new HashMap<>(); + + // Process each input string + for (String inputString : permissions) { + String[] parts = inputString.split(":"); + String key = parts[0]; + // Create a new JsonArray for the key if it doesn't exist + resultMap.putIfAbsent(key, objectMapper.createArrayNode()); + // Add the value to the JsonArray + resultMap.get(key).add(inputString); + } + // Convert the resultMap to a JsonNode + + return objectMapper.valueToTree(resultMap); + } + private Set getRolePermissions(RoleEntity role) { Set permissions = new LinkedHashSet<>(); diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/SendTokenInHeaderFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/SendTokenInHeaderFilter.java index a8c7a68d0..08b253f9b 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/SendTokenInHeaderFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/SendTokenInHeaderFilter.java @@ -1,9 +1,9 @@ package org.ohdsi.webapi.shiro.filters; +import com.fasterxml.jackson.databind.ObjectMapper; import static org.ohdsi.webapi.shiro.management.AtlasSecurity.PERMISSIONS_ATTRIBUTE; import static org.ohdsi.webapi.shiro.management.AtlasSecurity.TOKEN_ATTRIBUTE; -import com.google.gson.Gson; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletRequest; @@ -11,6 +11,7 @@ import javax.servlet.http.HttpServletResponse; import org.apache.shiro.web.servlet.AdviceFilter; import org.apache.shiro.web.util.WebUtils; +import org.ohdsi.webapi.shiro.PermissionManager; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.http.MediaType; @@ -25,10 +26,18 @@ public class SendTokenInHeaderFilter extends AdviceFilter { private static final String ERROR_WRITING_PERMISSIONS_TO_RESPONSE_LOG = "Error writing permissions to response"; private static final String TOKEN_HEADER_NAME = "Bearer"; + private final ObjectMapper objectMapper; + + public SendTokenInHeaderFilter(ObjectMapper objectMapper) { + this.objectMapper = objectMapper; + } + + + @Override protected boolean preHandle(ServletRequest request, ServletResponse response) { String jwt = (String)request.getAttribute(TOKEN_ATTRIBUTE); - String permissions = (String)request.getAttribute(PERMISSIONS_ATTRIBUTE); + PermissionManager.PermissionsDTO permissions = (PermissionManager.PermissionsDTO)request.getAttribute(PERMISSIONS_ATTRIBUTE); HttpServletResponse httpResponse = WebUtils.toHttp(response); httpResponse.setHeader(TOKEN_HEADER_NAME, jwt); @@ -36,20 +45,10 @@ protected boolean preHandle(ServletRequest request, ServletResponse response) { httpResponse.setStatus(HttpServletResponse.SC_OK); try (final PrintWriter responseWriter = response.getWriter()) { - responseWriter.print(new Gson().toJson(new PermissionsDTO(permissions))); + responseWriter.print(objectMapper.writeValueAsString(permissions)); } catch (IOException e) { LOGGER.error(ERROR_WRITING_PERMISSIONS_TO_RESPONSE_LOG, e); } return false; } - - public static class PermissionsDTO { - - private PermissionsDTO(String permissions) { - - this.permissions = permissions; - } - - public final String permissions; - } } diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java index bfbb06eae..f5597058e 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java @@ -145,8 +145,8 @@ protected boolean preHandle(ServletRequest request, ServletResponse response) th } request.setAttribute(TOKEN_ATTRIBUTE, jwt); - Collection permissions = this.authorizer.getAuthorizationInfo(login).getStringPermissions(); - request.setAttribute(PERMISSIONS_ATTRIBUTE, StringUtils.join(permissions, "|")); + PermissionManager.PermissionsDTO permissions = this.authorizer.queryUserPermissions(login); + request.setAttribute(PERMISSIONS_ATTRIBUTE, permissions); return true; } diff --git a/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java b/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java index 67e27df70..e19a1ebc8 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java +++ b/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java @@ -1,5 +1,6 @@ package org.ohdsi.webapi.shiro.management; +import com.fasterxml.jackson.databind.ObjectMapper; import io.buji.pac4j.filter.CallbackFilter; import io.buji.pac4j.filter.SecurityFilter; import io.buji.pac4j.realm.Pac4jRealm; @@ -259,6 +260,9 @@ public class AtlasRegularSecurity extends AtlasSecurity { @Autowired private PermissionManager permissionManager; + + @Autowired + private ObjectMapper objectMapper; public AtlasRegularSecurity(EntityPermissionSchemaResolver permissionSchemaResolver) { @@ -293,7 +297,7 @@ public Map getFilters() { } filters.put(SEND_TOKEN_IN_URL, new SendTokenInUrlFilter(this.oauthUiCallback)); - filters.put(SEND_TOKEN_IN_HEADER, new SendTokenInHeaderFilter()); + filters.put(SEND_TOKEN_IN_HEADER, new SendTokenInHeaderFilter(this.objectMapper)); filters.put(RUN_AS, new RunAsFilter(userRepository)); diff --git a/src/main/resources/resources/security/getPermissionsForUser.sql b/src/main/resources/resources/security/getPermissionsForUser.sql new file mode 100644 index 000000000..f64fc6c60 --- /dev/null +++ b/src/main/resources/resources/security/getPermissionsForUser.sql @@ -0,0 +1,6 @@ +select distinct sp.value +from @ohdsi_schema.sec_user_role sur +join @ohdsi_schema.sec_role_permission srp on sur.role_id = srp.role_id +join @ohdsi_schema.sec_permission sp on sp.id = srp.permission_id +where sur.user_id = ? +order by value; From d90d653d1449affd8ef272141cf0af59e635b115 Mon Sep 17 00:00:00 2001 From: Anthony Sena Date: Mon, 26 Feb 2024 15:18:36 -0500 Subject: [PATCH 003/141] Add Databricks profile (#2339) * Create new webapi-databricks profile * Check for spark and databricks connection string info --- pom.xml | 11 +++++++++++ src/main/java/org/ohdsi/webapi/DataAccessConfig.java | 2 +- .../org/ohdsi/webapi/util/CancelableJdbcTemplate.java | 3 ++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index bf5b8deee..f799a72a7 100644 --- a/pom.xml +++ b/pom.xml @@ -1482,6 +1482,17 @@ + + webapi-databricks + + + com.databricks + databricks-jdbc + 2.6.34 + runtime + + + webapi-bigquery diff --git a/src/main/java/org/ohdsi/webapi/DataAccessConfig.java b/src/main/java/org/ohdsi/webapi/DataAccessConfig.java index 439119890..8bc4e438d 100644 --- a/src/main/java/org/ohdsi/webapi/DataAccessConfig.java +++ b/src/main/java/org/ohdsi/webapi/DataAccessConfig.java @@ -82,7 +82,7 @@ public DataSource primaryDataSource() { //note autocommit defaults vary across vendors. use provided @Autowired TransactionTemplate String[] supportedDrivers; - supportedDrivers = new String[]{"org.postgresql.Driver", "com.microsoft.sqlserver.jdbc.SQLServerDriver", "oracle.jdbc.driver.OracleDriver", "com.amazon.redshift.jdbc.Driver", "com.cloudera.impala.jdbc.Driver", "net.starschema.clouddb.jdbc.BQDriver", "org.netezza.Driver", "com.simba.googlebigquery.jdbc42.Driver", "org.apache.hive.jdbc.HiveDriver", "com.simba.spark.jdbc.Driver", "net.snowflake.client.jdbc.SnowflakeDriver"}; + supportedDrivers = new String[]{"org.postgresql.Driver", "com.microsoft.sqlserver.jdbc.SQLServerDriver", "oracle.jdbc.driver.OracleDriver", "com.amazon.redshift.jdbc.Driver", "com.cloudera.impala.jdbc.Driver", "net.starschema.clouddb.jdbc.BQDriver", "org.netezza.Driver", "com.simba.googlebigquery.jdbc42.Driver", "org.apache.hive.jdbc.HiveDriver", "com.simba.spark.jdbc.Driver", "net.snowflake.client.jdbc.SnowflakeDriver", "com.databricks.client.jdbc.Driver"}; for (String driverName : supportedDrivers) { try { Class.forName(driverName); diff --git a/src/main/java/org/ohdsi/webapi/util/CancelableJdbcTemplate.java b/src/main/java/org/ohdsi/webapi/util/CancelableJdbcTemplate.java index 00a29b973..a7ebb3d39 100644 --- a/src/main/java/org/ohdsi/webapi/util/CancelableJdbcTemplate.java +++ b/src/main/java/org/ohdsi/webapi/util/CancelableJdbcTemplate.java @@ -78,7 +78,8 @@ public int[] doInStatement(Statement stmt) throws SQLException, DataAccessExcept } else { for (int i = 0; i < sql.length; i++) { - if (stmt.getConnection().getMetaData().getURL().startsWith("jdbc:spark")) { + String connectionString = stmt.getConnection().getMetaData().getURL(); + if (connectionString.startsWith("jdbc:spark") || connectionString.startsWith("jdbc:databricks")) { this.currSql = BigQuerySparkTranslate.sparkHandleInsert(sql[i], stmt.getConnection()); if (this.currSql == "" || this.currSql.isEmpty() || this.currSql == null) { rowsAffected[i] = -1; From 31b333288a891048270c30d3e9adb70cb41d07b4 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Thu, 16 May 2024 15:40:54 -0400 Subject: [PATCH 004/141] MDACA Spring Boot 3 migration --- pom.xml | 892 ++++++++++++++++++++++++++++++-------------------------- 1 file changed, 480 insertions(+), 412 deletions(-) diff --git a/pom.xml b/pom.xml index f799a72a7..eacc67b7a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,13 +6,13 @@ org.ohdsi WebAPI war - 2.15.0-SNAPSHOT + 3.0.0 WebAPI ${BUILD_NUMBER} UTF-8 - - 1.5.22.RELEASE + + 3.0.13 2.17.1 4.2.0 2.2.1 @@ -20,11 +20,11 @@ 5.4.2.Final 42.3.7 1.69 - 1.12.0 + 2.0.0 2.1.3 0.4.0 3.2.0 - 8.5.87 + 1.5 @@ -32,14 +32,14 @@ 2.14 1.16.1 3.1.2 - 4.0.0 - 2.12.7 + 6.0.2 + 2.14.3 org.ohdsi.webapi.WebApi false false package - 1.8 - 1.8 + 17 + 17 @@ -201,7 +201,7 @@ /WebAPI 1.17.3 - 2.25.1 + 2.29.1 600000 12 10000 @@ -274,8 +274,8 @@ true - 47 - 49 + 42 + 43 * * @@ -348,7 +348,7 @@ org.apache.maven.plugins maven-dependency-plugin - 3.5.0 + 3.6.1 pl.project13.maven @@ -375,8 +375,8 @@ org.codehaus.gmaven - gmaven-plugin - 1.5 + groovy-maven-plugin + 2.1.1 add-git-branch-info @@ -423,7 +423,7 @@ org.apache.maven.plugins maven-surefire-plugin - 2.22.2 + 3.1.2 ${skipUnitTests} @@ -452,7 +452,7 @@ org.apache.maven.plugins maven-failsafe-plugin - 2.22.2 + 3.1.2 ${skipITtests} @@ -515,6 +515,25 @@ + + + @@ -573,363 +592,409 @@ redshift-jdbc42-no-awssdk 1.2.10.1009 + + - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - com.fasterxml.jackson.core - jackson-annotations - - - com.fasterxml.jackson.core - jackson-core - - - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version} - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson.version} - - + + + com.fasterxml.jackson.core + jackson-annotations + + + com.fasterxml.jackson.core + jackson-core + + + + + com.fasterxml.jackson.core + jackson-core + + + + com.fasterxml.jackson.core + jackson-annotations + + + - - org.springframework.boot - spring-boot-starter - - - org.springframework.boot - spring-boot-starter-logging - - - - - - - org.yaml - snakeyaml - 2.0 - - - org.springframework.boot - spring-boot-starter-web - - - org.hibernate - hibernate-validator - - - com.fasterxml.jackson.core - jackson-databind - - - - - org.springframework.boot - spring-boot-starter-log4j2 - - - org.springframework.boot - spring-boot-starter-tomcat - provided - - - org.springframework.boot - spring-boot-starter-batch - + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-logging + + + + + + + org.yaml + snakeyaml + + + + org.springframework.boot + spring-boot-starter-web + + + org.hibernate + hibernate-validator + + + com.fasterxml.jackson.core + jackson-databind + + + + + org.springframework.boot + spring-boot-starter-log4j2 + + + org.springframework.boot + spring-boot-starter-tomcat + provided + + + org.springframework.boot + spring-boot-starter-batch + - - - - - org.apache.tomcat.embed - tomcat-embed-el - ${tomcat.embed.version} - + + + + - - - - com.thoughtworks.xstream - xstream - 1.4.19 - - - org.springframework.boot - spring-boot-starter-jdbc - - - org.apache.tomcat - tomcat-jdbc - provided - - - org.apache.tomcat - tomcat-juli - ${tomcat.embed.version} - - - org.springframework.boot - spring-boot-starter-jersey - - - org.hibernate - hibernate-validator - - - com.fasterxml.jackson.core - jackson-databind - - - com.fasterxml.jackson.core - jackson-annotations - - - com.fasterxml.jackson.core - jackson-core - - - - - org.springframework.boot - spring-boot-starter-data-jpa - - - org.springframework.boot - spring-boot-starter-cache - - - org.hibernate - hibernate-core - ${hibernate.version} - - - org.dom4j - dom4j - - - - - org.hibernate - hibernate-validator - 5.4.2.Final - - - org.hibernate - hibernate-entitymanager - ${hibernate.version} - - - org.dom4j - dom4j - - - - - javax.servlet - javax.servlet-api - 3.1.0 - provided - - - org.ohdsi.sql - SqlRender - ${SqlRender.version} - - - commons-dbutils - commons-dbutils - 1.6 - - - commons-io - commons-io - 2.7 - - - com.sun.xml.security - xml-security-impl - 1.0 - - - org.springframework.boot - spring-boot-starter-test - ${spring.boot.version} - test - - - com.vaadin.external.google - android-json - - - - - - - - net.minidev - json-smart - 2.4.9 - - - org.apache.commons - commons-lang3 - 3.12.0 - - - org.flywaydb - flyway-core - ${flyway.version} - - - org.apache.httpcomponents - httpclient - 4.5.13 - - - org.springframework.batch - spring-batch-admin-manager - 2.0.0.M1 - - - freemarker - org.freemarker - - - commons-dbcp - commons-dbcp - - - com.fasterxml.jackson.core - jackson-databind - - - org.slf4j - slf4j-log4j12 - - - log4j - log4j - - - + + + + com.thoughtworks.xstream + xstream + 1.4.19 + + + org.springframework.boot + spring-boot-starter-jdbc + + + org.apache.tomcat + tomcat-jdbc + provided + + + + + org.springframework.boot + spring-boot-starter-jersey + + + org.hibernate + hibernate-validator + + + com.fasterxml.jackson.core + jackson-databind + + + com.fasterxml.jackson.core + jackson-annotations + + + com.fasterxml.jackson.core + jackson-core + + + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.springframework.boot + spring-boot-starter-cache + + + org.hibernate.orm + hibernate-core + + + org.dom4j + dom4j + + + + + org.hibernate + hibernate-validator + 5.4.2.Final + + + jakarta.servlet + jakarta.servlet-api + provided + + + org.ohdsi.sql + SqlRender + ${SqlRender.version} + + + commons-dbutils + commons-dbutils + 1.6 + + + commons-io + commons-io + 2.7 + + + com.sun.xml.security + xml-security-impl + 1.0 + + + org.springframework.boot + spring-boot-starter-test + + test + + + com.vaadin.external.google + android-json + + + + + + + + net.minidev + json-smart + + + + org.apache.commons + commons-lang3 + + + org.flywaydb + flyway-core + + + + org.apache.httpcomponents + httpclient + + + org.springframework.batch + spring-batch-admin-manager + 2.0.0.M1 + + + freemarker + org.freemarker + + + commons-dbcp + commons-dbcp + + + com.fasterxml.jackson.core + jackson-databind + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + - - - commons-fileupload - commons-fileupload - ${commons-fileupload.version} - + + + commons-fileupload + commons-fileupload + ${commons-fileupload.version} + - - org.postgresql - postgresql - ${postgresql.version} - jar - - - com.microsoft.sqlserver - mssql-jdbc - 10.2.1.jre8 - - - com.microsoft.azure - msal4j - 1.9.0 - - - com.opencsv - opencsv - 3.7 - jar - - - org.eclipse.collections - eclipse-collections-api - 8.0.0 - - - org.eclipse.collections - eclipse-collections - 8.0.0 - - - org.apache.commons - commons-collections4 - 4.1 - jar - - - org.apache.shiro - shiro-core - ${shiro.version} - - - org.apache.shiro - shiro-web - ${shiro.version} - - - org.apache.shiro - shiro-spring - ${shiro.version} - - - com.github.waffle - waffle-shiro - 2.2.1 - - - com.github.waffle - waffle-jna - ${waffle.version} - - - net.java.dev.jna - jna - - - net.java.dev.jna - jna-platform - - - - - net.java.dev.jna - jna - ${jna.version} - - - net.java.dev.jna - jna-platform - ${jna.version} - - - io.jsonwebtoken - jjwt - 0.9.1 - - - com.fasterxml.jackson.core - jackson-databind - - - + + org.postgresql + postgresql + + jar + + + com.microsoft.sqlserver + mssql-jdbc + + + + com.microsoft.azure + msal4j + 1.9.0 + + + com.opencsv + opencsv + 3.7 + jar + + + org.eclipse.collections + eclipse-collections-api + 8.0.0 + + + org.eclipse.collections + eclipse-collections + 8.0.0 + + + org.apache.commons + commons-collections4 + 4.1 + jar + + + + + + org.apache.shiro + shiro-core + ${shiro.version} + jakarta + + + org.apache.shiro + shiro-web + ${shiro.version} + jakarta + + + + org.apache.shiro + shiro-spring-boot-web-starter + ${shiro.version} + jakarta + + + org.apache.shiro + shiro-spring-boot-starter + ${shiro.version} + jakarta + + + org.apache.shiro + shiro-spring + ${shiro.version} + jakarta + + + + com.github.waffle + waffle-shiro + 2.2.1 + + + com.github.waffle + waffle-jna + ${waffle.version} + + + net.java.dev.jna + jna + + + net.java.dev.jna + jna-platform + + + + + net.java.dev.jna + jna + ${jna.version} + + + net.java.dev.jna + jna-platform + ${jna.version} + + + io.jsonwebtoken + jjwt + 0.9.1 + + + com.fasterxml.jackson.core + jackson-databind + + + + + jakarta.inject + jakarta.inject-api + 2.0.1 + + + jakarta.validation + jakarta.validation-api + io.buji buji-pac4j 5.0.1 + + + + org.pac4j + pac4j-jakartaee + ${pac4j.version} + + org.pac4j pac4j-oauth @@ -965,8 +1030,10 @@ org.pac4j - pac4j-saml-opensamlv3 - ${pac4j.version} + + pac4j-saml-opensamlv5 + + 5.7.4 org.ohdsi @@ -1017,23 +1084,32 @@ org.springframework.security spring-security-crypto - 4.2.3.RELEASE com.zaxxer HikariCP - 4.0.3 + + + com.google.code.gson + gson + org.jasypt jasypt-hibernate4 1.9.2 - - org.dbunit - dbunit - 2.7.0 - test + + org.dbunit + dbunit + 2.7.0 + test + + + junit + junit + + com.github.springtestdbunit @@ -1101,12 +1177,11 @@ org.glassfish.jersey.media jersey-media-multipart - ${jersey-media-multipart.version} + org.springframework.ldap spring-ldap-core - 2.3.2.RELEASE com.odysseusinc @@ -1201,7 +1276,6 @@ org.freemarker freemarker - 2.3.30 com.atlassian.commonmark @@ -1230,10 +1304,15 @@ syslog-java-client 1.1.7 - + + org.springframework.boot + spring-boot-configuration-processor + true + + - + + SELECT 1 FROM DUAL classpath:db/migration/oracle org.hibernate.dialect.Oracle10gDialect ${datasource.url} @@ -1266,7 +1345,7 @@ 19.8.0.0 - + --> webapi-postgresql @@ -1337,7 +1416,7 @@ - + + + + Impala JDBC driver path ...path/to/impala/jdbc/drivers... @@ -1441,12 +1520,12 @@ - - + --> + + Spark JDBC driver path ${basedir}/src/main/extras/spark @@ -1481,23 +1560,12 @@ - - - webapi-databricks - - - com.databricks - databricks-jdbc - 2.6.34 - runtime - - - - + --> + + BigQuery JDBC driver path ${basedir}/src/main/extras/bigquery @@ -1676,8 +1744,8 @@ - - + --> + webapi-redshift @@ -1819,7 +1887,7 @@ - + + + + Full Text Search With SOLR Settings {!complexphrase inOrder=true} 8.11.2 @@ -1868,6 +1936,6 @@ jar - + --> From 38d62cb190b5aa1d53b6d86362f42132228a03d8 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 17 May 2024 09:07:00 -0400 Subject: [PATCH 005/141] MDACA Spring Boot 3 migration --- pom.xml | 69 +-------- .../java/org/ohdsi/webapi/AuthDataSource.java | 2 +- .../org/ohdsi/webapi/DataAccessConfig.java | 28 ++-- .../java/org/ohdsi/webapi/FlywayConfig.java | 16 ++- .../webapi/GenerationStatusConverter.java | 4 +- .../java/org/ohdsi/webapi/I18nConfig.java | 4 +- .../org/ohdsi/webapi/JdbcExceptionMapper.java | 6 +- .../java/org/ohdsi/webapi/JerseyConfig.java | 4 +- src/main/java/org/ohdsi/webapi/JobConfig.java | 30 ++-- .../java/org/ohdsi/webapi/JobInvalidator.java | 4 +- .../org/ohdsi/webapi/KrbConfiguration.java | 2 +- .../org/ohdsi/webapi/LogConfiguration.java | 4 +- .../webapi/PageableValueFactoryProvider.java | 6 +- .../ohdsi/webapi/SchedulerConfiguration.java | 8 +- .../org/ohdsi/webapi/ShiroConfiguration.java | 14 +- src/main/java/org/ohdsi/webapi/WebApi.java | 4 +- .../achilles/domain/AchillesCacheEntity.java | 20 +-- .../service/AchillesCacheService.java | 2 +- .../webapi/audittrail/AuditTrailAspect.java | 17 +-- .../audittrail/AuditTrailServiceImpl.java | 35 +++-- .../cdmresults/domain/CDMCacheEntity.java | 14 +- .../service/CDMCacheBatchService.java | 2 +- .../webapi/check/checker/BaseChecker.java | 2 +- .../CharacterizationChecker.java | 3 +- .../check/checker/cohort/CohortChecker.java | 3 +- .../checker/conceptset/ConceptSetChecker.java | 3 +- .../checker/estimation/EstimationChecker.java | 3 +- ...EstimationAnalysisSpecificationHelper.java | 2 +- .../webapi/check/checker/ir/IRChecker.java | 4 +- .../check/checker/pathway/PathwayChecker.java | 4 +- .../checker/prediction/PredictionChecker.java | 3 +- .../check/checker/tag/helper/TagHelper.java | 1 - .../webapi/check/validator/Validator.java | 2 +- .../common/NotNullNotEmptyValidator.java | 12 +- .../check/warning/ConceptSetWarning.java | 2 +- .../webapi/check/warning/WarningUtils.java | 4 +- .../org/ohdsi/webapi/cohort/CohortEntity.java | 10 +- .../CohortAnalysisGenerationInfo.java | 26 ++-- .../cohortanalysis/CohortAnalysisTask.java | 16 ++- .../cohortanalysis/CohortAnalysisTasklet.java | 2 +- .../cohortanalysis/HeraclesQueryBuilder.java | 2 +- .../cohortcharacterization/CcController.java | 48 +++---- .../cohortcharacterization/CcServiceImpl.java | 32 ++--- .../GenerateLocalCohortTasklet.java | 2 +- .../converter/SerializedCcToCcConverter.java | 2 +- .../domain/CcGenerationEntity.java | 10 +- .../domain/CcParamEntity.java | 16 +-- .../domain/CcStrataConceptSetEntity.java | 14 +- .../domain/CcStrataEntity.java | 16 +-- .../domain/CohortCharacterizationEntity.java | 24 ++-- .../report/ComparativeItem.java | 2 +- .../cohortdefinition/CohortDefinition.java | 38 ++--- .../CohortDefinitionDetails.java | 4 +- .../CohortGenerationInfo.java | 16 +-- .../CohortGenerationInfoId.java | 10 +- .../CohortGenerationUtils.java | 2 +- .../GenerationJobExecutionListener.java | 2 +- ...ersionToCohortVersionFullDTOConverter.java | 2 +- .../CohortResultsAnalysisRunner.java | 135 +++++++++--------- .../cohortresults/VisualizationData.java | 10 +- .../CleanupCohortSamplesTasklet.java | 4 +- .../webapi/cohortsample/CohortSample.java | 12 +- .../cohortsample/CohortSamplingService.java | 18 ++- .../cohortsample/dto/SampleParametersDTO.java | 2 +- .../webapi/common/CommonConceptSetEntity.java | 8 +- .../generation/AnalysisExecutionSupport.java | 2 +- .../AnalysisGenerationBaseInfo.java | 2 +- .../generation/AnalysisGenerationInfo.java | 4 +- .../AnalysisGenerationInfoEntity.java | 10 +- .../common/generation/CommonGeneration.java | 18 +-- .../common/generation/GenerationUtils.java | 2 +- .../ohdsi/webapi/common/orm/EnumListType.java | 2 - .../common/orm/EnumListTypeDescriptor.java | 8 +- .../AbstractSensitiveInfoService.java | 2 +- .../ohdsi/webapi/conceptset/ConceptSet.java | 18 +-- .../conceptset/ConceptSetGenerationInfo.java | 16 +-- .../ConceptSetGenerationTypeConverter.java | 4 +- .../webapi/conceptset/ConceptSetItem.java | 10 +- ...onToConceptSetVersionFullDTOConverter.java | 2 +- .../configuration/JacksonConfiguration.java | 3 +- .../cyclops/specification/ControlImpl.java | 56 ++++---- .../cyclops/specification/PriorImpl.java | 12 +- ...0180807192421__cohortDetailsHashcodes.java | 2 - ...20190410103000__migratePathwayResults.java | 4 +- ...90520171430__cohortExpressionHashCode.java | 2 - ..._0_20191106092815__migrateEventFAType.java | 4 +- .../ohdsi/webapi/estimation/Estimation.java | 14 +- .../estimation/EstimationController.java | 39 +++-- .../estimation/EstimationServiceImpl.java | 14 +- .../FitOutcomeModelArgsImpl.java | 2 +- .../StratifyByPsAndCovariatesArgsImpl.java | 2 +- .../specification/StratifyByPsArgsImpl.java | 2 +- .../TargetComparatorOutcomesImpl.java | 2 +- .../domain/EstimationGenerationEntity.java | 2 +- .../specification/TargetOutcomeImpl.java | 2 +- .../webapi/evidence/CohortStudyMapping.java | 8 +- .../webapi/evidence/ConceptCohortMapping.java | 8 +- .../evidence/ConceptOfInterestMapping.java | 8 +- .../org/ohdsi/webapi/evidence/DrugLabel.java | 8 +- .../NegativeControlTasklet.java | 2 +- .../ExampleApplicationWithJobService.java | 6 +- .../exampleapplication/model/Widget.java | 10 +- .../ScriptExecutionCallbackController.java | 16 +-- .../controller/ScriptExecutionController.java | 14 +- .../executionengine/entity/AnalysisFile.java | 16 +-- .../entity/AnalysisResultFile.java | 2 +- .../entity/AnalysisResultFileContent.java | 16 +-- .../entity/ExecutionEngineAnalysisStatus.java | 2 +- .../ExecutionEngineGenerationEntity.java | 14 +- .../job/ExecutionEngineCallbackTasklet.java | 2 +- .../AnalysisExecutionRepository.java | 8 +- ...ltFileContentSensitiveInfoServiceImpl.java | 2 +- ...neAnalysisStatusInvalidationScheduler.java | 8 +- .../ExecutionEngineStatusServiceImpl.java | 6 +- .../service/ScriptExecutionServiceImpl.java | 17 +-- .../feanalysis/FeAnalysisController.java | 35 +++-- .../feanalysis/FeAnalysisServiceImpl.java | 10 +- ...AnalysisAggregateDTOToEntityConverter.java | 2 +- ...DTOToFeAnalysisWithCriteriasConverter.java | 14 +- ...nalysisEntityToFeAnalysisDTOConverter.java | 11 +- ...eatureAnalysisAggregateToDTOConverter.java | 4 +- .../domain/FeAnalysisAggregateEntity.java | 6 +- .../domain/FeAnalysisConcepsetEntity.java | 14 +- .../domain/FeAnalysisCriteriaEntity.java | 26 ++-- .../domain/FeAnalysisCriteriaGroupEntity.java | 4 +- .../FeAnalysisDemographicCriteriaEntity.java | 4 +- .../FeAnalysisDistributionCriteriaEntity.java | 2 +- .../feanalysis/domain/FeAnalysisEntity.java | 32 ++--- .../FeAnalysisWindowedCriteriaEntity.java | 4 +- .../domain/FeAnalysisWithCriteriaEntity.java | 2 +- ...nalysisWithDistributionCriteriaEntity.java | 4 +- ...eAnalysisWithPrevalenceCriteriaEntity.java | 4 +- .../domain/FeAnalysisWithStringEntity.java | 8 +- .../webapi/feasibility/FeasibilityReport.java | 2 +- .../webapi/feasibility/FeasibilityStudy.java | 38 ++--- .../FeasibilityStudyQueryBuilder.java | 2 +- .../webapi/feasibility/InclusionRule.java | 12 +- .../PerformFeasibilityTasklet.java | 4 +- .../feasibility/StudyGenerationInfo.java | 14 +- .../feasibility/StudyGenerationInfoId.java | 10 +- .../CohortGenerationCacheProvider.java | 2 +- .../generationcache/GenerationCache.java | 20 +-- .../GenerationCacheHelper.java | 2 +- .../GenerationCacheServiceImpl.java | 2 +- .../SourceDeleteListenerConfigurer.java | 6 +- .../org/ohdsi/webapi/i18n/I18nController.java | 14 +- .../ohdsi/webapi/i18n/I18nServiceImpl.java | 6 +- .../org/ohdsi/webapi/i18n/LocaleFilter.java | 6 +- .../java/org/ohdsi/webapi/info/BuildInfo.java | 2 +- .../org/ohdsi/webapi/info/InfoService.java | 8 +- .../ohdsi/webapi/ircalc/AnalysisReport.java | 4 +- .../ohdsi/webapi/ircalc/ExecutionInfo.java | 2 +- .../ohdsi/webapi/ircalc/ExecutionInfoId.java | 10 +- .../webapi/ircalc/IRAnalysisQueryBuilder.java | 16 +-- .../webapi/ircalc/IncidenceRateAnalysis.java | 2 +- .../ircalc/IncidenceRateAnalysisDetails.java | 22 ++- ...onToIRAnalysisVersionFullDTOConverter.java | 4 +- .../job/JobExecutionToDTOConverter.java | 2 +- .../org/ohdsi/webapi/job/JobTemplate.java | 6 +- .../webapi/job/NotificationController.java | 14 +- .../org/ohdsi/webapi/model/CommonEntity.java | 2 +- .../ohdsi/webapi/model/CommonEntityExt.java | 2 +- .../webapi/pathway/PathwayController.java | 12 +- .../webapi/pathway/PathwayServiceImpl.java | 18 ++- ...rsionToPathwayVersionFullDTOConverter.java | 2 +- ...wayAnalysisToPathwayAnalysisConverter.java | 2 +- .../pathway/domain/PathwayAnalysisEntity.java | 20 +-- .../PathwayAnalysisGenerationEntity.java | 10 +- .../webapi/pathway/domain/PathwayCohort.java | 14 +- .../pathway/domain/PathwayEventCohort.java | 2 +- .../pathway/domain/PathwayTargetCohort.java | 2 +- .../webapi/prediction/PredictionAnalysis.java | 14 +- .../prediction/PredictionController.java | 16 +-- .../prediction/PredictionServiceImpl.java | 14 +- .../domain/PredictionGenerationEntity.java | 2 +- .../specification/AdaBoostSettingsImpl.java | 8 +- .../DecisionTreeSettingsImpl.java | 16 +-- .../GradientBoostingMachineSettingsImpl.java | 16 +-- .../specification/MLPSettingsImpl.java | 8 +- .../RandomForestSettingsImpl.java | 20 +-- .../report/mapper/GenericRowMapper.java | 40 +++--- .../webapi/reusable/ReusableController.java | 24 ++-- .../webapi/reusable/ReusableService.java | 6 +- ...sionToReusableVersionFullDTOConverter.java | 2 +- .../webapi/reusable/domain/Reusable.java | 18 +-- .../webapi/security/PermissionController.java | 18 +-- .../webapi/security/PermissionService.java | 8 +- .../ohdsi/webapi/security/SSOController.java | 12 +- .../security/SecurityConfigurationInfo.java | 4 +- .../config/HibernateListenerConfigurer.java | 6 +- .../model/SourcePermissionSchema.java | 2 +- .../webapi/service/AbstractDaoService.java | 8 +- .../ohdsi/webapi/service/ActivityService.java | 8 +- .../webapi/service/CDMResultsService.java | 18 +-- .../webapi/service/CohortAnalysisService.java | 18 +-- .../service/CohortDefinitionService.java | 72 +++++----- .../service/CohortGenerationService.java | 6 +- .../webapi/service/CohortResultsService.java | 11 +- .../webapi/service/CohortSampleService.java | 28 ++-- .../ohdsi/webapi/service/CohortService.java | 16 +-- .../webapi/service/ConceptSetService.java | 12 +- .../org/ohdsi/webapi/service/DDLService.java | 10 +- .../ohdsi/webapi/service/EvidenceService.java | 22 +-- .../webapi/service/FeasibilityService.java | 30 ++-- .../service/FeatureExtractionService.java | 10 +- .../org/ohdsi/webapi/service/HttpClient.java | 9 +- .../webapi/service/IRAnalysisResource.java | 24 ++-- .../webapi/service/IRAnalysisService.java | 40 +++--- .../org/ohdsi/webapi/service/JobService.java | 22 +-- .../ohdsi/webapi/service/PersonService.java | 14 +- .../webapi/service/SqlRenderService.java | 10 +- .../service/TherapyPathResultsService.java | 14 +- .../org/ohdsi/webapi/service/UserService.java | 8 +- .../webapi/service/VocabularyService.java | 44 +++--- .../cscompare/ConceptSetCompareService.java | 2 +- .../cscompare/ExpressionFileUtils.java | 4 +- .../shiro/Entities/PermissionEntity.java | 16 +-- .../webapi/shiro/Entities/RoleEntity.java | 16 +-- .../shiro/Entities/RolePermissionEntity.java | 14 +- .../webapi/shiro/Entities/RoleRepository.java | 16 ++- .../webapi/shiro/Entities/UserEntity.java | 2 +- .../webapi/shiro/Entities/UserRoleEntity.java | 18 +-- .../ohdsi/webapi/shiro/PermissionManager.java | 88 ++---------- .../org/ohdsi/webapi/shiro/TokenManager.java | 4 +- .../AuthenticatingPropagationFilter.java | 6 +- .../webapi/shiro/filters/CacheFilter.java | 12 +- .../webapi/shiro/filters/CasHandleFilter.java | 14 +- .../webapi/shiro/filters/CorsFilter.java | 8 +- .../shiro/filters/ExceptionHandlerFilter.java | 12 +- .../filters/ForceSessionCreationFilter.java | 4 +- .../filters/GoogleAccessTokenFilter.java | 6 +- .../shiro/filters/GoogleIapJwtAuthFilter.java | 12 +- .../shiro/filters/HideResourceFilter.java | 6 +- .../webapi/shiro/filters/LogoutFilter.java | 6 +- .../filters/RedirectOnFailedOAuthFilter.java | 4 +- .../shiro/filters/ResponseNoCacheFilter.java | 14 +- .../webapi/shiro/filters/RunAsFilter.java | 6 +- .../filters/SendTokenInHeaderFilter.java | 33 ++--- .../shiro/filters/SendTokenInUrlFilter.java | 4 +- .../filters/SkipFurtherFilteringFilter.java | 16 +-- .../filters/UpdateAccessTokenFilter.java | 38 ++--- .../filters/UrlBasedAuthorizingFilter.java | 10 +- .../filters/auth/AbstractLdapAuthFilter.java | 4 +- .../filters/auth/AtlasJwtAuthFilter.java | 6 +- .../shiro/filters/auth/JdbcAuthFilter.java | 4 +- .../filters/auth/KerberosAuthFilter.java | 8 +- .../shiro/filters/auth/SamlHandleFilter.java | 10 +- .../lockout/LockoutWebSecurityManager.java | 18 +-- .../shiro/management/AtlasGoogleSecurity.java | 2 +- .../management/AtlasRegularSecurity.java | 10 +- .../shiro/management/AtlasSecurity.java | 4 +- .../DataSourceAccessBeanPostProcessor.java | 2 +- .../shiro/management/DisabledSecurity.java | 2 +- .../webapi/shiro/management/Security.java | 2 +- .../datasource/BaseDataSourceAccessor.java | 4 +- .../datasource/CcGenerationIdAccessor.java | 2 +- .../PathwayAnalysisGenerationIdAccessor.java | 2 +- .../ohdsi/webapi/shiro/mapper/UserMapper.java | 4 +- .../ohdsi/webapi/shiro/realms/ADRealm.java | 4 +- .../subject/WebDelegatingRunAsSubject.java | 4 +- .../WebDelegatingRunAsSubjectFactory.java | 4 +- .../java/org/ohdsi/webapi/source/Source.java | 24 ++-- .../ohdsi/webapi/source/SourceController.java | 8 +- .../org/ohdsi/webapi/source/SourceDaimon.java | 20 +-- .../ohdsi/webapi/source/SourceRequest.java | 2 +- .../ohdsi/webapi/source/SourceService.java | 2 +- .../org/ohdsi/webapi/tag/TagController.java | 22 ++- .../org/ohdsi/webapi/tag/TagGroupService.java | 4 +- .../ohdsi/webapi/tag/TagSecurityUtils.java | 6 +- .../java/org/ohdsi/webapi/tag/TagService.java | 4 +- .../tag/converter/TagTypeConverter.java | 2 +- .../ohdsi/webapi/tag/domain/AssetTagPK.java | 4 +- .../tag/domain/CohortCharacterizationTag.java | 12 +- .../ohdsi/webapi/tag/domain/CohortTag.java | 12 +- .../webapi/tag/domain/ConceptSetTag.java | 12 +- .../org/ohdsi/webapi/tag/domain/IrTag.java | 12 +- .../ohdsi/webapi/tag/domain/PathwayTag.java | 12 +- .../ohdsi/webapi/tag/domain/ReusableTag.java | 12 +- .../java/org/ohdsi/webapi/tag/domain/Tag.java | 20 +-- .../org/ohdsi/webapi/tag/domain/TagType.java | 2 +- .../webapi/tag/repository/TagRepository.java | 60 ++++---- .../user/importer/UserImportController.java | 24 ++-- .../importer/UserImportJobController.java | 26 ++-- .../user/importer/model/RoleGroupEntity.java | 18 +-- .../user/importer/model/UserImportJob.java | 24 ++-- .../model/UserImportJobHistoryItem.java | 20 +-- .../providers/ActiveDirectoryProvider.java | 1 - .../providers/DefaultLdapProvider.java | 2 +- .../repository/LdapProviderTypeConverter.java | 2 +- .../service/UserImportJobServiceImpl.java | 4 +- .../service/UserImportServiceImpl.java | 2 +- .../importer/service/UserImportTasklet.java | 2 +- .../webapi/util/CancelableJdbcTemplate.java | 10 +- .../webapi/util/DataSourceDTOParser.java | 2 +- .../org/ohdsi/webapi/util/ExceptionUtils.java | 2 +- .../webapi/util/GenericExceptionMapper.java | 20 +-- .../java/org/ohdsi/webapi/util/HttpUtils.java | 6 +- .../java/org/ohdsi/webapi/util/JobUtils.java | 2 +- .../java/org/ohdsi/webapi/util/NameUtils.java | 2 +- .../ohdsi/webapi/util/OutputStreamWriter.java | 10 +- .../ohdsi/webapi/util/PreparedSqlRender.java | 16 +-- .../util/PreparedStatementRenderer.java | 20 +-- .../java/org/ohdsi/webapi/util/SqlUtils.java | 4 +- .../webapi/util/TempTableCleanupManager.java | 2 +- .../domain/CharacterizationVersion.java | 4 +- .../versioning/domain/CohortVersion.java | 6 +- .../versioning/domain/ConceptSetVersion.java | 4 +- .../webapi/versioning/domain/IRVersion.java | 6 +- .../versioning/domain/PathwayVersion.java | 4 +- .../versioning/domain/ReusableVersion.java | 6 +- .../webapi/versioning/domain/Version.java | 12 +- .../webapi/versioning/domain/VersionPK.java | 4 +- .../repository/VersionRepository.java | 14 +- .../versioning/service/VersionService.java | 11 +- .../VocabularySearchServiceImpl.java | 2 +- .../converter/OidcLongTimeConverter.java | 10 +- src/main/resources/application.properties | 22 +-- .../ohdsi/webapi/AbstractDatabaseTest.java | 8 +- .../cdmresults/cache/CDMResultsCacheTest.java | 29 ++-- .../webapi/check/checker/BaseCheckerTest.java | 7 +- .../checker/CharacterizationCheckerTest.java | 7 +- .../check/checker/EstimationCheckerTest.java | 9 +- .../webapi/check/checker/IRCheckerTest.java | 7 +- .../check/checker/PathwayCheckerTest.java | 7 +- .../check/checker/PredictionCheckerTest.java | 9 +- .../CohortCharacterizationServiceTest.java | 44 +++--- .../SkeletonCohortCharacterizationTest.java | 5 +- .../CohortResultsAnalysisRunnerTest.java | 65 +++++---- .../org/ohdsi/webapi/entity/CCEntityTest.java | 10 +- .../entity/CohortDefinitionEntityTest.java | 10 +- .../webapi/entity/ConceptSetEntityTest.java | 10 +- .../webapi/entity/EstimationEntityTest.java | 20 +-- .../org/ohdsi/webapi/entity/IREntityTest.java | 10 +- .../webapi/entity/PathwayEntityTest.java | 10 +- .../webapi/entity/PredictionEntityTest.java | 18 +-- .../org/ohdsi/webapi/entity/TestCopy.java | 2 +- .../org/ohdsi/webapi/entity/TestCreate.java | 4 +- .../org/ohdsi/webapi/entity/TestImport.java | 2 +- .../service/AnalysisZipRepackServiceTest.java | 8 +- .../ScriptExecutionServiceImplTest.java | 23 +-- .../generationcache/GenerationCacheTest.java | 40 +++--- .../webapi/pathway/PathwayAnalysisTest.java | 68 +++++---- .../webapi/service/AbstractServiceTest.java | 7 +- .../AbstractSpringBootServiceTest.java | 3 - .../webapi/service/CDMResultsServiceTest.java | 8 +- .../service/CohortResultsServiceTest.java | 33 +++-- .../webapi/service/EvidenceServiceTest.java | 11 +- .../webapi/service/PersonServiceTest.java | 16 +-- .../webapi/service/SqlRenderServiceTest.java | 13 +- .../TherapyPathResultsServiceTest.java | 10 +- .../webapi/service/VocabularyServiceTest.java | 8 +- .../ohdsi/webapi/tagging/BaseTaggingTest.java | 12 +- .../org/ohdsi/webapi/test/AbstractShiro.java | 4 +- .../webapi/test/CohortAnalysisServiceIT.java | 10 +- .../java/org/ohdsi/webapi/test/ITStarter.java | 8 +- .../org/ohdsi/webapi/test/JobServiceIT.java | 19 ++- .../org/ohdsi/webapi/test/SecurityIT.java | 12 +- .../webapi/test/VocabularyServiceIT.java | 10 +- .../java/org/ohdsi/webapi/test/WebApiIT.java | 23 ++- .../test/feasibility/FeasibilityTests.java | 7 +- .../test/feasibility/StudyInfoTest.java | 7 +- .../webapi/util/DataSourceDTOParserTest.java | 30 ++-- .../ohdsi/webapi/util/JsonMappingTest.java | 2 +- .../util/PreparedStatementRendererTest.java | 50 ++++--- .../webapi/versioning/BaseVersioningTest.java | 14 +- .../webapi/versioning/CcVersioningTest.java | 4 +- .../versioning/CohortVersioningTest.java | 4 +- .../versioning/ConceptSetVersioningTest.java | 4 +- .../webapi/versioning/IRVersioningTest.java | 4 +- .../versioning/PathwayVersioningTest.java | 4 +- .../versioning/ReusableVersioningTest.java | 4 +- .../test/ConceptSetExpressionTests.java | 28 ++-- .../resources/application-test.properties | 6 +- 373 files changed, 2088 insertions(+), 2259 deletions(-) diff --git a/pom.xml b/pom.xml index eacc67b7a..6a8f3ef5a 100644 --- a/pom.xml +++ b/pom.xml @@ -32,8 +32,8 @@ 2.14 1.16.1 3.1.2 - 6.0.2 - 2.14.3 + 4.0.0 + 2.14.3 org.ohdsi.webapi.WebApi false false @@ -592,14 +592,6 @@ redshift-jdbc42-no-awssdk 1.2.10.1009 - - @@ -881,7 +873,6 @@ 4.1 jar - - - - - org.apache.shiro - shiro-core - ${shiro.version} - jakarta - - - org.apache.shiro - shiro-web - ${shiro.version} - jakarta - - - - org.apache.shiro - shiro-spring-boot-web-starter - ${shiro.version} - jakarta - - - org.apache.shiro - shiro-spring-boot-starter - ${shiro.version} - jakarta - - - org.apache.shiro - shiro-spring - ${shiro.version} - jakarta - - com.github.waffle waffle-shiro @@ -987,14 +943,6 @@ buji-pac4j 5.0.1 - - - - org.pac4j - pac4j-jakartaee - ${pac4j.version} - - org.pac4j pac4j-oauth @@ -1030,10 +978,8 @@ org.pac4j - - pac4j-saml-opensamlv5 - - 5.7.4 + pac4j-saml-opensamlv3 + ${pac4j.version} org.ohdsi @@ -1304,12 +1250,7 @@ syslog-java-client 1.1.7 - - org.springframework.boot - spring-boot-configuration-processor - true - - + 2.14.3 org.ohdsi.webapi.WebApi false @@ -377,7 +377,7 @@ org.codehaus.gmaven groovy-maven-plugin 2.1.1 - + org.springframework.boot @@ -475,12 +475,12 @@ miredot-plugin 2.4.0 - + cHJvamVjdHxvcmcub2hkc2kuV2ViQVBJfDIwMjUtMDEtMDF8ZmFsc2V8LTEjTUN3Q0ZDZkowMkZrVmVSeVlBazZVbTBmNThIbE15SjRBaFEwcVZyRUZuamZMTzJ0KzFtR3E3U3lMMkFESHc9PQ== @@ -516,13 +516,13 @@ - + @@ -873,6 +873,7 @@ 4.1 jar + + + + + org.apache.shiro + shiro-core + ${shiro.version} + jakarta + + + org.apache.shiro + shiro-web + ${shiro.version} + jakarta + + + + org.apache.shiro + shiro-spring-boot-web-starter + ${shiro.version} + jakarta + + + org.apache.shiro + shiro-spring-boot-starter + ${shiro.version} + jakarta + + + org.apache.shiro + shiro-spring + ${shiro.version} + jakarta + + com.github.waffle waffle-shiro @@ -943,6 +979,14 @@ buji-pac4j 5.0.1 + + + + org.pac4j + pac4j-jakartaee + ${pac4j.version} + + org.pac4j pac4j-oauth @@ -976,11 +1020,16 @@ - + + + org.pac4j + pac4j-saml-opensamlv5 + 5.7.4 + org.ohdsi circe diff --git a/src/main/java/org/ohdsi/webapi/ConverterConfiguration.java b/src/main/java/org/ohdsi/webapi/ConverterConfiguration.java index e889f770a..5d1ebe4b1 100644 --- a/src/main/java/org/ohdsi/webapi/ConverterConfiguration.java +++ b/src/main/java/org/ohdsi/webapi/ConverterConfiguration.java @@ -10,12 +10,12 @@ public class ConverterConfiguration { @Bean - public GenericConversionService conversionService(){ + GenericConversionService conversionService(){ return new DefaultConversionService(); } @Bean - public ConverterUtils converterUtils(final GenericConversionService conversionService) { + ConverterUtils converterUtils(final GenericConversionService conversionService) { return new ConverterUtils(conversionService); } } diff --git a/src/main/java/org/ohdsi/webapi/ShiroConfiguration.java b/src/main/java/org/ohdsi/webapi/ShiroConfiguration.java index 7c6ed092f..f96ed0703 100644 --- a/src/main/java/org/ohdsi/webapi/ShiroConfiguration.java +++ b/src/main/java/org/ohdsi/webapi/ShiroConfiguration.java @@ -52,7 +52,7 @@ ShiroFilterFactoryBean shiroFilter(Security security, LockoutPolicy lockoutPolic Map filters = security.getFilters().entrySet().stream() .collect(Collectors.toMap(f -> f.getKey().getTemplateName(), Map.Entry::getValue)); - shiroFilter.setFilters(filters); + /* shiroFilter.setFilters(filters); Spring Boot 3 migration compilation issue */ shiroFilter.setFilterChainDefinitionMap(security.getFilterChain()); return shiroFilter; From 6faf8a8220e34d563e9e9ebc89e8f04e471509fe Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Fri, 17 May 2024 11:41:50 -0400 Subject: [PATCH 009/141] changes for MDACA Migration to SB 3 --- .../cohortanalysis/CohortAnalysisTasklet.java | 6 +++--- .../service/ScriptExecutionServiceImpl.java | 8 ++++---- .../ohdsi/webapi/security/PermissionService.java | 4 ++-- src/main/java/org/ohdsi/webapi/tag/TagService.java | 14 +++++++------- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisTasklet.java b/src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisTasklet.java index d845ba6f5..0c48aab4c 100644 --- a/src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisTasklet.java +++ b/src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisTasklet.java @@ -71,7 +71,7 @@ public RepeatStatus execute(final StepContribution contribution, final ChunkCont String failMessage = null; Integer cohortDefinitionId = Integer.parseInt(task.getCohortDefinitionIds().get(0)); this.transactionTemplate.execute(status -> { - CohortDefinition cohortDef = cohortDefinitionRepository.findOne(cohortDefinitionId); + CohortDefinition cohortDef = cohortDefinitionRepository.findById(cohortDefinitionId).get(); CohortAnalysisGenerationInfo gi = cohortDef.getCohortAnalysisGenerationInfoList().stream() .filter(a -> a.getSourceId() == task.getSource().getSourceId()) .findFirst() @@ -95,7 +95,7 @@ public RepeatStatus execute(final StepContribution contribution, final ChunkCont int[] ret = executor.execute(progress -> { transactionTemplateRequiresNew.execute(status -> { - CohortDefinition cohortDef = cohortDefinitionRepository.findOne(cohortDefinitionId); + CohortDefinition cohortDef = cohortDefinitionRepository.findById(cohortDefinitionId).get(); CohortAnalysisGenerationInfo info = cohortDef.getCohortAnalysisGenerationInfoList().stream() .filter(a -> a.getSourceId() == task.getSource().getSourceId()) .findFirst().orElseThrow(NotFoundException::new); @@ -124,7 +124,7 @@ public RepeatStatus execute(final StepContribution contribution, final ChunkCont this.transactionTemplateRequiresNew.execute(status -> { - CohortDefinition cohortDef = cohortDefinitionRepository.findOne(cohortDefinitionId); + CohortDefinition cohortDef = cohortDefinitionRepository.findById(cohortDefinitionId).get(); CohortAnalysisGenerationInfo info = cohortDef.getCohortAnalysisGenerationInfoList().stream() .filter(a -> a.getSourceId() == task.getSource().getSourceId()) .findFirst().orElseThrow(NotFoundException::new); diff --git a/src/main/java/org/ohdsi/webapi/executionengine/service/ScriptExecutionServiceImpl.java b/src/main/java/org/ohdsi/webapi/executionengine/service/ScriptExecutionServiceImpl.java index c4f070210..026543b75 100644 --- a/src/main/java/org/ohdsi/webapi/executionengine/service/ScriptExecutionServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/executionengine/service/ScriptExecutionServiceImpl.java @@ -216,14 +216,14 @@ private AnalysisRequestDTO buildAnalysisRequest(Long executionId, DataSourceUnse @Override public ExecutionEngineAnalysisStatus createAnalysisExecution(Long jobId, Source source, String password, List analysisFiles) { - ExecutionEngineGenerationEntity executionEngineGenerationEntity = executionEngineGenerationRepository.findOne(jobId); + ExecutionEngineGenerationEntity executionEngineGenerationEntity = executionEngineGenerationRepository.findById(jobId).get(); ExecutionEngineAnalysisStatus execution = new ExecutionEngineAnalysisStatus(); execution.setExecutionStatus(ExecutionEngineAnalysisStatus.Status.STARTED); execution.setExecutionEngineGeneration(executionEngineGenerationEntity); ExecutionEngineAnalysisStatus saved = analysisExecutionRepository.saveAndFlush(execution); if (Objects.nonNull(analysisFiles)) { analysisFiles.forEach(file -> file.setAnalysisExecution(saved)); - inputFileRepository.save(analysisFiles); + inputFileRepository.saveAll(analysisFiles); } return saved; } @@ -236,7 +236,7 @@ public String getExecutionStatus(Long executionId) { if (execution.getExecutionContext().containsKey("engineExecutionId")) { Long execId = execution.getExecutionContext().getLong("engineExecutionId"); - ExecutionEngineAnalysisStatus analysisExecution = analysisExecutionRepository.findOne(execId.intValue()); + ExecutionEngineAnalysisStatus analysisExecution = analysisExecutionRepository.findById(execId.intValue()).get(); if (analysisExecution == null) { throw new NotFoundException("Execution with id=%d was not found".formatted(executionId)); } @@ -258,7 +258,7 @@ public void invalidateExecutions(Date invalidateDate) { exec.setExecutionStatus(ExecutionEngineAnalysisStatus.Status.FAILED); jobInvalidator.invalidateJobExecutionById(exec); }); - analysisExecutionRepository.save(executions); + analysisExecutionRepository.saveAll(executions); return null; }); } diff --git a/src/main/java/org/ohdsi/webapi/security/PermissionService.java b/src/main/java/org/ohdsi/webapi/security/PermissionService.java index f8eaed5f0..ea6fd63f1 100644 --- a/src/main/java/org/ohdsi/webapi/security/PermissionService.java +++ b/src/main/java/org/ohdsi/webapi/security/PermissionService.java @@ -116,7 +116,7 @@ public Map getTemplatesForType(EntityType entityType, AccessType public void checkCommonEntityOwnership(EntityType entityType, Integer entityId) throws Exception { - JpaRepository entityRepository = (JpaRepository) (((Advised) repositories.getRepositoryFor(entityType.getEntityClass())).getTargetSource().getTarget()); + JpaRepository entityRepository = (JpaRepository) (((Advised) repositories.getRepositoryFor(entityType.getEntityClass()).get()).getTargetSource().getTarget()); Class idClazz = Arrays.stream(entityType.getEntityClass().getMethods()) // Overriden methods from parameterized interface are "bridges" and should be ignored. // For more information see https://docs.oracle.com/javase/tutorial/java/generics/bridgeMethods.html @@ -157,7 +157,7 @@ public void removePermissionsFromRole(Map permissionTemplates, I PermissionEntity permissionEntity = permissionRepository.findByValueIgnoreCase(permission); if (permissionEntity != null) { RolePermissionEntity rp = rolePermissionRepository.findByRoleAndPermission(role, permissionEntity); - rolePermissionRepository.delete(rp.getId()); + rolePermissionRepository.deleteById(rp.getId()); } }); } diff --git a/src/main/java/org/ohdsi/webapi/tag/TagService.java b/src/main/java/org/ohdsi/webapi/tag/TagService.java index 616d8976f..deb7a8d08 100644 --- a/src/main/java/org/ohdsi/webapi/tag/TagService.java +++ b/src/main/java/org/ohdsi/webapi/tag/TagService.java @@ -75,11 +75,11 @@ public Tag create(Tag tag) { } public Tag getById(Integer id) { - return tagRepository.findOne(id); + return tagRepository.findById(id).get(); } public TagDTO getDTOById(Integer id) { - Tag tag = tagRepository.findOne(id); + Tag tag = tagRepository.findById(id).get(); return conversionService.convert(tag, TagDTO.class); } @@ -108,7 +108,7 @@ public List findByIdIn(List ids) { } public TagDTO update(Integer id, TagDTO entity) { - Tag existing = tagRepository.findOne(id); + Tag existing = tagRepository.findById(id).get(); checkOwnerOrAdmin(existing.getCreatedBy()); @@ -130,17 +130,17 @@ public TagDTO update(Integer id, TagDTO entity) { } public void delete(Integer id) { - Tag existing = tagRepository.findOne(id); + Tag existing = tagRepository.findById(id).get(); checkOwnerOrAdmin(existing.getCreatedBy()); - tagRepository.delete(id); + tagRepository.deleteById(id); } private Tag save(Tag tag) { tag = tagRepository.saveAndFlush(tag); entityManager.refresh(tag); - return tagRepository.findOne(tag.getId()); + return tagRepository.findById(tag.getId()).get(); } @Transactional @@ -163,7 +163,7 @@ public void refreshTagStatistics() { } }) .collect(Collectors.toList()); - tagRepository.save(tags); + tagRepository.saveAll(tags); } catch (Exception e) { logger.error("Cannot refresh tags statistics"); } From 451f6736921b7bf603a8f81c18f2d5a9de21b5c4 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 17 May 2024 12:11:58 -0400 Subject: [PATCH 010/141] MDACA Spring boot 3 migration --- pom.xml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 3a1cc69db..d2834b399 100644 --- a/pom.xml +++ b/pom.xml @@ -981,11 +981,16 @@ - + + + org.pac4j + jakartaee-pac4j + 8.0.1 + org.pac4j @@ -1299,7 +1304,12 @@ syslog-java-client 1.1.7 - + + org.springframework.boot + spring-boot-configuration-processor + true + + @@ -974,10 +974,18 @@ jakarta.validation jakarta.validation-api + + + + org.jasig.cas.client + cas-client-core + 3.6.1 + + io.buji buji-pac4j - 5.0.1 + 8.1.0 diff --git a/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java b/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java index dcb43dee0..e90c3e45f 100644 --- a/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java @@ -341,7 +341,7 @@ public int getCountCcWithSameName(Long id, String name) { @Override public void deleteCc(Long ccId) { - repository.delete(ccId); + repository.deleteById(ccId); } @Override @@ -392,7 +392,7 @@ private void updateStratas(CohortCharacterizationEntity entity, CohortCharacteri existingLink -> entity.getStratas().stream().noneMatch(newLink -> Objects.equals(newLink.getId(), existingLink.getId())), CohortCharacterizationEntity::getStratas); foundEntity.getStratas().removeAll(stratasToDelete); - strataRepository.delete(stratasToDelete); + strataRepository.deleteAll(stratasToDelete); Map strataEntityMap = foundEntity.getStratas().stream() .collect(Collectors.toMap(CcStrataEntity::getId, s -> s)); @@ -413,7 +413,7 @@ private void updateStratas(CohortCharacterizationEntity entity, CohortCharacteri return updated; } }).collect(Collectors.toList()); - entity.setStratas(new HashSet<>(strataRepository.save(updatedStratas))); + entity.setStratas(new HashSet<>(strataRepository.saveAll(updatedStratas))); } private void updateCohorts(final CohortCharacterizationEntity entity, final CohortCharacterizationEntity foundEntity) { @@ -446,7 +446,7 @@ private void deleteParams(final CohortCharacterizationEntity entity, final Cohor parameter -> !nameToParamFromInputMap.containsKey(parameter.getName()), CohortCharacterizationEntity::getParameters); foundEntity.getParameters().removeAll(paramsForDelete); - paramRepository.delete(paramsForDelete); + paramRepository.deleteAll(paramsForDelete); } private void updateOrCreateParams(final CohortCharacterizationEntity entity, final CohortCharacterizationEntity foundEntity) { @@ -462,7 +462,7 @@ private void updateOrCreateParams(final CohortCharacterizationEntity entity, fin paramsForCreateOrUpdate.add(entityFromMap); } } - paramRepository.save(paramsForCreateOrUpdate); + paramRepository.saveAll(paramsForCreateOrUpdate); } @Override @@ -1093,7 +1093,7 @@ private List getGenerationResults(final Source source, final String tr private void gatherForPrevalence(final CcPrevalenceStat stat, final ResultSet rs) throws SQLException { Long generationId = rs.getLong("cc_generation_id"); - CcGenerationEntity ccGeneration = ccGenerationRepository.findOne(generationId); + CcGenerationEntity ccGeneration = ccGenerationRepository.findById(generationId).get(); stat.setFaType(rs.getString("fa_type")); stat.setSourceKey(ccGeneration.getSource().getSourceKey()); diff --git a/src/main/java/org/ohdsi/webapi/cohortcharacterization/converter/CharacterizationVersionToCharacterizationVersionFullDTOConverter.java b/src/main/java/org/ohdsi/webapi/cohortcharacterization/converter/CharacterizationVersionToCharacterizationVersionFullDTOConverter.java index 77be7427f..2fbb1c97b 100644 --- a/src/main/java/org/ohdsi/webapi/cohortcharacterization/converter/CharacterizationVersionToCharacterizationVersionFullDTOConverter.java +++ b/src/main/java/org/ohdsi/webapi/cohortcharacterization/converter/CharacterizationVersionToCharacterizationVersionFullDTOConverter.java @@ -31,7 +31,7 @@ public class CharacterizationVersionToCharacterizationVersionFullDTOConverter @Override public CcVersionFullDTO convert(CharacterizationVersion source) { - CohortCharacterizationEntity def = ccRepository.findOne(source.getAssetId()); + CohortCharacterizationEntity def = ccRepository.findById(source.getAssetId()).get(); CohortCharacterizationImpl characterizationImpl = Utils.deserialize(source.getAssetJson(), CohortCharacterizationImpl.class); CohortCharacterizationEntity entity = conversionService.convert(characterizationImpl, CohortCharacterizationEntity.class); diff --git a/src/main/java/org/ohdsi/webapi/cohortdefinition/GenerationJobExecutionListener.java b/src/main/java/org/ohdsi/webapi/cohortdefinition/GenerationJobExecutionListener.java index b50150abe..0e110822a 100644 --- a/src/main/java/org/ohdsi/webapi/cohortdefinition/GenerationJobExecutionListener.java +++ b/src/main/java/org/ohdsi/webapi/cohortdefinition/GenerationJobExecutionListener.java @@ -84,7 +84,7 @@ public void afterJob(JobExecution je) { try { Source source = sourceService.findBySourceId(sourceId); - CohortDefinition df = this.cohortDefinitionRepository.findOne(defId); + CohortDefinition df = this.cohortDefinitionRepository.findById(defId).get(); CohortGenerationInfo info = findBySourceId(df, sourceId); setExecutionDurationIfPossible(je, info); info.setStatus(GenerationStatus.COMPLETE); @@ -138,7 +138,7 @@ public void beforeJob(JobExecution je) { initTx.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRES_NEW); TransactionStatus initStatus = this.transactionTemplate.getTransactionManager().getTransaction(initTx); try { - CohortDefinition df = this.cohortDefinitionRepository.findOne(defId); + CohortDefinition df = this.cohortDefinitionRepository.findById(defId).get(); CohortGenerationInfo info = findBySourceId(df, sourceId); info.setIsValid(false); info.setStartTime(startTime); diff --git a/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java b/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java index ca2b4eb76..268bd057f 100644 --- a/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java +++ b/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java @@ -55,7 +55,7 @@ private Integer doTask(ChunkContext chunkContext) { if (jobParams.containsKey(SOURCE_ID)) { int sourceId = Integer.parseInt(jobParams.get(SOURCE_ID).toString()); - Source source = this.sourceRepository.findOne(sourceId); + Source source = this.sourceRepository.findById(sourceId).get(); if (source != null) { return mapSource(source, cohortDefinitionId); } else { diff --git a/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java b/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java index 731eea7ad..cd80ae8d5 100644 --- a/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java +++ b/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java @@ -450,7 +450,7 @@ public void deleteSample(int cohortDefinitionId, Source source, int sampleId) { resultsSchema, "cohortSampleId", sampleId).getSql(); - CohortSample sample = sampleRepository.findOne(sampleId); + CohortSample sample = sampleRepository.findById(sampleId); if (sample == null) { throw new NotFoundException("Sample with ID " + sampleId + " does not exist"); } diff --git a/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetRepository.java b/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetRepository.java index bdd42445d..de98a54aa 100644 --- a/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetRepository.java +++ b/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetRepository.java @@ -28,7 +28,6 @@ * @author fdefalco */ public interface ConceptSetRepository extends CrudRepository { - ConceptSet findById(Integer conceptSetId); @Deprecated @Query("SELECT cs FROM ConceptSet cs WHERE cs.name = :conceptSetName and cs.id <> :conceptSetId") diff --git a/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java b/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java index aed873e48..4cd837034 100644 --- a/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java @@ -156,7 +156,7 @@ public Estimation getById(Integer id) { @Override public void delete(final int id) { - this.estimationRepository.delete(id); + this.estimationRepository.deleteById(id); } @Override diff --git a/src/main/java/org/ohdsi/webapi/ircalc/IRAnalysisTasklet.java b/src/main/java/org/ohdsi/webapi/ircalc/IRAnalysisTasklet.java index 3ebe29fe2..b95e46fd8 100644 --- a/src/main/java/org/ohdsi/webapi/ircalc/IRAnalysisTasklet.java +++ b/src/main/java/org/ohdsi/webapi/ircalc/IRAnalysisTasklet.java @@ -72,7 +72,7 @@ protected String[] prepareQueries(ChunkContext chunkContext, CancelableJdbcTempl Integer analysisId = Integer.valueOf(jobParams.get(ANALYSIS_ID).toString()); String sessionId = jobParams.get(SESSION_ID).toString(); try { - IncidenceRateAnalysis analysis = this.incidenceRateAnalysisRepository.findOne(analysisId); + IncidenceRateAnalysis analysis = this.incidenceRateAnalysisRepository.findById(analysisId).get(); IncidenceRateAnalysisExpression expression = objectMapper.readValue(analysis.getDetails().getExpression(), IncidenceRateAnalysisExpression.class); IRAnalysisQueryBuilder.BuildExpressionQueryOptions options = new IRAnalysisQueryBuilder.BuildExpressionQueryOptions(); diff --git a/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java b/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java index cfcd64d04..28ac2705b 100644 --- a/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java @@ -611,14 +611,14 @@ private void checkVersion(int id, int version, boolean checkOwnerShip) { ExceptionUtils.throwNotFoundExceptionIfNull(pathwayVersion, "There is no pathway analysis version with id = %d.".formatted(version)); - PathwayAnalysisEntity entity = this.pathwayAnalysisRepository.findOne(id); + PathwayAnalysisEntity entity = this.pathwayAnalysisRepository.findById(id).get(); if (checkOwnerShip) { checkOwnerOrAdminOrGranted(entity); } } public PathwayVersion saveVersion(int id) { - PathwayAnalysisEntity def = this.pathwayAnalysisRepository.findOne(id); + PathwayAnalysisEntity def = this.pathwayAnalysisRepository.findById(id).get(); PathwayVersion version = genericConversionService.convert(def, PathwayVersion.class); UserEntity user = Objects.nonNull(def.getModifiedBy()) ? def.getModifiedBy() : def.getCreatedBy(); diff --git a/src/main/java/org/ohdsi/webapi/pathway/converter/PathwayVersionToPathwayVersionFullDTOConverter.java b/src/main/java/org/ohdsi/webapi/pathway/converter/PathwayVersionToPathwayVersionFullDTOConverter.java index c60611d61..cfcc35ac2 100644 --- a/src/main/java/org/ohdsi/webapi/pathway/converter/PathwayVersionToPathwayVersionFullDTOConverter.java +++ b/src/main/java/org/ohdsi/webapi/pathway/converter/PathwayVersionToPathwayVersionFullDTOConverter.java @@ -35,7 +35,7 @@ public class PathwayVersionToPathwayVersionFullDTOConverter @Override public PathwayVersionFullDTO convert(PathwayVersion source) { - PathwayAnalysisEntity def = this.analysisRepository.findOne(source.getAssetId().intValue()); + PathwayAnalysisEntity def = this.analysisRepository.findById(source.getAssetId().intValue()).get(); ExceptionUtils.throwNotFoundExceptionIfNull(def, "There is no pathway analysis with id = %d.".formatted(source.getAssetId())); diff --git a/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java b/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java index e414b4b85..dcaf60e00 100644 --- a/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java @@ -167,7 +167,7 @@ private List getNamesLike(String name) { @Override public PredictionAnalysis copy(final int id) { - PredictionAnalysis analysis = this.predictionAnalysisRepository.findOne(id); + PredictionAnalysis analysis = this.predictionAnalysisRepository.findById(id).get(); entityManager.detach(analysis); // Detach from the persistence context in order to save a copy analysis.setId(null); analysis.setName(getNameForCopy(analysis.getName())); diff --git a/src/main/java/org/ohdsi/webapi/reusable/converter/ReusableVersionToReusableVersionFullDTOConverter.java b/src/main/java/org/ohdsi/webapi/reusable/converter/ReusableVersionToReusableVersionFullDTOConverter.java index 163ceec08..a60c1fe55 100644 --- a/src/main/java/org/ohdsi/webapi/reusable/converter/ReusableVersionToReusableVersionFullDTOConverter.java +++ b/src/main/java/org/ohdsi/webapi/reusable/converter/ReusableVersionToReusableVersionFullDTOConverter.java @@ -19,7 +19,7 @@ public class ReusableVersionToReusableVersionFullDTOConverter @Override public ReusableVersionFullDTO convert(ReusableVersion source) { - Reusable def = this.repository.findOne(source.getAssetId().intValue()); + Reusable def = this.repository.findById(source.getAssetId().intValue()).get(); ExceptionUtils.throwNotFoundExceptionIfNull(def, "There is no reusable with id = %d.".formatted(source.getAssetId())); diff --git a/src/main/java/org/ohdsi/webapi/service/CohortAnalysisService.java b/src/main/java/org/ohdsi/webapi/service/CohortAnalysisService.java index cbdfd2136..44686e0a3 100644 --- a/src/main/java/org/ohdsi/webapi/service/CohortAnalysisService.java +++ b/src/main/java/org/ohdsi/webapi/service/CohortAnalysisService.java @@ -278,7 +278,7 @@ public JobExecutionResource queueCohortAnalysisJob(CohortAnalysisTask task) thro // clear analysis IDs from the generated set this.getTransactionTemplateRequiresNew().execute(status -> { - CohortDefinition cohortDef = this.cohortDefinitionRepository.findOne(Integer.parseInt(task.getCohortDefinitionIds().get(0))); + CohortDefinition cohortDef = this.cohortDefinitionRepository.findById(Integer.parseInt(task.getCohortDefinitionIds().get(0))).get(); CohortAnalysisGenerationInfo info = cohortDef.getCohortAnalysisGenerationInfoList().stream() .filter(a -> a.getSourceId() == task.getSource().getSourceId()) .findFirst() diff --git a/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java b/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java index 7269a2850..58d2af084 100644 --- a/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java +++ b/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java @@ -577,7 +577,7 @@ public CohortDTO saveCohortDefinition(@PathParam("id") final int id, CohortDTO d public JobExecutionResource generateCohort(@PathParam("id") final int id, @PathParam("sourceKey") final String sourceKey) { Source source = getSourceRepository().findBySourceKey(sourceKey); - CohortDefinition currentDefinition = this.cohortDefinitionRepository.findOne(id); + CohortDefinition currentDefinition = this.cohortDefinitionRepository.findById(id).get(); UserEntity user = userRepository.findByLogin(security.getSubject()); return cohortGenerationService.generateCohortViaJob(user, currentDefinition, source); } @@ -606,7 +606,7 @@ public Response cancelGenerateCohort(@PathParam("id") final int id, @PathParam(" final Source source = Optional.ofNullable(getSourceRepository().findBySourceKey(sourceKey)) .orElseThrow(NotFoundException::new); getTransactionTemplateRequiresNew().execute(status -> { - CohortDefinition currentDefinition = cohortDefinitionRepository.findOne(id); + CohortDefinition currentDefinition = cohortDefinitionRepository.findById(id).get(); if (Objects.nonNull(currentDefinition)) { CohortGenerationInfo info = findBySourceId(currentDefinition.getGenerationInfoList(), source.getSourceId()); if (Objects.nonNull(info)) { @@ -645,7 +645,7 @@ public Response cancelGenerateCohort(@PathParam("id") final int id, @PathParam(" @Path("/{id}/info") @Transactional public List getInfo(@PathParam("id") final int id) { - CohortDefinition def = this.cohortDefinitionRepository.findOne(id); + CohortDefinition def = this.cohortDefinitionRepository.findById(id).get(); ExceptionUtils.throwNotFoundExceptionIfNull(def, "There is no cohort definition with id = %d.".formatted(id)); Set infoList = def.getGenerationInfoList(); @@ -706,7 +706,7 @@ public void delete(@PathParam("id") final int id) { this.getTransactionTemplateRequiresNew().execute(new TransactionCallbackWithoutResult() { @Override public void doInTransactionWithoutResult(final TransactionStatus status) { - CohortDefinition def = cohortDefinitionRepository.findOne(id); + CohortDefinition def = cohortDefinitionRepository.findById(id).get(); if (!Objects.isNull(def)) { def.getGenerationInfoList().forEach(cohortGenerationInfo -> { Integer sourceId = cohortGenerationInfo.getId().getSourceId(); @@ -960,7 +960,7 @@ private Response printFrindly(String markdown, String format) { @Path("/{id}/tag/") @Transactional public void assignTag(@PathParam("id") final Integer id, final int tagId) { - CohortDefinition entity = cohortDefinitionRepository.findOne(id); + CohortDefinition entity = cohortDefinitionRepository.findById(id).get(); checkOwnerOrAdminOrGranted(entity); assignTag(entity, tagId); } @@ -977,7 +977,7 @@ public void assignTag(@PathParam("id") final Integer id, final int tagId) { @Path("/{id}/tag/{tagId}") @Transactional public void unassignTag(@PathParam("id") final Integer id, @PathParam("tagId") final int tagId) { - CohortDefinition entity = cohortDefinitionRepository.findOne(id); + CohortDefinition entity = cohortDefinitionRepository.findById(id).get(); checkOwnerOrAdminOrGranted(entity); unassignTag(entity, tagId); } @@ -1157,7 +1157,7 @@ private void checkVersion(int id, int version, boolean checkOwnerShip) { ExceptionUtils.throwNotFoundExceptionIfNull(cohortVersion, "There is no cohort version with id = %d.".formatted(version)); - CohortDefinition entity = cohortDefinitionRepository.findOne(id); + CohortDefinition entity = cohortDefinitionRepository.findById(id).get(); if (checkOwnerShip) { checkOwnerOrAdminOrGranted(entity); } @@ -1183,7 +1183,7 @@ public List getCohortDTOs(List ids) { public List getCohorts(List ids) { return ids.stream() - .map(id -> cohortDefinitionRepository.findOne(id)) + .map(id -> cohortDefinitionRepository.findById(id).get()) .filter(Objects::nonNull) .collect(Collectors.toList()); } diff --git a/src/main/java/org/ohdsi/webapi/service/CohortResultsService.java b/src/main/java/org/ohdsi/webapi/service/CohortResultsService.java index 1427882b0..f9a3c4ed7 100644 --- a/src/main/java/org/ohdsi/webapi/service/CohortResultsService.java +++ b/src/main/java/org/ohdsi/webapi/service/CohortResultsService.java @@ -577,7 +577,7 @@ public void setProgress(Integer progress) { public GenerationInfoDTO getAnalysisProgress(@PathParam("sourceKey") String sourceKey, @PathParam("id") Integer id) { return getTransactionTemplateRequiresNew().execute(status -> { - org.ohdsi.webapi.cohortdefinition.CohortDefinition def = cohortDefinitionRepository.findOne(id); + org.ohdsi.webapi.cohortdefinition.CohortDefinition def = cohortDefinitionRepository.findById(id).get(); Source source = getSourceRepository().findBySourceKey(sourceKey); return def.getCohortAnalysisGenerationInfoList().stream() .filter(cd -> Objects.equals(cd.getSourceId(), source.getSourceId())) diff --git a/src/main/java/org/ohdsi/webapi/service/CohortSampleService.java b/src/main/java/org/ohdsi/webapi/service/CohortSampleService.java index a72f693c9..ba1e05b80 100644 --- a/src/main/java/org/ohdsi/webapi/service/CohortSampleService.java +++ b/src/main/java/org/ohdsi/webapi/service/CohortSampleService.java @@ -68,8 +68,8 @@ public CohortSampleListDTO listCohortSamples( result.setCohortDefinitionId(cohortDefinitionId); result.setSourceId(source.getId()); - CohortGenerationInfo generationInfo = generationInfoRepository.findOne( - new CohortGenerationInfoId(cohortDefinitionId, source.getId())); + CohortGenerationInfo generationInfo = generationInfoRepository.findById( + new CohortGenerationInfoId(cohortDefinitionId, source.getId())).get(); result.setGenerationStatus(generationInfo != null ? generationInfo.getStatus() : null); result.setIsValid(generationInfo != null && generationInfo.isIsValid()); @@ -170,11 +170,11 @@ public CohortSampleDTO createCohortSample( ) { sampleParameters.validate(); Source source = getSource(sourceKey); - if (cohortDefinitionRepository.findOne(cohortDefinitionId) == null) { + if (cohortDefinitionRepository.findById(cohortDefinitionId).isEmpty()) { throw new NotFoundException("Cohort definition " + cohortDefinitionId + " does not exist."); } - CohortGenerationInfo generationInfo = generationInfoRepository.findOne( - new CohortGenerationInfoId(cohortDefinitionId, source.getId())); + CohortGenerationInfo generationInfo = generationInfoRepository.findById( + new CohortGenerationInfoId(cohortDefinitionId, source.getId())).get(); if (generationInfo == null || generationInfo.getStatus() != GenerationStatus.COMPLETE) { throw new BadRequestException("Cohort is not yet generated"); } @@ -196,7 +196,7 @@ public Response deleteCohortSample( @PathParam("sampleId") int sampleId ) { Source source = getSource(sourceKey); - if (cohortDefinitionRepository.findOne(cohortDefinitionId) == null) { + if (cohortDefinitionRepository.findById(cohortDefinitionId).isEmpty()) { throw new NotFoundException("Cohort definition " + cohortDefinitionId + " does not exist."); } samplingService.deleteSample(cohortDefinitionId, source, sampleId); @@ -216,7 +216,7 @@ public Response deleteCohortSamples( @PathParam("cohortDefinitionId") int cohortDefinitionId ) { Source source = getSource(sourceKey); - if (cohortDefinitionRepository.findOne(cohortDefinitionId) == null) { + if (cohortDefinitionRepository.findById(cohortDefinitionId).isEmpty()) { throw new NotFoundException("Cohort definition " + cohortDefinitionId + " does not exist."); } samplingService.launchDeleteSamplesTasklet(cohortDefinitionId, source.getId()); diff --git a/src/main/java/org/ohdsi/webapi/service/ConceptSetService.java b/src/main/java/org/ohdsi/webapi/service/ConceptSetService.java index 2f66b2443..edeea3561 100644 --- a/src/main/java/org/ohdsi/webapi/service/ConceptSetService.java +++ b/src/main/java/org/ohdsi/webapi/service/ConceptSetService.java @@ -121,7 +121,7 @@ public class ConceptSetService extends AbstractDaoService implements HasTags getNamesLike(String copyName) { @Transactional public ConceptSetDTO updateConceptSet(@PathParam("id") final int id, ConceptSetDTO conceptSetDTO) throws Exception { - ConceptSet updated = getConceptSetRepository().findById(id); + ConceptSet updated = getConceptSetRepository().findById(id).get(); if (updated == null) { throw new Exception("Concept Set does not exist."); } @@ -604,7 +604,7 @@ public void deleteConceptSet(@PathParam("id") final int id) { // Remove the concept set try { - getConceptSetRepository().delete(id); + getConceptSetRepository().deleteById(id); } catch (EmptyResultDataAccessException e) { // Ignore - there may be no data log.warn("Failed to delete ConceptSet with ID = {}, {}", id, e); @@ -627,7 +627,7 @@ public void deleteConceptSet(@PathParam("id") final int id) { @Path("/{id}/tag/") @Transactional public void assignTag(@PathParam("id") final Integer id, final int tagId) { - ConceptSet entity = getConceptSetRepository().findById(id); + ConceptSet entity = getConceptSetRepository().findById(id).get(); checkOwnerOrAdminOrGranted(entity); assignTag(entity, tagId); } @@ -645,7 +645,7 @@ public void assignTag(@PathParam("id") final Integer id, final int tagId) { @Path("/{id}/tag/{tagId}") @Transactional public void unassignTag(@PathParam("id") final Integer id, @PathParam("tagId") final int tagId) { - ConceptSet entity = getConceptSetRepository().findById(id); + ConceptSet entity = getConceptSetRepository().findById(id).get(); checkOwnerOrAdminOrGranted(entity); unassignTag(entity, tagId); } @@ -841,14 +841,14 @@ private void checkVersion(int id, int version, boolean checkOwnerShip) { Version conceptSetVersion = versionService.getById(VersionType.CONCEPT_SET, id, version); ExceptionUtils.throwNotFoundExceptionIfNull(conceptSetVersion, "There is no concept set version with id = %d.".formatted(version)); - ConceptSet entity = getConceptSetRepository().findOne(id); + ConceptSet entity = getConceptSetRepository().findById(id).get(); if (checkOwnerShip) { checkOwnerOrAdminOrGranted(entity); } } private ConceptSetVersion saveVersion(int id) { - ConceptSet def = getConceptSetRepository().findById(id); + ConceptSet def = getConceptSetRepository().findById(id).get(); ConceptSetVersion version = conversionService.convert(def, ConceptSetVersion.class); UserEntity user = Objects.nonNull(def.getModifiedBy()) ? def.getModifiedBy() : def.getCreatedBy(); diff --git a/src/main/java/org/ohdsi/webapi/service/FeasibilityService.java b/src/main/java/org/ohdsi/webapi/service/FeasibilityService.java index 3453d2376..42f35d3b9 100644 --- a/src/main/java/org/ohdsi/webapi/service/FeasibilityService.java +++ b/src/main/java/org/ohdsi/webapi/service/FeasibilityService.java @@ -507,7 +507,7 @@ public FeasibilityService.FeasibilityStudyDTO saveStudy(@PathParam("id") final i UserEntity user = userRepository.findByLogin(security.getSubject()); - FeasibilityStudy updatedStudy = this.feasibilityStudyRepository.findOne(id); + FeasibilityStudy updatedStudy = this.feasibilityStudyRepository.findById(id).get(); updatedStudy.setName(study.name) .setDescription(study.description) .setModifiedBy(user) @@ -577,9 +577,9 @@ public JobExecutionResource performStudy(@PathParam("study_id") final int study_ TransactionStatus initStatus = this.getTransactionTemplate().getTransactionManager().getTransaction(requresNewTx); - FeasibilityStudy study = this.feasibilityStudyRepository.findOne(study_id); + FeasibilityStudy study = this.feasibilityStudyRepository.findById(study_id).get(); - CohortDefinition indexRule = this.cohortDefinitionRepository.findOne(study.getIndexRule().getId()); + CohortDefinition indexRule = this.cohortDefinitionRepository.findById(study.getIndexRule().getId()).get(); CohortGenerationInfo indexInfo = findCohortGenerationInfoBySourceId(indexRule.getGenerationInfoList(), source.getSourceId()); if (indexInfo == null) { indexInfo = new CohortGenerationInfo(indexRule, source.getSourceId()); @@ -592,7 +592,7 @@ public JobExecutionResource performStudy(@PathParam("study_id") final int study_ if (study.getResultRule() != null) { - CohortDefinition resultRule = this.cohortDefinitionRepository.findOne(study.getResultRule().getId()); + CohortDefinition resultRule = this.cohortDefinitionRepository.findById(study.getResultRule().getId()).get(); CohortGenerationInfo resultInfo = findCohortGenerationInfoBySourceId(resultRule.getGenerationInfoList(), source.getSourceId()); if (resultInfo == null) { resultInfo = new CohortGenerationInfo(resultRule, source.getSourceId()); @@ -673,7 +673,7 @@ public JobExecutionResource performStudy(@PathParam("study_id") final int study_ @Produces(MediaType.APPLICATION_JSON) @Transactional(readOnly = true) public List getSimulationInfo(@PathParam("id") final int id) { - FeasibilityStudy study = this.feasibilityStudyRepository.findOne(id); + FeasibilityStudy study = this.feasibilityStudyRepository.findById(id).get(); List result = new ArrayList<>(); for (StudyGenerationInfo generationInfo : study.getStudyGenerationInfoList()) { @@ -745,7 +745,7 @@ public FeasibilityStudyDTO copy(@PathParam("id") final int id) { @Produces(MediaType.APPLICATION_JSON) @Path("/{id}") public void delete(@PathParam("id") final int id) { - feasibilityStudyRepository.delete(id); + feasibilityStudyRepository.deleteById(id); } /** @@ -761,7 +761,7 @@ public void delete(@PathParam("id") final int id) { @Path("/{id}/info/{sourceKey}") @Transactional public void deleteInfo(@PathParam("id") final int id, @PathParam("sourceKey") final String sourceKey) { - FeasibilityStudy study = feasibilityStudyRepository.findOne(id); + FeasibilityStudy study = feasibilityStudyRepository.findById(id).get(); StudyGenerationInfo itemToRemove = null; for (StudyGenerationInfo info : study.getStudyGenerationInfoList()) { diff --git a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java index ffc183fe0..da9e38cd2 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java +++ b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java @@ -188,7 +188,7 @@ public UserEntity registerUser(final String login, final String name, final User } } - user = userRepository.findOne(user.getId()); + user = userRepository.findById(user.getId()).get(); return user; } @@ -352,7 +352,7 @@ public UserEntity getCurrentUser() { } public UserEntity getUserById(Long userId) { - UserEntity user = this.userRepository.findOne(userId); + UserEntity user = this.userRepository.findById(userId).get(); if (user == null) throw new RuntimeException("User doesn't exist"); diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java index 73ea56735..e010e05a9 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java @@ -68,8 +68,8 @@ protected boolean preHandle(ServletRequest request, ServletResponse response) th Object principal = principals.getPrimaryPrincipal(); if (principal instanceof Pac4jPrincipal pac4jPrincipal) { - login = pac4jPrincipal.getProfile().getEmail(); - name = pac4jPrincipal.getProfile().getDisplayName(); + login = (String) pac4jPrincipal.getProfile().getAttribute("email"); + name = (String) pac4jPrincipal.getProfile().getAttribute("display_name"); /** * for CAS login @@ -97,7 +97,7 @@ protected boolean preHandle(ServletRequest request, ServletResponse response) th return false; } - CommonProfile profile = (pac4jPrincipal.getProfile()); + CommonProfile profile = (CommonProfile)(pac4jPrincipal.getProfile()); if (Objects.nonNull(profile)) { String clientName = profile.getClientName(); request.setAttribute(AUTH_CLIENT_ATTRIBUTE, clientName); diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java index b9dd8053b..885aaac74 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java @@ -7,7 +7,10 @@ import org.ohdsi.webapi.helper.Guard; import org.ohdsi.webapi.shiro.filters.AtlasAuthFilter; import org.ohdsi.webapi.shiro.tokens.JwtAuthToken; -import org.pac4j.core.context.JEEContext; +import org.pac4j.core.context.session.SessionStore; +import org.pac4j.jee.context.JEEContext; +import org.pac4j.jee.context.session.JEESessionStoreFactory; +import org.pac4j.jee.context.session.JEESessionStore; import org.pac4j.saml.client.SAML2Client; import org.pac4j.saml.credentials.SAML2Credentials; import org.pac4j.saml.exceptions.SAMLAuthnInstantException; @@ -57,15 +60,15 @@ protected AuthenticationToken createToken(ServletRequest servletRequest, HttpServletRequest httpRequest = (HttpServletRequest) servletRequest; HttpServletResponse httpResponse = (HttpServletResponse) servletResponse; JEEContext context = new JEEContext(httpRequest, httpResponse); - + SessionStore store = (SessionStore) new JEESessionStore(); SAML2Client client; if (isForceAuth(request)) { client = saml2ForceClient; } else { client = saml2Client; } - SAML2Credentials credentials = client.getCredentials(context).get(); - SAML2Profile samlProfile = (SAML2Profile)client.getUserProfile(credentials, context).get(); + SAML2Credentials credentials = (SAML2Credentials)client.getCredentials(context, store).get(); + SAML2Profile samlProfile = (SAML2Profile)client.getUserProfile(credentials, context, store).get(); token = new JwtAuthToken(samlProfile.getId()); } diff --git a/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java b/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java index 68ff3e5f9..60c3c297b 100644 --- a/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java @@ -85,7 +85,7 @@ public void initializeJobs() { protected void saveAdditionalFields(UserImportJob job) { if (job.getRoleGroupMapping() != null && !job.getRoleGroupMapping().isEmpty()) { job.getRoleGroupMapping().forEach(mapping -> mapping.setUserImportJob(job)); - roleGroupRepository.save(job.getRoleGroupMapping()); + roleGroupRepository.saveAll(job.getRoleGroupMapping()); } } @@ -105,10 +105,10 @@ protected void updateAdditionalFields(UserImportJob exists, UserImportJob update List created = RoleGroupUtils.findCreated(existMapping, updatedMapping); created.forEach(c -> c.setUserImportJob(exists)); if (!deleted.isEmpty()) { - roleGroupRepository.delete(deleted); + roleGroupRepository.deleteAll(deleted); } if (!created.isEmpty()) { - existMapping.addAll(roleGroupRepository.save(created)); + existMapping.addAll(roleGroupRepository.saveAll(created)); } exists.setPreserveRoles(updated.getPreserveRoles()); } @@ -128,7 +128,7 @@ public List getJobs() { @Override public Optional getJob(Long id) { - return Optional.ofNullable(jobRepository.findOne(id)).map(this::assignNextExecution); + return Optional.ofNullable(jobRepository.findById(id)).get().map(this::assignNextExecution); } @Override diff --git a/src/main/java/org/ohdsi/webapi/versioning/service/VersionService.java b/src/main/java/org/ohdsi/webapi/versioning/service/VersionService.java index 8d0de073a..211458e82 100644 --- a/src/main/java/org/ohdsi/webapi/versioning/service/VersionService.java +++ b/src/main/java/org/ohdsi/webapi/versioning/service/VersionService.java @@ -100,7 +100,7 @@ public T create(VersionType type, T assetVersion) { } public T update(VersionType type, VersionUpdateDTO updateDTO) { - T currentVersion = getRepository(type).findOne(updateDTO.getVersionPk()); + T currentVersion = getRepository(type).findById(updateDTO.getVersionPk()).get(); if (Objects.isNull(currentVersion)) { throw new NotFoundException("Version not found"); } @@ -121,7 +121,7 @@ public void delete(VersionType type, long assetId, int version) { public T getById(VersionType type, long assetId, int version) { VersionPK pk = new VersionPK(assetId, version); - return getRepository(type).findOne(pk); + return getRepository(type).findById(pk).get(); } @Transactional(propagation = Propagation.REQUIRES_NEW) From 29f72e56680e60afbf90caab2425f27a14ab55af Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Fri, 17 May 2024 14:29:13 -0400 Subject: [PATCH 012/141] updates for MDACA Migration to SB 3 --- .../cohortsample/CohortSamplingService.java | 4 +-- .../ohdsi/webapi/common/orm/EnumListType.java | 7 ++-- .../common/orm/EnumListTypeDescriptor.java | 18 ++++++++-- .../java/org/ohdsi/webapi/job/JobUtils.java | 34 +++++++++---------- .../ohdsi/webapi/shiro/PermissionManager.java | 2 +- .../shiro/filters/auth/SamlHandleFilter.java | 1 + .../management/AtlasRegularSecurity.java | 29 ++++++++-------- 7 files changed, 55 insertions(+), 40 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java b/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java index cd80ae8d5..b35f00d0a 100644 --- a/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java +++ b/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java @@ -194,7 +194,7 @@ public CohortSampleDTO createSample(Source source, int cohortDefinitionId, Sampl */ public void refreshSample(Integer sampleId) { - CohortSample sample = sampleRepository.findById(sampleId); + CohortSample sample = sampleRepository.findById(sampleId).get(); if (sample == null) { throw new NotFoundException("Cohort sample with ID " + sampleId + " not found"); } @@ -462,7 +462,7 @@ public void deleteSample(int cohortDefinitionId, Source source, int sampleId) { } getTransactionTemplate().execute((TransactionCallback) transactionStatus -> { - sampleRepository.delete(sampleId); + sampleRepository.deleteById(sampleId); jdbcTemplate.update(sql, sampleId); return null; }); diff --git a/src/main/java/org/ohdsi/webapi/common/orm/EnumListType.java b/src/main/java/org/ohdsi/webapi/common/orm/EnumListType.java index 840771386..79f950b1a 100644 --- a/src/main/java/org/ohdsi/webapi/common/orm/EnumListType.java +++ b/src/main/java/org/ohdsi/webapi/common/orm/EnumListType.java @@ -1,11 +1,12 @@ package org.ohdsi.webapi.common.orm; import org.hibernate.type.AbstractSingleColumnStandardBasicType; -import org.hibernate.type.descriptor.sql.VarcharTypeDescriptor; +import org.hibernate.type.descriptor.jdbc.VarcharJdbcType; import org.hibernate.usertype.DynamicParameterizedType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; + import java.util.List; import java.util.Properties; @@ -16,7 +17,7 @@ public class EnumListType extends AbstractSingleColumnStandardBasicType im public static final String TYPE_NAME = "enum-list"; public EnumListType() { - super(VarcharTypeDescriptor.INSTANCE, null); + super(VarcharJdbcType.INSTANCE, new EnumListTypeDescriptor());//(Class) Class.forName(enumClassName))); } @@ -35,7 +36,7 @@ public void setParameterValues(Properties properties) { String enumClassName = properties.getProperty("enumClass"); try { - setJavaTypeDescriptor(new EnumListTypeDescriptor((Class) Class.forName(enumClassName))); + ((EnumListTypeDescriptor)this.getJavaTypeDescriptor()).setEnumClass((Class) Class.forName(enumClassName)); } catch (ClassNotFoundException e) { LOGGER.error("Failed to initialize enum list type", e); } diff --git a/src/main/java/org/ohdsi/webapi/common/orm/EnumListTypeDescriptor.java b/src/main/java/org/ohdsi/webapi/common/orm/EnumListTypeDescriptor.java index bf8344f21..d8bf64651 100644 --- a/src/main/java/org/ohdsi/webapi/common/orm/EnumListTypeDescriptor.java +++ b/src/main/java/org/ohdsi/webapi/common/orm/EnumListTypeDescriptor.java @@ -2,12 +2,12 @@ import org.apache.commons.lang3.StringUtils; import org.hibernate.type.descriptor.WrapperOptions; -import org.hibernate.type.descriptor.java.AbstractTypeDescriptor; +import org.hibernate.type.descriptor.java.AbstractClassJavaType; import java.util.*; import java.util.stream.Collectors; -public class EnumListTypeDescriptor extends AbstractTypeDescriptor { +public class EnumListTypeDescriptor extends AbstractClassJavaType { public static final String DELIMITER = ","; private Class enumClass; @@ -21,8 +21,20 @@ protected EnumListTypeDescriptor(Class enumClass) { enumConstantMap.put(value.name(), value); } } + + protected EnumListTypeDescriptor() { + super(List.class); + } + + public void setEnumClass(Class enumClass) { + this.enumClass = enumClass; + Enum[] enumConst = enumClass.getEnumConstants(); + for(Enum value : enumConst) { + enumConstantMap.put(value.name(), value); + } + } - @Override + //@Override public List fromString(String s) { List result = new ArrayList(); diff --git a/src/main/java/org/ohdsi/webapi/job/JobUtils.java b/src/main/java/org/ohdsi/webapi/job/JobUtils.java index 7cceb307e..7a3e109ab 100644 --- a/src/main/java/org/ohdsi/webapi/job/JobUtils.java +++ b/src/main/java/org/ohdsi/webapi/job/JobUtils.java @@ -2,6 +2,7 @@ import java.sql.ResultSet; import java.sql.SQLException; +import java.sql.Timestamp; import java.util.*; import java.util.stream.Collectors; @@ -11,7 +12,6 @@ import org.springframework.batch.core.JobExecution; import org.springframework.batch.core.JobInstance; import org.springframework.batch.core.JobParameter; -import org.springframework.batch.core.JobParameter.ParameterType; import org.springframework.batch.core.JobParameters; /** @@ -32,12 +32,12 @@ public static JobExecutionResource toJobExecutionResource(final JobExecution job final JobExecutionResource execution = new JobExecutionResource( toJobInstanceResource(jobExecution.getJobInstance()), jobExecution.getId()); execution.setStatus(jobExecution.getStatus().name()); - execution.setStartDate(jobExecution.getStartTime()); - execution.setEndDate(jobExecution.getEndTime()); + execution.setStartDate(Timestamp.valueOf(jobExecution.getStartTime())); + execution.setEndDate(Timestamp.valueOf(jobExecution.getEndTime())); execution.setExitStatus(jobExecution.getExitStatus().getExitCode()); JobParameters jobParams = jobExecution.getJobParameters(); if (jobParams != null) { - Map params = jobParams.getParameters(); + Map> params = jobParams.getParameters(); if (params != null && !params.isEmpty()) { Map jobParametersResource = new HashMap(); Set keys = params.keySet().stream() @@ -84,12 +84,12 @@ public static List toJobExecutionResource(final ResultSet JobExecution jobExecution = new JobExecution(jobInstance, null);//jobParameters); jobExecution.setId(id); - jobExecution.setStartTime(rs.getTimestamp(2)); - jobExecution.setEndTime(rs.getTimestamp(3)); + jobExecution.setStartTime(rs.getTimestamp(2).toLocalDateTime()); + jobExecution.setEndTime(rs.getTimestamp(3).toLocalDateTime()); jobExecution.setStatus(BatchStatus.valueOf(rs.getString(4))); jobExecution.setExitStatus(new ExitStatus(rs.getString(5), rs.getString(6))); - jobExecution.setCreateTime(rs.getTimestamp(7)); - jobExecution.setLastUpdated(rs.getTimestamp(8)); + jobExecution.setCreateTime(rs.getTimestamp(7).toLocalDateTime()); + jobExecution.setLastUpdated(rs.getTimestamp(8).toLocalDateTime()); jobExecution.setVersion(rs.getInt(9)); jobexec = toJobExecutionResource(jobExecution); } @@ -98,23 +98,23 @@ public static List toJobExecutionResource(final ResultSet String key = rs.getString(12); if (!PROTECTED_PARAMS.contains(key)) { - ParameterType type = ParameterType.valueOf(rs.getString(13)); + String type = rs.getString(13); JobParameter value = null; switch (type) { - case STRING: { - value = new JobParameter(rs.getString(14), rs.getString(18).equalsIgnoreCase("Y")); + case "STRING": { + value = new JobParameter(rs.getString(14), String.class, rs.getString(18).equalsIgnoreCase("Y")); break; } - case LONG: { - value = new JobParameter(rs.getLong(16), rs.getString(18).equalsIgnoreCase("Y")); + case "LONG": { + value = new JobParameter(rs.getLong(16), long.class, rs.getString(18).equalsIgnoreCase("Y")); break; } - case DOUBLE: { - value = new JobParameter(rs.getDouble(17), rs.getString(18).equalsIgnoreCase("Y")); + case "DOUBLE": { + value = new JobParameter(rs.getDouble(17), double.class, rs.getString(18).equalsIgnoreCase("Y")); break; } - case DATE: { - value = new JobParameter(rs.getTimestamp(15), rs.getString(18).equalsIgnoreCase("Y")); + case "DATE": { + value = new JobParameter(rs.getTimestamp(15), Timestamp.class, rs.getString(18).equalsIgnoreCase("Y")); break; } } diff --git a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java index da9e38cd2..21c88ed7a 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java +++ b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java @@ -229,7 +229,7 @@ public Set getUserPermissions(Long userId) { public void removeRole(Long roleId) { eventPublisher.publishEvent(new DeleteRoleEvent(this, roleId)); - this.roleRepository.delete(roleId); + this.roleRepository.deleteById(roleId); } public Set getRolePermissions(Long roleId) { diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java index 885aaac74..07c501209 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java @@ -61,6 +61,7 @@ protected AuthenticationToken createToken(ServletRequest servletRequest, HttpServletResponse httpResponse = (HttpServletResponse) servletResponse; JEEContext context = new JEEContext(httpRequest, httpResponse); SessionStore store = (SessionStore) new JEESessionStore(); + SAML2Client client; if (isForceAuth(request)) { client = saml2ForceClient; diff --git a/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java b/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java index 8dad18fb4..4d7914dc0 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java +++ b/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java @@ -1,13 +1,14 @@ package org.ohdsi.webapi.shiro.management; -import io.buji.pac4j.filter.CallbackFilter; -import io.buji.pac4j.filter.SecurityFilter; +import org.pac4j.jee.filter.CallbackFilter; +import org.pac4j.jee.filter.SecurityFilter; import io.buji.pac4j.realm.Pac4jRealm; import org.apache.commons.lang.StringUtils; import org.apache.shiro.realm.Realm; import org.apache.shiro.realm.activedirectory.ActiveDirectoryRealm; import org.apache.shiro.realm.ldap.DefaultLdapRealm; import org.apache.shiro.realm.ldap.JndiLdapContextFactory; +import org.apereo.cas.client.validation.TicketValidator; import org.jasig.cas.client.validation.Cas20ServiceTicketValidator; import org.ohdsi.webapi.Constants; import org.ohdsi.webapi.security.model.EntityPermissionSchemaResolver; @@ -44,7 +45,7 @@ import org.pac4j.oauth.client.Google2Client; import org.pac4j.oidc.client.OidcClient; import org.pac4j.oidc.config.OidcConfiguration; -import org.pac4j.oidc.credentials.authenticator.UserInfoOidcAuthenticator; +import org.pac4j.oidc.credentials.authenticator.OidcAuthenticator; import org.pac4j.saml.client.SAML2Client; import org.pac4j.saml.config.SAML2Configuration; import org.slf4j.Logger; @@ -334,7 +335,7 @@ public Map getFilters() { oidcClient.setCallbackUrlResolver(urlResolver); clients.add(oidcClient); // HeaderClient allows api access with a bearer token from the identity provider - UserInfoOidcAuthenticator authenticator = new UserInfoOidcAuthenticator(configuration); + OidcAuthenticator authenticator = new OidcAuthenticator(configuration, oidcClient); HeaderClient headerClient = new HeaderClient("Authorization", "Bearer ", authenticator); clients.add(headerClient); } else { @@ -356,38 +357,38 @@ public Map getFilters() { SecurityFilter googleOauthFilter = new SecurityFilter(); googleOauthFilter.setConfig(cfg); googleOauthFilter.setClients("Google2Client"); - filters.put(GOOGLE_AUTHC, googleOauthFilter); + filters.put(GOOGLE_AUTHC, (Filter) googleOauthFilter); } if (this.facebookAuthEnabled) { SecurityFilter facebookOauthFilter = new SecurityFilter(); facebookOauthFilter.setConfig(cfg); facebookOauthFilter.setClients("FacebookClient"); - filters.put(FACEBOOK_AUTHC, facebookOauthFilter); + filters.put(FACEBOOK_AUTHC, (Filter) facebookOauthFilter); } if (this.githubAuthEnabled) { SecurityFilter githubOauthFilter = new SecurityFilter(); githubOauthFilter.setConfig(cfg); githubOauthFilter.setClients("GitHubClient"); - filters.put(GITHUB_AUTHC, githubOauthFilter); + filters.put(GITHUB_AUTHC, (Filter) githubOauthFilter); } if (this.openidAuthEnabled) { SecurityFilter oidcFilter = new SecurityFilter(); oidcFilter.setConfig(cfg); oidcFilter.setClients("OidcClient"); - filters.put(OIDC_AUTH, oidcFilter); + filters.put(OIDC_AUTH, (Filter) oidcFilter); SecurityFilter oidcDirectFilter = new SecurityFilter(); oidcDirectFilter.setConfig(cfg); oidcDirectFilter.setClients("HeaderClient"); - filters.put(OIDC_DIRECT_AUTH, oidcDirectFilter); + filters.put(OIDC_DIRECT_AUTH, (Filter) oidcDirectFilter); } CallbackFilter callbackFilter = new CallbackFilter(); callbackFilter.setConfig(cfg); - filters.put(OAUTH_CALLBACK, callbackFilter); + filters.put(OAUTH_CALLBACK, (Filter) callbackFilter); filters.put(HANDLE_UNSUCCESSFUL_OAUTH, new RedirectOnFailedOAuthFilter(this.oauthUiCallback)); } @@ -568,7 +569,7 @@ private SAML2Client setUpSamlClient(Map filters, Filter SecurityFilter samlAuthFilter = new SecurityFilter(); samlAuthFilter.setConfig(samlCfg); samlAuthFilter.setClients("saml2Client"); - filters.put(template, samlAuthFilter); + filters.put(template, (Filter) samlAuthFilter); return saml2Client; } @@ -599,7 +600,7 @@ private ActiveDirectoryRealm activeDirectoryRealm() { ActiveDirectoryRealm realm = new ADRealm(getLdapTemplate(), adSearchFilter, adSearchString, adUserMapper); realm.setUrl(dequote(adUrl)); realm.setSearchBase(dequote(adSearchBase)); - realm.setPrincipalSuffix(dequote(adPrincipalSuffix)); + //realm.setPrincipalSuffix(dequote(adPrincipalSuffix)); need to find alternate method for appending suffix to usernames realm.setSystemUsername(dequote(adSystemUsername)); realm.setSystemPassword(dequote(adSystemPassword)); return realm; @@ -631,7 +632,7 @@ private void setUpCAS(Map filters) { casConf.setLoginUrl(casLoginUrlString); Cas20ServiceTicketValidator cas20Validator = new Cas20ServiceTicketValidator(casServerUrl); - casConf.setDefaultTicketValidator(cas20Validator); + casConf.setDefaultTicketValidator((TicketValidator) cas20Validator); CasClient casClient = new CasClient(casConf); Config casCfg = new Config(new Clients(casCallbackUrl, casClient)); @@ -642,7 +643,7 @@ private void setUpCAS(Map filters) { SecurityFilter casAuthnFilter = new SecurityFilter(); casAuthnFilter.setConfig(casCfg); casAuthnFilter.setClients("CasClient"); - filters.put(CAS_AUTHC, casAuthnFilter); + filters.put(CAS_AUTHC, (Filter) casAuthnFilter); /** * CAS callback filter From 6bb83362b5801e9cc2cf07d48327fd85735be4a6 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Fri, 17 May 2024 15:06:30 -0400 Subject: [PATCH 013/141] changes for MDACA Migration to SB 3 --- pom.xml | 5 +++++ src/main/java/org/ohdsi/webapi/I18nConfig.java | 1 - src/main/java/org/ohdsi/webapi/WebApi.java | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 64d28d663..f8b99dbb5 100644 --- a/pom.xml +++ b/pom.xml @@ -595,6 +595,11 @@ + + org.codehaus.jettison + jettison + 1.4.1 + com.fasterxml.jackson.core jackson-databind diff --git a/src/main/java/org/ohdsi/webapi/I18nConfig.java b/src/main/java/org/ohdsi/webapi/I18nConfig.java index f315f8c5f..ebf57160b 100644 --- a/src/main/java/org/ohdsi/webapi/I18nConfig.java +++ b/src/main/java/org/ohdsi/webapi/I18nConfig.java @@ -4,7 +4,6 @@ import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.LocaleResolver; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; -import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; import org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver; import org.springframework.web.servlet.i18n.LocaleChangeInterceptor; diff --git a/src/main/java/org/ohdsi/webapi/WebApi.java b/src/main/java/org/ohdsi/webapi/WebApi.java index 904c55147..7c0e8bcfb 100644 --- a/src/main/java/org/ohdsi/webapi/WebApi.java +++ b/src/main/java/org/ohdsi/webapi/WebApi.java @@ -4,7 +4,7 @@ import org.apache.catalina.webresources.TomcatURLStreamHandlerFactory; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration; -import org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration; +//import org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration; removed in SB 3 import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; import org.springframework.context.annotation.ComponentScan; @@ -12,7 +12,7 @@ import org.springframework.scheduling.annotation.EnableScheduling; import java.util.TimeZone; -import org.springframework.boot.autoconfigure.solr.SolrAutoConfiguration; +//import org.springframework.boot.autoconfigure.solr.SolrAutoConfiguration; removed in SB 3 /** @@ -20,7 +20,7 @@ * will source this file). */ @EnableScheduling -@SpringBootApplication(exclude={HibernateJpaAutoConfiguration.class, ErrorMvcAutoConfiguration.class, SolrAutoConfiguration.class}) +@SpringBootApplication(exclude={HibernateJpaAutoConfiguration.class}) //ErrorMvcAutoConfiguration.class, @EnableAspectJAutoProxy(proxyTargetClass = true) public class WebApi extends SpringBootServletInitializer { From 5786b7c5339d7ab098f0348fe4308dd677cbe46a Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 17 May 2024 15:07:26 -0400 Subject: [PATCH 014/141] MDACA Spring Boot 3 migration, deprecated @TypeDefs & @TypeDef replaced --- .../webapi/feanalysis/domain/FeAnalysisAggregateEntity.java | 5 +++-- src/main/java/org/ohdsi/webapi/source/package-info.java | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java b/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java index fa4286134..f07399d96 100644 --- a/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java +++ b/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java @@ -4,7 +4,7 @@ import org.hibernate.annotations.GenericGenerator; import org.hibernate.annotations.Parameter; import org.hibernate.annotations.Type; -import org.hibernate.annotations.TypeDef; +// import org.hibernate.annotations.TypeDef; MDACA Spring Boot 3 migration compilation issue import org.ohdsi.analysis.TableJoin; import org.ohdsi.analysis.WithId; import org.ohdsi.analysis.cohortcharacterization.design.AggregateFunction; @@ -18,7 +18,8 @@ @Entity @Table(name = "fe_analysis_aggregate") -@TypeDef(typeClass = EnumListType.class, name = "enumm-list") +// @TypeDef(typeClass = EnumListType.class, name = "enumm-list") MDACA Spring Boot 3 migration compilation issue +@Convert(attributeName = "enumm-list", converter = EnumListType.class) public class FeAnalysisAggregateEntity implements FeatureAnalysisAggregate, WithId { @Id diff --git a/src/main/java/org/ohdsi/webapi/source/package-info.java b/src/main/java/org/ohdsi/webapi/source/package-info.java index 908a059a4..c750f31b0 100644 --- a/src/main/java/org/ohdsi/webapi/source/package-info.java +++ b/src/main/java/org/ohdsi/webapi/source/package-info.java @@ -20,6 +20,7 @@ * */ +/* MDACA Spring Boot 3 migration compilation issue, deprecated hibernate annotations: typedefs & typedef @TypeDefs({ @TypeDef( name = "encryptedString", @@ -35,3 +36,4 @@ import org.hibernate.annotations.TypeDef; import org.hibernate.annotations.TypeDefs; +*/ \ No newline at end of file From 071015c7fbce9355170857500e7baa67e7a8e62e Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Fri, 17 May 2024 15:38:08 -0400 Subject: [PATCH 015/141] updates for MDACA migration to SB 3 --- src/main/java/org/ohdsi/webapi/JobInvalidator.java | 4 +++- .../webapi/cdmresults/service/CDMCacheBatchService.java | 2 +- .../cohortdefinition/GenerationJobExecutionListener.java | 3 ++- .../ExampleApplicationWithJobService.java | 4 ++-- .../org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java | 4 ++-- .../org/ohdsi/webapi/job/JobExecutionToDTOConverter.java | 7 +++++-- src/main/java/org/ohdsi/webapi/service/JobService.java | 6 ++++-- 7 files changed, 19 insertions(+), 11 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/JobInvalidator.java b/src/main/java/org/ohdsi/webapi/JobInvalidator.java index ed6d85442..7acd34a7e 100644 --- a/src/main/java/org/ohdsi/webapi/JobInvalidator.java +++ b/src/main/java/org/ohdsi/webapi/JobInvalidator.java @@ -13,6 +13,8 @@ import org.springframework.stereotype.Component; import org.springframework.transaction.support.TransactionTemplate; +import java.time.LocalDateTime; +import java.time.ZoneId; import java.util.Calendar; @Component @@ -56,7 +58,7 @@ public void invalidateJobExecutionById(ExecutionEngineAnalysisStatus executionEn public void invalidationJobExecution(JobExecution job) { job.setStatus(BatchStatus.FAILED); job.setExitStatus(new ExitStatus(ExitStatus.FAILED.getExitCode(), INVALIDATED_BY_SYSTEM_EXIT_MESSAGE)); - job.setEndTime(Calendar.getInstance().getTime()); + job.setEndTime(LocalDateTime.ofInstant(Calendar.getInstance().getTime().toInstant(), ZoneId.systemDefault())); jobRepository.update(job); } } diff --git a/src/main/java/org/ohdsi/webapi/cdmresults/service/CDMCacheBatchService.java b/src/main/java/org/ohdsi/webapi/cdmresults/service/CDMCacheBatchService.java index c63f22ddc..0609030ac 100644 --- a/src/main/java/org/ohdsi/webapi/cdmresults/service/CDMCacheBatchService.java +++ b/src/main/java/org/ohdsi/webapi/cdmresults/service/CDMCacheBatchService.java @@ -58,7 +58,7 @@ public List save(Source source, List entities) { modified.add(processedEntity); }); if (!modified.isEmpty()) { - cdmCacheRepository.save(modified); + cdmCacheRepository.saveAll(modified); } return new ArrayList<>( cacheEntities.values()); } diff --git a/src/main/java/org/ohdsi/webapi/cohortdefinition/GenerationJobExecutionListener.java b/src/main/java/org/ohdsi/webapi/cohortdefinition/GenerationJobExecutionListener.java index 0e110822a..2eb18552b 100644 --- a/src/main/java/org/ohdsi/webapi/cohortdefinition/GenerationJobExecutionListener.java +++ b/src/main/java/org/ohdsi/webapi/cohortdefinition/GenerationJobExecutionListener.java @@ -34,6 +34,7 @@ import org.springframework.transaction.support.DefaultTransactionDefinition; import org.springframework.transaction.support.TransactionTemplate; +import java.time.ZoneId; import java.util.Calendar; import java.util.Date; import java.util.Map; @@ -124,7 +125,7 @@ private void setExecutionDurationIfPossible(JobExecution je, CohortGenerationInf log.error("Cannot set duration time for cohortGenerationInfo[{}]. startData[{}] and endData[{}] cannot be empty.", info.getId(), je.getStartTime(), je.getEndTime()); return; } - info.setExecutionDuration((int) (je.getEndTime().getTime() - je.getStartTime().getTime())); + info.setExecutionDuration((int) (Date.from(je.getEndTime().atZone(ZoneId.systemDefault()).toInstant()).getTime() - Date.from(je.getStartTime().atZone(ZoneId.systemDefault()).toInstant()).getTime())); } @Override diff --git a/src/main/java/org/ohdsi/webapi/exampleapplication/ExampleApplicationWithJobService.java b/src/main/java/org/ohdsi/webapi/exampleapplication/ExampleApplicationWithJobService.java index 00636d095..4527704af 100644 --- a/src/main/java/org/ohdsi/webapi/exampleapplication/ExampleApplicationWithJobService.java +++ b/src/main/java/org/ohdsi/webapi/exampleapplication/ExampleApplicationWithJobService.java @@ -113,7 +113,7 @@ public JobExecutionResource queueJob() throws Exception { @Path("widget") @Produces(MediaType.APPLICATION_JSON) public List findAllWidgets() { - Page page = this.widgetRepository.findAll(new PageRequest(0, 10)); + Page page = this.widgetRepository.findAll(PageRequest.of(0, 10)); return page.getContent(); } @@ -185,7 +185,7 @@ public Void doInTransaction(TransactionStatus status) { @Path("widgets") public void writeWidgets() { final List widgets = createWidgets(); - this.widgetRepository.save(widgets); + this.widgetRepository.saveAll(widgets); log.info("Persisted {} widgets", widgets.size()); } diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java b/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java index c5646bb99..187e39382 100644 --- a/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java @@ -165,7 +165,7 @@ public FeAnalysisEntity updateAnalysis(Integer feAnalysisId, FeAnalysisEntity up savedEntity.setDescr(updatedEntity.getDescr()); if (savedEntity instanceof FeAnalysisWithCriteriaEntity savedWithCriteria && updatedEntity instanceof FeAnalysisWithCriteriaEntity updatedWithCriteriaEntity) { removeFeAnalysisCriteriaEntities(savedWithCriteria, updatedWithCriteriaEntity); - updatedWithCriteriaEntity.getDesign().forEach(criteria -> criteria.setFeatureAnalysis(savedWithCriteria)); + updatedWithCriteriaEntity.getDesign().forEach(criteria -> ((FeAnalysisConcepsetEntity) criteria).setFeatureAnalysis(savedWithCriteria)); createOrUpdateConceptSetEntity(savedWithCriteria, updatedWithCriteriaEntity.getConceptSetEntity()); } savedEntity.setDesign(updatedEntity.getDesign()); @@ -194,7 +194,7 @@ private void removeFeAnalysisCriteriaEntities(FeAnalysisWithCriteriaEntity or List removed = original.getDesign().stream() .filter(c -> updated.getDesign().stream().noneMatch(u -> Objects.equals(c.getId(), u.getId()))) .collect(Collectors.toList()); - criteriaRepository.delete(removed); + criteriaRepository.deleteAll(removed); } @Override diff --git a/src/main/java/org/ohdsi/webapi/job/JobExecutionToDTOConverter.java b/src/main/java/org/ohdsi/webapi/job/JobExecutionToDTOConverter.java index c8e2c6165..ffa968645 100644 --- a/src/main/java/org/ohdsi/webapi/job/JobExecutionToDTOConverter.java +++ b/src/main/java/org/ohdsi/webapi/job/JobExecutionToDTOConverter.java @@ -10,6 +10,9 @@ import org.springframework.batch.core.explore.JobExplorer; import org.springframework.stereotype.Component; +import java.time.ZoneId; +import java.time.ZoneOffset; +import java.util.Date; import java.util.Map; import java.util.stream.Collectors; @@ -44,8 +47,8 @@ public JobExecutionResource convert(JobExecutionInfo entity) { result.setStatus(execution.getStatus().name()); } result.setExitStatus(execution.getExitStatus().getExitCode()); - result.setStartDate(execution.getStartTime()); - result.setEndDate(execution.getEndTime()); + result.setStartDate(Date.from(execution.getStartTime().atZone(ZoneId.systemDefault()).toInstant())); + result.setEndDate(Date.from(execution.getEndTime().atZone(ZoneId.systemDefault()).toInstant())); result.setJobParametersResource( execution.getJobParameters().getParameters().entrySet() .stream() diff --git a/src/main/java/org/ohdsi/webapi/service/JobService.java b/src/main/java/org/ohdsi/webapi/service/JobService.java index 0a4e3b780..90eff1fae 100644 --- a/src/main/java/org/ohdsi/webapi/service/JobService.java +++ b/src/main/java/org/ohdsi/webapi/service/JobService.java @@ -36,6 +36,8 @@ import jakarta.ws.rs.Produces; import jakarta.ws.rs.QueryParam; import jakarta.ws.rs.core.MediaType; +import net.bytebuddy.description.annotation.AnnotationValue.Sort; + import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; @@ -201,14 +203,14 @@ public List extractData(ResultSet rs) throws SQLException, return JobUtils.toJobExecutionResource(rs); } }); - return new PageImpl<>(resources, new PageRequest(0, pageSize), resources.size()); + return new PageImpl<>(resources, PageRequest.of(0, pageSize), resources.size()); } else { resources = new ArrayList<>(); for (final JobExecution jobExecution : (jobName == null ? this.jobExecutionDao.getJobExecutions(pageIndex, pageSize) : this.jobExecutionDao.getJobExecutions(jobName, pageIndex, pageSize))) { resources.add(JobUtils.toJobExecutionResource(jobExecution)); } - return new PageImpl<>(resources, new PageRequest(pageIndex, pageSize), + return new PageImpl<>(resources, PageRequest.of(pageIndex, pageSize), this.jobExecutionDao.countJobExecutions()); } From 8c6b89b399b8f439e0b0a59d4fa34745cfbb21ea Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 17 May 2024 15:45:00 -0400 Subject: [PATCH 016/141] MDACA Spring Boot 3 migration comment out jerey classes that need refactoring due to deprecation --- src/main/java/org/ohdsi/webapi/JerseyConfig.java | 4 +++- .../org/ohdsi/webapi/PageableValueFactoryProvider.java | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/JerseyConfig.java b/src/main/java/org/ohdsi/webapi/JerseyConfig.java index 9a616ad55..283ca8aaf 100644 --- a/src/main/java/org/ohdsi/webapi/JerseyConfig.java +++ b/src/main/java/org/ohdsi/webapi/JerseyConfig.java @@ -5,7 +5,7 @@ import org.glassfish.jersey.message.GZipEncoder; import org.glassfish.jersey.server.ResourceConfig; import org.glassfish.jersey.server.filter.EncodingFilter; -import org.glassfish.jersey.server.spi.internal.ValueFactoryProvider; +// import org.glassfish.jersey.server.spi.internal.ValueFactoryProvider; MDACA Spring Boot 3 migration compilation issue import org.ohdsi.webapi.cohortcharacterization.CcController; import org.ohdsi.webapi.executionengine.controller.ScriptExecutionCallbackController; import org.ohdsi.webapi.executionengine.controller.ScriptExecutionController; @@ -84,6 +84,7 @@ public void afterPropertiesSet() throws Exception { register(CcController.class); register(SSOController.class); register(PermissionController.class); +/* MDACA Spring Boot 3 migration compilation issue register(new AbstractBinder() { @Override protected void configure() { @@ -92,5 +93,6 @@ protected void configure() { .in(Singleton.class); } }); +*/ } } diff --git a/src/main/java/org/ohdsi/webapi/PageableValueFactoryProvider.java b/src/main/java/org/ohdsi/webapi/PageableValueFactoryProvider.java index 100ffbcf1..999a8f3b9 100644 --- a/src/main/java/org/ohdsi/webapi/PageableValueFactoryProvider.java +++ b/src/main/java/org/ohdsi/webapi/PageableValueFactoryProvider.java @@ -21,14 +21,15 @@ import jakarta.ws.rs.QueryParam; import org.glassfish.hk2.api.Factory; import org.glassfish.hk2.api.ServiceLocator; -import org.glassfish.jersey.server.internal.inject.AbstractContainerRequestValueFactory; +// import org.glassfish.jersey.server.internal.inject.AbstractContainerRequestValueFactory; MDACA Spring Boot 3 migration compilation issue import org.glassfish.jersey.server.model.Parameter; -import org.glassfish.jersey.server.spi.internal.ValueFactoryProvider; +// import org.glassfish.jersey.server.spi.internal.ValueFactoryProvider; MDACA Spring Boot 3 migration compilation issue import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Sort; -public class PageableValueFactoryProvider implements ValueFactoryProvider { +public class PageableValueFactoryProvider /* implements ValueFactoryProvider MDACA Spring Boot 3 migration compilation issue */ { +/* MDACA Spring Boot 3 migration compilation issue private final ServiceLocator locator; @@ -86,4 +87,5 @@ public Pageable provide() { orders.isEmpty() ? null : new Sort(orders)); } } +*/ } \ No newline at end of file From 4fd9f0306988038a8806e0340cb63f17f022cfdb Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 17 May 2024 16:19:26 -0400 Subject: [PATCH 017/141] MDACA Spring Boot 3 migration --- src/main/java/org/ohdsi/webapi/JobConfig.java | 18 +++++++++--------- .../domain/FeAnalysisAggregateEntity.java | 3 +++ .../java/org/ohdsi/webapi/source/Source.java | 5 +++-- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/JobConfig.java b/src/main/java/org/ohdsi/webapi/JobConfig.java index 78aa2fe4c..2f3ca1257 100644 --- a/src/main/java/org/ohdsi/webapi/JobConfig.java +++ b/src/main/java/org/ohdsi/webapi/JobConfig.java @@ -15,19 +15,19 @@ import org.slf4j.LoggerFactory; import org.springframework.batch.admin.service.*; import org.springframework.batch.core.configuration.BatchConfigurationException; -import org.springframework.batch.core.configuration.annotation.BatchConfigurer; +// import org.springframework.batch.core.configuration.annotation.BatchConfigurer; MDACA Spring Boot 3 migration compilation issue import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing; import org.springframework.batch.core.configuration.annotation.JobBuilderFactory; import org.springframework.batch.core.configuration.annotation.StepBuilderFactory; import org.springframework.batch.core.explore.JobExplorer; import org.springframework.batch.core.explore.support.JobExplorerFactoryBean; -import org.springframework.batch.core.explore.support.MapJobExplorerFactoryBean; +// import org.springframework.batch.core.explore.support.MapJobExplorerFactoryBean; MDACA Spring Boot 3 migration compilation issue import org.springframework.batch.core.job.builder.JobBuilder; import org.springframework.batch.core.launch.JobLauncher; import org.springframework.batch.core.launch.support.SimpleJobLauncher; import org.springframework.batch.core.repository.JobRepository; import org.springframework.batch.core.repository.support.JobRepositoryFactoryBean; -import org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean; +// import org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean; MDACA Spring Boot 3 migration compilation issue import org.springframework.batch.support.transaction.ResourcelessTransactionManager; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; @@ -97,12 +97,12 @@ TaskExecutor taskExecutor() { taskExecutor.afterPropertiesSet(); return taskExecutor; } - +/* MDACA Spring Boot 3 migration compilation issue @Bean BatchConfigurer batchConfigurer() { return new CustomBatchConfigurer(this.dataSource); } - +*/ @Bean JobTemplate jobTemplate(final JobLauncher jobLauncher, final JobBuilderFactory jobBuilders, final StepBuilderFactory stepBuilders, final Security security) { @@ -139,7 +139,7 @@ public JobBuilder get(String name) { }; } - class CustomBatchConfigurer implements BatchConfigurer { + class CustomBatchConfigurer /* implements BatchConfigurer MDACA Spring Boot 3 migration compilation issue */ { private DataSource dataSource; @@ -168,7 +168,7 @@ protected CustomBatchConfigurer() { public CustomBatchConfigurer(final DataSource dataSource) { setDataSource(dataSource); } - +/* @Override public JobRepository getJobRepository() { return this.jobRepository; @@ -222,7 +222,7 @@ public void initialize() { throw new BatchConfigurationException(e); } } - +*/ private JobLauncher createJobLauncher() throws Exception { final SimpleJobLauncher jobLauncher = new SimpleJobLauncher(); //async TODO @@ -239,7 +239,7 @@ protected JobRepository createJobRepository() throws Exception { //ISOLATION_REPEATABLE_READ throws READ_COMMITTED and SERIALIZABLE are the only valid transaction levels factory.setIsolationLevelForCreate(JobConfig.this.isolationLevelForCreate); factory.setTablePrefix(JobConfig.this.tablePrefix); - factory.setTransactionManager(getTransactionManager()); + /* factory.setTransactionManager(getTransactionManager()); MDACA Spring Boot 3 migration compilation issue */ factory.setValidateTransactionState(false); factory.afterPropertiesSet(); return factory.getObject(); diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java b/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java index f07399d96..354a1ae68 100644 --- a/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java +++ b/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java @@ -12,6 +12,7 @@ import org.ohdsi.analysis.cohortcharacterization.design.StandardFeatureAnalysisDomain; import org.ohdsi.circe.cohortdefinition.builders.CriteriaColumn; import org.ohdsi.webapi.common.orm.EnumListType; +import org.ohdsi.webapi.source.CheckedEncryptedStringType; import jakarta.persistence.*; import java.util.List; @@ -65,9 +66,11 @@ public class FeAnalysisAggregateEntity implements FeatureAnalysisAggregate, With private boolean isMissingMeansZero; @Column(name = "criteria_columns") +/* MDACA Spring Boot 3 migration compilation issue, see package-info.java @Type(value = enumm-list.class, parameters = { @Parameter(name = "enumClass", value = "org.ohdsi.circe.cohortdefinition.builders.CriteriaColumn") }) +*/ private List columns; @Override diff --git a/src/main/java/org/ohdsi/webapi/source/Source.java b/src/main/java/org/ohdsi/webapi/source/Source.java index 467353e9c..31b782cc4 100644 --- a/src/main/java/org/ohdsi/webapi/source/Source.java +++ b/src/main/java/org/ohdsi/webapi/source/Source.java @@ -34,6 +34,7 @@ import com.google.common.collect.ImmutableList; import org.hibernate.annotations.GenericGenerator; +import org.hibernate.annotations.JdbcTypeCode; import org.hibernate.annotations.Parameter; import org.hibernate.annotations.SQLDelete; import org.hibernate.annotations.Type; @@ -87,11 +88,11 @@ public class Source extends CommonEntity implements Serializable { private String sourceKey; @Column - @Type(encryptedString.class) + /* @Type(encryptedString.class) MDACA Spring Boot 3 migration compilation issue */ private String username; @Column - @Type(encryptedString.class) + /* @Type(encryptedString.class) MDACA Spring Boot 3 migration compilation issue */ private String password; @Column(name = "deleted_date") From c65bd97cf7894163db4d37b76122d3efde7ff399 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Fri, 17 May 2024 16:31:27 -0400 Subject: [PATCH 018/141] Updates for MDACA Migration for SB 3 --- .../ohdsi/webapi/achilles/service/AchillesCacheService.java | 2 +- .../check/builder/AbstractForEachValidatorBuilder.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/achilles/service/AchillesCacheService.java b/src/main/java/org/ohdsi/webapi/achilles/service/AchillesCacheService.java index 6ac57730c..b41ed1d3b 100644 --- a/src/main/java/org/ohdsi/webapi/achilles/service/AchillesCacheService.java +++ b/src/main/java/org/ohdsi/webapi/achilles/service/AchillesCacheService.java @@ -87,7 +87,7 @@ public void saveDrilldownCacheMap(Source source, String domain, Map nodes) { List cacheEntities = getEntities(source, nodes); - cacheRepository.save(cacheEntities); + cacheRepository.saveAll(cacheEntities); } private List getEntities(Source source, Map nodes) { diff --git a/src/main/java/org/ohdsi/webapi/check/builder/AbstractForEachValidatorBuilder.java b/src/main/java/org/ohdsi/webapi/check/builder/AbstractForEachValidatorBuilder.java index ea93a7c0c..5b8b7aeb2 100644 --- a/src/main/java/org/ohdsi/webapi/check/builder/AbstractForEachValidatorBuilder.java +++ b/src/main/java/org/ohdsi/webapi/check/builder/AbstractForEachValidatorBuilder.java @@ -44,11 +44,11 @@ public final AbstractForEachValidatorBuilder groups(ValidatorGroupBuilder< return initAndBuildList(this.validatorGroupBuilders); } - protected List> initValidators() { + protected List> initValidators() { return initAndBuildList(this.validatorBuilders); } - private List initAndBuildList(List> builders) { + private List> initAndBuildList(List> builders) { builders.forEach(builder -> { if (Objects.isNull(builder.getBasePath())) { @@ -64,7 +64,7 @@ private List initAndBuildList(List>) builders.stream() .map(ValidatorBaseBuilder::build) .collect(Collectors.toList()); From a6a66d57560f685fa769a934f67f499b241ea0d8 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 17 May 2024 17:26:20 -0400 Subject: [PATCH 019/141] MDACA Spring Boot 3 migration --- .../ohdsi/webapi/estimation/EstimationServiceImpl.java | 8 +++++++- .../controller/ScriptExecutionCallbackController.java | 3 ++- .../IRVersionToIRAnalysisVersionFullDTOConverter.java | 10 +++++++++- .../org/ohdsi/webapi/job/NotificationServiceImpl.java | 3 +++ .../ohdsi/webapi/prediction/PredictionServiceImpl.java | 10 ++++++++-- .../java/org/ohdsi/webapi/source/SourceController.java | 3 ++- 6 files changed, 31 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java b/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java index 4cd837034..73fc81d22 100644 --- a/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java @@ -69,6 +69,7 @@ import java.util.List; import java.util.Map; import java.util.Objects; +import java.util.Optional; import java.util.stream.Collectors; import static org.ohdsi.webapi.Constants.GENERATE_ESTIMATION_ANALYSIS; @@ -197,7 +198,12 @@ private List getNamesLike(String name) { @Override public Estimation copy(final int id) throws Exception { - Estimation est = estimationRepository.findOne(id); + /* Estimation est = estimationRepository.findOne(id); */ + Estimation est = null; + Optional optionalEst = estimationRepository.findById(id); + if (optionalEst.isPresent()) { + est = optionalEst.get(); + } entityManager.detach(est); // Detach from the persistence context in order to save a copy est.setId(null); est.setName(getNameForCopy(est.getName())); diff --git a/src/main/java/org/ohdsi/webapi/executionengine/controller/ScriptExecutionCallbackController.java b/src/main/java/org/ohdsi/webapi/executionengine/controller/ScriptExecutionCallbackController.java index e49821912..88d717327 100644 --- a/src/main/java/org/ohdsi/webapi/executionengine/controller/ScriptExecutionCallbackController.java +++ b/src/main/java/org/ohdsi/webapi/executionengine/controller/ScriptExecutionCallbackController.java @@ -195,7 +195,8 @@ private void processAndSaveAnalysisResultFiles( contentList = sensitiveInfoService.filterSensitiveInfo(contentList, variables); List analysisRepackResult = analysisZipRepackService.process(contentList.getFiles(), zipVolumeSizeMb); - analysisResultFileContentRepository.save(analysisRepackResult); + /* analysisResultFileContentRepository.save(analysisRepackResult); MDACA Spring Boot 3 migration */ + analysisResultFileContentRepository.saveAll(analysisRepackResult); } diff --git a/src/main/java/org/ohdsi/webapi/ircalc/converter/IRVersionToIRAnalysisVersionFullDTOConverter.java b/src/main/java/org/ohdsi/webapi/ircalc/converter/IRVersionToIRAnalysisVersionFullDTOConverter.java index fdd9a9c55..511571cc8 100644 --- a/src/main/java/org/ohdsi/webapi/ircalc/converter/IRVersionToIRAnalysisVersionFullDTOConverter.java +++ b/src/main/java/org/ohdsi/webapi/ircalc/converter/IRVersionToIRAnalysisVersionFullDTOConverter.java @@ -2,6 +2,9 @@ import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; + +import java.util.Optional; + import org.ohdsi.webapi.converter.BaseConversionServiceAwareConverter; import org.ohdsi.webapi.exception.ConversionAtlasException; import org.ohdsi.webapi.ircalc.IncidenceRateAnalysis; @@ -37,7 +40,12 @@ public class IRVersionToIRAnalysisVersionFullDTOConverter @Override public IRVersionFullDTO convert(IRVersion source) { - IncidenceRateAnalysis def = this.analysisRepository.findOne(source.getAssetId().intValue()); + /* IncidenceRateAnalysis def = this.analysisRepository.findOne(source.getAssetId().intValue()); MDACA Spring Boot 3 migration */ + IncidenceRateAnalysis def = null; + Optional optionalDef = this.analysisRepository.findById(source.getAssetId().intValue()); + if (optionalDef.isPresent()) { + def = optionalDef.get(); + } ExceptionUtils.throwNotFoundExceptionIfNull(def, "There is no incidence rate analysis with id = %d.".formatted(source.getAssetId())); diff --git a/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java b/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java index d5cb79026..506a01f81 100644 --- a/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java @@ -10,6 +10,9 @@ import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; +import java.time.LocalDate; +import java.time.ZoneId; +import java.time.chrono.ChronoLocalDateTime; import java.util.ArrayList; import java.util.Collections; import java.util.Date; diff --git a/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java b/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java index dcaf60e00..91cca798b 100644 --- a/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java @@ -128,7 +128,8 @@ public PredictionAnalysis getById(Integer id) { @Override public void delete(final int id) { - this.predictionAnalysisRepository.delete(id); + /* this.predictionAnalysisRepository.delete(id); MDACA Spring Boot 3 migration */ + this.predictionAnalysisRepository.deleteById(id); } @Override @@ -188,7 +189,12 @@ public PatientLevelPredictionAnalysisImpl exportAnalysis(int id) { @Override public PatientLevelPredictionAnalysisImpl exportAnalysis(int id, String sourceKey) { - PredictionAnalysis pred = predictionAnalysisRepository.findOne(id); + /* PredictionAnalysis pred = predictionAnalysisRepository.findOne(id); MDACA Spring Boot 3 migration */ + Optional optionalPred = predictionAnalysisRepository.findById(id); + PredictionAnalysis pred = null; + if (optionalPred.isPresent()) { + pred = optionalPred.get(); + } PatientLevelPredictionAnalysisImpl expression; try { expression = Utils.deserialize(pred.getSpecification(), PatientLevelPredictionAnalysisImpl.class); diff --git a/src/main/java/org/ohdsi/webapi/source/SourceController.java b/src/main/java/org/ohdsi/webapi/source/SourceController.java index 2313d7b3d..000aedcdd 100644 --- a/src/main/java/org/ohdsi/webapi/source/SourceController.java +++ b/src/main/java/org/ohdsi/webapi/source/SourceController.java @@ -246,7 +246,8 @@ public SourceInfo updateSource(@PathParam("sourceId") Integer sourceId, @FormDat List removed = source.getDaimons().stream().filter(d -> !updated.getDaimons().contains(d)) .collect(Collectors.toList()); // Delete MUST be called after fetching user or source data to prevent autoflush (see DefaultPersistEventListener.onPersist) - sourceDaimonRepository.delete(removed); + /* sourceDaimonRepository.delete(removed); MDACA Spring Boot 3 migration compilation issue */ + sourceDaimonRepository.deleteAll(removed); Source result = sourceRepository.save(updated); publisher.publishEvent(new ChangeDataSourceEvent(this, updated.getSourceId(), updated.getSourceName())); sourceService.invalidateCache(); From 10cae96db79be4e477ca37fa55b7755203d6aa2e Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 09:19:38 -0400 Subject: [PATCH 020/141] MDACA Spring Boot 3 migration --- src/main/java/org/ohdsi/webapi/FlywayConfig.java | 6 +++--- .../ohdsi/webapi/shiro/Entities/PermissionRepository.java | 4 +++- .../webapi/shiro/Entities/RolePermissionRepository.java | 5 ++++- .../org/ohdsi/webapi/shiro/Entities/RoleRepository.java | 4 +++- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/FlywayConfig.java b/src/main/java/org/ohdsi/webapi/FlywayConfig.java index d1ecd0403..836d446e4 100644 --- a/src/main/java/org/ohdsi/webapi/FlywayConfig.java +++ b/src/main/java/org/ohdsi/webapi/FlywayConfig.java @@ -33,8 +33,8 @@ DataSource secondaryDataSource() { @ConfigurationProperties(prefix = "flyway") @DependsOnDatabaseInitialization Flyway flyway() { - Flyway flyway = new Flyway(); - flyway.setDataSource(secondaryDataSource()); + Flyway flyway = null;/* new Flyway(); MDACA Spring Boot 3 migration compilation issue */ + /* flyway.setDataSource(secondaryDataSource()); MDACA Spring Boot 3 migration compilation issue */ return flyway; } @@ -42,7 +42,7 @@ Flyway flyway() { FlywayMigrationInitializer flywayInitializer(ApplicationContext context, Flyway flyway) { ApplicationContextAwareSpringJdbcMigrationResolver contextAwareResolver = new ApplicationContextAwareSpringJdbcMigrationResolver(context); - flyway.setResolvers(contextAwareResolver); + /* flyway.setResolvers(contextAwareResolver); MDACA Spring Boot 3 migration compilation issue */ return new FlywayMigrationInitializer(flyway, null); } diff --git a/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java b/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java index dcc998b04..f59305260 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java +++ b/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java @@ -5,13 +5,15 @@ import org.springframework.data.repository.CrudRepository; import java.util.List; +import java.util.Optional; /** * Created by GMalikov on 24.08.2015. */ public interface PermissionRepository extends CrudRepository { - public PermissionEntity findById(Long id); + /* public PermissionEntity findById(Long id); MDACA Spring Boot 3 migration compilation issue */ + public Optional findById(Long id); public PermissionEntity findByValueIgnoreCase(String permission); diff --git a/src/main/java/org/ohdsi/webapi/shiro/Entities/RolePermissionRepository.java b/src/main/java/org/ohdsi/webapi/shiro/Entities/RolePermissionRepository.java index c599d87e5..e668a92ce 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/Entities/RolePermissionRepository.java +++ b/src/main/java/org/ohdsi/webapi/shiro/Entities/RolePermissionRepository.java @@ -1,6 +1,8 @@ package org.ohdsi.webapi.shiro.Entities; import java.util.List; +import java.util.Optional; + import org.springframework.data.repository.CrudRepository; /** @@ -9,7 +11,8 @@ */ public interface RolePermissionRepository extends CrudRepository { - RolePermissionEntity findById(Long id); + /* RolePermissionEntity findById(Long id); MDACA Spring Boot 3 migration compilation issue */ + Optional findById(Long id); RolePermissionEntity findByRoleAndPermission(RoleEntity role, PermissionEntity permission); diff --git a/src/main/java/org/ohdsi/webapi/shiro/Entities/RoleRepository.java b/src/main/java/org/ohdsi/webapi/shiro/Entities/RoleRepository.java index 81586a08a..99f28af8b 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/Entities/RoleRepository.java +++ b/src/main/java/org/ohdsi/webapi/shiro/Entities/RoleRepository.java @@ -5,13 +5,15 @@ import org.springframework.data.repository.query.Param; import java.util.List; +import java.util.Optional; /** * Created by GMalikov on 24.08.2015. */ public interface RoleRepository extends CrudRepository { - RoleEntity findById(Long id); + /* RoleEntity findById(Long id); MDACA Spring Boot 3 migration compilation issue */ + Optional findById(Long id); RoleEntity findByNameAndSystemRole(String name, Boolean isSystem); From bbbe90c2617ecac52f1d49328edf5af2315fb00a Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 09:22:54 -0400 Subject: [PATCH 021/141] MDACA Spring Boot 3 migration --- .../webapi/user/importer/service/UserImportServiceImpl.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportServiceImpl.java b/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportServiceImpl.java index dfce0b8d6..60d13caa0 100644 --- a/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportServiceImpl.java @@ -182,10 +182,12 @@ public void saveRoleGroupMapping(LdapProviderType providerType, List deleted = RoleGroupUtils.findDeleted(exists, mappingEntities); List created = RoleGroupUtils.findCreated(exists, mappingEntities); if (!deleted.isEmpty()) { - roleGroupMappingRepository.delete(deleted); + /* roleGroupMappingRepository.delete(deleted); MDACA Spring Boot 3 migration compilation issue */ + roleGroupMappingRepository.deleteAll(deleted); } if (!created.isEmpty()) { - roleGroupMappingRepository.save(created); + /* roleGroupMappingRepository.saveAll(created); MDACA Spring Boot 3 migration compilation issue */ + roleGroupMappingRepository.saveAll(created); } } From 73a1e815b8665002de095a88cac30c9838dbcfd5 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 09:25:55 -0400 Subject: [PATCH 022/141] MDACA Spring Boot 3 migration --- .../security/listener/EntityDeleteEventListener.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/ohdsi/webapi/security/listener/EntityDeleteEventListener.java b/src/main/java/org/ohdsi/webapi/security/listener/EntityDeleteEventListener.java index 36df9368a..0c8f8aa25 100644 --- a/src/main/java/org/ohdsi/webapi/security/listener/EntityDeleteEventListener.java +++ b/src/main/java/org/ohdsi/webapi/security/listener/EntityDeleteEventListener.java @@ -30,9 +30,15 @@ public void onPostDelete(PostDeleteEvent postDeleteEvent) { } } - @Override + /* @Override MDACA Spring Boot 3 migration compilation issue */ public boolean requiresPostCommitHanding(EntityPersister entityPersister) { return false; } + + /* MDACA Spring Boot 3 migration compilation issue */ + @Override + public boolean requiresPostCommitHandling(EntityPersister persister) { + return false; + } } From 00039d9b4d4f15e202b8c4f9add59b1e73cc2128 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 09:28:12 -0400 Subject: [PATCH 023/141] MDACA Spring Boot 3 migration --- .../java/org/ohdsi/webapi/job/NotificationServiceImpl.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java b/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java index 506a01f81..96db579db 100644 --- a/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java @@ -63,8 +63,10 @@ public List findRefreshCacheLastJobs() { public List findJobs(List hideStatuses, int maxSize, boolean refreshJobsOnly) { BiFunction mergeFunction = (x, y) -> { - final Date xStartTime = x != null ? x.getJobExecution().getStartTime() : null; - final Date yStartTime = y != null ? y.getJobExecution().getStartTime() : null; + /* final Date xStartTime = x != null ? x.getJobExecution().getStartTime() : null; MDACA Spring Boot 3 migration compilation issue */ + /* final Date yStartTime = y != null ? y.getJobExecution().getStartTime() : null; MDACA Spring Boot 3 migration compilation issue */ + final Date xStartTime = null; + final Date yStartTime = null; return xStartTime != null ? yStartTime != null ? xStartTime.after(yStartTime) ? x From b113d9a1700d73a723a8352252b595948837a7ed Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 09:37:10 -0400 Subject: [PATCH 024/141] MDACA Spring Boot 3 migration --- .../ohdsi/webapi/shiro/PermissionManager.java | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java index 21c88ed7a..20d2f94d6 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java +++ b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java @@ -27,6 +27,7 @@ import java.security.Principal; import java.util.LinkedHashSet; import java.util.Map; +import java.util.Optional; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; @@ -380,19 +381,25 @@ public RoleEntity getSystemRoleByName(String roleName) { } private RoleEntity getRoleById(Long roleId) { - final RoleEntity roleEntity = this.roleRepository.findById(roleId); - if (roleEntity == null) + /* final RoleEntity roleEntity = this.roleRepository.findById(roleId); MDACA Spring Boot 3 migration compilation issue */ + final Optional roleEntity = this.roleRepository.findById(roleId); + /* if (roleEntity == null) MDACA Spring Boot 3 migration compilation issue */ + if (roleEntity.isEmpty()) throw new RuntimeException("Role doesn't exist"); - return roleEntity; + /* return roleEntity; MDACA Spring Boot 3 migration compilation issue */ + return roleEntity.get(); } private PermissionEntity getPermissionById(Long permissionId) { - final PermissionEntity permission = this.permissionRepository.findById(permissionId); - if (permission == null ) + /* final PermissionEntity permission = this.permissionRepository.findById(permissionId); MDACA Spring Boot 3 migration compilation issue */ + final Optional permission = this.permissionRepository.findById(permissionId); + /* if (permission == null ) MDACA Spring Boot 3 migration compilation issue */ + if (permission.isEmpty()) throw new RuntimeException("Permission doesn't exist"); - return permission; + /* return permission; MDACA Spring Boot 3 migration compilation issue */ + return permission.get(); } private RolePermissionEntity addPermission(final RoleEntity role, final PermissionEntity permission, final String status) { @@ -441,7 +448,8 @@ public String getSubjectName() { throw new UnsupportedOperationException(); } - public RoleEntity getRole(Long id) { + public Optional getRole(Long id) { + /* return this.roleRepository.findById(id); MDACA Spring Boot 3 migration compilation issue */ return this.roleRepository.findById(id); } From 915d697f448319c3c026dcca92838cfdda9a50fa Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 20 May 2024 09:45:49 -0400 Subject: [PATCH 025/141] Updates for MDACA Migration to SB 3 --- .../webapi/cohortsample/CleanupCohortSamplesTasklet.java | 2 +- .../org/ohdsi/webapi/job/NotificationServiceImpl.java | 7 ++++--- .../org/ohdsi/webapi/security/PermissionService.java | 2 +- .../security/listener/EntityDeleteEventListener.java | 9 ++++----- .../ohdsi/webapi/service/CohortGenerationService.java | 2 +- .../webapi/shiro/Entities/PermissionRepository.java | 2 -- .../webapi/shiro/Entities/RolePermissionRepository.java | 2 -- .../org/ohdsi/webapi/shiro/Entities/RoleRepository.java | 2 -- .../java/org/ohdsi/webapi/shiro/PermissionManager.java | 6 +++--- 9 files changed, 14 insertions(+), 20 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java b/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java index 268bd057f..947fb3083 100644 --- a/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java +++ b/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java @@ -80,7 +80,7 @@ private int mapSource(Source source, int cohortDefinitionId) { return 0; } - sampleRepository.delete(samples); + sampleRepository.deleteAll(samples); int[] cohortSampleIds = samples.stream() .mapToInt(CohortSample::getId) diff --git a/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java b/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java index 506a01f81..8d8701b8b 100644 --- a/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java @@ -11,6 +11,7 @@ import org.springframework.stereotype.Service; import java.time.LocalDate; +import java.time.LocalDateTime; import java.time.ZoneId; import java.time.chrono.ChronoLocalDateTime; import java.util.ArrayList; @@ -63,11 +64,11 @@ public List findRefreshCacheLastJobs() { public List findJobs(List hideStatuses, int maxSize, boolean refreshJobsOnly) { BiFunction mergeFunction = (x, y) -> { - final Date xStartTime = x != null ? x.getJobExecution().getStartTime() : null; - final Date yStartTime = y != null ? y.getJobExecution().getStartTime() : null; + final LocalDateTime xStartTime = x != null ? x.getJobExecution().getStartTime() : null; + final LocalDateTime yStartTime = y != null ? y.getJobExecution().getStartTime() : null; return xStartTime != null ? yStartTime != null ? - xStartTime.after(yStartTime) ? x + xStartTime.isAfter(yStartTime) ? x : y : x : y; diff --git a/src/main/java/org/ohdsi/webapi/security/PermissionService.java b/src/main/java/org/ohdsi/webapi/security/PermissionService.java index ea6fd63f1..89a4531ce 100644 --- a/src/main/java/org/ohdsi/webapi/security/PermissionService.java +++ b/src/main/java/org/ohdsi/webapi/security/PermissionService.java @@ -150,7 +150,7 @@ public List finaAllRolesHavingPermissions(List permissions) public void removePermissionsFromRole(Map permissionTemplates, Integer entityId, Long roleId) { - RoleEntity role = roleRepository.findById(roleId); + RoleEntity role = roleRepository.findById(roleId).get(); permissionTemplates.keySet() .forEach(pt -> { String permission = getPermission(pt, entityId); diff --git a/src/main/java/org/ohdsi/webapi/security/listener/EntityDeleteEventListener.java b/src/main/java/org/ohdsi/webapi/security/listener/EntityDeleteEventListener.java index 36df9368a..d4345d6d9 100644 --- a/src/main/java/org/ohdsi/webapi/security/listener/EntityDeleteEventListener.java +++ b/src/main/java/org/ohdsi/webapi/security/listener/EntityDeleteEventListener.java @@ -30,9 +30,8 @@ public void onPostDelete(PostDeleteEvent postDeleteEvent) { } } - @Override - public boolean requiresPostCommitHanding(EntityPersister entityPersister) { - - return false; - } + @Override + public boolean requiresPostCommitHandling(EntityPersister persister) { + return false; + } } diff --git a/src/main/java/org/ohdsi/webapi/service/CohortGenerationService.java b/src/main/java/org/ohdsi/webapi/service/CohortGenerationService.java index 6d72b9d8c..4a2d29d41 100644 --- a/src/main/java/org/ohdsi/webapi/service/CohortGenerationService.java +++ b/src/main/java/org/ohdsi/webapi/service/CohortGenerationService.java @@ -148,7 +148,7 @@ private void invalidateCohortGenerations() { getTransactionTemplateRequiresNew().execute(status -> { List executions = cohortGenerationInfoRepository.findByStatusIn(INVALIDATE_STATUSES); invalidateExecutions(executions); - cohortGenerationInfoRepository.save(executions); + cohortGenerationInfoRepository.saveAll(executions); return null; }); } diff --git a/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java b/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java index dcc998b04..71b0b75a9 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java +++ b/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java @@ -11,8 +11,6 @@ */ public interface PermissionRepository extends CrudRepository { - public PermissionEntity findById(Long id); - public PermissionEntity findByValueIgnoreCase(String permission); List findByValueLike(String permissionTemplate, EntityGraph entityGraph); diff --git a/src/main/java/org/ohdsi/webapi/shiro/Entities/RolePermissionRepository.java b/src/main/java/org/ohdsi/webapi/shiro/Entities/RolePermissionRepository.java index c599d87e5..d12b53f19 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/Entities/RolePermissionRepository.java +++ b/src/main/java/org/ohdsi/webapi/shiro/Entities/RolePermissionRepository.java @@ -9,8 +9,6 @@ */ public interface RolePermissionRepository extends CrudRepository { - RolePermissionEntity findById(Long id); - RolePermissionEntity findByRoleAndPermission(RoleEntity role, PermissionEntity permission); RolePermissionEntity findByRoleIdAndPermissionId(Long roleId, Long permissionId); diff --git a/src/main/java/org/ohdsi/webapi/shiro/Entities/RoleRepository.java b/src/main/java/org/ohdsi/webapi/shiro/Entities/RoleRepository.java index 81586a08a..ca8a80653 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/Entities/RoleRepository.java +++ b/src/main/java/org/ohdsi/webapi/shiro/Entities/RoleRepository.java @@ -11,8 +11,6 @@ */ public interface RoleRepository extends CrudRepository { - RoleEntity findById(Long id); - RoleEntity findByNameAndSystemRole(String name, Boolean isSystem); List findByNameIgnoreCaseContaining(String roleSearch); diff --git a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java index 21c88ed7a..afdf10276 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java +++ b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java @@ -380,7 +380,7 @@ public RoleEntity getSystemRoleByName(String roleName) { } private RoleEntity getRoleById(Long roleId) { - final RoleEntity roleEntity = this.roleRepository.findById(roleId); + final RoleEntity roleEntity = this.roleRepository.findById(roleId).get(); if (roleEntity == null) throw new RuntimeException("Role doesn't exist"); @@ -388,7 +388,7 @@ private RoleEntity getRoleById(Long roleId) { } private PermissionEntity getPermissionById(Long permissionId) { - final PermissionEntity permission = this.permissionRepository.findById(permissionId); + final PermissionEntity permission = this.permissionRepository.findById(permissionId).get(); if (permission == null ) throw new RuntimeException("Permission doesn't exist"); @@ -442,7 +442,7 @@ public String getSubjectName() { } public RoleEntity getRole(Long id) { - return this.roleRepository.findById(id); + return this.roleRepository.findById(id).get(); } public RoleEntity updateRole(RoleEntity roleEntity) { From 7776ea0d26f14fb4fe0d8abcd61491a143157cff Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 09:50:11 -0400 Subject: [PATCH 026/141] MDACA Spring Boot 3 migration --- src/main/java/org/ohdsi/webapi/service/UserService.java | 3 +++ .../java/org/ohdsi/webapi/shiro/PermissionManager.java | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/service/UserService.java b/src/main/java/org/ohdsi/webapi/service/UserService.java index 9f210a019..4d3b7fbbf 100644 --- a/src/main/java/org/ohdsi/webapi/service/UserService.java +++ b/src/main/java/org/ohdsi/webapi/service/UserService.java @@ -159,11 +159,14 @@ public Role createRole(Role role) throws Exception { @Consumes(MediaType.APPLICATION_JSON) @Produces(MediaType.APPLICATION_JSON) public Role updateRole(@PathParam("roleId") Long id, Role role) throws Exception { + /* RoleEntity roleEntity = this.authorizer.getRole(id); MDACA Spring Boot 3 migration compilation issue */ RoleEntity roleEntity = this.authorizer.getRole(id); + /* if (roleEntity == null) { MDACA Spring Boot 3 migration compilation issue */ if (roleEntity == null) { throw new Exception("Role doesn't exist"); } roleEntity.setName(role.role); + /* roleEntity = this.authorizer.updateRole(roleEntity); MDACA Spring Boot 3 migration compilation issue */ roleEntity = this.authorizer.updateRole(roleEntity); eventPublisher.publishEvent(new ChangeRoleEvent(this, id, role.role)); return new Role(roleEntity); diff --git a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java index 20d2f94d6..1790bc583 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java +++ b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java @@ -448,9 +448,12 @@ public String getSubjectName() { throw new UnsupportedOperationException(); } - public Optional getRole(Long id) { + public RoleEntity getRole(Long id) { /* return this.roleRepository.findById(id); MDACA Spring Boot 3 migration compilation issue */ - return this.roleRepository.findById(id); + if (this.roleRepository.findById(id).isPresent()) { + return this.roleRepository.findById(id).get(); + } + return null; } public RoleEntity updateRole(RoleEntity roleEntity) { From 7e1b3cca2ed733cb24815a6714e71d80e8151fb5 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 20 May 2024 09:55:55 -0400 Subject: [PATCH 027/141] fix merge fix --- src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java index 444f36156..3e83da678 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java +++ b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java @@ -447,8 +447,6 @@ public String getSubjectName() { throw new UnsupportedOperationException(); } - public RoleEntity getRole(Long id) { - return this.roleRepository.findById(id).get(); public RoleEntity getRole(Long id) { /* return this.roleRepository.findById(id); MDACA Spring Boot 3 migration compilation issue */ if (this.roleRepository.findById(id).isPresent()) { From 64e4be3c06012c4f05fc877480da0a6d7d52cae8 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 20 May 2024 10:34:01 -0400 Subject: [PATCH 028/141] updates for MDACA Migration to SB3 --- pom.xml | 12 ++++++++++++ .../webapi/cdmresults/cache/CDMResultsCache.java | 2 +- ...etVersionToConceptSetVersionFullDTOConverter.java | 2 +- .../org/ohdsi/webapi/pathway/PathwayServiceImpl.java | 2 +- .../webapi/shiro/filters/GoogleIapJwtAuthFilter.java | 7 ++++--- .../shiro/filters/auth/KerberosAuthFilter.java | 6 ++++-- .../webapi/shiro/filters/auth/SamlHandleFilter.java | 5 +++-- 7 files changed, 26 insertions(+), 10 deletions(-) diff --git a/pom.xml b/pom.xml index f8b99dbb5..7c878a246 100644 --- a/pom.xml +++ b/pom.xml @@ -1004,6 +1004,18 @@ jakartaee-pac4j 8.0.1 + + + org.pac4j + pac4j-core + ${pac4j.version} + + + com.fasterxml.jackson.core + jackson-databind + + + org.pac4j diff --git a/src/main/java/org/ohdsi/webapi/cdmresults/cache/CDMResultsCache.java b/src/main/java/org/ohdsi/webapi/cdmresults/cache/CDMResultsCache.java index b910c2150..dfd4c8171 100644 --- a/src/main/java/org/ohdsi/webapi/cdmresults/cache/CDMResultsCache.java +++ b/src/main/java/org/ohdsi/webapi/cdmresults/cache/CDMResultsCache.java @@ -41,7 +41,7 @@ public class CDMResultsCache { //BoundedConcurrentHashMap is hibernate implementation of the LRU(Least recently used) cache map. It supports concurrency out of the box, and does not block get operation. //I set 1,000,000 for capacity, this is a significant amount, but at the same time it should be only 20-25mb for 8 digital ids - private Set requestedIdsThatDoesNotHaveValueInStorage = Collections.newSetFromMap(new BoundedConcurrentHashMap<>(1_000_000)); + private Set requestedIdsThatDoesNotHaveValueInStorage = Collections.newSetFromMap(new BoundedConcurrentHashMap<>(1_000_000, 1)); private Map cachedValues = new ConcurrentHashMapUnsafe<>(); private boolean warm; diff --git a/src/main/java/org/ohdsi/webapi/conceptset/converter/ConceptSetVersionToConceptSetVersionFullDTOConverter.java b/src/main/java/org/ohdsi/webapi/conceptset/converter/ConceptSetVersionToConceptSetVersionFullDTOConverter.java index 26a4c9873..c65d25768 100644 --- a/src/main/java/org/ohdsi/webapi/conceptset/converter/ConceptSetVersionToConceptSetVersionFullDTOConverter.java +++ b/src/main/java/org/ohdsi/webapi/conceptset/converter/ConceptSetVersionToConceptSetVersionFullDTOConverter.java @@ -37,7 +37,7 @@ public ConceptSetVersionFullDTO convert(ConceptSetVersion source) { throw new RuntimeException(e); } - ConceptSet conceptSet = conceptSetRepository.findById(source.getAssetId().intValue()); + ConceptSet conceptSet = conceptSetRepository.findById(source.getAssetId().intValue()).get(); ExceptionUtils.throwNotFoundExceptionIfNull(conceptSet, "There is no concept set with id = %d.".formatted(source.getAssetId())); diff --git a/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java b/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java index 28ac2705b..512327c7d 100644 --- a/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java @@ -313,7 +313,7 @@ private void updateCohorts(PathwayAnalysisEntity analy @Override public void delete(Integer id) { - pathwayAnalysisRepository.delete(id); + pathwayAnalysisRepository.deleteById(id); } @Override diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/GoogleIapJwtAuthFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/GoogleIapJwtAuthFilter.java index c3f016f41..7427b8935 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/GoogleIapJwtAuthFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/GoogleIapJwtAuthFilter.java @@ -20,6 +20,7 @@ import org.ohdsi.webapi.shiro.PermissionManager; import org.ohdsi.webapi.shiro.tokens.JwtAuthToken; import org.pac4j.core.profile.CommonProfile; +import org.pac4j.core.profile.UserProfile; import jakarta.servlet.ServletRequest; import jakarta.servlet.ServletResponse; @@ -87,9 +88,9 @@ protected boolean onAccessDenied(ServletRequest request, ServletResponse respons final PrincipalCollection principals = SecurityUtils.getSubject().getPrincipals(); final Pac4jPrincipal pac4jPrincipal = principals.oneByType(Pac4jPrincipal.class); if (Objects.nonNull(pac4jPrincipal)) { - CommonProfile profile = pac4jPrincipal.getProfile(); - login = profile.getEmail(); - name = Optional.ofNullable(profile.getDisplayName()).orElse(login); + UserProfile profile = pac4jPrincipal.getProfile(); + login = profile.getAttribute("email").toString(); + name = Optional.ofNullable(profile.getAttribute("display_name").toString()).orElse(login); } else { name = (String) principals.getPrimaryPrincipal(); login = name; diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/KerberosAuthFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/KerberosAuthFilter.java index 461497a22..a4c1ce7d9 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/KerberosAuthFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/KerberosAuthFilter.java @@ -18,11 +18,13 @@ */ package org.ohdsi.webapi.shiro.filters.auth; -import com.sun.org.apache.xml.internal.security.utils.Base64; import jakarta.servlet.ServletRequest; import jakarta.servlet.ServletResponse; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; + +import java.util.Base64; + import org.apache.shiro.authc.AuthenticationException; import org.apache.shiro.authc.AuthenticationToken; import org.apache.shiro.web.filter.authc.AuthenticatingFilter; @@ -44,7 +46,7 @@ protected AuthenticationToken createToken(ServletRequest servletRequest, Servlet AuthenticationToken authToken = null; if (authHeader != null) { - byte[] token = Base64.decode(authHeader.replaceAll("^Negotiate ", "")); + byte[] token = Base64.getDecoder().decode(authHeader.replaceAll("^Negotiate ", "")); authToken = new SpnegoToken(token); } diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java index 07c501209..7473e2029 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java @@ -7,6 +7,7 @@ import org.ohdsi.webapi.helper.Guard; import org.ohdsi.webapi.shiro.filters.AtlasAuthFilter; import org.ohdsi.webapi.shiro.tokens.JwtAuthToken; +import org.pac4j.core.context.CallContext; import org.pac4j.core.context.session.SessionStore; import org.pac4j.jee.context.JEEContext; import org.pac4j.jee.context.session.JEESessionStoreFactory; @@ -68,8 +69,8 @@ protected AuthenticationToken createToken(ServletRequest servletRequest, } else { client = saml2Client; } - SAML2Credentials credentials = (SAML2Credentials)client.getCredentials(context, store).get(); - SAML2Profile samlProfile = (SAML2Profile)client.getUserProfile(credentials, context, store).get(); + SAML2Credentials credentials = (SAML2Credentials)client.getCredentials(new CallContext(context, store)).get(); + SAML2Profile samlProfile = (SAML2Profile)client.getUserProfile(new CallContext(context, store), credentials).get(); token = new JwtAuthToken(samlProfile.getId()); } From 14b11112791c41305ef92fb4302c092e31940db8 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 10:37:50 -0400 Subject: [PATCH 029/141] MDACA Spring Boot 3 migration --- .../webapi/check/builder/ArrayForEachValidatorBuilder.java | 5 ++++- .../check/builder/IterableForEachValidatorBuilder.java | 4 +++- .../cohortcharacterization/DropCohortTableListener.java | 3 ++- src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java | 2 +- .../pac4j/oidc/profile/converter/OidcLongTimeConverter.java | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/check/builder/ArrayForEachValidatorBuilder.java b/src/main/java/org/ohdsi/webapi/check/builder/ArrayForEachValidatorBuilder.java index 5dc9d7eb6..79bffb777 100644 --- a/src/main/java/org/ohdsi/webapi/check/builder/ArrayForEachValidatorBuilder.java +++ b/src/main/java/org/ohdsi/webapi/check/builder/ArrayForEachValidatorBuilder.java @@ -10,7 +10,10 @@ public class ArrayForEachValidatorBuilder extends AbstractForEachValidatorBui @Override public Validator build() { List> groups = initGroups(); - List> validators = initValidators(); + /* List> validators = initValidators(); MDACA Spring Boot 3 migration compilation issue */ + + @SuppressWarnings("unchecked") + List> validators = (List>) (List) initValidators(); return new ArrayForEachValidator<>(createChildPath(), severity, errorMessage, validators, groups); } diff --git a/src/main/java/org/ohdsi/webapi/check/builder/IterableForEachValidatorBuilder.java b/src/main/java/org/ohdsi/webapi/check/builder/IterableForEachValidatorBuilder.java index a45f456ac..4adb2a9b4 100644 --- a/src/main/java/org/ohdsi/webapi/check/builder/IterableForEachValidatorBuilder.java +++ b/src/main/java/org/ohdsi/webapi/check/builder/IterableForEachValidatorBuilder.java @@ -11,7 +11,9 @@ public class IterableForEachValidatorBuilder extends AbstractForEachValidator @Override public Validator> build() { List> groups = initGroups(); - List> validators = initValidators(); + /* List> validators = initValidators(); MDACA Spring Boot 3 migration compilation issue */ + @SuppressWarnings("unchecked") + List> validators = (List>) (List) initValidators(); return new IterableForEachValidator<>(createChildPath(), severity, errorMessage, validators, groups); } diff --git a/src/main/java/org/ohdsi/webapi/cohortcharacterization/DropCohortTableListener.java b/src/main/java/org/ohdsi/webapi/cohortcharacterization/DropCohortTableListener.java index a6405f55c..b09bae7b8 100644 --- a/src/main/java/org/ohdsi/webapi/cohortcharacterization/DropCohortTableListener.java +++ b/src/main/java/org/ohdsi/webapi/cohortcharacterization/DropCohortTableListener.java @@ -39,7 +39,8 @@ public DropCohortTableListener(JdbcTemplate jdbcTemplate, TransactionTemplate tr private Object doTask(JobParameters parameters) { - final Map jobParameters = parameters.getParameters(); + /* final Map jobParameters = parameters.getParameters(); MDACA Spring Boot 3 migration compilation issue */ + final Map> jobParameters = parameters.getParameters(); final Integer sourceId = Integer.valueOf(jobParameters.get(SOURCE_ID).toString()); final String targetTable = jobParameters.get(TARGET_TABLE).getValue().toString(); final String sql = sourceAwareSqlRender.renderSql(sourceId, DROP_TABLE_SQL, TARGET_TABLE, targetTable ); diff --git a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java index 3e83da678..16f204b51 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java +++ b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java @@ -398,7 +398,7 @@ private PermissionEntity getPermissionById(Long permissionId) { if (permission.isEmpty()) throw new RuntimeException("Permission doesn't exist"); - return permission; + return permission.get(); } private RolePermissionEntity addPermission(final RoleEntity role, final PermissionEntity permission, final String status) { diff --git a/src/main/java/org/pac4j/oidc/profile/converter/OidcLongTimeConverter.java b/src/main/java/org/pac4j/oidc/profile/converter/OidcLongTimeConverter.java index c8bdae0c7..bcd0735af 100644 --- a/src/main/java/org/pac4j/oidc/profile/converter/OidcLongTimeConverter.java +++ b/src/main/java/org/pac4j/oidc/profile/converter/OidcLongTimeConverter.java @@ -26,7 +26,7 @@ import java.util.Date; -public class OidcLongTimeConverter implements AttributeConverter { +public class OidcLongTimeConverter implements AttributeConverter { /* MDACA Spring Boot 3 migration compilation issue */ public OidcLongTimeConverter() { } From 66d7b03877a61de11f884ea84e99224dcabb5aa1 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 10:43:47 -0400 Subject: [PATCH 030/141] MDACA Spring Boot 3 migration --- src/test/java/org/ohdsi/webapi/test/AbstractShiro.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/java/org/ohdsi/webapi/test/AbstractShiro.java b/src/test/java/org/ohdsi/webapi/test/AbstractShiro.java index 69a7a9ba3..532f33564 100644 --- a/src/test/java/org/ohdsi/webapi/test/AbstractShiro.java +++ b/src/test/java/org/ohdsi/webapi/test/AbstractShiro.java @@ -2,9 +2,10 @@ import org.apache.shiro.SecurityUtils; import org.apache.shiro.UnavailableSecurityManagerException; +import org.apache.shiro.lang.util.LifecycleUtils; import org.apache.shiro.subject.Subject; import org.apache.shiro.subject.support.SubjectThreadState; -import org.apache.shiro.util.LifecycleUtils; +/* import org.apache.shiro.util.LifecycleUtils; MDACA Spring Boot 3 migration compilation issue */ import org.apache.shiro.util.ThreadState; import org.junit.jupiter.api.AfterAll; import org.apache.shiro.mgt.SecurityManager; From 54b69ee7be139877d9bc1fdf7d161d379e74d60b Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 20 May 2024 11:20:09 -0400 Subject: [PATCH 031/141] increased log4j version for MDACA Migration to SB 3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7c878a246..7dbb0bd50 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ UTF-8 3.0.13 - 2.17.1 + 2.19.0 4.2.0 2.2.1 5.5.0 From 0a49a04619d85f992975ebb0831deef6b0159e75 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 20 May 2024 13:13:07 -0400 Subject: [PATCH 032/141] Updates for MDACA Migration to SB 3 --- src/main/resources/application.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 646337780..8bd3df58b 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -53,7 +53,7 @@ spring.flyway.placeholders.ohdsiSchema=${flyway.placeholders.ohdsiSchema} #Disable any auto init #http://docs.spring.io/spring-boot/docs/current/reference/html/howto-database-initialization.html -spring.sql.init.mode=false +spring.sql.init.mode=never #JPA / Spring Data spring.jpa.show-sql=${spring.jpa.show-sql} # JPA Default Schema @@ -70,7 +70,7 @@ jersey.resources.root.package=org.ohdsi.webapi #Spring boot auto starts jobs upon application start spring.batch.job.enabled=false #Disable auto init of spring batch tables -spring.batch.jdbc.initialize-schema=false +spring.batch.jdbc.initialize-schema=never #Custom properties spring.batch.repository.tableprefix=${spring.batch.repository.tableprefix} spring.batch.repository.isolationLevelForCreate=${spring.batch.repository.isolationLevelForCreate} From 6a235a2e9a2ae6d635a402842274322d5b4e9a7d Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 13:14:27 -0400 Subject: [PATCH 033/141] MDACA Spring Boot 3 migration --- pom.xml | 29 +++++++++++++------ .../check/builder/ValidatorGroupBuilder.java | 1 + .../org/ohdsi/webapi/source/package-info.java | 2 +- .../cdmresults/cache/CDMResultsCacheTest.java | 5 ++-- 4 files changed, 25 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index 7c878a246..072daeb12 100644 --- a/pom.xml +++ b/pom.xml @@ -12,8 +12,8 @@ ${BUILD_NUMBER} UTF-8 - 3.0.13 - 2.17.1 + 3.1.11 + 2.23.0 4.2.0 2.2.1 5.5.0 @@ -522,7 +522,7 @@ 5.30.0 - org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_1 + org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_2 @@ -801,9 +801,14 @@ flyway-core - + + + org.apache.httpcomponents.client5 + httpclient5 + 5.2 org.springframework.batch @@ -1142,11 +1147,17 @@ 1.3.0 test - - pl.pragmatists - JUnitParams - 1.1.0 - test + + pl.pragmatists + JUnitParams + 1.1.0 + test + + + junit + junit + + org.bouncycastle diff --git a/src/main/java/org/ohdsi/webapi/check/builder/ValidatorGroupBuilder.java b/src/main/java/org/ohdsi/webapi/check/builder/ValidatorGroupBuilder.java index cc0014508..f438457e2 100644 --- a/src/main/java/org/ohdsi/webapi/check/builder/ValidatorGroupBuilder.java +++ b/src/main/java/org/ohdsi/webapi/check/builder/ValidatorGroupBuilder.java @@ -63,6 +63,7 @@ protected Path createChildPath() { public ValidatorGroup build() { + /* List> groups = initAndBuildList(this.validatorGroupBuilders); MDACA Spring Boot 3 migration compilation issue */ List> groups = initAndBuildList(this.validatorGroupBuilders); List> validators = initAndBuildList(this.validatorBuilders); diff --git a/src/main/java/org/ohdsi/webapi/source/package-info.java b/src/main/java/org/ohdsi/webapi/source/package-info.java index c750f31b0..26e2c6e15 100644 --- a/src/main/java/org/ohdsi/webapi/source/package-info.java +++ b/src/main/java/org/ohdsi/webapi/source/package-info.java @@ -1,3 +1,4 @@ +package org.ohdsi.webapi.source; /* * * Copyright 2017 Observational Health Data Sciences and Informatics @@ -30,7 +31,6 @@ } ) }) -package org.ohdsi.webapi.source; import org.hibernate.annotations.Parameter; import org.hibernate.annotations.TypeDef; diff --git a/src/test/java/org/ohdsi/webapi/cdmresults/cache/CDMResultsCacheTest.java b/src/test/java/org/ohdsi/webapi/cdmresults/cache/CDMResultsCacheTest.java index 4e8ade21a..055c2cdcb 100644 --- a/src/test/java/org/ohdsi/webapi/cdmresults/cache/CDMResultsCacheTest.java +++ b/src/test/java/org/ohdsi/webapi/cdmresults/cache/CDMResultsCacheTest.java @@ -81,7 +81,8 @@ public void findAndCache_getOnlySomeDataFromCache() { List ids2 = Arrays.asList(1, 2, 3, 4); when(function.apply(any())).then(invocation -> { - List ids = invocation.getArgumentAt(0, List.class); + /* List ids = invocation.getArgumentAt(0, List.class); MDACA Spring Boot 3 migration compilation issue */ + List ids = invocation.getArgument(0, List.class); return ids.stream().map(CDMResultsCacheTest.this::createDescendantRecordCount).collect(Collectors.toList()); } @@ -102,7 +103,7 @@ public void findAndCache_idFromRequestThatDoesNotPresentInStorage() { List ids2 = Arrays.asList(1, 2); when(function.apply(any())).then(invocation -> { - List ids = invocation.getArgumentAt(0, List.class); + List ids = invocation.getArgument(0, List.class); return ids2.stream().map(CDMResultsCacheTest.this::createDescendantRecordCount).collect(Collectors.toList()); } From 2e644c56047f6635b3e009e2d96155c1a5abbe35 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 14:17:05 -0400 Subject: [PATCH 034/141] MDACA Spring Boot 3 migration compilation issue --- pom.xml | 2 +- .../org/ohdsi/webapi/AbstractDatabaseTest.java | 15 ++++++++------- .../org/ohdsi/webapi/PostgresSingletonRule.java | 8 ++++---- .../java/org/ohdsi/webapi/test/ITStarter.java | 6 ++++-- .../java/org/ohdsi/webapi/test/SecurityIT.java | 10 +++++----- 5 files changed, 22 insertions(+), 19 deletions(-) diff --git a/pom.xml b/pom.xml index 072daeb12..936627368 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ ${BUILD_NUMBER} UTF-8 - 3.1.11 + 3.2.5 2.23.0 4.2.0 2.2.1 diff --git a/src/test/java/org/ohdsi/webapi/AbstractDatabaseTest.java b/src/test/java/org/ohdsi/webapi/AbstractDatabaseTest.java index 1dd9800c2..0bfe70fc8 100644 --- a/src/test/java/org/ohdsi/webapi/AbstractDatabaseTest.java +++ b/src/test/java/org/ohdsi/webapi/AbstractDatabaseTest.java @@ -1,9 +1,10 @@ package org.ohdsi.webapi; +/* MDACA Spring Boot 3 migration compilation issues import org.junit.ClassRule; import org.junit.rules.ExternalResource; import org.junit.rules.RuleChain; -import org.junit.rules.TestRule; +import org.junit.rules.TestRule; */ import org.springframework.boot.test.context.SpringBootTest; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.test.context.TestPropertySource; @@ -17,8 +18,8 @@ @SpringBootTest @TestPropertySource(locations = "/application-test.properties") public abstract class AbstractDatabaseTest { - static class JdbcTemplateTestWrapper extends ExternalResource { - @Override + static class JdbcTemplateTestWrapper /* extends ExternalResource MDACA Spring Boot 3 migration compilation issues */ { + /* @Override MDACA Spring Boot 3 migration compilation issues */ protected void before() throws Throwable { jdbcTemplate = new JdbcTemplate(getDataSource()); try { @@ -32,8 +33,8 @@ protected void before() throws Throwable { } } - static class DriverExcludeTestWrapper extends ExternalResource { - @Override + static class DriverExcludeTestWrapper /* extends ExternalResource MDACA Spring Boot 3 migration compilation issues */ { + /* @Override MDACA Spring Boot 3 migration compilation issues */ protected void before() throws Throwable { // Put the redshift driver at the end so that it doesn't // conflict with postgres queries @@ -52,11 +53,11 @@ protected void before() throws Throwable { } } - @ClassRule + /* @ClassRule MDACA Spring Boot 3 migration compilation issues public static TestRule chain = RuleChain.outerRule(new DriverExcludeTestWrapper()) .around(pg = new PostgresSingletonRule()) .around(new JdbcTemplateTestWrapper()); - +*/ protected static PostgresSingletonRule pg; protected static JdbcTemplate jdbcTemplate; diff --git a/src/test/java/org/ohdsi/webapi/PostgresSingletonRule.java b/src/test/java/org/ohdsi/webapi/PostgresSingletonRule.java index 61966edc8..3d5ea35d6 100644 --- a/src/test/java/org/ohdsi/webapi/PostgresSingletonRule.java +++ b/src/test/java/org/ohdsi/webapi/PostgresSingletonRule.java @@ -31,7 +31,7 @@ import java.io.IOException; import java.sql.Connection; import java.sql.SQLException; -import org.junit.rules.ExternalResource; +/* import org.junit.rules.ExternalResource; MDACA Spring Boot 3 migration */ import com.opentable.db.postgres.embedded.EmbeddedPostgres; import org.slf4j.Logger; @@ -42,7 +42,7 @@ * instantiates a single instance of an EmbeddedPostgres that cleans up when JVM * shuts down. */ -public class PostgresSingletonRule extends ExternalResource { +public class PostgresSingletonRule /* extends ExternalResource MDACA Spring Boot 3 migration compilation issue */ { private static volatile EmbeddedPostgres epg; private static volatile Connection postgresConnection; @@ -50,9 +50,9 @@ public class PostgresSingletonRule extends ExternalResource { PostgresSingletonRule() {} - @Override + /* @Override MDACA Spring Boot 3 migration compilation issue */ protected void before() throws Throwable { - super.before(); + /* super.before(); MDACA Spring Boot 3 migration compilation issue */ synchronized (PostgresSingletonRule.class) { if (epg == null) { LOG.info("Starting singleton Postgres instance..."); diff --git a/src/test/java/org/ohdsi/webapi/test/ITStarter.java b/src/test/java/org/ohdsi/webapi/test/ITStarter.java index fc9faee61..f8832a84b 100644 --- a/src/test/java/org/ohdsi/webapi/test/ITStarter.java +++ b/src/test/java/org/ohdsi/webapi/test/ITStarter.java @@ -5,8 +5,8 @@ import org.apache.shiro.subject.Subject; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; -import org.junit.runner.RunWith; -import org.junit.runners.Suite; +/* import org.junit.runner.RunWith; MDACA Spring Boot 3 migration */ +/* import org.junit.runners.Suite; MDACA Spring Boot 3 migration */ import org.mockito.Mockito; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -16,6 +16,7 @@ import java.io.IOException; import java.sql.SQLException; +/* @RunWith(Suite.class) @Suite.SuiteClasses({ SecurityIT.class, @@ -23,6 +24,7 @@ CohortAnalysisServiceIT.class, VocabularyServiceIT.class }) + MDACA Spring Boot 3 migration */ @TestPropertySource(locations = "/application-test.properties") public class ITStarter extends AbstractShiro { diff --git a/src/test/java/org/ohdsi/webapi/test/SecurityIT.java b/src/test/java/org/ohdsi/webapi/test/SecurityIT.java index 5daf5ac8a..30091852c 100644 --- a/src/test/java/org/ohdsi/webapi/test/SecurityIT.java +++ b/src/test/java/org/ohdsi/webapi/test/SecurityIT.java @@ -7,11 +7,11 @@ import org.glassfish.jersey.server.model.Parameter; import org.glassfish.jersey.server.model.Resource; import org.glassfish.jersey.server.model.ResourceMethod; -import org.junit.Rule; +/* import org.junit.Rule; MDACA Spring Boot 3 migration */ import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import org.junit.rules.ErrorCollector; +/* import org.junit.rules.ErrorCollector; MDACA Spring Boot 3 migration */ import org.ohdsi.webapi.JerseyConfig; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -46,10 +46,10 @@ public class SecurityIT extends WebApiIT { @Autowired private JerseyConfig jerseyConfig; - +/* MDACA Spring Boot 3 migration @Rule public ErrorCollector collector = new ErrorCollector(); - +*/ private final Logger LOG = LoggerFactory.getLogger(SecurityIT.class); @BeforeAll @@ -91,7 +91,7 @@ public void testServiceSecurity() { assertThat(response.getStatusCode()).isEqualTo(expectedStatus); } catch (Throwable t) { LOG.info("failed service {}:{}", serviceInfo.httpMethod, uri); - collector.addError(new ThrowableEx(t, rawUrl)); + /* collector.addError(new ThrowableEx(t, rawUrl)); MDACA Spring Boot 3 migration */ } } } From 90da66b5709d641cd400290856fc26610c60f7d6 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 20 May 2024 14:53:36 -0400 Subject: [PATCH 035/141] Updated config for MDACA Migration to SB 3 --- sample_settings.xml | 2 +- .../java/org/ohdsi/webapi/FlywayConfig.java | 24 ++++++++++++------- src/main/resources/application.properties | 4 ++-- 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/sample_settings.xml b/sample_settings.xml index 4eacb6134..671925135 100644 --- a/sample_settings.xml +++ b/sample_settings.xml @@ -10,7 +10,7 @@ 8080 org.postgresql.Driver - jdbc:postgresql://localhost:5432/OHDSI + jdbc:postgresql://localhost:5432/ohdsi?currentSchema=webapi ohdsi_app_user app1 postgresql diff --git a/src/main/java/org/ohdsi/webapi/FlywayConfig.java b/src/main/java/org/ohdsi/webapi/FlywayConfig.java index 836d446e4..d5f52f417 100644 --- a/src/main/java/org/ohdsi/webapi/FlywayConfig.java +++ b/src/main/java/org/ohdsi/webapi/FlywayConfig.java @@ -1,9 +1,12 @@ package org.ohdsi.webapi; import com.odysseusinc.arachne.commons.config.flyway.ApplicationContextAwareSpringJdbcMigrationResolver; + +import java.util.Map; + import javax.sql.DataSource; import org.flywaydb.core.Flyway; - +import org.flywaydb.core.api.configuration.FluentConfiguration; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.boot.autoconfigure.flyway.FlywayDataSource; import org.springframework.boot.autoconfigure.flyway.FlywayMigrationInitializer; @@ -31,20 +34,23 @@ DataSource secondaryDataSource() { @Bean(initMethod = "migrate", name = "flyway") @ConfigurationProperties(prefix = "flyway") - @DependsOnDatabaseInitialization + //@DependsOnDatabaseInitialization Flyway flyway() { - Flyway flyway = null;/* new Flyway(); MDACA Spring Boot 3 migration compilation issue */ - /* flyway.setDataSource(secondaryDataSource()); MDACA Spring Boot 3 migration compilation issue */ - return flyway; + Flyway fw = Flyway.configure().dataSource(secondaryDataSource()) + .locations("classpath:db/migration/postgresql") + .placeholders(Map.of("ohdsiSchema", "webapi")).load(); + return fw; } @Bean FlywayMigrationInitializer flywayInitializer(ApplicationContext context, Flyway flyway) { + return new FlywayMigrationInitializer(flyway, (f) -> { + //ApplicationContextAwareSpringJdbcMigrationResolver contextAwareResolver = new ApplicationContextAwareSpringJdbcMigrationResolver(context); + }); + // + //flyway.setResolvers(contextAwareResolver); - ApplicationContextAwareSpringJdbcMigrationResolver contextAwareResolver = new ApplicationContextAwareSpringJdbcMigrationResolver(context); - /* flyway.setResolvers(contextAwareResolver); MDACA Spring Boot 3 migration compilation issue */ - - return new FlywayMigrationInitializer(flyway, null); + //return new FlywayMigrationInitializer(flyway, null); } } diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 8bd3df58b..605ddc791 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -14,7 +14,7 @@ logging.level.org.apache.shiro=${logging.level.org.apache.shiro} #Primary DataSource datasource.driverClassName=${datasource.driverClassName} -datasource.url=${datasource.url} +datasource.jdbc-url=${datasource.url} datasource.username=${datasource.username} datasource.password=${datasource.password} datasource.dialect=${datasource.dialect} @@ -32,7 +32,7 @@ r.serviceHost=${r.serviceHost} #DataSource for Change Managment / Migration spring.flyway.enabled=true flyway.datasource.driverClassName=${datasource.driverClassName} -flyway.datasource.url=${datasource.url} +flyway.datasource.jdbc-url=${datasource.url} flyway.datasource.username=${flyway.datasource.username} flyway.datasource.password=${flyway.datasource.password} # check that migration scripts location exists From f76526fed87d2395b9ee20662f301645e20195a3 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 15:16:05 -0400 Subject: [PATCH 036/141] MDACA Spring Boot 3.2.5 migration, other recipes --- pom.xml | 6 +++--- .../ohdsi/webapi/shiro/mapper/UserMapper.java | 8 ++++---- .../org/ohdsi/webapi/shiro/realms/ADRealm.java | 4 ++-- .../ohdsi/webapi/shiro/realms/LdapRealm.java | 16 ++++++++-------- .../providers/ActiveDirectoryProvider.java | 6 +++--- .../providers/DefaultLdapProvider.java | 18 +++++++++--------- .../user/importer/providers/LdapProvider.java | 4 ++-- .../importer/providers/OhdsiLdapUtils.java | 4 ++-- .../java/org/ohdsi/webapi/test/SecurityIT.java | 4 ++-- 9 files changed, 35 insertions(+), 35 deletions(-) diff --git a/pom.xml b/pom.xml index 936627368..5dc685446 100644 --- a/pom.xml +++ b/pom.xml @@ -522,14 +522,14 @@ 5.30.0 - org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_2 + org.openrewrite.cloudsuitability.FindJavaBatch org.openrewrite.recipe - rewrite-spring - 5.9.0 + rewrite-cloud-suitability-analyzer + 2.2.1 diff --git a/src/main/java/org/ohdsi/webapi/shiro/mapper/UserMapper.java b/src/main/java/org/ohdsi/webapi/shiro/mapper/UserMapper.java index 89d40a4f8..f2a7d07a6 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/mapper/UserMapper.java +++ b/src/main/java/org/ohdsi/webapi/shiro/mapper/UserMapper.java @@ -9,9 +9,9 @@ import javax.naming.directory.Attributes; public abstract class UserMapper implements AttributesMapper { - private String getAttrCoalesce(Attributes attrList, String key) throws NamingException { + private String getAttrCoalesce(/*~~>*/Attributes attrList, String key) throws /*~~>*/NamingException { String result = null; - Attribute attribute = attrList.get(key); + /*~~>*/Attribute attribute = attrList.get(key); if (attribute != null) { Object value = attribute.get(); if(value instanceof String string) { @@ -21,7 +21,7 @@ private String getAttrCoalesce(Attributes attrList, String key) throws NamingExc return result; } - public UserPrincipal mapFromAttributes(Attributes attrs) throws NamingException { + public UserPrincipal mapFromAttributes(/*~~>*/Attributes attrs) throws /*~~>*/NamingException { UserPrincipal user = new UserPrincipal(); user.setUsername(getAttrCoalesce(attrs, getUsernameAttr())); @@ -41,7 +41,7 @@ public UserPrincipal mapFromAttributes(Attributes attrs) throws NamingException return user; } - private void processAttribute(Attributes attrs, String key, StringBuilder name) throws NamingException { + private void processAttribute(/*~~>*/Attributes attrs, String key, StringBuilder name) throws /*~~>*/NamingException { if (key != null) { String attrValue = getAttrCoalesce(attrs, key); if (attrValue != null) { diff --git a/src/main/java/org/ohdsi/webapi/shiro/realms/ADRealm.java b/src/main/java/org/ohdsi/webapi/shiro/realms/ADRealm.java index a733d4927..2ff424dd3 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/realms/ADRealm.java +++ b/src/main/java/org/ohdsi/webapi/shiro/realms/ADRealm.java @@ -73,7 +73,7 @@ private String getUserPrincipalName(final String username) { } @Override - protected AuthenticationInfo queryForAuthenticationInfo(AuthenticationToken token, LdapContextFactory ldapContextFactory) throws NamingException { + protected AuthenticationInfo queryForAuthenticationInfo(AuthenticationToken token, LdapContextFactory ldapContextFactory) throws /*~~>*/NamingException { if (Objects.nonNull(ldapTemplate) && StringUtils.isNotBlank(searchFilter) && StringUtils.isNotBlank(searchString)) { UsernamePasswordToken upToken = (UsernamePasswordToken) token; @@ -88,7 +88,7 @@ protected AuthenticationInfo queryForAuthenticationInfo(AuthenticationToken toke List filterResult = ldapTemplate.search("", searchFilter.formatted(userPrincipal.getUsername()), SearchControls.SUBTREE_SCOPE, dnAttributesMapper); if (!filterResult.isEmpty()) { - LdapContext ctx = null; + /*~~>*/LdapContext ctx = null; try { ctx = ldapContextFactory.getLdapContext(upToken.getUsername(), String.valueOf(upToken.getPassword())); } finally { diff --git a/src/main/java/org/ohdsi/webapi/shiro/realms/LdapRealm.java b/src/main/java/org/ohdsi/webapi/shiro/realms/LdapRealm.java index e3ea50b9f..79f5bbc91 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/realms/LdapRealm.java +++ b/src/main/java/org/ohdsi/webapi/shiro/realms/LdapRealm.java @@ -63,7 +63,7 @@ public boolean supports(AuthenticationToken token) { @Override protected AuthenticationInfo queryForAuthenticationInfo(AuthenticationToken token, LdapContextFactory ldapContextFactory) - throws NamingException { + throws /*~~>*/NamingException { Object principal = token.getPrincipal(); Object credentials = token.getCredentials(); @@ -72,7 +72,7 @@ protected AuthenticationInfo queryForAuthenticationInfo(AuthenticationToken toke principal = getLdapPrincipal(token); - LdapContext ctx = null; + /*~~>*/LdapContext ctx = null; try { ctx = ldapContextFactory.getLdapContext(principal, credentials); UserPrincipal userPrincipal = searchForUser(ctx, token); @@ -83,16 +83,16 @@ protected AuthenticationInfo queryForAuthenticationInfo(AuthenticationToken toke } @Override protected AuthenticationInfo createAuthenticationInfo(AuthenticationToken token, Object ldapPrincipal, - Object ldapCredentials, LdapContext ldapContext) { + Object ldapCredentials, /*~~>*/LdapContext ldapContext) { return new SimpleAuthenticationInfo(ldapPrincipal, token.getCredentials(), getName()); } - private UserPrincipal searchForUser(LdapContext ctx, AuthenticationToken token) throws NamingException { - SearchControls searchCtls = new SearchControls(); + private UserPrincipal searchForUser(/*~~>*/LdapContext ctx, AuthenticationToken token) throws /*~~>*/NamingException { + /*~~>*/SearchControls searchCtls = new /*~~>*/SearchControls(); searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE); Object[] searchArguments = new Object[]{token.getPrincipal()}; - NamingEnumeration results = ctx.search(ldapSearchBase, searchString, searchArguments, searchCtls); + /*~~>*/NamingEnumeration results = ctx.search(ldapSearchBase, searchString, searchArguments, searchCtls); boolean processSingleRecord = false; UserPrincipal userPrincipal = null; while (results.hasMore()) { @@ -101,8 +101,8 @@ private UserPrincipal searchForUser(LdapContext ctx, AuthenticationToken token) throw new RuntimeException("Multiple results found for " + token.getPrincipal()); } processSingleRecord = true; - SearchResult searchResult = (SearchResult) results.next(); - Attributes attributes = searchResult.getAttributes(); + /*~~>*/SearchResult searchResult = (/*~~>*/SearchResult) results.next(); + /*~~>*/Attributes attributes = searchResult.getAttributes(); userPrincipal = userMapper.mapFromAttributes(attributes); } return userPrincipal; diff --git a/src/main/java/org/ohdsi/webapi/user/importer/providers/ActiveDirectoryProvider.java b/src/main/java/org/ohdsi/webapi/user/importer/providers/ActiveDirectoryProvider.java index e3d155280..3964f6d07 100644 --- a/src/main/java/org/ohdsi/webapi/user/importer/providers/ActiveDirectoryProvider.java +++ b/src/main/java/org/ohdsi/webapi/user/importer/providers/ActiveDirectoryProvider.java @@ -96,15 +96,15 @@ public String getCredentials() { } @Override - public List getLdapGroups(Attributes attributes) throws NamingException { + public List getLdapGroups(/*~~>*/Attributes attributes) throws /*~~>*/NamingException { return valueAsList(attributes.get("memberOf")).stream() .map(v -> new LdapGroup("", v)) .collect(Collectors.toList()); } @Override - public SearchControls getUserSearchControls() { - SearchControls searchControls = new SearchControls(); + public /*~~>*/SearchControls getUserSearchControls() { + /*~~>*/SearchControls searchControls = new /*~~>*/SearchControls(); searchControls.setSearchScope(SearchControls.SUBTREE_SCOPE); searchControls.setCountLimit(countLimit); return searchControls; diff --git a/src/main/java/org/ohdsi/webapi/user/importer/providers/DefaultLdapProvider.java b/src/main/java/org/ohdsi/webapi/user/importer/providers/DefaultLdapProvider.java index aa8c7159d..803c34a3d 100644 --- a/src/main/java/org/ohdsi/webapi/user/importer/providers/DefaultLdapProvider.java +++ b/src/main/java/org/ohdsi/webapi/user/importer/providers/DefaultLdapProvider.java @@ -106,7 +106,7 @@ public String getCredentials() { } @Override - public List getLdapGroups(Attributes attributes) throws NamingException { + public List getLdapGroups(/*~~>*/Attributes attributes) throws /*~~>*/NamingException { String dn = valueAsString(attributes.get(DN)); if (StringUtils.isNotEmpty(dn)) { @@ -117,7 +117,7 @@ public List getLdapGroups(Attributes attributes) throws NamingExcepti memberFilter.or(new EqualsFilter("uniqueMember", dn)); memberFilter.or(new EqualsFilter("member", dn)); filter.and(memberFilter); - SearchControls searchControls = new SearchControls(); + /*~~>*/SearchControls searchControls = new /*~~>*/SearchControls(); searchControls.setSearchScope(SearchControls.SUBTREE_SCOPE); searchControls.setReturningAttributes(RETURNING_ATTRS); return template.search(LdapUtils.emptyLdapName(), filter.encode(), searchControls, @@ -128,8 +128,8 @@ public List getLdapGroups(Attributes attributes) throws NamingExcepti } @Override - public SearchControls getUserSearchControls() { - SearchControls searchControls = new SearchControls(); + public /*~~>*/SearchControls getUserSearchControls() { + /*~~>*/SearchControls searchControls = new /*~~>*/SearchControls(); searchControls.setSearchScope(SearchControls.SUBTREE_SCOPE); searchControls.setReturningAttributes(userAttributes); return searchControls; @@ -198,18 +198,18 @@ public OpenLdapAttributesMapper(AttributesMapper mapper) { } @Override - public T getObjectFromNameClassPair(NameClassPair nameClassPair) throws NamingException { + public T getObjectFromNameClassPair(/*~~>*/NameClassPair nameClassPair) throws /*~~>*/NamingException { - if (!(nameClassPair instanceof SearchResult)) { + if (!(nameClassPair instanceof /*~~>*/SearchResult)) { throw new IllegalArgumentException("Parameter must be an instance of SearchResult"); } else { - SearchResult searchResult = (SearchResult)nameClassPair; - Attributes attributes = searchResult.getAttributes(); + /*~~>*/SearchResult searchResult = (/*~~>*/SearchResult)nameClassPair; + /*~~>*/Attributes attributes = searchResult.getAttributes(); attributes.put(DN, searchResult.getNameInNamespace()); try { return this.mapper.mapFromAttributes(attributes); - } catch (NamingException var5) { + } catch (/*~~>*/NamingException var5) { throw LdapUtils.convertLdapException(var5); } } diff --git a/src/main/java/org/ohdsi/webapi/user/importer/providers/LdapProvider.java b/src/main/java/org/ohdsi/webapi/user/importer/providers/LdapProvider.java index 9de0ba2fc..5fffe585f 100644 --- a/src/main/java/org/ohdsi/webapi/user/importer/providers/LdapProvider.java +++ b/src/main/java/org/ohdsi/webapi/user/importer/providers/LdapProvider.java @@ -14,9 +14,9 @@ public interface LdapProvider { LdapTemplate getLdapTemplate(); - List getLdapGroups(Attributes attributes) throws NamingException; + List getLdapGroups(/*~~>*/Attributes attributes) throws /*~~>*/NamingException; - SearchControls getUserSearchControls(); + /*~~>*/SearchControls getUserSearchControls(); Set getGroupClasses(); diff --git a/src/main/java/org/ohdsi/webapi/user/importer/providers/OhdsiLdapUtils.java b/src/main/java/org/ohdsi/webapi/user/importer/providers/OhdsiLdapUtils.java index 40c17ed02..2cffa9615 100644 --- a/src/main/java/org/ohdsi/webapi/user/importer/providers/OhdsiLdapUtils.java +++ b/src/main/java/org/ohdsi/webapi/user/importer/providers/OhdsiLdapUtils.java @@ -12,11 +12,11 @@ public class OhdsiLdapUtils { - public static String valueAsString(Attribute attribute) throws NamingException { + public static String valueAsString(/*~~>*/Attribute attribute) throws /*~~>*/NamingException { return Objects.nonNull(attribute) ? attribute.get().toString() : ""; } - public static List valueAsList(Attribute attribute) throws NamingException { + public static List valueAsList(/*~~>*/Attribute attribute) throws /*~~>*/NamingException { List result = new ArrayList<>(); if (Objects.nonNull(attribute)) { for (int i = 0; i < attribute.size(); i++) { diff --git a/src/test/java/org/ohdsi/webapi/test/SecurityIT.java b/src/test/java/org/ohdsi/webapi/test/SecurityIT.java index 30091852c..cfd18ecee 100644 --- a/src/test/java/org/ohdsi/webapi/test/SecurityIT.java +++ b/src/test/java/org/ohdsi/webapi/test/SecurityIT.java @@ -46,7 +46,7 @@ public class SecurityIT extends WebApiIT { @Autowired private JerseyConfig jerseyConfig; -/* MDACA Spring Boot 3 migration +/* MDACA Spring Boot 3 migration compilation issue @Rule public ErrorCollector collector = new ErrorCollector(); */ @@ -162,7 +162,7 @@ private Map> process(String uriPrefix, Resource resour List serviceInfos = info.computeIfAbsent(pathPrefix, k -> new ArrayList<>()); ServiceInfo serviceInfo = new ServiceInfo(); serviceInfo.pathPrefix = pathPrefix; - serviceInfo.httpMethod = HttpMethod.resolve(method.getHttpMethod()); + /* serviceInfo.httpMethod = HttpMethod.resolve(method.getHttpMethod()); MDACA Spring Boot 3 migration compilation issue */ serviceInfo.parameters = method.getInvocable().getParameters(); serviceInfo.mediaTypes = method.getProducedTypes(); serviceInfos.add(serviceInfo); From f8519d0239ce183749f73ff5df2570ff0caa97e3 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 15:32:55 -0400 Subject: [PATCH 037/141] MDACA Spring Boot 325 migration pom cleanup --- pom.xml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/pom.xml b/pom.xml index 5dc685446..1e9089f52 100644 --- a/pom.xml +++ b/pom.xml @@ -515,25 +515,6 @@ - - - org.openrewrite.maven - rewrite-maven-plugin - 5.30.0 - - - org.openrewrite.cloudsuitability.FindJavaBatch - - - - - org.openrewrite.recipe - rewrite-cloud-suitability-analyzer - 2.2.1 - - - - From 5d2e4aaf7073d420b5cce65a2bc6721f8322a3c6 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 20 May 2024 15:55:56 -0400 Subject: [PATCH 038/141] MDACA Spring Boot 325 migration pom update security versions --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1e9089f52..866ea0204 100644 --- a/pom.xml +++ b/pom.xml @@ -579,7 +579,7 @@ org.codehaus.jettison jettison - 1.4.1 + 1.5.4 com.fasterxml.jackson.core From 26cb4f97eb451681fa1b5f44bb0a64713e53fa50 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Tue, 21 May 2024 10:32:58 -0400 Subject: [PATCH 039/141] MDACA Spring Boot 3 migration --- pom.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 866ea0204..f1c904969 100644 --- a/pom.xml +++ b/pom.xml @@ -789,8 +789,7 @@ org.apache.httpcomponents.client5 httpclient5 - 5.2 - + org.springframework.batch spring-batch-admin-manager From 4324275beece9cd89e3de68203b59a5cc52b3cf9 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Tue, 21 May 2024 10:43:53 -0400 Subject: [PATCH 040/141] changes for MDACA Migration to SB 3 --- pom.xml | 4 ++-- src/main/resources/application.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 5dc685446..b9885c0bb 100644 --- a/pom.xml +++ b/pom.xml @@ -1399,7 +1399,7 @@ ${datasource.ohdsi.schema} classpath:db/migration/postgresql ${datasource.ohdsi.schema}.BATCH_ - org.hibernate.dialect.PostgreSQL9Dialect + org.hibernate.dialect.PostgreSQLDialect ${datasource.url} ${datasource.driverClassName} ${datasource.username} @@ -1430,7 +1430,7 @@ ${datasource.ohdsi.schema} classpath:db/migration/postgresql ${datasource.ohdsi.schema}.BATCH_ - org.hibernate.dialect.PostgreSQL9Dialect + org.hibernate.dialect.PostgreSQLDialect ${datasource.url} ${datasource.driverClassName} ${datasource.username} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 605ddc791..c9a7ce1ae 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -14,7 +14,7 @@ logging.level.org.apache.shiro=${logging.level.org.apache.shiro} #Primary DataSource datasource.driverClassName=${datasource.driverClassName} -datasource.jdbc-url=${datasource.url} +datasource.url=${datasource.url} datasource.username=${datasource.username} datasource.password=${datasource.password} datasource.dialect=${datasource.dialect} From cbd098042ee58dc18706ea0b3aeffa577aabfb52 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Thu, 23 May 2024 09:27:28 -0400 Subject: [PATCH 041/141] updates for MDACA Migration to SB 3 --- pom.xml | 83 ++++--- .../ohdsi/webapi/ConverterConfiguration.java | 2 + .../org/ohdsi/webapi/DataAccessConfig.java | 87 +++----- .../java/org/ohdsi/webapi/FlywayConfig.java | 2 +- src/main/java/org/ohdsi/webapi/JobConfig.java | 26 +-- .../org/ohdsi/webapi/ShiroConfiguration.java | 3 +- .../ohdsi/webapi/cohort/CohortRepository.java | 2 +- .../cohortcharacterization/CcServiceImpl.java | 11 +- .../CcGenerationEntityRepository.java | 4 +- .../CleanupCohortSamplesTasklet.java | 3 +- .../ConceptSetGenerationInfoRepository.java | 2 +- ...0180807192421__cohortDetailsHashcodes.java | 28 --- ...7_2_20190515164044__hideSensitiveInfo.java | 210 ------------------ ...20190410103000__migratePathwayResults.java | 182 --------------- ...90520171430__cohortExpressionHashCode.java | 32 --- ..._0_20191106092815__migrateEventFAType.java | 71 ------ .../estimation/EstimationServiceImpl.java | 27 +-- ...stimationAnalysisGenerationRepository.java | 2 +- .../feanalysis/FeAnalysisServiceImpl.java | 7 +- .../BaseFeAnalysisEntityRepository.java | 2 +- .../FeAnalysisCriteriaRepository.java | 2 +- .../generationcache/CleanupScheduler.java | 5 +- .../GenerationCacheRepository.java | 2 +- .../GenerationCacheServiceImpl.java | 7 +- .../webapi/ircalc/IRAnalysisInfoListener.java | 7 +- .../IncidenceRateAnalysisRepository.java | 2 +- .../webapi/pathway/PathwayServiceImpl.java | 20 +- .../PathwayAnalysisGenerationRepository.java | 2 +- .../PathwayEventCohortRepository.java | 2 +- .../PathwayTargetCohortRepository.java | 2 +- .../prediction/PredictionServiceImpl.java | 18 +- ...redictionAnalysisGenerationRepository.java | 2 +- .../webapi/security/PermissionService.java | 9 +- .../webapi/service/AbstractDaoService.java | 2 + .../service/CohortDefinitionService.java | 14 +- .../webapi/service/IRAnalysisService.java | 6 +- .../shiro/Entities/PermissionRepository.java | 5 +- .../ohdsi/webapi/source/SourceController.java | 2 +- .../ohdsi/webapi/source/SourceService.java | 4 +- .../webapi/tag/repository/TagRepository.java | 2 +- .../user/importer/model/UserImportJob.java | 3 +- .../service/UserImportJobServiceImpl.java | 6 +- .../org/ohdsi/webapi/util/EntityUtils.java | 6 +- src/main/resources/application.properties | 1 + 44 files changed, 199 insertions(+), 718 deletions(-) diff --git a/pom.xml b/pom.xml index dd008799e..db2d0fd9b 100644 --- a/pom.xml +++ b/pom.xml @@ -17,7 +17,7 @@ 4.2.0 2.2.1 5.5.0 - 6.0.0.Final + 6.1.6.Final 42.3.7 1.69 2.0.0 @@ -200,7 +200,7 @@ /WebAPI - 1.17.3 + 3.x-MDACA 2.29.1 600000 12 @@ -606,6 +606,11 @@ jackson-annotations + + org.springframework.plugin + spring-plugin-core + 3.0.0 + @@ -863,57 +868,69 @@ 4.1 jar - - - org.apache.shiro - shiro-core - ${shiro.version} - jakarta - - - org.apache.shiro - shiro-web - ${shiro.version} - jakarta - - - org.apache.shiro - shiro-spring-boot-web-starter - ${shiro.version} - jakarta - - - org.apache.shiro - shiro-spring-boot-starter - ${shiro.version} - jakarta + com.github.waffle waffle-shiro @@ -1266,7 +1283,7 @@ com.cosium.spring.data spring-data-jpa-entity-graph - 1.11.03 + 3.2.2 org.pac4j diff --git a/src/main/java/org/ohdsi/webapi/ConverterConfiguration.java b/src/main/java/org/ohdsi/webapi/ConverterConfiguration.java index 5d1ebe4b1..e2e36a846 100644 --- a/src/main/java/org/ohdsi/webapi/ConverterConfiguration.java +++ b/src/main/java/org/ohdsi/webapi/ConverterConfiguration.java @@ -3,12 +3,14 @@ import com.odysseusinc.arachne.commons.utils.ConverterUtils; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.Primary; import org.springframework.core.convert.support.DefaultConversionService; import org.springframework.core.convert.support.GenericConversionService; @Configuration public class ConverterConfiguration { + @Primary @Bean GenericConversionService conversionService(){ return new DefaultConversionService(); diff --git a/src/main/java/org/ohdsi/webapi/DataAccessConfig.java b/src/main/java/org/ohdsi/webapi/DataAccessConfig.java index 0185b89ee..4813a73b5 100644 --- a/src/main/java/org/ohdsi/webapi/DataAccessConfig.java +++ b/src/main/java/org/ohdsi/webapi/DataAccessConfig.java @@ -31,21 +31,22 @@ import java.sql.SQLException; import java.util.Properties; -/** - * - */ @Configuration @EnableTransactionManagement -@EnableJpaRepositories(repositoryFactoryBeanClass = EntityGraphJpaRepositoryFactoryBean.class) +@EnableJpaRepositories( + basePackages = "org.ohdsi.webapi", + repositoryFactoryBeanClass = EntityGraphJpaRepositoryFactoryBean.class +) public class DataAccessConfig { private final Logger logger = LoggerFactory.getLogger(DataAccessConfig.class); - + @Autowired private Environment env; + @Value("${jasypt.encryptor.enabled}") private boolean encryptorEnabled; - + private Properties getJPAProperties() { Properties properties = new Properties(); properties.setProperty("hibernate.default_schema", this.env.getProperty("spring.jpa.properties.hibernate.default_schema")); @@ -60,29 +61,23 @@ private Properties getJPAProperties() { @Bean @DependsOn("defaultStringEncryptor") @Primary - DataSource primaryDataSource() { + public DataSource primaryDataSource() { logger.info("datasource.url is: " + this.env.getRequiredProperty("datasource.url")); String driver = this.env.getRequiredProperty("datasource.driverClassName"); String url = this.env.getRequiredProperty("datasource.url"); String user = this.env.getRequiredProperty("datasource.username"); String pass = this.env.getRequiredProperty("datasource.password"); - boolean autoCommit = false; - - //pooling - currently issues with (at least) oracle with use of temp tables and "on commit preserve rows" instead of "on commit delete rows"; - //http://forums.ohdsi.org/t/transaction-vs-session-scope-for-global-temp-tables-statements/333/2 - /*final PoolConfiguration pc = new org.apache.tomcat.jdbc.pool.PoolProperties(); - pc.setDriverClassName(driver); - pc.setUrl(url); - pc.setUsername(user); - pc.setPassword(pass); - pc.setDefaultAutoCommit(autoCommit);*/ - //non-pooling + DriverManagerDataSource ds = new DriverManagerDataSource(url, user, pass); ds.setDriverClassName(driver); - //note autocommit defaults vary across vendors. use provided @Autowired TransactionTemplate - String[] supportedDrivers; - supportedDrivers = new String[]{"org.postgresql.Driver", "com.microsoft.sqlserver.jdbc.SQLServerDriver", "oracle.jdbc.driver.OracleDriver", "com.amazon.redshift.jdbc.Driver", "com.cloudera.impala.jdbc.Driver", "net.starschema.clouddb.jdbc.BQDriver", "org.netezza.Driver", "com.simba.googlebigquery.jdbc42.Driver", "org.apache.hive.jdbc.HiveDriver", "com.simba.spark.jdbc.Driver", "net.snowflake.client.jdbc.SnowflakeDriver"}; + String[] supportedDrivers = new String[]{ + "org.postgresql.Driver", "com.microsoft.sqlserver.jdbc.SQLServerDriver", "oracle.jdbc.driver.OracleDriver", + "com.amazon.redshift.jdbc.Driver", "com.cloudera.impala.jdbc.Driver", "net.starschema.clouddb.jdbc.BQDriver", + "org.netezza.Driver", "com.simba.googlebigquery.jdbc42.Driver", "org.apache.hive.jdbc.HiveDriver", + "com.simba.spark.jdbc.Driver", "net.snowflake.client.jdbc.SnowflakeDriver" + }; + for (String driverName : supportedDrivers) { try { Class.forName(driverName); @@ -92,10 +87,7 @@ DataSource primaryDataSource() { } } - // Redshift driver can be loaded first because it is mentioned in manifest file - - // put the redshift driver at the end so that it doesn't - // conflict with postgres queries - java.util.Enumeration drivers = DriverManager.getDrivers(); + java.util.Enumeration drivers = DriverManager.getDrivers(); while (drivers.hasMoreElements()) { Driver d = drivers.nextElement(); if (d.getClass().getName().contains("com.amazon.redshift.jdbc")) { @@ -109,31 +101,23 @@ DataSource primaryDataSource() { } return ds; - //return new org.apache.tomcat.jdbc.pool.DataSource(pc); } @Bean - PBEStringEncryptor defaultStringEncryptor(){ - - PBEStringEncryptor stringEncryptor = encryptorEnabled ? - EncryptorUtils.buildStringEncryptor(env) : - new NotEncrypted(); + public PBEStringEncryptor defaultStringEncryptor() { + PBEStringEncryptor stringEncryptor = encryptorEnabled ? EncryptorUtils.buildStringEncryptor(env) : new NotEncrypted(); - HibernatePBEEncryptorRegistry - .getInstance() - .registerPBEStringEncryptor("defaultStringEncryptor", stringEncryptor); + HibernatePBEEncryptorRegistry.getInstance().registerPBEStringEncryptor("defaultStringEncryptor", stringEncryptor); return stringEncryptor; } + @Primary @Bean - EntityManagerFactory entityManagerFactory(DataSource dataSource) { - + public LocalContainerEntityManagerFactoryBean entityManagerFactory(DataSource dataSource) { HibernateJpaVendorAdapter vendorAdapter = new HibernateJpaVendorAdapter(); vendorAdapter.setGenerateDdl(false); - vendorAdapter.setShowSql(Boolean.valueOf(this.env.getRequiredProperty("spring.jpa.show-sql"))); - //hibernate.dialect is resolved based on driver - //vendorAdapter.setDatabasePlatform(hibernateDialect); + vendorAdapter.setShowSql(Boolean.parseBoolean(this.env.getRequiredProperty("spring.jpa.show-sql"))); LocalContainerEntityManagerFactoryBean factory = new LocalContainerEntityManagerFactoryBean(); factory.setJpaVendorAdapter(vendorAdapter); @@ -142,28 +126,26 @@ EntityManagerFactory entityManagerFactory(DataSource dataSource) { factory.setDataSource(dataSource); factory.afterPropertiesSet(); - return factory.getObject(); + return factory; } - //This is needed so that JpaTransactionManager is used for autowiring, instead of DataSourceTransactionManager - @Bean @Primary - PlatformTransactionManager jpaTransactionManager(EntityManagerFactory entityManagerFactory) { - + @Bean(name = "transactionManager") + public PlatformTransactionManager jpaTransactionManager(EntityManagerFactory entityManagerFactory) { JpaTransactionManager txManager = new JpaTransactionManager(); txManager.setEntityManagerFactory(entityManagerFactory); return txManager; } @Bean - TransactionTemplate transactionTemplate(PlatformTransactionManager transactionManager) { + public TransactionTemplate transactionTemplate(PlatformTransactionManager transactionManager) { TransactionTemplate transactionTemplate = new TransactionTemplate(); transactionTemplate.setTransactionManager(transactionManager); return transactionTemplate; } @Bean - TransactionTemplate transactionTemplateRequiresNew(PlatformTransactionManager transactionManager) { + public TransactionTemplate transactionTemplateRequiresNew(PlatformTransactionManager transactionManager) { TransactionTemplate transactionTemplate = new TransactionTemplate(); transactionTemplate.setTransactionManager(transactionManager); transactionTemplate.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRES_NEW); @@ -171,17 +153,10 @@ TransactionTemplate transactionTemplateRequiresNew(PlatformTransactionManager tr } @Bean - TransactionTemplate transactionTemplateNoTransaction(PlatformTransactionManager transactionManager) { + public TransactionTemplate transactionTemplateNoTransaction(PlatformTransactionManager transactionManager) { TransactionTemplate transactionTemplate = new TransactionTemplate(); transactionTemplate.setTransactionManager(transactionManager); transactionTemplate.setPropagationBehavior(TransactionDefinition.PROPAGATION_NOT_SUPPORTED); return transactionTemplate; - } - - /* - public String getSparqlEndpoint() - { - String sparqlEndpoint = this.env.getRequiredProperty("sparql.endpoint"); - return sparqlEndpoint; - }*/ -} + } +} \ No newline at end of file diff --git a/src/main/java/org/ohdsi/webapi/FlywayConfig.java b/src/main/java/org/ohdsi/webapi/FlywayConfig.java index d5f52f417..3c1814c06 100644 --- a/src/main/java/org/ohdsi/webapi/FlywayConfig.java +++ b/src/main/java/org/ohdsi/webapi/FlywayConfig.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi; -import com.odysseusinc.arachne.commons.config.flyway.ApplicationContextAwareSpringJdbcMigrationResolver; +//import com.odysseusinc.arachne.commons.config.flyway.ApplicationContextAwareSpringJdbcMigrationResolver; import java.util.Map; diff --git a/src/main/java/org/ohdsi/webapi/JobConfig.java b/src/main/java/org/ohdsi/webapi/JobConfig.java index 2f3ca1257..bfb0c2fae 100644 --- a/src/main/java/org/ohdsi/webapi/JobConfig.java +++ b/src/main/java/org/ohdsi/webapi/JobConfig.java @@ -15,19 +15,17 @@ import org.slf4j.LoggerFactory; import org.springframework.batch.admin.service.*; import org.springframework.batch.core.configuration.BatchConfigurationException; -// import org.springframework.batch.core.configuration.annotation.BatchConfigurer; MDACA Spring Boot 3 migration compilation issue import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing; import org.springframework.batch.core.configuration.annotation.JobBuilderFactory; import org.springframework.batch.core.configuration.annotation.StepBuilderFactory; +import org.springframework.batch.core.configuration.support.DefaultBatchConfiguration; import org.springframework.batch.core.explore.JobExplorer; import org.springframework.batch.core.explore.support.JobExplorerFactoryBean; -// import org.springframework.batch.core.explore.support.MapJobExplorerFactoryBean; MDACA Spring Boot 3 migration compilation issue import org.springframework.batch.core.job.builder.JobBuilder; import org.springframework.batch.core.launch.JobLauncher; import org.springframework.batch.core.launch.support.SimpleJobLauncher; import org.springframework.batch.core.repository.JobRepository; import org.springframework.batch.core.repository.support.JobRepositoryFactoryBean; -// import org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean; MDACA Spring Boot 3 migration compilation issue import org.springframework.batch.support.transaction.ResourcelessTransactionManager; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; @@ -97,12 +95,12 @@ TaskExecutor taskExecutor() { taskExecutor.afterPropertiesSet(); return taskExecutor; } -/* MDACA Spring Boot 3 migration compilation issue + @Bean - BatchConfigurer batchConfigurer() { + DefaultBatchConfiguration batchConfigurer() { return new CustomBatchConfigurer(this.dataSource); } -*/ + @Bean JobTemplate jobTemplate(final JobLauncher jobLauncher, final JobBuilderFactory jobBuilders, final StepBuilderFactory stepBuilders, final Security security) { @@ -139,7 +137,7 @@ public JobBuilder get(String name) { }; } - class CustomBatchConfigurer /* implements BatchConfigurer MDACA Spring Boot 3 migration compilation issue */ { + class CustomBatchConfigurer extends DefaultBatchConfiguration { private DataSource dataSource; @@ -168,8 +166,8 @@ protected CustomBatchConfigurer() { public CustomBatchConfigurer(final DataSource dataSource) { setDataSource(dataSource); } -/* - @Override + + //@Override public JobRepository getJobRepository() { return this.jobRepository; } @@ -179,16 +177,16 @@ public PlatformTransactionManager getTransactionManager() { return this.transactionManager; } - @Override + //@Override public JobLauncher getJobLauncher() { return this.jobLauncher; } - @Override + //@Override public JobExplorer getJobExplorer() { return this.jobExplorer; } - + /* @PostConstruct public void initialize() { try { @@ -222,7 +220,7 @@ public void initialize() { throw new BatchConfigurationException(e); } } -*/ + */ private JobLauncher createJobLauncher() throws Exception { final SimpleJobLauncher jobLauncher = new SimpleJobLauncher(); //async TODO @@ -239,7 +237,7 @@ protected JobRepository createJobRepository() throws Exception { //ISOLATION_REPEATABLE_READ throws READ_COMMITTED and SERIALIZABLE are the only valid transaction levels factory.setIsolationLevelForCreate(JobConfig.this.isolationLevelForCreate); factory.setTablePrefix(JobConfig.this.tablePrefix); - /* factory.setTransactionManager(getTransactionManager()); MDACA Spring Boot 3 migration compilation issue */ + factory.setTransactionManager(getTransactionManager()); factory.setValidateTransactionState(false); factory.afterPropertiesSet(); return factory.getObject(); diff --git a/src/main/java/org/ohdsi/webapi/ShiroConfiguration.java b/src/main/java/org/ohdsi/webapi/ShiroConfiguration.java index f96ed0703..77db12b08 100644 --- a/src/main/java/org/ohdsi/webapi/ShiroConfiguration.java +++ b/src/main/java/org/ohdsi/webapi/ShiroConfiguration.java @@ -21,7 +21,6 @@ import org.springframework.context.ApplicationEventPublisher; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; - import jakarta.servlet.Filter; import java.util.Map; import java.util.stream.Collectors; @@ -52,7 +51,7 @@ ShiroFilterFactoryBean shiroFilter(Security security, LockoutPolicy lockoutPolic Map filters = security.getFilters().entrySet().stream() .collect(Collectors.toMap(f -> f.getKey().getTemplateName(), Map.Entry::getValue)); - /* shiroFilter.setFilters(filters); Spring Boot 3 migration compilation issue */ + shiroFilter.setFilters(filters); shiroFilter.setFilterChainDefinitionMap(security.getFilterChain()); return shiroFilter; diff --git a/src/main/java/org/ohdsi/webapi/cohort/CohortRepository.java b/src/main/java/org/ohdsi/webapi/cohort/CohortRepository.java index 0ccc1d9ec..d0d57e4ab 100644 --- a/src/main/java/org/ohdsi/webapi/cohort/CohortRepository.java +++ b/src/main/java/org/ohdsi/webapi/cohort/CohortRepository.java @@ -7,7 +7,7 @@ public interface CohortRepository extends CrudRepository { - @Query("from CohortEntity where cohort_definition_id = ?1") + @Query("SELECT c FROM CohortEntity c WHERE c.cohortDefinitionId = ?1") public List getAllCohortsForId(Long id); } diff --git a/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java b/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java index e90c3e45f..4a269f34a 100644 --- a/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java @@ -1,6 +1,7 @@ package org.ohdsi.webapi.cohortcharacterization; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.DynamicEntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import com.fasterxml.jackson.core.type.TypeReference; import com.google.common.collect.ImmutableList; import jakarta.annotation.PostConstruct; @@ -161,14 +162,14 @@ public class CcServiceImpl extends AbstractDaoService implements CcService, Gene private Map prespecAnalysisMap = FeatureExtraction.getNameToPrespecAnalysis(); - private final EntityGraph defaultEntityGraph = EntityUtils.fromAttributePaths( + private final EntityGraph defaultEntityGraph = DynamicEntityGraph.loading().addPath( "cohortDefinitions", "featureAnalyses", "stratas", "parameters", "createdBy", "modifiedBy" - ); + ).build(); private final List executionPrevalenceHeaderLines = new ArrayList() {{ add(new String[]{"Analysis ID", "Analysis name", "Strata ID", @@ -527,7 +528,7 @@ public CohortCharacterizationEntity findById(final Long id) { @Override public CohortCharacterizationEntity findByIdWithLinkedEntities(final Long id) { - return repository.findOne(id, defaultEntityGraph); + return repository.findById(id, defaultEntityGraph).get(); } @Override @@ -631,7 +632,7 @@ public List findGenerationsByCcId(final Long id) { @Override public CcGenerationEntity findGenerationById(final Long id) { - return ccGenerationRepository.findById(id, EntityUtils.fromAttributePaths("source")); + return ccGenerationRepository.findById(id, DynamicEntityGraph.loading().addPath("source").build()).get(); } @Override diff --git a/src/main/java/org/ohdsi/webapi/cohortcharacterization/repository/CcGenerationEntityRepository.java b/src/main/java/org/ohdsi/webapi/cohortcharacterization/repository/CcGenerationEntityRepository.java index e16082063..538bb1cf2 100644 --- a/src/main/java/org/ohdsi/webapi/cohortcharacterization/repository/CcGenerationEntityRepository.java +++ b/src/main/java/org/ohdsi/webapi/cohortcharacterization/repository/CcGenerationEntityRepository.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.cohortcharacterization.repository; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphJpaRepository; import java.util.List; import java.util.Optional; @@ -11,5 +11,5 @@ public interface CcGenerationEntityRepository extends EntityGraphJpaRepository findByCohortCharacterizationIdAndSourceSourceKeyOrderByIdDesc(Long id, String sourceKey, EntityGraph source); List findByStatusIn(List statuses); Optional findById(Long generationId); - CcGenerationEntity findById(Long generationId, EntityGraph source); + Optional findById(Long generationId, EntityGraph source); } diff --git a/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java b/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java index 947fb3083..abb59f5de 100644 --- a/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java +++ b/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java @@ -24,6 +24,7 @@ import java.util.List; import java.util.Map; +import java.util.stream.StreamSupport; import static org.ohdsi.webapi.Constants.Params.COHORT_DEFINITION_ID; import static org.ohdsi.webapi.Constants.Params.JOB_NAME; @@ -62,7 +63,7 @@ private Integer doTask(ChunkContext chunkContext) { return 0; } } else { - return this.sourceRepository.findAll().stream() + return StreamSupport.stream(this.sourceRepository.findAll().spliterator(), false) .filter(source-> source.getDaimons() .stream() .anyMatch(daimon -> daimon.getDaimonType() == SourceDaimon.DaimonType.Results)) diff --git a/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationInfoRepository.java b/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationInfoRepository.java index 05938d91e..4ffb86195 100644 --- a/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationInfoRepository.java +++ b/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationInfoRepository.java @@ -15,7 +15,7 @@ */ public interface ConceptSetGenerationInfoRepository extends CrudRepository { - @Query("from ConceptSetGenerationInfo where concept_set_id = ?1") + @Query("SELECT c from ConceptSetGenerationInfo c where c.conceptSetId = ?1") List findAllByConceptSetId(Integer conceptSetId); void deleteByConceptSetId(Integer conceptSetId); diff --git a/src/main/java/org/ohdsi/webapi/db/migartion/V2_6_0_20180807192421__cohortDetailsHashcodes.java b/src/main/java/org/ohdsi/webapi/db/migartion/V2_6_0_20180807192421__cohortDetailsHashcodes.java index 134593cdd..e69de29bb 100644 --- a/src/main/java/org/ohdsi/webapi/db/migartion/V2_6_0_20180807192421__cohortDetailsHashcodes.java +++ b/src/main/java/org/ohdsi/webapi/db/migartion/V2_6_0_20180807192421__cohortDetailsHashcodes.java @@ -1,28 +0,0 @@ -package org.ohdsi.webapi.db.migartion; - -import com.fasterxml.jackson.core.JsonProcessingException; -import com.odysseusinc.arachne.commons.config.flyway.ApplicationContextAwareSpringMigration; -import java.util.List; -import org.ohdsi.webapi.cohortdefinition.CohortDefinitionDetails; -import org.ohdsi.webapi.cohortdefinition.CohortDefinitionDetailsRepository; -import org.springframework.stereotype.Component; - -@Component -public class V2_6_0_20180807192421__cohortDetailsHashcodes implements ApplicationContextAwareSpringMigration { - - private CohortDefinitionDetailsRepository detailsRepository; - - public V2_6_0_20180807192421__cohortDetailsHashcodes(final CohortDefinitionDetailsRepository detailsRepository) { - this.detailsRepository = detailsRepository; - } - - @Override - public void migrate() throws JsonProcessingException { - - final List allDetails = detailsRepository.findAll(); - for (CohortDefinitionDetails details: allDetails) { - details.updateHashCode(); - detailsRepository.save(details); - } - } -} \ No newline at end of file diff --git a/src/main/java/org/ohdsi/webapi/db/migartion/V2_7_2_20190515164044__hideSensitiveInfo.java b/src/main/java/org/ohdsi/webapi/db/migartion/V2_7_2_20190515164044__hideSensitiveInfo.java index 67548fb3f..e69de29bb 100644 --- a/src/main/java/org/ohdsi/webapi/db/migartion/V2_7_2_20190515164044__hideSensitiveInfo.java +++ b/src/main/java/org/ohdsi/webapi/db/migartion/V2_7_2_20190515164044__hideSensitiveInfo.java @@ -1,210 +0,0 @@ -package org.ohdsi.webapi.db.migartion; - -import com.odysseusinc.arachne.commons.config.flyway.ApplicationContextAwareSpringMigration; -import org.apache.commons.collections.map.HashedMap; -import org.ohdsi.circe.helper.ResourceHelper; -import org.ohdsi.sql.SqlRender; -import org.ohdsi.sql.SqlTranslate; -import org.ohdsi.webapi.executionengine.entity.AnalysisResultFile; -import org.ohdsi.webapi.executionengine.entity.AnalysisResultFileContent; -import org.ohdsi.webapi.executionengine.entity.AnalysisResultFileContentList; -import org.ohdsi.webapi.executionengine.service.AnalysisResultFileContentSensitiveInfoService; -import org.ohdsi.webapi.service.AbstractDaoService; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.core.env.Environment; -import org.springframework.stereotype.Component; -import org.springframework.stereotype.Service; - -import java.util.*; -import java.util.stream.Collectors; - -import static org.ohdsi.webapi.Constants.Variables.SOURCE; - -@Component -public class V2_7_2_20190515164044__hideSensitiveInfo implements ApplicationContextAwareSpringMigration { - private final Logger log = LoggerFactory.getLogger(V2_7_2_20190515164044__hideSensitiveInfo.class); - private final static String SQL_PATH = "/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/"; - - @Autowired - private Environment env; - - @Autowired - private MigrationDAO migrationDAO; - - @Autowired - private AnalysisResultFileContentSensitiveInfoService sensitiveInfoService; - - @Override - public void migrate() throws Exception { - String webAPISchema = this.env.getProperty("spring.jpa.properties.hibernate.default_schema"); - - try { - Map sourceMap = migrationDAO.getSourceData(webAPISchema); - List executions = migrationDAO.getExecutions(webAPISchema); - - for (ExecutionData execution : executions) { - Source source = sourceMap.get(execution.executionId); - // Variables must contain field "sourceName". See sensitive_filters.csv - Map variables = Collections.singletonMap(SOURCE, source); - - AnalysisResultFileContentList contentList = new AnalysisResultFileContentList(); - for(OutputFile outputFile: execution.files) { - byte[] content = migrationDAO.getFileContent(webAPISchema, outputFile.id); - // Before changing implementaion of AnalysisResultFile or AnalysisResultFileContent check which fields are used in - // sensitive info filter (AnalysisResultFileContentSensitiveInfoServiceImpl) - AnalysisResultFile resultFile = new AnalysisResultFile(); - resultFile.setFileName(outputFile.filename); - resultFile.setId(outputFile.id); - AnalysisResultFileContent resultFileContent = new AnalysisResultFileContent(); - resultFileContent.setAnalysisResultFile(resultFile); - resultFileContent.setContents(content); - contentList.getFiles().add(resultFileContent); - } - - // We have to filter all files for current execution because of possibility of archives split into volumes - // Volumes will be removed during decompressing and compressing - contentList = sensitiveInfoService.filterSensitiveInfo(contentList, variables); - - // Update content of files only if all files were processed successfully - if(contentList.isSuccessfullyFiltered()) { - for (AnalysisResultFileContent resultFileContent : contentList.getFiles()) { - try { - migrationDAO.updateFileContent(webAPISchema, resultFileContent.getAnalysisResultFile().getId(), resultFileContent.getContents()); - } catch (Exception e) { - log.error("Error updating file content for file with id: {}", resultFileContent.getAnalysisResultFile().getId(), e); - } - } - // Get list of ids of files (archive volumes) that are not used anymore - // and delete them from database - Set rowIds = contentList.getFiles().stream() - .map(file -> file.getAnalysisResultFile().getId()) - .collect(Collectors.toSet()); - execution.files.stream() - .filter(file -> !rowIds.contains(file.id)) - .forEach(file -> { - try { - migrationDAO.deleteFileAndContent(webAPISchema, file.id); - } catch (Exception e) { - log.error("Error deleting file content for file with id: {}", file.id, e); - } - }); - } else { - log.error("Error migrating file content. See errors above"); - } - } - } catch (Exception e) { - log.error("Error migrating file content", e); - } - } - - @Service - public static class MigrationDAO extends AbstractDaoService{ - public List getExecutions(String webAPISchema) { - String[] params = new String[]{"webapi_schema"}; - String[] values = new String[]{webAPISchema}; - - String generatedDesignSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "getOutputFilesData.sql"), params, values); - String translatedSql = SqlTranslate.translateSingleStatementSql(generatedDesignSql, getDialect()); - - Map executionMap = new HashMap<>(); - return getJdbcTemplate().query(translatedSql, rs -> { - while (rs.next()) { - OutputFile outputFile = new OutputFile(); - outputFile.filename = rs.getString("file_name"); - outputFile.id = rs.getLong("id"); - - int executionId = rs.getInt("execution_id"); - ExecutionData execution = executionMap.get(executionId); - if(execution == null) { - execution = new ExecutionData(); - execution.executionId = executionId; - executionMap.put(executionId, execution); - } - - execution.files.add(outputFile); - } - return new ArrayList<>(executionMap.values()); - }); - } - - public Map getSourceData(String webAPISchema) { - String[] params = new String[]{"webapi_schema"}; - String[] values = new String[]{webAPISchema}; - - String generatedDesignSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "getSourceData.sql"), params, values); - String translatedSql = SqlTranslate.translateSingleStatementSql(generatedDesignSql, getDialect()); - - return getJdbcTemplate().query(translatedSql, rs -> { - Map result = new HashedMap(); - while (rs.next()) { - Source source = new Source(); - source.sourceName = rs.getString("source_name"); - - int executionId = rs.getInt("execution_id"); - result.put(executionId, source); - } - return result; - }); - } - - public byte[] getFileContent(String webAPISchema, long id) { - String[] params = new String[]{"webapi_schema", "id"}; - String[] values = new String[]{webAPISchema, String.valueOf(id)}; - - String generatedDesignSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "getOutputFileContent.sql"), params, values); - String translatedSql = SqlTranslate.translateSingleStatementSql(generatedDesignSql, getDialect()); - - return getJdbcTemplate().query(translatedSql, rs -> { - while (rs.next()) { - return rs.getBytes("file_contents"); - } - return null; - }); - } - - public void updateFileContent(String webAPISchema, long id, byte[] content) { - String[] params = new String[]{"webapi_schema"}; - String[] values = new String[]{webAPISchema}; - - String generatedDesignSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "updateFileContent.sql"), params, values); - String translatedSql = SqlTranslate.translateSingleStatementSql(generatedDesignSql, getDialect()); - - Object[] psValues = new Object[] {content, id}; - - getJdbcTemplate().update(translatedSql, psValues); - } - - public void deleteFileAndContent(String webAPISchema, Long id) { - String[] params = new String[]{"webapi_schema"}; - String[] values = new String[]{webAPISchema}; - - String generatedDesignSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "deleteFileContent.sql"), params, values); - String translatedSql = SqlTranslate.translateSingleStatementSql(generatedDesignSql, getDialect()); - - Object[] psValues = new Object[] {id}; - - getJdbcTemplate().update(translatedSql, psValues); - - generatedDesignSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "deleteFile.sql"), params, values); - translatedSql = SqlTranslate.translateSingleStatementSql(generatedDesignSql, getDialect()); - - getJdbcTemplate().update(translatedSql, psValues); - } - } - - private static class ExecutionData { - public int executionId; - public List files = new ArrayList<>(); - } - - private static class OutputFile { - public long id; - public String filename; - } - - private static class Source { - public String sourceName; - } -} diff --git a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190410103000__migratePathwayResults.java b/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190410103000__migratePathwayResults.java index ba11194a5..e69de29bb 100644 --- a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190410103000__migratePathwayResults.java +++ b/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190410103000__migratePathwayResults.java @@ -1,182 +0,0 @@ -package org.ohdsi.webapi.db.migartion; - -import com.fasterxml.jackson.core.JsonProcessingException; -import com.odysseusinc.arachne.commons.config.flyway.ApplicationContextAwareSpringMigration; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Comparator; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.stream.Collectors; -import org.json.JSONObject; -import org.ohdsi.circe.helper.ResourceHelper; -import org.ohdsi.sql.SqlRender; -import org.ohdsi.sql.SqlSplit; -import org.ohdsi.sql.SqlTranslate; -import org.ohdsi.webapi.service.AbstractDaoService; -import org.ohdsi.webapi.source.Source; -import org.ohdsi.webapi.source.SourceDaimon; -import org.ohdsi.webapi.source.SourceRepository; -import org.ohdsi.webapi.util.CancelableJdbcTemplate; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.core.env.Environment; -import org.springframework.jdbc.core.PreparedStatementCreator; -import org.springframework.stereotype.Component; -import org.springframework.stereotype.Service; - -import static org.ohdsi.webapi.Constants.Params.GENERATION_ID; - -@Component -public class V2_8_0_20190410103000__migratePathwayResults implements ApplicationContextAwareSpringMigration { - - private final static String SQL_PATH = "/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/"; - private static final Logger log = LoggerFactory.getLogger(V2_8_0_20190410103000__migratePathwayResults.class); - private final SourceRepository sourceRepository; - private final MigrationDAO migrationDAO; - private final Environment env; - - @Service - public static class MigrationDAO extends AbstractDaoService { - - public void savePathwayCodes(List pathwayCodes, Source source, CancelableJdbcTemplate jdbcTemplate) { - String resultsSchema = source.getTableQualifier(SourceDaimon.DaimonType.Results); - String[] params; - String[] values; - - List creators = new ArrayList<>(); - - // clear existing results to prevent double-inserts - params = new String[]{"results_schema"}; - values = new String[]{resultsSchema}; - - // delete only codes that belongs current Atlas instance - List executionIdAndCodes = pathwayCodes.stream().map(v -> new Object[]{ v[0], v[1] }).collect(Collectors.toList()); - String deleteSql = SqlRender.renderSql("DELETE FROM @results_schema.pathway_analysis_codes WHERE pathway_analysis_generation_id = ? AND code = ?", params, values); - String translatedSql = SqlTranslate.translateSingleStatementSql(deleteSql, source.getSourceDialect()); - jdbcTemplate.batchUpdate(translatedSql, executionIdAndCodes); - - String saveCodesSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "saveCodes.sql"), params, values); - saveCodesSql = SqlTranslate.translateSingleStatementSql(saveCodesSql, source.getSourceDialect()); - jdbcTemplate.batchUpdate(saveCodesSql, pathwayCodes); - } - } - - private static class EventCohort { - - public int cohortId; - public String name; - } - - public V2_8_0_20190410103000__migratePathwayResults(final SourceRepository sourceRepository, - final MigrationDAO migrationDAO, - final Environment env) { - this.sourceRepository = sourceRepository; - this.migrationDAO = migrationDAO; - this.env = env; - } - - @Override - public void migrate() throws JsonProcessingException { - - String webAPISchema = this.env.getProperty("spring.jpa.properties.hibernate.default_schema"); - - sourceRepository.findAll().forEach(source -> { - try { - - String[] params; - String[] values; - String translatedSql; - String resultsSchema = source.getTableQualifierOrNull(SourceDaimon.DaimonType.Results); - - if (resultsSchema == null) { - return; // no results in this source - } - - CancelableJdbcTemplate jdbcTemplate = migrationDAO.getSourceJdbcTemplate(source); - - // step 1: ensure tables are created and have correct columns - params = new String[]{"results_schema"}; - values = new String[]{source.getTableQualifier(SourceDaimon.DaimonType.Results)}; - String ensureTablesSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "ensureTables.sql"), params, values); - translatedSql = SqlTranslate.translateSql(ensureTablesSql, source.getSourceDialect()); - Arrays.asList(SqlSplit.splitSql(translatedSql)).forEach(jdbcTemplate::execute); - - // step 2: populate pathway_analysis_paths - params = new String[]{"results_schema"}; - values = new String[]{source.getTableQualifier(SourceDaimon.DaimonType.Results)}; - String savePathwaysSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "migratePathwayResults.sql"), params, values); - - translatedSql = SqlTranslate.translateSql(savePathwaysSql, source.getSourceDialect()); - Arrays.asList(SqlSplit.splitSql(translatedSql)).forEach(jdbcTemplate::execute); - - // step 3: populate pathway_analysis_codes from each generated design for the given source - // load the generated designs - params = new String[]{"webapi_schema", "source_id"}; - values = new String[]{webAPISchema, Integer.toString(source.getSourceId())}; - String generatedDesignSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "getPathwayGeneratedDesigns.sql"), params, values); - translatedSql = SqlTranslate.translateSingleStatementSql(generatedDesignSql, this.migrationDAO.getDialect()); - - Map> designEventCohorts = migrationDAO.getJdbcTemplate().query(translatedSql, rs -> { - Map> result = new HashMap<>(); - while (rs.next()) { - String design = rs.getString("design"); - JSONObject jsonObject = new JSONObject(design); - // parse design and fetch list of event cohorts - List eventCohorts = jsonObject.getJSONArray("eventCohorts").toList() - .stream().map(obj -> { - Map ecJson = (Map) obj; - EventCohort c = new EventCohort(); - c.name = String.valueOf(ecJson.get("name")); - return c; - }) - .sorted(Comparator.comparing(d -> d.name)) - .collect(Collectors.toList()); - - int index = 0; - for (EventCohort ec : eventCohorts) { - ec.cohortId = (int) Math.pow(2, index++); // assign each cohort an ID based on their name-sort order, as a power of 2 - } - result.put(rs.getLong(GENERATION_ID), eventCohorts); - } - return result; - }); - - //fetch the distinct generation_id, combo_id from the source - params = new String[]{"results_schema"}; - values = new String[]{resultsSchema}; - String distinctGenerationComboIdsSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "getPathwayGeneratedCodes.sql"), params, values); - translatedSql = SqlTranslate.translateSingleStatementSql(distinctGenerationComboIdsSql, source.getSourceDialect()); - - // retrieve list of generation-comboId-Name-isCombo values - List generatedComboNames = jdbcTemplate.query(translatedSql, (rs) -> { - // values of String[] are: "generation_id", "code", "name", "is_combo" - List result = new ArrayList<>(); - - while (rs.next()) { - Long generationId = rs.getLong("pathway_analysis_generation_id"); - Long comboId = rs.getLong("combo_id"); - - if (!designEventCohorts.containsKey(generationId)) { - continue; // skip this record, since we do not have a design for it - } - List eventCohorts = designEventCohorts.get(generationId); - List comboCohorts = eventCohorts.stream().filter(ec -> (ec.cohortId & comboId) > 0).collect(Collectors.toList()); - String names = comboCohorts.stream() - .map(c -> c.name) - .collect(Collectors.joining(",")); - result.add(new Object[]{generationId, comboId, names, comboCohorts.size() > 1 ? 1 : 0}); - } - return result; - }); - - this.migrationDAO.savePathwayCodes(generatedComboNames, source, jdbcTemplate); - - } - catch(Exception e) { - log.error("Failed to migration pathways for source: %s (%s)".formatted(source.getSourceName(), source.getSourceKey())); - } - }); - } -} diff --git a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190520171430__cohortExpressionHashCode.java b/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190520171430__cohortExpressionHashCode.java index 8b66baa6f..e69de29bb 100644 --- a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190520171430__cohortExpressionHashCode.java +++ b/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190520171430__cohortExpressionHashCode.java @@ -1,32 +0,0 @@ -package org.ohdsi.webapi.db.migartion; - -import com.odysseusinc.arachne.commons.config.flyway.ApplicationContextAwareSpringMigration; -import org.ohdsi.analysis.Utils; -import org.ohdsi.circe.cohortdefinition.CohortExpression; -import org.ohdsi.webapi.cohortdefinition.CohortDefinitionDetails; -import org.ohdsi.webapi.cohortdefinition.CohortDefinitionDetailsRepository; -import org.springframework.stereotype.Component; - -import java.util.List; - -@Component -public class V2_8_0_20190520171430__cohortExpressionHashCode implements ApplicationContextAwareSpringMigration { - - private CohortDefinitionDetailsRepository detailsRepository; - - public V2_8_0_20190520171430__cohortExpressionHashCode(CohortDefinitionDetailsRepository detailsRepository){ - this.detailsRepository = detailsRepository; - } - - @Override - public void migrate() throws Exception { - List allDetails = detailsRepository.findAll(); - for (CohortDefinitionDetails details: allDetails) { - //after deserialization the field "cdmVersionRange" is added and default value for it is set - CohortExpression expression = Utils.deserialize(details.getExpression(), CohortExpression.class); - details.setExpression(Utils.serialize(expression)); - details.updateHashCode(); - detailsRepository.save(details); - } - } -} diff --git a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20191106092815__migrateEventFAType.java b/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20191106092815__migrateEventFAType.java index a62fbea06..e69de29bb 100644 --- a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20191106092815__migrateEventFAType.java +++ b/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20191106092815__migrateEventFAType.java @@ -1,71 +0,0 @@ -package org.ohdsi.webapi.db.migartion; - -import com.odysseusinc.arachne.commons.config.flyway.ApplicationContextAwareSpringMigration; -import org.ohdsi.circe.helper.ResourceHelper; -import org.ohdsi.sql.SqlRender; -import org.ohdsi.sql.SqlSplit; -import org.ohdsi.webapi.service.AbstractDaoService; -import org.ohdsi.webapi.source.Source; -import org.ohdsi.webapi.source.SourceDaimon; -import org.ohdsi.webapi.source.SourceRepository; -import org.ohdsi.webapi.util.CancelableJdbcTemplate; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.stereotype.Component; -import org.springframework.stereotype.Service; - -import java.util.List; - -@Component -public class V2_8_0_20191106092815__migrateEventFAType implements ApplicationContextAwareSpringMigration { - private final static String UPDATE_VALUE_SQL = ResourceHelper.GetResourceAsString( - "/db/migration/java/V2_8_0_20191106092815__migrateEventFAType/updateFaType.sql"); - private final static String UPDATE_VALUE_IMPALA_SQL = ResourceHelper.GetResourceAsString( - "/db/migration/java/V2_8_0_20191106092815__migrateEventFAType/updateFaTypeImpala.sql"); - private static final Logger log = LoggerFactory.getLogger(V2_8_0_20191106092815__migrateEventFAType.class); - - private final SourceRepository sourceRepository; - private final V2_8_0_20191106092815__migrateEventFAType.MigrationDAO migrationDAO; - - public V2_8_0_20191106092815__migrateEventFAType(final SourceRepository sourceRepository, - final V2_8_0_20191106092815__migrateEventFAType.MigrationDAO migrationDAO) { - this.sourceRepository = sourceRepository; - this.migrationDAO = migrationDAO; - } - - @Override - public void migrate() throws Exception { - List sources = sourceRepository.findAll(); - sources.stream() - .filter(source -> source.getTableQualifierOrNull(SourceDaimon.DaimonType.Results) != null) - .forEach(source -> { - try { - CancelableJdbcTemplate jdbcTemplate = migrationDAO.getSourceJdbcTemplate(source); - - this.migrationDAO.updateColumnValue(source, jdbcTemplate); - } catch (Exception e) { - log.error("Failed to update fa type value for source: %s (%s)".formatted(source.getSourceName(), source.getSourceKey())); - throw e; - } - }); - } - - @Service - public static class MigrationDAO extends AbstractDaoService { - public void updateColumnValue(Source source, CancelableJdbcTemplate jdbcTemplate) { - String resultsSchema = source.getTableQualifier(SourceDaimon.DaimonType.Results); - String[] params = new String[]{"results_schema"}; - String[] values = new String[]{resultsSchema}; - String translatedSql; - // Impala can't update non-kudu tables, so use special script with temp table - if (Source.IMPALA_DATASOURCE.equals(source.getSourceDialect())) { - translatedSql = SqlRender.renderSql(UPDATE_VALUE_IMPALA_SQL, params, values); - } else { - translatedSql = SqlRender.renderSql(UPDATE_VALUE_SQL, params, values); - } - for (String sql: SqlSplit.splitSql(translatedSql)) { - jdbcTemplate.execute(sql); - } - } - } -} diff --git a/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java b/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java index 73fc81d22..cc68fdecb 100644 --- a/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java @@ -1,7 +1,7 @@ package org.ohdsi.webapi.estimation; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraphUtils; +import com.cosium.spring.data.jpa.entity.graph.domain2.DynamicEntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import com.fasterxml.jackson.core.JsonProcessingException; import org.apache.commons.io.FileUtils; import org.apache.commons.lang3.StringUtils; @@ -71,6 +71,7 @@ import java.util.Objects; import java.util.Optional; import java.util.stream.Collectors; +import java.util.stream.StreamSupport; import static org.ohdsi.webapi.Constants.GENERATE_ESTIMATION_ANALYSIS; import static org.ohdsi.webapi.Constants.Params.ESTIMATION_ANALYSIS_ID; @@ -89,12 +90,12 @@ public class EstimationServiceImpl extends AnalysisExecutionSupport implements E private final String EXEC_SCRIPT = ResourceHelper.GetResourceAsString("/resources/estimation/r/runAnalysis.R"); - private final EntityGraph DEFAULT_ENTITY_GRAPH = EntityGraphUtils.fromAttributePaths("source", "analysisExecution.resultFiles"); + private final EntityGraph DEFAULT_ENTITY_GRAPH = DynamicEntityGraph.loading().addPath("source", "analysisExecution.resultFiles").build(); - private final EntityGraph COMMONS_ENTITY_GRAPH = EntityUtils.fromAttributePaths( + private final EntityGraph COMMONS_ENTITY_GRAPH = DynamicEntityGraph.loading().addPath( "createdBy", "modifiedBy" - ); + ).build(); @PersistenceContext protected EntityManager entityManager; @@ -151,7 +152,7 @@ public int getCountEstimationWithSameName(Integer id, String name) { @Override public Estimation getById(Integer id) { - return estimationRepository.findOne(id, COMMONS_ENTITY_GRAPH); + return estimationRepository.findById(id, COMMONS_ENTITY_GRAPH).get(); } @Override @@ -213,12 +214,12 @@ public Estimation copy(final int id) throws Exception { @Override public Estimation getAnalysis(int id) { - return estimationRepository.findOne(id, COMMONS_ENTITY_GRAPH); + return estimationRepository.findById(id, COMMONS_ENTITY_GRAPH).get(); } @Override public EstimationAnalysisImpl getAnalysisExpression(int id) { - return Utils.deserialize(estimationRepository.findOne(id, COMMONS_ENTITY_GRAPH).getSpecification(), EstimationAnalysisImpl.class); + return Utils.deserialize(estimationRepository.findById(id, COMMONS_ENTITY_GRAPH).get().getSpecification(), EstimationAnalysisImpl.class); } @Override @@ -406,7 +407,7 @@ public Estimation importAnalysis(EstimationAnalysisImpl analysis) throws Excepti est.setName(NameUtils.getNameWithSuffix(analysis.getName(), this::getNamesLike)); Estimation savedEstimation = this.createEstimation(est); - return estimationRepository.findOne(savedEstimation.getId(), COMMONS_ENTITY_GRAPH); + return estimationRepository.findById(savedEstimation.getId(), COMMONS_ENTITY_GRAPH).get(); } catch (Exception e) { log.debug("Error while importing estimation analysis: " + e.getMessage()); throw e; @@ -471,9 +472,9 @@ protected String getExecutionScript() { @Override public List getEstimationGenerations(Integer estimationAnalysisId) { - return generationRepository - .findByEstimationAnalysisId(estimationAnalysisId, DEFAULT_ENTITY_GRAPH) - .stream() + return StreamSupport.stream( + generationRepository.findByEstimationAnalysisId(estimationAnalysisId, DEFAULT_ENTITY_GRAPH).spliterator(), false + ) .filter(gen -> sourceAccessor.hasAccess(gen.getSource())) .collect(Collectors.toList()); } @@ -481,7 +482,7 @@ public List getEstimationGenerations(Integer estimat @Override public EstimationGenerationEntity getGeneration(Long generationId) { - return generationRepository.findOne(generationId, DEFAULT_ENTITY_GRAPH); + return generationRepository.findById(generationId, DEFAULT_ENTITY_GRAPH).get(); } private Estimation save(Estimation analysis) { diff --git a/src/main/java/org/ohdsi/webapi/estimation/repository/EstimationAnalysisGenerationRepository.java b/src/main/java/org/ohdsi/webapi/estimation/repository/EstimationAnalysisGenerationRepository.java index 5710ae4bb..7afa74cfc 100644 --- a/src/main/java/org/ohdsi/webapi/estimation/repository/EstimationAnalysisGenerationRepository.java +++ b/src/main/java/org/ohdsi/webapi/estimation/repository/EstimationAnalysisGenerationRepository.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.estimation.repository; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphJpaRepository; import org.ohdsi.webapi.estimation.domain.EstimationGenerationEntity; diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java b/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java index 187e39382..45162b5de 100644 --- a/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java @@ -1,6 +1,7 @@ package org.ohdsi.webapi.feanalysis; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.DynamicEntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import org.apache.commons.collections.CollectionUtils; import org.apache.commons.lang3.StringUtils; import org.ohdsi.analysis.cohortcharacterization.design.CcResultType; @@ -41,10 +42,10 @@ public class FeAnalysisServiceImpl extends AbstractDaoService implements FeAnaly private final ApplicationEventPublisher eventPublisher; private FeAnalysisAggregateRepository aggregateRepository; - private final EntityGraph defaultEntityGraph = EntityUtils.fromAttributePaths( + private final EntityGraph defaultEntityGraph = DynamicEntityGraph.loading().addPath( "createdBy", "modifiedBy" - ); + ).build(); public FeAnalysisServiceImpl( final FeAnalysisEntityRepository analysisRepository, diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/repository/BaseFeAnalysisEntityRepository.java b/src/main/java/org/ohdsi/webapi/feanalysis/repository/BaseFeAnalysisEntityRepository.java index 3edb16121..8e3d42a77 100644 --- a/src/main/java/org/ohdsi/webapi/feanalysis/repository/BaseFeAnalysisEntityRepository.java +++ b/src/main/java/org/ohdsi/webapi/feanalysis/repository/BaseFeAnalysisEntityRepository.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.feanalysis.repository; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphJpaRepository; import java.util.List; import java.util.Optional; diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisCriteriaRepository.java b/src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisCriteriaRepository.java index d4cde8077..dc1982a5c 100644 --- a/src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisCriteriaRepository.java +++ b/src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisCriteriaRepository.java @@ -8,6 +8,6 @@ public interface FeAnalysisCriteriaRepository extends JpaRepository { List findAllByFeatureAnalysisId(Integer id); - @Query("select fa from FeAnalysisCriteriaEntity AS fa JOIN FETCH fa.featureAnalysis where expression = ?1") + @Query("select fa from FeAnalysisCriteriaEntity AS fa JOIN FETCH fa.featureAnalysis where fa.expressionString = ?1") List findAllByExpressionString(String expression); } \ No newline at end of file diff --git a/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java b/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java index 37e951eef..0b58694ab 100644 --- a/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java +++ b/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java @@ -1,11 +1,12 @@ package org.ohdsi.webapi.generationcache; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraphUtils; import org.apache.commons.lang.time.DateUtils; import org.springframework.beans.factory.annotation.Value; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; +import com.cosium.spring.data.jpa.entity.graph.domain2.DynamicEntityGraph; + import java.util.Date; import java.util.List; @@ -29,7 +30,7 @@ public void removeOldCache() { List caches = generationCacheRepository.findAllByCreatedDateBefore( DateUtils.addDays(new Date(), -1 * invalidateAfterDays), - EntityGraphUtils.fromAttributePaths("source", "source.daimons") + DynamicEntityGraph.loading().addPath("source", "source.daimons").build() ); caches.forEach(gc -> generationCacheService.removeCache(gc.getType(), gc.getSource(), gc.getDesignHash())); } diff --git a/src/main/java/org/ohdsi/webapi/generationcache/GenerationCacheRepository.java b/src/main/java/org/ohdsi/webapi/generationcache/GenerationCacheRepository.java index 44318bf0e..056fdd321 100644 --- a/src/main/java/org/ohdsi/webapi/generationcache/GenerationCacheRepository.java +++ b/src/main/java/org/ohdsi/webapi/generationcache/GenerationCacheRepository.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.generationcache; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphJpaRepository; import org.ohdsi.webapi.source.Source; import org.springframework.data.jpa.repository.Query; diff --git a/src/main/java/org/ohdsi/webapi/generationcache/GenerationCacheServiceImpl.java b/src/main/java/org/ohdsi/webapi/generationcache/GenerationCacheServiceImpl.java index e427aa0c3..1a8ad1097 100644 --- a/src/main/java/org/ohdsi/webapi/generationcache/GenerationCacheServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/generationcache/GenerationCacheServiceImpl.java @@ -1,12 +1,13 @@ package org.ohdsi.webapi.generationcache; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraphUtils; import org.ohdsi.webapi.source.Source; import org.ohdsi.webapi.source.SourceRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Service; +import com.cosium.spring.data.jpa.entity.graph.domain2.DynamicEntityGraph; + import java.util.Date; import java.util.List; import java.util.Objects; @@ -43,7 +44,7 @@ public Integer getDesignHash(CacheableGenerationType type, String design) { public GenerationCache getCacheOrEraseInvalid(CacheableGenerationType type, Integer designHash, Integer sourceId) { Source source = sourceRepository.findBySourceId(sourceId); - GenerationCache generationCache = generationCacheRepository.findByTypeAndAndDesignHashAndSource(type, designHash, source, EntityGraphUtils.fromAttributePaths("source")); + GenerationCache generationCache = generationCacheRepository.findByTypeAndAndDesignHashAndSource(type, designHash, source, DynamicEntityGraph.loading().addPath("source").build()); GenerationCacheProvider provider = getProvider(type); if (generationCache != null) { String checksum = provider.getResultsChecksum(generationCache.getSource(), generationCache.getDesignHash()); @@ -89,7 +90,7 @@ public void removeCache(CacheableGenerationType type, Source source, Integer des // Cleanup cached results getProvider(type).remove(source, designHash); // Cleanup cache record - GenerationCache generationCache = generationCacheRepository.findByTypeAndAndDesignHashAndSource(type, designHash, source, EntityGraphUtils.fromAttributePaths("source")); + GenerationCache generationCache = generationCacheRepository.findByTypeAndAndDesignHashAndSource(type, designHash, source, DynamicEntityGraph.loading().addPath("source").build()); if (generationCache != null) { generationCacheRepository.delete(generationCache); } diff --git a/src/main/java/org/ohdsi/webapi/ircalc/IRAnalysisInfoListener.java b/src/main/java/org/ohdsi/webapi/ircalc/IRAnalysisInfoListener.java index b84540c7e..430ec6b7e 100644 --- a/src/main/java/org/ohdsi/webapi/ircalc/IRAnalysisInfoListener.java +++ b/src/main/java/org/ohdsi/webapi/ircalc/IRAnalysisInfoListener.java @@ -1,7 +1,8 @@ package org.ohdsi.webapi.ircalc; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraphUtils; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.NamedEntityGraph; + import org.ohdsi.webapi.Constants; import org.ohdsi.webapi.GenerationStatus; import org.springframework.batch.core.BatchStatus; @@ -22,7 +23,7 @@ public class IRAnalysisInfoListener implements JobExecutionListener { private static final int MAX_MESSAGE_LENGTH = 2000; - private static final EntityGraph IR_WITH_EXECUTION_INFOS_ENTITY_GRAPH = EntityGraphUtils.fromName("IncidenceRateAnalysis.withExecutionInfoList"); + private static final EntityGraph IR_WITH_EXECUTION_INFOS_ENTITY_GRAPH = NamedEntityGraph.loading("IncidenceRateAnalysis.withExecutionInfoList"); private final TransactionTemplate transactionTemplate; private final IncidenceRateAnalysisRepository incidenceRateAnalysisRepository; diff --git a/src/main/java/org/ohdsi/webapi/ircalc/IncidenceRateAnalysisRepository.java b/src/main/java/org/ohdsi/webapi/ircalc/IncidenceRateAnalysisRepository.java index 0bdf5f0d8..9b2f89c94 100644 --- a/src/main/java/org/ohdsi/webapi/ircalc/IncidenceRateAnalysisRepository.java +++ b/src/main/java/org/ohdsi/webapi/ircalc/IncidenceRateAnalysisRepository.java @@ -15,7 +15,7 @@ */ package org.ohdsi.webapi.ircalc; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphCrudRepository; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.query.Param; diff --git a/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java b/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java index 512327c7d..cef7aee2f 100644 --- a/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java @@ -1,6 +1,7 @@ package org.ohdsi.webapi.pathway; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.DynamicEntityGraph; import com.google.common.base.MoreObjects; import com.odysseusinc.arachne.commons.types.DBMSType; import org.hibernate.Hibernate; @@ -88,6 +89,7 @@ import java.util.StringJoiner; import java.util.stream.Collectors; import java.util.stream.Stream; +import java.util.stream.StreamSupport; import static org.ohdsi.webapi.Constants.GENERATE_PATHWAY_ANALYSIS; import static org.ohdsi.webapi.Constants.Params.GENERATION_ID; @@ -126,12 +128,12 @@ public class PathwayServiceImpl extends AbstractDaoService implements PathwaySer private final List STEP_COLUMNS = Arrays.asList(new String[]{"step_1", "step_2", "step_3", "step_4", "step_5", "step_6", "step_7", "step_8", "step_9", "step_10"}); - private final EntityGraph defaultEntityGraph = EntityUtils.fromAttributePaths( + private final EntityGraph defaultEntityGraph = DynamicEntityGraph.loading().addPath( "targetCohorts.cohortDefinition", "eventCohorts.cohortDefinition", "createdBy", "modifiedBy" - ); + ).build(); public PathwayServiceImpl( PathwayAnalysisEntityRepository pathwayAnalysisRepository, @@ -227,8 +229,8 @@ public PathwayAnalysisEntity importAnalysis(PathwayAnalysisEntity toImport) { @Override public Page getPage(final Pageable pageable) { - List pathwayList = pathwayAnalysisRepository.findAll(defaultEntityGraph) - .stream().filter(!defaultGlobalReadPermissions ? entity -> permissionService.hasReadAccess(entity) : entity -> true) + List pathwayList = StreamSupport.stream(pathwayAnalysisRepository.findAll(defaultEntityGraph).spliterator(), false) + .filter(!defaultGlobalReadPermissions ? entity -> permissionService.hasReadAccess(entity) : entity -> true) .collect(Collectors.toList()); return getPageFromResults(pageable, pathwayList); } @@ -250,7 +252,7 @@ public int getCountPAWithSameName(Integer id, String name) { @Override public PathwayAnalysisEntity getById(Integer id) { - PathwayAnalysisEntity entity = pathwayAnalysisRepository.findOne(id, defaultEntityGraph); + PathwayAnalysisEntity entity = pathwayAnalysisRepository.findById(id, defaultEntityGraph).get(); if (Objects.nonNull(entity)) { entity.getTargetCohorts().forEach(tc -> Hibernate.initialize(tc.getCohortDefinition().getDetails())); entity.getEventCohorts().forEach(ec -> Hibernate.initialize(ec.getCohortDefinition().getDetails())); @@ -454,7 +456,7 @@ public JobExecutionResource generatePathways(final Integer pathwayAnalysisId, fi @DataSourceAccess public void cancelGeneration(Integer pathwayAnalysisId, @SourceId Integer sourceId) { - PathwayAnalysisEntity entity = pathwayAnalysisRepository.findOne(pathwayAnalysisId, defaultEntityGraph); + PathwayAnalysisEntity entity = pathwayAnalysisRepository.findById(pathwayAnalysisId, defaultEntityGraph).get(); String sourceKey = getSourceRepository().findBySourceId(sourceId).getSourceKey(); entity.getTargetCohorts().forEach(tc -> cohortDefinitionService.cancelGenerateCohort(tc.getId(), sourceKey)); entity.getEventCohorts().forEach(ec -> cohortDefinitionService.cancelGenerateCohort(ec.getId(), sourceKey)); @@ -470,13 +472,13 @@ public void cancelGeneration(Integer pathwayAnalysisId, @SourceId Integer source @Override public List getPathwayGenerations(final Integer pathwayAnalysisId) { - return pathwayAnalysisGenerationRepository.findAllByPathwayAnalysisId(pathwayAnalysisId, EntityUtils.fromAttributePaths("source")); + return pathwayAnalysisGenerationRepository.findAllByPathwayAnalysisId(pathwayAnalysisId, DynamicEntityGraph.loading().addPath("source").build()); } @Override public PathwayAnalysisGenerationEntity getGeneration(Long generationId) { - return pathwayAnalysisGenerationRepository.findOne(generationId, EntityUtils.fromAttributePaths("source")); + return pathwayAnalysisGenerationRepository.findById(generationId, DynamicEntityGraph.loading().addPath("source").build()).get(); } @Override diff --git a/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayAnalysisGenerationRepository.java b/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayAnalysisGenerationRepository.java index 03155c54c..ee55601bc 100644 --- a/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayAnalysisGenerationRepository.java +++ b/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayAnalysisGenerationRepository.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.pathway.repository; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphJpaRepository; import org.ohdsi.webapi.pathway.domain.PathwayAnalysisGenerationEntity; diff --git a/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayEventCohortRepository.java b/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayEventCohortRepository.java index 9af19c7f8..a4405fd16 100644 --- a/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayEventCohortRepository.java +++ b/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayEventCohortRepository.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.pathway.repository; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphJpaRepository; import org.ohdsi.webapi.pathway.domain.PathwayEventCohort; diff --git a/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayTargetCohortRepository.java b/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayTargetCohortRepository.java index 8a2d7715c..bd9243b64 100644 --- a/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayTargetCohortRepository.java +++ b/src/main/java/org/ohdsi/webapi/pathway/repository/PathwayTargetCohortRepository.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.pathway.repository; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphJpaRepository; import org.ohdsi.webapi.pathway.domain.PathwayTargetCohort; diff --git a/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java b/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java index 91cca798b..9b28a69f3 100644 --- a/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java @@ -1,7 +1,7 @@ package org.ohdsi.webapi.prediction; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraphUtils; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.DynamicEntityGraph; import com.fasterxml.jackson.core.JsonProcessingException; import org.apache.commons.io.FileUtils; import org.apache.commons.lang3.StringUtils; @@ -61,12 +61,12 @@ @Transactional public class PredictionServiceImpl extends AnalysisExecutionSupport implements PredictionService, GeneratesNotification { - private static final EntityGraph DEFAULT_ENTITY_GRAPH = EntityGraphUtils.fromAttributePaths("source", "analysisExecution.resultFiles"); + private static final EntityGraph DEFAULT_ENTITY_GRAPH = DynamicEntityGraph.loading().addPath("source", "analysisExecution.resultFiles").build(); - private final EntityGraph COMMONS_ENTITY_GRAPH = EntityUtils.fromAttributePaths( + private final EntityGraph COMMONS_ENTITY_GRAPH = DynamicEntityGraph.loading().addPath( "createdBy", "modifiedBy" - ); + ).build(); @Autowired private PredictionAnalysisRepository predictionAnalysisRepository; @@ -123,7 +123,7 @@ public int getCountPredictionWithSameName(Integer id, String name) { @Override public PredictionAnalysis getById(Integer id) { - return predictionAnalysisRepository.findOne(id, COMMONS_ENTITY_GRAPH); + return predictionAnalysisRepository.findById(id, COMMONS_ENTITY_GRAPH).get(); } @Override @@ -178,7 +178,7 @@ public PredictionAnalysis copy(final int id) { @Override public PredictionAnalysis getAnalysis(int id) { - return this.predictionAnalysisRepository.findOne(id, COMMONS_ENTITY_GRAPH); + return this.predictionAnalysisRepository.findById(id, COMMONS_ENTITY_GRAPH).get(); } @Override @@ -304,7 +304,7 @@ public PredictionAnalysis importAnalysis(PatientLevelPredictionAnalysisImpl anal pa.setName(NameUtils.getNameWithSuffix(analysis.getName(), this::getNamesLike)); PredictionAnalysis savedAnalysis = this.createAnalysis(pa); - return predictionAnalysisRepository.findOne(savedAnalysis.getId(), COMMONS_ENTITY_GRAPH); + return predictionAnalysisRepository.findById(savedAnalysis.getId(), COMMONS_ENTITY_GRAPH).get(); } catch (Exception e) { log.debug("Error while importing prediction analysis: " + e.getMessage()); throw e; @@ -384,7 +384,7 @@ public List getPredictionGenerations(Integer predict @Override public PredictionGenerationEntity getGeneration(Long generationId) { - return generationRepository.findOne(generationId, DEFAULT_ENTITY_GRAPH); + return generationRepository.findById(generationId, DEFAULT_ENTITY_GRAPH).get(); } private PredictionAnalysis save(PredictionAnalysis analysis) { diff --git a/src/main/java/org/ohdsi/webapi/prediction/repository/PredictionAnalysisGenerationRepository.java b/src/main/java/org/ohdsi/webapi/prediction/repository/PredictionAnalysisGenerationRepository.java index aa5f81f19..8d1d9c952 100644 --- a/src/main/java/org/ohdsi/webapi/prediction/repository/PredictionAnalysisGenerationRepository.java +++ b/src/main/java/org/ohdsi/webapi/prediction/repository/PredictionAnalysisGenerationRepository.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.prediction.repository; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphJpaRepository; import org.ohdsi.webapi.prediction.domain.PredictionGenerationEntity; diff --git a/src/main/java/org/ohdsi/webapi/security/PermissionService.java b/src/main/java/org/ohdsi/webapi/security/PermissionService.java index 89a4531ce..97f871e64 100644 --- a/src/main/java/org/ohdsi/webapi/security/PermissionService.java +++ b/src/main/java/org/ohdsi/webapi/security/PermissionService.java @@ -1,7 +1,7 @@ package org.ohdsi.webapi.security; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraphUtils; +import com.cosium.spring.data.jpa.entity.graph.domain2.DynamicEntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; import jakarta.annotation.PostConstruct; import org.apache.shiro.authz.UnauthorizedException; import org.ohdsi.webapi.model.CommonEntity; @@ -25,6 +25,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.aop.framework.Advised; +import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.beans.factory.annotation.Value; import org.springframework.core.convert.ConversionService; import org.springframework.data.jpa.repository.JpaRepository; @@ -67,7 +68,7 @@ public class PermissionService { private ThreadLocal>>> permissionCache = ThreadLocal.withInitial(ConcurrentHashMap::new); - private final EntityGraph PERMISSION_ENTITY_GRAPH = EntityGraphUtils.fromAttributePaths("rolePermissions", "rolePermissions.role"); + private final EntityGraph PERMISSION_ENTITY_GRAPH = DynamicEntityGraph.loading().addPath("rolePermissions", "rolePermissions.role").build(); public PermissionService( WebApplicationContext appContext, @@ -190,7 +191,7 @@ public void preparePermissionCache(EntityType entityType, Set permission Map roleDTOMap = new HashMap<>(); permissionsSQLTemplates.forEach(p -> { - Iterable permissionEntities = permissionRepository.findByValueLike(p, PERMISSION_ENTITY_GRAPH); + Iterable permissionEntities = permissionRepository.findByValueLike(p);//, PERMISSION_ENTITY_GRAPH); for (PermissionEntity permissionEntity : permissionEntities) { Set roles = rolesForEntity.get(permissionEntity.getValue()); if (roles == null) { diff --git a/src/main/java/org/ohdsi/webapi/service/AbstractDaoService.java b/src/main/java/org/ohdsi/webapi/service/AbstractDaoService.java index 60f66123b..b9e7509c0 100644 --- a/src/main/java/org/ohdsi/webapi/service/AbstractDaoService.java +++ b/src/main/java/org/ohdsi/webapi/service/AbstractDaoService.java @@ -45,6 +45,7 @@ import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Lazy; import org.springframework.core.convert.ConversionService; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.jdbc.core.RowMapper; @@ -143,6 +144,7 @@ public ConceptSetRepository getConceptSetRepository() { @Autowired private SourceHelper sourceHelper; + @Lazy @Autowired private TagService tagService; diff --git a/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java b/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java index 58d2af084..ad8874716 100644 --- a/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java +++ b/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java @@ -84,7 +84,9 @@ import org.springframework.batch.core.Step; import org.springframework.batch.core.configuration.annotation.JobBuilderFactory; import org.springframework.batch.core.configuration.annotation.StepBuilderFactory; +import org.springframework.batch.core.job.builder.JobBuilder; import org.springframework.batch.core.job.builder.SimpleJobBuilder; +import org.springframework.batch.core.step.builder.StepBuilder; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.ApplicationEventPublisher; @@ -154,12 +156,6 @@ public class CohortDefinitionService extends AbstractDaoService implements HasTa @Autowired private CohortDefinitionRepository cohortDefinitionRepository; - @Autowired - private JobBuilderFactory jobBuilders; - - @Autowired - private StepBuilderFactory stepBuilders; - @Autowired private JobTemplate jobTemplate; @@ -737,17 +733,17 @@ public void doInTransactionWithoutResult(final TransactionStatus status) { CleanupCohortTasklet cleanupTasklet = new CleanupCohortTasklet(this.getTransactionTemplateNoTransaction(), this.getSourceRepository()); - Step cleanupStep = stepBuilders.get("cohortDefinition.cleanupCohort") + Step cleanupStep = new StepBuilder("cohortDefinition.cleanupCohort") .tasklet(cleanupTasklet) .build(); CleanupCohortSamplesTasklet cleanupSamplesTasklet = samplingService.createDeleteSamplesTasklet(); - Step cleanupSamplesStep = stepBuilders.get("cohortDefinition.cleanupSamples") + Step cleanupSamplesStep = new StepBuilder("cohortDefinition.cleanupSamples") .tasklet(cleanupSamplesTasklet) .build(); - SimpleJobBuilder cleanupJobBuilder = jobBuilders.get("cleanupCohort") + SimpleJobBuilder cleanupJobBuilder = new JobBuilder("cleanupCohort") .start(cleanupStep) .next(cleanupSamplesStep); diff --git a/src/main/java/org/ohdsi/webapi/service/IRAnalysisService.java b/src/main/java/org/ohdsi/webapi/service/IRAnalysisService.java index bd6ecd08f..1bf10fe12 100644 --- a/src/main/java/org/ohdsi/webapi/service/IRAnalysisService.java +++ b/src/main/java/org/ohdsi/webapi/service/IRAnalysisService.java @@ -15,8 +15,8 @@ */ package org.ohdsi.webapi.service; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraphUtils; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.NamedEntityGraph; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.databind.ObjectMapper; import com.google.common.collect.ImmutableMap; @@ -138,7 +138,7 @@ public class IRAnalysisService extends AbstractDaoService implements private final static String STRATA_STATS_QUERY_TEMPLATE = ResourceHelper.GetResourceAsString("/resources/incidencerate/sql/strata_stats.sql"); private static final String NAME = "irAnalysis"; private static final String NO_INCIDENCE_RATE_ANALYSIS_MESSAGE = "There is no incidence rate analysis with id = %d."; - private static final EntityGraph ANALYSIS_WITH_EXECUTION_INFO = EntityGraphUtils.fromName("IncidenceRateAnalysis.withExecutionInfoList"); + private static final EntityGraph ANALYSIS_WITH_EXECUTION_INFO = NamedEntityGraph.loading("IncidenceRateAnalysis.withExecutionInfoList"); private final IRAnalysisQueryBuilder queryBuilder; diff --git a/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java b/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java index 71b0b75a9..d37cb8ea0 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java +++ b/src/main/java/org/ohdsi/webapi/shiro/Entities/PermissionRepository.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.shiro.Entities; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; +import org.springframework.data.jpa.repository.EntityGraph; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.CrudRepository; @@ -13,5 +13,6 @@ public interface PermissionRepository extends CrudRepository findByValueLike(String permissionTemplate, EntityGraph entityGraph); + @EntityGraph(attributePaths = {"rolePermissions", "rolePermissions.role"}) + List findByValueLike(String permissionTemplate); } diff --git a/src/main/java/org/ohdsi/webapi/source/SourceController.java b/src/main/java/org/ohdsi/webapi/source/SourceController.java index 000aedcdd..9a619edf7 100644 --- a/src/main/java/org/ohdsi/webapi/source/SourceController.java +++ b/src/main/java/org/ohdsi/webapi/source/SourceController.java @@ -194,7 +194,7 @@ public SourceInfo createSource(@FormDataParam("keyfile") InputStream file, @Form source.setCreatedBy(getCurrentUser()); source.setCreatedDate(new Date()); try { - Source saved = sourceRepository.saveAndFlush(source); + Source saved = sourceRepository.save(source); sourceService.invalidateCache(); SourceInfo sourceInfo = new SourceInfo(saved); publisher.publishEvent(new AddDataSourceEvent(this, source.getSourceId(), source.getSourceName())); diff --git a/src/main/java/org/ohdsi/webapi/source/SourceService.java b/src/main/java/org/ohdsi/webapi/source/SourceService.java index bb63475cc..952c791fd 100644 --- a/src/main/java/org/ohdsi/webapi/source/SourceService.java +++ b/src/main/java/org/ohdsi/webapi/source/SourceService.java @@ -17,6 +17,7 @@ import java.util.*; import java.util.stream.Collectors; +import java.util.stream.StreamSupport; @Service public class SourceService extends AbstractDaoService { @@ -80,7 +81,8 @@ protected void doInTransactionWithoutResult(TransactionStatus transactionStatus) public Collection getSources() { if (cachedSources == null) { - List sources = sourceRepository.findAll(); + List sources = StreamSupport.stream(sourceRepository.findAll().spliterator(), false) + .collect(Collectors.toList()); Collections.sort(sources, new SortByKey()); cachedSources = sources; } diff --git a/src/main/java/org/ohdsi/webapi/tag/repository/TagRepository.java b/src/main/java/org/ohdsi/webapi/tag/repository/TagRepository.java index 828a6b9d0..186b3c875 100644 --- a/src/main/java/org/ohdsi/webapi/tag/repository/TagRepository.java +++ b/src/main/java/org/ohdsi/webapi/tag/repository/TagRepository.java @@ -61,6 +61,6 @@ public interface TagRepository extends JpaRepository { """) List findReusableTagInfo(); - @Query("SELECT t FROM Tag t WHERE t.mandatory = 'TRUE'") + @Query("SELECT t FROM Tag t WHERE t.mandatory = TRUE") List findMandatoryTags(); } diff --git a/src/main/java/org/ohdsi/webapi/user/importer/model/UserImportJob.java b/src/main/java/org/ohdsi/webapi/user/importer/model/UserImportJob.java index 4abe8116d..d6e48d2df 100644 --- a/src/main/java/org/ohdsi/webapi/user/importer/model/UserImportJob.java +++ b/src/main/java/org/ohdsi/webapi/user/importer/model/UserImportJob.java @@ -11,6 +11,7 @@ import jakarta.persistence.EnumType; import jakarta.persistence.Enumerated; import jakarta.persistence.FetchType; +import jakarta.persistence.Id; import jakarta.persistence.JoinColumn; import jakarta.persistence.NamedAttributeNode; import jakarta.persistence.NamedEntityGraph; @@ -32,7 +33,7 @@ @NamedEntityGraph(name = "jobWithMapping", attributeNodes = @NamedAttributeNode("roleGroupMapping")) public class UserImportJob extends ArachneJob { - + @ElementCollection(fetch = FetchType.EAGER) @CollectionTable(name = "user_import_job_weekdays", joinColumns = @JoinColumn(name = "user_import_job_id")) @Column(name = "day_of_week") diff --git a/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java b/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java index 60c3c297b..47fde1a9d 100644 --- a/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java @@ -1,7 +1,7 @@ package org.ohdsi.webapi.user.importer.service; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraphUtils; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.NamedEntityGraph; import com.cronutils.model.definition.CronDefinition; import com.odysseusinc.scheduler.model.ScheduledTask; import com.odysseusinc.scheduler.service.BaseJobServiceImpl; @@ -47,7 +47,7 @@ public class UserImportJobServiceImpl extends BaseJobServiceImpl private final StepBuilderFactory stepBuilderFactory; private final JobBuilderFactory jobBuilders; private final JobTemplate jobTemplate; - private EntityGraph jobWithMappingEntityGraph = EntityGraphUtils.fromName("jobWithMapping"); + private EntityGraph jobWithMappingEntityGraph = NamedEntityGraph.loading("jobWithMapping"); public UserImportJobServiceImpl(TaskScheduler taskScheduler, CronDefinition cronDefinition, diff --git a/src/main/java/org/ohdsi/webapi/util/EntityUtils.java b/src/main/java/org/ohdsi/webapi/util/EntityUtils.java index 19073f53f..5fc80c61a 100644 --- a/src/main/java/org/ohdsi/webapi/util/EntityUtils.java +++ b/src/main/java/org/ohdsi/webapi/util/EntityUtils.java @@ -1,7 +1,7 @@ package org.ohdsi.webapi.util; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; -import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraphUtils; +import com.cosium.spring.data.jpa.entity.graph.domain2.DynamicEntityGraph; +import com.cosium.spring.data.jpa.entity.graph.domain2.EntityGraph; public class EntityUtils { @@ -11,6 +11,6 @@ private EntityUtils() { public static EntityGraph fromAttributePaths(final String... strings) { - return EntityGraphUtils.fromAttributePaths(strings); + return DynamicEntityGraph.loading().addPath(strings).build(); } } diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index c9a7ce1ae..0b30e46ec 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -2,6 +2,7 @@ build.number=NA spring.profiles.active=${spring.profiles.active} +spring.main.allow-circular-references=true # Logging logging.level.org.springframework.web=${logging.level.org.springframework.web} From 8b36d13f13bfd4068857aaa8c35049bda35883c5 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Thu, 23 May 2024 15:09:08 -0400 Subject: [PATCH 042/141] updates for MDACA Migration to SB 3 --- pom.xml | 32 ++- .../org/ohdsi/webapi/DataAccessConfig.java | 3 +- src/main/java/org/ohdsi/webapi/JobConfig.java | 247 ++++++------------ 3 files changed, 110 insertions(+), 172 deletions(-) diff --git a/pom.xml b/pom.xml index db2d0fd9b..fe2c3a857 100644 --- a/pom.xml +++ b/pom.xml @@ -17,7 +17,7 @@ 4.2.0 2.2.1 5.5.0 - 6.1.6.Final + 8.0.1.Final 42.3.7 1.69 2.0.0 @@ -29,7 +29,7 @@ 1.5 1.11.2 - 2.14 + 2.35 1.16.1 3.1.2 6.0.2 @@ -731,7 +731,7 @@ org.hibernate hibernate-validator - 5.4.2.Final + ${hibernate.version} jakarta.servlet @@ -1207,6 +1207,32 @@ + + org.glassfish + jakarta.el + 3.0.3 + + + org.glassfish.jersey.core + jersey-server + + + org.glassfish.jersey.ext + jersey-bean-validation + + + + + org.glassfish.jersey.containers + jersey-container-servlet + + + + + org.glassfish.jersey.inject + jersey-hk2 + + org.glassfish.jersey.media jersey-media-multipart diff --git a/src/main/java/org/ohdsi/webapi/DataAccessConfig.java b/src/main/java/org/ohdsi/webapi/DataAccessConfig.java index 4813a73b5..ac40318c0 100644 --- a/src/main/java/org/ohdsi/webapi/DataAccessConfig.java +++ b/src/main/java/org/ohdsi/webapi/DataAccessConfig.java @@ -130,13 +130,14 @@ public LocalContainerEntityManagerFactoryBean entityManagerFactory(DataSource da } @Primary - @Bean(name = "transactionManager") + @Bean public PlatformTransactionManager jpaTransactionManager(EntityManagerFactory entityManagerFactory) { JpaTransactionManager txManager = new JpaTransactionManager(); txManager.setEntityManagerFactory(entityManagerFactory); return txManager; } + @Primary @Bean public TransactionTemplate transactionTemplate(PlatformTransactionManager transactionManager) { TransactionTemplate transactionTemplate = new TransactionTemplate(); diff --git a/src/main/java/org/ohdsi/webapi/JobConfig.java b/src/main/java/org/ohdsi/webapi/JobConfig.java index bfb0c2fae..6e20578a3 100644 --- a/src/main/java/org/ohdsi/webapi/JobConfig.java +++ b/src/main/java/org/ohdsi/webapi/JobConfig.java @@ -8,13 +8,14 @@ import org.ohdsi.webapi.common.generation.AutoremoveJobListener; import org.ohdsi.webapi.common.generation.CancelJobListener; import org.ohdsi.webapi.job.JobTemplate; -import org.ohdsi.webapi.service.JobService; import org.ohdsi.webapi.shiro.management.Security; import org.ohdsi.webapi.util.ManagedThreadPoolTaskExecutor; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.springframework.batch.admin.service.*; -import org.springframework.batch.core.configuration.BatchConfigurationException; +import org.springframework.batch.admin.service.JdbcSearchableJobExecutionDao; +import org.springframework.batch.admin.service.JdbcSearchableJobInstanceDao; +import org.springframework.batch.admin.service.SearchableJobExecutionDao; +import org.springframework.batch.admin.service.SearchableJobInstanceDao; import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing; import org.springframework.batch.core.configuration.annotation.JobBuilderFactory; import org.springframework.batch.core.configuration.annotation.StepBuilderFactory; @@ -38,20 +39,16 @@ import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; import org.springframework.transaction.PlatformTransactionManager; -/** - * Had to copy DefaultBatchConfigurer and include within because jobLauncher config is private. - * https://github.com/spring-projects/spring-boot/issues/1655 - */ @Configuration @EnableBatchProcessing -@DependsOn({"batchDatabaseInitializer"}) -public class JobConfig { - - private static final Logger log = LoggerFactory.getLogger(CustomBatchConfigurer.class); - +//@DependsOn({"batchDatabaseInitializer"}) +public class JobConfig extends DefaultBatchConfiguration { + + private static final Logger log = LoggerFactory.getLogger(JobConfig.class); + @Value("${spring.batch.repository.tableprefix}") private String tablePrefix; - + @Value("${spring.batch.repository.isolationLevelForCreate}") private String isolationLevelForCreate; @@ -69,9 +66,10 @@ public class JobConfig { @Value("${spring.batch.taskExecutor.threadNamePrefix}") private String threadNamePrefix; - + @Autowired private DataSource dataSource; + @Autowired private AuditTrailJobListener auditTrailJobListener; @@ -97,13 +95,70 @@ TaskExecutor taskExecutor() { } @Bean - DefaultBatchConfiguration batchConfigurer() { - return new CustomBatchConfigurer(this.dataSource); + public PlatformTransactionManager transactionManager() { + return new ResourcelessTransactionManager(); + } + + @Bean + public JobRepository jobRepository() { + JobRepositoryFactoryBean factory = new JobRepositoryFactoryBean(); + factory.setDataSource(dataSource); + factory.setIsolationLevelForCreate(isolationLevelForCreate); + factory.setTablePrefix(tablePrefix); + factory.setTransactionManager(new ResourcelessTransactionManager()); + factory.setValidateTransactionState(false); + try { + factory.afterPropertiesSet(); + } catch (Exception e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + try { + return factory.getObject(); + } catch (Exception e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + return null; + } + + @Bean + public JobLauncher jobLauncher() { + SimpleJobLauncher jobLauncher = new SimpleJobLauncher(); + jobLauncher.setJobRepository(jobRepository()); + jobLauncher.setTaskExecutor(taskExecutor()); + try { + jobLauncher.afterPropertiesSet(); + } catch (Exception e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + return jobLauncher; + } + + @Bean + public JobExplorer jobExplorer() { + JobExplorerFactoryBean jobExplorerFactoryBean = new JobExplorerFactoryBean(); + jobExplorerFactoryBean.setDataSource(dataSource); + jobExplorerFactoryBean.setTablePrefix(tablePrefix); + try { + jobExplorerFactoryBean.afterPropertiesSet(); + } catch (Exception e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + try { + return jobExplorerFactoryBean.getObject(); + } catch (Exception e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + return null; } @Bean JobTemplate jobTemplate(final JobLauncher jobLauncher, final JobBuilderFactory jobBuilders, - final StepBuilderFactory stepBuilders, final Security security) { + final StepBuilderFactory stepBuilders, final Security security) { return new JobTemplate(jobLauncher, jobBuilders, stepBuilders, security); } @@ -111,22 +166,22 @@ JobTemplate jobTemplate(final JobLauncher jobLauncher, final JobBuilderFactory j SearchableJobExecutionDao searchableJobExecutionDao(DataSource dataSource) { JdbcSearchableJobExecutionDao dao = new JdbcSearchableJobExecutionDao(); dao.setDataSource(dataSource); - dao.setTablePrefix(JobConfig.this.tablePrefix); + dao.setTablePrefix(this.tablePrefix); return dao; } @Bean SearchableJobInstanceDao searchableJobInstanceDao(JdbcTemplate jdbcTemplate) { JdbcSearchableJobInstanceDao dao = new JdbcSearchableJobInstanceDao(); - dao.setJdbcTemplate(jdbcTemplate);//no setDataSource as in SearchableJobExecutionDao - dao.setTablePrefix(JobConfig.this.tablePrefix); + dao.setJdbcTemplate(jdbcTemplate); + dao.setTablePrefix(this.tablePrefix); return dao; } + @Primary @Bean JobBuilderFactory jobBuilders(JobRepository jobRepository) { - return new JobBuilderFactory(jobRepository) { @Override public JobBuilder get(String name) { @@ -137,152 +192,8 @@ public JobBuilder get(String name) { }; } - class CustomBatchConfigurer extends DefaultBatchConfiguration { - - private DataSource dataSource; - - private PlatformTransactionManager transactionManager; - - private JobRepository jobRepository; - - private JobLauncher jobLauncher; - - private JobExplorer jobExplorer; - - @Autowired - public void setDataSource(final DataSource dataSource) { - this.dataSource = dataSource; - // this.transactionManager = new DataSourceTransactionManager(dataSource); - } - - @Autowired - public void setTransactionManager(final PlatformTransactionManager transactionManager) { - this.transactionManager = transactionManager; - } - - protected CustomBatchConfigurer() { - } - - public CustomBatchConfigurer(final DataSource dataSource) { - setDataSource(dataSource); - } - - //@Override - public JobRepository getJobRepository() { - return this.jobRepository; - } - - @Override - public PlatformTransactionManager getTransactionManager() { - return this.transactionManager; - } - - //@Override - public JobLauncher getJobLauncher() { - return this.jobLauncher; - } - - //@Override - public JobExplorer getJobExplorer() { - return this.jobExplorer; - } - /* - @PostConstruct - public void initialize() { - try { - if (this.dataSource == null) { - log.warn("No datasource was provided...using a Map based JobRepository"); - - if (this.transactionManager == null) { - this.transactionManager = new ResourcelessTransactionManager(); - } - - final MapJobRepositoryFactoryBean jobRepositoryFactory = new MapJobRepositoryFactoryBean( - this.transactionManager); - jobRepositoryFactory.afterPropertiesSet(); - this.jobRepository = jobRepositoryFactory.getObject(); - - final MapJobExplorerFactoryBean jobExplorerFactory = new MapJobExplorerFactoryBean(jobRepositoryFactory); - jobExplorerFactory.afterPropertiesSet(); - this.jobExplorer = jobExplorerFactory.getObject(); - } else { - this.jobRepository = createJobRepository(); - - final JobExplorerFactoryBean jobExplorerFactoryBean = new JobExplorerFactoryBean(); - jobExplorerFactoryBean.setDataSource(this.dataSource); - jobExplorerFactoryBean.setTablePrefix(JobConfig.this.tablePrefix); - jobExplorerFactoryBean.afterPropertiesSet(); - this.jobExplorer = jobExplorerFactoryBean.getObject(); - } - - this.jobLauncher = createJobLauncher(); - } catch (final Exception e) { - throw new BatchConfigurationException(e); - } - } - */ - private JobLauncher createJobLauncher() throws Exception { - final SimpleJobLauncher jobLauncher = new SimpleJobLauncher(); - //async TODO - jobLauncher.setTaskExecutor(taskExecutor()); - jobLauncher.setJobRepository(this.jobRepository); - jobLauncher.afterPropertiesSet(); - return jobLauncher; - } - - protected JobRepository createJobRepository() throws Exception { - final JobRepositoryFactoryBean factory = new JobRepositoryFactoryBean(); - factory.setDataSource(this.dataSource); - //prevent ISOLATION_DEFAULT setting for oracle (i.e. SERIALIZABLE) - //ISOLATION_REPEATABLE_READ throws READ_COMMITTED and SERIALIZABLE are the only valid transaction levels - factory.setIsolationLevelForCreate(JobConfig.this.isolationLevelForCreate); - factory.setTablePrefix(JobConfig.this.tablePrefix); - factory.setTransactionManager(getTransactionManager()); - factory.setValidateTransactionState(false); - factory.afterPropertiesSet(); - return factory.getObject(); - } - } -} - -/*extends DefaultBatchConfigurer { - - private static final Log log = LogFactory.getLog(BatchConfig.class); - - @Autowired - private JobBuilderFactory jobBuilders; - - @Autowired - private StepBuilderFactory stepBuilders; - - @Autowired - private DataSource dataSource; - - @Value("${spring.batch.repository.tableprefix}") - private String tablePrefix; - - @Bean - public String batchTablePrefix() { - return this.tablePrefix; - } - - @Override - protected JobRepository createJobRepository() throws Exception { - final JobRepositoryFactoryBean factory = new JobRepositoryFactoryBean(); - factory.setDataSource(this.dataSource); - factory.setTablePrefix(this.tablePrefix); - factory.setIsolationLevelForCreate(this.isolationLevel); - factory.setTransactionManager(getTransactionManager()); - factory.afterPropertiesSet(); - return factory.getObject(); - } - @Bean - public TaskExecutor taskExecutor() { - final ThreadPoolTaskExecutor taskExecutor = new ThreadPoolTaskExecutor(); - taskExecutor.setMaxPoolSize(2);//TODO - taskExecutor.afterPropertiesSet(); - return taskExecutor; + StepBuilderFactory stepBuilders(JobRepository jobRepository) { + return new StepBuilderFactory(jobRepository); } -} -*/ +} \ No newline at end of file From 678f040b1437185f9b26e1128bf6f5056f2afe0c Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 24 May 2024 14:32:35 -0400 Subject: [PATCH 043/141] docker workaround to upload to harbor --- Dockerfile-harbor-workaround | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Dockerfile-harbor-workaround diff --git a/Dockerfile-harbor-workaround b/Dockerfile-harbor-workaround new file mode 100644 index 000000000..92fdd4fef --- /dev/null +++ b/Dockerfile-harbor-workaround @@ -0,0 +1,4 @@ +FROM mip-sf-harbor.med.osd.ds/mip-sf/alpine:3.19.1 + +COPY WebAPI.war /opt + From 404676a377faa879535b4ed8d0b6614ec3b258a5 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Sun, 16 Jun 2024 09:58:48 -0400 Subject: [PATCH 044/141] Updated paging for MDACA Upgrade to SB 3 --- pom.xml | 11 ++++++--- .../java/org/ohdsi/webapi/Pagination.java | 11 --------- .../cohortcharacterization/CcController.java | 23 ++++++++++++++++--- .../feanalysis/FeAnalysisController.java | 14 +++++++++-- .../webapi/pathway/PathwayController.java | 14 +++++++++-- .../prediction/PredictionServiceImpl.java | 4 ++-- .../webapi/reusable/ReusableController.java | 14 +++++++++-- .../service/CohortGenerationService.java | 1 + 8 files changed, 67 insertions(+), 25 deletions(-) delete mode 100644 src/main/java/org/ohdsi/webapi/Pagination.java diff --git a/pom.xml b/pom.xml index fe2c3a857..431e70519 100644 --- a/pom.xml +++ b/pom.xml @@ -836,6 +836,11 @@ jar + + com.amazon.redshift + redshift-jdbc42 + 2.1.0.29 + com.microsoft.sqlserver mssql-jdbc @@ -1924,19 +1929,19 @@ com.amazonaws aws-java-sdk-core - 1.11.118 + 2.1.0.28 com.amazonaws aws-java-sdk-redshift - 1.11.118 + 2.1.0.28 com.amazonaws aws-java-sdk-sts - 1.11.118 + 2.1.0.28 diff --git a/src/main/java/org/ohdsi/webapi/Pagination.java b/src/main/java/org/ohdsi/webapi/Pagination.java deleted file mode 100644 index 21c01328c..000000000 --- a/src/main/java/org/ohdsi/webapi/Pagination.java +++ /dev/null @@ -1,11 +0,0 @@ -package org.ohdsi.webapi; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -@Target(ElementType.PARAMETER) -@Retention(RetentionPolicy.RUNTIME) -public @interface Pagination { -} \ No newline at end of file diff --git a/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcController.java b/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcController.java index 9d966f01b..a4ac3edf0 100644 --- a/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcController.java +++ b/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcController.java @@ -9,7 +9,6 @@ import org.ohdsi.analysis.cohortcharacterization.design.StandardFeatureAnalysisType; import org.ohdsi.featureExtraction.FeatureExtraction; import org.ohdsi.webapi.Constants; -import org.ohdsi.webapi.Pagination; import org.ohdsi.webapi.check.CheckResult; import org.ohdsi.webapi.check.checker.characterization.CharacterizationChecker; import org.ohdsi.webapi.cohortcharacterization.domain.CcGenerationEntity; @@ -43,6 +42,7 @@ import org.springframework.core.convert.ConversionService; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageImpl; +import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Controller; import org.springframework.transaction.annotation.Transactional; @@ -60,8 +60,11 @@ import jakarta.ws.rs.PathParam; import jakarta.ws.rs.Produces; import jakarta.ws.rs.QueryParam; +import jakarta.ws.rs.core.Context; import jakarta.ws.rs.core.MediaType; import jakarta.ws.rs.core.Response; +import jakarta.ws.rs.core.UriInfo; + import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.StringWriter; @@ -153,7 +156,14 @@ public CohortCharacterizationDTO copy(@PathParam("id") final Long id) { @Path("/") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON) - public Page list(@Pagination Pageable pageable) { + public Page list(@Context UriInfo uriInfo) { + + var queryParams = uriInfo.getQueryParameters(); + int page = queryParams.containsKey("page") ? Integer.parseInt(queryParams.get("page").get(0)) : 0; + int size = queryParams.containsKey("size") ? Integer.parseInt(queryParams.get("size").get(0)) : 10; + + Pageable pageable = PageRequest.of(page, size); + return service.getPage(pageable).map(entity -> { CcShortDTO dto = convertCcToShortDto(entity); permissionService.fillWriteAccess(entity, dto); @@ -171,7 +181,14 @@ public Page list(@Pagination Pageable pageable) { @Path("/design") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON) - public Page listDesign(@Pagination Pageable pageable) { + public Page listDesign(@Context UriInfo uriInfo) { + + var queryParams = uriInfo.getQueryParameters(); + int page = queryParams.containsKey("page") ? Integer.parseInt(queryParams.get("page").get(0)) : 0; + int size = queryParams.containsKey("size") ? Integer.parseInt(queryParams.get("size").get(0)) : 10; + + Pageable pageable = PageRequest.of(page, size); + return service.getPageWithLinkedEntities(pageable).map(entity -> { CohortCharacterizationDTO dto = convertCcToDto(entity); permissionService.fillWriteAccess(entity, dto); diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisController.java b/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisController.java index e68cc0198..453312495 100644 --- a/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisController.java +++ b/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisController.java @@ -2,7 +2,6 @@ import org.ohdsi.analysis.cohortcharacterization.design.FeatureAnalysis; import org.ohdsi.analysis.cohortcharacterization.design.StandardFeatureAnalysisDomain; -import org.ohdsi.webapi.Pagination; import org.ohdsi.webapi.cohortcharacterization.dto.CcShortDTO; import org.ohdsi.webapi.common.OptionDTO; import org.ohdsi.webapi.conceptset.ConceptSetExport; @@ -16,6 +15,7 @@ import org.ohdsi.webapi.util.NameUtils; import org.springframework.core.convert.ConversionService; import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Controller; import org.springframework.transaction.annotation.Transactional; @@ -32,8 +32,11 @@ import jakarta.ws.rs.PathParam; import jakarta.ws.rs.Produces; import jakarta.ws.rs.QueryParam; +import jakarta.ws.rs.core.Context; import jakarta.ws.rs.core.MediaType; import jakarta.ws.rs.core.Response; +import jakarta.ws.rs.core.UriInfo; + import java.io.ByteArrayOutputStream; import java.util.ArrayList; import java.util.List; @@ -66,7 +69,14 @@ public class FeAnalysisController { @Path("/") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON) - public Page list(@Pagination Pageable pageable) { + public Page list(@Context UriInfo uriInfo) { + + var queryParams = uriInfo.getQueryParameters(); + int page = queryParams.containsKey("page") ? Integer.parseInt(queryParams.get("page").get(0)) : 0; + int size = queryParams.containsKey("size") ? Integer.parseInt(queryParams.get("size").get(0)) : 10; + + Pageable pageable = PageRequest.of(page, size); + return service.getPage(pageable).map(entity -> { FeAnalysisShortDTO dto = convertFeAnaysisToShortDto(entity); permissionService.fillWriteAccess(entity, dto); diff --git a/src/main/java/org/ohdsi/webapi/pathway/PathwayController.java b/src/main/java/org/ohdsi/webapi/pathway/PathwayController.java index 544acc844..9170d64ee 100644 --- a/src/main/java/org/ohdsi/webapi/pathway/PathwayController.java +++ b/src/main/java/org/ohdsi/webapi/pathway/PathwayController.java @@ -2,7 +2,6 @@ import com.odysseusinc.arachne.commons.utils.ConverterUtils; import org.ohdsi.webapi.Constants; -import org.ohdsi.webapi.Pagination; import org.ohdsi.webapi.check.CheckResult; import org.ohdsi.webapi.check.checker.pathway.PathwayChecker; import org.ohdsi.webapi.common.SourceMapKey; @@ -28,13 +27,17 @@ import org.springframework.core.convert.ConversionService; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageImpl; +import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestBody; import jakarta.transaction.Transactional; import jakarta.ws.rs.*; +import jakarta.ws.rs.core.Context; import jakarta.ws.rs.core.MediaType; +import jakarta.ws.rs.core.UriInfo; + import java.util.ArrayList; import java.util.Collections; import java.util.List; @@ -156,7 +159,14 @@ public PathwayAnalysisDTO importAnalysis(final PathwayAnalysisExportDTO dto) { @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON) @Transactional - public Page list(@Pagination Pageable pageable) { + public Page list(@Context UriInfo uriInfo) { + + var queryParams = uriInfo.getQueryParameters(); + int page = queryParams.containsKey("page") ? Integer.parseInt(queryParams.get("page").get(0)) : 0; + int size = queryParams.containsKey("size") ? Integer.parseInt(queryParams.get("size").get(0)) : 10; + + Pageable pageable = PageRequest.of(page, size); + return pathwayService.getPage(pageable).map(pa -> { PathwayAnalysisDTO dto = conversionService.convert(pa, PathwayAnalysisDTO.class); permissionService.fillWriteAccess(pa, dto); diff --git a/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java b/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java index 9b28a69f3..501614285 100644 --- a/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/prediction/PredictionServiceImpl.java @@ -64,8 +64,8 @@ public class PredictionServiceImpl extends AnalysisExecutionSupport implements P private static final EntityGraph DEFAULT_ENTITY_GRAPH = DynamicEntityGraph.loading().addPath("source", "analysisExecution.resultFiles").build(); private final EntityGraph COMMONS_ENTITY_GRAPH = DynamicEntityGraph.loading().addPath( - "createdBy", - "modifiedBy" + "createdBy"//, + //"modifiedBy" ).build(); @Autowired diff --git a/src/main/java/org/ohdsi/webapi/reusable/ReusableController.java b/src/main/java/org/ohdsi/webapi/reusable/ReusableController.java index e4062e81d..6070366b2 100644 --- a/src/main/java/org/ohdsi/webapi/reusable/ReusableController.java +++ b/src/main/java/org/ohdsi/webapi/reusable/ReusableController.java @@ -1,6 +1,5 @@ package org.ohdsi.webapi.reusable; -import org.ohdsi.webapi.Pagination; import org.ohdsi.webapi.reusable.dto.ReusableDTO; import org.ohdsi.webapi.reusable.dto.ReusableVersionFullDTO; import org.ohdsi.webapi.tag.dto.TagNameListRequestDTO; @@ -8,6 +7,7 @@ import org.ohdsi.webapi.versioning.dto.VersionUpdateDTO; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; +import org.springframework.data.domain.PageRequest; import org.springframework.stereotype.Controller; import jakarta.ws.rs.Consumes; @@ -20,7 +20,10 @@ import jakarta.ws.rs.PathParam; import jakarta.ws.rs.Produces; import jakarta.ws.rs.QueryParam; +import jakarta.ws.rs.core.Context; import jakarta.ws.rs.core.MediaType; +import jakarta.ws.rs.core.UriInfo; + import java.util.Collections; import java.util.List; @@ -44,7 +47,14 @@ public ReusableDTO create(final ReusableDTO dto) { @GET @Path("/") @Produces(MediaType.APPLICATION_JSON) - public Page page(@Pagination Pageable pageable) { + public Page page(@Context UriInfo uriInfo) { + + var queryParams = uriInfo.getQueryParameters(); + int page = queryParams.containsKey("page") ? Integer.parseInt(queryParams.get("page").get(0)) : 0; + int size = queryParams.containsKey("size") ? Integer.parseInt(queryParams.get("size").get(0)) : 10; + + Pageable pageable = PageRequest.of(page, size); + return reusableService.page(pageable); } diff --git a/src/main/java/org/ohdsi/webapi/service/CohortGenerationService.java b/src/main/java/org/ohdsi/webapi/service/CohortGenerationService.java index 4a2d29d41..5850cdb77 100644 --- a/src/main/java/org/ohdsi/webapi/service/CohortGenerationService.java +++ b/src/main/java/org/ohdsi/webapi/service/CohortGenerationService.java @@ -108,6 +108,7 @@ private Job buildGenerateCohortJob(CohortDefinition cohortDefinition, Source sou Step generateCohortStep = stepBuilders.get("cohortDefinition.generateCohort") .tasklet(generateTasklet) + .transactionManager(getTransactionTemplate().getTransactionManager()) .exceptionHandler(exceptionHandler) .build(); From add64191ebc23e6f5a99866bde741d911a6240c9 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 17 Jun 2024 16:07:04 -0400 Subject: [PATCH 045/141] security scan 2 dependency chnages --- pom.xml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index fe2c3a857..ea4cd2fd4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 8.0.1.Final 42.3.7 1.69 - 2.0.0 + 2.0.1 2.1.3 0.4.0 3.2.0 @@ -820,6 +820,10 @@ log4j log4j + + commons-collections + commons-collections + @@ -1344,7 +1348,7 @@ com.opentable.components otj-pg-embedded - 0.13.1 + 1.0.3 test From 3ec1e031f7d11e5102dce5e8e9e05039f4a3eefe Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Fri, 21 Jun 2024 15:09:19 -0400 Subject: [PATCH 046/141] additional changes for MDACA migration to SB 3, shiro and pac4j changes --- pom.xml | 50 +++++++++++++++---- sample_settings.xml | 18 +++---- src/main/java/org/ohdsi/webapi/JobConfig.java | 1 + .../org/ohdsi/webapi/OidcConfCreator.java | 8 ++- .../achilles/aspect/AchillesCacheAspect.java | 6 +++ .../common/generation/GenerationUtils.java | 6 +++ .../estimation/EstimationServiceImpl.java | 6 ++- .../generationcache/CleanupScheduler.java | 2 +- .../webapi/pathway/PathwayServiceImpl.java | 7 +-- .../ohdsi/webapi/shiro/PermissionManager.java | 6 +++ .../webapi/shiro/filters/CasHandleFilter.java | 8 +-- .../filters/UpdateAccessTokenFilter.java | 35 +++++++++---- .../shiro/filters/auth/SamlHandleFilter.java | 8 +-- .../management/AtlasRegularSecurity.java | 13 +++-- .../webapi/shiro/realms/JwtAuthRealm.java | 2 +- src/main/resources/application.properties | 22 ++++---- src/main/resources/log4j2.xml | 4 ++ 17 files changed, 138 insertions(+), 64 deletions(-) diff --git a/pom.xml b/pom.xml index 431e70519..46295896d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 8.0.1.Final 42.3.7 1.69 - 2.0.0 + 2.0.1 2.1.3 0.4.0 3.2.0 @@ -32,7 +32,7 @@ 2.35 1.16.1 3.1.2 - 6.0.2 + 6.0.3 2.14.3 org.ohdsi.webapi.WebApi false @@ -738,6 +738,12 @@ jakarta.servlet-api provided + + javax.servlet + javax.servlet-api + 4.0.1 + provided + org.ohdsi.sql SqlRender @@ -773,6 +779,16 @@ + + com.nimbusds + oauth2-oidc-sdk + 11.12 + + + com.nimbusds + nimbus-jose-jwt + 9.40 + net.minidev json-smart @@ -997,21 +1013,27 @@ io.buji buji-pac4j - 8.1.0 + 9.0.1 - - org.pac4j jakartaee-pac4j 8.0.1 + + + org.pac4j + pac4j-jakartaee + ${pac4j.version} + + + com.fasterxml.jackson.core + jackson-databind + + + org.pac4j pac4j-core @@ -1238,6 +1260,16 @@ jersey-hk2 + + javax.xml.bind + jaxb-api + 2.3.1 + + + org.glassfish.jaxb + jaxb-runtime + + org.glassfish.jersey.media jersey-media-multipart diff --git a/sample_settings.xml b/sample_settings.xml index 671925135..1a43cabe1 100644 --- a/sample_settings.xml +++ b/sample_settings.xml @@ -8,7 +8,7 @@ webapi-postgresql - 8080 + 8443 org.postgresql.Driver jdbc:postgresql://localhost:5432/ohdsi?currentSchema=webapi ohdsi_app_user @@ -20,23 +20,23 @@ ohdsi_admin_user !PASSWORD! classpath:db/migration/postgresql - DisabledSecurity + AtlasRegularSecurity 43200 * - false + true true - http://localhost/Atlas/#/welcome - http://localhost:8080/WebAPI/user/oauth/callback + https://localhost:8443/Atlas/#/welcome + https://localhost:8443/WebAPI/user/oauth/callback - - - - http://localhost/index.html#/welcome/ + ohdsi-webapi + QUjn8LJjhTSATmFHVwsKo3m2zD1mdcOR + http://localhost:8082/realms/MDACA/.well-known/openid-configuration + https://localhost:8443/Atlas/#/welcome/null/ cn={0},dc=example,dc=org ldap://localhost:389 diff --git a/src/main/java/org/ohdsi/webapi/JobConfig.java b/src/main/java/org/ohdsi/webapi/JobConfig.java index 6e20578a3..c974d1eca 100644 --- a/src/main/java/org/ohdsi/webapi/JobConfig.java +++ b/src/main/java/org/ohdsi/webapi/JobConfig.java @@ -141,6 +141,7 @@ public JobExplorer jobExplorer() { JobExplorerFactoryBean jobExplorerFactoryBean = new JobExplorerFactoryBean(); jobExplorerFactoryBean.setDataSource(dataSource); jobExplorerFactoryBean.setTablePrefix(tablePrefix); + jobExplorerFactoryBean.setTransactionManager(getTransactionManager()); try { jobExplorerFactoryBean.afterPropertiesSet(); } catch (Exception e) { diff --git a/src/main/java/org/ohdsi/webapi/OidcConfCreator.java b/src/main/java/org/ohdsi/webapi/OidcConfCreator.java index 16003b204..6b60e3416 100644 --- a/src/main/java/org/ohdsi/webapi/OidcConfCreator.java +++ b/src/main/java/org/ohdsi/webapi/OidcConfCreator.java @@ -19,7 +19,11 @@ package org.ohdsi.webapi; import com.nimbusds.jose.JWSAlgorithm; +import com.nimbusds.oauth2.sdk.auth.ClientAuthenticationMethod; + import org.pac4j.oidc.config.OidcConfiguration; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; @@ -55,11 +59,13 @@ public OidcConfiguration build() { OidcConfiguration conf = new OidcConfiguration(); conf.setClientId(clientId); conf.setSecret(apiSecret); + conf.setDiscoveryURI(url); conf.setLogoutUrl(logoutUrl); conf.setWithState(true); conf.setUseNonce(true); - + conf.setClientAuthenticationMethod(ClientAuthenticationMethod.CLIENT_SECRET_BASIC); + if (customParams != null) { customParams.forEach(conf::addCustomParam); } diff --git a/src/main/java/org/ohdsi/webapi/achilles/aspect/AchillesCacheAspect.java b/src/main/java/org/ohdsi/webapi/achilles/aspect/AchillesCacheAspect.java index 5a4c18fd3..ea89aeb9c 100644 --- a/src/main/java/org/ohdsi/webapi/achilles/aspect/AchillesCacheAspect.java +++ b/src/main/java/org/ohdsi/webapi/achilles/aspect/AchillesCacheAspect.java @@ -19,6 +19,7 @@ import org.springframework.stereotype.Component; import java.lang.reflect.Method; +import java.util.HashMap; import java.util.Map; import java.util.Objects; import java.util.stream.Collectors; @@ -99,6 +100,11 @@ private String getCacheName(JoinPoint joinPoint) { private Map getParams(JoinPoint joinPoint) { String[] names = ((MethodSignature) joinPoint.getSignature()).getParameterNames(); Object[] objects = joinPoint.getArgs(); + + if(names == null) { + return new HashMap(); + } + return IntStream.range(0, names.length) .boxed() .collect(Collectors.toMap(i -> names[i], diff --git a/src/main/java/org/ohdsi/webapi/common/generation/GenerationUtils.java b/src/main/java/org/ohdsi/webapi/common/generation/GenerationUtils.java index 4fcd0850c..37270b78e 100644 --- a/src/main/java/org/ohdsi/webapi/common/generation/GenerationUtils.java +++ b/src/main/java/org/ohdsi/webapi/common/generation/GenerationUtils.java @@ -114,6 +114,7 @@ public SimpleJobBuilder buildJobForCohortBasedAnalysisTasklet( CreateCohortTableTasklet createCohortTableTasklet = new CreateCohortTableTasklet(jdbcTemplate, transactionTemplate, sourceService, sourceAwareSqlRender); Step createCohortTableStep = stepBuilderFactory.get(analysisTypeName + ".createCohortTable") .tasklet(createCohortTableTasklet) + .transactionManager(transactionTemplate.getTransactionManager()) .build(); GenerateLocalCohortTasklet generateLocalCohortTasklet = new GenerateLocalCohortTasklet( @@ -127,11 +128,13 @@ public SimpleJobBuilder buildJobForCohortBasedAnalysisTasklet( ); Step generateLocalCohortStep = stepBuilderFactory.get(analysisTypeName + ".generateCohort") .tasklet(generateLocalCohortTasklet) + .transactionManager(transactionTemplate.getTransactionManager()) .build(); Step generateAnalysisStep = stepBuilderFactory.get(analysisTypeName + ".generate") .tasklet(analysisTasklet) .exceptionHandler(exceptionHandler) + .transactionManager(transactionTemplate.getTransactionManager()) .build(); DropCohortTableListener dropCohortTableListener = new DropCohortTableListener(jdbcTemplate, transactionTemplate, sourceService, sourceAwareSqlRender); @@ -165,14 +168,17 @@ public SimpleJobBuilder buildJobForExecutionEngineBasedAnalysisTasklet(String an Step createAnalysisExecutionStep = stepBuilderFactory.get(analysisTypeName + ".createAnalysisExecution") .tasklet(createAnalysisTasklet) + .transactionManager(transactionTemplate.getTransactionManager()) .build(); Step runExecutionStep = stepBuilderFactory.get(analysisTypeName + ".startExecutionEngine") .tasklet(runExecutionEngineTasklet) + .transactionManager(transactionTemplate.getTransactionManager()) .build(); Step waitCallbackStep = stepBuilderFactory.get(analysisTypeName + ".waitForCallback") .tasklet(callbackTasklet) + .transactionManager(transactionTemplate.getTransactionManager()) .build(); DropCohortTableListener dropCohortTableListener = new DropCohortTableListener(getSourceJdbcTemplate(source), diff --git a/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java b/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java index cc68fdecb..c4de729a4 100644 --- a/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/estimation/EstimationServiceImpl.java @@ -90,10 +90,12 @@ public class EstimationServiceImpl extends AnalysisExecutionSupport implements E private final String EXEC_SCRIPT = ResourceHelper.GetResourceAsString("/resources/estimation/r/runAnalysis.R"); - private final EntityGraph DEFAULT_ENTITY_GRAPH = DynamicEntityGraph.loading().addPath("source", "analysisExecution.resultFiles").build(); + private final EntityGraph DEFAULT_ENTITY_GRAPH = DynamicEntityGraph.loading().addPath("source").addPath("analysisExecution.resultFiles").build(); private final EntityGraph COMMONS_ENTITY_GRAPH = DynamicEntityGraph.loading().addPath( - "createdBy", + "createdBy"//, + //"modifiedBy" + ).addPath( "modifiedBy" ).build(); diff --git a/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java b/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java index 0b58694ab..c2ae4ceab 100644 --- a/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java +++ b/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java @@ -30,7 +30,7 @@ public void removeOldCache() { List caches = generationCacheRepository.findAllByCreatedDateBefore( DateUtils.addDays(new Date(), -1 * invalidateAfterDays), - DynamicEntityGraph.loading().addPath("source", "source.daimons").build() + DynamicEntityGraph.loading().addPath("source").addPath("source.daimons").build() ); caches.forEach(gc -> generationCacheService.removeCache(gc.getType(), gc.getSource(), gc.getDesignHash())); } diff --git a/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java b/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java index cef7aee2f..58d08c0d4 100644 --- a/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java @@ -129,11 +129,8 @@ public class PathwayServiceImpl extends AbstractDaoService implements PathwaySer private final List STEP_COLUMNS = Arrays.asList(new String[]{"step_1", "step_2", "step_3", "step_4", "step_5", "step_6", "step_7", "step_8", "step_9", "step_10"}); private final EntityGraph defaultEntityGraph = DynamicEntityGraph.loading().addPath( - "targetCohorts.cohortDefinition", - "eventCohorts.cohortDefinition", - "createdBy", - "modifiedBy" - ).build(); + "targetCohorts.cohortDefinition" + ).addPath("eventCohorts.cohortDefinition").addPath("createdBy").addPath("modifiedBy").build(); public PathwayServiceImpl( PathwayAnalysisEntityRepository pathwayAnalysisRepository, diff --git a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java index 16f204b51..b60b9fa0f 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java +++ b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java @@ -19,6 +19,9 @@ import org.ohdsi.webapi.shiro.Entities.UserRepository; import org.ohdsi.webapi.shiro.Entities.UserRoleEntity; import org.ohdsi.webapi.shiro.Entities.UserRoleRepository; +import org.ohdsi.webapi.shiro.management.AtlasRegularSecurity; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationEventPublisher; import org.springframework.stereotype.Component; @@ -39,6 +42,8 @@ @Transactional public class PermissionManager { + private final Logger logger = LoggerFactory.getLogger(PermissionManager.class); + @Autowired private UserRepository userRepository; @@ -303,6 +308,7 @@ public Set getUserPermissions(UserEntity user) { Set permissions = new LinkedHashSet<>(); for (RoleEntity role : roles) { + permissions.addAll(this.getRolePermissions(role)); } diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/CasHandleFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/CasHandleFilter.java index 031f1d85c..87a3ca1df 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/CasHandleFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/CasHandleFilter.java @@ -6,10 +6,10 @@ import org.apache.shiro.authc.AuthenticationToken; import org.apache.shiro.subject.Subject; import org.apache.shiro.web.servlet.ShiroHttpServletRequest; -import org.jasig.cas.client.authentication.AttributePrincipal; -import org.jasig.cas.client.validation.Assertion; -import org.jasig.cas.client.validation.TicketValidationException; -import org.jasig.cas.client.validation.TicketValidator; +import org.apereo.cas.client.authentication.AttributePrincipal; +import org.apereo.cas.client.validation.Assertion; +import org.apereo.cas.client.validation.TicketValidationException; +import org.apereo.cas.client.validation.TicketValidator; import org.pac4j.cas.profile.CasProfile; import org.pac4j.core.profile.CommonProfile; import org.slf4j.Logger; diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java index e010e05a9..3cfaa77ab 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java @@ -31,13 +31,17 @@ import org.ohdsi.webapi.shiro.TokenManager; import org.ohdsi.webapi.util.UserUtils; import org.pac4j.core.profile.CommonProfile; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * * @author gennadiy.anisimov */ public class UpdateAccessTokenFilter extends AdviceFilter { - + + private final Logger logger = LoggerFactory.getLogger(UpdateAccessTokenFilter.class); + private final PermissionManager authorizer; private final int tokenExpirationIntervalInSeconds; private final Set defaultRoles; @@ -56,29 +60,39 @@ public UpdateAccessTokenFilter( @Override protected boolean preHandle(ServletRequest request, ServletResponse response) throws Exception { + logger.info("UpdateAccessTokenFilter -- onPreHandle"); if (!SecurityUtils.getSubject().isAuthenticated()) { + logger.info("UpdateAccessTokenFilter -- SecurityUtils.getSubject().isAuthenticated() == false -- "); WebUtils.toHttp(response).setStatus(HttpServletResponse.SC_UNAUTHORIZED); return false; } - String login; + String login = null; String name = null; String jwt = null; final PrincipalCollection principals = SecurityUtils.getSubject().getPrincipals(); Object principal = principals.getPrimaryPrincipal(); if (principal instanceof Pac4jPrincipal pac4jPrincipal) { - login = (String) pac4jPrincipal.getProfile().getAttribute("email"); - name = (String) pac4jPrincipal.getProfile().getAttribute("display_name"); - + + try { + CommonProfile profile = (CommonProfile)(pac4jPrincipal.getProfile()); + login = profile.getEmail(); + name = profile.getDisplayName(); + } + catch(Exception ex) { + + } /** * for CAS login */ - ShiroHttpServletRequest requestShiro = (ShiroHttpServletRequest) request; - HttpSession shiroSession = requestShiro.getSession(); - if (login == null && shiroSession.getAttribute(CasHandleFilter.CONST_CAS_AUTHN) != null - && ((String) shiroSession.getAttribute(CasHandleFilter.CONST_CAS_AUTHN)).equalsIgnoreCase("true")) { - login = pac4jPrincipal.getProfile().getId(); + if(request instanceof ShiroHttpServletRequest) { + ShiroHttpServletRequest requestShiro = (ShiroHttpServletRequest) request; + HttpSession shiroSession = requestShiro.getSession(); + if (login == null && shiroSession.getAttribute(CasHandleFilter.CONST_CAS_AUTHN) != null + && ((String) shiroSession.getAttribute(CasHandleFilter.CONST_CAS_AUTHN)).equalsIgnoreCase("true")) { + login = pac4jPrincipal.getProfile().getId(); + } } if (login == null) { @@ -96,7 +110,6 @@ protected boolean preHandle(ServletRequest request, ServletResponse response) th httpResponse.sendRedirect(oauthFailURI.toString()); return false; } - CommonProfile profile = (CommonProfile)(pac4jPrincipal.getProfile()); if (Objects.nonNull(profile)) { String clientName = profile.getClientName(); diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java index 7473e2029..c06395056 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java @@ -60,7 +60,7 @@ protected AuthenticationToken createToken(ServletRequest servletRequest, HttpServletRequest httpRequest = (HttpServletRequest) servletRequest; HttpServletResponse httpResponse = (HttpServletResponse) servletResponse; - JEEContext context = new JEEContext(httpRequest, httpResponse); + //JEEContext context = new JEEContext(httpRequest, httpResponse); SessionStore store = (SessionStore) new JEESessionStore(); SAML2Client client; @@ -69,10 +69,10 @@ protected AuthenticationToken createToken(ServletRequest servletRequest, } else { client = saml2Client; } - SAML2Credentials credentials = (SAML2Credentials)client.getCredentials(new CallContext(context, store)).get(); - SAML2Profile samlProfile = (SAML2Profile)client.getUserProfile(new CallContext(context, store), credentials).get(); + //SAML2Credentials credentials = (SAML2Credentials)client.getCredentials(new CallContext(context, store)).get(); + //SAML2Profile samlProfile = (SAML2Profile)client.getUserProfile(new CallContext(context, store), credentials).get(); - token = new JwtAuthToken(samlProfile.getId()); + token = null;//new JwtAuthToken(samlProfile.getId()); } } return token; diff --git a/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java b/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java index 4d7914dc0..1ba01f173 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java +++ b/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java @@ -326,11 +326,11 @@ public Map getFilters() { } if (this.openidAuthEnabled) { - OidcConfiguration configuration = oidcConfCreator.build(); + OidcConfiguration configuration = oidcConfCreator.build(); if (StringUtils.isNotBlank(configuration.getClientId())) { // https://www.pac4j.org/4.0.x/docs/clients/openid-connect.html // OidcClient allows indirect login through UI with code flow - OidcClient oidcClient = new OidcClient(configuration); + OidcClient oidcClient = new OidcClient(configuration); oidcClient.setCallbackUrl(oauthApiCallback); oidcClient.setCallbackUrlResolver(urlResolver); clients.add(oidcClient); @@ -385,7 +385,7 @@ public Map getFilters() { oidcDirectFilter.setClients("HeaderClient"); filters.put(OIDC_DIRECT_AUTH, (Filter) oidcDirectFilter); } - + CallbackFilter callbackFilter = new CallbackFilter(); callbackFilter.setConfig(cfg); filters.put(OAUTH_CALLBACK, (Filter) callbackFilter); @@ -630,9 +630,8 @@ private void setUpCAS(Map filters) { + URLEncoder.encode(casCallbackUrl, StandardCharsets.UTF_8.name()); } casConf.setLoginUrl(casLoginUrlString); - - Cas20ServiceTicketValidator cas20Validator = new Cas20ServiceTicketValidator(casServerUrl); - casConf.setDefaultTicketValidator((TicketValidator) cas20Validator); + org.apereo.cas.client.validation.Cas20ServiceTicketValidator stv = new org.apereo.cas.client.validation.Cas20ServiceTicketValidator(casServerUrl); + casConf.setDefaultTicketValidator(stv); CasClient casClient = new CasClient(casConf); Config casCfg = new Config(new Clients(casCallbackUrl, casClient)); @@ -648,7 +647,7 @@ private void setUpCAS(Map filters) { /** * CAS callback filter */ - CasHandleFilter casHandleFilter = new CasHandleFilter(cas20Validator, casCallbackUrl, casticket); + CasHandleFilter casHandleFilter = new CasHandleFilter(stv, casCallbackUrl, casticket); filters.put(HANDLE_CAS, casHandleFilter); } catch (UnsupportedEncodingException e) { diff --git a/src/main/java/org/ohdsi/webapi/shiro/realms/JwtAuthRealm.java b/src/main/java/org/ohdsi/webapi/shiro/realms/JwtAuthRealm.java index 2c1a4514d..23ddd4cb7 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/realms/JwtAuthRealm.java +++ b/src/main/java/org/ohdsi/webapi/shiro/realms/JwtAuthRealm.java @@ -30,7 +30,7 @@ public boolean supports(AuthenticationToken token) { @Override protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) { - final String login = (String) principals.getPrimaryPrincipal(); + final String login = principals.getPrimaryPrincipal().toString(); return authorizer.getAuthorizationInfo(login); } diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 0b30e46ec..8353ee4b5 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -5,13 +5,15 @@ spring.profiles.active=${spring.profiles.active} spring.main.allow-circular-references=true # Logging -logging.level.org.springframework.web=${logging.level.org.springframework.web} -logging.level.org.hibernate=${logging.level.org.hibernate} -logging.level.root=${logging.level.root} -logging.level.org.ohdsi=${logging.level.org.ohdsi} -logging.level.org.springframework.orm=${logging.level.org.springframework.orm} -logging.level.org.springframework.jdbc=${logging.level.org.springframework.jdbc} -logging.level.org.apache.shiro=${logging.level.org.apache.shiro} +logging.level.org.springframework.web=ERROR +logging.level.org.hibernate=TRACE +logging.level.root=ERROR +logging.level.org.ohdsi=TRACE +logging.level.org.springframework.orm=ERROR +logging.level.org.springframework.jdbc=ERROR +logging.level.org.apache.shiro=TRACE +logging.level.org.pac4j=TRACE +logging.level.io.buji.pac4j=TRACE #Primary DataSource datasource.driverClassName=${datasource.driverClassName} @@ -194,9 +196,9 @@ security.duration.increment=${security.duration.increment} security.auth.windows.enabled=${security.auth.windows.enabled} security.auth.kerberos.enabled=${security.auth.kerberos.enabled} security.auth.openid.enabled=${security.auth.openid.enabled} -security.auth.facebook.enabled=${security.auth.facebook.enabled} -security.auth.github.enabled=${security.auth.github.enabled} -security.auth.google.enabled=${security.auth.google.enabled} +security.auth.facebook.enabled=false +security.auth.github.enabled=false +security.auth.google.enabled=false security.auth.jdbc.enabled=${security.auth.jdbc.enabled} security.auth.ldap.enabled=${security.auth.ldap.enabled} security.auth.ad.enabled=${security.auth.ad.enabled} diff --git a/src/main/resources/log4j2.xml b/src/main/resources/log4j2.xml index 011405298..149d85699 100644 --- a/src/main/resources/log4j2.xml +++ b/src/main/resources/log4j2.xml @@ -9,6 +9,7 @@ ${bundle:application:logging.level.org.springframework.orm} ${bundle:application:logging.level.org.springframework.jdbc} ${bundle:application:logging.level.root} + ${bundle:application:logging.level.io.buji.pac4j} + + + \ No newline at end of file From ceae636d329fa6e229aa71ceae5ed2e675349373 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 24 Jun 2024 08:30:12 -0400 Subject: [PATCH 047/141] Fixed permissionIdx that was removed during upgrade --- .../model/UserSimpleAuthorizationInfo.java | 44 ++++-- .../org/ohdsi/webapi/service/UserService.java | 2 + .../ohdsi/webapi/shiro/PermissionManager.java | 148 +++++++++++++----- 3 files changed, 137 insertions(+), 57 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/security/model/UserSimpleAuthorizationInfo.java b/src/main/java/org/ohdsi/webapi/security/model/UserSimpleAuthorizationInfo.java index e4d09e44a..cdff18552 100644 --- a/src/main/java/org/ohdsi/webapi/security/model/UserSimpleAuthorizationInfo.java +++ b/src/main/java/org/ohdsi/webapi/security/model/UserSimpleAuthorizationInfo.java @@ -1,25 +1,39 @@ package org.ohdsi.webapi.security.model; +import java.util.List; +import java.util.Map; +import org.apache.shiro.authz.Permission; import org.apache.shiro.authz.SimpleAuthorizationInfo; public class UserSimpleAuthorizationInfo extends SimpleAuthorizationInfo { - private Long userId; - private String login; + private Long userId; + private String login; + private Map> permissionIdx; - public Long getUserId() { - return userId; - } + + public Long getUserId() { + return userId; + } - public void setUserId(Long userId) { - this.userId = userId; - } + public void setUserId(Long userId) { + this.userId = userId; + } - public String getLogin() { - return login; - } + public String getLogin() { + return login; + } - public void setLogin(String login) { - this.login = login; - } -} + public void setLogin(String login) { + this.login = login; + } + + public Map> getPermissionIdx() { + return permissionIdx; + } + + public void setPermissionIdx(Map> permissionIdx) { + this.permissionIdx = permissionIdx; + } + +} \ No newline at end of file diff --git a/src/main/java/org/ohdsi/webapi/service/UserService.java b/src/main/java/org/ohdsi/webapi/service/UserService.java index 4d3b7fbbf..6fea8bdf4 100644 --- a/src/main/java/org/ohdsi/webapi/service/UserService.java +++ b/src/main/java/org/ohdsi/webapi/service/UserService.java @@ -50,6 +50,7 @@ public static class User implements Comparable { public String login; public String name; public List permissions; + public Map> permissionIdx; public User() {} @@ -114,6 +115,7 @@ public User getCurrentUser() throws Exception { user.login = currentUser.getLogin(); user.name = currentUser.getName(); user.permissions = convertPermissions(permissions); + user.permissionIdx = authorizer.queryUserPermissions(currentUser.getLogin()).permissions; return user; } diff --git a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java index b60b9fa0f..2dd6fc6a6 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java +++ b/src/main/java/org/ohdsi/webapi/shiro/PermissionManager.java @@ -1,5 +1,6 @@ package org.ohdsi.webapi.shiro; +import com.fasterxml.jackson.databind.ObjectMapper; import com.odysseusinc.logging.event.AddUserEvent; import com.odysseusinc.logging.event.DeleteRoleEvent; import org.apache.shiro.SecurityUtils; @@ -19,20 +20,28 @@ import org.ohdsi.webapi.shiro.Entities.UserRepository; import org.ohdsi.webapi.shiro.Entities.UserRoleEntity; import org.ohdsi.webapi.shiro.Entities.UserRoleRepository; -import org.ohdsi.webapi.shiro.management.AtlasRegularSecurity; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationEventPublisher; import org.springframework.stereotype.Component; import org.springframework.transaction.annotation.Transactional; import java.security.Principal; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.HashSet; import java.util.LinkedHashSet; +import java.util.List; import java.util.Map; import java.util.Optional; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; +import java.util.stream.Collectors; +import org.apache.commons.lang3.StringUtils; +import org.apache.shiro.authz.Permission; +import org.apache.shiro.authz.permission.WildcardPermission; +import org.ohdsi.circe.helper.ResourceHelper; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.jdbc.core.JdbcTemplate; /** * @@ -42,8 +51,9 @@ @Transactional public class PermissionManager { - private final Logger logger = LoggerFactory.getLogger(PermissionManager.class); - + @Value("${datasource.ohdsi.schema}") + private String ohdsiSchema; + @Autowired private UserRepository userRepository; @@ -61,9 +71,17 @@ public class PermissionManager { @Autowired private ApplicationEventPublisher eventPublisher; - + + @Autowired + private JdbcTemplate jdbcTemplate; + private ThreadLocal> authorizationInfoCache = ThreadLocal.withInitial(ConcurrentHashMap::new); + public static class PermissionsDTO { + + public Map> permissions = null; + } + public RoleEntity addRole(String roleName, boolean isSystem) { Guard.checkNotEmpty(roleName); @@ -115,6 +133,12 @@ public Iterable getRoles(boolean includePersonalRoles) { } } + /** + * Return the UserSimpleAuthorizastionInfo which contains the login, roles and permissions for the specified login + * + * @param login The login to fetch the authorization info + * @return A UserSimpleAuthorizationInfo containing roles and permissions. + */ public UserSimpleAuthorizationInfo getAuthorizationInfo(final String login) { return authorizationInfoCache.get().computeIfAbsent(login, newLogin -> { @@ -131,14 +155,21 @@ public UserSimpleAuthorizationInfo getAuthorizationInfo(final String login) { for (UserRoleEntity userRole: userEntity.getUserRoles()) { info.addRole(userRole.getRole().getName()); } - final Set permissionNames = new LinkedHashSet<>(); - final Set permissions = this.getUserPermissions(userEntity); - for (PermissionEntity permission : permissions) { - permissionNames.add(permission.getValue()); + // convert permission index from queryUserPermissions() into a map of WildcardPermissions + Map> permsIdx = this.queryUserPermissions(newLogin).permissions; + Map permissionMap = new HashMap>(); + Set permissionNames = new HashSet<>(); + + for(String permIdxKey : permsIdx.keySet()) { + List perms = permsIdx.get(permIdxKey); + permissionNames.addAll(perms); + // convert raw string permission into Wildcard perm for each element in this key's array. + permissionMap.put(permIdxKey, perms.stream().map(perm -> new WildcardPermission(perm)).collect(Collectors.toList())); } info.setStringPermissions(permissionNames); + info.setPermissionIdx(permissionMap); return info; }); } @@ -171,10 +202,8 @@ public UserEntity registerUser(final String login, final String name, final User return user; } - checkRoleIsAbsent(login, false, """ - User with such login has been improperly removed from the database. \ - Please contact your system administrator\ - """); + checkRoleIsAbsent(login, false, "User with such login has been improperly removed from the database. " + + "Please contact your system administrator"); user = new UserEntity(); user.setLogin(login); user.setName(name); @@ -308,13 +337,56 @@ public Set getUserPermissions(UserEntity user) { Set permissions = new LinkedHashSet<>(); for (RoleEntity role : roles) { - permissions.addAll(this.getRolePermissions(role)); } return permissions; } + + public PermissionsDTO queryUserPermissions(final String login) { + String permQuery = StringUtils.replace( + ResourceHelper.GetResourceAsString("/resources/security/getPermissionsForUser.sql"), + "@ohdsi_schema", + this.ohdsiSchema); + final UserEntity user = userRepository.findByLogin(login); + + List permissions = this.jdbcTemplate.query( + permQuery, + (ps) -> { + ps.setLong(1, user.getId()); + }, + (rs, rowNum) -> { + return rs.getString("value"); + }); + PermissionsDTO permDto = new PermissionsDTO(); + permDto.permissions = permsToMap(permissions); + return permDto; + } + + /** + * This method takes a list of strings and returns a JSObject representing + * the first element of each permission as a key, and the List of + * permissions that start with the key as the value + */ + private Map> permsToMap(List permissions) { + + Map> resultMap = new HashMap<>(); + + // Process each input string + for (String inputString : permissions) { + String[] parts = inputString.split(":"); + String key = parts[0]; + // Create a new JsonArray for the key if it doesn't exist + resultMap.putIfAbsent(key, new ArrayList<>()); + // Add the value to the JsonArray + resultMap.get(key).add(inputString); + } + // Convert the resultMap to a JsonNode + + return resultMap; + } + private Set getRolePermissions(RoleEntity role) { Set permissions = new LinkedHashSet<>(); @@ -359,11 +431,11 @@ public UserEntity getCurrentUser() { } public UserEntity getUserById(Long userId) { - UserEntity user = this.userRepository.findById(userId).get(); - if (user == null) + Optional user = this.userRepository.findById(userId); + if (user == null || user.isEmpty() == true) throw new RuntimeException("User doesn't exist"); - return user; + return user.get(); } private UserEntity getUserByLogin(final String login) { @@ -387,24 +459,19 @@ public RoleEntity getSystemRoleByName(String roleName) { } private RoleEntity getRoleById(Long roleId) { - /* final RoleEntity roleEntity = this.roleRepository.findById(roleId); MDACA Spring Boot 3 migration compilation issue */ - final Optional roleEntity = this.roleRepository.findById(roleId); - /* if (roleEntity == null) MDACA Spring Boot 3 migration compilation issue */ - if (roleEntity.isEmpty()) + final RoleEntity roleEntity = this.roleRepository.findById(roleId).get(); + if (roleEntity == null) throw new RuntimeException("Role doesn't exist"); - /* return roleEntity; MDACA Spring Boot 3 migration compilation issue */ - return roleEntity.get(); + return roleEntity; } private PermissionEntity getPermissionById(Long permissionId) { - /* final PermissionEntity permission = this.permissionRepository.findById(permissionId); MDACA Spring Boot 3 migration compilation issue */ - final Optional permission = this.permissionRepository.findById(permissionId); - /* if (permission == null ) MDACA Spring Boot 3 migration compilation issue */ - if (permission.isEmpty()) + final PermissionEntity permission = this.permissionRepository.findById(permissionId).get(); + if (permission == null ) throw new RuntimeException("Permission doesn't exist"); - return permission.get(); + return permission; } private RolePermissionEntity addPermission(final RoleEntity role, final PermissionEntity permission, final String status) { @@ -421,7 +488,7 @@ private RolePermissionEntity addPermission(final RoleEntity role, final Permissi } private boolean isRelationAllowed(final String relationStatus) { - return relationStatus == null || relationStatus == RequestStatus.APPROVED; + return relationStatus == null || relationStatus.equals(RequestStatus.APPROVED); } private UserRoleEntity addUser(final UserEntity user, final RoleEntity role, @@ -443,10 +510,11 @@ public String getSubjectName() { Subject subject = SecurityUtils.getSubject(); Object principalObject = subject.getPrincipals().getPrimaryPrincipal(); - if (principalObject instanceof String string) - return string; + if (principalObject instanceof String) + return (String)principalObject; - if (principalObject instanceof Principal principal) { + if (principalObject instanceof Principal) { + Principal principal = (Principal)principalObject; return principal.getName(); } @@ -454,11 +522,7 @@ public String getSubjectName() { } public RoleEntity getRole(Long id) { - /* return this.roleRepository.findById(id); MDACA Spring Boot 3 migration compilation issue */ - if (this.roleRepository.findById(id).isPresent()) { - return this.roleRepository.findById(id).get(); - } - return null; + return this.roleRepository.findById(id).get(); } public RoleEntity updateRole(RoleEntity roleEntity) { @@ -467,8 +531,8 @@ public RoleEntity updateRole(RoleEntity roleEntity) { public void addPermissionsFromTemplate(RoleEntity roleEntity, Map template, String value) { for (Map.Entry entry : template.entrySet()) { - String permission = entry.getKey().formatted(value); - String description = entry.getValue().formatted(value); + String permission = String.format(entry.getKey(), value); + String description = String.format(entry.getValue(), value); PermissionEntity permissionEntity = this.getOrAddPermission(permission, description); this.addPermission(roleEntity, permissionEntity); } @@ -481,7 +545,7 @@ public void addPermissionsFromTemplate(Map template, String valu public void removePermissionsFromTemplate(Map template, String value) { for (Map.Entry entry : template.entrySet()) { - String permission = entry.getKey().formatted(value); + String permission = String.format(entry.getKey(), value); this.removePermission(permission); } } @@ -489,4 +553,4 @@ public void removePermissionsFromTemplate(Map template, String v public boolean roleExists(String roleName) { return this.roleRepository.existsByName(roleName); } -} +} \ No newline at end of file From db6812abc04c8d04ba29308649abfe6683fb5ff3 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 24 Jun 2024 15:17:19 -0400 Subject: [PATCH 048/141] Added exlusion to Buji for Pac4j javaee, got it working with tomcat embedded (11), and checked-in script for DB upgrade --- pom.xml | 61 ++++-- .../shiro/filters/auth/SamlHandleFilter.java | 8 +- .../V3.0.0.0__spring_batch_upgrade.sql | 199 ++++++++++++++++++ 3 files changed, 249 insertions(+), 19 deletions(-) create mode 100644 src/main/resources/db/migration/postgresql/V3.0.0.0__spring_batch_upgrade.sql diff --git a/pom.xml b/pom.xml index 9465a9468..50e785c76 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,8 @@ 2.1.3 0.4.0 3.2.0 - + 11.0.0-M21 + 11.0.0-M21 1.5 @@ -568,6 +569,32 @@ pom import + + + org.apache.tomcat.embed + tomcat-embed-core + 11.0.0-M21 + provided + + + org.apache.tomcat.embed + tomcat-embed-websocket + 11.0.0-M21 + provided + + + org.apache.tomcat + tomcat-jdbc + 11.0.0-M21 + provided + + + org.apache.tomcat + tomcat-juli + 11.0.0-M21 + provided + + com.amazon.redshift redshift-jdbc42-no-awssdk @@ -661,11 +688,12 @@ - + org.apache.tomcat.embed tomcat-embed-el ${tomcat.embed.version} - + @@ -678,16 +706,6 @@ org.springframework.boot spring-boot-starter-jdbc - - org.apache.tomcat - tomcat-jdbc - provided - - - org.springframework.boot spring-boot-starter-jersey @@ -736,14 +754,21 @@ jakarta.servlet jakarta.servlet-api + 6.1.0 provided - + + jakarta.platform + jakarta.jakartaee-web-api + 9.1.0 + provided + + org.ohdsi.sql SqlRender @@ -1018,6 +1043,12 @@ io.buji buji-pac4j 9.0.1 + + + org.pac4j + pac4j-javaee + + diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java index c06395056..7473e2029 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/auth/SamlHandleFilter.java @@ -60,7 +60,7 @@ protected AuthenticationToken createToken(ServletRequest servletRequest, HttpServletRequest httpRequest = (HttpServletRequest) servletRequest; HttpServletResponse httpResponse = (HttpServletResponse) servletResponse; - //JEEContext context = new JEEContext(httpRequest, httpResponse); + JEEContext context = new JEEContext(httpRequest, httpResponse); SessionStore store = (SessionStore) new JEESessionStore(); SAML2Client client; @@ -69,10 +69,10 @@ protected AuthenticationToken createToken(ServletRequest servletRequest, } else { client = saml2Client; } - //SAML2Credentials credentials = (SAML2Credentials)client.getCredentials(new CallContext(context, store)).get(); - //SAML2Profile samlProfile = (SAML2Profile)client.getUserProfile(new CallContext(context, store), credentials).get(); + SAML2Credentials credentials = (SAML2Credentials)client.getCredentials(new CallContext(context, store)).get(); + SAML2Profile samlProfile = (SAML2Profile)client.getUserProfile(new CallContext(context, store), credentials).get(); - token = null;//new JwtAuthToken(samlProfile.getId()); + token = new JwtAuthToken(samlProfile.getId()); } } return token; diff --git a/src/main/resources/db/migration/postgresql/V3.0.0.0__spring_batch_upgrade.sql b/src/main/resources/db/migration/postgresql/V3.0.0.0__spring_batch_upgrade.sql new file mode 100644 index 000000000..c495dfd71 --- /dev/null +++ b/src/main/resources/db/migration/postgresql/V3.0.0.0__spring_batch_upgrade.sql @@ -0,0 +1,199 @@ +DROP VIEW ${ohdsiSchema}.cc_generation; +DROP VIEW ${ohdsiSchema}.estimation_analysis_generation; +DROP VIEW ${ohdsiSchema}.pathway_analysis_generation; +DROP VIEW ${ohdsiSchema}.prediction_analysis_generation; +DROP VIEW ${ohdsiSchema}.user_import_job_history; + +DROP TABLE ${ohdsiSchema}.BATCH_JOB_INSTANCE CASCADE; +DROP TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION CASCADE; +DROP TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS CASCADE; +DROP TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION CASCADE; +DROP TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT CASCADE; +DROP TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_CONTEXT CASCADE; + +CREATE TABLE ${ohdsiSchema}.BATCH_JOB_INSTANCE ( + JOB_INSTANCE_ID BIGINT NOT NULL PRIMARY KEY , + VERSION BIGINT , + JOB_NAME VARCHAR(100) NOT NULL, + JOB_KEY VARCHAR(32) NOT NULL, + constraint JOB_INST_UN unique (JOB_NAME, JOB_KEY) +) ; + +CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION ( + JOB_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY , + VERSION BIGINT , + JOB_INSTANCE_ID BIGINT NOT NULL, + CREATE_TIME TIMESTAMP NOT NULL, + START_TIME TIMESTAMP DEFAULT NULL , + END_TIME TIMESTAMP DEFAULT NULL , + STATUS VARCHAR(10) , + EXIT_CODE VARCHAR(2500) , + EXIT_MESSAGE VARCHAR(2500) , + LAST_UPDATED TIMESTAMP, + constraint JOB_INST_EXEC_FK foreign key (JOB_INSTANCE_ID) + references BATCH_JOB_INSTANCE(JOB_INSTANCE_ID) +) ; + +CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( + JOB_EXECUTION_ID BIGINT NOT NULL , + PARAMETER_NAME VARCHAR(100) NOT NULL , + PARAMETER_TYPE VARCHAR(100) NOT NULL , + PARAMETER_VALUE VARCHAR(2500) , + IDENTIFYING CHAR(1) NOT NULL , + constraint JOB_EXEC_PARAMS_FK foreign key (JOB_EXECUTION_ID) + references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) +) ; + +CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION ( + STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY , + VERSION BIGINT NOT NULL, + STEP_NAME VARCHAR(100) NOT NULL, + JOB_EXECUTION_ID BIGINT NOT NULL, + CREATE_TIME TIMESTAMP NOT NULL, + START_TIME TIMESTAMP DEFAULT NULL , + END_TIME TIMESTAMP DEFAULT NULL , + STATUS VARCHAR(10) , + COMMIT_COUNT BIGINT , + READ_COUNT BIGINT , + FILTER_COUNT BIGINT , + WRITE_COUNT BIGINT , + READ_SKIP_COUNT BIGINT , + WRITE_SKIP_COUNT BIGINT , + PROCESS_SKIP_COUNT BIGINT , + ROLLBACK_COUNT BIGINT , + EXIT_CODE VARCHAR(2500) , + EXIT_MESSAGE VARCHAR(2500) , + LAST_UPDATED TIMESTAMP, + constraint JOB_EXEC_STEP_FK foreign key (JOB_EXECUTION_ID) + references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) +) ; + +CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT ( + STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY, + SHORT_CONTEXT VARCHAR(2500) NOT NULL, + SERIALIZED_CONTEXT TEXT , + constraint STEP_EXEC_CTX_FK foreign key (STEP_EXECUTION_ID) + references BATCH_STEP_EXECUTION(STEP_EXECUTION_ID) +) ; + +CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_CONTEXT ( + JOB_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY, + SHORT_CONTEXT VARCHAR(2500) NOT NULL, + SERIALIZED_CONTEXT TEXT , + constraint JOB_EXEC_CTX_FK foreign key (JOB_EXECUTION_ID) + references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) +) ; + + +CREATE OR REPLACE VIEW ${ohdsiSchema}.cc_generation as ( + SELECT + -- Spring batch based + job.job_execution_id id, + job.create_time start_time, + job.end_time end_time, + job.status status, + job.exit_message exit_message, + CAST(cc_id_param.parameter_value AS INTEGER) cc_id, + CAST(source_param.parameter_value AS INTEGER) source_id, + -- Generation info based + gen_info.hash_code hash_code, + gen_info.created_by_id created_by_id + FROM ${ohdsiSchema}.batch_job_execution job + JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param + ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.parameter_name = 'cohort_characterization_id' + JOIN ${ohdsiSchema}.batch_job_execution_params source_param + ON job.job_execution_id = source_param.job_execution_id AND source_param.parameter_name = 'source_id' + LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info + ON job.job_execution_id = gen_info.job_execution_id + ORDER BY start_time DESC +); + +CREATE OR REPLACE VIEW ${ohdsiSchema}.estimation_analysis_generation as + SELECT + job.job_execution_id id, + job.create_time start_time, + job.end_time end_time, + job.status status, + job.exit_message exit_message, + CAST(estimation_id_param.parameter_value AS INTEGER) estimation_id, + CAST(source_param.parameter_value AS INTEGER) source_id, + passwd_param.parameter_value update_password, + -- Generation info based + gen_info.hash_code hash_code, + gen_info.created_by_id created_by_id, + -- Execution info based + exec_info.id analysis_execution_id + FROM ${ohdsiSchema}.batch_job_execution job + JOIN ${ohdsiSchema}.batch_job_execution_params estimation_id_param ON job.job_execution_id = estimation_id_param.job_execution_id AND estimation_id_param.parameter_name = 'estimation_analysis_id' + JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.parameter_name = 'source_id' + JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.parameter_name = 'update_password' + LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id + LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; + +CREATE OR REPLACE VIEW ${ohdsiSchema}.pathway_analysis_generation as + (SELECT + job.job_execution_id id, + job.create_time start_time, + job.end_time end_time, + job.status status, + job.exit_message exit_message, + CAST(pa_id_param.parameter_value AS INTEGER) pathway_analysis_id, + CAST(source_param.parameter_value AS INTEGER) source_id, + -- Generation info based + gen_info.hash_code hash_code, + gen_info.created_by_id created_by_id + FROM ${ohdsiSchema}.batch_job_execution job + JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param + ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.parameter_name = 'pathway_analysis_id' + JOIN ${ohdsiSchema}.batch_job_execution_params source_param + ON job.job_execution_id = source_param.job_execution_id AND source_param.parameter_name = 'source_id' + LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info + ON job.job_execution_id = gen_info.job_execution_id + ORDER BY start_time DESC); + +CREATE OR REPLACE VIEW ${ohdsiSchema}.prediction_analysis_generation as + SELECT + job.job_execution_id id, + job.create_time start_time, + job.end_time end_time, + job.status status, + job.exit_message exit_message, + CAST(plp_id_param.parameter_value AS INTEGER) prediction_id, + CAST(source_param.parameter_value AS INTEGER) source_id, + passwd_param.parameter_value update_password, + -- Generation info based + gen_info.hash_code hash_code, + gen_info.created_by_id created_by_id, + -- Execution info based + exec_info.id analysis_execution_id + FROM ${ohdsiSchema}.batch_job_execution job + JOIN ${ohdsiSchema}.batch_job_execution_params plp_id_param ON job.job_execution_id = plp_id_param.job_execution_id AND plp_id_param.parameter_name = 'prediction_analysis_id' + JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.parameter_name = 'source_id' + JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.parameter_name = 'update_password' + LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id + LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; + + +CREATE OR REPLACE VIEW ${ohdsiSchema}.user_import_job_history + AS + SELECT + job.job_execution_id as id, + job.start_time as start_time, + job.end_time as end_time, + job.status as status, + job.exit_code as exit_code, + job.exit_message as exit_message, + name_param.parameter_value as job_name, + author_param.parameter_value as author, + CAST(user_import_param.parameter_value AS INTEGER) user_import_id + FROM + ${ohdsiSchema}.BATCH_JOB_EXECUTION job + JOIN ${ohdsiSchema}.BATCH_JOB_INSTANCE instance ON instance.JOB_INSTANCE_ID = job.JOB_INSTANCE_ID + JOIN ${ohdsiSchema}.batch_job_execution_params name_param + ON job.job_execution_id = name_param.job_execution_id AND name_param.parameter_name = 'jobName' + JOIN ${ohdsiSchema}.batch_job_execution_params user_import_param + ON job.job_execution_id = user_import_param.job_execution_id AND user_import_param.parameter_name = 'user_import_id' + JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS author_param + ON job.JOB_EXECUTION_ID = author_param.JOB_EXECUTION_ID AND author_param.parameter_name = 'jobAuthor' + WHERE + instance.JOB_NAME = 'usersImport'; \ No newline at end of file From c221dc6d69b2721a67d80ba12adb328c00a464d6 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Tue, 25 Jun 2024 16:13:01 -0400 Subject: [PATCH 049/141] cleanup pre-pull request --- pom.xml | 27 ++++++++++------------- sample_settings.xml | 6 ++--- src/main/resources/application.properties | 22 +++++++++--------- src/main/resources/log4j2.xml | 4 ---- 4 files changed, 25 insertions(+), 34 deletions(-) diff --git a/pom.xml b/pom.xml index 50e785c76..b8eed6503 100644 --- a/pom.xml +++ b/pom.xml @@ -24,8 +24,7 @@ 2.1.3 0.4.0 3.2.0 - 11.0.0-M21 - 11.0.0-M21 + 10.1.20 1.5 @@ -573,25 +572,25 @@ org.apache.tomcat.embed tomcat-embed-core - 11.0.0-M21 + ${tomcat.embed.version} provided org.apache.tomcat.embed tomcat-embed-websocket - 11.0.0-M21 + ${tomcat.embed.version} provided org.apache.tomcat tomcat-jdbc - 11.0.0-M21 + ${tomcat.embed.version} provided org.apache.tomcat tomcat-juli - 11.0.0-M21 + ${tomcat.embed.version} provided @@ -754,21 +753,19 @@ jakarta.servlet jakarta.servlet-api - 6.1.0 provided - + jakarta.platform jakarta.jakartaee-web-api - 9.1.0 + 10.0.0 provided + + + jakarta.platform + jakarta.jakartaee-api + 10.0.0 - org.ohdsi.sql SqlRender diff --git a/sample_settings.xml b/sample_settings.xml index 1a43cabe1..8acd4667e 100644 --- a/sample_settings.xml +++ b/sample_settings.xml @@ -23,10 +23,10 @@ AtlasRegularSecurity 43200 * - true + false true - https://localhost:8443/Atlas/#/welcome - https://localhost:8443/WebAPI/user/oauth/callback + http://localhost:8443/Atlas/#/welcome + http://localhost:8443/WebAPI/user/oauth/callback diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 8353ee4b5..0b30e46ec 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -5,15 +5,13 @@ spring.profiles.active=${spring.profiles.active} spring.main.allow-circular-references=true # Logging -logging.level.org.springframework.web=ERROR -logging.level.org.hibernate=TRACE -logging.level.root=ERROR -logging.level.org.ohdsi=TRACE -logging.level.org.springframework.orm=ERROR -logging.level.org.springframework.jdbc=ERROR -logging.level.org.apache.shiro=TRACE -logging.level.org.pac4j=TRACE -logging.level.io.buji.pac4j=TRACE +logging.level.org.springframework.web=${logging.level.org.springframework.web} +logging.level.org.hibernate=${logging.level.org.hibernate} +logging.level.root=${logging.level.root} +logging.level.org.ohdsi=${logging.level.org.ohdsi} +logging.level.org.springframework.orm=${logging.level.org.springframework.orm} +logging.level.org.springframework.jdbc=${logging.level.org.springframework.jdbc} +logging.level.org.apache.shiro=${logging.level.org.apache.shiro} #Primary DataSource datasource.driverClassName=${datasource.driverClassName} @@ -196,9 +194,9 @@ security.duration.increment=${security.duration.increment} security.auth.windows.enabled=${security.auth.windows.enabled} security.auth.kerberos.enabled=${security.auth.kerberos.enabled} security.auth.openid.enabled=${security.auth.openid.enabled} -security.auth.facebook.enabled=false -security.auth.github.enabled=false -security.auth.google.enabled=false +security.auth.facebook.enabled=${security.auth.facebook.enabled} +security.auth.github.enabled=${security.auth.github.enabled} +security.auth.google.enabled=${security.auth.google.enabled} security.auth.jdbc.enabled=${security.auth.jdbc.enabled} security.auth.ldap.enabled=${security.auth.ldap.enabled} security.auth.ad.enabled=${security.auth.ad.enabled} diff --git a/src/main/resources/log4j2.xml b/src/main/resources/log4j2.xml index 149d85699..011405298 100644 --- a/src/main/resources/log4j2.xml +++ b/src/main/resources/log4j2.xml @@ -9,7 +9,6 @@ ${bundle:application:logging.level.org.springframework.orm} ${bundle:application:logging.level.org.springframework.jdbc} ${bundle:application:logging.level.root} - ${bundle:application:logging.level.io.buji.pac4j} - - - \ No newline at end of file From 32ad9adbb925c80cb57fea8cc05208e283cce785 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Tue, 23 Jul 2024 16:56:49 -0400 Subject: [PATCH 050/141] Updated dockerfile & pom for MDACA containers --- Dockerfile | 43 +++++++++++++++++------------------------ pom.xml | 56 +++++++++++++++++++++++++++++++++++++----------------- 2 files changed, 56 insertions(+), 43 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5667da972..e6311e4c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,38 +1,22 @@ -FROM maven:3.6-jdk-11 as builder +FROM maven:3.9.7-eclipse-temurin-17-alpine as builder WORKDIR /code ARG MAVEN_PROFILE=webapi-docker -ARG MAVEN_PARAMS="" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true +ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar -# Download dependencies -COPY pom.xml /code/ -RUN mkdir .git \ - && mvn package \ - -P${MAVEN_PROFILE} - -ARG GIT_BRANCH=unknown -ARG GIT_COMMIT_ID_ABBREV=unknown - -# Compile code and repackage it -COPY src /code/src -RUN mvn package ${MAVEN_PARAMS} \ - -Dgit.branch=${GIT_BRANCH} \ - -Dgit.commit.id.abbrev=${GIT_COMMIT_ID_ABBREV} \ - -P${MAVEN_PROFILE} \ - && mkdir war \ - && mv target/WebAPI.war war \ - && cd war \ - && jar -xf WebAPI.war \ - && rm WebAPI.war +RUN mkdir war +COPY WebAPI.war war/WebAPI.war +RUN cd war \ +&& jar -xf WebAPI.war \ + && rm WebAPI.war # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 -FROM openjdk:8-jre-slim - -MAINTAINER Lee Evans - www.ltscomputingllc.com +# FROM openjdk:17-jdk-slim +FROm eclipse-temurin:17-jre-alpine # Any Java options to pass along, e.g. memory, garbage collection, etc. ENV JAVA_OPTS="" @@ -57,6 +41,13 @@ COPY --from=builder /code/war/org org COPY --from=builder /code/war/WEB-INF/classes WEB-INF/classes COPY --from=builder /code/war/META-INF META-INF +ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://host.docker.internal:5432/OHDSI?currentSchema=webapi" +ENV WEBAPI_DATASOURCE_USERNAME=ohdsi_app_user +ENV WEBAPI_DATASOURCE_PASSWORD=app1 +ENV WEBAPI_SCHEMA=webapi +ENV FLYWAY_DATASOURCE_USERNAME=ohdsi_admin_user +ENV FLYWAY_DATASOURCE_PASSWORD=admin1 + EXPOSE 8080 USER 101 @@ -64,4 +55,4 @@ USER 101 # Directly run the code as a WAR. CMD exec java ${DEFAULT_JAVA_OPTS} ${JAVA_OPTS} \ -cp ".:WebAPI.jar:WEB-INF/lib/*.jar${CLASSPATH}" \ - org.springframework.boot.loader.WarLauncher + org.springframework.boot.loader.launch.WarLauncher \ No newline at end of file diff --git a/pom.xml b/pom.xml index b8eed6503..6589863c3 100644 --- a/pom.xml +++ b/pom.xml @@ -45,17 +45,17 @@ com.microsoft.sqlserver.jdbc.SQLServerDriver jdbc:sqlserver://serverName;databaseName=databaseName - user - password + ohdsi_app_user + app1 sql server - dbo + webapi sql server com.microsoft.sqlserver.jdbc.SQLServerDriver jdbc:sqlserver://serverName userWithWritePrivs - password + app1 classpath:db/migration/sqlserver ${datasource.ohdsi.schema} @@ -78,7 +78,8 @@ ISOLATION_READ_COMMITTED default - DisabledSecurity + + AtlasRegularSecurity 43200 http://localhost false @@ -524,6 +525,20 @@ repo.ohdsi.org https://repo.ohdsi.org/nexus/content/groups/public + + jitpack.io + https://jitpack.io + + + local-repo + file:///code/arachne + + true + + + true + + @@ -1478,15 +1493,16 @@ webapi-postgresql org.postgresql.Driver - jdbc:postgresql://54.209.111.128:5432/vocabularyv5 - USER - PASS + + jdbc:postgresql://localhost:5432/OHDSI + ohdsi_app_user + app1 postgresql - ohdsi + webapi ${datasource.driverClassName} ${datasource.url} userWithWritesToOhdsiSchema - PASS + app1 ${datasource.ohdsi.schema} ${datasource.ohdsi.schema} classpath:db/migration/postgresql @@ -1500,7 +1516,7 @@ lower(email) = lower(?) - + webapi-docker unknown @@ -1509,15 +1525,15 @@ none true org.postgresql.Driver - jdbc:postgresql://54.209.111.128:5432/vocabularyv5 - USER - PASS + ${WEBAPI_DATASOURCE_URL} + ${WEBAPI_DATASOURCE_USERNAME} + ${WEBAPI_DATASOURCE_PASSWORD} postgresql - ohdsi + ${WEBAPI_SCHEMA} ${datasource.driverClassName} ${datasource.url} - userWithWritesToOhdsiSchema - PASS + ${FLYWAY_DATASOURCE_USERNAME} + ${FLYWAY_DATASOURCE_PASSWORD} ${datasource.ohdsi.schema} ${datasource.ohdsi.schema} classpath:db/migration/postgresql @@ -1529,6 +1545,12 @@ ${datasource.password} select password from ${security.db.datasource.schema}.users_data where \ lower(email) = lower(?) + ${OAUTH_CALLBACK_UI} + ${OAUTH_CALLBACK_API} + ${OID_CLIENTID} + ${OID_APISECRET} + ${OID_URL} + ${OID_REDIRECTURL} From 53538826ee0bebb1be591daa711e4bdad2c2073a Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 12 Aug 2024 11:54:38 -0400 Subject: [PATCH 051/141] Updated job execution SQL for updated batch params table fields --- src/main/resources/resources/job/sql/jobExecutions.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/resources/resources/job/sql/jobExecutions.sql b/src/main/resources/resources/job/sql/jobExecutions.sql index 51fc5a9a2..c73d1727f 100644 --- a/src/main/resources/resources/job/sql/jobExecutions.sql +++ b/src/main/resources/resources/job/sql/jobExecutions.sql @@ -1,5 +1,6 @@ -select E.JOB_EXECUTION_ID, E.START_TIME, E.END_TIME, E.STATUS, E.EXIT_CODE, E.EXIT_MESSAGE, E.CREATE_TIME, E.LAST_UPDATED, E.VERSION, I.JOB_INSTANCE_ID, I.JOB_NAME, P.KEY_NAME, P.TYPE_CD, P.STRING_VAL, P.DATE_VAL, P.LONG_VAL, P.DOUBLE_VAL, P.IDENTIFYING + select E.JOB_EXECUTION_ID, E.START_TIME, E.END_TIME, E.STATUS, E.EXIT_CODE, E.EXIT_MESSAGE, E.CREATE_TIME, E.LAST_UPDATED, E.VERSION, + I.JOB_INSTANCE_ID, I.JOB_NAME, P.JOB_EXECUTION_ID, P.PARAMETER_NAME, P.PARAMETER_TYPE, P.PARAMETER_VALUE, P.IDENTIFYING from @ohdsi_schema.BATCH_JOB_EXECUTION E join @ohdsi_schema.BATCH_JOB_INSTANCE I on I.JOB_INSTANCE_ID = E.JOB_INSTANCE_ID left outer join @ohdsi_schema.BATCH_JOB_EXECUTION_PARAMS P on P.JOB_EXECUTION_ID = E.JOB_EXECUTION_ID - order by E.JOB_EXECUTION_ID DESC + order by E.JOB_EXECUTION_ID DESC \ No newline at end of file From 44b6daa847fae5f326404c0a471c30a68119109d Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Thu, 15 Aug 2024 09:05:07 -0400 Subject: [PATCH 052/141] Fixed Redshift dependency in pom --- pom.xml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/pom.xml b/pom.xml index 6589863c3..2282464da 100644 --- a/pom.xml +++ b/pom.xml @@ -608,12 +608,6 @@ ${tomcat.embed.version} provided - - - com.amazon.redshift - redshift-jdbc42-no-awssdk - 1.2.10.1009 - @@ -896,7 +890,7 @@ com.amazon.redshift redshift-jdbc42 - 2.1.0.29 + 2.1.0.30 com.microsoft.sqlserver @@ -1178,10 +1172,6 @@ - - com.amazon.redshift - redshift-jdbc42-no-awssdk - org.springframework.security spring-security-crypto From a6699d13090a20ba18d9e1c3d9e6858d26decd66 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 30 Aug 2024 16:24:17 -0400 Subject: [PATCH 053/141] patched pom for grype secuiryt scan --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 6589863c3..083ddf842 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ 2.1.3 0.4.0 3.2.0 - 10.1.20 + 10.1.25 1.5 @@ -714,7 +714,7 @@ com.thoughtworks.xstream xstream - 1.4.19 + 1.4.20 org.springframework.boot @@ -1165,7 +1165,7 @@ org.json json - 20230227 + 20231013 org.ohdsi From 8e02bc33ce5fcf2cd1157d60e003799da1ddb2e0 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 16 Sep 2024 11:30:17 -0400 Subject: [PATCH 054/141] Updated dockerfile & adding WebAPI.war --- Dockerfile | 10 ++++++++-- WebAPI.war | 3 +++ 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 WebAPI.war diff --git a/Dockerfile b/Dockerfile index e6311e4c2..1025ef4c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,14 @@ -FROM maven:3.9.7-eclipse-temurin-17-alpine as builder +# FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder +FROM mip-sf-harbor.med.osd.ds/mip-sf/jdk17-alpine-images-main:latest AS builder WORKDIR /code ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true +# Install curl +RUN apk add --no-cache curl + ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar @@ -16,7 +20,8 @@ RUN cd war \ # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 # FROM openjdk:17-jdk-slim -FROm eclipse-temurin:17-jre-alpine +# FROM eclipse-temurin:17-jre-alpine +FROM mip-sf-harbor.med.osd.ds/mip-sf/jdk17-alpine-images-main:latest # Any Java options to pass along, e.g. memory, garbage collection, etc. ENV JAVA_OPTS="" @@ -42,6 +47,7 @@ COPY --from=builder /code/war/WEB-INF/classes WEB-INF/classes COPY --from=builder /code/war/META-INF META-INF ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://host.docker.internal:5432/OHDSI?currentSchema=webapi" +# ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://10.0.21.93:32000/OHDSI?currentSchema=webapi" ENV WEBAPI_DATASOURCE_USERNAME=ohdsi_app_user ENV WEBAPI_DATASOURCE_PASSWORD=app1 ENV WEBAPI_SCHEMA=webapi diff --git a/WebAPI.war b/WebAPI.war new file mode 100644 index 000000000..3c16547a3 --- /dev/null +++ b/WebAPI.war @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa6cf411f6604c905ea98f02995a5f0acd931f65560394ae0d00b80c721221d +size 155166367 From 683a07a0fb71ec2354d052532d43295dad42d27d Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Tue, 17 Sep 2024 09:19:45 -0400 Subject: [PATCH 055/141] Track .war files with Git LFS --- .gitattributes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 90048f1a8..7e0023efa 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8,8 +8,8 @@ *.js text *.vm text *.properties text - *.png binary *.jpeg binary *.jpg binary *.gif binary +*.war filter=lfs diff=lfs merge=lfs -text From 97bc0216b5677dca35f4db41a65b7191f575063c Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Wed, 18 Sep 2024 10:58:08 -0400 Subject: [PATCH 056/141] removed war --- WebAPI.war | 3 - .../arachne-common-types-3.x-MDACA.jar | Bin 0 -> 5356 bytes .../arachne-common-utils-3.x-MDACA.jar | Bin 0 -> 11623 bytes arachnejars/arachne-commons-3.x-MDACA.jar | Bin 0 -> 162934 bytes ...handler-found-exception-util-3.x-MDACA.jar | Bin 0 -> 5247 bytes arachnejars/arachne-scheduler-3.x-MDACA.jar | Bin 0 -> 22289 bytes arachnejars/arachne-storage-3.x-MDACA.jar | Bin 0 -> 32155 bytes .../arachne-sys-settings-3.x-MDACA.jar | Bin 0 -> 25137 bytes arachnejars/data-source-manager-3.x-MDACA.jar | Bin 0 -> 27341 bytes .../execution-engine-commons-3.x-MDACA.jar | Bin 0 -> 36429 bytes arachnejars/logging-3.x-MDACA.jar | Bin 0 -> 22034 bytes .../arachne-common-types-3.x-MDACA.jar | Bin 0 -> 5356 bytes .../arachne-common-utils-3.x-MDACA.jar | Bin 0 -> 11623 bytes code/arachne/arachne-commons-3.x-MDACA.jar | Bin 0 -> 162934 bytes ...handler-found-exception-util-3.x-MDACA.jar | Bin 0 -> 5247 bytes code/arachne/arachne-scheduler-3.x-MDACA.jar | Bin 0 -> 22289 bytes code/arachne/arachne-storage-3.x-MDACA.jar | Bin 0 -> 32155 bytes .../arachne-sys-settings-3.x-MDACA.jar | Bin 0 -> 25137 bytes .../1.4.14/_remote.repositories | 3 + .../1.4.14/logback-classic-1.4.14.pom | 367 ++ .../1.4.14/logback-classic-1.4.14.pom.sha1 | 1 + .../logback-core/1.4.14/_remote.repositories | 3 + .../1.4.14/logback-core-1.4.14.pom | 158 + .../1.4.14/logback-core-1.4.14.pom.sha1 | 1 + .../1.4.14/_remote.repositories | 3 + .../1.4.14/logback-parent-1.4.14.pom | 587 +++ .../1.4.14/logback-parent-1.4.14.pom.sha1 | 1 + .../1.2.10.1009/_remote.repositories | 3 + .../redshift-jdbc42-no-awssdk-1.2.10.1009.pom | 31 + ...bc42-no-awssdk-1.2.10.1009.pom.lastUpdated | 11 + ...hift-jdbc42-no-awssdk-1.2.10.1009.pom.sha1 | 1 + .../2.1.0.29/_remote.repositories | 3 + .../2.1.0.29/redshift-jdbc42-2.1.0.29.pom | 134 + .../redshift-jdbc42-2.1.0.29.pom.sha1 | 1 + .../0.15.2/_remote.repositories | 3 + .../commonmark-ext-gfm-tables-0.15.2.pom | 43 + .../commonmark-ext-gfm-tables-0.15.2.pom.sha1 | 1 + .../0.15.2/_remote.repositories | 3 + .../0.15.2/commonmark-parent-0.15.2.pom | 214 ++ .../0.15.2/commonmark-parent-0.15.2.pom.sha1 | 1 + .../commonmark/0.15.2/_remote.repositories | 3 + .../commonmark/0.15.2/commonmark-0.15.2.pom | 73 + .../0.15.2/commonmark-0.15.2.pom.sha1 | 1 + .../pom/base-pom/5.0.13/_remote.repositories | 3 + .../pom/base-pom/5.0.13/base-pom-5.0.13.pom | 691 ++++ .../base-pom/5.0.13/base-pom-5.0.13.pom.sha1 | 1 + .../central-pom/5.0.13/_remote.repositories | 3 + .../central-pom/5.0.13/central-pom-5.0.13.pom | 88 + .../5.0.13/central-pom-5.0.13.pom.sha1 | 1 + .../8/_remote.repositories | 3 + .../8/cloudbees-oss-parent-8.pom | 359 ++ .../8/cloudbees-oss-parent-8.pom.sha1 | 1 + .../1.1.7/_remote.repositories | 3 + .../1.1.7/syslog-java-client-1.1.7.pom | 111 + .../1.1.7/syslog-java-client-1.1.7.pom.sha1 | 1 + .../3.2.2/_remote.repositories | 3 + ...ing-data-jpa-entity-graph-parent-3.2.2.pom | 347 ++ ...ata-jpa-entity-graph-parent-3.2.2.pom.sha1 | 1 + .../3.2.2/_remote.repositories | 3 + .../spring-data-jpa-entity-graph-3.2.2.pom | 124 + ...pring-data-jpa-entity-graph-3.2.2.pom.sha1 | 1 + .../4.17.0/_remote.repositories | 3 + .../4.17.0/java-driver-bom-4.17.0.pom | 110 + .../java-driver-bom-4.17.0.pom.lastUpdated | 9 + .../4.17.0/java-driver-bom-4.17.0.pom.sha1 | 1 + .../4.6.1/_remote.repositories | 3 + .../4.6.1/java-driver-bom-4.6.1.pom | 100 + .../java-driver-bom-4.6.1.pom.lastUpdated | 11 + .../4.6.1/java-driver-bom-4.6.1.pom.sha1 | 1 + .../classmate/1.6.0/_remote.repositories | 3 + .../classmate/1.6.0/classmate-1.6.0.pom | 187 + .../classmate/1.6.0/classmate-1.6.0.pom.sha1 | 1 + .../2.15.4/_remote.repositories | 3 + .../2.15.4/jackson-annotations-2.15.4.pom | 198 + .../jackson-annotations-2.15.4.pom.sha1 | 1 + .../jackson-core/2.15.4/_remote.repositories | 3 + .../2.15.4/jackson-core-2.15.4.pom | 250 ++ .../2.15.4/jackson-core-2.15.4.pom.sha1 | 1 + .../2.15.4/_remote.repositories | 3 + .../2.15.4/jackson-databind-2.15.4.pom | 500 +++ .../2.15.4/jackson-databind-2.15.4.pom.sha1 | 1 + .../2.15.4/_remote.repositories | 3 + .../2.15.4/jackson-dataformat-toml-2.15.4.pom | 85 + .../jackson-dataformat-toml-2.15.4.pom.sha1 | 1 + .../2.15.4/_remote.repositories | 3 + .../jackson-dataformats-text-2.15.4.pom | 103 + .../jackson-dataformats-text-2.15.4.pom.sha1 | 1 + .../2.15.4/_remote.repositories | 3 + .../2.15.4/jackson-datatype-jdk8-2.15.4.pom | 64 + .../jackson-datatype-jdk8-2.15.4.pom.sha1 | 1 + .../2.15.4/_remote.repositories | 3 + .../2.15.4/jackson-datatype-jsr310-2.15.4.pom | 123 + .../jackson-datatype-jsr310-2.15.4.pom.sha1 | 1 + .../jackson-base/2.15.4/_remote.repositories | 3 + .../2.15.4/jackson-base-2.15.4.pom | 331 ++ .../2.15.4/jackson-base-2.15.4.pom.sha1 | 1 + .../jackson-bom/2.11.0/_remote.repositories | 3 + .../jackson-bom/2.11.0/jackson-bom-2.11.0.pom | 310 ++ .../2.11.0/jackson-bom-2.11.0.pom.lastUpdated | 11 + .../2.11.0/jackson-bom-2.11.0.pom.sha1 | 1 + .../jackson-bom/2.15.2/_remote.repositories | 3 + .../jackson-bom/2.15.2/jackson-bom-2.15.2.pom | 441 +++ .../2.15.2/jackson-bom-2.15.2.pom.sha1 | 1 + .../jackson-bom/2.15.4/_remote.repositories | 3 + .../jackson-bom/2.15.4/jackson-bom-2.15.4.pom | 441 +++ .../2.15.4/jackson-bom-2.15.4.pom.lastUpdated | 9 + .../2.15.4/jackson-bom-2.15.4.pom.sha1 | 1 + .../jackson-bom/2.16.1/_remote.repositories | 3 + .../jackson-bom/2.16.1/jackson-bom-2.16.1.pom | 446 +++ .../2.16.1/jackson-bom-2.16.1.pom.sha1 | 1 + .../jackson-parent/2.11/_remote.repositories | 3 + .../2.11/jackson-parent-2.11.pom | 208 ++ .../2.11/jackson-parent-2.11.pom.lastUpdated | 11 + .../2.11/jackson-parent-2.11.pom.sha1 | 1 + .../jackson-parent/2.15/_remote.repositories | 3 + .../2.15/jackson-parent-2.15.pom | 169 + .../2.15/jackson-parent-2.15.pom.lastUpdated | 9 + .../2.15/jackson-parent-2.15.pom.sha1 | 1 + .../jackson-parent/2.16/_remote.repositories | 3 + .../2.16/jackson-parent-2.16.pom | 169 + .../2.16/jackson-parent-2.16.pom.sha1 | 1 + .../2.15.4/_remote.repositories | 3 + ...ule-jakarta-xmlbind-annotations-2.15.4.pom | 93 + ...akarta-xmlbind-annotations-2.15.4.pom.sha1 | 1 + .../2.15.4/_remote.repositories | 3 + .../jackson-module-parameter-names-2.15.4.pom | 117 + ...son-module-parameter-names-2.15.4.pom.sha1 | 1 + .../2.15.4/_remote.repositories | 3 + .../2.15.4/jackson-modules-base-2.15.4.pom | 115 + .../jackson-modules-base-2.15.4.pom.sha1 | 1 + .../2.15.4/_remote.repositories | 3 + .../2.15.4/jackson-modules-java8-2.15.4.pom | 92 + .../jackson-modules-java8-2.15.4.pom.sha1 | 1 + .../oss-parent/38/_remote.repositories | 3 + .../fasterxml/oss-parent/38/oss-parent-38.pom | 642 ++++ .../38/oss-parent-38.pom.lastUpdated | 11 + .../oss-parent/38/oss-parent-38.pom.sha1 | 1 + .../oss-parent/50/_remote.repositories | 3 + .../fasterxml/oss-parent/50/oss-parent-50.pom | 665 ++++ .../50/oss-parent-50.pom.lastUpdated | 9 + .../oss-parent/50/oss-parent-50.pom.sha1 | 1 + .../oss-parent/55/_remote.repositories | 3 + .../fasterxml/oss-parent/55/oss-parent-55.pom | 658 ++++ .../oss-parent/55/oss-parent-55.pom.sha1 | 1 + .../oss-parent/56/_remote.repositories | 3 + .../fasterxml/oss-parent/56/oss-parent-56.pom | 658 ++++ .../oss-parent/56/oss-parent-56.pom.sha1 | 1 + .../caffeine/3.1.8/_remote.repositories | 3 + .../caffeine/3.1.8/caffeine-3.1.8.pom | 54 + .../caffeine/3.1.8/caffeine-3.1.8.pom.sha1 | 1 + .../3.3.6/_remote.repositories | 3 + .../3.3.6/docker-java-api-3.3.6.pom | 90 + .../3.3.6/docker-java-api-3.3.6.pom.sha1 | 1 + .../3.3.6/_remote.repositories | 3 + .../3.3.6/docker-java-parent-3.3.6.pom | 363 ++ .../3.3.6/docker-java-parent-3.3.6.pom.sha1 | 1 + .../3.3.6/_remote.repositories | 3 + .../docker-java-transport-zerodep-3.3.6.pom | 109 + ...cker-java-transport-zerodep-3.3.6.pom.sha1 | 1 + .../3.3.6/_remote.repositories | 3 + .../3.3.6/docker-java-transport-3.3.6.pom | 59 + .../docker-java-transport-3.3.6.pom.sha1 | 1 + .../4.0.6/_remote.repositories | 3 + .../4.0.6/handlebars.java-4.0.6.pom | 489 +++ .../4.0.6/handlebars.java-4.0.6.pom.sha1 | 1 + .../handlebars/4.0.6/_remote.repositories | 3 + .../handlebars/4.0.6/handlebars-4.0.6.pom | 196 + .../4.0.6/handlebars-4.0.6.pom.sha1 | 1 + .../dbunit-plus/2.0.1/_remote.repositories | 3 + .../dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom | 479 +++ .../2.0.1/dbunit-plus-2.0.1.pom.sha1 | 1 + .../8.3.3/_remote.repositories | 3 + .../8.3.3/scribejava-apis-8.3.3.pom | 73 + .../8.3.3/scribejava-apis-8.3.3.pom.sha1 | 1 + .../8.3.3/_remote.repositories | 3 + .../8.3.3/scribejava-core-8.3.3.pom | 62 + .../8.3.3/scribejava-core-8.3.3.pom.sha1 | 1 + .../8.3.3/_remote.repositories | 3 + .../8.3.3/scribejava-java8-8.3.3.pom | 33 + .../8.3.3/scribejava-java8-8.3.3.pom.sha1 | 1 + .../scribejava/8.3.3/_remote.repositories | 3 + .../scribejava/8.3.3/scribejava-8.3.3.pom | 305 ++ .../8.3.3/scribejava-8.3.3.pom.sha1 | 1 + .../1.3.0/_remote.repositories | 3 + .../1.3.0/spring-test-dbunit-1.3.0.pom | 343 ++ .../1.3.0/spring-test-dbunit-1.3.0.pom.sha1 | 1 + .../1.0-1/_remote.repositories | 3 + .../1.0-1/jcip-annotations-1.0-1.pom | 174 + .../1.0-1/jcip-annotations-1.0-1.pom.sha1 | 1 + .../curvesapi/1.04/_remote.repositories | 3 + .../curvesapi/1.04/curvesapi-1.04.pom | 123 + .../curvesapi/1.04/curvesapi-1.04.pom.sha1 | 1 + .../waffle-jna/2.2.1/_remote.repositories | 3 + .../waffle-jna/2.2.1/waffle-jna-2.2.1.pom | 109 + .../2.2.1/waffle-jna-2.2.1.pom.sha1 | 1 + .../waffle-parent/2.2.1/_remote.repositories | 3 + .../2.2.1/waffle-parent-2.2.1.pom | 1558 ++++++++ .../2.2.1/waffle-parent-2.2.1.pom.sha1 | 1 + .../waffle-shiro/2.2.1/_remote.repositories | 3 + .../waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom | 108 + .../2.2.1/waffle-shiro-2.2.1.pom.sha1 | 1 + .../java-semver/0.9.0/_remote.repositories | 3 + .../java-semver/0.9.0/java-semver-0.9.0.pom | 75 + .../0.9.0/java-semver-0.9.0.pom.sha1 | 1 + .../3.0.1/_remote.repositories | 3 + .../3.0.1/findbugs-annotations-3.0.1.pom | 193 + .../3.0.1/findbugs-annotations-3.0.1.pom.sha1 | 1 + .../jsr305/3.0.2/_remote.repositories | 3 + .../findbugs/jsr305/3.0.2/jsr305-3.0.2.pom | 135 + .../jsr305/3.0.2/jsr305-3.0.2.pom.sha1 | 1 + .../gson-parent/2.10.1/_remote.repositories | 3 + .../gson-parent/2.10.1/gson-parent-2.10.1.pom | 306 ++ .../2.10.1/gson-parent-2.10.1.pom.sha1 | 1 + .../gson/gson/2.10.1/_remote.repositories | 3 + .../code/gson/gson/2.10.1/gson-2.10.1.pom | 253 ++ .../gson/gson/2.10.1/gson-2.10.1.pom.sha1 | 1 + .../2.1.3/_remote.repositories | 3 + .../2.1.3/error_prone_annotations-2.1.3.pom | 58 + .../error_prone_annotations-2.1.3.pom.sha1 | 1 + .../2.11.0/_remote.repositories | 3 + .../2.11.0/error_prone_annotations-2.11.0.pom | 69 + .../error_prone_annotations-2.11.0.pom.sha1 | 1 + .../2.18.0/_remote.repositories | 3 + .../2.18.0/error_prone_annotations-2.18.0.pom | 69 + .../error_prone_annotations-2.18.0.pom.sha1 | 1 + .../2.21.1/_remote.repositories | 3 + .../2.21.1/error_prone_annotations-2.21.1.pom | 59 + .../error_prone_annotations-2.21.1.pom.sha1 | 1 + .../2.26.1/_remote.repositories | 3 + .../2.26.1/error_prone_annotations-2.26.1.pom | 129 + .../error_prone_annotations-2.26.1.pom.sha1 | 1 + .../2.3.4/_remote.repositories | 3 + .../2.3.4/error_prone_annotations-2.3.4.pom | 68 + .../error_prone_annotations-2.3.4.pom.sha1 | 1 + .../2.1.3/_remote.repositories | 3 + .../2.1.3/error_prone_parent-2.1.3.pom | 163 + .../2.1.3/error_prone_parent-2.1.3.pom.sha1 | 1 + .../2.11.0/_remote.repositories | 3 + .../2.11.0/error_prone_parent-2.11.0.pom | 298 ++ .../2.11.0/error_prone_parent-2.11.0.pom.sha1 | 1 + .../2.18.0/_remote.repositories | 3 + .../2.18.0/error_prone_parent-2.18.0.pom | 306 ++ .../2.18.0/error_prone_parent-2.18.0.pom.sha1 | 1 + .../2.21.1/_remote.repositories | 3 + .../2.21.1/error_prone_parent-2.21.1.pom | 357 ++ .../2.21.1/error_prone_parent-2.21.1.pom.sha1 | 1 + .../2.26.1/_remote.repositories | 3 + .../2.26.1/error_prone_parent-2.26.1.pom | 367 ++ .../2.26.1/error_prone_parent-2.26.1.pom.sha1 | 1 + .../2.3.4/_remote.repositories | 3 + .../2.3.4/error_prone_parent-2.3.4.pom | 169 + .../2.3.4/error_prone_parent-2.3.4.pom.sha1 | 1 + .../failureaccess/1.0.1/_remote.repositories | 3 + .../1.0.1/failureaccess-1.0.1.pom | 68 + .../1.0.1/failureaccess-1.0.1.pom.sha1 | 1 + .../failureaccess/1.0.2/_remote.repositories | 3 + .../1.0.2/failureaccess-1.0.2.pom | 100 + .../1.0.2/failureaccess-1.0.2.pom.sha1 | 1 + .../25.1-jre/_remote.repositories | 3 + .../25.1-jre/guava-parent-25.1-jre.pom | 302 ++ .../25.1-jre/guava-parent-25.1-jre.pom.sha1 | 1 + .../26.0-android/_remote.repositories | 3 + .../guava-parent-26.0-android.pom | 293 ++ .../guava-parent-26.0-android.pom.sha1 | 1 + .../29.0-jre/_remote.repositories | 3 + .../29.0-jre/guava-parent-29.0-jre.pom | 376 ++ .../29.0-jre/guava-parent-29.0-jre.pom.sha1 | 1 + .../31.1-jre/_remote.repositories | 3 + .../31.1-jre/guava-parent-31.1-jre.pom | 415 +++ .../31.1-jre/guava-parent-31.1-jre.pom.sha1 | 1 + .../32.1.2-jre/_remote.repositories | 3 + .../32.1.2-jre/guava-parent-32.1.2-jre.pom | 493 +++ .../guava-parent-32.1.2-jre.pom.sha1 | 1 + .../33.2.0-jre/_remote.repositories | 3 + .../33.2.0-jre/guava-parent-33.2.0-jre.pom | 482 +++ .../guava-parent-33.2.0-jre.pom.sha1 | 1 + .../guava/guava/25.1-jre/_remote.repositories | 3 + .../guava/guava/25.1-jre/guava-25.1-jre.pom | 180 + .../guava/25.1-jre/guava-25.1-jre.pom.sha1 | 1 + .../guava/guava/29.0-jre/_remote.repositories | 3 + .../guava/guava/29.0-jre/guava-29.0-jre.pom | 252 ++ .../guava/29.0-jre/guava-29.0-jre.pom.sha1 | 1 + .../guava/guava/31.1-jre/_remote.repositories | 3 + .../guava/guava/31.1-jre/guava-31.1-jre.pom | 253 ++ .../guava/31.1-jre/guava-31.1-jre.pom.sha1 | 1 + .../guava/32.1.2-jre/_remote.repositories | 3 + .../guava/32.1.2-jre/guava-32.1.2-jre.pom | 309 ++ .../32.1.2-jre/guava-32.1.2-jre.pom.sha1 | 1 + .../guava/33.2.0-jre/_remote.repositories | 3 + .../guava/33.2.0-jre/guava-33.2.0-jre.pom | 225 ++ .../33.2.0-jre/guava-33.2.0-jre.pom.sha1 | 1 + .../_remote.repositories | 3 + ...9.0-empty-to-avoid-conflict-with-guava.pom | 56 + ...mpty-to-avoid-conflict-with-guava.pom.sha1 | 1 + .../1.1/_remote.repositories | 3 + .../1.1/j2objc-annotations-1.1.pom | 87 + .../1.1/j2objc-annotations-1.1.pom.sha1 | 1 + .../1.3/_remote.repositories | 3 + .../1.3/j2objc-annotations-1.3.pom | 87 + .../1.3/j2objc-annotations-1.3.pom.sha1 | 1 + .../2.8/_remote.repositories | 3 + .../2.8/j2objc-annotations-2.8.pom | 94 + .../2.8/j2objc-annotations-2.8.pom.sha1 | 1 + .../3.0.0/_remote.repositories | 3 + .../3.0.0/j2objc-annotations-3.0.0.pom | 158 + .../3.0.0/j2objc-annotations-3.0.0.pom.sha1 | 1 + .../ibm/icu/icu4j/62.1/_remote.repositories | 3 + .../com/ibm/icu/icu4j/62.1/icu4j-62.1.pom | 146 + .../ibm/icu/icu4j/62.1/icu4j-62.1.pom.sha1 | 1 + .../json-path/2.9.0/_remote.repositories | 3 + .../json-path/2.9.0/json-path-2.9.0.pom | 49 + .../json-path/2.9.0/json-path-2.9.0.pom.sha1 | 1 + .../azure/msal4j/1.9.0/_remote.repositories | 3 + .../azure/msal4j/1.9.0/msal4j-1.9.0.pom | 286 ++ .../azure/msal4j/1.9.0/msal4j-1.9.0.pom.sha1 | 1 + .../12.4.2.jre11/_remote.repositories | 3 + .../12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom | 589 +++ .../mssql-jdbc-12.4.2.jre11.pom.sha1 | 1 + .../content-type/2.1/_remote.repositories | 3 + .../content-type/2.1/content-type-2.1.pom | 226 ++ .../2.1/content-type-2.1.pom.sha1 | 1 + .../content-type/2.3/_remote.repositories | 3 + .../content-type/2.3/content-type-2.3.pom | 223 ++ .../2.3/content-type-2.3.pom.sha1 | 1 + .../lang-tag/1.4.4/_remote.repositories | 3 + .../lang-tag/1.4.4/lang-tag-1.4.4.pom | 251 ++ .../lang-tag/1.4.4/lang-tag-1.4.4.pom.sha1 | 1 + .../lang-tag/1.7/_remote.repositories | 3 + .../nimbusds/lang-tag/1.7/lang-tag-1.7.pom | 236 ++ .../lang-tag/1.7/lang-tag-1.7.pom.sha1 | 1 + .../nimbus-jose-jwt/8.18/_remote.repositories | 3 + .../8.18/nimbus-jose-jwt-8.18.pom | 318 ++ .../8.18/nimbus-jose-jwt-8.18.pom.sha1 | 1 + .../9.37.3/_remote.repositories | 3 + .../9.37.3/nimbus-jose-jwt-9.37.3.pom | 381 ++ .../9.37.3/nimbus-jose-jwt-9.37.3.pom.sha1 | 1 + .../9.39.1/_remote.repositories | 3 + .../9.39.1/nimbus-jose-jwt-9.39.1.pom | 478 +++ .../9.39.1/nimbus-jose-jwt-9.39.1.pom.sha1 | 1 + .../nimbus-jose-jwt/9.40/_remote.repositories | 3 + .../9.40/nimbus-jose-jwt-9.40.pom | 478 +++ .../9.40/nimbus-jose-jwt-9.40.pom.sha1 | 1 + .../11.12/_remote.repositories | 3 + .../11.12/oauth2-oidc-sdk-11.12.pom | 522 +++ .../11.12/oauth2-oidc-sdk-11.12.pom.sha1 | 1 + .../8.23.1/_remote.repositories | 3 + .../8.23.1/oauth2-oidc-sdk-8.23.1.pom | 390 ++ .../8.23.1/oauth2-oidc-sdk-8.23.1.pom.sha1 | 1 + .../1.16.2-SNAPSHOT/_remote.repositories | 3 + ...common-utils-1.16.2-20200914.105631-15.pom | 68 + ...-1.16.2-20200914.105631-15.pom.lastUpdated | 9 + ...n-utils-1.16.2-20200914.105631-15.pom.sha1 | 1 + .../arachne-common-utils-1.16.2-SNAPSHOT.pom | 68 + .../maven-metadata-ohdsi.snapshots.xml | 25 + .../maven-metadata-ohdsi.snapshots.xml.sha1 | 1 + .../1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml | 25 + .../maven-metadata-ohdsi.xml.sha1 | 1 + .../resolver-status.properties | 14 + .../arachne-common-utils-3.x-MDACA.jar | Bin 0 -> 11623 bytes ...hne-common-utils-3.x-MDACA.pom.lastUpdated | 16 + .../1.16.2-SNAPSHOT/_remote.repositories | 3 + ...mmons-bundle-1.16.2-20200914.105632-15.pom | 63 + ...-bundle-1.16.2-20200914.105632-15.pom.sha1 | 1 + ...arachne-commons-bundle-1.16.2-SNAPSHOT.pom | 63 + .../maven-metadata-ohdsi.snapshots.xml | 20 + .../maven-metadata-ohdsi.snapshots.xml.sha1 | 1 + .../1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml | 20 + .../maven-metadata-ohdsi.xml.sha1 | 1 + .../resolver-status.properties | 14 + ...rachne-scheduler-3.x-MDACA.pom.lastUpdated | 16 + .../arachne-sys-settings-3.x-MDACA.jar | Bin 0 -> 25137 bytes .../execution-engine-commons-3.x-MDACA.jar | Bin 0 -> 36429 bytes ...n-engine-commons-3.x-MDACA.pom.lastUpdated | 16 + .../data-source-manager-3.x-MDACA.jar | Bin 0 -> 27341 bytes ...a-source-manager-3.x-MDACA.pom.lastUpdated | 16 + .../logging/3.x-MDACA/logging-3.x-MDACA.jar | Bin 0 -> 22034 bytes .../logging-3.x-MDACA.pom.lastUpdated | 16 + .../opencsv/opencsv/3.7/_remote.repositories | 3 + .../com/opencsv/opencsv/3.7/opencsv-3.7.pom | 380 ++ .../opencsv/opencsv/3.7/opencsv-3.7.pom.sha1 | 1 + .../1.0.3/_remote.repositories | 3 + .../1.0.3/otj-pg-embedded-1.0.3.pom | 341 ++ .../1.0.3/otj-pg-embedded-1.0.3.pom.sha1 | 1 + .../ojdbc-bom/21.9.0.0/_remote.repositories | 3 + .../ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom | 278 ++ .../ojdbc-bom-21.9.0.0.pom.lastUpdated | 9 + .../21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 | 1 + .../1.5.0/_remote.repositories | 3 + .../1.5.0/miredot-annotations-1.5.0.pom | 37 + .../miredot-annotations-1.5.0.pom.lastUpdated | 11 + .../1.5.0/miredot-annotations-1.5.0.pom.sha1 | 1 + .../querydsl-bom/5.0.0/_remote.repositories | 3 + .../querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom | 217 ++ .../5.0.0/querydsl-bom-5.0.0.pom.lastUpdated | 9 + .../5.0.0/querydsl-bom-5.0.0.pom.sha1 | 1 + .../okhttp-bom/4.12.0/_remote.repositories | 3 + .../okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom | 81 + .../4.12.0/okhttp-bom-4.12.0.pom.lastUpdated | 9 + .../4.12.0/okhttp-bom-4.12.0.pom.sha1 | 1 + .../activation/all/1.2.0/_remote.repositories | 3 + .../sun/activation/all/1.2.0/all-1.2.0.pom | 641 ++++ .../activation/all/1.2.0/all-1.2.0.pom.sha1 | 1 + .../4.1.2/_remote.repositories | 3 + .../4.1.2/istack-commons-runtime-4.1.2.pom | 49 + .../istack-commons-runtime-4.1.2.pom.sha1 | 1 + .../istack-commons/4.1.2/_remote.repositories | 3 + .../4.1.2/istack-commons-4.1.2.pom | 624 ++++ .../4.1.2/istack-commons-4.1.2.pom.sha1 | 1 + .../jaxb-bom-ext/4.0.5/_remote.repositories | 3 + .../jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom | 92 + .../4.0.5/jaxb-bom-ext-4.0.5.pom.sha1 | 1 + .../jaxb-parent/4.0.5/_remote.repositories | 3 + .../jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom | 777 ++++ .../4.0.5/jaxb-parent-4.0.5.pom.sha1 | 1 + .../4.0.5/_remote.repositories | 3 + .../4.0.5/jaxb-runtime-parent-4.0.5.pom | 36 + .../4.0.5/jaxb-runtime-parent-4.0.5.pom.sha1 | 1 + .../4.0.5/_remote.repositories | 3 + .../4.0.5/jaxb-txw-parent-4.0.5.pom | 36 + .../4.0.5/jaxb-txw-parent-4.0.5.pom.sha1 | 1 + .../1.0/_remote.repositories | 3 + .../1.0/xml-security-impl-1.0.pom | 103 + .../1.0/xml-security-impl-1.0.pom.sha1 | 1 + .../1.4.19/_remote.repositories | 3 + .../1.4.19/xstream-parent-1.4.19.pom | 1191 ++++++ .../1.4.19/xstream-parent-1.4.19.pom.sha1 | 1 + .../xstream/1.4.19/_remote.repositories | 3 + .../xstream/xstream/1.4.19/xstream-1.4.19.pom | 669 ++++ .../xstream/1.4.19/xstream-1.4.19.pom.sha1 | 1 + .../zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom | 654 ++++ .../HikariCP/5.0.1/HikariCP-5.0.1.pom.sha1 | 1 + .../HikariCP/5.0.1/_remote.repositories | 3 + .../1.9.4/_remote.repositories | 3 + .../1.9.4/commons-beanutils-1.9.4.pom | 517 +++ .../1.9.4/commons-beanutils-1.9.4.pom.sha1 | 1 + .../commons-codec/1.16.1/_remote.repositories | 3 + .../1.16.1/commons-codec-1.16.1.pom | 446 +++ .../1.16.1/commons-codec-1.16.1.pom.sha1 | 1 + .../3.2.2/_remote.repositories | 3 + .../3.2.2/commons-collections-3.2.2.pom | 454 +++ .../3.2.2/commons-collections-3.2.2.pom.sha1 | 1 + .../commons-dbutils/1.6/_remote.repositories | 3 + .../1.6/commons-dbutils-1.6.pom | 327 ++ .../1.6/commons-dbutils-1.6.pom.sha1 | 1 + .../1.3.1/_remote.repositories | 3 + .../1.3.1/commons-fileupload-1.3.1.pom | 298 ++ .../1.3.1/commons-fileupload-1.3.1.pom.sha1 | 1 + .../1.5/_remote.repositories | 3 + .../1.5/commons-fileupload-1.5.pom | 457 +++ .../1.5/commons-fileupload-1.5.pom.sha1 | 1 + .../commons-io/1.3.2/_remote.repositories | 3 + .../commons-io/1.3.2/commons-io-1.3.2.pom | 318 ++ .../1.3.2/commons-io-1.3.2.pom.sha1 | 1 + .../commons-io/2.11.0/_remote.repositories | 3 + .../commons-io/2.11.0/commons-io-2.11.0.pom | 601 +++ .../2.11.0/commons-io-2.11.0.pom.sha1 | 1 + .../commons-io/2.15.1/_remote.repositories | 3 + .../commons-io/2.15.1/commons-io-2.15.1.pom | 603 +++ .../2.15.1/commons-io-2.15.1.pom.sha1 | 1 + .../commons-io/2.2/_remote.repositories | 3 + .../commons-io/2.2/commons-io-2.2.pom | 346 ++ .../commons-io/2.2/commons-io-2.2.pom.sha1 | 1 + .../commons-io/2.4/_remote.repositories | 3 + .../commons-io/2.4/commons-io-2.4.pom | 323 ++ .../commons-io/2.4/commons-io-2.4.pom.sha1 | 1 + .../commons-io/2.5/_remote.repositories | 3 + .../commons-io/2.5/commons-io-2.5.pom | 422 +++ .../commons-io/2.5/commons-io-2.5.pom.sha1 | 1 + .../commons-io/2.7/_remote.repositories | 3 + .../commons-io/2.7/commons-io-2.7.pom | 473 +++ .../commons-io/2.7/commons-io-2.7.pom.sha1 | 1 + .../commons-lang/2.6/_remote.repositories | 3 + .../commons-lang/2.6/commons-lang-2.6.pom | 545 +++ .../2.6/commons-lang-2.6.pom.sha1 | 1 + .../commons-logging/1.2/_remote.repositories | 3 + .../1.2/commons-logging-1.2.pom | 547 +++ .../1.2/commons-logging-1.2.pom.sha1 | 1 + .../arachne/data-source-manager-3.x-MDACA.jar | Bin 0 -> 27341 bytes .../execution-engine-commons-3.x-MDACA.jar | Bin 0 -> 36429 bytes .../buji-pac4j/9.0.1/_remote.repositories | 3 + .../buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom | 262 ++ .../9.0.1/buji-pac4j-9.0.1.pom.sha1 | 1 + .../buji/buji-parent/1/_remote.repositories | 3 + .../io/buji/buji-parent/1/buji-parent-1.pom | 31 + .../buji/buji-parent/1/buji-parent-1.pom.sha1 | 1 + .../metrics-bom/4.1.7/_remote.repositories | 3 + .../metrics-bom/4.1.7/metrics-bom-4.1.7.pom | 121 + .../4.1.7/metrics-bom-4.1.7.pom.lastUpdated | 11 + .../4.1.7/metrics-bom-4.1.7.pom.sha1 | 1 + .../metrics-bom/4.2.19/_remote.repositories | 3 + .../metrics-bom/4.2.19/metrics-bom-4.2.19.pom | 176 + .../4.2.19/metrics-bom-4.2.19.pom.lastUpdated | 9 + .../4.2.19/metrics-bom-4.2.19.pom.sha1 | 1 + .../metrics-bom/4.2.25/_remote.repositories | 3 + .../metrics-bom/4.2.25/metrics-bom-4.2.25.pom | 191 + .../4.2.25/metrics-bom-4.2.25.pom.lastUpdated | 9 + .../4.2.25/metrics-bom-4.2.25.pom.sha1 | 1 + .../metrics-core/4.2.25/_remote.repositories | 3 + .../4.2.25/metrics-core-4.2.25.pom | 70 + .../4.2.25/metrics-core-4.2.25.pom.sha1 | 1 + .../metrics-json/4.2.25/_remote.repositories | 3 + .../4.2.25/metrics-json-4.2.25.pom | 86 + .../4.2.25/metrics-json-4.2.25.pom.sha1 | 1 + .../metrics-parent/4.1.7/_remote.repositories | 3 + .../4.1.7/metrics-parent-4.1.7.pom | 381 ++ .../metrics-parent-4.1.7.pom.lastUpdated | 11 + .../4.1.7/metrics-parent-4.1.7.pom.sha1 | 1 + .../4.2.19/_remote.repositories | 3 + .../4.2.19/metrics-parent-4.2.19.pom | 468 +++ .../metrics-parent-4.2.19.pom.lastUpdated | 9 + .../4.2.19/metrics-parent-4.2.19.pom.sha1 | 1 + .../4.2.25/_remote.repositories | 3 + .../4.2.25/metrics-parent-4.2.25.pom | 478 +++ .../metrics-parent-4.2.25.pom.lastUpdated | 9 + .../4.2.25/metrics-parent-4.2.25.pom.sha1 | 1 + .../5.12.4/_remote.repositories | 3 + .../5.12.4/kubernetes-client-bom-5.12.4.pom | 636 ++++ .../kubernetes-client-bom-5.12.4.pom.sha1 | 1 + .../mxparser/1.2.2/_remote.repositories | 3 + .../mxparser/1.2.2/mxparser-1.2.2.pom | 639 ++++ .../mxparser/1.2.2/mxparser-1.2.2.pom.sha1 | 1 + .../jjwt/0.9.1/_remote.repositories | 3 + .../io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom | 481 +++ .../jjwt/0.9.1/jjwt-0.9.1.pom.sha1 | 1 + .../1.12.5/_remote.repositories | 3 + .../1.12.5/micrometer-bom-1.12.5.pom | 207 ++ .../micrometer-bom-1.12.5.pom.lastUpdated | 9 + .../1.12.5/micrometer-bom-1.12.5.pom.sha1 | 1 + .../micrometer-bom/1.5.1/_remote.repositories | 3 + .../1.5.1/micrometer-bom-1.5.1.pom | 174 + .../micrometer-bom-1.5.1.pom.lastUpdated | 11 + .../1.5.1/micrometer-bom-1.5.1.pom.sha1 | 1 + .../1.12.5/_remote.repositories | 3 + .../1.12.5/micrometer-commons-1.12.5.pom | 78 + .../1.12.5/micrometer-commons-1.12.5.pom.sha1 | 1 + .../1.12.5/_remote.repositories | 3 + .../1.12.5/micrometer-core-1.12.5.pom | 304 ++ .../1.12.5/micrometer-core-1.12.5.pom.sha1 | 1 + .../1.12.5/_remote.repositories | 3 + .../1.12.5/micrometer-observation-1.12.5.pom | 91 + .../micrometer-observation-1.12.5.pom.sha1 | 1 + .../1.2.5/_remote.repositories | 3 + .../1.2.5/micrometer-tracing-bom-1.2.5.pom | 109 + ...crometer-tracing-bom-1.2.5.pom.lastUpdated | 9 + .../micrometer-tracing-bom-1.2.5.pom.sha1 | 1 + .../4.1.107.Final/_remote.repositories | 3 + .../4.1.107.Final/netty-bom-4.1.107.Final.pom | 387 ++ .../netty-bom-4.1.107.Final.pom.sha1 | 1 + .../4.1.109.Final/_remote.repositories | 3 + .../4.1.109.Final/netty-bom-4.1.109.Final.pom | 387 ++ .../netty-bom-4.1.109.Final.pom.lastUpdated | 9 + .../netty-bom-4.1.109.Final.pom.sha1 | 1 + .../4.1.49.Final/_remote.repositories | 3 + .../4.1.49.Final/netty-bom-4.1.49.Final.pom | 235 ++ .../netty-bom-4.1.49.Final.pom.lastUpdated | 11 + .../netty-bom-4.1.49.Final.pom.sha1 | 1 + .../4.1.97.Final/_remote.repositories | 3 + .../4.1.97.Final/netty-bom-4.1.97.Final.pom | 375 ++ .../netty-bom-4.1.97.Final.pom.sha1 | 1 + .../1.31.0/_remote.repositories | 3 + .../1.31.0/opentelemetry-bom-1.31.0.pom | 184 + .../opentelemetry-bom-1.31.0.pom.lastUpdated | 9 + .../1.31.0/opentelemetry-bom-1.31.0.pom.sha1 | 1 + .../reactor-bom/2023.0.5/_remote.repositories | 3 + .../2023.0.5/reactor-bom-2023.0.5.pom | 133 + .../reactor-bom-2023.0.5.pom.lastUpdated | 9 + .../2023.0.5/reactor-bom-2023.0.5.pom.sha1 | 1 + .../Dysprosium-SR7/_remote.repositories | 3 + .../reactor-bom-Dysprosium-SR7.pom | 117 + ...reactor-bom-Dysprosium-SR7.pom.lastUpdated | 11 + .../reactor-bom-Dysprosium-SR7.pom.sha1 | 1 + .../reactor-core/3.6.5/_remote.repositories | 3 + .../reactor-core/3.6.5/reactor-core-3.6.5.pom | 56 + .../3.6.5/reactor-core-3.6.5.pom.sha1 | 1 + .../parent/0.16.0/_remote.repositories | 3 + .../parent/0.16.0/parent-0.16.0.pom | 313 ++ .../0.16.0/parent-0.16.0.pom.lastUpdated | 9 + .../parent/0.16.0/parent-0.16.0.pom.sha1 | 1 + .../0.16.0/_remote.repositories | 3 + .../0.16.0/simpleclient_bom-0.16.0.pom | 146 + .../simpleclient_bom-0.16.0.pom.lastUpdated | 9 + .../0.16.0/simpleclient_bom-0.16.0.pom.sha1 | 1 + .../r2dbc-bom/Arabba-SR3/_remote.repositories | 3 + .../Arabba-SR3/r2dbc-bom-Arabba-SR3.pom | 99 + .../r2dbc-bom-Arabba-SR3.pom.lastUpdated | 11 + .../Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.sha1 | 1 + .../5.3.2/_remote.repositories | 3 + .../5.3.2/rest-assured-bom-5.3.2.pom | 112 + .../rest-assured-bom-5.3.2.pom.lastUpdated | 9 + .../5.3.2/rest-assured-bom-5.3.2.pom.sha1 | 1 + .../rsocket-bom/1.0.0/_remote.repositories | 3 + .../rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom | 84 + .../1.0.0/rsocket-bom-1.0.0.pom.lastUpdated | 11 + .../1.0.0/rsocket-bom-1.0.0.pom.sha1 | 1 + .../rsocket-bom/1.1.3/_remote.repositories | 3 + .../rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom | 79 + .../1.1.3/rsocket-bom-1.1.3.pom.lastUpdated | 9 + .../1.1.3/rsocket-bom-1.1.3.pom.sha1 | 1 + .../jandex-parent/3.1.2/_remote.repositories | 3 + .../3.1.2/jandex-parent-3.1.2.pom | 185 + .../3.1.2/jandex-parent-3.1.2.pom.sha1 | 1 + .../jandex/3.1.2/_remote.repositories | 3 + .../io/smallrye/jandex/3.1.2/jandex-3.1.2.pom | 172 + .../jandex/3.1.2/jandex-3.1.2.pom.sha1 | 1 + .../39/_remote.repositories | 3 + .../39/smallrye-build-parent-39.pom | 815 +++++ .../39/smallrye-build-parent-39.pom.sha1 | 1 + .../brave-bom/5.16.0/_remote.repositories | 3 + .../brave-bom/5.16.0/brave-bom-5.16.0.pom | 335 ++ .../5.16.0/brave-bom-5.16.0.pom.lastUpdated | 9 + .../5.16.0/brave-bom-5.16.0.pom.sha1 | 1 + .../2.16.3/_remote.repositories | 3 + .../2.16.3/zipkin-reporter-bom-2.16.3.pom | 199 + ...zipkin-reporter-bom-2.16.3.pom.lastUpdated | 9 + .../zipkin-reporter-bom-2.16.3.pom.sha1 | 1 + .../2.1.3/_remote.repositories | 3 + .../2.1.3/jakarta.activation-api-2.1.3.pom | 421 +++ .../jakarta.activation-api-2.1.3.pom.sha1 | 1 + .../2.1.1/_remote.repositories | 3 + .../2.1.1/jakarta.annotation-api-2.1.1.pom | 366 ++ .../jakarta.annotation-api-2.1.1.pom.sha1 | 1 + .../3.0.0/_remote.repositories | 3 + .../jakarta.authentication-api-3.0.0.pom | 290 ++ .../jakarta.authentication-api-3.0.0.pom.sha1 | 1 + .../2.1.0/_remote.repositories | 3 + .../2.1.0/jakarta.authorization-api-2.1.0.pom | 310 ++ .../jakarta.authorization-api-2.1.0.pom.sha1 | 1 + .../2.1.1/_remote.repositories | 3 + .../2.1.1/batch-api-parent-2.1.1.pom | 236 ++ .../2.1.1/batch-api-parent-2.1.1.pom.sha1 | 1 + .../2.1.1/_remote.repositories | 3 + .../2.1.1/jakarta.batch-api-2.1.1.pom | 142 + .../2.1.1/jakarta.batch-api-2.1.1.pom.sha1 | 1 + .../4.0.1/_remote.repositories | 3 + .../4.0.1/jakarta.ejb-api-4.0.1.pom | 436 +++ .../4.0.1/jakarta.ejb-api-4.0.1.pom.sha1 | 1 + .../jakarta.el-api/5.0.1/_remote.repositories | 3 + .../5.0.1/jakarta.el-api-5.0.1.pom | 283 ++ .../5.0.1/jakarta.el-api-5.0.1.pom.sha1 | 1 + .../4.0.1/_remote.repositories | 3 + .../jakarta.enterprise.cdi-api-4.0.1.pom | 412 +++ .../jakarta.enterprise.cdi-api-4.0.1.pom.sha1 | 1 + .../4.0.1/_remote.repositories | 3 + .../jakarta.enterprise.cdi-parent-4.0.1.pom | 82 + ...karta.enterprise.cdi-parent-4.0.1.pom.sha1 | 1 + .../4.0.1/_remote.repositories | 3 + .../jakarta.enterprise.lang-model-4.0.1.pom | 120 + ...karta.enterprise.lang-model-4.0.1.pom.sha1 | 1 + .../4.0.1/_remote.repositories | 3 + .../4.0.1/jakarta.faces-api-4.0.1.pom | 165 + .../4.0.1/jakarta.faces-api-4.0.1.pom.sha1 | 1 + .../2.0.1/_remote.repositories | 3 + .../2.0.1/jakarta.inject-api-2.0.1.pom | 188 + .../2.0.1/jakarta.inject-api-2.0.1.pom.sha1 | 1 + .../2.1.0/_remote.repositories | 3 + .../2.1.0/jakarta.interceptor-api-2.1.0.pom | 300 ++ .../jakarta.interceptor-api-2.1.0.pom.sha1 | 1 + .../3.1.0/_remote.repositories | 3 + .../3.1.0/jakarta.jms-api-3.1.0.pom | 228 ++ .../3.1.0/jakarta.jms-api-3.1.0.pom.sha1 | 1 + .../3.0.1/_remote.repositories | 3 + .../3.0.1/jakarta.json.bind-api-3.0.1.pom | 491 +++ .../jakarta.json.bind-api-3.0.1.pom.sha1 | 1 + .../2.1.3/_remote.repositories | 3 + .../2.1.3/jakarta.json-api-2.1.3.pom | 417 +++ .../2.1.3/jakarta.json-api-2.1.3.pom.sha1 | 1 + .../2.1.3/_remote.repositories | 3 + .../2.1.3/jakarta.mail-api-2.1.3.pom | 501 +++ .../2.1.3/jakarta.mail-api-2.1.3.pom.sha1 | 1 + .../3.1.0/_remote.repositories | 3 + .../3.1.0/jakarta.persistence-api-3.1.0.pom | 359 ++ .../jakarta.persistence-api-3.1.0.pom.sha1 | 1 + .../10.0.0/_remote.repositories | 3 + .../10.0.0/jakarta.jakartaee-api-10.0.0.pom | 215 ++ .../jakarta.jakartaee-api-10.0.0.pom.sha1 | 1 + .../9.1.0/_remote.repositories | 3 + .../9.1.0/jakarta.jakartaee-bom-9.1.0.pom | 220 ++ .../jakarta.jakartaee-bom-9.1.0.pom.sha1 | 1 + .../10.0.0/_remote.repositories | 3 + .../jakarta.jakartaee-web-api-10.0.0.pom | 349 ++ .../jakarta.jakartaee-web-api-10.0.0.pom.sha1 | 1 + .../9.1.0/_remote.repositories | 3 + .../9.1.0/jakartaee-api-parent-9.1.0.pom | 320 ++ .../9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 | 1 + .../2.1.0/_remote.repositories | 3 + .../2.1.0/jakarta.resource-api-2.1.0.pom | 296 ++ .../2.1.0/jakarta.resource-api-2.1.0.pom.sha1 | 1 + .../3.0.0/_remote.repositories | 3 + .../jakarta.security.enterprise-api-3.0.0.pom | 336 ++ ...rta.security.enterprise-api-3.0.0.pom.sha1 | 1 + .../6.0.0/_remote.repositories | 3 + .../6.0.0/jakarta.servlet-api-6.0.0.pom | 462 +++ .../6.0.0/jakarta.servlet-api-6.0.0.pom.sha1 | 1 + .../3.1.0/_remote.repositories | 3 + .../3.1.0/jakarta.servlet.jsp-api-3.1.0.pom | 289 ++ .../jakarta.servlet.jsp-api-3.1.0.pom.sha1 | 1 + .../3.0.0/_remote.repositories | 3 + .../jakarta.servlet.jsp.jstl-api-3.0.0.pom | 310 ++ ...akarta.servlet.jsp.jstl-api-3.0.0.pom.sha1 | 1 + .../2.0.1/_remote.repositories | 3 + .../2.0.1/jakarta.transaction-api-2.0.1.pom | 329 ++ .../jakarta.transaction-api-2.0.1.pom.sha1 | 1 + .../3.0.2/_remote.repositories | 3 + .../3.0.2/jakarta.validation-api-3.0.2.pom | 277 ++ .../jakarta.validation-api-3.0.2.pom.sha1 | 1 + .../2.1.1/_remote.repositories | 3 + .../2.1.1/jakarta.websocket-all-2.1.1.pom | 263 ++ .../jakarta.websocket-all-2.1.1.pom.sha1 | 1 + .../2.1.1/_remote.repositories | 3 + .../2.1.1/jakarta.websocket-api-2.1.1.pom | 115 + .../jakarta.websocket-api-2.1.1.pom.sha1 | 1 + .../2.1.1/_remote.repositories | 3 + .../jakarta.websocket-client-api-2.1.1.pom | 106 + ...akarta.websocket-client-api-2.1.1.pom.sha1 | 1 + .../ws/rs/all/3.1.0/_remote.repositories | 3 + .../jakarta/ws/rs/all/3.1.0/all-3.1.0.pom | 87 + .../ws/rs/all/3.1.0/all-3.1.0.pom.sha1 | 1 + .../3.1.0/_remote.repositories | 3 + .../3.1.0/jakarta.ws.rs-api-3.1.0.pom | 407 +++ .../3.1.0/jakarta.ws.rs-api-3.1.0.pom.sha1 | 1 + .../4.0.2/_remote.repositories | 3 + .../jakarta.xml.bind-api-parent-4.0.2.pom | 238 ++ ...jakarta.xml.bind-api-parent-4.0.2.pom.sha1 | 1 + .../4.0.2/_remote.repositories | 3 + .../4.0.2/jakarta.xml.bind-api-4.0.2.pom | 274 ++ .../4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 | 1 + .../1.2.0/_remote.repositories | 3 + .../1.2.0/javax.activation-api-1.2.0.pom | 146 + .../1.2.0/javax.activation-api-1.2.0.pom.sha1 | 1 + .../2.3.1/_remote.repositories | 3 + .../2.3.1/jaxb-api-parent-2.3.1.pom | 213 ++ .../2.3.1/jaxb-api-parent-2.3.1.pom.sha1 | 1 + .../bind/jaxb-api/2.3.1/_remote.repositories | 3 + .../bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom | 426 +++ .../jaxb-api/2.3.1/jaxb-api-2.3.1.pom.sha1 | 1 + .../joda-time/2.12.1/_remote.repositories | 3 + .../joda-time/2.12.1/joda-time-2.12.1.pom | 1090 ++++++ .../2.12.1/joda-time-2.12.1.pom.sha1 | 1 + .../joda-time/2.5/_remote.repositories | 3 + .../joda-time/joda-time/2.5/joda-time-2.5.pom | 750 ++++ .../joda-time/2.5/joda-time-2.5.pom.sha1 | 1 + .../junit/junit/4.13.2/_remote.repositories | 3 + .../junit/junit/4.13.2/junit-4.13.2.pom | 633 ++++ .../junit/junit/4.13.2/junit-4.13.2.pom.sha1 | 1 + code/arachne/logging-3.x-MDACA.jar | Bin 0 -> 22034 bytes .../1.14.13/_remote.repositories | 3 + .../1.14.13/byte-buddy-agent-1.14.13.pom | 231 ++ .../1.14.13/byte-buddy-agent-1.14.13.pom.sha1 | 1 + .../1.14.13/_remote.repositories | 3 + .../1.14.13/byte-buddy-parent-1.14.13.pom | 1345 +++++++ .../byte-buddy-parent-1.14.13.pom.sha1 | 1 + .../byte-buddy/1.14.13/_remote.repositories | 3 + .../byte-buddy/1.14.13/byte-buddy-1.14.13.pom | 384 ++ .../1.14.13/byte-buddy-1.14.13.pom.sha1 | 1 + .../jna-platform/5.5.0/_remote.repositories | 3 + .../jna-platform/5.5.0/jna-platform-5.5.0.pom | 61 + .../5.5.0/jna-platform-5.5.0.pom.sha1 | 1 + .../dev/jna/jna/5.13.0/_remote.repositories | 3 + .../java/dev/jna/jna/5.13.0/jna-5.13.0.pom | 63 + .../dev/jna/jna/5.13.0/jna-5.13.0.pom.sha1 | 1 + .../dev/jna/jna/5.5.0/_remote.repositories | 3 + .../net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom | 53 + .../java/dev/jna/jna/5.5.0/jna-5.5.0.pom.sha1 | 1 + .../java/jvnet-parent/1/_remote.repositories | 3 + .../java/jvnet-parent/1/jvnet-parent-1.pom | 157 + .../jvnet-parent/1/jvnet-parent-1.pom.sha1 | 1 + .../java/jvnet-parent/5/_remote.repositories | 3 + .../java/jvnet-parent/5/jvnet-parent-5.pom | 265 ++ .../jvnet-parent/5/jvnet-parent-5.pom.sha1 | 1 + .../jcip-annotations/1.0/_remote.repositories | 3 + .../1.0/jcip-annotations-1.0.pom | 14 + .../1.0/jcip-annotations-1.0.pom.sha1 | 1 + .../2.5.1/_remote.repositories | 3 + .../2.5.1/accessors-smart-2.5.1.pom | 252 ++ .../2.5.1/accessors-smart-2.5.1.pom.sha1 | 1 + .../json-smart/2.5.1/_remote.repositories | 3 + .../json-smart/2.5.1/json-smart-2.5.1.pom | 270 ++ .../2.5.1/json-smart-2.5.1.pom.sha1 | 1 + .../parent/17.0.1/_remote.repositories | 3 + .../parent/17.0.1/parent-17.0.1.pom | 1268 +++++++ .../17.0.1/parent-17.0.1.pom.lastUpdated | 11 + .../parent/17.0.1/parent-17.0.1.pom.sha1 | 1 + .../9.0.0/_remote.repositories | 3 + .../9.0.0/shib-networking-9.0.0.pom | 84 + .../shib-networking-9.0.0.pom.lastUpdated | 11 + .../9.0.0/shib-networking-9.0.0.pom.sha1 | 1 + .../shib-security/9.0.0/_remote.repositories | 3 + .../9.0.0/shib-security-9.0.0.pom | 93 + .../9.0.0/shib-security-9.0.0.pom.lastUpdated | 11 + .../9.0.0/shib-security-9.0.0.pom.sha1 | 1 + .../9.0.0/_remote.repositories | 3 + .../9.0.0/shib-shared-bom-9.0.0.pom | 85 + .../shib-shared-bom-9.0.0.pom.lastUpdated | 11 + .../9.0.0/shib-shared-bom-9.0.0.pom.sha1 | 1 + .../9.0.0/_remote.repositories | 3 + .../9.0.0/shib-shared-parent-9.0.0.pom | 142 + .../shib-shared-parent-9.0.0.pom.lastUpdated | 11 + .../9.0.0/shib-shared-parent-9.0.0.pom.sha1 | 1 + .../shib-support/9.0.0/_remote.repositories | 3 + .../shib-support/9.0.0/shib-support-9.0.0.pom | 70 + .../9.0.0/shib-support-9.0.0.pom.lastUpdated | 11 + .../9.0.0/shib-support-9.0.0.pom.sha1 | 1 + .../shib-velocity/9.0.0/_remote.repositories | 3 + .../9.0.0/shib-velocity-9.0.0.pom | 58 + .../9.0.0/shib-velocity-9.0.0.pom.lastUpdated | 11 + .../9.0.0/shib-velocity-9.0.0.pom.sha1 | 1 + .../antlr4-master/4.13.0/_remote.repositories | 3 + .../4.13.0/antlr4-master-4.13.0.pom | 181 + .../4.13.0/antlr4-master-4.13.0.pom.sha1 | 1 + .../4.5.1-1/_remote.repositories | 3 + .../4.5.1-1/antlr4-master-4.5.1-1.pom | 128 + .../4.5.1-1/antlr4-master-4.5.1-1.pom.sha1 | 1 + .../4.13.0/_remote.repositories | 3 + .../4.13.0/antlr4-runtime-4.13.0.pom | 121 + .../4.13.0/antlr4-runtime-4.13.0.pom.sha1 | 1 + .../4.5.1-1/_remote.repositories | 3 + .../4.5.1-1/antlr4-runtime-4.5.1-1.pom | 66 + .../4.5.1-1/antlr4-runtime-4.5.1-1.pom.sha1 | 1 + .../org/apache/apache/13/_remote.repositories | 3 + .../org/apache/apache/13/apache-13.pom | 384 ++ .../org/apache/apache/13/apache-13.pom.sha1 | 1 + .../org/apache/apache/16/_remote.repositories | 3 + .../org/apache/apache/16/apache-16.pom | 415 +++ .../org/apache/apache/16/apache-16.pom.sha1 | 1 + .../org/apache/apache/17/_remote.repositories | 3 + .../org/apache/apache/17/apache-17.pom | 426 +++ .../org/apache/apache/17/apache-17.pom.sha1 | 1 + .../org/apache/apache/18/_remote.repositories | 3 + .../org/apache/apache/18/apache-18.pom | 416 +++ .../apache/18/apache-18.pom.lastUpdated | 11 + .../org/apache/apache/18/apache-18.pom.sha1 | 1 + .../org/apache/apache/19/_remote.repositories | 3 + .../org/apache/apache/19/apache-19.pom | 420 +++ .../org/apache/apache/19/apache-19.pom.sha1 | 1 + .../org/apache/apache/21/_remote.repositories | 3 + .../org/apache/apache/21/apache-21.pom | 460 +++ .../apache/21/apache-21.pom.lastUpdated | 9 + .../org/apache/apache/21/apache-21.pom.sha1 | 1 + .../org/apache/apache/23/_remote.repositories | 3 + .../org/apache/apache/23/apache-23.pom | 492 +++ .../org/apache/apache/23/apache-23.pom.sha1 | 1 + .../org/apache/apache/24/_remote.repositories | 3 + .../org/apache/apache/24/apache-24.pom | 519 +++ .../org/apache/apache/24/apache-24.pom.sha1 | 1 + .../org/apache/apache/25/_remote.repositories | 3 + .../org/apache/apache/25/apache-25.pom | 536 +++ .../org/apache/apache/25/apache-25.pom.sha1 | 1 + .../org/apache/apache/27/_remote.repositories | 3 + .../org/apache/apache/27/apache-27.pom | 531 +++ .../org/apache/apache/27/apache-27.pom.sha1 | 1 + .../org/apache/apache/29/_remote.repositories | 3 + .../org/apache/apache/29/apache-29.pom | 538 +++ .../org/apache/apache/29/apache-29.pom.sha1 | 1 + .../org/apache/apache/30/_remote.repositories | 3 + .../org/apache/apache/30/apache-30.pom | 561 +++ .../apache/30/apache-30.pom.lastUpdated | 9 + .../org/apache/apache/30/apache-30.pom.sha1 | 1 + .../org/apache/apache/31/_remote.repositories | 3 + .../org/apache/apache/31/apache-31.pom | 567 +++ .../org/apache/apache/31/apache-31.pom.sha1 | 1 + .../org/apache/apache/32/_remote.repositories | 3 + .../org/apache/apache/32/apache-32.pom | 582 +++ .../org/apache/apache/32/apache-32.pom.sha1 | 1 + .../org/apache/apache/4/_remote.repositories | 3 + code/arachne/org/apache/apache/4/apache-4.pom | 113 + .../org/apache/apache/4/apache-4.pom.sha1 | 1 + .../org/apache/apache/7/_remote.repositories | 3 + code/arachne/org/apache/apache/7/apache-7.pom | 369 ++ .../org/apache/apache/7/apache-7.pom.sha1 | 1 + .../org/apache/apache/9/_remote.repositories | 3 + code/arachne/org/apache/apache/9/apache-9.pom | 393 ++ .../org/apache/apache/9/apache-9.pom.sha1 | 1 + .../4.1/_remote.repositories | 3 + .../4.1/commons-collections4-4.1.pom | 731 ++++ .../4.1/commons-collections4-4.1.pom.sha1 | 1 + .../1.24.0/_remote.repositories | 3 + .../1.24.0/commons-compress-1.24.0.pom | 637 ++++ .../1.24.0/commons-compress-1.24.0.pom.sha1 | 1 + .../1.26.0/_remote.repositories | 3 + .../1.26.0/commons-compress-1.26.0.pom | 642 ++++ .../1.26.0/commons-compress-1.26.0.pom.sha1 | 1 + .../commons-csv/1.9.0/_remote.repositories | 3 + .../commons-csv/1.9.0/commons-csv-1.9.0.pom | 527 +++ .../1.9.0/commons-csv-1.9.0.pom.sha1 | 1 + .../commons-io/1.3.2/_remote.repositories | 3 + .../commons-io/1.3.2/commons-io-1.3.2.pom | 14 + .../1.3.2/commons-io-1.3.2.pom.sha1 | 1 + .../commons-lang3/3.13.0/_remote.repositories | 3 + .../3.13.0/commons-lang3-3.13.0.pom | 1003 +++++ .../3.13.0/commons-lang3-3.13.0.pom.sha1 | 1 + .../commons-parent/17/_remote.repositories | 3 + .../commons-parent/17/commons-parent-17.pom | 785 ++++ .../17/commons-parent-17.pom.sha1 | 1 + .../commons-parent/24/_remote.repositories | 3 + .../commons-parent/24/commons-parent-24.pom | 1187 ++++++ .../24/commons-parent-24.pom.sha1 | 1 + .../commons-parent/25/_remote.repositories | 3 + .../commons-parent/25/commons-parent-25.pom | 1214 ++++++ .../25/commons-parent-25.pom.sha1 | 1 + .../commons-parent/3/_remote.repositories | 3 + .../commons-parent/3/commons-parent-3.pom | 325 ++ .../3/commons-parent-3.pom.sha1 | 1 + .../commons-parent/32/_remote.repositories | 3 + .../commons-parent/32/commons-parent-32.pom | 1301 +++++++ .../32/commons-parent-32.pom.sha1 | 1 + .../commons-parent/34/_remote.repositories | 3 + .../commons-parent/34/commons-parent-34.pom | 1386 +++++++ .../34/commons-parent-34.pom.sha1 | 1 + .../commons-parent/38/_remote.repositories | 3 + .../commons-parent/38/commons-parent-38.pom | 1559 ++++++++ .../38/commons-parent-38.pom.sha1 | 1 + .../commons-parent/39/_remote.repositories | 3 + .../commons-parent/39/commons-parent-39.pom | 1503 ++++++++ .../39/commons-parent-39.pom.sha1 | 1 + .../commons-parent/47/_remote.repositories | 3 + .../commons-parent/47/commons-parent-47.pom | 1944 ++++++++++ .../47/commons-parent-47.pom.sha1 | 1 + .../commons-parent/50/_remote.repositories | 3 + .../commons-parent/50/commons-parent-50.pom | 1879 ++++++++++ .../50/commons-parent-50.pom.sha1 | 1 + .../commons-parent/52/_remote.repositories | 3 + .../commons-parent/52/commons-parent-52.pom | 1943 ++++++++++ .../52/commons-parent-52.pom.sha1 | 1 + .../commons-parent/56/_remote.repositories | 3 + .../commons-parent/56/commons-parent-56.pom | 1995 ++++++++++ .../56/commons-parent-56.pom.sha1 | 1 + .../commons-parent/58/_remote.repositories | 3 + .../commons-parent/58/commons-parent-58.pom | 2007 ++++++++++ .../58/commons-parent-58.pom.sha1 | 1 + .../commons-parent/61/_remote.repositories | 3 + .../commons-parent/61/commons-parent-61.pom | 1953 ++++++++++ .../61/commons-parent-61.pom.sha1 | 1 + .../commons-parent/64/_remote.repositories | 3 + .../commons-parent/64/commons-parent-64.pom | 1876 ++++++++++ .../64/commons-parent-64.pom.sha1 | 1 + .../commons-parent/65/_remote.repositories | 3 + .../commons-parent/65/commons-parent-65.pom | 1876 ++++++++++ .../65/commons-parent-65.pom.sha1 | 1 + .../commons-parent/66/_remote.repositories | 3 + .../commons-parent/66/commons-parent-66.pom | 1880 ++++++++++ .../66/commons-parent-66.pom.sha1 | 1 + .../commons-parent/69/_remote.repositories | 3 + .../commons-parent/69/commons-parent-69.pom | 1880 ++++++++++ .../69/commons-parent-69.pom.sha1 | 1 + .../commons-text/1.11.0/_remote.repositories | 3 + .../1.11.0/commons-text-1.11.0.pom | 528 +++ .../1.11.0/commons-text-1.11.0.pom.sha1 | 1 + .../commons-text/1.12.0/_remote.repositories | 3 + .../1.12.0/commons-text-1.12.0.pom | 558 +++ .../1.12.0/commons-text-1.12.0.pom.sha1 | 1 + .../groovy-bom/4.0.21/_remote.repositories | 3 + .../groovy-bom/4.0.21/groovy-bom-4.0.21.pom | 996 +++++ .../4.0.21/groovy-bom-4.0.21.pom.lastUpdated | 9 + .../4.0.21/groovy-bom-4.0.21.pom.sha1 | 1 + .../5.2.3/_remote.repositories | 3 + .../5.2.3/httpclient5-cache-5.2.3.pom | 131 + .../5.2.3/httpclient5-cache-5.2.3.pom.sha1 | 1 + .../5.2.3/_remote.repositories | 3 + .../5.2.3/httpclient5-parent-5.2.3.pom | 448 +++ .../5.2.3/httpclient5-parent-5.2.3.pom.sha1 | 1 + .../httpclient5/5.2.3/_remote.repositories | 3 + .../httpclient5/5.2.3/httpclient5-5.2.3.pom | 183 + .../5.2.3/httpclient5-5.2.3.pom.sha1 | 1 + .../httpcore5-h2/5.2.4/_remote.repositories | 3 + .../httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom | 102 + .../5.2.4/httpcore5-h2-5.2.4.pom.sha1 | 1 + .../5.2.4/_remote.repositories | 3 + .../5.2.4/httpcore5-parent-5.2.4.pom | 368 ++ .../5.2.4/httpcore5-parent-5.2.4.pom.sha1 | 1 + .../httpcore5/5.2.4/_remote.repositories | 3 + .../core5/httpcore5/5.2.4/httpcore5-5.2.4.pom | 119 + .../httpcore5/5.2.4/httpcore5-5.2.4.pom.sha1 | 1 + .../13/_remote.repositories | 3 + .../13/httpcomponents-parent-13.pom | 917 +++++ .../13/httpcomponents-parent-13.pom.sha1 | 1 + .../log4j-api/2.23.0/_remote.repositories | 3 + .../log4j-api/2.23.0/log4j-api-2.23.0.pom | 104 + .../2.23.0/log4j-api-2.23.0.pom.sha1 | 1 + .../log4j-bom/2.13.2/_remote.repositories | 3 + .../log4j-bom/2.13.2/log4j-bom-2.13.2.pom | 210 ++ .../2.13.2/log4j-bom-2.13.2.pom.lastUpdated | 11 + .../2.13.2/log4j-bom-2.13.2.pom.sha1 | 1 + .../log4j-bom/2.21.1/_remote.repositories | 3 + .../log4j-bom/2.21.1/log4j-bom-2.21.1.pom | 372 ++ .../2.21.1/log4j-bom-2.21.1.pom.lastUpdated | 9 + .../2.21.1/log4j-bom-2.21.1.pom.sha1 | 1 + .../log4j-bom/2.23.0/_remote.repositories | 3 + .../log4j-bom/2.23.0/log4j-bom-2.23.0.pom | 367 ++ .../2.23.0/log4j-bom-2.23.0.pom.sha1 | 1 + .../log4j-core/2.23.0/_remote.repositories | 3 + .../log4j-core/2.23.0/log4j-core-2.23.0.pom | 269 ++ .../2.23.0/log4j-core-2.23.0.pom.sha1 | 1 + .../log4j-jul/2.21.1/_remote.repositories | 3 + .../log4j-jul/2.21.1/log4j-jul-2.21.1.pom | 130 + .../2.21.1/log4j-jul-2.21.1.pom.sha1 | 1 + .../2.21.1/_remote.repositories | 3 + .../2.21.1/log4j-slf4j2-impl-2.21.1.pom | 155 + .../2.21.1/log4j-slf4j2-impl-2.21.1.pom.sha1 | 1 + .../2.21.1/_remote.repositories | 3 + .../2.21.1/log4j-to-slf4j-2.21.1.pom | 122 + .../2.21.1/log4j-to-slf4j-2.21.1.pom.sha1 | 1 + .../log4j/log4j/2.21.1/_remote.repositories | 3 + .../log4j/log4j/2.21.1/log4j-2.21.1.pom | 957 +++++ .../log4j/log4j/2.21.1/log4j-2.21.1.pom.sha1 | 1 + .../log4j/log4j/2.23.0/_remote.repositories | 3 + .../log4j/log4j/2.23.0/log4j-2.23.0.pom | 996 +++++ .../log4j/log4j/2.23.0/log4j-2.23.0.pom.sha1 | 1 + .../logging-parent/1/_remote.repositories | 3 + .../logging-parent/1/logging-parent-1.pom | 84 + .../1/logging-parent-1.pom.lastUpdated | 11 + .../1/logging-parent-1.pom.sha1 | 1 + .../10.1.1/_remote.repositories | 3 + .../10.1.1/logging-parent-10.1.1.pom | 973 +++++ .../logging-parent-10.1.1.pom.lastUpdated | 9 + .../10.1.1/logging-parent-10.1.1.pom.sha1 | 1 + .../10.6.0/_remote.repositories | 3 + .../10.6.0/logging-parent-10.6.0.pom | 1337 +++++++ .../10.6.0/logging-parent-10.6.0.pom.sha1 | 1 + .../maven-parent/33/_remote.repositories | 3 + .../maven/maven-parent/33/maven-parent-33.pom | 1388 +++++++ .../33/maven-parent-33.pom.lastUpdated | 9 + .../maven-parent/33/maven-parent-33.pom.sha1 | 1 + .../maven-parent/34/_remote.repositories | 3 + .../maven/maven-parent/34/maven-parent-34.pom | 1362 +++++++ .../maven-parent/34/maven-parent-34.pom.sha1 | 1 + .../maven-parent/35/_remote.repositories | 3 + .../maven/maven-parent/35/maven-parent-35.pom | 1446 ++++++++ .../maven-parent/35/maven-parent-35.pom.sha1 | 1 + .../maven-parent/39/_remote.repositories | 3 + .../maven/maven-parent/39/maven-parent-39.pom | 1531 ++++++++ .../maven-parent/39/maven-parent-39.pom.sha1 | 1 + .../maven/maven/3.6.3/_remote.repositories | 3 + .../apache/maven/maven/3.6.3/maven-3.6.3.pom | 736 ++++ .../maven/3.6.3/maven-3.6.3.pom.lastUpdated | 9 + .../maven/maven/3.6.3/maven-3.6.3.pom.sha1 | 1 + .../3.2.0/_remote.repositories | 4 + .../3.2.0/maven-clean-plugin-3.2.0.jar | Bin 0 -> 35678 bytes .../3.2.0/maven-clean-plugin-3.2.0.jar.sha1 | 1 + .../3.2.0/maven-clean-plugin-3.2.0.pom | 153 + .../3.2.0/maven-clean-plugin-3.2.0.pom.sha1 | 1 + .../3.10.1/_remote.repositories | 4 + .../3.10.1/maven-compiler-plugin-3.10.1.jar | Bin 0 -> 61899 bytes .../maven-compiler-plugin-3.10.1.jar.sha1 | 1 + .../3.10.1/maven-compiler-plugin-3.10.1.pom | 362 ++ .../maven-compiler-plugin-3.10.1.pom.sha1 | 1 + .../3.1.2/_remote.repositories | 4 + .../3.1.2/maven-failsafe-plugin-3.1.2.jar | Bin 0 -> 53828 bytes .../maven-failsafe-plugin-3.1.2.jar.sha1 | 1 + .../3.1.2/maven-failsafe-plugin-3.1.2.pom | 296 ++ .../maven-failsafe-plugin-3.1.2.pom.sha1 | 1 + .../maven-plugins/34/_remote.repositories | 3 + .../maven-plugins/34/maven-plugins-34.pom | 289 ++ .../34/maven-plugins-34.pom.sha1 | 1 + .../maven-plugins/35/_remote.repositories | 3 + .../maven-plugins/35/maven-plugins-35.pom | 273 ++ .../35/maven-plugins-35.pom.sha1 | 1 + .../maven-plugins/39/_remote.repositories | 3 + .../maven-plugins/39/maven-plugins-39.pom | 236 ++ .../39/maven-plugins-39.pom.sha1 | 1 + .../3.3.1/_remote.repositories | 4 + .../3.3.1/maven-resources-plugin-3.3.1.jar | Bin 0 -> 30951 bytes .../maven-resources-plugin-3.3.1.jar.sha1 | 1 + .../3.3.1/maven-resources-plugin-3.3.1.pom | 237 ++ .../maven-resources-plugin-3.3.1.pom.sha1 | 1 + .../3.1.2/_remote.repositories | 4 + .../3.1.2/maven-surefire-plugin-3.1.2.jar | Bin 0 -> 43294 bytes .../maven-surefire-plugin-3.1.2.jar.sha1 | 1 + .../3.1.2/maven-surefire-plugin-3.1.2.pom | 174 + .../maven-surefire-plugin-3.1.2.pom.sha1 | 1 + .../3.3.1/_remote.repositories | 4 + .../3.3.1/maven-war-plugin-3.3.1.jar | Bin 0 -> 82457 bytes .../3.3.1/maven-war-plugin-3.3.1.jar.sha1 | 1 + .../3.3.1/maven-war-plugin-3.3.1.pom | 263 ++ .../3.3.1/maven-war-plugin-3.3.1.pom.sha1 | 1 + .../surefire/3.1.2/_remote.repositories | 3 + .../surefire/3.1.2/surefire-3.1.2.pom | 569 +++ .../surefire/3.1.2/surefire-3.1.2.pom.sha1 | 1 + .../3.17/_remote.repositories | 3 + .../3.17/poi-ooxml-schemas-3.17.pom | 68 + .../3.17/poi-ooxml-schemas-3.17.pom.sha1 | 1 + .../poi/poi-ooxml/3.17/_remote.repositories | 3 + .../poi/poi-ooxml/3.17/poi-ooxml-3.17.pom | 78 + .../poi-ooxml/3.17/poi-ooxml-3.17.pom.sha1 | 1 + .../apache/poi/poi/3.17/_remote.repositories | 3 + .../org/apache/poi/poi/3.17/poi-3.17.pom | 101 + .../org/apache/poi/poi/3.17/poi-3.17.pom.sha1 | 1 + .../xmlsec/3.0.2/_remote.repositories | 3 + .../santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom | 666 ++++ .../xmlsec/3.0.2/xmlsec-3.0.2.pom.sha1 | 1 + .../2.0.1/_remote.repositories | 3 + .../2.0.1/shiro-crypto-support-2.0.1.pom | 41 + .../2.0.1/shiro-crypto-support-2.0.1.pom.sha1 | 1 + .../2.0.1/_remote.repositories | 3 + .../2.0.1/shiro-hashes-argon2-2.0.1.pom | 99 + .../2.0.1/shiro-hashes-argon2-2.0.1.pom.sha1 | 1 + .../2.0.1/_remote.repositories | 3 + .../2.0.1/shiro-hashes-bcrypt-2.0.1.pom | 99 + .../2.0.1/shiro-hashes-bcrypt-2.0.1.pom.sha1 | 1 + .../shiro-cache/1.13.0/_remote.repositories | 3 + .../shiro-cache/1.13.0/shiro-cache-1.13.0.pom | 60 + .../1.13.0/shiro-cache-1.13.0.pom.sha1 | 1 + .../shiro-cache/2.0.1/_remote.repositories | 3 + .../shiro-cache/2.0.1/shiro-cache-2.0.1.pom | 65 + .../2.0.1/shiro-cache-2.0.1.pom.sha1 | 1 + .../1.13.0/_remote.repositories | 3 + .../1.13.0/shiro-config-core-1.13.0.pom | 60 + .../1.13.0/shiro-config-core-1.13.0.pom.sha1 | 1 + .../2.0.1/_remote.repositories | 3 + .../2.0.1/shiro-config-core-2.0.1.pom | 66 + .../2.0.1/shiro-config-core-2.0.1.pom.sha1 | 1 + .../1.13.0/_remote.repositories | 3 + .../1.13.0/shiro-config-ogdl-1.13.0.pom | 105 + .../1.13.0/shiro-config-ogdl-1.13.0.pom.sha1 | 1 + .../2.0.1/_remote.repositories | 3 + .../2.0.1/shiro-config-ogdl-2.0.1.pom | 114 + .../2.0.1/shiro-config-ogdl-2.0.1.pom.sha1 | 1 + .../shiro-config/1.13.0/_remote.repositories | 3 + .../1.13.0/shiro-config-1.13.0.pom | 40 + .../1.13.0/shiro-config-1.13.0.pom.sha1 | 1 + .../shiro-config/2.0.1/_remote.repositories | 3 + .../shiro-config/2.0.1/shiro-config-2.0.1.pom | 40 + .../2.0.1/shiro-config-2.0.1.pom.sha1 | 1 + .../shiro-core/1.13.0/_remote.repositories | 3 + .../shiro-core/1.13.0/shiro-core-1.13.0.pom | 135 + .../1.13.0/shiro-core-1.13.0.pom.sha1 | 1 + .../shiro-core/2.0.1/_remote.repositories | 3 + .../shiro-core/2.0.1/shiro-core-2.0.1.pom | 205 ++ .../2.0.1/shiro-core-2.0.1.pom.sha1 | 1 + .../1.13.0/_remote.repositories | 3 + .../1.13.0/shiro-crypto-cipher-1.13.0.pom | 85 + .../shiro-crypto-cipher-1.13.0.pom.sha1 | 1 + .../2.0.1/_remote.repositories | 3 + .../2.0.1/shiro-crypto-cipher-2.0.1.pom | 91 + .../2.0.1/shiro-crypto-cipher-2.0.1.pom.sha1 | 1 + .../1.13.0/_remote.repositories | 3 + .../1.13.0/shiro-crypto-core-1.13.0.pom | 59 + .../1.13.0/shiro-crypto-core-1.13.0.pom.sha1 | 1 + .../2.0.1/_remote.repositories | 3 + .../2.0.1/shiro-crypto-core-2.0.1.pom | 65 + .../2.0.1/shiro-crypto-core-2.0.1.pom.sha1 | 1 + .../1.13.0/_remote.repositories | 3 + .../1.13.0/shiro-crypto-hash-1.13.0.pom | 81 + .../1.13.0/shiro-crypto-hash-1.13.0.pom.sha1 | 1 + .../2.0.1/_remote.repositories | 3 + .../2.0.1/shiro-crypto-hash-2.0.1.pom | 94 + .../2.0.1/shiro-crypto-hash-2.0.1.pom.sha1 | 1 + .../shiro-crypto/1.13.0/_remote.repositories | 3 + .../1.13.0/shiro-crypto-1.13.0.pom | 41 + .../1.13.0/shiro-crypto-1.13.0.pom.sha1 | 1 + .../shiro-crypto/2.0.1/_remote.repositories | 3 + .../shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom | 42 + .../2.0.1/shiro-crypto-2.0.1.pom.sha1 | 1 + .../shiro-event/1.13.0/_remote.repositories | 3 + .../shiro-event/1.13.0/shiro-event-1.13.0.pom | 60 + .../1.13.0/shiro-event-1.13.0.pom.sha1 | 1 + .../shiro-event/2.0.1/_remote.repositories | 3 + .../shiro-event/2.0.1/shiro-event-2.0.1.pom | 65 + .../2.0.1/shiro-event-2.0.1.pom.sha1 | 1 + .../shiro-lang/1.13.0/_remote.repositories | 3 + .../shiro-lang/1.13.0/shiro-lang-1.13.0.pom | 79 + .../1.13.0/shiro-lang-1.13.0.pom.sha1 | 1 + .../shiro-lang/2.0.1/_remote.repositories | 3 + .../shiro-lang/2.0.1/shiro-lang-2.0.1.pom | 88 + .../2.0.1/shiro-lang-2.0.1.pom.sha1 | 1 + .../shiro-root/1.13.0/_remote.repositories | 3 + .../shiro-root/1.13.0/shiro-root-1.13.0.pom | 1710 +++++++++ .../1.13.0/shiro-root-1.13.0.pom.sha1 | 1 + .../shiro-root/2.0.1/_remote.repositories | 3 + .../shiro-root/2.0.1/shiro-root-2.0.1.pom | 1848 ++++++++++ .../2.0.1/shiro-root-2.0.1.pom.sha1 | 1 + .../shiro-spring/2.0.1/_remote.repositories | 3 + .../shiro-spring/2.0.1/shiro-spring-2.0.1.pom | 121 + .../2.0.1/shiro-spring-2.0.1.pom.sha1 | 1 + .../shiro-support/2.0.1/_remote.repositories | 3 + .../2.0.1/shiro-support-2.0.1.pom | 48 + .../2.0.1/shiro-support-2.0.1.pom.sha1 | 1 + .../shiro-web/1.13.0/_remote.repositories | 3 + .../shiro-web/1.13.0/shiro-web-1.13.0.pom | 116 + .../1.13.0/shiro-web-1.13.0.pom.sha1 | 1 + .../shiro-web/2.0.1/_remote.repositories | 3 + .../shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom | 126 + .../shiro-web/2.0.1/shiro-web-2.0.1.pom.sha1 | 1 + .../10.1.20/_remote.repositories | 3 + .../10.1.20/tomcat-embed-core-10.1.20.pom | 43 + .../tomcat-embed-core-10.1.20.pom.sha1 | 1 + .../10.1.20/_remote.repositories | 3 + .../10.1.20/tomcat-embed-el-10.1.20.pom | 35 + .../10.1.20/tomcat-embed-el-10.1.20.pom.sha1 | 1 + .../10.1.20/_remote.repositories | 3 + .../tomcat-embed-websocket-10.1.20.pom | 43 + .../tomcat-embed-websocket-10.1.20.pom.sha1 | 1 + .../2.3/_remote.repositories | 3 + .../2.3/velocity-engine-core-2.3.pom | 293 ++ .../2.3/velocity-engine-core-2.3.pom.sha1 | 1 + .../2.3/_remote.repositories | 3 + .../2.3/velocity-engine-parent-2.3.pom | 371 ++ .../2.3/velocity-engine-parent-2.3.pom.sha1 | 1 + .../velocity-master/4/_remote.repositories | 3 + .../velocity-master/4/velocity-master-4.pom | 246 ++ .../4/velocity-master-4.pom.sha1 | 1 + .../xmlbeans/2.6.0/_remote.repositories | 3 + .../xmlbeans/2.6.0/xmlbeans-2.6.0.pom | 99 + .../xmlbeans/2.6.0/xmlbeans-2.6.0.pom.sha1 | 1 + .../4.0.4/_remote.repositories | 3 + .../4.0.4/cas-client-core-4.0.4.pom | 106 + .../4.0.4/cas-client-core-4.0.4.pom.sha1 | 1 + .../4.0.4/_remote.repositories | 3 + .../4.0.4/cas-client-support-saml-4.0.4.pom | 58 + .../cas-client-support-saml-4.0.4.pom.sha1 | 1 + .../cas-client/4.0.4/_remote.repositories | 3 + .../cas-client/4.0.4/cas-client-4.0.4.pom | 273 ++ .../4.0.4/cas-client-4.0.4.pom.sha1 | 1 + .../1.1.2/_remote.repositories | 3 + .../1.1.2/apiguardian-api-1.1.2.pom | 34 + .../1.1.2/apiguardian-api-1.1.2.pom.sha1 | 1 + .../aspectjrt/1.9.22/_remote.repositories | 3 + .../aspectjrt/1.9.22/aspectjrt-1.9.22.pom | 60 + .../1.9.22/aspectjrt-1.9.22.pom.sha1 | 1 + .../aspectjweaver/1.9.22/_remote.repositories | 3 + .../1.9.22/aspectjweaver-1.9.22.pom | 60 + .../1.9.22/aspectjweaver-1.9.22.pom.sha1 | 1 + .../assertj-bom/3.24.2/_remote.repositories | 3 + .../assertj-bom/3.24.2/assertj-bom-3.24.2.pom | 124 + .../3.24.2/assertj-bom-3.24.2.pom.lastUpdated | 9 + .../3.24.2/assertj-bom-3.24.2.pom.sha1 | 1 + .../assertj-build/3.24.2/_remote.repositories | 3 + .../3.24.2/assertj-build-3.24.2.pom | 277 ++ .../3.24.2/assertj-build-3.24.2.pom.sha1 | 1 + .../assertj-core/3.24.2/_remote.repositories | 3 + .../3.24.2/assertj-core-3.24.2.pom | 535 +++ .../3.24.2/assertj-core-3.24.2.pom.sha1 | 1 + .../3.24.2/_remote.repositories | 3 + .../3.24.2/assertj-parent-3.24.2.pom | 358 ++ .../3.24.2/assertj-parent-3.24.2.pom.sha1 | 1 + .../4.2.1/_remote.repositories | 3 + .../4.2.1/awaitility-parent-4.2.1.pom | 297 ++ .../4.2.1/awaitility-parent-4.2.1.pom.sha1 | 1 + .../awaitility/4.2.1/_remote.repositories | 3 + .../awaitility/4.2.1/awaitility-4.2.1.pom | 86 + .../4.2.1/awaitility-4.2.1.pom.sha1 | 1 + .../55/_remote.repositories | 3 + .../55/basepom-foundation-55.pom | 1181 ++++++ .../55/basepom-foundation-55.pom.sha1 | 1 + .../basepom-minimal/55/_remote.repositories | 3 + .../basepom-minimal/55/basepom-minimal-55.pom | 344 ++ .../55/basepom-minimal-55.pom.sha1 | 1 + .../bcpkix-jdk15on/1.63/_remote.repositories | 3 + .../1.63/bcpkix-jdk15on-1.63.pom | 40 + .../1.63/bcpkix-jdk15on-1.63.pom.sha1 | 1 + .../bcpkix-jdk15on/1.70/_remote.repositories | 3 + .../1.70/bcpkix-jdk15on-1.70.pom | 46 + .../1.70/bcpkix-jdk15on-1.70.pom.sha1 | 1 + .../bcpkix-jdk18on/1.76/_remote.repositories | 3 + .../1.76/bcpkix-jdk18on-1.76.pom | 46 + .../1.76/bcpkix-jdk18on-1.76.pom.sha1 | 1 + .../bcprov-jdk15on/1.63/_remote.repositories | 3 + .../1.63/bcprov-jdk15on-1.63.pom | 32 + .../1.63/bcprov-jdk15on-1.63.pom.sha1 | 1 + .../bcprov-jdk15on/1.69/_remote.repositories | 3 + .../1.69/bcprov-jdk15on-1.69.pom | 32 + .../1.69/bcprov-jdk15on-1.69.pom.sha1 | 1 + .../bcprov-jdk15on/1.70/_remote.repositories | 3 + .../1.70/bcprov-jdk15on-1.70.pom | 32 + .../1.70/bcprov-jdk15on-1.70.pom.sha1 | 1 + .../bcprov-jdk18on/1.71/_remote.repositories | 3 + .../1.71/bcprov-jdk18on-1.71.pom | 32 + .../1.71/bcprov-jdk18on-1.71.pom.sha1 | 1 + .../bcprov-jdk18on/1.76/_remote.repositories | 3 + .../1.76/bcprov-jdk18on-1.76.pom | 32 + .../1.76/bcprov-jdk18on-1.76.pom.sha1 | 1 + .../1.78.1/_remote.repositories | 3 + .../1.78.1/bcprov-jdk18on-1.78.1.pom | 32 + .../1.78.1/bcprov-jdk18on-1.78.1.pom.sha1 | 1 + .../bcutil-jdk15on/1.70/_remote.repositories | 3 + .../1.70/bcutil-jdk15on-1.70.pom | 40 + .../1.70/bcutil-jdk15on-1.70.pom.sha1 | 1 + .../bcutil-jdk18on/1.76/_remote.repositories | 3 + .../1.76/bcutil-jdk18on-1.76.pom | 40 + .../1.76/bcutil-jdk18on-1.76.pom.sha1 | 1 + .../checker-qual/2.0.0/_remote.repositories | 3 + .../checker-qual/2.0.0/checker-qual-2.0.0.pom | 103 + .../2.0.0/checker-qual-2.0.0.pom.sha1 | 1 + .../checker-qual/2.11.1/_remote.repositories | 3 + .../2.11.1/checker-qual-2.11.1.pom | 65 + .../2.11.1/checker-qual-2.11.1.pom.sha1 | 1 + .../checker-qual/3.12.0/_remote.repositories | 3 + .../3.12.0/checker-qual-3.12.0.pom | 47 + .../3.12.0/checker-qual-3.12.0.pom.sha1 | 1 + .../checker-qual/3.31.0/_remote.repositories | 3 + .../3.31.0/checker-qual-3.31.0.pom | 47 + .../3.31.0/checker-qual-3.31.0.pom.sha1 | 1 + .../checker-qual/3.33.0/_remote.repositories | 3 + .../3.33.0/checker-qual-3.33.0.pom | 47 + .../3.33.0/checker-qual-3.33.0.pom.sha1 | 1 + .../checker-qual/3.37.0/_remote.repositories | 3 + .../3.37.0/checker-qual-3.37.0.pom | 47 + .../3.37.0/checker-qual-3.37.0.pom.sha1 | 1 + .../checker-qual/3.42.0/_remote.repositories | 3 + .../3.42.0/checker-qual-3.42.0.pom | 47 + .../3.42.0/checker-qual-3.42.0.pom.sha1 | 1 + .../codehaus-parent/4/_remote.repositories | 3 + .../codehaus-parent/4/codehaus-parent-4.pom | 155 + .../4/codehaus-parent-4.pom.sha1 | 1 + .../groovy-bom/3.0.19/_remote.repositories | 3 + .../groovy-bom/3.0.19/groovy-bom-3.0.19.pom | 975 +++++ .../3.0.19/groovy-bom-3.0.19.pom.sha1 | 1 + .../groovy-bom/3.0.20/_remote.repositories | 3 + .../groovy-bom/3.0.20/groovy-bom-3.0.20.pom | 975 +++++ .../3.0.20/groovy-bom-3.0.20.pom.sha1 | 1 + .../jettison/1.5.4/_remote.repositories | 3 + .../jettison/1.5.4/jettison-1.5.4.pom | 209 ++ .../jettison/1.5.4/jettison-1.5.4.pom.sha1 | 1 + .../1.14/_remote.repositories | 3 + .../1.14/animal-sniffer-annotations-1.14.pom | 70 + .../animal-sniffer-annotations-1.14.pom.sha1 | 1 + .../1.14/_remote.repositories | 3 + .../1.14/animal-sniffer-parent-1.14.pom | 123 + .../1.14/animal-sniffer-parent-1.14.pom.sha1 | 1 + .../mojo/mojo-parent/34/_remote.repositories | 3 + .../mojo/mojo-parent/34/mojo-parent-34.pom | 667 ++++ .../mojo-parent/34/mojo-parent-34.pom.sha1 | 1 + .../cryptacular/1.2.5/_remote.repositories | 3 + .../cryptacular/1.2.5/cryptacular-1.2.5.pom | 399 ++ .../1.2.5/cryptacular-1.2.5.pom.sha1 | 1 + .../cryptacular/1.2.6/_remote.repositories | 3 + .../cryptacular/1.2.6/cryptacular-1.2.6.pom | 400 ++ .../1.2.6/cryptacular-1.2.6.pom.sha1 | 1 + .../dbunit/dbunit/2.7.0/_remote.repositories | 3 + .../org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom | 1460 ++++++++ .../dbunit/dbunit/2.7.0/dbunit-2.7.0.pom.sha1 | 1 + .../dom4j/dom4j/2.1.3/_remote.repositories | 3 + .../org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom | 77 + .../dom4j/dom4j/2.1.3/dom4j-2.1.3.pom.sha1 | 1 + .../2.0.2/_remote.repositories | 3 + .../2.0.2/angus-activation-project-2.0.2.pom | 496 +++ .../angus-activation-project-2.0.2.pom.sha1 | 1 + .../2.0.2/_remote.repositories | 3 + .../2.0.2/angus-activation-2.0.2.pom | 108 + .../2.0.2/angus-activation-2.0.2.pom.sha1 | 1 + .../8.0.0/_remote.repositories | 3 + .../8.0.0/eclipse-collections-api-8.0.0.pom | 171 + .../eclipse-collections-api-8.0.0.pom.sha1 | 1 + .../8.0.0/_remote.repositories | 3 + .../eclipse-collections-parent-8.0.0.pom | 657 ++++ .../eclipse-collections-parent-8.0.0.pom.sha1 | 1 + .../8.0.0/_remote.repositories | 3 + .../8.0.0/eclipse-collections-8.0.0.pom | 177 + .../8.0.0/eclipse-collections-8.0.0.pom.sha1 | 1 + .../ee4j/project/1.0.5/_remote.repositories | 3 + .../ee4j/project/1.0.5/project-1.0.5.pom | 311 ++ .../ee4j/project/1.0.5/project-1.0.5.pom.sha1 | 1 + .../ee4j/project/1.0.6/_remote.repositories | 3 + .../ee4j/project/1.0.6/project-1.0.6.pom | 313 ++ .../ee4j/project/1.0.6/project-1.0.6.pom.sha1 | 1 + .../ee4j/project/1.0.7/_remote.repositories | 3 + .../ee4j/project/1.0.7/project-1.0.7.pom | 332 ++ .../ee4j/project/1.0.7/project-1.0.7.pom.sha1 | 1 + .../ee4j/project/1.0.8/_remote.repositories | 3 + .../ee4j/project/1.0.8/project-1.0.8.pom | 339 ++ .../1.0.8/project-1.0.8.pom.lastUpdated | 9 + .../ee4j/project/1.0.8/project-1.0.8.pom.sha1 | 1 + .../ee4j/project/1.0.9/_remote.repositories | 3 + .../ee4j/project/1.0.9/project-1.0.9.pom | 381 ++ .../1.0.9/project-1.0.9.pom.lastUpdated | 9 + .../ee4j/project/1.0.9/project-1.0.9.pom.sha1 | 1 + .../ee4j/project/1.0/_remote.repositories | 3 + .../eclipse/ee4j/project/1.0/project-1.0.pom | 272 ++ .../ee4j/project/1.0/project-1.0.pom.sha1 | 1 + .../12.0.8/_remote.repositories | 3 + .../12.0.8/jetty-ee10-bom-12.0.8.pom | 252 ++ .../jetty-ee10-bom-12.0.8.pom.lastUpdated | 9 + .../12.0.8/jetty-ee10-bom-12.0.8.pom.sha1 | 1 + .../jetty-bom/12.0.8/_remote.repositories | 3 + .../jetty-bom/12.0.8/jetty-bom-12.0.8.pom | 402 ++ .../12.0.8/jetty-bom-12.0.8.pom.lastUpdated | 9 + .../12.0.8/jetty-bom-12.0.8.pom.sha1 | 1 + .../9.4.28.v20200408/_remote.repositories | 3 + .../jetty-bom-9.4.28.v20200408.pom | 473 +++ ...jetty-bom-9.4.28.v20200408.pom.lastUpdated | 11 + .../jetty-bom-9.4.28.v20200408.pom.sha1 | 1 + .../9.4.53.v20231009/_remote.repositories | 3 + .../jetty-bom-9.4.53.v20231009.pom | 481 +++ .../jetty-bom-9.4.53.v20231009.pom.sha1 | 1 + .../9.4.54.v20240208/_remote.repositories | 3 + .../jetty-bom-9.4.54.v20240208.pom | 481 +++ .../jetty-bom-9.4.54.v20240208.pom.sha1 | 1 + .../flyway-core/9.22.3/_remote.repositories | 3 + .../flyway-core/9.22.3/flyway-core-9.22.3.pom | 300 ++ .../9.22.3/flyway-core-9.22.3.pom.sha1 | 1 + .../flyway-parent/9.22.3/_remote.repositories | 3 + .../9.22.3/flyway-parent-9.22.3.pom | 1503 ++++++++ .../9.22.3/flyway-parent-9.22.3.pom.sha1 | 1 + .../freemarker/2.3.32/_remote.repositories | 3 + .../freemarker/2.3.32/freemarker-2.3.32.pom | 92 + .../2.3.32/freemarker-2.3.32.pom.sha1 | 1 + .../expressly/5.0.0/_remote.repositories | 3 + .../expressly/5.0.0/expressly-5.0.0.pom | 244 ++ .../expressly/5.0.0/expressly-5.0.0.pom.sha1 | 1 + .../class-model/3.0.6/_remote.repositories | 3 + .../class-model/3.0.6/class-model-3.0.6.pom | 116 + .../3.0.6/class-model-3.0.6.pom.sha1 | 1 + .../hk2/external/3.0.6/_remote.repositories | 3 + .../hk2/external/3.0.6/external-3.0.6.pom | 41 + .../external/3.0.6/external-3.0.6.pom.sha1 | 1 + .../3.0.6/_remote.repositories | 3 + .../3.0.6/aopalliance-repackaged-3.0.6.pom | 136 + .../aopalliance-repackaged-3.0.6.pom.sha1 | 1 + .../hk2/hk2-api/3.0.6/_remote.repositories | 3 + .../hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom | 99 + .../hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom.sha1 | 1 + .../hk2/hk2-core/3.0.6/_remote.repositories | 3 + .../hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom | 108 + .../hk2-core/3.0.6/hk2-core-3.0.6.pom.sha1 | 1 + .../hk2-locator/3.0.6/_remote.repositories | 3 + .../hk2-locator/3.0.6/hk2-locator-3.0.6.pom | 110 + .../3.0.6/hk2-locator-3.0.6.pom.sha1 | 1 + .../hk2/hk2-parent/3.0.6/_remote.repositories | 3 + .../hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom | 951 +++++ .../3.0.6/hk2-parent-3.0.6.pom.sha1 | 1 + .../hk2-runlevel/3.0.6/_remote.repositories | 3 + .../hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom | 110 + .../3.0.6/hk2-runlevel-3.0.6.pom.sha1 | 1 + .../hk2/hk2-utils/3.0.6/_remote.repositories | 3 + .../hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom | 127 + .../hk2-utils/3.0.6/hk2-utils-3.0.6.pom.sha1 | 1 + .../hk2/hk2/3.0.6/_remote.repositories | 3 + .../org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom | 120 + .../hk2/hk2/3.0.6/hk2-3.0.6.pom.sha1 | 1 + .../1.0.3/_remote.repositories | 3 + .../1.0.3/osgi-resource-locator-1.0.3.pom | 193 + .../osgi-resource-locator-1.0.3.pom.sha1 | 1 + .../spring-bridge/3.0.6/_remote.repositories | 3 + .../3.0.6/spring-bridge-3.0.6.pom | 97 + .../3.0.6/spring-bridge-3.0.6.pom.sha1 | 1 + .../jakarta.el/3.0.3/_remote.repositories | 3 + .../jakarta.el/3.0.3/jakarta.el-3.0.3.pom | 328 ++ .../3.0.3/jakarta.el-3.0.3.pom.sha1 | 1 + .../jakarta.json/2.0.1/_remote.repositories | 3 + .../jakarta.json/2.0.1/jakarta.json-2.0.1.pom | 248 ++ .../2.0.1/jakarta.json-2.0.1.pom.sha1 | 1 + .../jaxb/jaxb-bom/4.0.5/_remote.repositories | 3 + .../jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom | 292 ++ .../4.0.5/jaxb-bom-4.0.5.pom.lastUpdated | 9 + .../jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 | 1 + .../jaxb/jaxb-core/4.0.5/_remote.repositories | 3 + .../jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom | 104 + .../jaxb-core/4.0.5/jaxb-core-4.0.5.pom.sha1 | 1 + .../jaxb-runtime/4.0.5/_remote.repositories | 3 + .../jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom | 228 ++ .../4.0.5/jaxb-runtime-4.0.5.pom.sha1 | 1 + .../jaxb/txw2/4.0.5/_remote.repositories | 3 + .../glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom | 55 + .../jaxb/txw2/4.0.5/txw2-4.0.5.pom.sha1 | 1 + .../3.1.6/_remote.repositories | 3 + .../jersey-container-servlet-core-3.1.6.pom | 86 + ...rsey-container-servlet-core-3.1.6.pom.sha1 | 1 + .../3.1.6/_remote.repositories | 3 + .../3.1.6/jersey-container-servlet-3.1.6.pom | 88 + .../jersey-container-servlet-3.1.6.pom.sha1 | 1 + .../project/3.1.6/_remote.repositories | 3 + .../project/3.1.6/project-3.1.6.pom | 87 + .../project/3.1.6/project-3.1.6.pom.sha1 | 1 + .../jersey-client/3.1.6/_remote.repositories | 3 + .../3.1.6/jersey-client-3.1.6.pom | 178 + .../3.1.6/jersey-client-3.1.6.pom.sha1 | 1 + .../jersey-common/3.1.6/_remote.repositories | 3 + .../3.1.6/jersey-common-3.1.6.pom | 298 ++ .../3.1.6/jersey-common-3.1.6.pom.sha1 | 1 + .../jersey-server/3.1.6/_remote.repositories | 3 + .../3.1.6/jersey-server-3.1.6.pom | 306 ++ .../3.1.6/jersey-server-3.1.6.pom.sha1 | 1 + .../3.1.6/_remote.repositories | 3 + .../3.1.6/jersey-bean-validation-3.1.6.pom | 156 + .../jersey-bean-validation-3.1.6.pom.sha1 | 1 + .../3.1.6/_remote.repositories | 3 + .../3.1.6/jersey-entity-filtering-3.1.6.pom | 90 + .../jersey-entity-filtering-3.1.6.pom.sha1 | 1 + .../jersey-spring6/3.1.6/_remote.repositories | 3 + .../3.1.6/jersey-spring6-3.1.6.pom | 391 ++ .../3.1.6/jersey-spring6-3.1.6.pom.sha1 | 1 + .../ext/project/3.1.6/_remote.repositories | 3 + .../ext/project/3.1.6/project-3.1.6.pom | 79 + .../ext/project/3.1.6/project-3.1.6.pom.sha1 | 1 + .../jersey-hk2/3.1.6/_remote.repositories | 3 + .../jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom | 133 + .../3.1.6/jersey-hk2-3.1.6.pom.sha1 | 1 + .../inject/project/3.1.6/_remote.repositories | 3 + .../inject/project/3.1.6/project-3.1.6.pom | 40 + .../project/3.1.6/project-3.1.6.pom.sha1 | 1 + .../jersey-bom/2.30.1/_remote.repositories | 3 + .../jersey-bom/2.30.1/jersey-bom-2.30.1.pom | 425 +++ .../2.30.1/jersey-bom-2.30.1.pom.lastUpdated | 11 + .../2.30.1/jersey-bom-2.30.1.pom.sha1 | 1 + .../jersey-bom/3.1.6/_remote.repositories | 3 + .../jersey-bom/3.1.6/jersey-bom-3.1.6.pom | 462 +++ .../3.1.6/jersey-bom-3.1.6.pom.lastUpdated | 9 + .../3.1.6/jersey-bom-3.1.6.pom.sha1 | 1 + .../3.1.6/_remote.repositories | 3 + .../3.1.6/jersey-media-json-jackson-3.1.6.pom | 187 + .../jersey-media-json-jackson-3.1.6.pom.sha1 | 1 + .../3.1.6/_remote.repositories | 3 + .../3.1.6/jersey-media-multipart-3.1.6.pom | 139 + .../jersey-media-multipart-3.1.6.pom.sha1 | 1 + .../media/project/3.1.6/_remote.repositories | 3 + .../media/project/3.1.6/project-3.1.6.pom | 58 + .../project/3.1.6/project-3.1.6.pom.sha1 | 1 + .../jersey/project/3.1.6/_remote.repositories | 3 + .../jersey/project/3.1.6/project-3.1.6.pom | 2324 ++++++++++++ .../project/3.1.6/project-3.1.6.pom.sha1 | 1 + .../glassfish/json/2.0.1/_remote.repositories | 3 + .../org/glassfish/json/2.0.1/json-2.0.1.pom | 464 +++ .../glassfish/json/2.0.1/json-2.0.1.pom.sha1 | 1 + .../1.0.0-rc15/_remote.repositories | 3 + .../1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom | 36 + .../js-scriptengine-1.0.0-rc15.pom.sha1 | 1 + .../js/js/1.0.0-rc15/_remote.repositories | 3 + .../js/js/1.0.0-rc15/js-1.0.0-rc15.pom | 80 + .../js/js/1.0.0-rc15/js-1.0.0-rc15.pom.sha1 | 1 + .../regex/1.0.0-rc15/_remote.repositories | 3 + .../regex/1.0.0-rc15/regex-1.0.0-rc15.pom | 36 + .../1.0.0-rc15/regex-1.0.0-rc15.pom.sha1 | 1 + .../graal-sdk/1.0.0-rc15/_remote.repositories | 3 + .../1.0.0-rc15/graal-sdk-1.0.0-rc15.pom | 30 + .../1.0.0-rc15/graal-sdk-1.0.0-rc15.pom.sha1 | 1 + .../1.0.0-rc15/_remote.repositories | 3 + .../1.0.0-rc15/truffle-api-1.0.0-rc15.pom | 37 + .../truffle-api-1.0.0-rc15.pom.sha1 | 1 + .../hamcrest-core/2.2/_remote.repositories | 3 + .../hamcrest-core/2.2/hamcrest-core-2.2.pom | 43 + .../2.2/hamcrest-core-2.2.pom.sha1 | 1 + .../hamcrest/2.2/_remote.repositories | 3 + .../hamcrest/hamcrest/2.2/hamcrest-2.2.pom | 35 + .../hamcrest/2.2/hamcrest-2.2.pom.sha1 | 1 + .../2.1.12/HdrHistogram-2.1.12.pom | 268 ++ .../2.1.12/HdrHistogram-2.1.12.pom.sha1 | 1 + .../HdrHistogram/2.1.12/_remote.repositories | 3 + .../6.0.6.Final/_remote.repositories | 3 + ...ernate-commons-annotations-6.0.6.Final.pom | 45 + ...e-commons-annotations-6.0.6.Final.pom.sha1 | 1 + .../8.0.1.Final/_remote.repositories | 3 + .../hibernate-validator-8.0.1.Final.pom | 25 + .../hibernate-validator-8.0.1.Final.pom.sha1 | 1 + .../6.4.4.Final/_remote.repositories | 3 + .../hibernate-core-6.4.4.Final.pom | 183 + .../hibernate-core-6.4.4.Final.pom.sha1 | 1 + .../8.0.1.Final/_remote.repositories | 3 + ...hibernate-validator-parent-8.0.1.Final.pom | 1562 ++++++++ ...nate-validator-parent-8.0.1.Final.pom.sha1 | 1 + .../8.0.1.Final/_remote.repositories | 3 + ...rnate-validator-relocation-8.0.1.Final.pom | 27 + ...-validator-relocation-8.0.1.Final.pom.sha1 | 1 + .../8.0.1.Final/_remote.repositories | 3 + .../hibernate-validator-8.0.1.Final.pom | 349 ++ .../hibernate-validator-8.0.1.Final.pom.sha1 | 1 + .../14.0.27.Final/_remote.repositories | 3 + .../infinispan-bom-14.0.27.Final.pom | 560 +++ ...finispan-bom-14.0.27.Final.pom.lastUpdated | 9 + .../infinispan-bom-14.0.27.Final.pom.sha1 | 1 + .../14.0.27.Final/_remote.repositories | 3 + ...ild-configuration-parent-14.0.27.Final.pom | 519 +++ ...ation-parent-14.0.27.Final.pom.lastUpdated | 9 + ...onfiguration-parent-14.0.27.Final.pom.sha1 | 1 + .../3.6.1/_remote.repositories | 3 + .../3.6.1/cas-client-core-3.6.1.pom | 116 + .../3.6.1/cas-client-core-3.6.1.pom.sha1 | 1 + .../cas-client/3.6.1/_remote.repositories | 3 + .../cas-client/3.6.1/cas-client-3.6.1.pom | 318 ++ .../3.6.1/cas-client-3.6.1.pom.sha1 | 1 + .../jasig-parent/41/_remote.repositories | 3 + .../jasig-parent/41/jasig-parent-41.pom | 404 ++ .../jasig-parent/41/jasig-parent-41.pom.sha1 | 1 + .../1.9.2/_remote.repositories | 3 + .../1.9.2/jasypt-hibernate4-1.9.2.pom | 267 ++ .../1.9.2/jasypt-hibernate4-1.9.2.pom.sha1 | 1 + .../jasypt/jasypt/1.9.2/_remote.repositories | 3 + .../org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom | 270 ++ .../jasypt/jasypt/1.9.2/jasypt-1.9.2.pom.sha1 | 1 + .../javassist/3.28.0-GA/_remote.repositories | 3 + .../3.28.0-GA/javassist-3.28.0-GA.pom | 335 ++ .../3.28.0-GA/javassist-3.28.0-GA.pom.sha1 | 1 + .../javassist/3.30.2-GA/_remote.repositories | 3 + .../3.30.2-GA/javassist-3.30.2-GA.pom | 337 ++ .../3.30.2-GA/javassist-3.30.2-GA.pom.sha1 | 1 + .../1.7.0.Alpha10/_remote.repositories | 3 + .../arquillian-bom-1.7.0.Alpha10.pom | 296 ++ .../arquillian-bom-1.7.0.Alpha10.pom.sha1 | 1 + .../jboss-parent/39/_remote.repositories | 3 + .../jboss/jboss-parent/39/jboss-parent-39.pom | 1521 ++++++++ .../39/jboss-parent-39.pom.lastUpdated | 5 + .../jboss-parent/39/jboss-parent-39.pom.sha1 | 1 + .../3.5.3.Final/_remote.repositories | 3 + .../3.5.3.Final/jboss-logging-3.5.3.Final.pom | 404 ++ .../jboss-logging-3.5.3.Final.pom.sha1 | 1 + .../1.0.1.Final/_remote.repositories | 3 + .../logging-parent-1.0.1.Final.pom | 134 + .../logging-parent-1.0.1.Final.pom.sha1 | 1 + .../2.0.0/_remote.repositories | 3 + .../shrinkwrap-descriptors-bom-2.0.0.pom | 135 + .../shrinkwrap-descriptors-bom-2.0.0.pom.sha1 | 1 + .../3.1.4/_remote.repositories | 3 + .../3.1.4/shrinkwrap-resolver-bom-3.1.4.pom | 203 ++ .../shrinkwrap-resolver-bom-3.1.4.pom.sha1 | 1 + .../shrinkwrap-bom/1.2.6/_remote.repositories | 3 + .../1.2.6/shrinkwrap-bom-1.2.6.pom | 127 + .../1.2.6/shrinkwrap-bom-1.2.6.pom.sha1 | 1 + .../annotations/17.0.0/_remote.repositories | 3 + .../annotations/17.0.0/annotations-17.0.0.pom | 30 + .../17.0.0/annotations-17.0.0.pom.sha1 | 1 + .../kotlin-bom/1.3.72/_remote.repositories | 3 + .../kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom | 219 ++ .../1.3.72/kotlin-bom-1.3.72.pom.lastUpdated | 11 + .../1.3.72/kotlin-bom-1.3.72.pom.sha1 | 1 + .../kotlin-bom/1.9.23/_remote.repositories | 3 + .../kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom | 225 ++ .../1.9.23/kotlin-bom-1.9.23.pom.lastUpdated | 9 + .../1.9.23/kotlin-bom-1.9.23.pom.sha1 | 1 + .../1.3.6/_remote.repositories | 3 + .../1.3.6/kotlinx-coroutines-bom-1.3.6.pom | 142 + ...tlinx-coroutines-bom-1.3.6.pom.lastUpdated | 11 + .../kotlinx-coroutines-bom-1.3.6.pom.sha1 | 1 + .../1.7.3/_remote.repositories | 3 + .../1.7.3/kotlinx-coroutines-bom-1.7.3.pom | 119 + ...tlinx-coroutines-bom-1.7.3.pom.lastUpdated | 9 + .../kotlinx-coroutines-bom-1.7.3.pom.sha1 | 1 + .../1.6.3/_remote.repositories | 3 + .../1.6.3/kotlinx-serialization-bom-1.6.3.pom | 99 + ...nx-serialization-bom-1.6.3.pom.lastUpdated | 9 + .../kotlinx-serialization-bom-1.6.3.pom.sha1 | 1 + .../json/json/20170516/_remote.repositories | 3 + .../org/json/json/20170516/json-20170516.pom | 181 + .../json/json/20170516/json-20170516.pom.sha1 | 1 + .../json/json/20220924/_remote.repositories | 3 + .../org/json/json/20220924/json-20220924.pom | 170 + .../json/json/20220924/json-20220924.pom.sha1 | 1 + .../json/json/20230227/_remote.repositories | 3 + .../org/json/json/20230227/json-20230227.pom | 170 + .../json/json/20230227/json-20230227.pom.sha1 | 1 + .../junit-bom/5.10.0/_remote.repositories | 3 + .../junit-bom/5.10.0/junit-bom-5.10.0.pom | 159 + .../5.10.0/junit-bom-5.10.0.pom.sha1 | 1 + .../junit-bom/5.10.1/_remote.repositories | 3 + .../junit-bom/5.10.1/junit-bom-5.10.1.pom | 159 + .../5.10.1/junit-bom-5.10.1.pom.sha1 | 1 + .../junit-bom/5.10.2/_remote.repositories | 3 + .../junit-bom/5.10.2/junit-bom-5.10.2.pom | 159 + .../5.10.2/junit-bom-5.10.2.pom.lastUpdated | 9 + .../5.10.2/junit-bom-5.10.2.pom.sha1 | 1 + .../junit-bom/5.6.2/_remote.repositories | 3 + .../junit/junit-bom/5.6.2/junit-bom-5.6.2.pom | 139 + .../5.6.2/junit-bom-5.6.2.pom.lastUpdated | 11 + .../junit-bom/5.6.2/junit-bom-5.6.2.pom.sha1 | 1 + .../junit-bom/5.7.2/_remote.repositories | 3 + .../junit/junit-bom/5.7.2/junit-bom-5.7.2.pom | 144 + .../junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 | 1 + .../junit-bom/5.9.1/_remote.repositories | 3 + .../junit/junit-bom/5.9.1/junit-bom-5.9.1.pom | 159 + .../junit-bom/5.9.1/junit-bom-5.9.1.pom.sha1 | 1 + .../junit-bom/5.9.2/_remote.repositories | 3 + .../junit/junit-bom/5.9.2/junit-bom-5.9.2.pom | 159 + .../junit-bom/5.9.2/junit-bom-5.9.2.pom.sha1 | 1 + .../junit-bom/5.9.3/_remote.repositories | 3 + .../junit/junit-bom/5.9.3/junit-bom-5.9.3.pom | 159 + .../junit-bom/5.9.3/junit-bom-5.9.3.pom.sha1 | 1 + .../5.10.2/_remote.repositories | 3 + .../5.10.2/junit-jupiter-api-5.10.2.pom | 94 + .../5.10.2/junit-jupiter-api-5.10.2.pom.sha1 | 1 + .../5.10.2/_remote.repositories | 3 + .../5.10.2/junit-jupiter-engine-5.10.2.pom | 94 + .../junit-jupiter-engine-5.10.2.pom.sha1 | 1 + .../5.10.2/_remote.repositories | 3 + .../5.10.2/junit-jupiter-params-5.10.2.pom | 88 + .../junit-jupiter-params-5.10.2.pom.sha1 | 1 + .../junit-jupiter/5.10.2/_remote.repositories | 3 + .../5.10.2/junit-jupiter-5.10.2.pom | 95 + .../5.10.2/junit-jupiter-5.10.2.pom.sha1 | 1 + .../1.10.2/_remote.repositories | 3 + .../1.10.2/junit-platform-commons-1.10.2.pom | 83 + .../junit-platform-commons-1.10.2.pom.sha1 | 1 + .../1.10.2/_remote.repositories | 3 + .../1.10.2/junit-platform-engine-1.10.2.pom | 95 + .../junit-platform-engine-1.10.2.pom.sha1 | 1 + .../mimepull/1.9.15/_remote.repositories | 3 + .../mimepull/1.9.15/mimepull-1.9.15.pom | 410 +++ .../mimepull/1.9.15/mimepull-1.9.15.pom.sha1 | 1 + .../LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom | 198 + .../2.0.3/LatencyUtils-2.0.3.pom.sha1 | 1 + .../LatencyUtils/2.0.3/_remote.repositories | 3 + .../mockito-bom/4.11.0/_remote.repositories | 3 + .../mockito-bom/4.11.0/mockito-bom-4.11.0.pom | 103 + .../4.11.0/mockito-bom-4.11.0.pom.sha1 | 1 + .../mockito-bom/5.7.0/_remote.repositories | 3 + .../mockito-bom/5.7.0/mockito-bom-5.7.0.pom | 98 + .../5.7.0/mockito-bom-5.7.0.pom.lastUpdated | 9 + .../5.7.0/mockito-bom-5.7.0.pom.sha1 | 1 + .../mockito-core/5.7.0/_remote.repositories | 3 + .../mockito-core/5.7.0/mockito-core-5.7.0.pom | 83 + .../5.7.0/mockito-core-5.7.0.pom.sha1 | 1 + .../5.7.0/_remote.repositories | 3 + .../5.7.0/mockito-junit-jupiter-5.7.0.pom | 77 + .../mockito-junit-jupiter-5.7.0.pom.sha1 | 1 + .../mozilla/rhino/1.7R4/_remote.repositories | 3 + .../org/mozilla/rhino/1.7R4/rhino-1.7R4.pom | 34 + .../mozilla/rhino/1.7R4/rhino-1.7R4.pom.sha1 | 1 + .../objenesis-parent/3.3/_remote.repositories | 3 + .../3.3/objenesis-parent-3.3.pom | 575 +++ .../3.3/objenesis-parent-3.3.pom.sha1 | 1 + .../objenesis/3.3/_remote.repositories | 3 + .../objenesis/objenesis/3.3/objenesis-3.3.pom | 91 + .../objenesis/3.3/objenesis-3.3.pom.sha1 | 1 + .../SkeletonCohortCharacterization-1.2.1.pom | 142 + ...hortCharacterization-1.2.1.pom.lastUpdated | 11 + ...letonCohortCharacterization-1.2.1.pom.sha1 | 1 + .../1.2.1/_remote.repositories | 3 + .../ohdsi/circe/1.11.1/_remote.repositories | 3 + .../org/ohdsi/circe/1.11.1/circe-1.11.1.pom | 202 + .../circe/1.11.1/circe-1.11.1.pom.lastUpdated | 11 + .../ohdsi/circe/1.11.1/circe-1.11.1.pom.sha1 | 1 + .../ohdsi/circe/1.11.2/_remote.repositories | 3 + .../org/ohdsi/circe/1.11.2/circe-1.11.2.pom | 202 + .../circe/1.11.2/circe-1.11.2.pom.lastUpdated | 11 + .../ohdsi/circe/1.11.2/circe-1.11.2.pom.sha1 | 1 + .../3.2.0/_remote.repositories | 3 + .../3.2.0/featureExtraction-3.2.0.pom | 197 + .../featureExtraction-3.2.0.pom.lastUpdated | 11 + .../3.2.0/featureExtraction-3.2.0.pom.sha1 | 1 + .../ohdsi/hydra/0.4.0/_remote.repositories | 3 + .../org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom | 154 + .../hydra/0.4.0/hydra-0.4.0.pom.lastUpdated | 11 + .../ohdsi/hydra/0.4.0/hydra-0.4.0.pom.sha1 | 1 + .../sql/SqlRender/1.16.1/SqlRender-1.16.1.pom | 140 + .../1.16.1/SqlRender-1.16.1.pom.lastUpdated | 11 + .../1.16.1/SqlRender-1.16.1.pom.sha1 | 1 + .../sql/SqlRender/1.16.1/_remote.repositories | 3 + .../1.2.1-SNAPSHOT/_remote.repositories | 3 + .../maven-metadata-ohdsi.snapshots.xml | 25 + .../maven-metadata-ohdsi.snapshots.xml.sha1 | 1 + .../1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml | 25 + .../maven-metadata-ohdsi.xml.sha1 | 1 + .../1.2.1-SNAPSHOT/resolver-status.properties | 14 + ...analysis-specs-1.2.1-20201204.180243-3.pom | 85 + ...cs-1.2.1-20201204.180243-3.pom.lastUpdated | 9 + ...sis-specs-1.2.1-20201204.180243-3.pom.sha1 | 1 + ...dardized-analysis-specs-1.2.1-SNAPSHOT.pom | 85 + .../1.5.0/_remote.repositories | 3 + .../standardized-analysis-specs-1.5.0.pom | 75 + ...dized-analysis-specs-1.5.0.pom.lastUpdated | 11 + ...standardized-analysis-specs-1.5.0.pom.sha1 | 1 + .../1.2.1-SNAPSHOT/_remote.repositories | 3 + .../maven-metadata-ohdsi.snapshots.xml | 25 + .../maven-metadata-ohdsi.snapshots.xml.sha1 | 1 + .../1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml | 25 + .../maven-metadata-ohdsi.xml.sha1 | 1 + .../1.2.1-SNAPSHOT/resolver-status.properties | 14 + ...analysis-utils-1.2.1-20201204.180243-3.pom | 118 + ...ls-1.2.1-20201204.180243-3.pom.lastUpdated | 9 + ...sis-utils-1.2.1-20201204.180243-3.pom.sha1 | 1 + ...dardized-analysis-utils-1.2.1-SNAPSHOT.pom | 118 + .../1.4.0/_remote.repositories | 3 + .../standardized-analysis-utils-1.4.0.pom | 84 + ...dized-analysis-utils-1.4.0.pom.lastUpdated | 11 + ...standardized-analysis-utils-1.4.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-core-api-5.0.0.pom | 96 + .../opensaml-core-api-5.0.0.pom.lastUpdated | 11 + .../5.0.0/opensaml-core-api-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-core-impl-5.0.0.pom | 137 + .../opensaml-core-impl-5.0.0.pom.lastUpdated | 11 + .../5.0.0/opensaml-core-impl-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-messaging-api-5.0.0.pom | 66 + ...ensaml-messaging-api-5.0.0.pom.lastUpdated | 11 + .../opensaml-messaging-api-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-messaging-impl-5.0.0.pom | 81 + ...nsaml-messaging-impl-5.0.0.pom.lastUpdated | 11 + .../opensaml-messaging-impl-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-parent-5.0.0.pom | 178 + .../opensaml-parent-5.0.0.pom.lastUpdated | 11 + .../5.0.0/opensaml-parent-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-profile-api-5.0.0.pom | 98 + ...opensaml-profile-api-5.0.0.pom.lastUpdated | 11 + .../5.0.0/opensaml-profile-api-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-profile-impl-5.0.0.pom | 104 + ...pensaml-profile-impl-5.0.0.pom.lastUpdated | 11 + .../opensaml-profile-impl-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-saml-api-5.0.0.pom | 105 + .../opensaml-saml-api-5.0.0.pom.lastUpdated | 11 + .../5.0.0/opensaml-saml-api-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-saml-impl-5.0.0.pom | 245 ++ .../opensaml-saml-impl-5.0.0.pom.lastUpdated | 11 + .../5.0.0/opensaml-saml-impl-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-security-api-5.0.0.pom | 120 + ...pensaml-security-api-5.0.0.pom.lastUpdated | 11 + .../opensaml-security-api-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-security-impl-5.0.0.pom | 143 + ...ensaml-security-impl-5.0.0.pom.lastUpdated | 11 + .../opensaml-security-impl-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-soap-api-5.0.0.pom | 79 + .../opensaml-soap-api-5.0.0.pom.lastUpdated | 11 + .../5.0.0/opensaml-soap-api-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-soap-impl-5.0.0.pom | 129 + .../opensaml-soap-impl-5.0.0.pom.lastUpdated | 11 + .../5.0.0/opensaml-soap-impl-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-storage-api-5.0.0.pom | 53 + ...opensaml-storage-api-5.0.0.pom.lastUpdated | 11 + .../5.0.0/opensaml-storage-api-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-storage-impl-5.0.0.pom | 203 ++ ...pensaml-storage-impl-5.0.0.pom.lastUpdated | 11 + .../opensaml-storage-impl-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-xmlsec-api-5.0.0.pom | 83 + .../opensaml-xmlsec-api-5.0.0.pom.lastUpdated | 11 + .../5.0.0/opensaml-xmlsec-api-5.0.0.pom.sha1 | 1 + .../5.0.0/_remote.repositories | 3 + .../5.0.0/opensaml-xmlsec-impl-5.0.0.pom | 118 + ...opensaml-xmlsec-impl-5.0.0.pom.lastUpdated | 11 + .../5.0.0/opensaml-xmlsec-impl-5.0.0.pom.sha1 | 1 + .../opentest4j/1.3.0/_remote.repositories | 3 + .../opentest4j/1.3.0/opentest4j-1.3.0.pom | 54 + .../1.3.0/opentest4j-1.3.0.pom.sha1 | 1 + .../asm-analysis/6.2.1/_remote.repositories | 3 + .../asm-analysis/6.2.1/asm-analysis-6.2.1.pom | 102 + .../6.2.1/asm-analysis-6.2.1.pom.sha1 | 1 + .../asm/asm-analysis/9.6/_remote.repositories | 3 + .../asm/asm-analysis/9.6/asm-analysis-9.6.pom | 83 + .../9.6/asm-analysis-9.6.pom.sha1 | 1 + .../ow2/asm/asm-bom/9.5/_remote.repositories | 3 + .../org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom | 104 + .../ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1 | 1 + .../asm-commons/6.2.1/_remote.repositories | 3 + .../asm-commons/6.2.1/asm-commons-6.2.1.pom | 120 + .../6.2.1/asm-commons-6.2.1.pom.sha1 | 1 + .../asm/asm-commons/9.6/_remote.repositories | 3 + .../asm/asm-commons/9.6/asm-commons-9.6.pom | 89 + .../asm-commons/9.6/asm-commons-9.6.pom.sha1 | 1 + .../asm/asm-tree/6.2.1/_remote.repositories | 3 + .../ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom | 102 + .../asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 | 1 + .../ow2/asm/asm-tree/9.6/_remote.repositories | 3 + .../org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom | 83 + .../asm/asm-tree/9.6/asm-tree-9.6.pom.sha1 | 1 + .../asm/asm-util/6.2.1/_remote.repositories | 3 + .../ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom | 120 + .../asm-util/6.2.1/asm-util-6.2.1.pom.sha1 | 1 + .../ow2/asm/asm-util/9.6/_remote.repositories | 3 + .../org/ow2/asm/asm-util/9.6/asm-util-9.6.pom | 95 + .../asm/asm-util/9.6/asm-util-9.6.pom.sha1 | 1 + .../ow2/asm/asm/6.2.1/_remote.repositories | 3 + .../org/ow2/asm/asm/6.2.1/asm-6.2.1.pom | 96 + .../org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 | 1 + .../org/ow2/asm/asm/9.6/_remote.repositories | 3 + code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom | 75 + .../org/ow2/asm/asm/9.6/asm-9.6.pom.sha1 | 1 + .../org/ow2/ow2/1.5.1/_remote.repositories | 3 + code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom | 309 ++ .../org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 | 1 + .../org/ow2/ow2/1.5/_remote.repositories | 3 + code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom | 309 ++ code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 | 1 + .../encoder-parent/1.2.3/_remote.repositories | 3 + .../1.2.3/encoder-parent-1.2.3.pom | 492 +++ .../1.2.3/encoder-parent-1.2.3.pom.sha1 | 1 + .../encoder/1.2.3/_remote.repositories | 3 + .../encoder/encoder/1.2.3/encoder-1.2.3.pom | 99 + .../encoder/1.2.3/encoder-1.2.3.pom.sha1 | 1 + .../8.0.1/_remote.repositories | 3 + .../8.0.1/jakartaee-pac4j-8.0.1.pom | 30 + .../8.0.1/jakartaee-pac4j-8.0.1.pom.sha1 | 1 + .../8.0.1/_remote.repositories | 3 + .../8.0.1/jee-pac4j-parent-8.0.1.pom | 211 ++ .../8.0.1/jee-pac4j-parent-8.0.1.pom.sha1 | 1 + .../pac4j-cas/6.0.3/_remote.repositories | 3 + .../pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom | 75 + .../pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom.sha1 | 1 + .../pac4j-core/5.7.4/_remote.repositories | 3 + .../pac4j-core/5.7.4/pac4j-core-5.7.4.pom | 122 + .../5.7.4/pac4j-core-5.7.4.pom.sha1 | 1 + .../pac4j-core/6.0.2/_remote.repositories | 3 + .../pac4j-core/6.0.2/pac4j-core-6.0.2.pom | 132 + .../6.0.2/pac4j-core-6.0.2.pom.sha1 | 1 + .../pac4j-core/6.0.3/_remote.repositories | 3 + .../pac4j-core/6.0.3/pac4j-core-6.0.3.pom | 132 + .../6.0.3/pac4j-core-6.0.3.pom.sha1 | 1 + .../pac4j-http/6.0.3/_remote.repositories | 3 + .../pac4j-http/6.0.3/pac4j-http-6.0.3.pom | 119 + .../6.0.3/pac4j-http-6.0.3.pom.sha1 | 1 + .../6.0.2/_remote.repositories | 3 + .../6.0.2/pac4j-jakartaee-6.0.2.pom | 77 + .../6.0.2/pac4j-jakartaee-6.0.2.pom.sha1 | 1 + .../6.0.3/_remote.repositories | 3 + .../6.0.3/pac4j-jakartaee-6.0.3.pom | 77 + .../6.0.3/pac4j-jakartaee-6.0.3.pom.sha1 | 1 + .../pac4j-oauth/6.0.3/_remote.repositories | 3 + .../pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom | 78 + .../6.0.3/pac4j-oauth-6.0.3.pom.sha1 | 1 + .../pac4j-oidc/6.0.3/_remote.repositories | 3 + .../pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom | 109 + .../6.0.3/pac4j-oidc-6.0.3.pom.sha1 | 1 + .../pac4j-parent/5.7.4/_remote.repositories | 3 + .../pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom | 633 ++++ .../5.7.4/pac4j-parent-5.7.4.pom.sha1 | 1 + .../pac4j-parent/6.0.2/_remote.repositories | 3 + .../pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom | 668 ++++ .../6.0.2/pac4j-parent-6.0.2.pom.sha1 | 1 + .../pac4j-parent/6.0.3/_remote.repositories | 3 + .../pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom | 669 ++++ .../6.0.3/pac4j-parent-6.0.3.pom.sha1 | 1 + .../5.7.4/_remote.repositories | 3 + .../5.7.4/pac4j-saml-opensamlv5-5.7.4.pom | 285 ++ .../pac4j-saml-opensamlv5-5.7.4.pom.sha1 | 1 + .../postgresql/42.6.2/_remote.repositories | 3 + .../postgresql/42.6.2/postgresql-42.6.2.pom | 81 + .../42.6.2/postgresql-42.6.2.pom.sha1 | 1 + .../lombok/1.18.32/_remote.repositories | 3 + .../lombok/1.18.32/lombok-1.18.32.pom | 43 + .../lombok/1.18.32/lombok-1.18.32.pom.sha1 | 1 + .../1.0.4/_remote.repositories | 3 + .../1.0.4/reactive-streams-1.0.4.pom | 30 + .../1.0.4/reactive-streams-1.0.4.pom.sha1 | 1 + .../reflections/0.10.2/_remote.repositories | 3 + .../reflections/0.10.2/reflections-0.10.2.pom | 249 ++ .../0.10.2/reflections-0.10.2.pom.sha1 | 1 + .../duct-tape/1.0.8/_remote.repositories | 3 + .../duct-tape/1.0.8/duct-tape-1.0.8.pom | 163 + .../duct-tape/1.0.8/duct-tape-1.0.8.pom.sha1 | 1 + .../selenium-bom/4.14.1/_remote.repositories | 3 + .../4.14.1/selenium-bom-4.14.1.pom | 179 + .../selenium-bom-4.14.1.pom.lastUpdated | 9 + .../4.14.1/selenium-bom-4.14.1.pom.sha1 | 1 + .../semver4j/4.3.0/_remote.repositories | 3 + .../semver4j/4.3.0/semver4j-4.3.0.pom | 230 ++ .../semver4j/4.3.0/semver4j-4.3.0.pom.sha1 | 1 + .../jsonassert/1.5.1/_remote.repositories | 3 + .../jsonassert/1.5.1/jsonassert-1.5.1.pom | 147 + .../1.5.1/jsonassert-1.5.1.pom.sha1 | 1 + .../2.0.13/_remote.repositories | 3 + .../2.0.13/jcl-over-slf4j-2.0.13.pom | 58 + .../2.0.13/jcl-over-slf4j-2.0.13.pom.sha1 | 1 + .../jul-to-slf4j/2.0.13/_remote.repositories | 3 + .../2.0.13/jul-to-slf4j-2.0.13.pom | 40 + .../2.0.13/jul-to-slf4j-2.0.13.pom.sha1 | 1 + .../slf4j-api/2.0.13/_remote.repositories | 3 + .../slf4j-api/2.0.13/slf4j-api-2.0.13.pom | 81 + .../2.0.13/slf4j-api-2.0.13.pom.sha1 | 1 + .../slf4j-bom/2.0.13/_remote.repositories | 3 + .../slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom | 249 ++ .../2.0.13/slf4j-bom-2.0.13.pom.sha1 | 1 + .../slf4j-parent/2.0.13/_remote.repositories | 3 + .../2.0.13/slf4j-parent-2.0.13.pom | 397 ++ .../2.0.13/slf4j-parent-2.0.13.pom.sha1 | 1 + .../oss/oss-parent/7/_remote.repositories | 3 + .../oss/oss-parent/7/oss-parent-7.pom | 155 + .../oss-parent/7/oss-parent-7.pom.lastUpdated | 9 + .../oss/oss-parent/7/oss-parent-7.pom.sha1 | 1 + .../oss/oss-parent/9/_remote.repositories | 3 + .../oss/oss-parent/9/oss-parent-9.pom | 156 + .../oss/oss-parent/9/oss-parent-9.pom.sha1 | 1 + .../3.1.4/_remote.repositories | 3 + .../3.1.4/spring-amqp-bom-3.1.4.pom | 115 + .../spring-amqp-bom-3.1.4.pom.lastUpdated | 9 + .../3.1.4/spring-amqp-bom-3.1.4.pom.sha1 | 1 + .../2.0.0.M1/_remote.repositories | 3 + .../spring-batch-admin-domain-2.0.0.M1.pom | 97 + ...atch-admin-domain-2.0.0.M1.pom.lastUpdated | 11 + ...pring-batch-admin-domain-2.0.0.M1.pom.sha1 | 1 + .../2.0.0.M1/_remote.repositories | 3 + .../spring-batch-admin-manager-2.0.0.M1.pom | 221 ++ ...tch-admin-manager-2.0.0.M1.pom.lastUpdated | 11 + ...ring-batch-admin-manager-2.0.0.M1.pom.sha1 | 1 + .../2.0.0.M1/_remote.repositories | 3 + .../spring-batch-admin-parent-2.0.0.M1.pom | 656 ++++ ...atch-admin-parent-2.0.0.M1.pom.lastUpdated | 11 + ...pring-batch-admin-parent-2.0.0.M1.pom.sha1 | 1 + .../2.0.0.M1/_remote.repositories | 3 + .../spring-batch-admin-resources-2.0.0.M1.pom | 125 + ...h-admin-resources-2.0.0.M1.pom.lastUpdated | 11 + ...ng-batch-admin-resources-2.0.0.M1.pom.sha1 | 1 + .../5.1.1/_remote.repositories | 3 + .../5.1.1/spring-batch-bom-5.1.1.pom | 104 + .../spring-batch-bom-5.1.1.pom.lastUpdated | 9 + .../5.1.1/spring-batch-bom-5.1.1.pom.sha1 | 1 + .../5.1.1/_remote.repositories | 3 + .../5.1.1/spring-batch-core-5.1.1.pom | 170 + .../5.1.1/spring-batch-core-5.1.1.pom.sha1 | 1 + .../5.1.1/_remote.repositories | 3 + .../spring-batch-infrastructure-5.1.1.pom | 312 ++ ...spring-batch-infrastructure-5.1.1.pom.sha1 | 1 + .../5.1.1/_remote.repositories | 3 + .../5.1.1/spring-batch-integration-5.1.1.pom | 133 + .../spring-batch-integration-5.1.1.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-boot-autoconfigure-3.2.5.pom | 50 + .../spring-boot-autoconfigure-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + ...ing-boot-configuration-processor-3.2.5.pom | 43 + ...oot-configuration-processor-3.2.5.pom.sha1 | 1 + .../2.3.0.RELEASE/_remote.repositories | 3 + ...spring-boot-dependencies-2.3.0.RELEASE.pom | 3248 +++++++++++++++++ ...g-boot-dependencies-2.3.0.RELEASE.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-boot-dependencies-3.2.5.pom | 2951 +++++++++++++++ ...ng-boot-dependencies-3.2.5.pom.lastUpdated | 5 + .../spring-boot-dependencies-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 4 + .../3.2.5/spring-boot-maven-plugin-3.2.5.jar | Bin 0 -> 134585 bytes .../spring-boot-maven-plugin-3.2.5.jar.sha1 | 1 + .../3.2.5/spring-boot-maven-plugin-3.2.5.pom | 117 + .../spring-boot-maven-plugin-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-boot-starter-aop-3.2.5.pom | 63 + .../spring-boot-starter-aop-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-boot-starter-batch-3.2.5.pom | 63 + .../spring-boot-starter-batch-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-boot-starter-cache-3.2.5.pom | 57 + .../spring-boot-starter-cache-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../spring-boot-starter-data-jpa-3.2.5.pom | 75 + ...pring-boot-starter-data-jpa-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-boot-starter-jdbc-3.2.5.pom | 63 + .../spring-boot-starter-jdbc-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../spring-boot-starter-jersey-3.2.5.pom | 111 + .../spring-boot-starter-jersey-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-boot-starter-json-3.2.5.pom | 81 + .../spring-boot-starter-json-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../spring-boot-starter-log4j2-3.2.5.pom | 63 + .../spring-boot-starter-log4j2-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../spring-boot-starter-logging-3.2.5.pom | 63 + ...spring-boot-starter-logging-3.2.5.pom.sha1 | 1 + .../2.3.0.RELEASE/_remote.repositories | 3 + ...ring-boot-starter-parent-2.3.0.RELEASE.pom | 237 ++ ...boot-starter-parent-2.3.0.RELEASE.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-boot-starter-test-3.2.5.pom | 147 + .../spring-boot-starter-test-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../spring-boot-starter-tomcat-3.2.5.pom | 81 + .../spring-boot-starter-tomcat-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../spring-boot-starter-validation-3.2.5.pom | 63 + ...ing-boot-starter-validation-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-boot-starter-web-3.2.5.pom | 75 + .../spring-boot-starter-web-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-boot-starter-3.2.5.pom | 81 + .../3.2.5/spring-boot-starter-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../spring-boot-test-autoconfigure-3.2.5.pom | 63 + ...ing-boot-test-autoconfigure-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-boot-test-3.2.5.pom | 50 + .../3.2.5/spring-boot-test-3.2.5.pom.sha1 | 1 + .../spring-boot/3.2.5/_remote.repositories | 3 + .../spring-boot/3.2.5/spring-boot-3.2.5.pom | 56 + .../3.2.5/spring-boot-3.2.5.pom.sha1 | 1 + .../2.3.0.RELEASE/_remote.repositories | 3 + .../spring-data-build-2.3.0.RELEASE.pom | 270 ++ ...g-data-build-2.3.0.RELEASE.pom.lastUpdated | 11 + .../spring-data-build-2.3.0.RELEASE.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-data-build-3.2.5.pom | 259 ++ .../3.2.5/spring-data-build-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-data-parent-3.2.5.pom | 1410 +++++++ .../3.2.5/spring-data-parent-3.2.5.pom.sha1 | 1 + .../2023.1.5/_remote.repositories | 3 + .../2023.1.5/spring-data-bom-2023.1.5.pom | 148 + .../spring-data-bom-2023.1.5.pom.lastUpdated | 9 + .../spring-data-bom-2023.1.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-data-commons-3.2.5.pom | 387 ++ .../3.2.5/spring-data-commons-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-data-jpa-parent-3.2.5.pom | 297 ++ .../spring-data-jpa-parent-3.2.5.pom.sha1 | 1 + .../3.2.5/_remote.repositories | 3 + .../3.2.5/spring-data-jpa-3.2.5.pom | 407 +++ .../3.2.5/spring-data-jpa-3.2.5.pom.sha1 | 1 + .../Neumann-RELEASE/_remote.repositories | 3 + ...ring-data-releasetrain-Neumann-RELEASE.pom | 166 + ...leasetrain-Neumann-RELEASE.pom.lastUpdated | 11 + ...data-releasetrain-Neumann-RELEASE.pom.sha1 | 1 + .../spring-hateoas/2.2.2/_remote.repositories | 3 + .../2.2.2/spring-hateoas-2.2.2.pom | 876 +++++ .../2.2.2/spring-hateoas-2.2.2.pom.sha1 | 1 + .../5.3.0.RELEASE/_remote.repositories | 3 + .../spring-integration-bom-5.3.0.RELEASE.pom | 236 ++ ...egration-bom-5.3.0.RELEASE.pom.lastUpdated | 11 + ...ing-integration-bom-5.3.0.RELEASE.pom.sha1 | 1 + .../6.2.4/_remote.repositories | 3 + .../6.2.4/spring-integration-bom-6.2.4.pom | 276 ++ ...ring-integration-bom-6.2.4.pom.lastUpdated | 9 + .../spring-integration-bom-6.2.4.pom.sha1 | 1 + .../6.2.4/_remote.repositories | 3 + .../6.2.4/spring-integration-core-6.2.4.pom | 214 ++ .../spring-integration-core-6.2.4.pom.sha1 | 1 + .../6.2.4/_remote.repositories | 3 + .../6.2.4/spring-integration-file-6.2.4.pom | 75 + .../spring-integration-file-6.2.4.pom.sha1 | 1 + .../6.2.4/_remote.repositories | 3 + .../6.2.4/spring-integration-http-6.2.4.pom | 95 + .../spring-integration-http-6.2.4.pom.sha1 | 1 + .../6.2.4/_remote.repositories | 3 + .../6.2.4/spring-integration-jmx-6.2.4.pom | 69 + .../spring-integration-jmx-6.2.4.pom.sha1 | 1 + .../3.2.3/_remote.repositories | 3 + .../3.2.3/spring-ldap-core-3.2.3.pom | 69 + .../3.2.3/spring-ldap-core-3.2.3.pom.sha1 | 1 + .../1.1.0.RELEASE/_remote.repositories | 3 + .../spring-plugin-core-1.1.0.RELEASE.pom | 50 + .../spring-plugin-core-1.1.0.RELEASE.pom.sha1 | 1 + .../3.0.0/_remote.repositories | 3 + .../3.0.0/spring-plugin-core-3.0.0.pom | 89 + .../3.0.0/spring-plugin-core-3.0.0.pom.sha1 | 1 + .../1.1.0.RELEASE/_remote.repositories | 3 + .../spring-plugin-1.1.0.RELEASE.pom | 216 ++ .../spring-plugin-1.1.0.RELEASE.pom.sha1 | 1 + .../1.0.5/_remote.repositories | 3 + .../1.0.5/spring-pulsar-bom-1.0.5.pom | 72 + .../spring-pulsar-bom-1.0.5.pom.lastUpdated | 9 + .../1.0.5/spring-pulsar-bom-1.0.5.pom.sha1 | 1 + .../3.0.1/_remote.repositories | 3 + .../3.0.1/spring-restdocs-bom-3.0.1.pom | 68 + .../spring-restdocs-bom-3.0.1.pom.lastUpdated | 9 + .../3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 | 1 + .../spring-retry/2.0.5/_remote.repositories | 3 + .../spring-retry/2.0.5/spring-retry-2.0.5.pom | 315 ++ .../2.0.5/spring-retry-2.0.5.pom.sha1 | 1 + .../5.3.2.RELEASE/_remote.repositories | 3 + .../spring-security-bom-5.3.2.RELEASE.pom | 143 + ...security-bom-5.3.2.RELEASE.pom.lastUpdated | 11 + ...spring-security-bom-5.3.2.RELEASE.pom.sha1 | 1 + .../6.2.4/_remote.repositories | 3 + .../6.2.4/spring-security-bom-6.2.4.pom | 138 + .../spring-security-bom-6.2.4.pom.lastUpdated | 9 + .../6.2.4/spring-security-bom-6.2.4.pom.sha1 | 1 + .../6.2.4/_remote.repositories | 3 + .../6.2.4/spring-security-crypto-6.2.4.pom | 43 + .../spring-security-crypto-6.2.4.pom.sha1 | 1 + .../3.2.2/_remote.repositories | 3 + .../3.2.2/spring-session-bom-3.2.2.pom | 73 + .../spring-session-bom-3.2.2.pom.lastUpdated | 9 + .../3.2.2/spring-session-bom-3.2.2.pom.sha1 | 1 + .../Dragonfruit-RELEASE/_remote.repositories | 3 + ...spring-session-bom-Dragonfruit-RELEASE.pom | 72 + ...on-bom-Dragonfruit-RELEASE.pom.lastUpdated | 11 + ...g-session-bom-Dragonfruit-RELEASE.pom.sha1 | 1 + .../spring-aop/6.1.6/_remote.repositories | 3 + .../spring-aop/6.1.6/spring-aop-6.1.6.pom | 56 + .../6.1.6/spring-aop-6.1.6.pom.sha1 | 1 + .../spring-aspects/6.1.6/_remote.repositories | 3 + .../6.1.6/spring-aspects-6.1.6.pom | 51 + .../6.1.6/spring-aspects-6.1.6.pom.sha1 | 1 + .../spring-beans/6.1.6/_remote.repositories | 3 + .../spring-beans/6.1.6/spring-beans-6.1.6.pom | 50 + .../6.1.6/spring-beans-6.1.6.pom.sha1 | 1 + .../6.1.6/_remote.repositories | 3 + .../6.1.6/spring-context-support-6.1.6.pom | 63 + .../spring-context-support-6.1.6.pom.sha1 | 1 + .../spring-context/6.1.6/_remote.repositories | 3 + .../6.1.6/spring-context-6.1.6.pom | 74 + .../6.1.6/spring-context-6.1.6.pom.sha1 | 1 + .../spring-core/6.1.6/_remote.repositories | 3 + .../spring-core/6.1.6/spring-core-6.1.6.pom | 50 + .../6.1.6/spring-core-6.1.6.pom.sha1 | 1 + .../6.1.6/_remote.repositories | 3 + .../6.1.6/spring-expression-6.1.6.pom | 50 + .../6.1.6/spring-expression-6.1.6.pom.sha1 | 1 + .../5.2.6.RELEASE/_remote.repositories | 3 + .../spring-framework-bom-5.2.6.RELEASE.pom | 147 + ...ramework-bom-5.2.6.RELEASE.pom.lastUpdated | 11 + ...pring-framework-bom-5.2.6.RELEASE.pom.sha1 | 1 + .../5.3.29/_remote.repositories | 3 + .../5.3.29/spring-framework-bom-5.3.29.pom | 157 + .../spring-framework-bom-5.3.29.pom.sha1 | 1 + .../5.3.32/_remote.repositories | 3 + .../5.3.32/spring-framework-bom-5.3.32.pom | 157 + .../spring-framework-bom-5.3.32.pom.sha1 | 1 + .../6.0.11/_remote.repositories | 3 + .../6.0.11/spring-framework-bom-6.0.11.pom | 163 + ...pring-framework-bom-6.0.11.pom.lastUpdated | 9 + .../spring-framework-bom-6.0.11.pom.sha1 | 1 + .../6.0.15/_remote.repositories | 3 + .../6.0.15/spring-framework-bom-6.0.15.pom | 163 + .../spring-framework-bom-6.0.15.pom.sha1 | 1 + .../6.1.6/_remote.repositories | 3 + .../6.1.6/spring-framework-bom-6.1.6.pom | 163 + ...spring-framework-bom-6.1.6.pom.lastUpdated | 9 + .../6.1.6/spring-framework-bom-6.1.6.pom.sha1 | 1 + .../spring-jcl/6.1.6/_remote.repositories | 3 + .../spring-jcl/6.1.6/spring-jcl-6.1.6.pom | 43 + .../6.1.6/spring-jcl-6.1.6.pom.sha1 | 1 + .../spring-jdbc/6.1.6/_remote.repositories | 3 + .../spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom | 62 + .../6.1.6/spring-jdbc-6.1.6.pom.sha1 | 1 + .../6.1.6/_remote.repositories | 3 + .../6.1.6/spring-messaging-6.1.6.pom | 56 + .../6.1.6/spring-messaging-6.1.6.pom.sha1 | 1 + .../spring-orm/6.1.6/_remote.repositories | 3 + .../spring-orm/6.1.6/spring-orm-6.1.6.pom | 69 + .../6.1.6/spring-orm-6.1.6.pom.sha1 | 1 + .../spring-oxm/6.1.6/_remote.repositories | 3 + .../spring-oxm/6.1.6/spring-oxm-6.1.6.pom | 57 + .../6.1.6/spring-oxm-6.1.6.pom.sha1 | 1 + .../spring-test/6.1.6/_remote.repositories | 3 + .../spring-test/6.1.6/spring-test-6.1.6.pom | 50 + .../6.1.6/spring-test-6.1.6.pom.sha1 | 1 + .../spring-tx/6.1.6/_remote.repositories | 3 + .../spring-tx/6.1.6/spring-tx-6.1.6.pom | 56 + .../spring-tx/6.1.6/spring-tx-6.1.6.pom.sha1 | 1 + .../spring-web/6.1.6/_remote.repositories | 3 + .../spring-web/6.1.6/spring-web-6.1.6.pom | 62 + .../6.1.6/spring-web-6.1.6.pom.sha1 | 1 + .../spring-webmvc/6.1.6/_remote.repositories | 3 + .../6.1.6/spring-webmvc-6.1.6.pom | 80 + .../6.1.6/spring-webmvc-6.1.6.pom.sha1 | 1 + .../spring-ws-bom/4.0.10/_remote.repositories | 3 + .../4.0.10/spring-ws-bom-4.0.10.pom | 92 + .../spring-ws-bom-4.0.10.pom.lastUpdated | 9 + .../4.0.10/spring-ws-bom-4.0.10.pom.sha1 | 1 + .../1.19.7/_remote.repositories | 3 + .../1.19.7/database-commons-1.19.7.pom | 40 + .../1.19.7/database-commons-1.19.7.pom.sha1 | 1 + .../jdbc/1.19.7/_remote.repositories | 3 + .../jdbc/1.19.7/jdbc-1.19.7.pom | 40 + .../jdbc/1.19.7/jdbc-1.19.7.pom.sha1 | 1 + .../postgresql/1.19.7/_remote.repositories | 3 + .../postgresql/1.19.7/postgresql-1.19.7.pom | 40 + .../1.19.7/postgresql-1.19.7.pom.sha1 | 1 + .../1.19.7/_remote.repositories | 3 + .../1.19.7/testcontainers-bom-1.19.7.pom | 318 ++ .../testcontainers-bom-1.19.7.pom.lastUpdated | 9 + .../1.19.7/testcontainers-bom-1.19.7.pom.sha1 | 1 + .../1.19.7/_remote.repositories | 3 + .../1.19.7/testcontainers-1.19.7.pom | 76 + .../1.19.7/testcontainers-1.19.7.pom.sha1 | 1 + .../xmlunit-core/2.9.1/_remote.repositories | 3 + .../xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom | 78 + .../2.9.1/xmlunit-core-2.9.1.pom.sha1 | 1 + .../xmlunit-parent/2.9.1/_remote.repositories | 3 + .../2.9.1/xmlunit-parent-2.9.1.pom | 587 +++ .../2.9.1/xmlunit-parent-2.9.1.pom.sha1 | 1 + .../yaml/snakeyaml/2.2/_remote.repositories | 3 + .../org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom | 495 +++ .../yaml/snakeyaml/2.2/snakeyaml-2.2.pom.sha1 | 1 + .../JUnitParams/1.1.0/JUnitParams-1.1.0.pom | 208 ++ .../1.1.0/JUnitParams-1.1.0.pom.sha1 | 1 + .../JUnitParams/1.1.0/_remote.repositories | 3 + .../4.0.0/_remote.repositories | 3 + .../git-commit-id-plugin-parent-4.0.0.pom | 282 ++ ...git-commit-id-plugin-parent-4.0.0.pom.sha1 | 1 + .../4.0.0/_remote.repositories | 4 + .../4.0.0/git-commit-id-plugin-4.0.0.jar | Bin 0 -> 39013 bytes .../4.0.0/git-commit-id-plugin-4.0.0.jar.sha1 | 1 + .../4.0.0/git-commit-id-plugin-4.0.0.pom | 306 ++ .../4.0.0/git-commit-id-plugin-4.0.0.pom.sha1 | 1 + .../stax/stax-api/1.0.1/_remote.repositories | 3 + .../stax/stax-api/1.0.1/stax-api-1.0.1.pom | 51 + .../stax-api/1.0.1/stax-api-1.0.1.pom.sha1 | 1 + .../xmlpull/1.1.3.1/_remote.repositories | 3 + .../xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom | 16 + .../xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.sha1 | 1 + pom.xml | 6 +- 2282 files changed, 214298 insertions(+), 4 deletions(-) delete mode 100644 WebAPI.war create mode 100644 arachnejars/arachne-common-types-3.x-MDACA.jar create mode 100644 arachnejars/arachne-common-utils-3.x-MDACA.jar create mode 100644 arachnejars/arachne-commons-3.x-MDACA.jar create mode 100644 arachnejars/arachne-no-handler-found-exception-util-3.x-MDACA.jar create mode 100644 arachnejars/arachne-scheduler-3.x-MDACA.jar create mode 100644 arachnejars/arachne-storage-3.x-MDACA.jar create mode 100644 arachnejars/arachne-sys-settings-3.x-MDACA.jar create mode 100644 arachnejars/data-source-manager-3.x-MDACA.jar create mode 100644 arachnejars/execution-engine-commons-3.x-MDACA.jar create mode 100644 arachnejars/logging-3.x-MDACA.jar create mode 100644 code/arachne/arachne-common-types-3.x-MDACA.jar create mode 100644 code/arachne/arachne-common-utils-3.x-MDACA.jar create mode 100644 code/arachne/arachne-commons-3.x-MDACA.jar create mode 100644 code/arachne/arachne-no-handler-found-exception-util-3.x-MDACA.jar create mode 100644 code/arachne/arachne-scheduler-3.x-MDACA.jar create mode 100644 code/arachne/arachne-storage-3.x-MDACA.jar create mode 100644 code/arachne/arachne-sys-settings-3.x-MDACA.jar create mode 100644 code/arachne/ch/qos/logback/logback-classic/1.4.14/_remote.repositories create mode 100644 code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom create mode 100644 code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom.sha1 create mode 100644 code/arachne/ch/qos/logback/logback-core/1.4.14/_remote.repositories create mode 100644 code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom create mode 100644 code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom.sha1 create mode 100644 code/arachne/ch/qos/logback/logback-parent/1.4.14/_remote.repositories create mode 100644 code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom create mode 100644 code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom.sha1 create mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/_remote.repositories create mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom create mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.lastUpdated create mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.sha1 create mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/_remote.repositories create mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom create mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom.sha1 create mode 100644 code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/_remote.repositories create mode 100644 code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom create mode 100644 code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom.sha1 create mode 100644 code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/_remote.repositories create mode 100644 code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom create mode 100644 code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom.sha1 create mode 100644 code/arachne/com/atlassian/commonmark/commonmark/0.15.2/_remote.repositories create mode 100644 code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom create mode 100644 code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom.sha1 create mode 100644 code/arachne/com/atlassian/pom/base-pom/5.0.13/_remote.repositories create mode 100644 code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom create mode 100644 code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom.sha1 create mode 100644 code/arachne/com/atlassian/pom/central-pom/5.0.13/_remote.repositories create mode 100644 code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom create mode 100644 code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom.sha1 create mode 100644 code/arachne/com/cloudbees/cloudbees-oss-parent/8/_remote.repositories create mode 100644 code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom create mode 100644 code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom.sha1 create mode 100644 code/arachne/com/cloudbees/syslog-java-client/1.1.7/_remote.repositories create mode 100644 code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom create mode 100644 code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom.sha1 create mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/_remote.repositories create mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom create mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom.sha1 create mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/_remote.repositories create mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom create mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom.sha1 create mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.17.0/_remote.repositories create mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom create mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.lastUpdated create mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.sha1 create mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.6.1/_remote.repositories create mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom create mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.lastUpdated create mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.sha1 create mode 100644 code/arachne/com/fasterxml/classmate/1.6.0/_remote.repositories create mode 100644 code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom create mode 100644 code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.lastUpdated create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.lastUpdated create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom create mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.11/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom create mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.lastUpdated create mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.15/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom create mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.lastUpdated create mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.16/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom create mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/_remote.repositories create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom create mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom.sha1 create mode 100644 code/arachne/com/fasterxml/oss-parent/38/_remote.repositories create mode 100644 code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom create mode 100644 code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.lastUpdated create mode 100644 code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.sha1 create mode 100644 code/arachne/com/fasterxml/oss-parent/50/_remote.repositories create mode 100644 code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom create mode 100644 code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.lastUpdated create mode 100644 code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.sha1 create mode 100644 code/arachne/com/fasterxml/oss-parent/55/_remote.repositories create mode 100644 code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom create mode 100644 code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom.sha1 create mode 100644 code/arachne/com/fasterxml/oss-parent/56/_remote.repositories create mode 100644 code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom create mode 100644 code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom.sha1 create mode 100644 code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/_remote.repositories create mode 100644 code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom create mode 100644 code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom.sha1 create mode 100644 code/arachne/com/github/docker-java/docker-java-api/3.3.6/_remote.repositories create mode 100644 code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom create mode 100644 code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom.sha1 create mode 100644 code/arachne/com/github/docker-java/docker-java-parent/3.3.6/_remote.repositories create mode 100644 code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom create mode 100644 code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom.sha1 create mode 100644 code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/_remote.repositories create mode 100644 code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom create mode 100644 code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom.sha1 create mode 100644 code/arachne/com/github/docker-java/docker-java-transport/3.3.6/_remote.repositories create mode 100644 code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom create mode 100644 code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom.sha1 create mode 100644 code/arachne/com/github/jknack/handlebars.java/4.0.6/_remote.repositories create mode 100644 code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom create mode 100644 code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom.sha1 create mode 100644 code/arachne/com/github/jknack/handlebars/4.0.6/_remote.repositories create mode 100644 code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom create mode 100644 code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom.sha1 create mode 100644 code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/_remote.repositories create mode 100644 code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom create mode 100644 code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom.sha1 create mode 100644 code/arachne/com/github/scribejava/scribejava-apis/8.3.3/_remote.repositories create mode 100644 code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom create mode 100644 code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom.sha1 create mode 100644 code/arachne/com/github/scribejava/scribejava-core/8.3.3/_remote.repositories create mode 100644 code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom create mode 100644 code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom.sha1 create mode 100644 code/arachne/com/github/scribejava/scribejava-java8/8.3.3/_remote.repositories create mode 100644 code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom create mode 100644 code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom.sha1 create mode 100644 code/arachne/com/github/scribejava/scribejava/8.3.3/_remote.repositories create mode 100644 code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom create mode 100644 code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom.sha1 create mode 100644 code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/_remote.repositories create mode 100644 code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom create mode 100644 code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom.sha1 create mode 100644 code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/_remote.repositories create mode 100644 code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom create mode 100644 code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom.sha1 create mode 100644 code/arachne/com/github/virtuald/curvesapi/1.04/_remote.repositories create mode 100644 code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom create mode 100644 code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom.sha1 create mode 100644 code/arachne/com/github/waffle/waffle-jna/2.2.1/_remote.repositories create mode 100644 code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom create mode 100644 code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom.sha1 create mode 100644 code/arachne/com/github/waffle/waffle-parent/2.2.1/_remote.repositories create mode 100644 code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom create mode 100644 code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom.sha1 create mode 100644 code/arachne/com/github/waffle/waffle-shiro/2.2.1/_remote.repositories create mode 100644 code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom create mode 100644 code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom.sha1 create mode 100644 code/arachne/com/github/zafarkhaja/java-semver/0.9.0/_remote.repositories create mode 100644 code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom create mode 100644 code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom.sha1 create mode 100644 code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/_remote.repositories create mode 100644 code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom create mode 100644 code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom.sha1 create mode 100644 code/arachne/com/google/code/findbugs/jsr305/3.0.2/_remote.repositories create mode 100644 code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom create mode 100644 code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom.sha1 create mode 100644 code/arachne/com/google/code/gson/gson-parent/2.10.1/_remote.repositories create mode 100644 code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom create mode 100644 code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom.sha1 create mode 100644 code/arachne/com/google/code/gson/gson/2.10.1/_remote.repositories create mode 100644 code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom create mode 100644 code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.1.3/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.11.0/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.18.0/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.21.1/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.26.1/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom.sha1 create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.3.4/_remote.repositories create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom create mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom.sha1 create mode 100644 code/arachne/com/google/guava/failureaccess/1.0.1/_remote.repositories create mode 100644 code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom create mode 100644 code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom.sha1 create mode 100644 code/arachne/com/google/guava/failureaccess/1.0.2/_remote.repositories create mode 100644 code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom create mode 100644 code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom.sha1 create mode 100644 code/arachne/com/google/guava/guava-parent/25.1-jre/_remote.repositories create mode 100644 code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom create mode 100644 code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom.sha1 create mode 100644 code/arachne/com/google/guava/guava-parent/26.0-android/_remote.repositories create mode 100644 code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom create mode 100644 code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom.sha1 create mode 100644 code/arachne/com/google/guava/guava-parent/29.0-jre/_remote.repositories create mode 100644 code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom create mode 100644 code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom.sha1 create mode 100644 code/arachne/com/google/guava/guava-parent/31.1-jre/_remote.repositories create mode 100644 code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom create mode 100644 code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom.sha1 create mode 100644 code/arachne/com/google/guava/guava-parent/32.1.2-jre/_remote.repositories create mode 100644 code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom create mode 100644 code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom.sha1 create mode 100644 code/arachne/com/google/guava/guava-parent/33.2.0-jre/_remote.repositories create mode 100644 code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom create mode 100644 code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom.sha1 create mode 100644 code/arachne/com/google/guava/guava/25.1-jre/_remote.repositories create mode 100644 code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom create mode 100644 code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom.sha1 create mode 100644 code/arachne/com/google/guava/guava/29.0-jre/_remote.repositories create mode 100644 code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom create mode 100644 code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom.sha1 create mode 100644 code/arachne/com/google/guava/guava/31.1-jre/_remote.repositories create mode 100644 code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom create mode 100644 code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom.sha1 create mode 100644 code/arachne/com/google/guava/guava/32.1.2-jre/_remote.repositories create mode 100644 code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom create mode 100644 code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom.sha1 create mode 100644 code/arachne/com/google/guava/guava/33.2.0-jre/_remote.repositories create mode 100644 code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom create mode 100644 code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom.sha1 create mode 100644 code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/_remote.repositories create mode 100644 code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom create mode 100644 code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom.sha1 create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.1/_remote.repositories create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom.sha1 create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.3/_remote.repositories create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom.sha1 create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/2.8/_remote.repositories create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom.sha1 create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/_remote.repositories create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom create mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom.sha1 create mode 100644 code/arachne/com/ibm/icu/icu4j/62.1/_remote.repositories create mode 100644 code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom create mode 100644 code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom.sha1 create mode 100644 code/arachne/com/jayway/jsonpath/json-path/2.9.0/_remote.repositories create mode 100644 code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom create mode 100644 code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom.sha1 create mode 100644 code/arachne/com/microsoft/azure/msal4j/1.9.0/_remote.repositories create mode 100644 code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom create mode 100644 code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom.sha1 create mode 100644 code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/_remote.repositories create mode 100644 code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom create mode 100644 code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom.sha1 create mode 100644 code/arachne/com/nimbusds/content-type/2.1/_remote.repositories create mode 100644 code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom create mode 100644 code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom.sha1 create mode 100644 code/arachne/com/nimbusds/content-type/2.3/_remote.repositories create mode 100644 code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom create mode 100644 code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom.sha1 create mode 100644 code/arachne/com/nimbusds/lang-tag/1.4.4/_remote.repositories create mode 100644 code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom create mode 100644 code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom.sha1 create mode 100644 code/arachne/com/nimbusds/lang-tag/1.7/_remote.repositories create mode 100644 code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom create mode 100644 code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom.sha1 create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/_remote.repositories create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom.sha1 create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/_remote.repositories create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom.sha1 create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/_remote.repositories create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom.sha1 create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/_remote.repositories create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom create mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom.sha1 create mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/_remote.repositories create mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom create mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom.sha1 create mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/_remote.repositories create mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom create mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom.sha1 create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/_remote.repositories create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.lastUpdated create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.sha1 create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-SNAPSHOT.pom create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/resolver-status.properties create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.jar create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.pom.lastUpdated create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/_remote.repositories create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom.sha1 create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-SNAPSHOT.pom create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/resolver-status.properties create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-scheduler/3.x-MDACA/arachne-scheduler-3.x-MDACA.pom.lastUpdated create mode 100644 code/arachne/com/odysseusinc/arachne/arachne-sys-settings/arachne-sys-settings-3.x-MDACA.jar create mode 100644 code/arachne/com/odysseusinc/arachne/execution-engine-commons/3.x-MDACA/execution-engine-commons-3.x-MDACA.jar create mode 100644 code/arachne/com/odysseusinc/arachne/execution-engine-commons/3.x-MDACA/execution-engine-commons-3.x-MDACA.pom.lastUpdated create mode 100644 code/arachne/com/odysseusinc/data-source-manager/3.x-MDACA/data-source-manager-3.x-MDACA.jar create mode 100644 code/arachne/com/odysseusinc/data-source-manager/3.x-MDACA/data-source-manager-3.x-MDACA.pom.lastUpdated create mode 100644 code/arachne/com/odysseusinc/logging/3.x-MDACA/logging-3.x-MDACA.jar create mode 100644 code/arachne/com/odysseusinc/logging/3.x-MDACA/logging-3.x-MDACA.pom.lastUpdated create mode 100644 code/arachne/com/opencsv/opencsv/3.7/_remote.repositories create mode 100644 code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom create mode 100644 code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom.sha1 create mode 100644 code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/_remote.repositories create mode 100644 code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom create mode 100644 code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom.sha1 create mode 100644 code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/_remote.repositories create mode 100644 code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom create mode 100644 code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.lastUpdated create mode 100644 code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 create mode 100644 code/arachne/com/qmino/miredot-annotations/1.5.0/_remote.repositories create mode 100644 code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom create mode 100644 code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.lastUpdated create mode 100644 code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.sha1 create mode 100644 code/arachne/com/querydsl/querydsl-bom/5.0.0/_remote.repositories create mode 100644 code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom create mode 100644 code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.lastUpdated create mode 100644 code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.sha1 create mode 100644 code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/_remote.repositories create mode 100644 code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom create mode 100644 code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.lastUpdated create mode 100644 code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.sha1 create mode 100644 code/arachne/com/sun/activation/all/1.2.0/_remote.repositories create mode 100644 code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom create mode 100644 code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom.sha1 create mode 100644 code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/_remote.repositories create mode 100644 code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom create mode 100644 code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom.sha1 create mode 100644 code/arachne/com/sun/istack/istack-commons/4.1.2/_remote.repositories create mode 100644 code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom create mode 100644 code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom.sha1 create mode 100644 code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/_remote.repositories create mode 100644 code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom create mode 100644 code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom.sha1 create mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/_remote.repositories create mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom create mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom.sha1 create mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/_remote.repositories create mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom create mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom.sha1 create mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/_remote.repositories create mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom create mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom.sha1 create mode 100644 code/arachne/com/sun/xml/security/xml-security-impl/1.0/_remote.repositories create mode 100644 code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom create mode 100644 code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom.sha1 create mode 100644 code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/_remote.repositories create mode 100644 code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom create mode 100644 code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom.sha1 create mode 100644 code/arachne/com/thoughtworks/xstream/xstream/1.4.19/_remote.repositories create mode 100644 code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom create mode 100644 code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom.sha1 create mode 100644 code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom create mode 100644 code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom.sha1 create mode 100644 code/arachne/com/zaxxer/HikariCP/5.0.1/_remote.repositories create mode 100644 code/arachne/commons-beanutils/commons-beanutils/1.9.4/_remote.repositories create mode 100644 code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom create mode 100644 code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom.sha1 create mode 100644 code/arachne/commons-codec/commons-codec/1.16.1/_remote.repositories create mode 100644 code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom create mode 100644 code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom.sha1 create mode 100644 code/arachne/commons-collections/commons-collections/3.2.2/_remote.repositories create mode 100644 code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom create mode 100644 code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom.sha1 create mode 100644 code/arachne/commons-dbutils/commons-dbutils/1.6/_remote.repositories create mode 100644 code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom create mode 100644 code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom.sha1 create mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.3.1/_remote.repositories create mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom create mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom.sha1 create mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.5/_remote.repositories create mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom create mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom.sha1 create mode 100644 code/arachne/commons-io/commons-io/1.3.2/_remote.repositories create mode 100644 code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom create mode 100644 code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 create mode 100644 code/arachne/commons-io/commons-io/2.11.0/_remote.repositories create mode 100644 code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom create mode 100644 code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom.sha1 create mode 100644 code/arachne/commons-io/commons-io/2.15.1/_remote.repositories create mode 100644 code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom create mode 100644 code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom.sha1 create mode 100644 code/arachne/commons-io/commons-io/2.2/_remote.repositories create mode 100644 code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom create mode 100644 code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom.sha1 create mode 100644 code/arachne/commons-io/commons-io/2.4/_remote.repositories create mode 100644 code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom create mode 100644 code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom.sha1 create mode 100644 code/arachne/commons-io/commons-io/2.5/_remote.repositories create mode 100644 code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom create mode 100644 code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1 create mode 100644 code/arachne/commons-io/commons-io/2.7/_remote.repositories create mode 100644 code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom create mode 100644 code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom.sha1 create mode 100644 code/arachne/commons-lang/commons-lang/2.6/_remote.repositories create mode 100644 code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom create mode 100644 code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 create mode 100644 code/arachne/commons-logging/commons-logging/1.2/_remote.repositories create mode 100644 code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom create mode 100644 code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 create mode 100644 code/arachne/data-source-manager-3.x-MDACA.jar create mode 100644 code/arachne/execution-engine-commons-3.x-MDACA.jar create mode 100644 code/arachne/io/buji/buji-pac4j/9.0.1/_remote.repositories create mode 100644 code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom create mode 100644 code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom.sha1 create mode 100644 code/arachne/io/buji/buji-parent/1/_remote.repositories create mode 100644 code/arachne/io/buji/buji-parent/1/buji-parent-1.pom create mode 100644 code/arachne/io/buji/buji-parent/1/buji-parent-1.pom.sha1 create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/_remote.repositories create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.lastUpdated create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.sha1 create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/_remote.repositories create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.lastUpdated create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.sha1 create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/_remote.repositories create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.lastUpdated create mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.sha1 create mode 100644 code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/_remote.repositories create mode 100644 code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom create mode 100644 code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom.sha1 create mode 100644 code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/_remote.repositories create mode 100644 code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom create mode 100644 code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom.sha1 create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/_remote.repositories create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.lastUpdated create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.sha1 create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/_remote.repositories create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.lastUpdated create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.sha1 create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/_remote.repositories create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.lastUpdated create mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.sha1 create mode 100644 code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/_remote.repositories create mode 100644 code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom create mode 100644 code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom.sha1 create mode 100644 code/arachne/io/github/x-stream/mxparser/1.2.2/_remote.repositories create mode 100644 code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom create mode 100644 code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom.sha1 create mode 100644 code/arachne/io/jsonwebtoken/jjwt/0.9.1/_remote.repositories create mode 100644 code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom create mode 100644 code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom.sha1 create mode 100644 code/arachne/io/micrometer/micrometer-bom/1.12.5/_remote.repositories create mode 100644 code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom create mode 100644 code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.lastUpdated create mode 100644 code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.sha1 create mode 100644 code/arachne/io/micrometer/micrometer-bom/1.5.1/_remote.repositories create mode 100644 code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom create mode 100644 code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.lastUpdated create mode 100644 code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.sha1 create mode 100644 code/arachne/io/micrometer/micrometer-commons/1.12.5/_remote.repositories create mode 100644 code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom create mode 100644 code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom.sha1 create mode 100644 code/arachne/io/micrometer/micrometer-core/1.12.5/_remote.repositories create mode 100644 code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom create mode 100644 code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom.sha1 create mode 100644 code/arachne/io/micrometer/micrometer-observation/1.12.5/_remote.repositories create mode 100644 code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom create mode 100644 code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom.sha1 create mode 100644 code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/_remote.repositories create mode 100644 code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom create mode 100644 code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.lastUpdated create mode 100644 code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.sha1 create mode 100644 code/arachne/io/netty/netty-bom/4.1.107.Final/_remote.repositories create mode 100644 code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom create mode 100644 code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom.sha1 create mode 100644 code/arachne/io/netty/netty-bom/4.1.109.Final/_remote.repositories create mode 100644 code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom create mode 100644 code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.lastUpdated create mode 100644 code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.sha1 create mode 100644 code/arachne/io/netty/netty-bom/4.1.49.Final/_remote.repositories create mode 100644 code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom create mode 100644 code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.lastUpdated create mode 100644 code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.sha1 create mode 100644 code/arachne/io/netty/netty-bom/4.1.97.Final/_remote.repositories create mode 100644 code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom create mode 100644 code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom.sha1 create mode 100644 code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/_remote.repositories create mode 100644 code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom create mode 100644 code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.lastUpdated create mode 100644 code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.sha1 create mode 100644 code/arachne/io/projectreactor/reactor-bom/2023.0.5/_remote.repositories create mode 100644 code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom create mode 100644 code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.lastUpdated create mode 100644 code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.sha1 create mode 100644 code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/_remote.repositories create mode 100644 code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom create mode 100644 code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.lastUpdated create mode 100644 code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.sha1 create mode 100644 code/arachne/io/projectreactor/reactor-core/3.6.5/_remote.repositories create mode 100644 code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom create mode 100644 code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom.sha1 create mode 100644 code/arachne/io/prometheus/parent/0.16.0/_remote.repositories create mode 100644 code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom create mode 100644 code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.lastUpdated create mode 100644 code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.sha1 create mode 100644 code/arachne/io/prometheus/simpleclient_bom/0.16.0/_remote.repositories create mode 100644 code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom create mode 100644 code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.lastUpdated create mode 100644 code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.sha1 create mode 100644 code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/_remote.repositories create mode 100644 code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom create mode 100644 code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.lastUpdated create mode 100644 code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.sha1 create mode 100644 code/arachne/io/rest-assured/rest-assured-bom/5.3.2/_remote.repositories create mode 100644 code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom create mode 100644 code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.lastUpdated create mode 100644 code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.sha1 create mode 100644 code/arachne/io/rsocket/rsocket-bom/1.0.0/_remote.repositories create mode 100644 code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom create mode 100644 code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.lastUpdated create mode 100644 code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.sha1 create mode 100644 code/arachne/io/rsocket/rsocket-bom/1.1.3/_remote.repositories create mode 100644 code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom create mode 100644 code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.lastUpdated create mode 100644 code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.sha1 create mode 100644 code/arachne/io/smallrye/jandex-parent/3.1.2/_remote.repositories create mode 100644 code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom create mode 100644 code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom.sha1 create mode 100644 code/arachne/io/smallrye/jandex/3.1.2/_remote.repositories create mode 100644 code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom create mode 100644 code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom.sha1 create mode 100644 code/arachne/io/smallrye/smallrye-build-parent/39/_remote.repositories create mode 100644 code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom create mode 100644 code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom.sha1 create mode 100644 code/arachne/io/zipkin/brave/brave-bom/5.16.0/_remote.repositories create mode 100644 code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom create mode 100644 code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.lastUpdated create mode 100644 code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.sha1 create mode 100644 code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/_remote.repositories create mode 100644 code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom create mode 100644 code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.lastUpdated create mode 100644 code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.sha1 create mode 100644 code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/_remote.repositories create mode 100644 code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom create mode 100644 code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom.sha1 create mode 100644 code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/_remote.repositories create mode 100644 code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom create mode 100644 code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom.sha1 create mode 100644 code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/_remote.repositories create mode 100644 code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom create mode 100644 code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom.sha1 create mode 100644 code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/_remote.repositories create mode 100644 code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom create mode 100644 code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom.sha1 create mode 100644 code/arachne/jakarta/batch/batch-api-parent/2.1.1/_remote.repositories create mode 100644 code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom create mode 100644 code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom.sha1 create mode 100644 code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/_remote.repositories create mode 100644 code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom create mode 100644 code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom.sha1 create mode 100644 code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/_remote.repositories create mode 100644 code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom create mode 100644 code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom.sha1 create mode 100644 code/arachne/jakarta/el/jakarta.el-api/5.0.1/_remote.repositories create mode 100644 code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom create mode 100644 code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom.sha1 create mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/_remote.repositories create mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom create mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom.sha1 create mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/_remote.repositories create mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom create mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom.sha1 create mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/_remote.repositories create mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom create mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom.sha1 create mode 100644 code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/_remote.repositories create mode 100644 code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom create mode 100644 code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom.sha1 create mode 100644 code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/_remote.repositories create mode 100644 code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom create mode 100644 code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom.sha1 create mode 100644 code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/_remote.repositories create mode 100644 code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom create mode 100644 code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom.sha1 create mode 100644 code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/_remote.repositories create mode 100644 code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom create mode 100644 code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom.sha1 create mode 100644 code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/_remote.repositories create mode 100644 code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom create mode 100644 code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom.sha1 create mode 100644 code/arachne/jakarta/json/jakarta.json-api/2.1.3/_remote.repositories create mode 100644 code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom create mode 100644 code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom.sha1 create mode 100644 code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/_remote.repositories create mode 100644 code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom create mode 100644 code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom.sha1 create mode 100644 code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/_remote.repositories create mode 100644 code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom create mode 100644 code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom.sha1 create mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/_remote.repositories create mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom create mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom.sha1 create mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/_remote.repositories create mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom create mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom.sha1 create mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/_remote.repositories create mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom create mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom.sha1 create mode 100644 code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/_remote.repositories create mode 100644 code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom create mode 100644 code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 create mode 100644 code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/_remote.repositories create mode 100644 code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom create mode 100644 code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom.sha1 create mode 100644 code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/_remote.repositories create mode 100644 code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom create mode 100644 code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom.sha1 create mode 100644 code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/_remote.repositories create mode 100644 code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom create mode 100644 code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom.sha1 create mode 100644 code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/_remote.repositories create mode 100644 code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom create mode 100644 code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom.sha1 create mode 100644 code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/_remote.repositories create mode 100644 code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom create mode 100644 code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom.sha1 create mode 100644 code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/_remote.repositories create mode 100644 code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom create mode 100644 code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom.sha1 create mode 100644 code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/_remote.repositories create mode 100644 code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom create mode 100644 code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom.sha1 create mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/_remote.repositories create mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom create mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom.sha1 create mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/_remote.repositories create mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom create mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom.sha1 create mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/_remote.repositories create mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom create mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom.sha1 create mode 100644 code/arachne/jakarta/ws/rs/all/3.1.0/_remote.repositories create mode 100644 code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom create mode 100644 code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom.sha1 create mode 100644 code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/_remote.repositories create mode 100644 code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom create mode 100644 code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom.sha1 create mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/_remote.repositories create mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom create mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom.sha1 create mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/_remote.repositories create mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom create mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 create mode 100644 code/arachne/javax/activation/javax.activation-api/1.2.0/_remote.repositories create mode 100644 code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom create mode 100644 code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom.sha1 create mode 100644 code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/_remote.repositories create mode 100644 code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom create mode 100644 code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom.sha1 create mode 100644 code/arachne/javax/xml/bind/jaxb-api/2.3.1/_remote.repositories create mode 100644 code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom create mode 100644 code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom.sha1 create mode 100644 code/arachne/joda-time/joda-time/2.12.1/_remote.repositories create mode 100644 code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom create mode 100644 code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom.sha1 create mode 100644 code/arachne/joda-time/joda-time/2.5/_remote.repositories create mode 100644 code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom create mode 100644 code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom.sha1 create mode 100644 code/arachne/junit/junit/4.13.2/_remote.repositories create mode 100644 code/arachne/junit/junit/4.13.2/junit-4.13.2.pom create mode 100644 code/arachne/junit/junit/4.13.2/junit-4.13.2.pom.sha1 create mode 100644 code/arachne/logging-3.x-MDACA.jar create mode 100644 code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/_remote.repositories create mode 100644 code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom create mode 100644 code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom.sha1 create mode 100644 code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/_remote.repositories create mode 100644 code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom create mode 100644 code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom.sha1 create mode 100644 code/arachne/net/bytebuddy/byte-buddy/1.14.13/_remote.repositories create mode 100644 code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom create mode 100644 code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom.sha1 create mode 100644 code/arachne/net/java/dev/jna/jna-platform/5.5.0/_remote.repositories create mode 100644 code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom create mode 100644 code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom.sha1 create mode 100644 code/arachne/net/java/dev/jna/jna/5.13.0/_remote.repositories create mode 100644 code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom create mode 100644 code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom.sha1 create mode 100644 code/arachne/net/java/dev/jna/jna/5.5.0/_remote.repositories create mode 100644 code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom create mode 100644 code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom.sha1 create mode 100644 code/arachne/net/java/jvnet-parent/1/_remote.repositories create mode 100644 code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom create mode 100644 code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom.sha1 create mode 100644 code/arachne/net/java/jvnet-parent/5/_remote.repositories create mode 100644 code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom create mode 100644 code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom.sha1 create mode 100644 code/arachne/net/jcip/jcip-annotations/1.0/_remote.repositories create mode 100644 code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom create mode 100644 code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom.sha1 create mode 100644 code/arachne/net/minidev/accessors-smart/2.5.1/_remote.repositories create mode 100644 code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom create mode 100644 code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom.sha1 create mode 100644 code/arachne/net/minidev/json-smart/2.5.1/_remote.repositories create mode 100644 code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom create mode 100644 code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom.sha1 create mode 100644 code/arachne/net/shibboleth/parent/17.0.1/_remote.repositories create mode 100644 code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom create mode 100644 code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.lastUpdated create mode 100644 code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.sha1 create mode 100644 code/arachne/net/shibboleth/shib-networking/9.0.0/_remote.repositories create mode 100644 code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom create mode 100644 code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.lastUpdated create mode 100644 code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.sha1 create mode 100644 code/arachne/net/shibboleth/shib-security/9.0.0/_remote.repositories create mode 100644 code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom create mode 100644 code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.lastUpdated create mode 100644 code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.sha1 create mode 100644 code/arachne/net/shibboleth/shib-shared-bom/9.0.0/_remote.repositories create mode 100644 code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom create mode 100644 code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.lastUpdated create mode 100644 code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.sha1 create mode 100644 code/arachne/net/shibboleth/shib-shared-parent/9.0.0/_remote.repositories create mode 100644 code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom create mode 100644 code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.lastUpdated create mode 100644 code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.sha1 create mode 100644 code/arachne/net/shibboleth/shib-support/9.0.0/_remote.repositories create mode 100644 code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom create mode 100644 code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.lastUpdated create mode 100644 code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.sha1 create mode 100644 code/arachne/net/shibboleth/shib-velocity/9.0.0/_remote.repositories create mode 100644 code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom create mode 100644 code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.lastUpdated create mode 100644 code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.sha1 create mode 100644 code/arachne/org/antlr/antlr4-master/4.13.0/_remote.repositories create mode 100644 code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom create mode 100644 code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom.sha1 create mode 100644 code/arachne/org/antlr/antlr4-master/4.5.1-1/_remote.repositories create mode 100644 code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom create mode 100644 code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom.sha1 create mode 100644 code/arachne/org/antlr/antlr4-runtime/4.13.0/_remote.repositories create mode 100644 code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom create mode 100644 code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom.sha1 create mode 100644 code/arachne/org/antlr/antlr4-runtime/4.5.1-1/_remote.repositories create mode 100644 code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom create mode 100644 code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom.sha1 create mode 100644 code/arachne/org/apache/apache/13/_remote.repositories create mode 100644 code/arachne/org/apache/apache/13/apache-13.pom create mode 100644 code/arachne/org/apache/apache/13/apache-13.pom.sha1 create mode 100644 code/arachne/org/apache/apache/16/_remote.repositories create mode 100644 code/arachne/org/apache/apache/16/apache-16.pom create mode 100644 code/arachne/org/apache/apache/16/apache-16.pom.sha1 create mode 100644 code/arachne/org/apache/apache/17/_remote.repositories create mode 100644 code/arachne/org/apache/apache/17/apache-17.pom create mode 100644 code/arachne/org/apache/apache/17/apache-17.pom.sha1 create mode 100644 code/arachne/org/apache/apache/18/_remote.repositories create mode 100644 code/arachne/org/apache/apache/18/apache-18.pom create mode 100644 code/arachne/org/apache/apache/18/apache-18.pom.lastUpdated create mode 100644 code/arachne/org/apache/apache/18/apache-18.pom.sha1 create mode 100644 code/arachne/org/apache/apache/19/_remote.repositories create mode 100644 code/arachne/org/apache/apache/19/apache-19.pom create mode 100644 code/arachne/org/apache/apache/19/apache-19.pom.sha1 create mode 100644 code/arachne/org/apache/apache/21/_remote.repositories create mode 100644 code/arachne/org/apache/apache/21/apache-21.pom create mode 100644 code/arachne/org/apache/apache/21/apache-21.pom.lastUpdated create mode 100644 code/arachne/org/apache/apache/21/apache-21.pom.sha1 create mode 100644 code/arachne/org/apache/apache/23/_remote.repositories create mode 100644 code/arachne/org/apache/apache/23/apache-23.pom create mode 100644 code/arachne/org/apache/apache/23/apache-23.pom.sha1 create mode 100644 code/arachne/org/apache/apache/24/_remote.repositories create mode 100644 code/arachne/org/apache/apache/24/apache-24.pom create mode 100644 code/arachne/org/apache/apache/24/apache-24.pom.sha1 create mode 100644 code/arachne/org/apache/apache/25/_remote.repositories create mode 100644 code/arachne/org/apache/apache/25/apache-25.pom create mode 100644 code/arachne/org/apache/apache/25/apache-25.pom.sha1 create mode 100644 code/arachne/org/apache/apache/27/_remote.repositories create mode 100644 code/arachne/org/apache/apache/27/apache-27.pom create mode 100644 code/arachne/org/apache/apache/27/apache-27.pom.sha1 create mode 100644 code/arachne/org/apache/apache/29/_remote.repositories create mode 100644 code/arachne/org/apache/apache/29/apache-29.pom create mode 100644 code/arachne/org/apache/apache/29/apache-29.pom.sha1 create mode 100644 code/arachne/org/apache/apache/30/_remote.repositories create mode 100644 code/arachne/org/apache/apache/30/apache-30.pom create mode 100644 code/arachne/org/apache/apache/30/apache-30.pom.lastUpdated create mode 100644 code/arachne/org/apache/apache/30/apache-30.pom.sha1 create mode 100644 code/arachne/org/apache/apache/31/_remote.repositories create mode 100644 code/arachne/org/apache/apache/31/apache-31.pom create mode 100644 code/arachne/org/apache/apache/31/apache-31.pom.sha1 create mode 100644 code/arachne/org/apache/apache/32/_remote.repositories create mode 100644 code/arachne/org/apache/apache/32/apache-32.pom create mode 100644 code/arachne/org/apache/apache/32/apache-32.pom.sha1 create mode 100644 code/arachne/org/apache/apache/4/_remote.repositories create mode 100644 code/arachne/org/apache/apache/4/apache-4.pom create mode 100644 code/arachne/org/apache/apache/4/apache-4.pom.sha1 create mode 100644 code/arachne/org/apache/apache/7/_remote.repositories create mode 100644 code/arachne/org/apache/apache/7/apache-7.pom create mode 100644 code/arachne/org/apache/apache/7/apache-7.pom.sha1 create mode 100644 code/arachne/org/apache/apache/9/_remote.repositories create mode 100644 code/arachne/org/apache/apache/9/apache-9.pom create mode 100644 code/arachne/org/apache/apache/9/apache-9.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-collections4/4.1/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom create mode 100644 code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-compress/1.24.0/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom create mode 100644 code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-compress/1.26.0/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom create mode 100644 code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-csv/1.9.0/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom create mode 100644 code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-io/1.3.2/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom create mode 100644 code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-lang3/3.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom create mode 100644 code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/17/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/24/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/25/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/3/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/32/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/34/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/38/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/39/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/47/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/50/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/52/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/56/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/58/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/61/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/64/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/65/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/66/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-parent/69/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom create mode 100644 code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-text/1.11.0/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom create mode 100644 code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom.sha1 create mode 100644 code/arachne/org/apache/commons/commons-text/1.12.0/_remote.repositories create mode 100644 code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom create mode 100644 code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom.sha1 create mode 100644 code/arachne/org/apache/groovy/groovy-bom/4.0.21/_remote.repositories create mode 100644 code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom create mode 100644 code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.lastUpdated create mode 100644 code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.sha1 create mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/_remote.repositories create mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom create mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom.sha1 create mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/_remote.repositories create mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom create mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom.sha1 create mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/_remote.repositories create mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom create mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom.sha1 create mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/_remote.repositories create mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom create mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom.sha1 create mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/_remote.repositories create mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom create mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom.sha1 create mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/_remote.repositories create mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom create mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom.sha1 create mode 100644 code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/_remote.repositories create mode 100644 code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom create mode 100644 code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom.sha1 create mode 100644 code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/_remote.repositories create mode 100644 code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom create mode 100644 code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom.sha1 create mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/_remote.repositories create mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom create mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.lastUpdated create mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.sha1 create mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/_remote.repositories create mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom create mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.lastUpdated create mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.sha1 create mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/_remote.repositories create mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom create mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom.sha1 create mode 100644 code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/_remote.repositories create mode 100644 code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom create mode 100644 code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom.sha1 create mode 100644 code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/_remote.repositories create mode 100644 code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom create mode 100644 code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom.sha1 create mode 100644 code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/_remote.repositories create mode 100644 code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom create mode 100644 code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom.sha1 create mode 100644 code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/_remote.repositories create mode 100644 code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom create mode 100644 code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom.sha1 create mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.21.1/_remote.repositories create mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom create mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom.sha1 create mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.23.0/_remote.repositories create mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom create mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom.sha1 create mode 100644 code/arachne/org/apache/logging/logging-parent/1/_remote.repositories create mode 100644 code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom create mode 100644 code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.lastUpdated create mode 100644 code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.sha1 create mode 100644 code/arachne/org/apache/logging/logging-parent/10.1.1/_remote.repositories create mode 100644 code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom create mode 100644 code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.lastUpdated create mode 100644 code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.sha1 create mode 100644 code/arachne/org/apache/logging/logging-parent/10.6.0/_remote.repositories create mode 100644 code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom create mode 100644 code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom.sha1 create mode 100644 code/arachne/org/apache/maven/maven-parent/33/_remote.repositories create mode 100644 code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom create mode 100644 code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.lastUpdated create mode 100644 code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 create mode 100644 code/arachne/org/apache/maven/maven-parent/34/_remote.repositories create mode 100644 code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom create mode 100644 code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom.sha1 create mode 100644 code/arachne/org/apache/maven/maven-parent/35/_remote.repositories create mode 100644 code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom create mode 100644 code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom.sha1 create mode 100644 code/arachne/org/apache/maven/maven-parent/39/_remote.repositories create mode 100644 code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom create mode 100644 code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom.sha1 create mode 100644 code/arachne/org/apache/maven/maven/3.6.3/_remote.repositories create mode 100644 code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom create mode 100644 code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.lastUpdated create mode 100644 code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/_remote.repositories create mode 100644 code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar create mode 100644 code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom create mode 100644 code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/_remote.repositories create mode 100644 code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.jar create mode 100644 code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.jar.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.pom create mode 100644 code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.pom.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/_remote.repositories create mode 100644 code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar create mode 100644 code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom create mode 100644 code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/34/_remote.repositories create mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom create mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/35/_remote.repositories create mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom create mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/39/_remote.repositories create mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom create mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/_remote.repositories create mode 100644 code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar create mode 100644 code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom create mode 100644 code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/_remote.repositories create mode 100644 code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar create mode 100644 code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom create mode 100644 code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/_remote.repositories create mode 100644 code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar create mode 100644 code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar.sha1 create mode 100644 code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom create mode 100644 code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom.sha1 create mode 100644 code/arachne/org/apache/maven/surefire/surefire/3.1.2/_remote.repositories create mode 100644 code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom create mode 100644 code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom.sha1 create mode 100644 code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/_remote.repositories create mode 100644 code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom create mode 100644 code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom.sha1 create mode 100644 code/arachne/org/apache/poi/poi-ooxml/3.17/_remote.repositories create mode 100644 code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom create mode 100644 code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom.sha1 create mode 100644 code/arachne/org/apache/poi/poi/3.17/_remote.repositories create mode 100644 code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom create mode 100644 code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom.sha1 create mode 100644 code/arachne/org/apache/santuario/xmlsec/3.0.2/_remote.repositories create mode 100644 code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom create mode 100644 code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-cache/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-cache/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-config-core/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-config-core/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-config/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-config/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-core/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-core/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-crypto/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-crypto/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-event/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-event/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-lang/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-lang/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-root/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-root/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-spring/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-support/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-web/1.13.0/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom create mode 100644 code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom.sha1 create mode 100644 code/arachne/org/apache/shiro/shiro-web/2.0.1/_remote.repositories create mode 100644 code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom create mode 100644 code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom.sha1 create mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/_remote.repositories create mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom create mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom.sha1 create mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/_remote.repositories create mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom create mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom.sha1 create mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/_remote.repositories create mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom create mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom.sha1 create mode 100644 code/arachne/org/apache/velocity/velocity-engine-core/2.3/_remote.repositories create mode 100644 code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom create mode 100644 code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom.sha1 create mode 100644 code/arachne/org/apache/velocity/velocity-engine-parent/2.3/_remote.repositories create mode 100644 code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom create mode 100644 code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom.sha1 create mode 100644 code/arachne/org/apache/velocity/velocity-master/4/_remote.repositories create mode 100644 code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom create mode 100644 code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom.sha1 create mode 100644 code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/_remote.repositories create mode 100644 code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom create mode 100644 code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom.sha1 create mode 100644 code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/_remote.repositories create mode 100644 code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom create mode 100644 code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom.sha1 create mode 100644 code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/_remote.repositories create mode 100644 code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom create mode 100644 code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom.sha1 create mode 100644 code/arachne/org/apereo/cas/client/cas-client/4.0.4/_remote.repositories create mode 100644 code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom create mode 100644 code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom.sha1 create mode 100644 code/arachne/org/apiguardian/apiguardian-api/1.1.2/_remote.repositories create mode 100644 code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom create mode 100644 code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom.sha1 create mode 100644 code/arachne/org/aspectj/aspectjrt/1.9.22/_remote.repositories create mode 100644 code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom create mode 100644 code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom.sha1 create mode 100644 code/arachne/org/aspectj/aspectjweaver/1.9.22/_remote.repositories create mode 100644 code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom create mode 100644 code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom.sha1 create mode 100644 code/arachne/org/assertj/assertj-bom/3.24.2/_remote.repositories create mode 100644 code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom create mode 100644 code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.lastUpdated create mode 100644 code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.sha1 create mode 100644 code/arachne/org/assertj/assertj-build/3.24.2/_remote.repositories create mode 100644 code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom create mode 100644 code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom.sha1 create mode 100644 code/arachne/org/assertj/assertj-core/3.24.2/_remote.repositories create mode 100644 code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom create mode 100644 code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom.sha1 create mode 100644 code/arachne/org/assertj/assertj-parent/3.24.2/_remote.repositories create mode 100644 code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom create mode 100644 code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom.sha1 create mode 100644 code/arachne/org/awaitility/awaitility-parent/4.2.1/_remote.repositories create mode 100644 code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom create mode 100644 code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom.sha1 create mode 100644 code/arachne/org/awaitility/awaitility/4.2.1/_remote.repositories create mode 100644 code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom create mode 100644 code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom.sha1 create mode 100644 code/arachne/org/basepom/basepom-foundation/55/_remote.repositories create mode 100644 code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom create mode 100644 code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom.sha1 create mode 100644 code/arachne/org/basepom/basepom-minimal/55/_remote.repositories create mode 100644 code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom create mode 100644 code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom.sha1 create mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/_remote.repositories create mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom create mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom.sha1 create mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/_remote.repositories create mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom create mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom.sha1 create mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/_remote.repositories create mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom create mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom.sha1 create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/_remote.repositories create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom.sha1 create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/_remote.repositories create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom.sha1 create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/_remote.repositories create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom.sha1 create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/_remote.repositories create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom.sha1 create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/_remote.repositories create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom.sha1 create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/_remote.repositories create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom create mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom.sha1 create mode 100644 code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/_remote.repositories create mode 100644 code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom create mode 100644 code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom.sha1 create mode 100644 code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/_remote.repositories create mode 100644 code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom create mode 100644 code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom.sha1 create mode 100644 code/arachne/org/checkerframework/checker-qual/2.0.0/_remote.repositories create mode 100644 code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom create mode 100644 code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom.sha1 create mode 100644 code/arachne/org/checkerframework/checker-qual/2.11.1/_remote.repositories create mode 100644 code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom create mode 100644 code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom.sha1 create mode 100644 code/arachne/org/checkerframework/checker-qual/3.12.0/_remote.repositories create mode 100644 code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom create mode 100644 code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom.sha1 create mode 100644 code/arachne/org/checkerframework/checker-qual/3.31.0/_remote.repositories create mode 100644 code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom create mode 100644 code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom.sha1 create mode 100644 code/arachne/org/checkerframework/checker-qual/3.33.0/_remote.repositories create mode 100644 code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom create mode 100644 code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom.sha1 create mode 100644 code/arachne/org/checkerframework/checker-qual/3.37.0/_remote.repositories create mode 100644 code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom create mode 100644 code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom.sha1 create mode 100644 code/arachne/org/checkerframework/checker-qual/3.42.0/_remote.repositories create mode 100644 code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom create mode 100644 code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom.sha1 create mode 100644 code/arachne/org/codehaus/codehaus-parent/4/_remote.repositories create mode 100644 code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom create mode 100644 code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 create mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/_remote.repositories create mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom create mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom.sha1 create mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/_remote.repositories create mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom create mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom.sha1 create mode 100644 code/arachne/org/codehaus/jettison/jettison/1.5.4/_remote.repositories create mode 100644 code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom create mode 100644 code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom.sha1 create mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/_remote.repositories create mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom create mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom.sha1 create mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/_remote.repositories create mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom create mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom.sha1 create mode 100644 code/arachne/org/codehaus/mojo/mojo-parent/34/_remote.repositories create mode 100644 code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom create mode 100644 code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom.sha1 create mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.5/_remote.repositories create mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom create mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom.sha1 create mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.6/_remote.repositories create mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom create mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom.sha1 create mode 100644 code/arachne/org/dbunit/dbunit/2.7.0/_remote.repositories create mode 100644 code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom create mode 100644 code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom.sha1 create mode 100644 code/arachne/org/dom4j/dom4j/2.1.3/_remote.repositories create mode 100644 code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom create mode 100644 code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom.sha1 create mode 100644 code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/_remote.repositories create mode 100644 code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom create mode 100644 code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom.sha1 create mode 100644 code/arachne/org/eclipse/angus/angus-activation/2.0.2/_remote.repositories create mode 100644 code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom create mode 100644 code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom.sha1 create mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/_remote.repositories create mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom create mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom.sha1 create mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/_remote.repositories create mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom create mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom.sha1 create mode 100644 code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/_remote.repositories create mode 100644 code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom create mode 100644 code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom.sha1 create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.5/_remote.repositories create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom.sha1 create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.6/_remote.repositories create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom.sha1 create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.7/_remote.repositories create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom.sha1 create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.8/_remote.repositories create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.lastUpdated create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.sha1 create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.9/_remote.repositories create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.lastUpdated create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.sha1 create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0/_remote.repositories create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom create mode 100644 code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom.sha1 create mode 100644 code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/_remote.repositories create mode 100644 code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom create mode 100644 code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.lastUpdated create mode 100644 code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.sha1 create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/_remote.repositories create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.lastUpdated create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.sha1 create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/_remote.repositories create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.lastUpdated create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.sha1 create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/_remote.repositories create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom.sha1 create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/_remote.repositories create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom create mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom.sha1 create mode 100644 code/arachne/org/flywaydb/flyway-core/9.22.3/_remote.repositories create mode 100644 code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom create mode 100644 code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom.sha1 create mode 100644 code/arachne/org/flywaydb/flyway-parent/9.22.3/_remote.repositories create mode 100644 code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom create mode 100644 code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom.sha1 create mode 100644 code/arachne/org/freemarker/freemarker/2.3.32/_remote.repositories create mode 100644 code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom create mode 100644 code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom.sha1 create mode 100644 code/arachne/org/glassfish/expressly/expressly/5.0.0/_remote.repositories create mode 100644 code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom create mode 100644 code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/class-model/3.0.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom create mode 100644 code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/external/3.0.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom create mode 100644 code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom create mode 100644 code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/hk2-api/3.0.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom create mode 100644 code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/hk2-core/3.0.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom create mode 100644 code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom create mode 100644 code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom create mode 100644 code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom create mode 100644 code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom create mode 100644 code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/hk2/3.0.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom create mode 100644 code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom create mode 100644 code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom.sha1 create mode 100644 code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom create mode 100644 code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jakarta.el/3.0.3/_remote.repositories create mode 100644 code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom create mode 100644 code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom.sha1 create mode 100644 code/arachne/org/glassfish/jakarta.json/2.0.1/_remote.repositories create mode 100644 code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom create mode 100644 code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom.sha1 create mode 100644 code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/_remote.repositories create mode 100644 code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom create mode 100644 code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.lastUpdated create mode 100644 code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 create mode 100644 code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/_remote.repositories create mode 100644 code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom create mode 100644 code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom.sha1 create mode 100644 code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/_remote.repositories create mode 100644 code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom create mode 100644 code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom.sha1 create mode 100644 code/arachne/org/glassfish/jaxb/txw2/4.0.5/_remote.repositories create mode 100644 code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom create mode 100644 code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/containers/project/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/ext/project/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/inject/project/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom create mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.lastUpdated create mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.lastUpdated create mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/media/project/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/jersey/project/3.1.6/_remote.repositories create mode 100644 code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom create mode 100644 code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom.sha1 create mode 100644 code/arachne/org/glassfish/json/2.0.1/_remote.repositories create mode 100644 code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom create mode 100644 code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom.sha1 create mode 100644 code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/_remote.repositories create mode 100644 code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom create mode 100644 code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom.sha1 create mode 100644 code/arachne/org/graalvm/js/js/1.0.0-rc15/_remote.repositories create mode 100644 code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom create mode 100644 code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom.sha1 create mode 100644 code/arachne/org/graalvm/regex/regex/1.0.0-rc15/_remote.repositories create mode 100644 code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom create mode 100644 code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom.sha1 create mode 100644 code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/_remote.repositories create mode 100644 code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom create mode 100644 code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom.sha1 create mode 100644 code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/_remote.repositories create mode 100644 code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom create mode 100644 code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom.sha1 create mode 100644 code/arachne/org/hamcrest/hamcrest-core/2.2/_remote.repositories create mode 100644 code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom create mode 100644 code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom.sha1 create mode 100644 code/arachne/org/hamcrest/hamcrest/2.2/_remote.repositories create mode 100644 code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom create mode 100644 code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom.sha1 create mode 100644 code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom create mode 100644 code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom.sha1 create mode 100644 code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/_remote.repositories create mode 100644 code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/_remote.repositories create mode 100644 code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom create mode 100644 code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom.sha1 create mode 100644 code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/_remote.repositories create mode 100644 code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom create mode 100644 code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 create mode 100644 code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/_remote.repositories create mode 100644 code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom create mode 100644 code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom.sha1 create mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/_remote.repositories create mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom create mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom.sha1 create mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/_remote.repositories create mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom create mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom.sha1 create mode 100644 code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/_remote.repositories create mode 100644 code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom create mode 100644 code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 create mode 100644 code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/_remote.repositories create mode 100644 code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom create mode 100644 code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.lastUpdated create mode 100644 code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.sha1 create mode 100644 code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/_remote.repositories create mode 100644 code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom create mode 100644 code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.lastUpdated create mode 100644 code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.sha1 create mode 100644 code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/_remote.repositories create mode 100644 code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom create mode 100644 code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom.sha1 create mode 100644 code/arachne/org/jasig/cas/client/cas-client/3.6.1/_remote.repositories create mode 100644 code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom create mode 100644 code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom.sha1 create mode 100644 code/arachne/org/jasig/parent/jasig-parent/41/_remote.repositories create mode 100644 code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom create mode 100644 code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom.sha1 create mode 100644 code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/_remote.repositories create mode 100644 code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom create mode 100644 code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom.sha1 create mode 100644 code/arachne/org/jasypt/jasypt/1.9.2/_remote.repositories create mode 100644 code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom create mode 100644 code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom.sha1 create mode 100644 code/arachne/org/javassist/javassist/3.28.0-GA/_remote.repositories create mode 100644 code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom create mode 100644 code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom.sha1 create mode 100644 code/arachne/org/javassist/javassist/3.30.2-GA/_remote.repositories create mode 100644 code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom create mode 100644 code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom.sha1 create mode 100644 code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/_remote.repositories create mode 100644 code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom create mode 100644 code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom.sha1 create mode 100644 code/arachne/org/jboss/jboss-parent/39/_remote.repositories create mode 100644 code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom create mode 100644 code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.lastUpdated create mode 100644 code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.sha1 create mode 100644 code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/_remote.repositories create mode 100644 code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom create mode 100644 code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom.sha1 create mode 100644 code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/_remote.repositories create mode 100644 code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom create mode 100644 code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom.sha1 create mode 100644 code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/_remote.repositories create mode 100644 code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom create mode 100644 code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom.sha1 create mode 100644 code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/_remote.repositories create mode 100644 code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom create mode 100644 code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom.sha1 create mode 100644 code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/_remote.repositories create mode 100644 code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom create mode 100644 code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom.sha1 create mode 100644 code/arachne/org/jetbrains/annotations/17.0.0/_remote.repositories create mode 100644 code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom create mode 100644 code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom.sha1 create mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/_remote.repositories create mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom create mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.lastUpdated create mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.sha1 create mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/_remote.repositories create mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom create mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.lastUpdated create mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.sha1 create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/_remote.repositories create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.lastUpdated create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.sha1 create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/_remote.repositories create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.lastUpdated create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.sha1 create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/_remote.repositories create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.lastUpdated create mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.sha1 create mode 100644 code/arachne/org/json/json/20170516/_remote.repositories create mode 100644 code/arachne/org/json/json/20170516/json-20170516.pom create mode 100644 code/arachne/org/json/json/20170516/json-20170516.pom.sha1 create mode 100644 code/arachne/org/json/json/20220924/_remote.repositories create mode 100644 code/arachne/org/json/json/20220924/json-20220924.pom create mode 100644 code/arachne/org/json/json/20220924/json-20220924.pom.sha1 create mode 100644 code/arachne/org/json/json/20230227/_remote.repositories create mode 100644 code/arachne/org/json/json/20230227/json-20230227.pom create mode 100644 code/arachne/org/json/json/20230227/json-20230227.pom.sha1 create mode 100644 code/arachne/org/junit/junit-bom/5.10.0/_remote.repositories create mode 100644 code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom create mode 100644 code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom.sha1 create mode 100644 code/arachne/org/junit/junit-bom/5.10.1/_remote.repositories create mode 100644 code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom create mode 100644 code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom.sha1 create mode 100644 code/arachne/org/junit/junit-bom/5.10.2/_remote.repositories create mode 100644 code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom create mode 100644 code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.lastUpdated create mode 100644 code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.sha1 create mode 100644 code/arachne/org/junit/junit-bom/5.6.2/_remote.repositories create mode 100644 code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom create mode 100644 code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.lastUpdated create mode 100644 code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.sha1 create mode 100644 code/arachne/org/junit/junit-bom/5.7.2/_remote.repositories create mode 100644 code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom create mode 100644 code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 create mode 100644 code/arachne/org/junit/junit-bom/5.9.1/_remote.repositories create mode 100644 code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom create mode 100644 code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom.sha1 create mode 100644 code/arachne/org/junit/junit-bom/5.9.2/_remote.repositories create mode 100644 code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom create mode 100644 code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom.sha1 create mode 100644 code/arachne/org/junit/junit-bom/5.9.3/_remote.repositories create mode 100644 code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom create mode 100644 code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom.sha1 create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/_remote.repositories create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom.sha1 create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/_remote.repositories create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom.sha1 create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/_remote.repositories create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom.sha1 create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/_remote.repositories create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom create mode 100644 code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom.sha1 create mode 100644 code/arachne/org/junit/platform/junit-platform-commons/1.10.2/_remote.repositories create mode 100644 code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom create mode 100644 code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom.sha1 create mode 100644 code/arachne/org/junit/platform/junit-platform-engine/1.10.2/_remote.repositories create mode 100644 code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom create mode 100644 code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom.sha1 create mode 100644 code/arachne/org/jvnet/mimepull/mimepull/1.9.15/_remote.repositories create mode 100644 code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom create mode 100644 code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom.sha1 create mode 100644 code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom create mode 100644 code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom.sha1 create mode 100644 code/arachne/org/latencyutils/LatencyUtils/2.0.3/_remote.repositories create mode 100644 code/arachne/org/mockito/mockito-bom/4.11.0/_remote.repositories create mode 100644 code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom create mode 100644 code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom.sha1 create mode 100644 code/arachne/org/mockito/mockito-bom/5.7.0/_remote.repositories create mode 100644 code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom create mode 100644 code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.lastUpdated create mode 100644 code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.sha1 create mode 100644 code/arachne/org/mockito/mockito-core/5.7.0/_remote.repositories create mode 100644 code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom create mode 100644 code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom.sha1 create mode 100644 code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/_remote.repositories create mode 100644 code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom create mode 100644 code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom.sha1 create mode 100644 code/arachne/org/mozilla/rhino/1.7R4/_remote.repositories create mode 100644 code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom create mode 100644 code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom.sha1 create mode 100644 code/arachne/org/objenesis/objenesis-parent/3.3/_remote.repositories create mode 100644 code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom create mode 100644 code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom.sha1 create mode 100644 code/arachne/org/objenesis/objenesis/3.3/_remote.repositories create mode 100644 code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom create mode 100644 code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom.sha1 create mode 100644 code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom create mode 100644 code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.lastUpdated create mode 100644 code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.sha1 create mode 100644 code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/_remote.repositories create mode 100644 code/arachne/org/ohdsi/circe/1.11.1/_remote.repositories create mode 100644 code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom create mode 100644 code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.lastUpdated create mode 100644 code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.sha1 create mode 100644 code/arachne/org/ohdsi/circe/1.11.2/_remote.repositories create mode 100644 code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom create mode 100644 code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.lastUpdated create mode 100644 code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.sha1 create mode 100644 code/arachne/org/ohdsi/featureExtraction/3.2.0/_remote.repositories create mode 100644 code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom create mode 100644 code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.lastUpdated create mode 100644 code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.sha1 create mode 100644 code/arachne/org/ohdsi/hydra/0.4.0/_remote.repositories create mode 100644 code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom create mode 100644 code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.lastUpdated create mode 100644 code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.sha1 create mode 100644 code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom create mode 100644 code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.lastUpdated create mode 100644 code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.sha1 create mode 100644 code/arachne/org/ohdsi/sql/SqlRender/1.16.1/_remote.repositories create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/_remote.repositories create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/resolver-status.properties create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.lastUpdated create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.sha1 create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-SNAPSHOT.pom create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/_remote.repositories create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.lastUpdated create mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.sha1 create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/_remote.repositories create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/resolver-status.properties create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.lastUpdated create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.sha1 create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-SNAPSHOT.pom create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/_remote.repositories create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.lastUpdated create mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-core-api/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-core-impl/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-parent/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-profile-api/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-saml-api/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-security-api/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-security-impl/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-soap-api/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-storage-api/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/_remote.repositories create mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom create mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.lastUpdated create mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.sha1 create mode 100644 code/arachne/org/opentest4j/opentest4j/1.3.0/_remote.repositories create mode 100644 code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom create mode 100644 code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom.sha1 create mode 100644 code/arachne/org/ow2/asm/asm-analysis/6.2.1/_remote.repositories create mode 100644 code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom create mode 100644 code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom.sha1 create mode 100644 code/arachne/org/ow2/asm/asm-analysis/9.6/_remote.repositories create mode 100644 code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom create mode 100644 code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom.sha1 create mode 100644 code/arachne/org/ow2/asm/asm-bom/9.5/_remote.repositories create mode 100644 code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom create mode 100644 code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1 create mode 100644 code/arachne/org/ow2/asm/asm-commons/6.2.1/_remote.repositories create mode 100644 code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom create mode 100644 code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom.sha1 create mode 100644 code/arachne/org/ow2/asm/asm-commons/9.6/_remote.repositories create mode 100644 code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom create mode 100644 code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom.sha1 create mode 100644 code/arachne/org/ow2/asm/asm-tree/6.2.1/_remote.repositories create mode 100644 code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom create mode 100644 code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 create mode 100644 code/arachne/org/ow2/asm/asm-tree/9.6/_remote.repositories create mode 100644 code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom create mode 100644 code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom.sha1 create mode 100644 code/arachne/org/ow2/asm/asm-util/6.2.1/_remote.repositories create mode 100644 code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom create mode 100644 code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom.sha1 create mode 100644 code/arachne/org/ow2/asm/asm-util/9.6/_remote.repositories create mode 100644 code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom create mode 100644 code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom.sha1 create mode 100644 code/arachne/org/ow2/asm/asm/6.2.1/_remote.repositories create mode 100644 code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom create mode 100644 code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 create mode 100644 code/arachne/org/ow2/asm/asm/9.6/_remote.repositories create mode 100644 code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom create mode 100644 code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom.sha1 create mode 100644 code/arachne/org/ow2/ow2/1.5.1/_remote.repositories create mode 100644 code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom create mode 100644 code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 create mode 100644 code/arachne/org/ow2/ow2/1.5/_remote.repositories create mode 100644 code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom create mode 100644 code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 create mode 100644 code/arachne/org/owasp/encoder/encoder-parent/1.2.3/_remote.repositories create mode 100644 code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom create mode 100644 code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom.sha1 create mode 100644 code/arachne/org/owasp/encoder/encoder/1.2.3/_remote.repositories create mode 100644 code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom create mode 100644 code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom.sha1 create mode 100644 code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/_remote.repositories create mode 100644 code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom create mode 100644 code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom.sha1 create mode 100644 code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/_remote.repositories create mode 100644 code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom create mode 100644 code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-cas/6.0.3/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom create mode 100644 code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-core/5.7.4/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom create mode 100644 code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.2/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom create mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.3/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom create mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-http/6.0.3/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom create mode 100644 code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom create mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom create mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-oauth/6.0.3/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom create mode 100644 code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-oidc/6.0.3/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom create mode 100644 code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-parent/5.7.4/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom create mode 100644 code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.2/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom create mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.3/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom create mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom.sha1 create mode 100644 code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/_remote.repositories create mode 100644 code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom create mode 100644 code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom.sha1 create mode 100644 code/arachne/org/postgresql/postgresql/42.6.2/_remote.repositories create mode 100644 code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom create mode 100644 code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom.sha1 create mode 100644 code/arachne/org/projectlombok/lombok/1.18.32/_remote.repositories create mode 100644 code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom create mode 100644 code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom.sha1 create mode 100644 code/arachne/org/reactivestreams/reactive-streams/1.0.4/_remote.repositories create mode 100644 code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom create mode 100644 code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom.sha1 create mode 100644 code/arachne/org/reflections/reflections/0.10.2/_remote.repositories create mode 100644 code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom create mode 100644 code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom.sha1 create mode 100644 code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/_remote.repositories create mode 100644 code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom create mode 100644 code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom.sha1 create mode 100644 code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/_remote.repositories create mode 100644 code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom create mode 100644 code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.lastUpdated create mode 100644 code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.sha1 create mode 100644 code/arachne/org/semver4j/semver4j/4.3.0/_remote.repositories create mode 100644 code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom create mode 100644 code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom.sha1 create mode 100644 code/arachne/org/skyscreamer/jsonassert/1.5.1/_remote.repositories create mode 100644 code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom create mode 100644 code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom.sha1 create mode 100644 code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/_remote.repositories create mode 100644 code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom create mode 100644 code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom.sha1 create mode 100644 code/arachne/org/slf4j/jul-to-slf4j/2.0.13/_remote.repositories create mode 100644 code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom create mode 100644 code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom.sha1 create mode 100644 code/arachne/org/slf4j/slf4j-api/2.0.13/_remote.repositories create mode 100644 code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom create mode 100644 code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom.sha1 create mode 100644 code/arachne/org/slf4j/slf4j-bom/2.0.13/_remote.repositories create mode 100644 code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom create mode 100644 code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom.sha1 create mode 100644 code/arachne/org/slf4j/slf4j-parent/2.0.13/_remote.repositories create mode 100644 code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom create mode 100644 code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom.sha1 create mode 100644 code/arachne/org/sonatype/oss/oss-parent/7/_remote.repositories create mode 100644 code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom create mode 100644 code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.lastUpdated create mode 100644 code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 create mode 100644 code/arachne/org/sonatype/oss/oss-parent/9/_remote.repositories create mode 100644 code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom create mode 100644 code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 create mode 100644 code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/_remote.repositories create mode 100644 code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom create mode 100644 code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.lastUpdated create mode 100644 code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.sha1 create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/_remote.repositories create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.lastUpdated create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.sha1 create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/_remote.repositories create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.lastUpdated create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.sha1 create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/_remote.repositories create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.lastUpdated create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.sha1 create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/_remote.repositories create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.lastUpdated create mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.sha1 create mode 100644 code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/_remote.repositories create mode 100644 code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom create mode 100644 code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.lastUpdated create mode 100644 code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.sha1 create mode 100644 code/arachne/org/springframework/batch/spring-batch-core/5.1.1/_remote.repositories create mode 100644 code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom create mode 100644 code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom.sha1 create mode 100644 code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/_remote.repositories create mode 100644 code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom create mode 100644 code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom.sha1 create mode 100644 code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/_remote.repositories create mode 100644 code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom create mode 100644 code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.lastUpdated create mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar create mode 100644 code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot-test/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/boot/spring-boot/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom create mode 100644 code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/_remote.repositories create mode 100644 code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom create mode 100644 code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.lastUpdated create mode 100644 code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.sha1 create mode 100644 code/arachne/org/springframework/data/build/spring-data-build/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom create mode 100644 code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom create mode 100644 code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/data/spring-data-bom/2023.1.5/_remote.repositories create mode 100644 code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom create mode 100644 code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.lastUpdated create mode 100644 code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.sha1 create mode 100644 code/arachne/org/springframework/data/spring-data-commons/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom create mode 100644 code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom create mode 100644 code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/data/spring-data-jpa/3.2.5/_remote.repositories create mode 100644 code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom create mode 100644 code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom.sha1 create mode 100644 code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/_remote.repositories create mode 100644 code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom create mode 100644 code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.lastUpdated create mode 100644 code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.sha1 create mode 100644 code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/_remote.repositories create mode 100644 code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom create mode 100644 code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom.sha1 create mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/_remote.repositories create mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom create mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.lastUpdated create mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.sha1 create mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/_remote.repositories create mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom create mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.lastUpdated create mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.sha1 create mode 100644 code/arachne/org/springframework/integration/spring-integration-core/6.2.4/_remote.repositories create mode 100644 code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom create mode 100644 code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom.sha1 create mode 100644 code/arachne/org/springframework/integration/spring-integration-file/6.2.4/_remote.repositories create mode 100644 code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom create mode 100644 code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom.sha1 create mode 100644 code/arachne/org/springframework/integration/spring-integration-http/6.2.4/_remote.repositories create mode 100644 code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom create mode 100644 code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom.sha1 create mode 100644 code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/_remote.repositories create mode 100644 code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom create mode 100644 code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom.sha1 create mode 100644 code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/_remote.repositories create mode 100644 code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom create mode 100644 code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom.sha1 create mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/_remote.repositories create mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom create mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom.sha1 create mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/_remote.repositories create mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom create mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom.sha1 create mode 100644 code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/_remote.repositories create mode 100644 code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom create mode 100644 code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom.sha1 create mode 100644 code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/_remote.repositories create mode 100644 code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom create mode 100644 code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.lastUpdated create mode 100644 code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.sha1 create mode 100644 code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/_remote.repositories create mode 100644 code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom create mode 100644 code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.lastUpdated create mode 100644 code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 create mode 100644 code/arachne/org/springframework/retry/spring-retry/2.0.5/_remote.repositories create mode 100644 code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom create mode 100644 code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom.sha1 create mode 100644 code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/_remote.repositories create mode 100644 code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom create mode 100644 code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.lastUpdated create mode 100644 code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.sha1 create mode 100644 code/arachne/org/springframework/security/spring-security-bom/6.2.4/_remote.repositories create mode 100644 code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom create mode 100644 code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.lastUpdated create mode 100644 code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.sha1 create mode 100644 code/arachne/org/springframework/security/spring-security-crypto/6.2.4/_remote.repositories create mode 100644 code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom create mode 100644 code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom.sha1 create mode 100644 code/arachne/org/springframework/session/spring-session-bom/3.2.2/_remote.repositories create mode 100644 code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom create mode 100644 code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.lastUpdated create mode 100644 code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.sha1 create mode 100644 code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/_remote.repositories create mode 100644 code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom create mode 100644 code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.lastUpdated create mode 100644 code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-aop/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-aspects/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-beans/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-context-support/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-context/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-core/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-expression/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom create mode 100644 code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.lastUpdated create mode 100644 code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.29/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom create mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.32/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom create mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.11/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom create mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.lastUpdated create mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.15/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom create mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-framework-bom/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.lastUpdated create mode 100644 code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-jcl/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-jdbc/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-messaging/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-orm/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-oxm/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-test/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-tx/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-web/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/spring-webmvc/6.1.6/_remote.repositories create mode 100644 code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom create mode 100644 code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom.sha1 create mode 100644 code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/_remote.repositories create mode 100644 code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom create mode 100644 code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.lastUpdated create mode 100644 code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.sha1 create mode 100644 code/arachne/org/testcontainers/database-commons/1.19.7/_remote.repositories create mode 100644 code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom create mode 100644 code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom.sha1 create mode 100644 code/arachne/org/testcontainers/jdbc/1.19.7/_remote.repositories create mode 100644 code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom create mode 100644 code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom.sha1 create mode 100644 code/arachne/org/testcontainers/postgresql/1.19.7/_remote.repositories create mode 100644 code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom create mode 100644 code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom.sha1 create mode 100644 code/arachne/org/testcontainers/testcontainers-bom/1.19.7/_remote.repositories create mode 100644 code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom create mode 100644 code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.lastUpdated create mode 100644 code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.sha1 create mode 100644 code/arachne/org/testcontainers/testcontainers/1.19.7/_remote.repositories create mode 100644 code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom create mode 100644 code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom.sha1 create mode 100644 code/arachne/org/xmlunit/xmlunit-core/2.9.1/_remote.repositories create mode 100644 code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom create mode 100644 code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom.sha1 create mode 100644 code/arachne/org/xmlunit/xmlunit-parent/2.9.1/_remote.repositories create mode 100644 code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom create mode 100644 code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom.sha1 create mode 100644 code/arachne/org/yaml/snakeyaml/2.2/_remote.repositories create mode 100644 code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom create mode 100644 code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom.sha1 create mode 100644 code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom create mode 100644 code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom.sha1 create mode 100644 code/arachne/pl/pragmatists/JUnitParams/1.1.0/_remote.repositories create mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/_remote.repositories create mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom create mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom.sha1 create mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/_remote.repositories create mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar create mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar.sha1 create mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom create mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom.sha1 create mode 100644 code/arachne/stax/stax-api/1.0.1/_remote.repositories create mode 100644 code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom create mode 100644 code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom.sha1 create mode 100644 code/arachne/xmlpull/xmlpull/1.1.3.1/_remote.repositories create mode 100644 code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom create mode 100644 code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.sha1 diff --git a/WebAPI.war b/WebAPI.war deleted file mode 100644 index 3c16547a3..000000000 --- a/WebAPI.war +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ffa6cf411f6604c905ea98f02995a5f0acd931f65560394ae0d00b80c721221d -size 155166367 diff --git a/arachnejars/arachne-common-types-3.x-MDACA.jar b/arachnejars/arachne-common-types-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..455b9f2348b967e189e0ae33ff9a145cd5906a29 GIT binary patch literal 5356 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 literal 0 HcmV?d00001 diff --git a/arachnejars/arachne-commons-3.x-MDACA.jar b/arachnejars/arachne-commons-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..ec9202bef4c8245c062c901a48d06e175093d7b8 GIT binary patch literal 162934 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%0Ax7Thz%s;HCKS*TLcIK2ni!RJpv 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

>r8eelXVI@jn7 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 O9|dy4KOm<)82$&`K=c*> literal 0 HcmV?d00001 diff --git a/arachnejars/arachne-no-handler-found-exception-util-3.x-MDACA.jar b/arachnejars/arachne-no-handler-found-exception-util-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..55369089f1b2f5caa75a16eed81f600637aab0f0 GIT binary patch literal 5247 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 H-zD)c{_z^g literal 0 HcmV?d00001 diff --git a/arachnejars/arachne-scheduler-3.x-MDACA.jar b/arachnejars/arachne-scheduler-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..0c4c75397c866f98e482661b4579faacb8f5467e GIT binary patch literal 22289 zcmcG#1CV9S@-Nz)wr$(CZQHiZY1_8VY1_7K+t&1*bC3S#-5cLK5ij13SbNouoms1@ zvNE&sm$~GnfI%Pu{`O%sXjcEb_ANV!=JxH z|6IublT1cHRzg%nNtsqg^g(8FLRyN3b`D00hH`pxra_T@k!knHky>(klv;{L5FG5V zNHqzSs+ZWkEh|zHNlH=4Ih(Q?85;^Qkx3E78)-uE0Xgc4`cc}WElZNgNwT-TJAJJj zu$+WH@%{mSpQ2rtVvWCY@(KDe%Dv6K4d9_&FBt|pGo ze>n$||E42jXS=@`3-MoeVd8FNV()BWXZsgD;QwV0Hg?7))_=kM*HdsbvA1)waJF;w z_=_$G|8f9MCXTKaMkfE_2mjx?WvssMrw#-Fp#5h%YWyYt-*&ra>{o9{wefNsSz{K8d)1SIaMdx$Suetk9?;_yJU)x2H^AND+4Nw%X{;KlHa1& z?ZXLl3oxMpjc+LFHY~Ir-hS?x z#HM4tj71qQlCQstdmuvP=aFcE&K?*l$uD0C{V!?#Ar#FXH}+pjXFAcKLU?gic)om|OBdr|#vMJ^F z!bme1eOg$_@KO|pKKtl*@?rBtS8J2#LMvwq*{i>pur%wT2>fB^SrnC&yt_>br#&^Y zFVC~TPXhCm*5I-P5v1+JGWor6qBX0cAUcAUQ^0VeYP_gQ11tqC_x)jzpHj&fwX7n( zl}WObDlm7@_%kiDAkZ_=7c(VuR!pTapt z@K7}BASlo$i&*;U4l#djgreUWuN1$F9jAW$L72pTD^q<@$`kc2w1Clp9^jLSWM z^X-Q&f1I3t&bZW&2xqH^t6$E>qjcXUBYD9+n9|Y@3F^T+R@8h7xo6p`Lx)svR@@&t zZI5pMG_Zf)&gzmBt>MrB0I7ehn%e&#+xhRCxk&@U8+i%i`)8&M=~^d0I7rwJb^P9A zKTzR8VtjvML>X}gK;cf(jzr_J>*;zXtgvLy$aT$21D=Ye)OAJcrE|nQ%BE_Ya?K6T zr^ZHAD;q1V4NWTZ9=3)x>x8M`lpQ)IyY82+o9=DL!>zzrAaw~VZF_tneqWG5&6$(o$7|Wf|aAyXAJA1Y?mX-=Pm`k(E>w17Zn*|~rz`WI_p_o^J zmI{KZF8J8=Y6y(n#hH$A(b%B0{@UREA$^_DdZov)py|z+5bhnR(1xl;k&Y?bsvGN@ z6)!(aZZmfy&-XN|bsSB~!M8=nLT;t$l2soRYMwW|CX)Y~-gXYW++gP@oCnLI(Ozty^&NtJC&7=49?aS41Q?o^&{*f2ksr;= z%)>u`qV@`n8VfPMDoN|-vz|jBjDw6T^qGf5v#v3rPms2V_eKr{W%((fscr;h>_i+t z5JwjSmFi<;##<1xW#>E`O0cCsWrd(z8W{P7$~{HxR5g<)1F4jeN*hj1?_HHGwzI&` zLtDfu(_rpuU_YBiWXFourg${hnbn6lhNBap6vuS$ z;%DL=oQ%$YPCJ(vm}NcS0HR@RgHoDmWtco4%S#PngS7599j2c*cpQ=ZS+a_|LujAF zO~#W`1>kt#?GI&7Kvo)`kp(=udR8xCdNKq=xo+&bo;(HVvmVnsaELfV*!p;g86JQKUqFE7pg)6VS{vuNTO(f|B(E}GPo)3OnYkzq!9*@$AfI3?Z>UjZY=4h{t%aq% z>Yoki2}0W!3K2Py*=PNO=NwKQVq_`s?5bZ3S)0_JqXvHxceQxk&_6HNVob4RShu0c zTXoOsDXO73nKec->&peDM%6yLw`q0iSaKwvClB;X*T#&v0wd&5i4M?Z?8bA+>|BA? z9+tv1So)12-XcZE4Xp;P6%fyatFDmK>WQ>}`7tAgbOaq`I~WU;mzLvLJVwTI^)kt{ zRbm(EmH32y#YzbCmqfJdSOt%$3u_T}!>YID?lJNZtJEqDP>ZB`b5Qkykpe`g&Ta$Z zY5gGtJ(f(s4f3lt;%0%v>j%l}1CU-XTDmZPdeqRsC^<@t_NR$|hXWj%7E9|u1^;%P zrHT>GuP|?s-OAO8Xr+VC^LXar^D|D5JW8|=``mz9C~u+XB?w?C{Ecud8*;;E;{(8c zi*V}sf$K0-m{Z>u?g5+#jFJwetL4p#GgwQ?pEM31OSmoD*UQx2w1zvxhj7=JwA@jx z0bf8}?DYCOIryuLSDws8^~j~A>2%F8o9T$^kgy2HMa;SS@)z=fEORmH;!v3`Ts|2~ z!aD3>VuzbLgf#bQy$0Typ!CwXV}e16V9Kgklp42{6@H;FH{jlAJ4S3}@#1k?^i}}A zUeuQj5duDjeWu^MzInT$Kw`H<{f!3ZP9Biu2>p;VVT&QDQ^BRTjRAO2+=02jFokZH z&#mD#DA|A4OK-WpPdcxYGSKY(B)z51Ie5KY)352ziJvaQ!K~?r0;1bLsVc!dHmLSA zhr%@y4EnnK(N72J8?4vBBV?J{`Sz;p#B@SYYpj}4W%Lz3=_NEkiAJ~A0vQAO3EM*^ zjYm7zMp!1Q$1ZnQgwxw_2j;JK7?w}mULL@Qh#FO=OZAFmFm^k-yt%^Wtg+;g7}R=e z_9@b*2f7`{<6KXYHkJq&E6+1^z?35QF1q8`W(Jic<~q5F`ODKYm_(ZqmuvuvkI(*!A6tbtQ3ARbrvH9 zRpJpNEY*-@i2*iiS=sI}bW1S2v1gK#8;Y}In==9{MtphTpFve;{zi3)U&Hf`PKUAx z2~4oSUd$5aTkv~w=IaUTM|UP8D?k!Jq!$yk~+$w zN02Jun&Oc^qO|?(TegcmuxR-1A)2~wY!k2~zdRXPND)J=e_Xh8f?JA86xO&65vm9Q zTeb#LIB-tOWFC#0NrhfJ!hkn}uxH=TjjC$&Z)K-IW{6ySJ2LGmqtTQuAZzvoLT1a7 zV+i&wkLKtkq_%2(f0tlvDD$XKS?~8!Zlbdq#)nM<9>{4!Q*I5WHiy`&N7lepV2_6g zR)Rka7X=Gedi=n_NS>&OzRa2eP6`yWryag8wbnK18w(uk!MI2LnLW|rxTDgHr>y#$ zJ_+oV3ix~P1jHBEb~rZ>dva*wlVxdm_~#w0el@X5KZEW>OP5>Lj?&@c@akl63Ij~A z!N&N(sMbvEShB3IY~>`imii&}c+|n+cvVC}6}zbly|*rQ@qHJ43<-+JG`noFUg?XW zi74Ij@SHt*lLNEFZV0>P5f@#I6BTiOwaF2RgZ5&r2+0K?wSG1awG{kV$}UjIt34!;x~WCybP9L*9cyRg3$;v(0~paVJrX7ddEnd8KB1!` zsTCK57I`G{Hr24Fw(Odl+{o^|?ki=s$b5xAp&4%`Q7d;Mnjmexdps4IWIU5rcSB^Bbw%F8{t<_W zY-vy{u5i%Ra+i562`Z1tP*fD^uPuP+@9W(jH1y8+Z(B+)a7j8^n#t>-WCv}vG@~xQ z#oH__RUDTJB5pMcJt~`u4Yn)$+bwYx2!Kr zEHRTkBzP#eU8|rCd2Rci2L$d`lEQ*wG&q$AA@eB79Pxi^1cTKF1yq4bF6B93Ov`5FB z5Wv2Nm?0=-4ybe)yqTe{l>K2V1j&{h6s?8Pnh3-JgT%$sT=`2U;PbauWxe2wGYw|1 z=+9&?^Spi~KIezx4w5*>-Ppt)C~^kqJVNsd&g?OIBB;$PXp7YDS$YDm%xbl!Y!BFm z23%l!v~DZ-VPOZi&M}~|X_WsAqNz_^cz4X`edbtiG35AARk5EFmbL9;RNd2%b?=*h zyy9JHF&y_%W>@);3@_ZI#4@fnUb9!H(qLtbJ4=&$v&JARVJ}etlrg27vX{=I=p66& z79&Num+T|tlvVObjz)PTl{rv>Rb9AX&Q_ycCg$pUNmChTLUcqOQ`MJn|Tk8 zvcwWA_C|5`eS-x_wg3zHJKldrKhT?Hw}Zd{01kgpvj0!f&;N|%{{;5`3g-V2%B%cT zLlQ&o0``w%_Xm%7X4BM4jjOj@(iAG^=dX(|(@>~ew`E=U)wCAV`)Ynlq4w4Rma!Nqj5<#saNna=n9`wPX-?v^_i5ZW|;551p$0B7K=Ox9}T zL3oA9MrcWAYqc?0@&IS#d31fF|0%eV_B=;D!n4GPEvUl=({K-MYYPX3cHlP4BJ(%* zKptaP&Iq`p#vwT~FlUfTJyNYfD)#ASslnLAxTuKaU>SfiYM)*!J^j5)PN z4B6<5am0ARfx2Le5Nj#N_Q1#C)l(-~atpiIE}o-zP%OqhNVoNcjMRIgJ{F=?!~yj5 zd{JuJBsrGCDM!rAEeCMvEQ;FaCQ5VNfPH!yP6;iI&s#Bld$&bPQ#Kl*agDunp|HCy z`T^7=BQ{yUi^aOjQRf=Mwl1KWjb39g)_iNP141hK_(iNFL>m?|NynrE zs2T)&`lbI>rmD(|$o?(7lvJ{jL9-RM-T`N@haKDo4{}!-`4)C5WIJZ~&aKNzsuSX^ zRty%Rd_`IsdLQ8kVg>XF`F=k9Oyzq_ORDPB<7eD52mvZMm-*!>8DKM zpe^?FZdrixDM%@kV%?xd?&tT}aigfn0_8(e%3Q#>SbQ!m!F;N1;&(k9vUIsgr9!4v znvK>=2W>TDsc=@w3dS^9WZU*8Vu;=uUVP5aNtPPC;7-@Lm+q>QkAUqnK+%QD0g5Xji$v`)Hz_@uQlXE4O7CLMwF%5z(n!zSxKL{M zDhpHS`hC6w@`Xs135g|^@yU4bcpaE@-dV<{=G_2(CXJ1H#hC8<)=2_28u6$Z0YVn1 zub@-(44eCbft_idE;PX_t;)1QFg0p@{|lG?J8Xh3bK^bw2LVKa0RUkCZ(x(ZVX6NH z`~H}Szgvc6)hopfQRFU0{Xm3pe|{mvb&z>O=`cw_aV_%T+jv3kL_^@azxO{bZyF0a&|zrP;r2;URNB_b5m0@_v1 z^IHYWm0bIn6E#R|PF|BPas=;41{ga{g4^d8J|NCj%+&)battghV+JfW2A&d<@@ja` z$yfw{DYx=6A$jJmB23Y&Y9=ac49+qtQ$6Y|9mR}JLR=Y2QFySBrRlW1H+XgFF3A@^ zpiay#s*VMvn{mVk)sa5~DPiV*2{II}3W|4WY*0!JhDjDa`U^tX))^%NmtaGDq)ED+ z)(HC4j9}Ykdu-wfsuTCMO5)9n0pzfMo=~Hl{#{1`|E)#SAu6$ELOtz0Fg~DE;U#ZnY}8 zia6xVr?cKToJ^P%qnwJE1xD?8#2mMl%CFm^BvyXy-osqYQJJXcAx(j2g{fh(hFzdd zvp_D^Sg1SXnEb`9HnFB#W0?^NIW-Q$VNf%YJrPl!&G3vRC`>;Q6{EUo3`^tKsnA#b**E!{Q#vbS%F@UnMQEQS4T)M*=X z9-J!OI;p3jJ!g9xPrNaVYte=h2dr3RNuV7@m(o}eNfAHqjzKMlbrIO8ivi|=CIXp) zsb`clu(>8W0Ul+riH64~iJ&y!Fb?ykA3qiAImnrPhR}WXzii2}>3)up3dX#{;YnhG z#zFKK?t`ZwfbVoUei*n7Tm@#oigKafElD;I09@z}#gqu;)qC=9T4Vb5n{L2&)kWVS zun+{0*Ra7;&>w$pksRqVkUY39&ApWn&?Vh)a-#yu6KbUlWwRva6K{g}dt9%}5DJh% zPH7Loq{?v412a#c>kjaK?pyRxlj6d2?DzHF7)^pPSfcZhlpQ<<<;-*QdP(?)lJ=Rm zs3Y$JM&b0Pxyxa4JEVbfpGKh}QOz8B1O9YpJ;c5V#GZR*fCXM4;>bC$N^hqpk~G;) zOn8e#481A8!6EsXikrK~M!}?1j)mbvYlbMNH%llQoN~*@pDi^&zU;~PQ~taKRX`ha zge%KSb9&-YMM_-yM}(Q_wgM%(FA#5Hf!c_+0vRn(?Sg1n+(sWxIuuI11l@q^p{x8Tkavz4cpFircz&$~mGEd+ zUfhs8!Nwz{^xv8&uT_6IS*U=_&akRLgNXwLSp|a@Cpf@1V7qMNI*W?8-U zM8GTb;_b8)f=u#VEL<5TLUFgh@)omad8mT$w!e0BP<9*82pkF=+`Ss{2#p!Z59yUh z0e#R&|JH=@-v09x8zB(hqC$8AB>@7@vbdYGQ2M_$OTIh<(s;r077)ohYlLzQF$TSOuiNd`h;cswf0G+^Oqnkx@^tF?@ZNXZ-O$wn(9YTAhqQx@hyl|I+{EzEV=}cB zti%%Z%mgKXTnEPyX2LIm4FsE5Yq%%o@qu@PKTxAMvf$EkH$qGcCd;GnSWG$57>m2K z9xLEJB;CuIcowEGCCjML7TUQ^Cr7XgkijR++#8QAXf;Po6=9Xd4MC+qZm0>7X+g=@ z<9@E#OYf3sTQyTs`_c%{W>j*+yeX^q4D>L|QbURT8mX)OVF+hgVArmc7(Ny~_v5hb zb(^&ggl)HXAg25iF$mUGrWt5TQr|ER^&%#Q?besF5oVqa8CFucSih3T8R|i|Z|(o- zp1io2&|JX)02KeEb?N_70DsT2{o6DB!!4;@d0`D9zw8LQ3McQV(&HovoRC9H)nwvyYg^jE*BUw*&hfWRt1b0s=EVlROS8@FB_5pU%Aa zV$LjS6wvsj?;ygKIp5OFDSgmLC-T9PktZRr7NIk}BNG6+&nySYgL$s{Jq8BzlPN!Pr|OPgWq4@#@)dTTkeid_dZag!*O@>~VTI!P(c{4M9HT>3&aBM^K&r7OfBYKkunQGM_$Pw_swfnTJU7lT``<8Sl5~# zaWXDsp%ktpL}^oIfEmJz?$sj;gOK+Ciswis;y#=%an-*TpO+}>T_TIWb6TkFgNOMV#$*ft-vYzuFKycSG#gH6AG4Y8mW zw_B)bFO+x}%Gl25D>;?h%-$Iq+Q_$7-*`@eP6vbW(yiSs=uda&!qftXj?$g4uAtZ= zBH7rsWJSJe%{9!u{*pGPaBp&Dd7Ks2Wt*z^*U}IBO?WCzCPo(`W22hIzUZ5BSM>F` z55Z?)8XImzw|9$10@_2?zj+;;L zXuFOQj9W_LokT*ju!Kv~nITmDg|3F~o?g?W+;eu|_VLePM}@_=HPTWAM5S2fpC7olcNEZ|9Yo-SV2j(7gn+(ta?!lw}Mo!)N; z+ECdG9tBpf7dPrFTK;qXIEb*5o)Q&eK(`PZ z{>B}PUKlEcG2Oh|9nPq3|H{j$3Fuil`&mfBBh_O?#G`VSGZN>9kN87zUrbN!=5Xk~ zu&zAfo4+R(UIdZ{250RfK>}3E9m{)u!03PjVJ$`YXP9pl;k|vcn&hnB=)>3OvWx9p+L>1P{U{KDSy zCv@L4A_o%Ly???e-DxT%q1nDLZ_u=uPndnE{z#9asWGeUp%F>EUL_MF7TG<8Gw+4a zp?6w*%R0u}4^8lo^h2#QI{t1ib}l_ZVFyz^;WU{LS0r)}(XVD7lTX-#o3R`3RUQ8? zj~O$vQ=fOLuWZ=gaQ}IT>fZ8pMf`(JN&f%h$tW!B;Q(|%?%g^ zD|JyS%Lb=7S!GW`pfCt{YLi<#E0U?0XC>ezv9_pkwJA{|2B=aTdRH${PV2{+7anQf zDF~#}KRmvQ7NYlaU<6W59{^!6Ww%=?bQxE?_Pd)HV-HlDN^a0mFA!amXs0k#8G;lV zf6?XdHd`JZChs*?%`-tbjn!;Zv%uNLVskbu_p9DUtDT zKhdn1L=vw=A8=v3TFVhCX&R6Q%_nDIs^X*|@JL!km>!2Dgj5D)0L=&hvD#F2fNJsB zE|?;9OMj0ISF-B?4e%%s4@0q8S+`zlt{zUQo64@j-eY>=D{eI0V$Q0c`=zm}2G=ec z9r&_IiiEIL(;l*7DNpI3yv3+eE67qR7b;~h0ni2EU(4W{&gV(-&?O;O>f2&N_ zjz!vP=y*LmFbSfjj$NeGDZJam#38On%g=BywgS({ckwfAHw?F%pZ}Bkr)1DT;|;8B z;x>1_LBwZdGs7*QS&xx*cgo`7zqu<80eIoy1XqXYQ|5MUr{Ze!39N1Q*HjnK9*v zwuN%Fqc($25%Z!wzV7Ofkm`3&+wv&CG4#Y`u;9!O@EGn;0Rc+`)|33|{T2vpG<(bZ zm<()0dwBuPOl(wpTm76OSjqIi$u`|1{lEBFY57ac;!4m8Ug(D*%*GafWbY%@uN=r- z@n!>$H0k}PmN^!F73cj4Qv&~J8qW%ak}FU4La!Kt>^x-kY{#`<7CjOkjgxXvYQDt6xKLYF62VCGyJhlt!2)Awm;a zmbxzl;KInOHN~K+dd@^*uj{iHkYZM`pEZ4fS_SCtqyzrH_14p8s=KLZc^dNdQ}W-H zmSqmxH=RL*>TF)LaYcF8JO<3^&CiJ^n_vT-Wfej=wp@o)n3;p^iVjt_8d?|jx^X@V z^N^pf{EUCAj5W#x)0nN{UUy@}k`-DiX432@sxa=qALW449dPj|S|vVC%gbAhWxHey zj}fQSe7%G*KlaoL4Hh?}y`{ANO1zkCbU-E(_hOdfpr4%8j5-Ook11gcg`^4p;h6JF z5+RXZOueEfVCh9Kk2^kf1nA2Q0x*4g!Faw!eB03zQ_7g2PVqT;a{Ju9mQhug$O;FG zXp89{-5~!r^pOKK1zBIZa77j_xgJD?*-AerfJm=D7*0&@pjTo- z?z%3qF?Y-78w|zQ8_VeWBRJf!zhA`3%g%0w20-bX`3-k;M7jW+@xDzV8P$pHV2C5++CJ+!X!NrXKi6D6_B!&nGb{Ff$gO z6FE;vP&jj7CFw5B6hX|Z^c0Q2CppS{se|$T2tFz24kavPSGu(PTF6iDbAfc+*ttRD7F5?Ll z7G&-$u-pJ}!S+cl@CV%IT;#k7d zwNoiXnopc-sgQ(<(YVii^>Uifp>2xwb-E|BUq2e{N`TGSx=rJUMOr#ZrW7Sz-eAKS zNP1=@pxC)BO_!v}A|@K@JIrzJnTHID6WF!-5!!MllU?v~@Vz7JBo(E zqvPqD2nZ3t2cx;g%M1}31Z0k2iv){*uW*m|8G+q*m$G&z6}m94>ouLH)pf%6p9?<+ z*o7PP2WN2oV?H_mQlb9u3ol_~Z~gbhpVIX3R$hAg&M{6%mBu9qVyQ<@BEgD^z=FUh zfEqLfMC6w*qGO^n&}T$CnF6uDGE{3?x3uxMRH^z?gjp6OtleSW^s!x0-RxTTrSb9M z^0D^2>N)FUyVD~PTB_{lC-0l_w%5y+*Yg9<$#(k5w&$S(fYg}^pJQBQUnvpXTTp_{ zupdGg`rJ0Z*b6ID8vY?2gxEm1Nzi7*_!DCnzZk)1P=GGe96SScBz;{$JxiA&%<@~l zQC5f{&Vhnp8fN6nk1Fw*wGE)^x@}#iZEFyux>s63f`z(Ja3?C!xpHfqw)z_Q;R?h z^$o28EW^92pu1`dN^XrY--;N=Nz$mq@N5bL2q+tY_k%riJGsqMCO7)h zmJcJ<)n|E~i#Zx>w-eCw15tY`<;yJHs#DdAvOXZz#ro9DrOQ=v^}L{cgp2WSZ!sG{JiM0?$!29~VC1MMuaGS0i9 zAnpn2#vtNn9)bAM?b#6bcj#Qneboe#xr&*@6SX&d6V{ zML2S|8p8k|#yP3+FqAIIg`tDSHk|82m5IhCKIBD&3t`NmQ{tnDBB~eaz|-n{LZV8G zr!irqQBs-4E~zmt_3f+R!R>~&8KadjoV5L-&nUo>t!(Sl28)dg(4<$&Ys{=IQ6}~D zJ?bMQglh3~iS!4qWf6?2=c@s3PWVsj{>mAE1(XScSX-O{`w`wb%Lpt`y{y%S>qpqH zM?W&nQc;@6-GY#`CI<40A5JtMCf+zOrIIqa22}fFb*-1+m+N3Qm;kz&2q;E^(&cme z(py(AC_ZeqhDKa-n4}gj7Z8$(Gtk*S41rCZxR+1f`GxrQJ_|RdHZhn#P$=sRuj+)I zs4-wzihq2C5zvB0P)!|DGp@g-EHe1v&=OZ&z)^^|x=T;vaCu+OJ8;zK4@invq%jKV z?C~m%owKMw6{aSk^40V&Vb;vu;dZhSm1koBVayGBj#;5>()1sHan=lhxwj)r4LE8n zk#YMMMo1G?PD%3y!CAeA#l-HnBO^VnyAn#J;x(@)#*cz0mUwqcq;2ON7`4VPOx+h{ z#yW^v{C2>}g^zbeEoU+qM2eQx-zhjqY)#fv&q1@ula{hrcx#N=S{;xl{SwwjbW{{s zM%N0OIc=3G;BUArXMEPcaod%ZrPJ;1V{T!??5K)owKx)%2YEhg#mYSxOZj88jV)_v z)_ietN4lCrrW_vXi!fjqe`V`9cth_3IKY#xZ!}fzC~x+Z9q?}2VGRr2WF3T_k~=p0 z>CHRv2gnr|R#Vu7ccz{uw!odcgTp;&SsiX5+~z{cWS-{54D7Fr=@wiRSZ5{$hPrSQ z!sb|;CMP_l{jwO#0gk*4iXjteN3;^&ADy7Pc#W`!pJN)(QT(#v%t=wsO;DEL zZC6a%zu?S~39Nzn!T1{nXD7)VV`O{@3~3Kg!lW`ObIr5B=**bRyEy!B!6mmX%JnAyq2AmphNXrd1OX7 zmt%7@_?##nr6WuDDuQh4-Mnnbf;S^N%w#+O&ABryw;=;twWP>o`B5$GJs~FbPKvIv z4q%_K|2>gBoycnrLpmkUTEm~XF#wD6Eu*7HK@kX5pKc#Z^fWE|_v8uGFz%#piP_XJxc>MT!|^bHv%CNH^SO zB_|}4-M`g0!$2^b9g~KZ@0ueL+ZxLA3%lwP?JX}DO6%h#Eizre(Gm^i*}pJ!fVuNT=$baOa+D(2ZctV4g*kYZk2iE&J}EVfWqc7qBxb=eV4 z9W5A2Er!tDZlG5?J7r5r8k2?;1|gstSSB~TX_j?_WfrUEB(qf|^wb#d@k3l7(znKRA&#J2JkgpM)31%$5hbr^ z1RY5QS3hBI_89-biW?9oI6YXS>Pw@b%`3KC=1sCz=G9xSMH|5fO$lq6(8Cd|=LzB( zV&FJ>H_|G@(=k{u>-=aIjS8hQ&J6jc)TPRunGz28jh?`cHjEXT$?b)`H=}`UYO%-0 zgcxjV6qy`KF+`EcmuBqJW%gGQp(G`r&JgFeMK znGN-GoCtX-3$mSqW!2_YI@!&I15F3FuWjc~G5ZVZ(o20q5l-TAb$3=*=er%HycR-e zba1pdu~b=DYOHKDJBpi(im`cO6(fy=JiW_}r!jgTn`CToE`r4$)?=FEiAkH>oNX-H z%ZeK+6X{@NDmyee(W@c32D%i47WXMV?oV2z+S|`l>ZGZdV(U_)xXU@~h~Xu@sD@p~ zd4?rl@vv3YYRuf&=zTbv;KZh$jrCeEZV;K}^$s_wLY>?aZ zMv2F-nuXji>1mLarrQs`E5mI7ho&8!<6sm~P0+s3^}xVcdc0K4EgmI?)2x}>G0Lm_ zc9V}}Pq-l}fHho-ayw*rt%m0%;9EoRwJ`Vwj*P-CGsAC=c!l zujbx=p&YwC&6!i@H|~*FOjURgPTylbZ|~TbIz2gr!h{zUxKksZnKn-`(6%M=oSmJI zH$YwiBNbOIn`x%ZS&i4o!bWHWI6Pm>M(A8nmv3e~OuqGsDvF&v#fM?1*`L}er6$Ca znbA7Ak)tFliQ$YDZy!qHZbSg!?E2s=Lh&m*$@w>r*nN= z`dFu!Cg+K9o5@xw45#yZ;_*>vHO$B(;JJ{dSdcFrjjA~prqXd#Bv=U9By=m-4tH;F zyTF^a;F_`ZC!(!#%dVR9e)M*cPvazEkh`smN_+;rI(RC-2A%?k)V zwO-3qj&yOBq8u(WgPWOGo~GwozrO~;{QkqsTsrFrDyQy-Rq_5fNXQnxbb^;CFxdim zZ-00yt(uX>@X;kSii2p^6!vBsPkmm63)NURr8t?F<7h-ZUio08{gumT%zf4xRthGK zvt5%8`E9j?%CIhIh<<0sl(czRaQW5yJv`S}l5gSEBU?8Q4WhJI1wstWaAS(UvL30H z-czxsko^3C*Jojafh*GbM`e^bxuK?$rcvG1*za~D)@2N+C5K&!u0{=9FPo#&78p_D zd5q&I>b{wglR2sSL|={4o4rZIr=y=z%$CDTwgZRl-&WfpS#jf-Un%q#t4c>F1eW!7 ztdjA8*z1yNh46`oWMlxQvtFlN_?~z>C$o^gzC9;xxw*A6d_;rH;|!TMQb#A4=bHYK zzTbc>-+{Mdbi|9V(38$1d_m=(q_Mn{FL-473V@}Dk@Ikr7AS+K^|ZpuCzW$d}aa%Gr^tR*ar&1O7=fwhtjEMG^oc2+htGJ z7tcJ~0p({1S<1QMxx}`@58ECYx^oRns4%QE-fE!V#ud4Gx4@2UwD0;puTq^qNU|tKjT*-Q7bDd!0LWw z{BTIw%zP>7r9b_`Z3381ULN9WW)w}*rvq0Y!^2p0|g6? zMsg;Ie0Rc_@(7gT$ss8pYoYG%Vb0Hj=|GzyADYbF4mo9hr|z6wIYs%7?32+%-uG5k zyhVM%oh9n!KG|%};kBCcvykg2-As$w)saT--kjiUkGvRW#}w<6jWd^Ct*p$6nojZ55tZN&sTMx$$KRCJu7vkSDO8{A=| z2!pJ&>`@arWfgnzAm2CGgUMd>{x{ofL2%b0#~W~Z*Y)Wgb)qHC(EFZk+st8^NAKkV zm&q4bfvr+CFVOo?jz0SEU`L+j@IowYLhOuTBUY;#aulL^Te0CRtPLYa@4Qa|UG6ot zru8$=2gWrkxn|Cn0uGX|UulDe$wj!q{H0}jiTA!Xx+)quj!oJ* z6cbWhAAyuQYDPfI_T#lCV9t&J&JKAsBZ}6$J(2bdT5Mr5tJ7|%w0$V6Q7;FI+MzV9 z7&pVZ=&it8t*L;!_|njYscp7H4XYtH4;8t2aJBdmD+mL*bFn}789QMjBjWSM#OIx% z%kVXa%DG|_E%1aSYhLM5WWCKo7eFw@+#YmbC!U~vVt}bqIdm!nCr2J7PjP)SO9iEa ziwYbHrHpE&jOfG?dHzTyRX;PLpUnYxWPS4Jk#u?fm5m`W;*+HOQ;3=f{6PhtQD?pO znuM%{qfKu-?n&FqWr^q&bro}GLI4viLgi3z%)k=`>#GZwn%re^YJmNnd+S19;C(Cl zx`XZ)Gw)l#N?(?#FY4fJrsUd7KpS~vBzg{t~f6K8vz8!`_UN`*md49FF`w0fEHIXb{mtXoSalYKWS%k@KV84mcx&U}r9FWvwj@Msn=>s+HJ>bp)*5m;cU3(*tbHm&AF_GwA%=#_xSsQ)y zy&ioQ@NDuH7({Rn6aO<-=!#e1MYCGk3ll}fWF0@clEyubH0dZ61$ut*0kZA%y%ZUB z+fggxBkChgaK|(RV3$_a3Ga}MtJLX2Df}y{H}|C9gAQ$n&VH{8uDUgs;T3Rr3fTH2 z5E>6|Uz0m1^OioaH;>U6&TOvV zoD)BdF){C;mCvLH7tFlDk4)9!wH0^j+_vReco?AvkX_yth7WA(CNMwYB&3e$Nm z5OPQ|RESP&a7UNq$3X*=1DGl7r2I-l9SQL4g0&!t=F$i@4D=^d}Xq1bNpj9*8c-Skx#lFaqpC{Kk_bk-gJN zq*Pw2xe`_F!^0^S=Na?Ay6RLC87J#$bh#~#T_BKCHf14`E})UVd#o7m#^L?c72|BA$IU(=J2;bF`T@=1ePd_w~H{a`7MQ zL4+dh6#sz=RX*p0+0->PJ?g|5;<|3si$yLg)ajjnDXc}+fcTR1%b|jFe%WAs_=?5` z=j?ceXG(Ug%(RraaP5sW67$G*B_>}h+r8#j_NE?>^qn@j9<-8T+Ld*s2c`&1+kmr2 z%nFT?vi&FM!L6F>*pB3tj!sgzp#2P%lz+9Fo~Ea1MY1Www20$}^}A$wC-}4O^q!oTbrQ11f>a8!nL1 zZN=%#SUN9}EIx9m=@{dQ!nI42qsC7<+~r0-e$)^V*dH)sDdUzoZ(i;9gttgIV?(q9gm);q(t*lUes`9mMe8Q;7jB8RfDfb<1R){R(Kf(#+92 z@h<789BZ0~L*sQ2d7%Z?R$krS>Tl%`Wk?vsJ0xd z;IiCWU+jz+cyIUlp*7O|zt+?9+G%;*v@-AShhA&(N*3=<(K)a;tx2SOqHO4m$#}%G_shy|=MdIKM99_7{b)6+cU(*IAu9 zbz|cZKWzoI8&j$jK5!o2k<~Ltf79M?37y&BR(-3QX}{s}x(~CTzKOnC`%~6yZ;Qv$ zcn5#qeFqK{=ece;Wyt5-Y00O2>Z*d<2hDOdCW&_sjTcyQpIJ52=tlF_zTo-W{dKqc zYo;@8FS?V=|HNbY5#>d{cKkQ_%KXKdhkZWx&M*2BzkjLf$vwLCeaAFAmrw3Kwe9~( zo(RZ)y5R6j{mi!qtJ5!BoBuFxU+e74Zd>`DtPpcryf~^u_Nr6C`-!^!=_zILyJ)vDQb-keFu^-0+m(+BB z;(99g^!F6`fPcK!2`63%Tzq|Ea(nd~#jIsF>Te}gu6=yP?KcojN&3nC&*#hkR!`aK z*GupG6ppx5_+MV-;_A&oFFw|GHPi%a{9CZdK#+CU%6;+wxMAf6=AktFz;XkA08egW zSt`CGQPeRN1CPAXLpsn#FA;Kr2>e(QOdBnUHw0>!F6Oy691JYLBZ6EkmKi*UeZ!y>j*cu%)V>6E!BE2 z$H)8SbJSk9mU%7@y|8`WoYUWB>+S45KDC*CQDlv9RBVZV#(L>SuTr%uFBbiN{9F9f zzUrAJNy%SXg5(!&FA~4I@%ytm8|U~t2If^*v8{UBakox(gYm7yI&)Y2o2vM{Sbg51 zw9S%p=T2k%8~48DuhgA8iEVR)7tVRE)%vwS{aozNuWrllOgE4|?f%>5nO?M%=S%mG z_2w_9TunNxt1;hZYM*}o6;+z_kXE?uU##O%60(pCPJYVUa{M6OJ z>iVgPi3^Q79kcaT?|8*BDcDNA`F!~NbxC2f!~Dcl%o4b^-{}|jn&}vGynutk> zrnAr4#VlMIsd(@oujaW@womD-3*LmBG0Q1Eeu>@AX{CyAp7Y6H`JtxF%v#R2oCVo7 z^Uicn{n*NzpYiKmUVh1+x9`1fZ`t(c=GCfg+{MO%Q)EhyC3(NoJ)gMjEwgOa+h~Kx zwuujXKLkbaPxIL+5?RUq?L>z88S@sG>!%jW7)j?>zGs%w}K(MYoT%}$HX074=;$_ejqBB931d+vt(Gr%$DA> z4^J&ih}+S7UHM~aI|m)lY)^`t`6KL`?!DVr0#vG5 z8mn&?F?w0`!*Vrb)6YV;=sR`5Owb0z?v!SRf};Ea;3-X+sl~ddHgX*@5NLR4JE7d- z#hrl5dSX^0+K(pq7T8U`%$B7zeanpP+nXQ%{}?XLb!5iLgNqvu_BM%Jt@Uqa-O|?l zZg%qhvVwVe3#9LQetfi}Ze8Ank82lcYhIjHvw=(Ut&9iPlQ;7-KL7i()~`%$yWWwY zoFgZX8*F(MJv-B;H|P&=UlSvf2s7@p!+`z-0s)4%jvyLdkRh~TKT8ax7zCCyq7-RJ zCyOCWz%0Q)M}0v6$l_B#Cgk8R+)f1@{RIIa9dCe4kPf7B6Ifp2)(tue3<5y9rGU!_ z&~+mhkhskO9-@O}P7q#mAP0rvHcJs^6gcqv2$}^xI1IOOprgYe0OZB9#2AM-xe8y{ zfzIJV7%T>?EO3V%^hhko!D6`G3OZU0VPqs;BN01D@HtWeW*|5)XX7;ycJLT(_n~_E zCSKE!RuSQIpc0A$Wq^GS+@T0tM}aU8Qa+&{O$IY^Nn;FN^CBZ*%M@k`_p$%Nh zirZUcIs>wH1l_?FbX(AOTOn*|kilmQ zBIn@VdxdTn`otn}b<{y*~%DXi1}&2ZqOSxgFCQXzvaY%-9>u2;0KF bDYOmId=Btt1y(Bz401qt5ZI2j@&WMx*M8z- literal 0 HcmV?d00001 diff --git a/arachnejars/arachne-storage-3.x-MDACA.jar b/arachnejars/arachne-storage-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..6feeb7447f5347353f1725161c8d3b02b78453a5 GIT binary patch literal 32155 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 literal 0 HcmV?d00001 diff --git a/arachnejars/arachne-sys-settings-3.x-MDACA.jar b/arachnejars/arachne-sys-settings-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..82282e394ab31d485bfc462cf2bc4839ef7bb9c1 GIT binary patch literal 25137 zcmb@t1#l%vk}aw#F*7qWGcz+YGc!|(u9%sbnVFfX#8ASLO3W{fPaQbwAVZXQ;emTG2dwo!@UJM+$=6OGi& z7>zWo5Cr%^ky;WObsvdGdsd_pvb2)2OEy(C3Jx?9a$X1 z59}+nqiB1WQZstZ7$1GhP27>I`Q*F{{2 zA_z+-GC?u4s}p&MUF!xGcCj=Eae8IORd})%%X0HwL`LP#j4(D4RG>^Eymw^)`OV$LPW&^2 zc<$5TQAn>8c#BtUG30fj`If&B0bKbdIs0@1*IWEL1;`V8JmrSHF~AnN;^iDdgff{- z6SZD`a?#W=a=5z3W)Q1qN=og+{KJ9ZrClRMc1ZVu!N^{#W9dOeT{V(qqY$sT<4D>;f34c150ZOs3pPP8K-F z%+7%meHbA&TvLqgG_M=$UmOsP>ZJ=M5wNw|f=-IRD1_x-7t(0*?#yKk>!Z0 zc9UZKU>I0bI?|o`WXQ_PQUul8>w!yMVaiq3iBwSKB2@e{X0D2$4(ehWJpu?N_@IuQ zF#92?=J;y3mLLYNlX;}?s*Ke=zONitxtwvNK1Zp?V$4{2D2n4i0s=zC*V&IdVm9QT zCGL@;ib0lWM@7=rZ)Ko1Frf-Nx*vWa6u!?%> zE!6T6Dz*GN)Xn&zp$_(jzfPxbz34NLhT!I8m_GcBY6XOcnNrv|q@}Dt8({d@#lf78 z>L!^Q)R6Vita(w4YX!$^opQ)rae#w`Q;emzpab!~KC$Ii9ZlCXb7NCZG3)fm)9DDc zfXeN$w8z=2X!Vpv*r8>^H)}4EEwU}84nYxQ^^}zF-Oiv`C)$9Kt&CF51nxTTTn{2@ zE^jK%Z%(D=Wuw;gKx{1=plp)K#Jzi<8<~q%QQ%hl-37kf8(^p|!U4!)Q>L_O?3cWc&Q6!hjbEqXz{a1tX4m zXPCL|`!OlIRd;_#4&?ilWj>Yg7+rzhfWbj)X@TRH@~=}X#OjO@EdS(!WI^J>`jT6= z)mc924i^j#5W(MG*Fbc}Qk)=|CXm5tn%I!A2-ObY>meIuu`XMJabzzvZ0;WsBb+wo zX@hnzDCaqYdH{UKZ)CVI?v4!Wtk6Mnyv}vy=4hiA1?F(%6%HRiyL&q#rh;Jj1)(=Z z^1RT@F9@7=(M9ZyU5YX_X5D`fjepVKcrPpcU062A$g;Tj0wHuqcT$|Xdn-`@4=2}G zxKiCvvgrQZZB<0|3tiG#1+f&I`WRp6b|oE&=K!^)e$hd=62XKX$VWdOYzDyBzc3Ro zcb)f;16GzrwQz*tyz{2w@);L|QMi(wE>N;7yw&2s1N#!;UAIdds$3$iC??{driQ;x zmGfIv7YBGF)FW;0;i!E2<_@(#z$0{CVuWf@EAovr==+(kj{p2d)M`6D;)MKR>YosQN&$sAMsOyYU84XNAisi;D71i zKh`6jg2mQAU?3pnPg!sC_t&F;=%W87WB#-ziKxh{*#GIy=OXoo;Q3>Xs#deM#}-B5 z-RD_m)6O8HwVb5hRkR^Lk7JojkyYAcq5Z;6${SJfN#$ci5{W*N-EplyDUv$Pj3Os9z8|%Dy?zS+ z;DdjdZ|hRMTRwXNK`fw9a2jTvLo2yF#-)4>thKGA~sY<1k$D6LGoQ`IhD>AU>bdR@7o?$U$`arJWCYhqv6CHm?7{D^0ETYPWQ3J=2Vq2s&^;{pR z{S;hR65E}^4SSAsq>Dmi6dKklc@t(ZKYSk6$Jkx3>42X5fK(PH#tlZ-*|rgx1XFUI z9y#k6+m+aD^hB!O0YuyVmaYjnt2^5HGB`m2`m@hi1MjD1G7*E1{F7Q}s81wZFB0rM zvLW6)%wY88dVs2|rlOcCb^`{;I+V0{AHycT)>%+g!DU~hZKZyN!ZJnbHLMo?;9&yP zfm^3$@@@@*7ga;TgJ>a<5NbDh(7v0#V%NLkgF!Hy$g^xDua^hj30gFTCB#77*4un) zwZ}DFjzTd$s);|Kqk_{lkd3~`1A`7$fw?NXG7G~FmtT2{x^FTU&uA=3l^3A}S8Buo zi$Q5oyBk4qrnv9rYU=l^OdQTygI#EkPeH+6m+x{z2lB5G1q`f29HH`aL+J#e=@d8< z1KufRW~uojz8)ZA=|_e&)sAWM@tSyCa&E-l>P2kw$uT(;y`Xm~cuF3bzPyW9()SKs zpa>69Q*Uvi(fKHaIfmRV z+`enMz`wu#nG4#>wx@gyi;Am$z0rj9(B!!ea$ToF*m&iv&?1orJG$X4zDJ_TF`LBpx$$I5-sN$IJ9F6QuZ&=OB;NRL9h>$NNI3>z zB8lcVf&wm7{Owv3oqE(|GHHLbT*GaXGOMzmO5!%1=(Cj3t$V;Kze@u!ycsg#)X6d9lPZ=oBRm(#_$>b5FN6&z`b^FK z2E?(T8Onj4;t@*udMW2Uo3urixok98aqyUaGKW}rXn}q<`!dZwLkw<7jl%=#FzWj} zsi2QZjRU$T^|IvB?%xhbpMlpli%OqP0@%^7tW>VDv-- z>(lDTyM8*wOxL0Y{A{ok^4c&dNWO|^-%3iI7`h#QHxWUi?Y?;M&Gk#@LH}^2vqIc3Ubkq=4 z*jo>cx27_{U@C^QBZeuvHg~yqKXFsP4;h=5ddtGNM$7Yq;d92Q**uMkCOUNkWpnU9eE8O#EbunA@?v_%GbzBc2#i59^JDvn@*m<=&KhYSz1A{En%w$K5 zi&qym+K}bJh22`}xH;hZBMH!rasU^+MWK(f1tC5k1dIje#1o5-vA1zJy=EC-U20-6 z4q;C>J%@TKUqvc4(8A=%x+aZ7zmFQ&{-uh$1#u}?=>zAd2WmHrtw<_^nn;SFJ+ASB za>a92t>fLU>p%zVS3P?cj0ZwJ}(?^d<7 z6EgjbY7IuqR8pfYP6Ia*2P7#hI=d3PRD)JAztL_3qHaN<#>A)-s#3*hO! zJ*Iw8LoLuhTv-F8nt`#N$YhL(wM+0D6W2_)_}GaSMip) zeyp-Rheo)u=f8GWoM>vI4Tcx+egHqN-q(ldBO;Fnw9`jAxua-5hVPS6bz+VGgt;z& ziE9mV!Ums3P%B?UY*`zJLgk0@OMZ#%DnwS%1o7ngn%za;JJ|PDILP#jeqYoSKG{)Z zO#?G%0*`uM1hdrgXMO)D2K=t~l)~*)F2`}}{Hd`HgrVWF1*ScJpQx3t!an}K6T}Zg z8;k1QEd(E#T%w$3=q>Czt%EN_yZTppm?Lw-Hw`=`yp!=3?|#ca=jY1`!}}77z%MUwN_zR}X>KI?jg%c?z5(-^hJ|7;x3=~# z1Yd{5z98v8Kb&gaY=VD)|Cz59dKfG{z5)S7e`abW|L^$vPl4}$v2voeJhC9l=Yo&Xf#;*45(nNIS&Ek6fO_ z8xk82Y`BXq=TG2Pr!A9^WZ_K2UZH7&V^`R7G$B;rSn;BV@f8cgO}Y%_6*CyW|LVqq z<+55Q%FTyNVwn13%XK%@xh^A0jz@mA{tjQibLEmN8j2yiU30R#Ll_GW-QuTai<~B2 ziEXadwWC&^ANX52>1^`rJV}sj41=Q1buaaN8?8_@cUiGQ3&W}gW^M2d!%U0I7sHI2 z<2(}6jXVSdNxGQEX$O|G2KJn=_9AmtbhWmiUaPP6_c(mlZhKUOcCl5Us*@FJD#O&@ zSiwbf{C&2E*ukm$GirRnZ$u~T##@XUzqVdm4u8e*M5hk$uJapzLuJZkz3rIy!N;R; z241>>w!;2Fz>J%n+^Kr^-6XW(Wu`4igLa|@1TWAQX#5v}E3pLX2DX3`*BF{t&NL8W zKx99*SR5*@$p*yD7)(P!&{;t#BXCik03Nnr1lL#&Vv!vfE z5NjY0V^Gxz!R7p|A((_{fX#q1@K^@i0$ZTXF18Gkfl+YGS)dYcJ7PS3!Lr|3`s2EagW89ZyEF8q7Lmu}!k-oIp9+&@( zyj?W8G+@JayA}3VdsJWP*h7!s8uH#6maK{-E(b4)#!~xqOqXD4JGt13(Fse8r3UWc z;feo_%(yZggil+O&#Hll#ACXRVIp+0Rnv4Ezid~v|O*pb?y+til$__Agne~`U;VB3aI!p^7_Z*Fy; z8<#D0eBu{!!$DP+S7q8u6##z40A@l8C1fn-)08OGqBr2%juaD$2YAm^tq$ zTU{WQ9;eRyh#MO~szN{SZFTqWKNI(Ol%VGA7a*Xi&oqYe{~EGoES+8ci^7$4?U4jg zc!85pi&~V1;lHm}AXYdk>6ep;71CFx&0PsB9M{PlvrN*ht=SIv-v}aOBjdk)`JmX( zHWbudXBT2}ew^Zc%)&AAd;hpb?t|u`A`a~e5(2fRV6w>xQ||XgjPfvdAnH!b_sIK- z+KPD-ZB`pBO~FZ_?tqC3aM$Dbx$98TEYk$VLr1iW3!ZRV9&?yxjX6q%VM#|8k$Z7# zh;viJds0GfU&xT&CN)|M&kaLbtS?8_lOPPX%x-x(?{X3Noo#BC8&#bdX@eu7NsuHQ|Yy&&PNQR@s_E_LCQx@F_JQyiC+*ULd2}a#kx43n1>NVdr z55;KT=cuWHHt|)qi&9}e8W>*A!4Afx z-=lMUj=A~<7HC&9Lc;`0q6eKSymd>1|Hht4wvd&TpBQugOqg9SyQrdX;6Fb)1JPJ_Y==QuDQl*YsW+~h|ja~e^& zc?VJ9fGc8iVwMmFNAWGMmua7aVEMTC9W<-YXEw1>OAYF7O z^cEuktf0Uj=cse#NjFCXZsuKtkQaoMB8nLtz~Ta2-adRp4caf{ChLU8*DPY^k6pX z;4QXRFz;|<)&aApx25OrLwA)kNYPOx=VQ9*3(k_|E^70Jd7YKp4O%qIO)6XErt<>y z-v6vD`eP@hF`%9s2?7Wx4haZI`ftGEbNl2UMH|WvPM=je3QqP8pCuudrp})^(a+m| zEU3fk+V03Js2?LKEDbzEBN)iL04Vk^KSC&5R|SByTL^DJCovo(#ynhTVrge7n2CeD zr7u@Vy7d=|9!r{JH6vTBIUO}CH7nsgEq=U$zfiv*y=2GJKx)@n7&OzH&tx?|@_GCJ z*nXXQdk^Y;L+yinBMij)UIAeNK~$9IsHi``uemibME(;kWS0^Gmz{QzyF9O@+n6k> zE->3}hOt`4UhC0iWriDYJk7o4C8AI(v{(llOUYrvo$ev%usxqT%(|f&f!#v9H=q>` zzrNg+KF#RrYIxoB5_Ls}%T11BuiD@9V6v8>+6VxtRHsMvo&rPn@C z@8O0atNQ5Nak^0J!kbaAEE);WUARvKbmPpL%c{3Iw;0l-x%nu%t2^uU4`kVTUk96V z=)`~6w{er|aCZ{nfKJO9cGNQ$n%@!yQn*!GEL|b;J=&{s>8mTb2BA^z{I)F5F2BzYxFzD<}e4MiJQE^8fxzhphR?v=R^N|@&#L5}q z1LdwbrnX?f$@eBYbfi#NUeI$?vCJlKrk0SPIKQhnjp(x064P;aG44llbYCjg*+k6| zH`g@-$b@-Jh_{7hQf><61kac6I8epQz{rhq84oHW8`lR0RAPe}p^GCchp$G6aJjLe zV&|sCMC(hCoz6$&p>|{KapdJ$Ru)3BIO<|}%4f|&hf1#aT^1!q6mjO>D-B?mjSBkc z3=_hJIuE zBoof0e-N?k*q7B9qIjo3RV<|PEC_!sm$nk6T zz!LCF);0@;ip(rMVHc6(QX4hU`<`bUqnVh6kstq6ZS7e&^13M7aMJKK$%YJP z)Xhj!TYhm@qXxy9_h-CfeO~_%k$u?o$rK@>DyqwNud-@M7}N-}RyOOT@%WIgS;n~s zwr69;jdlxn`Vwrtf%)RVTAnHgBF%V|R$w(@Xlh!8-7mCj%}6yO_3b=jrOBlo!r8g9 z$QmTH8shbkQaqT>E z>LTfe22f71eh6LpR-WGYL30!m){3dfG+(MpGh4K22oiJsefFd<7l#>UJkVNspB87Tx4R!z? z9OzI(f=H=~mS642!J^)YnFeL|>}Ofy#=DTB=vaMGwXT+y*gzoK!IX~8=K5v3&;7PH zV`D5}&^;2b*WMS+J~R9va&3M*WafRkbb>(oe6Ae1^=-_BT_l-5yG6@LhO;; z$e>r44OGo5&;3SM2rE|k7CFn{Znr&>GkHnCw%r`l4J8~6mcg|=Pima(cu(np>pO3- zIPc0syZ`gf!?40le2EBzm+8het7>={+x-I(wkKAuoTq39%t-0TwWEJ+>Yfo;r3s{Ebj8wO-z9h?EV z|08KtwZwkr6Plp?5cU&W&)_YDQFuq@6J5`dvil-=J-}_dz@DFAlb@zU-|$de$1|I{ zG0f+i8tQD>v6|!6aa%+@cT-KpYHfk6sIz4(w*p7-@8}HJ`Z=`v1{u(M{s-h6*qI+g z@)49*M2{v;KkbaOC>c1n*Os~gx96oB6!K!;u{VDw&hIB-W&p za`LBWis|AjCvj@)z`MS|)EK2RkFQhgTbkrc!hKCzxKjQZY(k-KM4?Vqqf_5DpwTyb z4V_b6_@#HKwu~^HGh_}I5Bm<0tP2rUq}qWBr<|4Ozv@5#8Pvzi$`5=7^*;_P11X>a@#jT&DA0`I z@f7LAkdcLCq}u3Bfvxjcx6}^JJ&CS&;IG6n&9zkmM-q9@rY`tyr%YZSK5n3PzH)Pt z#IeLp5J$rZ|BB&vupZh9aJ@eWdlm4a6aJ~w!DPWiVm+#>TVHfdBiz3HLRSZ@-w`Ax zLt{-eYw#g7mF)uPc^va57BmG@!(5MHZ|V9Fp+uzm#fA3R&g>FWOh$!ZEFDfj5ZW+w zZw9F{vBk&`^;N{1HR^Aq- zs2HQITz?Lwq(Stu4#*`@2yc~gN-QCYVnG?`T6&&jkr}g@FO>1T0_hC_lZug*+1wh~ zgyOA>$x0127Mez10zuIyuvMo!QeUHJ9Lr?CGjp(pFUkvb!B*l;XXXMwNll(v4PwjzL zLoSceL5~~UVuKQY0qXXQ&Skoxc*U4H^c#{d+7ghM>q>ZLLMrFV) zo{hy8W3-cP`%XW%1ETK1RT$!GCP-Znp&LY&e;V|-@$w<&rKpX3n26Fiay+7j_}mdo z@^^kC%MnEyp`Yxp6rC5FP^*zTvRE>8NfRWZv$BIXCPOy|$DA|K_+RW+aia5*`1-Z5tE4CKOm5;QYt z))^qGI2bEqP(KW6edHKhj2oe^vV^^@^Szi--P$@UMV`}dZ%b0jLi`>oQP!sH@I)+%*svU-&}lzb}I652%w5^$H)Z1U|(mzp?rl z54X;1>u*0q^XJ`A-FLNI6qeKwSFKaCA%36IVf|%1X?(rrEJm|Z5D zS(Kj-`<{ou9TIU#UrHJ7C>$Yafy&b*U}k(?wlR?~U&CeWhdR~AFbK^54S(1{Edg0Q zB@~>0)!X$k%X@aa+x_?RV{LEv@fY7l0a7Y;%b5bGY37c%tloo`S>RbdE?+vYjQO_~ zn4)b%l^XUA)((MYDq4*u3ADm3z13D>_p+q0WEd~DSdU9h0vlEptvg%Nrj&rvGrwb~ zA8tssiJXsx40sGwlIWh?N8#LtJFKz=(rC2vredhMxlp^I1)iH=yL~U# znHPhSBnqKic(8#j;j)O-hcmHyz!>U$j-rC6rBuvX{6)2HX~?z>AxmL#49t+>CO_&t zqxfQa&WP)aE}rCVHs{eDb2y#NG!YLjeIaNuM_(B23idPMV2KpF`pI**7&{Oy(IeVPrl9ELdWwL}KY3KZQ{&p4;;-U8fce+{}F`9OWA+FRM2ZC5gB7lHHB zsI#2Hw_31dOWe~_4RsXVQtSw}<7nUx$yT5)+GDtGN%v{F@vd1+Tf9?k4e6hZIaj;9 zBfmGoyVK9A2P^hhj_1*~l<(lWq3?V}*_I4ckZ!zz)-^DfCzf-E{G^Gxa)-%8-hh6q zLFK{!BEBV97`+<@d3LY($RPGtl=w*En;hd7$b6Zy-+B$II4Va+x)gTkks+!oE~5#o zU$A0&!Qmte(V2pNu27IjY>5p1yyOHrx<(=V^}Yl9xsyyve^93|CRZOv?MVp7F{&I~ zWg>)EU{(xCSm{Z~j{+gtX^!5*Yh^0fgN@!~1(G}p@(yt!uMCnNV^a1;5qWJhAl2A( z?VY6YD%ncc|H4(y$}D{S^ly2`{5RTo|4)Ud_gP3H`u{fXRXiO`|GEAv+sZF0p!i*E zuP^QW{6=XX5!Mi(qkPJ|C7jmGbK2sKYce^kNwd@q4zyLGG1{Am>y+VnhWaKRAIz=aw%Fhad+*s#@F&#Tv4z#X0mM{u0{99 zK8$a%lk4buBh1Q8OH}g+Tr2SaoRLI-T@0cQX<{!>rCz1v$OBF5@X9vBRPu~#ZQEU2 zvNI?%lthn{o*;t6ha&C@<49b(I}f>*0YwTIw|)dJSEiHfLNNDUErLqm+DOgN+@ zIpN@~Qu`}rd?vn6IqCqzK}F1{escyaUX?a%DiyYWz2*n}L`a3bw%s%oPCjyEF;C_A zux@D4>Z)yMl$osgWMhGvK$}UqPN8l_>y}5!PyEE(%k|^0l-4Cbplm({5YZxW(=7Ab zS%hmXH_+dgo?r0Q?|<3#srSi(nsVOMoqpYp5?Th4W%*1Zt?geoy}`%#$56Go7ODFSz5tO zI0h7Z!YBs6kP;cYGLxc-6E!WeEEzIp`dwC@OYqySd;k$F+8vb_gUAsBnT16oNm|$z z{}3@IzW={%yU(voL#=)yJMA-;QTQ7O|8K{^{v>gg{_~jFA7D>b(3KhzfSIY{cU?h; z-@$}=(z+MD5`+rm70eppvgX!IC|?Njz{KbI7K&s}eM|*`B_VV}ia-AN^6>T*sI*SM zZ>qmI6|Wd`+M^DEHzA=nGKx)W4=-97s-9IvFFb^V%ZOL-9^C1Djox6Rzdr#Ff;)m% zZ;NKF^s5^#PGpM(_4IA46fb|owy|(Ho8_#lMb9eE)ajgho=IOk&J-n&XE{}ij#ZF54 zkI&x2{NxI?|Ak)sLnQorUslJ;#u2lYV3Ihkc z%;P4Zs;pA&3*#{xEoHU#2Ggk7#z;{*lezeju+7}Ih74_<{!?zL=jj~6mZ9Z2rpJgO zrRIUkw1`fAkJ^v)BgXFzUPqdMXs(J}L~9~Wal?59;p8G#6K87j*FI*|oL1o~W{7eh z*p?Ur-UAX_sPifApLZQ&9~4(xVSs>AKhN_1o%s7-rw;$)oZz33>#Y38fkesA6NGZGittD8fYx0|bZzvHQSL*F02_M~r}kwA+W|CTWO`MT}> zgWLbo_jL$66#q+I6f0myH~^$K3J3}_qLo@#iX{K|JpR6VV<~M~p-p9x)tggTu&uxp zBoKp;kfacTNmzMGLM+Oo)wJAFdeInhSj7mp1FOD+R$Eq#W~qg>d#eDwQ9805kv3gQ zBxBgDv2*3jW@!;_5M{Elb%bT1Jlblaj%9l69x+3sa#eM#wx;glUu@ zf{h<^&qgbn2jAl6>GyXh6^iFM}Xiyt=Fy?!<&R0$DFQ!Oj6KTQYFq5I= zF@{;cy3E|Pl0>vj(@AJA95eDer!<9}256>I5KXd}4qg2ZZJ>bX)OWi2c5<3>ro*I&!tK#d??qU3NX<~1` zM+Hfl+=Idx^NviF?U$hBe>pW_as1NnwuJUP2HYYz60#~GcugQV&;`er_YO4pf`eCh?lCEAwVAd-2=UQC(w0C*KSL9K4&M-OzGm zlseKp0^P7F5(;K@m?u#RA)zx&Bb^~EjZ>|PeN`A6m&#;T2?=!7Bp9Bwz@9awz(Le9Rc4TNJ~gt z2+dt)^ZKZcB_^cm0>)XKmXh&~lM5f!3WyVGje6YaK3JmDBRk#TIA7)=7;Jo&!o1w) zL~L@ZIC*EP8DWJHt=KM32jr0O7?z=MoHfOZf!WQKVeOq(Y^G1R0w1VzO7JTN-0@WMqh{Yj#&M~EjhE*m-CulyN%rDGRX?*aH&GajZs)Ky4faH&;mYa? zS8GBsM0b;JlN~w7aS`{7C84)g(`7PscRp?x9yxL#uhx`Gr6Nn3aOnARSfo68WV#tm zuYmoX#>(DS%i9)wz6^vj%E0zgI}Kqen{nw^r>vMW*YYl7C0!%t03OO!#d|`Ox5qe` za)hbk@&4xR<3t<$qw=%`i|WV%8LMe%E?DW+)n-TXq`$z3UyheCMeYfc?~m#bIUb7r zyvhVwz6IJGG+rjS{8T~#8k}%xp7d#Lfh1`@ntceo5GG9@rRWf0^DYGS#zU^va_72oq&eW^c zc>8kDTm76LF;>*piVbhbFXyb8FDpk<;0ygB^^_g;V;`R7I!lCqLWMLQfeEuDM4q-W zaN-#haNDZ`uvpNDHXEgWO_LjbMc*W*H>WNx-*fK`1 zx;)$?+Y*cH(x&!m=Am_Qmf`|a@GZ#Dt6P1k{Sdn>K+DQA0mJ&;7<`85K*=z2IOudKlP+v~XTjwZ%)_y#Fa^%WF(@+Z z)%hI=6@W@k=-8v4NqEB8u%>2|EpoYzGC@S}Y^3;PJ9ZF&XX)9vdmXU2?=bDVk%Ry9 zn^Z~j&lX5Pd+8vryf$Ghc=>rJsLC1bS3YA@c$PpZ(Q6ll6Eb1D7P(BD-HAC8778#= zW}-Hh6bFA+SXOLH=8~Fa4>K8FN}}mQr(>l=b=o~f)xnaA@HQHkk%X?I7DYwPw{_YQ^1uCy+G^IGS9 zJcHHkwsWK|!8NLP9zxA#ELdXXf;*Jng`tX@e&C6@J}r}|iqi8|%N8b(4bGOUrcv>> zk-|2Rky1A0Qz?uQ6L*3((NYbpHFM8W+9M4GCKoG-zx}yGdw$_~T5T&omte$3!_{GB zSg%Q?FWulHiCLt0UsC+cb?UCEG_wt?QO8*T{)$J^l5#;J>=ZPFMe##kR*H6zaD=4; z_}Rk4Gckwo!<#{1*6RB1n!3azCj>LkW5Jt{*Vo9FM+&@JH`*Gk8dVUl$&HW=P6Ij~ z?#s2RfIi|?02G7@-q(#;&9oncCBJVqzkN)?eW5l%;>Cn62rlEe{hG?D;)$SyFUG{f zARuHM6C6hz5RJf61V%kzq8^P}M5SI6MiO0pGKkqDSilCQSPYk53FDtQ9;6ffu4xEM zfuK?h&Jc1SOYF()%kgbuFfB;XiGC(tJ0n>;BYsk>K~cqsBsKdRzR#n_5@VMS$ZZSG zz?&*UxUw4H440U4H>%>SSe4FZ@vehID@!F6J8%nQ|?+X4veP4@N}FJ zPYD8=I~X-I(06&~KrNTUMGY`N6pOqJAB@cLYpx8L$J-(jee>W~p6iP0s^*GMhod_c zW?Jny0nes>KNr*!NwnS$_+(Hs-w!$oA1`~_OFH0Nna)NuYRG(jQk-A$2XtQ*TtK|X zmVIMy-maimY)M1Eq{a!;6(8$~SymY!YEiBkt;(q1tChKMT8_dV6Zl)SL2o$1bIk+e z#t!x=*ImObc%bQeAaWm1%txz-?W^h#4%BA_Is-4)&7%YhC3vAyn;BEsR@R3m*VVh! zL>;Yiu;~S#d$8GzYEp6s1+oQfPg26-yfo0fi=_4>$r4qJ-|->$uP_P@&_S}+3dhe8 z5Po1C-(-2ABFp!=e?|5|$|SlO4(0XOmfa~&!hPKJV?SE%gw)X?HF_HEj(dCEp>IoF zhH`2+KgqJ8o~h8CnjyKx3Hf>zT|jelt-qQzGze`1X>MIMa{w}1X`H6bSqiSdEvl;g z^Riz(<>@GF5dLhqZGwjKQ|AWtaAqA;swSn2Q#QQEXMx(yxbE=tqV0Rh5cH<*i>WM3 z^F?GT1Z675Y6q`FtjFyiq}%M0<2wMiuc3MtqmQ}Y8!sXD$Y8p~Z0LgLFM!VWm!|h? zd1ml~q#FP6R7b(USBJez?BOTvIvyE%MXtvrezlNtqSrO`Tk69P;`dp<{{)nCgEyBT z%h+$ih(3)?Da|JATL-Y&9=s5sH}5 z(0+%WZ@&#cLslbt#wZJ-mN9N$DMFUoDVJoF zORUJH1<%10ObzB@DC@iLlOoqm2l`OSHr=bZDN zbKdix|9SNDDs~5TVxlHYYpxNvT$}$K;9mbpZvH_jZ%zHpOyF>@2ZXQL$&sQTlomZB z(ZbhTZSAEt3(0VHn0nz%+r|V-Mar7=HVK?aDdtmc^i*0s`AdCs%grjM8oksT{brE} zBmSUZEa!^VR!8;V4DtkqRK?b)3c+~|jSFDp=)^t@^1fYzNacX*`< zDe~*nLuUfal+skzv~ec(kvlW<0?5#6A5Gk-zfGCxo>n&NPIq``kLZPgnI9 zf9w6d+R=EPp^CP;F5LA8cF1@A*Q5-^T#5>O2&Fa{PmPBW!-vKOx_99eZ;)dfd@_$0 zoW;2~VX{JRd@zzqczg<(Ni@3r!Ub=+W$P{C&HWc{y^2Slxs_+#cf_AOJy~OYPKU=l z>ivZt+-HPNf?~p6kK7UNQnP8(wXI{8|2NO-!t0#HbxS{p_-)Y1xy)yWXR-#*tL=M7 z8Qgg`!ED3?fyl(1jhLTjFrLw82>xM}g&zitb2c#;=WL=I=g=QG1Og6Xz&Z#G41Fl{ z5PHsnhmOpLSPir#m2^E62Rz38fRT^cGLZ>DTMql}zwhMgpQ9lb(N*cu8}s(L32uy>1C@ z!z*Q0p@qoEIzII{BXXqj+c>8;jacHDXn(ay@tK1^ZdN8;8b94(?2xGu$>DguoBRb+ z(?#LCf-Ik@M3PSXl96qfllJbzH&VO;ch5>jlA4j572Uj=V+F?v9qNIk8H<^AqDDw& zZB1x^L}6w7d=ZoBp({HN zVuK1Ctfvl=d8>=mdr$&q4kf=?v2=In8`4 zo~M~Bs!&5xrsYze@A4I;#4SilY1t#UiM8!q<<~Et_^=|;+4lI1`z1aKPIupgVXL*k zM?}V3!-n$>voYe{@3!5xeR{!OeU+xi@igzIu*9-D_n?3qov|F!!Gl&A+sQbUMZ`h)i ziMBZFXmQ|33wQgrC!zjgWA&8WhCM@xZs?BvKEKML)oLnFiS5{(TO1qX|5YoNaCp0{ z*~*QN$!2_LoQ{FGefY)X5qB4ZT`e}3ght+sIVFF7{HiNmQ8uU5nf!Gk6q~VM)O`Ag zb9h-@Oe8c{LHk1NPLE5Gz#NSSeyqR4TqVq9>7wse@i%D*9Ub118p0Q7S6Z@K93!@I zB-NH+n0}?hLxFVlbZu?S=e+C{MHGNljb6j+ zZWH_7lct{*)ndt-eNFP17}OJKEPuOFeRszAbk2*r*=0l_mCW5m?ee!H{K=0_HixE; z0D<2X9AcczeHwwb0!0Wh4(5tL%PmxGaoML`Lo$eFt;SuN5r2EF4}#9rNBWO zNT?z8Y=A=X{2_=;CH# zkcvkFY^#7xmU&8m%Xl!~3qTs9wHRC(+}a3I_5wJFu-QLLDWiT_3KK{DBOv-4D&aOE zkV@k<-&G|{-`w3sc(=jt!9#-HN&YKA@KId+IfCC$hG@HFmQOo38jF*|uaH9IW$V5d z`Meu{@J@%{FN6fFQv41AmgI(CVuQGUP-2}MSU|pYr48O_cnUj2oQGze7}}n`ozM2eY_Wcw&5vc5a}_!WsyP&W$<>wb9x}k zeZY$$tL!zE8$dE0EY`|4 bAr$j)z;Oe5ZDZQDZQHi_Z`^X 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 literal 0 HcmV?d00001 diff --git a/arachnejars/execution-engine-commons-3.x-MDACA.jar b/arachnejars/execution-engine-commons-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..9c97bc3a2ed105b7b670aab2130f193c86626b14 GIT binary patch literal 36429 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 literal 0 HcmV?d00001 diff --git a/code/arachne/arachne-commons-3.x-MDACA.jar b/code/arachne/arachne-commons-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..ec9202bef4c8245c062c901a48d06e175093d7b8 GIT binary patch literal 162934 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%0Ax7Thz%s;HCKS*TLcIK2ni!RJpv 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

>r8eelXVI@jn7 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 O9|dy4KOm<)82$&`K=c*> literal 0 HcmV?d00001 diff --git a/code/arachne/arachne-no-handler-found-exception-util-3.x-MDACA.jar b/code/arachne/arachne-no-handler-found-exception-util-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..55369089f1b2f5caa75a16eed81f600637aab0f0 GIT binary patch literal 5247 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 H-zD)c{_z^g literal 0 HcmV?d00001 diff --git a/code/arachne/arachne-scheduler-3.x-MDACA.jar b/code/arachne/arachne-scheduler-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..0c4c75397c866f98e482661b4579faacb8f5467e GIT binary patch literal 22289 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 bDYOmId=Btt1y(Bz401qt5ZI2j@&WMx*M8z- literal 0 HcmV?d00001 diff --git a/code/arachne/arachne-storage-3.x-MDACA.jar b/code/arachne/arachne-storage-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..6feeb7447f5347353f1725161c8d3b02b78453a5 GIT binary patch literal 32155 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 literal 0 HcmV?d00001 diff --git a/code/arachne/arachne-sys-settings-3.x-MDACA.jar b/code/arachne/arachne-sys-settings-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..82282e394ab31d485bfc462cf2bc4839ef7bb9c1 GIT binary patch literal 25137 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 bAr$j)z;Oecentral= diff --git a/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom b/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom new file mode 100644 index 000000000..7aff4f82e --- /dev/null +++ b/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom @@ -0,0 +1,367 @@ + + + + 4.0.0 + + + ch.qos.logback + logback-parent + 1.4.14 + + + logback-classic + jar + Logback Classic Module + logback-classic module + + + ch.qos.logback.classic + + + + + ch.qos.logback + logback-core + + + org.slf4j + slf4j-api + + + + + + + org.slf4j + slf4j-api + test-jar + ${slf4j.version} + test + + + org.slf4j + log4j-over-slf4j + ${slf4j.version} + test + + + org.slf4j + jul-to-slf4j + ${slf4j.version} + test + + + + ch.qos.reload4j + reload4j + 1.2.18.4 + test + + + + org.dom4j + dom4j + test + + + + jakarta.mail + jakarta.mail-api + compile + true + + + + jakarta.activation + jakarta.activation-api + compile + true + + + + org.eclipse.angus + angus-mail + test + + + + org.codehaus.janino + janino + true + + + + ch.qos.logback + logback-core + test-jar + test + + + jakarta.servlet + jakarta.servlet-api + provided + true + + + + org.apache.felix + org.apache.felix.main + 5.6.10 + test + + + + org.mockito + mockito-core + test + + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version} + test + + + + + + + + src/main/resources + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + bundle-test-jar + package + + test-jar + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${maven-antrun-plugin.version} + + + org.apache.ant + ant-junit + ${ant.version} + + + org.apache.ant + ant-junitlauncher + ${ant.version} + + + + org.junit.jupiter + junit-jupiter-api + ${junit-jupiter-api.version} + + + + + org.junit.vintage + junit-vintage-engine + ${junit-vintage-engine.version} + + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + + + + + + + ant-integration-test + package + + + + + + + + run + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + default-test + + + + --add-modules jakarta.mail + --add-modules jakarta.servlet + --add-opens ch.qos.logback.core/ch.qos.logback.core.testUtil=java.naming + --add-opens ch.qos.logback.classic/ch.qos.logback.classic.testUtil=ch.qos.logback.core + --add-opens ch.qos.logback.classic/ch.qos.logback.classic.jsonTest=ALL-UNNAMED + + classes + 8 + + + 1C + true + plain + false + + + true + + + **/test_osgi/BundleTest.java + org.slf4j.implTest.MultithreadedInitializationTest.java + org.slf4j.implTest.InitializationOutputTest.java + ch.qos.logback.classic.util.ContextInitializerTest.java + ch.qos.logback.classic.spi.InvocationTest.java + + + + + + singleJVM + + test + + + 4 + false + + org.slf4j.implTest.MultithreadedInitializationTest.java + org.slf4j.implTest.InitializationOutputTest.java + ch.qos.logback.classic.util.ContextInitializerTest.java + ch.qos.logback.classic.spi.InvocationTest.java + + + + + + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + ch.qos.logback.classic* + + + ch.qos.logback.classic*;version="${range;[==,+);${version_cleanup;${project.version}}}", + sun.reflect;resolution:=optional, + jakarta.*;resolution:=optional, + org.xml.*;resolution:=optional, + ch.qos.logback.core.rolling, + ch.qos.logback.core.rolling.helper, + ch.qos.logback.core.read, + * + + + =1.0.0)(!(version>=2.0.0)))";resolution:=optional, + osgi.extender;filter:="(&(osgi.extender=osgi.serviceloader.registrar)(version>=1.0.0)(!(version>=2.0.0)))", + osgi.serviceloader;filter:="(osgi.serviceloader=ch.qos.logback.classic.spi.Configurator)";osgi.serviceloader="ch.qos.logback.classic.spi.Configurator";resolution:=optional;cardinality:=multiple + ]]> + ="jakarta.servlet.ServletContainerInitializer";effective:=active, + osgi.service;objectClass:List="org.slf4j.spi.SLF4JServiceProvider";effective:=active, + osgi.serviceloader;osgi.serviceloader="jakarta.servlet.ServletContainerInitializer";register:="ch.qos.logback.classic.servlet.LogbackServletContainerInitializer", + osgi.serviceloader;osgi.serviceloader="org.slf4j.spi.SLF4JServiceProvider";register:="ch.qos.logback.classic.spi.LogbackServiceProvider" + ]]> + + + + + + + + + + + diff --git a/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom.sha1 b/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom.sha1 new file mode 100644 index 000000000..405d65396 --- /dev/null +++ b/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom.sha1 @@ -0,0 +1 @@ +fdd499ceb0bb00612813ac5b16c6329d937086c1 \ No newline at end of file diff --git a/code/arachne/ch/qos/logback/logback-core/1.4.14/_remote.repositories b/code/arachne/ch/qos/logback/logback-core/1.4.14/_remote.repositories new file mode 100644 index 000000000..6c839fe70 --- /dev/null +++ b/code/arachne/ch/qos/logback/logback-core/1.4.14/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:49 EDT 2024 +logback-core-1.4.14.pom>central= diff --git a/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom b/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom new file mode 100644 index 000000000..6bc4ad563 --- /dev/null +++ b/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom @@ -0,0 +1,158 @@ + + + + 4.0.0 + + + ch.qos.logback + logback-parent + 1.4.14 + + + logback-core + jar + Logback Core Module + logback-core module + + + ch.qos.logback.core + + + + + + org.codehaus.janino + janino + compile + true + + + org.codehaus.janino + commons-compiler + compile + true + + + org.fusesource.jansi + jansi + true + + + + jakarta.mail + jakarta.mail-api + compile + true + + + + org.eclipse.angus + angus-mail + test + + + + jakarta.servlet + jakarta.servlet-api + compile + true + + + + + org.mockito + mockito-core + test + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + + + --add-opens ch.qos.logback.core/ch.qos.logback.core.testUtil=java.naming + --add-reads ch.qos.logback.core=ALL-UNNAMED + + classes + 8 + + 1 + true + plain + false + + true + + **/All*Test.java + **/PackageTest.java + + **/ConsoleAppenderTest.java + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + bundle-test-jar + package + + test-jar + + + + + + + org.apache.felix + maven-bundle-plugin + + + + bundle-manifest + process-classes + + manifest + + + + + + ch.qos.logback.core* + + ch.qos.logback.core*;version="${range;[==,+);${version_cleanup;${project.version}}}", + jakarta.*;resolution:=optional, + org.xml.*;resolution:=optional, + org.fusesource.jansi;resolution:=optional, + org.codehaus.janino;resolution:=optional, + org.codehaus.commons.compiler;resolution:=optional, + * + + + + + + + + diff --git a/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom.sha1 b/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom.sha1 new file mode 100644 index 000000000..162685abb --- /dev/null +++ b/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom.sha1 @@ -0,0 +1 @@ +4b0d34f8f4ffa62296b14d0beba3dd92d3df324c \ No newline at end of file diff --git a/code/arachne/ch/qos/logback/logback-parent/1.4.14/_remote.repositories b/code/arachne/ch/qos/logback/logback-parent/1.4.14/_remote.repositories new file mode 100644 index 000000000..93d36554f --- /dev/null +++ b/code/arachne/ch/qos/logback/logback-parent/1.4.14/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:49 EDT 2024 +logback-parent-1.4.14.pom>central= diff --git a/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom b/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom new file mode 100644 index 000000000..dea689bb1 --- /dev/null +++ b/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom @@ -0,0 +1,587 @@ + + + + 4.0.0 + + ch.qos.logback + logback-parent + 1.4.14 + pom + + Logback-Parent + logback project pom.xml file + + http://logback.qos.ch + + + QOS.ch + http://www.qos.ch + + 2005 + + + + Eclipse Public License - v 1.0 + http://www.eclipse.org/legal/epl-v10.html + + + + GNU Lesser General Public License + http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html + + + + + https://github.com/qos-ch/logback + scm:git@github.com:qos-ch/logback.git + + + + logback-core + logback-core-blackbox + logback-classic + logback-classic-blackbox + logback-access + logback-examples + + + + + 2023-12-01T11:45:00Z + + + 11 + ${jdk.version} + UTF-8 + + 5.9.1 + 5.9.1 + 5.9.1 + 3.23.1 + 2.2 + 2.1.0 + 2.1.0 + 1.0.0 + + 5.0.0 + 2.0.0-alpha-1 + + 3.1.8 + + 2.0.7 + 0.8.1 + 1.1.0 + 10.0.10 + 11.0.12 + 2.15.0 + + + 2.4.0 + + 4.8.0 + 1.12.14 + + 3.10.1 + 3.0.0-M7 + 3.7.1 + 3.0.0-M1 + 3.3.0 + 3.2.0 + 3.1.0 + 3.0 + 3.2.2 + 3.1.1 + 3.0.0-M4 + 3.0.0-M1 + 3.2.0 + 5.1.8 + 3.1.0 + 1.10.12 + 2.7 + + + + + ceki + Ceki Gulcu + ceki@qos.ch + + + + hixi + Joern Huxhorn + huxi@undisclosed.org + + + + + + + org.assertj + assertj-core + ${assertj-core.version} + test + + + org.junit.jupiter + junit-jupiter-api + ${junit-jupiter-api.version} + test + + + + org.junit.jupiter + junit-jupiter-engine + ${junit-jupiter-api.version} + test + + + + org.hamcrest + hamcrest-library + ${hamcrest.version} + test + + + + + + + + + + + ch.qos.logback + logback-core + ${project.version} + + + ch.qos.logback + logback-classic + ${project.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + ch.qos.logback + logback-access + ${project.version} + + + ch.qos.logback + logback-core + ${project.version} + test-jar + + + + + org.codehaus.janino + janino + ${janino.version} + + + org.codehaus.janino + commons-compiler + ${janino.version} + + + + org.fusesource.jansi + jansi + ${jansi.version} + + + + jakarta.mail + jakarta.mail-api + ${jakarta.mail.version} + + + + jakarta.activation + jakarta.activation-api + ${jakarta.activation.version} + + + + org.eclipse.angus + angus-mail + ${jakarta.angus-mail.version} + + + + jakarta.servlet + jakarta.servlet-api + ${jakarta.servlet.version} + + + + com.icegreen + greenmail + ${greenmail.version} + + + + org.dom4j + dom4j + 2.0.3 + + + org.apache.tomcat + tomcat-catalina + ${tomcat.version} + + + org.apache.tomcat + tomcat-coyote + ${tomcat.version} + + + org.eclipse.jetty + jetty-server + ${jetty.version} + + + org.mockito + mockito-core + ${mockito-core.version} + + + + net.bytebuddy + byte-buddy + ${byte-buddy.version} + + + + + + + + + + org.apache.maven.wagon + wagon-ssh + 2.10 + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + org.apache.maven.plugins + maven-install-plugin + ${maven-install-plugin.version} + + + org.apache.maven.plugins + maven-resources-plugin + ${maven-resources-plugin.version} + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + ${project.build.outputTimestamp} + + true + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + org.apache.maven.plugins + maven-dependency-plugin + ${maven-dependency-plugin.version} + + + org.apache.maven.plugins + maven-release-plugin + ${maven-release-plugin.version} + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.4 + + + org.apache.felix + maven-bundle-plugin + ${maven-bundle-plugin.version} + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + ${jdk.version} + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + test-jar + + + + + + + + + + + + + sonatype-nexus-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${maven-jxr-plugin.version} + + true + target/site/apidocs/ + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + true + true + true + none + + **/module-info.java + + + + http://docs.oracle.com/javase/7/docs/api/ + + + + + + Logback Core + ch.qos.logback.core:ch.qos.logback.core.* + + + + Logback Classic + + ch.qos.logback:ch.qos.logback.classic:ch.qos.logback.classic.* + + + + Logback Access + ch.qos.logback.access:ch.qos.logback.access.* + + + + Examples + chapter*:joran* + + + + + + + + + + + + testSkip + + true + + + + license + + + + com.mycila + license-maven-plugin + ${license-maven-plugin.version} + +

src/main/licenseHeader.txt
+ false + true + true + + src/**/*.java + src/**/*.groovy + + true + true + + 1999 + + + src/main/javadocHeaders.xml + + + + + + + + + javadocjar + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + none + + **/module-info.java + + + + + + + + + sign-artifacts + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + +
+ + diff --git a/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom.sha1 b/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom.sha1 new file mode 100644 index 000000000..347b06bb1 --- /dev/null +++ b/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom.sha1 @@ -0,0 +1 @@ +9f4f6d81eaa879854903c20f0d436e7057d400b1 \ No newline at end of file diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/_remote.repositories b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/_remote.repositories new file mode 100644 index 000000000..999dc61ca --- /dev/null +++ b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:58 EDT 2024 +redshift-jdbc42-no-awssdk-1.2.10.1009.pom>ohdsi= diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom new file mode 100644 index 000000000..4ab85210b --- /dev/null +++ b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom @@ -0,0 +1,31 @@ + + + 4.0.0 + com.amazon.redshift + redshift-jdbc42-no-awssdk + 1.2.10.1009 + + + com.amazonaws + aws-java-sdk-core + 1.11.118 + runtime + true + + + com.amazonaws + aws-java-sdk-redshift + 1.11.118 + runtime + true + + + com.amazonaws + aws-java-sdk-sts + 1.11.118 + runtime + true + + + diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.lastUpdated b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.lastUpdated new file mode 100644 index 000000000..4d97c33c7 --- /dev/null +++ b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:58 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact com.amazon.redshift\:redshift-jdbc42-no-awssdk\:pom\:1.2.10.1009 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139898115 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139898119 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139898258 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139898383 +https\://repo1.maven.org/maven2/.lastUpdated=1721139897953 diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.sha1 b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.sha1 new file mode 100644 index 000000000..ee53f2dd1 --- /dev/null +++ b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.sha1 @@ -0,0 +1 @@ +9129ba3dac42065ce12b78db42beaff9a2206a2b \ No newline at end of file diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/_remote.repositories b/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/_remote.repositories new file mode 100644 index 000000000..4faab3b81 --- /dev/null +++ b/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +redshift-jdbc42-2.1.0.29.pom>central= diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom b/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom new file mode 100644 index 000000000..75a38efaa --- /dev/null +++ b/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom @@ -0,0 +1,134 @@ + + + 4.0.0 + com.amazon.redshift + redshift-jdbc42 + 2.1.0.29 + jar + + amazon-redshift-jdbc-driver + Java JDBC 4.2 (JRE 8+) driver for Redshift database + https://github.com/aws/amazon-redshift-jdbc-driver + + + Amazon.com Inc. + https://aws.amazon.com/redshift/ + + + + + Apache License, Version 2.0 + https://github.com/aws/amazon-redshift-jdbc-driver/blob/master/LICENSE + repo + + + + + scm:git:git://github.com/amazon-redshift-jdbc-driver + scm:git:git://github.com/amazon-redshift-jdbc-driver + HEAD + https://github.com/aws/amazon-redshift-jdbc-driver + + + + + iggarish + iggarish@amazon.com + + + bomaksym + bomaksym@amazon.com + + + whbrook + whbrook@amazon.com + + + sjn + sjn@amazon.com + + + bhvkshah + bhvkshah@amazon.com + + + + + + com.amazonaws + aws-java-sdk-core + 1.12.577 + runtime + true + + + com.amazonaws + aws-java-sdk-redshift + 1.12.577 + runtime + true + + + com.amazonaws + aws-java-sdk-redshiftserverless + 1.12.577 + runtime + true + + + com.amazonaws + aws-java-sdk-sts + 1.12.577 + runtime + true + + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 3.0.0-M1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.1 + + com.amazon.redshift + 2g + false + false + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + + + + + staging-repo + aws-sonatype + https://aws.oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom.sha1 b/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom.sha1 new file mode 100644 index 000000000..52ddbf406 --- /dev/null +++ b/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom.sha1 @@ -0,0 +1 @@ +46bec8a7e613c3648cc8f4eb16e577ef4de37673 \ No newline at end of file diff --git a/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/_remote.repositories b/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/_remote.repositories new file mode 100644 index 000000000..7f835719e --- /dev/null +++ b/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:11 EDT 2024 +commonmark-ext-gfm-tables-0.15.2.pom>central= diff --git a/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom b/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom new file mode 100644 index 000000000..0f6fd4411 --- /dev/null +++ b/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom @@ -0,0 +1,43 @@ + + + 4.0.0 + + com.atlassian.commonmark + commonmark-parent + 0.15.2 + + + commonmark-ext-gfm-tables + commonmark-java extension for tables + commonmark-java extension for GFM tables using "|" pipes (GitHub Flavored Markdown) + + + + com.atlassian.commonmark + commonmark + + + + com.atlassian.commonmark + commonmark-test-util + test + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.commonmark.ext.gfm.tables + + + + + + + + diff --git a/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom.sha1 b/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom.sha1 new file mode 100644 index 000000000..0c2971a86 --- /dev/null +++ b/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom.sha1 @@ -0,0 +1 @@ +61df569a130db89e5425742468b2e0e39a706e34 \ No newline at end of file diff --git a/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/_remote.repositories b/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/_remote.repositories new file mode 100644 index 000000000..66ccb2eec --- /dev/null +++ b/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:11 EDT 2024 +commonmark-parent-0.15.2.pom>central= diff --git a/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom b/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom new file mode 100644 index 000000000..7f3adec72 --- /dev/null +++ b/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom @@ -0,0 +1,214 @@ + + + 4.0.0 + + com.atlassian.pom + central-pom + 5.0.13 + + + pom + + com.atlassian.commonmark + commonmark-parent + 0.15.2 + commonmark-java parent + + Java implementation of CommonMark, a specification of the Markdown format for turning plain text into formatted + text. + + https://github.com/atlassian/commonmark-java + + + commonmark + commonmark-ext-autolink + commonmark-ext-gfm-strikethrough + commonmark-ext-gfm-tables + commonmark-ext-heading-anchor + commonmark-ext-image-attributes + commonmark-ext-ins + commonmark-ext-task-list-items + commonmark-ext-yaml-front-matter + commonmark-integration-test + commonmark-test-util + + + + UTF-8 + ${project.basedir}/../commonmark/target/apidocs/ + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 7 + 7 + + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + org.apache.maven.plugins + maven-javadoc-plugin + + *.internal,*.internal.* + + false + + + http://static.javadoc.io/com.atlassian.commonmark/commonmark/${project.version}/ + ${commonmark.javadoc.location} + + + + + + org.apache.maven.plugins + maven-release-plugin + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.1 + + + + + + + + + + com.atlassian.commonmark + commonmark + 0.15.2 + + + com.atlassian.commonmark + commonmark-ext-autolink + 0.15.2 + + + com.atlassian.commonmark + commonmark-ext-image-attributes + 0.15.2 + + + com.atlassian.commonmark + commonmark-ext-ins + 0.15.2 + + + com.atlassian.commonmark + commonmark-ext-gfm-strikethrough + 0.15.2 + + + com.atlassian.commonmark + commonmark-ext-gfm-tables + 0.15.2 + + + com.atlassian.commonmark + commonmark-ext-heading-anchor + 0.15.2 + + + com.atlassian.commonmark + commonmark-ext-task-list-items + 0.15.2 + + + com.atlassian.commonmark + commonmark-ext-yaml-front-matter + 0.15.2 + + + com.atlassian.commonmark + commonmark-test-util + 0.15.2 + + + + + junit + junit + 4.12 + + + org.openjdk.jmh + jmh-core + 1.17.5 + + + org.openjdk.jmh + jmh-generator-annprocess + 1.17.5 + + + + + + + coverage + + + + org.jacoco + jacoco-maven-plugin + 0.7.9 + + + + org/commonmark/spec/* + org/commonmark/test/* + + + + + prepare-agent + + prepare-agent + + + + + + + + + + + + BSD 2-Clause License + http://opensource.org/licenses/BSD-2-Clause + repo + + + + + + Robin Stocker + rstocker@atlassian.com + Atlassian + https://www.atlassian.com/ + + + + + scm:git:git@github.com:atlassian/commonmark-java.git + + scm:git:[fetch=]git@github.com:atlassian/commonmark-java.git[push=]git@bitbucket.org:atlassian/commonmark-java.git + https://github.com/atlassian/commonmark-java + commonmark-parent-0.15.2 + + + diff --git a/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom.sha1 b/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom.sha1 new file mode 100644 index 000000000..460d880b6 --- /dev/null +++ b/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom.sha1 @@ -0,0 +1 @@ +849524c56e2a9a6ed0e49bbab5d2903d31cef550 \ No newline at end of file diff --git a/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/_remote.repositories b/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/_remote.repositories new file mode 100644 index 000000000..94c9627f3 --- /dev/null +++ b/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:11 EDT 2024 +commonmark-0.15.2.pom>central= diff --git a/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom b/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom new file mode 100644 index 000000000..1a9f1385e --- /dev/null +++ b/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom @@ -0,0 +1,73 @@ + + + 4.0.0 + + com.atlassian.commonmark + commonmark-parent + 0.15.2 + + + commonmark + commonmark-java core + Core of commonmark-java (implementation of CommonMark for parsing markdown and rendering to HTML) + + + + com.atlassian.commonmark + commonmark-test-util + test + + + org.openjdk.jmh + jmh-core + test + + + org.openjdk.jmh + jmh-generator-annprocess + test + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.commonmark + + + + + + + + + + benchmark + + exec:exec + + + org.codehaus.mojo + exec-maven-plugin + 1.5.0 + + java + test + + -classpath + + org.commonmark.test.SpecBenchmark + + + + + + + + + diff --git a/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom.sha1 b/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom.sha1 new file mode 100644 index 000000000..c765e0b29 --- /dev/null +++ b/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom.sha1 @@ -0,0 +1 @@ +9cd52149b57ee233c6c9afb36928fb95ee168356 \ No newline at end of file diff --git a/code/arachne/com/atlassian/pom/base-pom/5.0.13/_remote.repositories b/code/arachne/com/atlassian/pom/base-pom/5.0.13/_remote.repositories new file mode 100644 index 000000000..b66a3e333 --- /dev/null +++ b/code/arachne/com/atlassian/pom/base-pom/5.0.13/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:11 EDT 2024 +base-pom-5.0.13.pom>central= diff --git a/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom b/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom new file mode 100644 index 000000000..19fbdda7e --- /dev/null +++ b/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom @@ -0,0 +1,691 @@ + + + 4.0.0 + + com.atlassian.pom + base-pom + 5.0.13 + pom + + Atlassian Base POM + Base POM for Atlassian projects + https://www.atlassian.com/ + + + Atlassian Customer Agreement + https://www.atlassian.com/legal/customer-agreement + repo + + + + + + charlie + Charlie + devrel@atlassian.com + + + + Atlassian + https://www.atlassian.com/ + + + + 3.0.5 + + + + scm:git:ssh://git@bitbucket.org/atlassian/parent-poms.git + scm:git:ssh://git@bitbucket.org/atlassian/parent-poms.git + https://bitbucket.org/atlassian/parent-poms + HEAD + + + + JIRA + https://jira.atlassian.com/browse/ABPOM + + + Bamboo + https://staging-bamboo.internal.atlassian.com/browse/OTHER-BASEPOM + + + + maven-atlassian-com + Atlassian Private Repository + https://packages.atlassian.com/maven/central + + + maven-atlassian-com + Atlassian Private Snapshot Repository + https://packages.atlassian.com/maven/central-snapshot + + + + + + UTF-8 + UTF-8 + + + 1.8 + 1.8 + 3.1.5 + + 3.0.0-M1 + 2.5 + 2.9 + + + true + + true + + + -Xdoclint:all -Xdoclint:-missing + + + 6.9 + + false + maven-atlassian-com + maven-staging-local + maven-central-local + + true + + + + + + org.apache.maven.wagon + wagon-ssh-external + 1.0 + + + + + org.apache.maven.plugins + maven-deploy-plugin + false + + + org.apache.maven.plugins + maven-enforcer-plugin + + + com.atlassian.maven.enforcer + maven-enforcer-rules + 1.4.0 + + + + + enforce-build-environment + compile + + enforce + + + + + 1.8 + + + [3.2.5,) + + + Best Practice is to always define plugin versions! + + + + + + + + ban-milestones-and-release-candidates + + compile + + enforce + + + + + Milestone and Release Candidate dependencies are not allowed in releases. + + + (?i)^.*-(rc|m)-?[0-9]+(-.+)?$ + + + (?i)^.*-m-?[0-9]+(-.+)?$ + ${banVersionDeps.noFailSnapshots} + + + false + + + true + + + ${failOnMilestoneOrReleaseCandidateDeps} + + + + + + org.apache.maven.plugins + maven-resources-plugin + + 2.6 + + + copy-license + process-sources + + copy-resources + + + ${project.build.outputDirectory}/META-INF + true + + + ${user.dir} + + LICENSE.txt + NOTICE.txt + license.txt + notice.txt + + true + + + + + + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-failsafe-plugin + + 2.18.1 + + + org.apache.maven.plugins + maven-resources-plugin + + 2.6 + + UTF-8 + + tif + tiff + pdf + swf + + + + + org.apache.maven.plugins + maven-site-plugin + 3.6 + + + org.apache.maven.plugins + maven-verifier-plugin + 1.1 + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven.javadoc.plugin.version} + + ${javadoc.additional.params} + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.7.0 + + + maven-surefire-plugin + 2.20.1 + + + **/*$* + + + + + + + + org.apache.maven.plugins + maven-ear-plugin + 2.10.1 + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + org.apache.maven.plugins + maven-rar-plugin + 2.4 + + + org.apache.maven.plugins + maven-war-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-shade-plugin + 3.0.0 + + + + + + org.codehaus.cargo + cargo-maven2-plugin + 1.6.3 + + ${maven.test.skip} + + + + + org.mortbay.jetty + jetty-maven-plugin + 8.1.16.v20140903 + + + org.eclipse.jetty + jetty-maven-plugin + 9.4.6.v20170531 + + + + + + com.atlassian.maven.plugins + maven-upload-plugin + 1.1 + + + com.atlassian.maven.plugins + maven-atlassian-source-distribution-plugin + 4.2.6 + + + org.apache.maven.plugins + maven-ant-plugin + 2.2 + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.maven.plugins + maven-archetype-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M1 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + org.apache.maven.plugins + maven-invoker-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-patch-plugin + 1.2 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.5 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + true + true + true + release + true + clean install + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + 3 + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.5 + + + org.apache.maven.plugins + maven-repository-plugin + 2.4 + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.5 + + + org.apache.felix + maven-bundle-plugin + 3.3.0 + + + com.atlassian.maven.plugins + maven-atlassian-buildutils-plugin + 0.2 + + + net.alchim31.maven + yuicompressor-maven-plugin + 1.5.1 + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${maven.jxr.plugin.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + 2.20.1 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.2 + + true + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.17 + + + com.puppycrawl.tools + checkstyle + ${checkstyle.version} + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${maven.project-info-reports.plugin.version} + + + + + com.atlassian.maven.plugins + license-maven-plugin + 0.39 + + + + com.atlassian.maven.plugins + artifactory-staging-maven-plugin + 1.0.4 + true + + ${artifactory.staging.skip} + ${artifactory.staging.serverId} + ${artifactory.staging.repo} + ${artifactory.target.repo} + https://packages.atlassian.com + + + + staging + validate + + staging + + + + + + + + + + + release + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + false + + + sign-artifacts + verify + + sign + + + + + + + + + checkstyle + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + ${project.build.directory}/codestyle + + com.atlassian.codestyle:${atlassian.codestyle}:jar + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + verify + verify + + check + + + ${project.build.directory}/codestyle/checkstyle-rules.xml + configdir=${project.build.directory}/codestyle + + + + + + + + + sox + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${maven-project-info-reports-plugin} + + + + issue-tracking + license + index + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven.javadoc.plugin.version} + + + + diff --git a/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom.sha1 b/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom.sha1 new file mode 100644 index 000000000..b3e433c21 --- /dev/null +++ b/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom.sha1 @@ -0,0 +1 @@ +5a79940efff632b0bfc541be63c5c23a9cc7be86 \ No newline at end of file diff --git a/code/arachne/com/atlassian/pom/central-pom/5.0.13/_remote.repositories b/code/arachne/com/atlassian/pom/central-pom/5.0.13/_remote.repositories new file mode 100644 index 000000000..d65f6e4ba --- /dev/null +++ b/code/arachne/com/atlassian/pom/central-pom/5.0.13/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:11 EDT 2024 +central-pom-5.0.13.pom>central= diff --git a/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom b/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom new file mode 100644 index 000000000..eaa726d73 --- /dev/null +++ b/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom @@ -0,0 +1,88 @@ + + + 4.0.0 + + + com.atlassian.pom + base-pom + 5.0.13 + ../base-pom + + + central-pom + pom + + Atlassian Central POM + + + + maven-atlassian-com + Atlassian Central Repository + https://packages.atlassian.com/maven/central + + + maven-atlassian-com + Atlassian Central Snapshot Repository + https://packages.atlassian.com/maven/central-snapshot + + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + JIRA + https://jira.atlassian.com/browse/APUBPOM + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${maven.jxr.plugin.version} + + + + + + maven-central-local + + + + + + + release + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.maven.plugins + maven-source-plugin + + + + + + + diff --git a/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom.sha1 b/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom.sha1 new file mode 100644 index 000000000..ddfe47944 --- /dev/null +++ b/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom.sha1 @@ -0,0 +1 @@ +0b42bf0dec16e8519d299f2b66b1481ffac1cd59 \ No newline at end of file diff --git a/code/arachne/com/cloudbees/cloudbees-oss-parent/8/_remote.repositories b/code/arachne/com/cloudbees/cloudbees-oss-parent/8/_remote.repositories new file mode 100644 index 000000000..7ff77ee1b --- /dev/null +++ b/code/arachne/com/cloudbees/cloudbees-oss-parent/8/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:13 EDT 2024 +cloudbees-oss-parent-8.pom>central= diff --git a/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom b/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom new file mode 100644 index 000000000..a70dc87ea --- /dev/null +++ b/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom @@ -0,0 +1,359 @@ + + + + + 4.0.0 + + com.cloudbees + cloudbees-oss-parent + 8 + pom + + cloudbees-oss-parent + The CloudBees OSS Parent Project + https://github.com/cloudbees/cloudbees-oss-parent + 2011 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + stephenc + Stephen Connolly + + + + + + + + scm:git:git://github.com/cloudbees/cloudbees-oss-parent.git + scm:git:ssh://git@github.com/cloudbees/cloudbees-oss-parent.git + http://github.com/cloudbees/cloudbees-oss-parent/tree/master/ + cloudbees-oss-parent-8 + + + + + + cloudbees-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + cloudbees-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + UTF-8 + UTF-8 + UTF-8 + https://oss.sonatype.org/content/repositories/snapshots/ + + git + 1.9.4 + + + + + + cloudbees-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + false + + + true + + + + + + + + + com.google.code.findbugs + annotations + 3.0.0 + provided + true + + + + + + + + + maven-assembly-plugin + 2.5.5 + + + maven-clean-plugin + 2.6.1 + + + maven-compiler-plugin + 3.3 + + + maven-dependency-plugin + 2.10 + + + maven-deploy-plugin + 2.8.2 + + + maven-enforcer-plugin + 1.4 + + + maven-failsafe-plugin + 2.18.1 + + + maven-gpg-plugin + 1.6 + + + maven-install-plugin + 2.5.2 + + + maven-jar-plugin + 2.6 + + + maven-javadoc-plugin + 2.10.3 + + + maven-resources-plugin + 2.7 + + + maven-release-plugin + 2.5.2 + + forked-path + false + -P+cloudbees-oss-release ${arguments} + + + + maven-site-plugin + 3.4 + + + maven-source-plugin + 2.4 + + + maven-surefire-plugin + 2.18.1 + + + maven-war-plugin + 2.6 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.1 + + + findbugs + + check + + verify + + + + true + false + + + + + + + + + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [3.0,) + Maven 2.x is end of life + + + (,3.0),[3.0.4,) + Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin. + + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.5 + true + + cloudbees-nexus-snapshots + https://oss.sonatype.org/ + true + + + + + + + + + + cloudbees-oss-release + + + + maven-source-plugin + + + attach-sources + + jar + + + + + + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + jgit-scm-provider + + + git.provider + jgit + + + + + + maven-release-plugin + + + ${git.provider} + + + + + org.apache.maven.scm + maven-scm-provider-jgit + ${maven-scm.version} + + + + + maven-scm-plugin + ${maven-scm.version} + + + ${git.provider} + + + + + org.apache.maven.scm + maven-scm-provider-jgit + ${maven-scm.version} + + + + + + + + findbugs-exclusion-file + + + ${basedir}/src/findbugs/excludesFilter.xml + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + + findbugs + + ${project.basedir}/src/findbugs/excludesFilter.xml + + + + + + + + + + diff --git a/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom.sha1 b/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom.sha1 new file mode 100644 index 000000000..374bddd31 --- /dev/null +++ b/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom.sha1 @@ -0,0 +1 @@ +fd0627f1471102927c3533000f2b1bedcefaf7bb \ No newline at end of file diff --git a/code/arachne/com/cloudbees/syslog-java-client/1.1.7/_remote.repositories b/code/arachne/com/cloudbees/syslog-java-client/1.1.7/_remote.repositories new file mode 100644 index 000000000..419687562 --- /dev/null +++ b/code/arachne/com/cloudbees/syslog-java-client/1.1.7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:13 EDT 2024 +syslog-java-client-1.1.7.pom>central= diff --git a/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom b/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom new file mode 100644 index 000000000..c74ffb56c --- /dev/null +++ b/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom @@ -0,0 +1,111 @@ + + + 4.0.0 + + + com.cloudbees + cloudbees-oss-parent + 8 + + + syslog-java-client + bundle + 1.1.7 + + syslog-java-client + Syslog Java Client + https://github.com/CloudBees-community/syslog-java-client + 2014 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Cyrille Le Clerc + cleclerc@cloudbees.com + + + + + 3.5.0 + + + + scm:git:git://github.com/CloudBees-community/syslog-java-client.git + scm:git:git@github.com:CloudBees-community/syslog-java-client.git + https://github.com/CloudBees-community/syslog-java-client + syslog-java-client-1.1.7 + + + + com.github.spotbugs + spotbugs-annotations + 3.1.10 + true + + + junit + junit + 4.12 + test + + + org.hamcrest + hamcrest-all + 1.3 + test + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + 1.7 + 1.7 + + + + org.apache.felix + maven-bundle-plugin + 4.1.0 + true + + + com.github.spotbugs + spotbugs-maven-plugin + 3.1.10 + + + analyze-compile + compile + + check + + + + + + + diff --git a/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom.sha1 b/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom.sha1 new file mode 100644 index 000000000..5ee263624 --- /dev/null +++ b/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom.sha1 @@ -0,0 +1 @@ +4c9098483d6a41c77013837bcc64dd7563bce3a1 \ No newline at end of file diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/_remote.repositories b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/_remote.repositories new file mode 100644 index 000000000..84b1fb018 --- /dev/null +++ b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:10 EDT 2024 +spring-data-jpa-entity-graph-parent-3.2.2.pom>central= diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom new file mode 100644 index 000000000..bc971b774 --- /dev/null +++ b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom @@ -0,0 +1,347 @@ + + + 4.0.0 + + Spring Data JPA EntityGraph Parent + A Spring Data JPA extension allowing full usage of JPA EntityGraph on repositories + https://github.com/Cosium/spring-data-jpa-entity-graph + + com.cosium.spring.data + spring-data-jpa-entity-graph-parent + 3.2.2 + pom + + + core + generator + + + + 17 + + 3.2.1 + 5.0.0 + + 2.7.3 + 1.3.0 + 6.1.2 + 6.3.1.Final + 2.7.2 + 3.24.2 + 1.4.14 + 5.10.1 + 1.1.1 + 5.1 + + + + + + jakarta.persistence + jakarta.persistence-api + 3.1.0 + + + org.springframework.data + spring-data-jpa + ${spring.data.jpa} + + + + com.querydsl + querydsl-apt + ${querydsl} + jakarta + + + + org.hibernate.orm + hibernate-jpamodelgen + ${hibernate.version} + + + org.hibernate.orm + hibernate-core + ${hibernate.version} + + + + com.querydsl + querydsl-jpa + ${querydsl} + jakarta + + + + org.hsqldb + hsqldb + ${hsqldb.version} + + + + org.junit + junit-bom + ${junit.version} + pom + import + + + com.github.springtestdbunit + spring-test-dbunit + ${spring-test-dbunit} + + + org.springframework + spring-test + ${spring.framework.version} + + + org.dbunit + dbunit + ${dbunit} + + + org.assertj + assertj-core + ${assertj} + + + ch.qos.logback + logback-classic + ${logback} + + + + com.google.auto.service + auto-service + ${auto-service.version} + + + + com.squareup + javapoet + 1.13.0 + + + + + + + + com.cosium.code + git-code-format-maven-plugin + ${git-code-format-maven-plugin.version} + + + + install-formatter-hook + + install-hooks + + + + + validate-code-format + + validate-code-format + + + + + + + com.cosium.code + google-java-format + ${git-code-format-maven-plugin.version} + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.12.1 + + true + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + + attach-javadocs + + jar + + + + + false + -Xdoclint:none + + + + org.apache.maven.plugins + maven-deploy-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.3 + + false + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + true + true + true + release + deploy + @{project.version} + + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + + prepare-agent + + + + report + test + + report + + + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + ossrh + https://oss.sonatype.org/ + true + true + + + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + central + central + https://repo1.maven.org/maven2 + + + spring-snapshot-local + spring-snapshot-local + https://repo.spring.io/libs-snapshot-local + + + spring-milestone-local + spring-milestone-local + https://repo.spring.io/libs-milestone-local + + + + + scm:git:https://github.com/Cosium/spring-data-jpa-entity-graph + scm:git:https://github.com/Cosium/spring-data-jpa-entity-graph + https://github.com/Cosium/spring-data-jpa-entity-graph + 3.2.2 + + + + Cosium + https://www.cosium.com + + + + + reda-alaoui + Réda Housni Alaoui + reda-alaoui@hey.com + https://github.com/reda-alaoui + + + + + + MIT License + https://www.opensource.org/licenses/mit-license.php + repo + + + + diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom.sha1 b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom.sha1 new file mode 100644 index 000000000..77135eabf --- /dev/null +++ b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom.sha1 @@ -0,0 +1 @@ +37ebf120b8c69f8227e8875948e44bd5b609b8a7 \ No newline at end of file diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/_remote.repositories b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/_remote.repositories new file mode 100644 index 000000000..def25cf65 --- /dev/null +++ b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:10 EDT 2024 +spring-data-jpa-entity-graph-3.2.2.pom>central= diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom new file mode 100644 index 000000000..02ca2a575 --- /dev/null +++ b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom @@ -0,0 +1,124 @@ + + + 4.0.0 + + + com.cosium.spring.data + spring-data-jpa-entity-graph-parent + 3.2.2 + + + Spring Data JPA EntityGraph + spring-data-jpa-entity-graph + + + + + javax.xml.bind + jaxb-api + 2.4.0-b180830.0359 + provided + + + + org.springframework.data + spring-data-jpa + provided + + + + + javax.annotation + javax.annotation-api + 1.3.2 + provided + + + + com.querydsl + querydsl-apt + jakarta + provided + + + + org.hibernate.orm + hibernate-jpamodelgen + provided + + + + ${project.groupId} + spring-data-jpa-entity-graph-generator + ${project.version} + provided + + + + com.querydsl + querydsl-jpa + jakarta + true + + + + + org.hsqldb + hsqldb + test + + + org.hibernate.orm + hibernate-core + test + + + org.junit.jupiter + junit-jupiter + test + + + com.github.springtestdbunit + spring-test-dbunit + test + + + org.springframework + spring-test + test + + + org.dbunit + dbunit + test + + + org.assertj + assertj-core + test + + + ch.qos.logback + logback-classic + test + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + com.cosium.spring.data.jpa.entity.graph.core + + + + + + + + diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom.sha1 b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom.sha1 new file mode 100644 index 000000000..c6aeec518 --- /dev/null +++ b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom.sha1 @@ -0,0 +1 @@ +d465521699f4bb70ed880639af5c8303a2e15202 \ No newline at end of file diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/_remote.repositories b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/_remote.repositories new file mode 100644 index 000000000..ea3f4d3d5 --- /dev/null +++ b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:23 EDT 2024 +java-driver-bom-4.17.0.pom>ohdsi= diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom new file mode 100644 index 000000000..069629581 --- /dev/null +++ b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom @@ -0,0 +1,110 @@ + + + + 4.0.0 + com.datastax.oss + java-driver-bom + 4.17.0 + pom + DataStax Java driver for Apache Cassandra(R) - Bill Of Materials + A driver for Apache Cassandra(R) 2.1+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's native protocol versions 3 and above. + https://github.com/datastax/java-driver/java-driver-bom + 2017 + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + Apache License Version 2.0 + + + + + Various + DataStax + + + + scm:git:git@github.com:datastax/java-driver.git/java-driver-bom + scm:git:git@github.com:datastax/java-driver.git/java-driver-bom + 4.17.0 + https://github.com/datastax/java-driver/java-driver-bom + + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + com.datastax.oss + java-driver-core + 4.17.0 + + + com.datastax.oss + java-driver-core-shaded + 4.17.0 + + + com.datastax.oss + java-driver-mapper-processor + 4.17.0 + + + com.datastax.oss + java-driver-mapper-runtime + 4.17.0 + + + com.datastax.oss + java-driver-query-builder + 4.17.0 + + + com.datastax.oss + java-driver-test-infra + 4.17.0 + + + com.datastax.oss + java-driver-metrics-micrometer + 4.17.0 + + + com.datastax.oss + java-driver-metrics-microprofile + 4.17.0 + + + com.datastax.oss + native-protocol + 1.5.1 + + + com.datastax.oss + java-driver-shaded-guava + 25.1-jre-graal-sub-1 + + + + diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.lastUpdated b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.lastUpdated new file mode 100644 index 000000000..ae559d5b0 --- /dev/null +++ b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:23 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact com.datastax.oss\:java-driver-bom\:pom\:4.17.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139802478 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139802596 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139802937 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139803076 diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.sha1 b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.sha1 new file mode 100644 index 000000000..8e0bd98b6 --- /dev/null +++ b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.sha1 @@ -0,0 +1 @@ +72cb0e156be49b4bb64e6c28e1483fae594c0da6 \ No newline at end of file diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/_remote.repositories b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/_remote.repositories new file mode 100644 index 000000000..357bcb2b0 --- /dev/null +++ b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:45 EDT 2024 +java-driver-bom-4.6.1.pom>local-repo= diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom new file mode 100644 index 000000000..3af47cd60 --- /dev/null +++ b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom @@ -0,0 +1,100 @@ + + + + 4.0.0 + com.datastax.oss + java-driver-bom + 4.6.1 + pom + DataStax Java driver for Apache Cassandra(R) - Bill Of Materials + A driver for Apache Cassandra(R) 2.1+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's native protocol versions 3 and above. + https://github.com/datastax/java-driver/java-driver-bom + 2017 + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + Apache License Version 2.0 + + + + + Various + DataStax + + + + scm:git:git@github.com:datastax/java-driver.git/java-driver-bom + scm:git:git@github.com:datastax/java-driver.git/java-driver-bom + 4.6.1 + https://github.com/datastax/java-driver/java-driver-bom + + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + com.datastax.oss + java-driver-core + 4.6.1 + + + com.datastax.oss + java-driver-core-shaded + 4.6.1 + + + com.datastax.oss + java-driver-mapper-processor + 4.6.1 + + + com.datastax.oss + java-driver-mapper-runtime + 4.6.1 + + + com.datastax.oss + java-driver-query-builder + 4.6.1 + + + com.datastax.oss + java-driver-test-infra + 4.6.1 + + + com.datastax.oss + native-protocol + 1.4.10 + + + com.datastax.oss + java-driver-shaded-guava + 25.1-jre + + + + diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.lastUpdated b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.lastUpdated new file mode 100644 index 000000000..2c8e69e55 --- /dev/null +++ b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:45 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139885715 +http\://0.0.0.0/.error=Could not transfer artifact com.datastax.oss\:java-driver-bom\:pom\:4.6.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139885142 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139885148 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139885289 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139885664 diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.sha1 b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.sha1 new file mode 100644 index 000000000..cc2f512a3 --- /dev/null +++ b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.sha1 @@ -0,0 +1 @@ +c70bdb9721ecbd3b3f33ad85db5ddbfdf0b313be \ No newline at end of file diff --git a/code/arachne/com/fasterxml/classmate/1.6.0/_remote.repositories b/code/arachne/com/fasterxml/classmate/1.6.0/_remote.repositories new file mode 100644 index 000000000..8d7db4ace --- /dev/null +++ b/code/arachne/com/fasterxml/classmate/1.6.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:57 EDT 2024 +classmate-1.6.0.pom>central= diff --git a/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom b/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom new file mode 100644 index 000000000..4fa8783c7 --- /dev/null +++ b/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom @@ -0,0 +1,187 @@ + + 4.0.0 + + com.fasterxml + oss-parent + 55 + + classmate + ClassMate + 1.6.0 + bundle + Library for introspecting types with full generic information + including resolving of field and method types. + + https://github.com/FasterXML/java-classmate + + scm:git:git@github.com:FasterXML/java-classmate.git + scm:git:git@github.com:FasterXML/java-classmate.git + https://github.com/FasterXML/java-classmate + classmate-1.6.0 + + + + tatu + Tatu Saloranta + tatu@fasterxml.com + + + blangel + Brian Langel + blangel@ocheyedan.net + + + + + UTF-8 + 1.6 + + com.fasterxml.classmate;version=${project.version}, +com.fasterxml.classmate.*;version=${project.version} + + com.fasterxml.classmate.util.* + + com.fasterxml.classmate + + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + fasterxml.com + https://fasterxml.com + + + + + + junit + junit + ${version.junit} + test + + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + sonatype-nexus-staging + https://oss.sonatype.org/ + + b34f19b9cc6224 + + + + + + org.apache.felix + maven-bundle-plugin + + + ${jdk.module.name} + + + + + + maven-compiler-plugin + + ${version.jdk} + ${version.jdk} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + ${version.jdk} + ${version.jdk} + UTF-8 + + https://docs.oracle.com/javase/8/docs/api/ + + + + + attach-javadocs + verify + + jar + + + + + + + org.moditect + moditect-maven-plugin + + + add-module-infos + package + + add-module-info + + + true + + src/moditect/module-info.java + + + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom.sha1 b/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom.sha1 new file mode 100644 index 000000000..9892ed264 --- /dev/null +++ b/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom.sha1 @@ -0,0 +1 @@ +a49f9e6eaa5cd96d7b9bb6c5bed86537c1d463ea \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/_remote.repositories new file mode 100644 index 000000000..bef163af2 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:47 EDT 2024 +jackson-annotations-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom b/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom new file mode 100644 index 000000000..113ba6f98 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom @@ -0,0 +1,198 @@ + + + + + + + + 4.0.0 + + com.fasterxml.jackson + + jackson-parent + 2.15 + + + com.fasterxml.jackson.core + jackson-annotations + Jackson-annotations + 2.15.4 + jar + Core annotations used for value types, used by Jackson data binding package. + + 2008 + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + https://github.com/FasterXML/jackson + + scm:git:git@github.com:FasterXML/jackson-annotations.git + scm:git:git@github.com:FasterXML/jackson-annotations.git + https://github.com/FasterXML/jackson-annotations + jackson-annotations-2.15.4 + + + + + 1.6 + 1.6 + + 1.6 + 1.6 + + com.fasterxml.jackson.annotation.*;version=${project.version} + + + 2024-02-15T16:58:49Z + + + + + junit + junit + ${version.junit} + test + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + + + + + + + + org.moditect + moditect-maven-plugin + + + add-module-infos + package + + add-module-info + + + true + + src/moditect/module-info.java + + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + sonatype-nexus-staging + https://oss.sonatype.org/ + b34f19b9cc6224 + + + + + + de.jjohannes + gradle-module-metadata-maven-plugin + 0.4.0 + + + + gmm + + + + + + + com.fasterxml.jackson + jackson-bom + ${project.version} + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-resource + generate-resources + + add-resource + + + + + ${project.basedir} + META-INF + + LICENSE + + + + + + + + + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom.sha1 new file mode 100644 index 000000000..9b258d2dc --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom.sha1 @@ -0,0 +1 @@ +657793cf31fc48360c540b3152e2cc2b63bba8ac \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/_remote.repositories new file mode 100644 index 000000000..aad39b038 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:47 EDT 2024 +jackson-core-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom b/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom new file mode 100644 index 000000000..3a00185fd --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom @@ -0,0 +1,250 @@ + + + + jackson-base + com.fasterxml.jackson + 2.15.4 + ../pom.xml/pom.xml + + + + + + + 4.0.0 + com.fasterxml.jackson.core + jackson-core + Jackson-core + 2.15.4 + Core Jackson processing abstractions (aka Streaming API), implementation for JSON + https://github.com/FasterXML/jackson-core + 2008 + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:git@github.com:FasterXML/jackson-core.git + scm:git:git@github.com:FasterXML/jackson-core.git + jackson-core-2.15.4 + https://github.com/FasterXML/jackson-core + + + + + org.jacoco + jacoco-maven-plugin + + + + prepare-agent + + + + report + test + + report + + + + + + maven-enforcer-plugin + + + enforce-properties + validate + + enforce + + + + + + maven-site-plugin + + + maven-surefire-plugin + ${version.plugin.surefire} + + ${surefire.redirectTestOutputToFile} + + **/failing/**/*.java + + + + + com.google.code.maven-replacer-plugin + replacer + + + org.moditect + moditect-maven-plugin + + + org.codehaus.mojo + build-helper-maven-plugin + + + maven-shade-plugin + 3.5.1 + + + shade-jackson-core + package + + shade + + + + + ch.randelshofer:fastdoubleparser + + META-INF/versions/**/module-info.* + META-INF/versions/22/**/*.* + + + + + + ch/randelshofer/fastdoubleparser + com/fasterxml/jackson/core/io/doubleparser + + + META-INF/LICENSE + META-INF/FastDoubleParser-LICENSE + + + META-INF/NOTICE + META-INF/FastDoubleParser-NOTICE + + + META-INF/jackson-core-LICENSE + META-INF/LICENSE + + + META-INF/jackson-core-NOTICE + META-INF/NOTICE + + + META-INF/versions/11/ch/randelshofer/fastdoubleparser + META-INF/versions/11/com/fasterxml/jackson/core/io/doubleparser + + + META-INF/versions/17/ch/randelshofer/fastdoubleparser + META-INF/versions/17/com/fasterxml/jackson/core/io/doubleparser + + + META-INF/versions/21/ch/randelshofer/fastdoubleparser + META-INF/versions/21/com/fasterxml/jackson/core/io/doubleparser + + + + + + + true + true + true + + + + de.jjohannes + gradle-module-metadata-maven-plugin + + + + ch.randelshofer + fastdoubleparser + + + + + + maven-jar-plugin + + + + true + + + + + + io.github.floverfelt + find-and-replace-maven-plugin + 1.1.0 + + + exec + package + + find-and-replace + + + file-contents + ${basedir} + <modelVersion>4.0.0</modelVersion> + dependency-reduced-pom.xml + <!-- This module was also published with a richer model, Gradle metadata, --> + <!-- which should be used instead. Do not delete the following line which --> + <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> + <!-- that they should prefer consuming it instead. --> + <!-- do_not_remove: published-with-gradle-metadata --> + <modelVersion>4.0.0</modelVersion> + false + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.22 + + + com.toasttab.android + gummy-bears-api-${version.android.sdk} + ${version.android.sdk.signature} + + + + + + + + + false + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + + + + org.junit + junit-bom + 5.9.2 + pom + import + + + + + 26 + com/fasterxml/jackson/core/json + !ch.randelshofer.fastdoubleparser, * + 0.5.1 + ${project.groupId}.json + com.fasterxml.jackson.core;version=${project.version}, +com.fasterxml.jackson.core.*;version=${project.version} + 2024-02-15T17:07:40Z + + diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom.sha1 new file mode 100644 index 000000000..d050c60bc --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom.sha1 @@ -0,0 +1 @@ +88cfb3d9dc12de7c26caccc26bcec9d7495d1779 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/_remote.repositories new file mode 100644 index 000000000..b33ed7410 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:46 EDT 2024 +jackson-databind-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom b/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom new file mode 100644 index 000000000..a6f73db28 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom @@ -0,0 +1,500 @@ + + + + + + + + 4.0.0 + + com.fasterxml.jackson + jackson-base + 2.15.4 + + com.fasterxml.jackson.core + jackson-databind + 2.15.4 + jackson-databind + jar + General data-binding functionality for Jackson: works on core streaming API + https://github.com/FasterXML/jackson + 2008 + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:git@github.com:FasterXML/jackson-databind.git + scm:git:git@github.com:FasterXML/jackson-databind.git + https://github.com/FasterXML/jackson-databind + jackson-databind-2.15.4 + + + + + 1.8 + 1.8 + + + 26 + 0.5.1 + + + com.fasterxml.jackson.databind.*;version=${project.version} + + + org.w3c.dom.bootstrap;resolution:=optional, + * + + + + com/fasterxml/jackson/databind/cfg + com.fasterxml.jackson.databind.cfg + + 2.0.9 + + + 2024-02-15T17:34:22Z + + + + + + com.fasterxml.jackson.core + jackson-annotations + + ${jackson.version.annotations} + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version.core} + + + + + org.junit.vintage + junit-vintage-engine + test + + + org.junit.jupiter + junit-jupiter + test + + + org.powermock + powermock-core + ${version.powermock} + test + + + org.powermock + powermock-module-junit4 + ${version.powermock} + test + + + org.powermock + powermock-api-mockito2 + ${version.powermock} + test + + + com.google.guava + guava-testlib + 31.1-jre + test + + + + javax.measure + jsr-275 + 0.9.1 + test + + + + org.openjdk.jol + jol-core + 0.16 + test + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + + + + + org.junit + junit-bom + 5.9.2 + pom + import + + + + + + + + org.jacoco + jacoco-maven-plugin + + + + prepare-agent + + + + + report + test + + report + + + + + + + + maven-enforcer-plugin + + + enforce-properties + validate + enforce + + + + + + org.apache.maven.plugins + ${version.plugin.surefire} + maven-surefire-plugin + + + javax.measure:jsr-275 + + + com.fasterxml.jackson.databind.MapperFootprintTest + **/failing/**/*.java + + + 4 + classes + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + https://fasterxml.github.io/jackson-annotations/javadoc/2.14 + https://fasterxml.github.io/jackson-core/javadoc/2.14 + + + + + + + com.google.code.maven-replacer-plugin + replacer + + + + + org.moditect + moditect-maven-plugin + + + + org.codehaus.mojo + build-helper-maven-plugin + + + + de.jjohannes + gradle-module-metadata-maven-plugin + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.22 + + + com.toasttab.android + gummy-bears-api-${version.android.sdk} + ${version.android.sdk.signature} + + + + java.beans.ConstructorProperties + java.beans.Transient + + + + + + + + + + release + + true + true + + + + + java14 + + 14 + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-test-source + generate-test-sources + + add-test-source + + + + src/test-jdk14/java + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + true + + true + + 14 + 14 + + -parameters + --enable-preview + + true + true + + + + org.apache.maven.plugins + maven-surefire-plugin + + --enable-preview + + + + + + + + java17 + + 17 + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-test-source + generate-test-sources + + add-test-source + + + + src/test-jdk14/java + src/test-jdk17/java + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + true + + true + + 17 + 17 + + -parameters + --add-opens=java.base/java.lang=ALL-UNNAMED + --add-opens=java.base/java.util=ALL-UNNAMED + + + + + org.apache.maven.plugins + maven-surefire-plugin + + --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED + + + + + + + errorprone + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -XDcompilePolicy=simple + + -Xplugin:ErrorProne + + -XepExcludedPaths:.*/src/test/java/.* + + + + + + + -Xep:BoxedPrimitiveEquality:ERROR + + + + + + + -Xep:UnusedVariable:OFF + + -Xep:EqualsHashCode:OFF + + -Xep:MissingSummary:OFF + -Xep:InvalidInlineTag:OFF + -Xep:EmptyBlockTag:OFF + -Xep:AlmostJavadoc:OFF + -Xep:InvalidLink:OFF + + -Xep:UnnecessaryParentheses:OFF + + -Xep:InconsistentCapitalization:OFF + + -Xep:FallThrough:OFF + + -Xep:BadImport:OFF + + -Xep:MissingCasesInEnumSwitch:OFF + + -Xep:JavaLangClash:OFF + + -Xep:ProtectedMembersInFinalClass:OFF + + -Xep:PublicConstructorForAbstractClass:OFF + + -Xep:EmptyCatch:OFF + -Xep:EqualsGetClass:OFF + + -Xep:MixedMutabilityReturnType:OFF + + -Xep:TypeParameterUnusedInFormals:OFF + + -Xep:JdkObsolete:OFF + + -Xep:JUnit3FloatingPointComparisonWithoutDelta:OFF + + -Xep:StringSplitter:OFF + + -Xep:AnnotateFormatMethod:OFF + -Xep:GuardedBy:OFF + + -Xep:ReferenceEquality:OFF + + + + + com.google.errorprone + error_prone_core + 2.4.0 + + + true + true + + + + + + + + diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom.sha1 new file mode 100644 index 000000000..72e135893 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom.sha1 @@ -0,0 +1 @@ +fd9ae9b5ab8f9fb0d3655cbe1714305d0e7d4b51 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/_remote.repositories new file mode 100644 index 000000000..3a46738f0 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:11 EDT 2024 +jackson-dataformat-toml-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom new file mode 100644 index 000000000..ccfb3fc65 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom @@ -0,0 +1,85 @@ + + + + + + + + 4.0.0 + + com.fasterxml.jackson.dataformat + jackson-dataformats-text + 2.15.4 + + jackson-dataformat-toml + jar + Jackson-dataformat-TOML + Support for reading and writing TOML-encoded data via Jackson abstractions. + + https://github.com/FasterXML/jackson-dataformats-text + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + com/fasterxml/jackson/dataformat/toml + ${project.groupId}.toml + + + + + com.fasterxml.jackson.core + jackson-databind + + + + org.jetbrains + annotations + 20.1.0 + test + + + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + org.moditect + moditect-maven-plugin + + + de.jflex + jflex-maven-plugin + 1.9.0 + + + generate-sources + + generate + + + + + false + ${project.build.directory}/generated-sources + ${project.basedir}/src/main/jflex/skeleton-toml + + + + + diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom.sha1 new file mode 100644 index 000000000..565803a73 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom.sha1 @@ -0,0 +1 @@ +b08637cdc4315f54136211892af7391cb7296e8b \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/_remote.repositories new file mode 100644 index 000000000..82cd53994 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:11 EDT 2024 +jackson-dataformats-text-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom new file mode 100644 index 000000000..955eb0d44 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom @@ -0,0 +1,103 @@ + + 4.0.0 + + com.fasterxml.jackson + jackson-base + 2.15.4 + + com.fasterxml.jackson.dataformat + jackson-dataformats-text + Jackson dataformats: Text + 2.15.4 + pom + Parent pom for Jackson text-based dataformats (as opposed to binary). + + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + csv + properties + yaml + toml + + + https://github.com/FasterXML/jackson-dataformats-text + + scm:git:git@github.com:FasterXML/jackson-dataformats-text.git + scm:git:git@github.com:FasterXML/jackson-dataformats-text.git + https://github.com/FasterXML/jackson-dataformats-text + jackson-dataformats-text-2.15.4 + + + https://github.com/FasterXML/jackson-dataformats-text/issues + + + + + 2024-02-15T18:00:30Z + + + + + + com.fasterxml.jackson.core + jackson-core + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + com/fasterxml/jackson/**/failing/*.java + + + + + + + + + + de.jjohannes + gradle-module-metadata-maven-plugin + + + + + diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom.sha1 new file mode 100644 index 000000000..e4e64efbd --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom.sha1 @@ -0,0 +1 @@ +eb123a07015bb995aca00385f21470c078124ea8 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/_remote.repositories new file mode 100644 index 000000000..c4e677008 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:51 EDT 2024 +jackson-datatype-jdk8-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom new file mode 100644 index 000000000..168104994 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom @@ -0,0 +1,64 @@ + + + + + + + + 4.0.0 + + com.fasterxml.jackson.module + jackson-modules-java8 + 2.15.4 + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + Jackson datatype: jdk8 + bundle + Add-on module for Jackson (http://jackson.codehaus.org) to support +JDK 8 data types. + + + + + 1.8 + 1.8 + + + com/fasterxml/jackson/datatype/jdk8 + ${project.groupId}.jdk8 + + + + + + org.apache.maven.plugins + ${version.plugin.surefire} + maven-surefire-plugin + + + com/fasterxml/jackson/failing/*.java + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + + org.moditect + moditect-maven-plugin + + + + diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom.sha1 new file mode 100644 index 000000000..868e270c2 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom.sha1 @@ -0,0 +1 @@ +bc09f33be6167093fd0e5f4c09077ddbccab1ada \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/_remote.repositories new file mode 100644 index 000000000..355d2af37 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +jackson-datatype-jsr310-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom new file mode 100644 index 000000000..755df9b44 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom @@ -0,0 +1,123 @@ + + + + + + + + 4.0.0 + + com.fasterxml.jackson.module + jackson-modules-java8 + 2.15.4 + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + Jackson datatype: JSR310 + bundle + Add-on module to support JSR-310 (Java 8 Date & Time API) data types. + + + beamerblvd + Nick Williams + nicholas@nicholaswilliams.net + -6 + + + + + + -Xdoclint:none + + + com/fasterxml/jackson/datatype/jsr310 + ${project.groupId}.jsr310 + 1.8 + 1.8 + + + + + + + + com.fasterxml.jackson.core + jackson-annotations + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + [1.8,) + [ERROR] The currently supported version of Java is 1.8 or higher + + + [3.0,) + [ERROR] The currently supported version of Maven is 3.0 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.0 + true + + ${javac.src.version} + ${javac.target.version} + true + true + true + + 10000 + 10000 + + + + + + + org.moditect + moditect-maven-plugin + + + + diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom.sha1 new file mode 100644 index 000000000..61bd42688 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom.sha1 @@ -0,0 +1 @@ +92cb4d8a553bdd516b8d35f2e97b376fff96306f \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/_remote.repositories new file mode 100644 index 000000000..17af532da --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:46 EDT 2024 +jackson-base-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom b/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom new file mode 100644 index 000000000..8a57d70e5 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom @@ -0,0 +1,331 @@ + + + 4.0.0 + + com.fasterxml.jackson + jackson-bom + 2.15.4 + + jackson-base + Jackson Base + pom + Parent pom for components of Jackson dataprocessor: includes base settings as well +as consistent set of dependencies across components. NOTE: NOT to be used by components outside +of Jackson: application code should only rely on `jackson-bom` + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + 1.0.0.Final + + ${project.groupId} + ${project.artifactId} + ${project.version} + + + ${project.parent.version} + + + 2024-02-15T16:54:51Z + + + + + junit + junit + ${version.junit} + test + + + + + + + + javax.activation + javax.activation-api + ${javax.activation.version} + + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + [3.0,) + [ERROR] The currently supported version of Maven is 3.0 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + enforce-properties + validate + + + + + + + packageVersion.package + + + packageVersion.dir + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + + + false + + http://docs.oracle.com/javase/8/docs/api/ + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + + org.moditect + moditect-maven-plugin + + + add-module-infos + package + + add-module-info + + + true + + src/moditect/module-info.java + + + + + + + + 9 + + + + + de.jjohannes + gradle-module-metadata-maven-plugin + 0.4.0 + + + + gmm + + + + + + + com.fasterxml.jackson + jackson-bom + ${jackson-bom.version} + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-resource + generate-resources + + add-resource + + + + + ${project.basedir} + META-INF + + LICENSE + + + + + + + + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + + + + + maven-enforcer-plugin + + + enforce-properties + none + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + sonatype-nexus-staging + https://oss.sonatype.org/ + b34f19b9cc6224 + + + + + + + + + moditect + + + 1.9 + + + + + org.moditect + moditect-maven-plugin + + + generate-module-info + generate-sources + + generate-module-info + + + + + + ${moditect.sourceGroup} + ${moditect.sourceArtifact} + ${moditect.sourceVersion} + + + + + + + + + + + + diff --git a/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom.sha1 new file mode 100644 index 000000000..0d40ff68e --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom.sha1 @@ -0,0 +1 @@ +5d17a21a197dd7b2271db88f9094fb49f8550eab \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/_remote.repositories new file mode 100644 index 000000000..15c99ca5c --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:47 EDT 2024 +jackson-bom-2.11.0.pom>local-repo= diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom new file mode 100644 index 000000000..9271b3cb9 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom @@ -0,0 +1,310 @@ + + + 4.0.0 + + + com.fasterxml.jackson + jackson-parent + + 2.11 + + + jackson-bom + 2.11.0 + pom + + + base + + + https://github.com/FasterXML/jackson-bom + + scm:git:git@github.com:FasterXML/jackson-bom.git + scm:git:git@github.com:FasterXML/jackson-bom.git + http://github.com/FasterXML/jackson-bom + jackson-bom-2.11.0 + + + + 2.11.0 + + + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + + ${jackson.version} + ${jackson.version.module} + ${jackson.version.module} + + 1.2.0 + + + + + + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version.annotations} + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version.core} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version.databind} + + + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + ${jackson.version.dataformat} + + + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate3 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + ${jackson.version.datatype} + + + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + ${jackson.version.jaxrs} + + + + + com.fasterxml.jackson.jr + jackson-jr-all + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-objects + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-stree + ${jackson.version.jacksonjr} + + + + + com.fasterxml.jackson.module + jackson-module-afterburner + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-guice + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-kotlin + ${jackson.version.module.kotlin} + + + com.fasterxml.jackson.module + jackson-module-mrbean + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-osgi + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-parameter-names + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-paranamer + ${jackson.version.module} + + + + + + com.fasterxml.jackson.module + jackson-module-scala_2.10 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + ${jackson.version.module.scala} + + + + + + diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.lastUpdated b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.lastUpdated new file mode 100644 index 000000000..3dd7f3ce9 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:47 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139887390 +http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml.jackson\:jackson-bom\:pom\:2.11.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139887131 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139887139 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139887234 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139887339 diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.sha1 new file mode 100644 index 000000000..cf9188196 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.sha1 @@ -0,0 +1 @@ +33494ae4ec70fa17a153f42f367b36303cff71ff \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/_remote.repositories new file mode 100644 index 000000000..cfea8b003 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:49 EDT 2024 +jackson-bom-2.15.2.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom new file mode 100644 index 000000000..7f7cc1530 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom @@ -0,0 +1,441 @@ + + + 4.0.0 + + + com.fasterxml.jackson + jackson-parent + + 2.15 + + + jackson-bom + Jackson BOM + Bill of Materials pom for getting full, complete set of compatible versions +of Jackson components maintained by FasterXML.com + + 2.15.2 + pom + + + base + + + + FasterXML + http://fasterxml.com/ + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + + https://github.com/FasterXML/jackson-bom + + scm:git:git@github.com:FasterXML/jackson-bom.git + scm:git:git@github.com:FasterXML/jackson-bom.git + https://github.com/FasterXML/jackson-bom + jackson-bom-2.15.2 + + + + 2.15.2 + + + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + + ${jackson.version} + ${jackson.version.module} + ${jackson.version.module} + + 1.2.0 + + + 2023-05-30T20:28:33Z + + + + + + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version.annotations} + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version.core} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version.databind} + + + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + ${jackson.version.dataformat} + + + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + ${jackson.version.datatype} + + + + + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate6 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + ${jackson.version.datatype} + + + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + ${jackson.version.jaxrs} + + + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + ${jackson.version.jakarta.rs} + + + + + com.fasterxml.jackson.jr + jackson-jr-all + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-objects + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-stree + ${jackson.version.jacksonjr} + + + + + com.fasterxml.jackson.module + jackson-module-afterburner + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-blackbird + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-guice + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jsonSchema-jakarta + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-kotlin + ${jackson.version.module.kotlin} + + + com.fasterxml.jackson.module + jackson-module-mrbean + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-osgi + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-parameter-names + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-paranamer + ${jackson.version.module} + + + + + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_3 + ${jackson.version.module.scala} + + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom.sha1 new file mode 100644 index 000000000..7c67b3544 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom.sha1 @@ -0,0 +1 @@ +6cc5b0a22f029413cac375880d7bdcaceaac5010 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/_remote.repositories new file mode 100644 index 000000000..9cb2e1087 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:28 EDT 2024 +jackson-bom-2.15.4.pom>ohdsi= diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom new file mode 100644 index 000000000..f50068673 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom @@ -0,0 +1,441 @@ + + + 4.0.0 + + + com.fasterxml.jackson + jackson-parent + + 2.15 + + + jackson-bom + Jackson BOM + Bill of Materials pom for getting full, complete set of compatible versions +of Jackson components maintained by FasterXML.com + + 2.15.4 + pom + + + base + + + + FasterXML + http://fasterxml.com/ + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + + https://github.com/FasterXML/jackson-bom + + scm:git:git@github.com:FasterXML/jackson-bom.git + scm:git:git@github.com:FasterXML/jackson-bom.git + https://github.com/FasterXML/jackson-bom + jackson-bom-2.15.4 + + + + 2.15.4 + + + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + + ${jackson.version} + ${jackson.version.module} + ${jackson.version.module} + + 1.2.0 + + + 2024-02-15T16:54:51Z + + + + + + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version.annotations} + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version.core} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version.databind} + + + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + ${jackson.version.dataformat} + + + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + ${jackson.version.datatype} + + + + + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate6 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + ${jackson.version.datatype} + + + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + ${jackson.version.jaxrs} + + + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + ${jackson.version.jakarta.rs} + + + + + com.fasterxml.jackson.jr + jackson-jr-all + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-objects + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-stree + ${jackson.version.jacksonjr} + + + + + com.fasterxml.jackson.module + jackson-module-afterburner + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-blackbird + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-guice + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jsonSchema-jakarta + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-kotlin + ${jackson.version.module.kotlin} + + + com.fasterxml.jackson.module + jackson-module-mrbean + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-osgi + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-parameter-names + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-paranamer + ${jackson.version.module} + + + + + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_3 + ${jackson.version.module.scala} + + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.lastUpdated b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.lastUpdated new file mode 100644 index 000000000..de2f65961 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:28 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml.jackson\:jackson-bom\:pom\:2.15.4 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139807140 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139807261 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139807773 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139808011 diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.sha1 new file mode 100644 index 000000000..020720db0 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.sha1 @@ -0,0 +1 @@ +2ed3947aac4ec7d5a3b8c1c89821056a7203b09b \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/_remote.repositories new file mode 100644 index 000000000..7d0c88e8d --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:51 EDT 2024 +jackson-bom-2.16.1.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom b/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom new file mode 100644 index 000000000..0489eae93 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom @@ -0,0 +1,446 @@ + + + 4.0.0 + + + com.fasterxml.jackson + jackson-parent + + 2.16 + + + jackson-bom + Jackson BOM + Bill of Materials pom for getting full, complete set of compatible versions +of Jackson components maintained by FasterXML.com + + 2.16.1 + pom + + + base + + + + FasterXML + http://fasterxml.com/ + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + + https://github.com/FasterXML/jackson-bom + + scm:git:git@github.com:FasterXML/jackson-bom.git + scm:git:git@github.com:FasterXML/jackson-bom.git + https://github.com/FasterXML/jackson-bom + jackson-bom-2.16.1 + + + + 2.16.1 + + + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + + ${jackson.version} + ${jackson.version.module} + ${jackson.version.module} + + 1.2.0 + + + 2023-12-24T03:55:12Z + + + + + + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version.annotations} + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version.core} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version.databind} + + + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + ${jackson.version.dataformat} + + + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + ${jackson.version.datatype} + + + + + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate6 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + ${jackson.version.datatype} + + + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + ${jackson.version.jaxrs} + + + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + ${jackson.version.jakarta.rs} + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + ${jackson.version.jakarta.rs} + + + + + com.fasterxml.jackson.jr + jackson-jr-all + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-objects + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-stree + ${jackson.version.jacksonjr} + + + + + com.fasterxml.jackson.module + jackson-module-afterburner + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-android-record + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-blackbird + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-guice + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jsonSchema-jakarta + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-kotlin + ${jackson.version.module.kotlin} + + + com.fasterxml.jackson.module + jackson-module-mrbean + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-osgi + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-parameter-names + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-paranamer + ${jackson.version.module} + + + + + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_3 + ${jackson.version.module.scala} + + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom.sha1 new file mode 100644 index 000000000..f9641f2cd --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom.sha1 @@ -0,0 +1 @@ +0e56871cbeb604dfdce9ffac8ce705d049f478cf \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/_remote.repositories new file mode 100644 index 000000000..36c48ee66 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:47 EDT 2024 +jackson-parent-2.11.pom>local-repo= diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom new file mode 100644 index 000000000..842c53f75 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom @@ -0,0 +1,208 @@ + + + 4.0.0 + + + com.fasterxml + oss-parent + 38 + + + com.fasterxml.jackson + jackson-parent + 2.11 + pom + + Jackson parent poms + Parent pom for all Jackson components + http://github.com/FasterXML/ + + FasterXML + http://fasterxml.com/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + christophercurrie + Christopher Currie + + + + prb + Paul Brown + prb@fasterxml.com + + + + + scm:git:git@github.com:FasterXML/jackson-parent.git + scm:git:git@github.com:FasterXML/jackson-parent.git + http://github.com/FasterXML/jackson-parent + jackson-parent-2.11 + + + + + 1.7 + 1.7 + lines,source,vars + + + ${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in + ${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java + + + + + + junit + junit + ${version.junit} + + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + [3.3,) + [ERROR] The currently supported version of Maven is 3.3 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + ${version.plugin.replacer} + + + process-packageVersion + + replace + + + + + + ${packageVersion.template.input} + ${packageVersion.template.output} + + + @package@ + ${packageVersion.package} + + + @projectversion@ + ${project.version} + + + @projectgroupid@ + ${project.groupId} + + + @projectartifactid@ + ${project.artifactId} + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + com.google.code.maven-replacer-plugin + replacer + [${version.plugin.replacer},) + + replace + + + + + false + + + + + + + + + + + + diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.lastUpdated b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.lastUpdated new file mode 100644 index 000000000..8a97cff23 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:47 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139887743 +http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml.jackson\:jackson-parent\:pom\:2.11 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139887486 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139887494 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139887594 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139887694 diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.sha1 new file mode 100644 index 000000000..f86c73261 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.sha1 @@ -0,0 +1 @@ +89f0f8a7f21a54125e0ae1f72e6cdd50b51c87f3 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/_remote.repositories new file mode 100644 index 000000000..325f675b7 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:28 EDT 2024 +jackson-parent-2.15.pom>ohdsi= diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom new file mode 100644 index 000000000..51cb2dbf0 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom @@ -0,0 +1,169 @@ + + + 4.0.0 + + + com.fasterxml + oss-parent + 50 + + + com.fasterxml.jackson + jackson-parent + 2.15 + pom + + Jackson parent poms + Parent pom for all Jackson components + http://github.com/FasterXML/ + + FasterXML + http://fasterxml.com/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + + + scm:git:git@github.com:FasterXML/jackson-parent.git + scm:git:git@github.com:FasterXML/jackson-parent.git + http://github.com/FasterXML/jackson-parent + jackson-parent-2.15 + + + + + + 1.8 + 1.8 + ${javac.src.version} + ${javac.target.version} + + lines,source,vars + + + ${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in + ${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java + + 2023-04-23T20:09:36Z + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + [3.6,) + [ERROR] The currently supported version of Maven is 3.6 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + ${version.plugin.replacer} + + + process-packageVersion + + replace + + + + + + ${packageVersion.template.input} + ${packageVersion.template.output} + + + @package@ + ${packageVersion.package} + + + @projectversion@ + ${project.version} + + + @projectgroupid@ + ${project.groupId} + + + @projectartifactid@ + ${project.artifactId} + + + + + + + + + diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.lastUpdated b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.lastUpdated new file mode 100644 index 000000000..3387b7577 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:28 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml.jackson\:jackson-parent\:pom\:2.15 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139808019 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139808126 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139808245 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139808370 diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.sha1 new file mode 100644 index 000000000..2f7d82b14 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.sha1 @@ -0,0 +1 @@ +caffbeb9be9350780ad5407789f43664906042ec \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/_remote.repositories new file mode 100644 index 000000000..64eb65227 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:51 EDT 2024 +jackson-parent-2.16.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom b/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom new file mode 100644 index 000000000..46dd7b6a0 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom @@ -0,0 +1,169 @@ + + + 4.0.0 + + + com.fasterxml + oss-parent + 56 + + + com.fasterxml.jackson + jackson-parent + 2.16 + pom + + Jackson parent poms + Parent pom for all Jackson components + http://github.com/FasterXML/ + + FasterXML + http://fasterxml.com/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + + + scm:git:git@github.com:FasterXML/jackson-parent.git + scm:git:git@github.com:FasterXML/jackson-parent.git + http://github.com/FasterXML/jackson-parent + jackson-parent-2.16 + + + + + + 1.8 + 1.8 + ${javac.src.version} + ${javac.target.version} + + lines,source,vars + + + ${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in + ${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java + + 2023-11-15T19:21:06Z + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + [3.6,) + [ERROR] The currently supported version of Maven is 3.6 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + ${version.plugin.replacer} + + + process-packageVersion + + replace + + + + + + ${packageVersion.template.input} + ${packageVersion.template.output} + + + @package@ + ${packageVersion.package} + + + @projectversion@ + ${project.version} + + + @projectgroupid@ + ${project.groupId} + + + @projectartifactid@ + ${project.artifactId} + + + + + + + + + diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom.sha1 new file mode 100644 index 000000000..d07a742d6 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom.sha1 @@ -0,0 +1 @@ +712d723d9a99b84ce364361e155857377c16de96 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/_remote.repositories new file mode 100644 index 000000000..db08e9699 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +jackson-module-jakarta-xmlbind-annotations-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom b/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom new file mode 100644 index 000000000..5382f7d0d --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom @@ -0,0 +1,93 @@ + + + + + + + + 4.0.0 + + com.fasterxml.jackson.module + jackson-modules-base + 2.15.4 + + jackson-module-jakarta-xmlbind-annotations + Jackson module: Jakarta XML Bind Annotations (jakarta.xml.bind) + bundle + + Support for using Jakarta XML Bind (aka JAXB 3.0) annotations as an alternative + to "native" Jackson annotations, for configuring data-binding. + + https://github.com/FasterXML/jackson-modules-base + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + com/fasterxml/jackson/module/jakarta/xmlbind + ${project.groupId}.jakarta.xmlbind + + javax.activation;resolution:=optional,* + + 3.0.1 + + + + + com.fasterxml.jackson.core + jackson-annotations + + + com.fasterxml.jackson.core + jackson-core + + + com.fasterxml.jackson.core + jackson-databind + + + + + jakarta.xml.bind + jakarta.xml.bind-api + ${version.xmlbind.api} + + + + jakarta.activation + jakarta.activation-api + 2.1.0 + + + + + org.glassfish.jaxb + jaxb-runtime + ${version.xmlbind.api} + test + + + + + + + + com.google.code.maven-replacer-plugin + replacer + + + org.moditect + moditect-maven-plugin + + + + + diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom.sha1 new file mode 100644 index 000000000..6580e15ea --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom.sha1 @@ -0,0 +1 @@ +e2983636e3d8e5ac6eb68cd01ea550a6e65595ce \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/_remote.repositories new file mode 100644 index 000000000..4015544c4 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +jackson-module-parameter-names-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom b/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom new file mode 100644 index 000000000..0c1caab83 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom @@ -0,0 +1,117 @@ + + + + + + + + 4.0.0 + + com.fasterxml.jackson.module + jackson-modules-java8 + 2.15.4 + + jackson-module-parameter-names + Jackson-module-parameter-names + bundle + Add-on module for Jackson (http://jackson.codehaus.org) to support +introspection of method/constructor parameter names, without having to add explicit property name annotation. + + + + + 1.8 + 1.8 + + com/fasterxml/jackson/module/paramnames + ${project.groupId}.paramnames + + 3.8.0 + 4.5.0 + + + + + org.assertj + assertj-core + ${assertj-core.version} + test + + + org.mockito + mockito-core + ${mockito-core.version} + test + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + [1.8,) + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.2 + true + + ${javac.src.version} + ${javac.target.version} + true + true + true + + -Xlint + -parameters + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.surefire} + + + ${packageVersion.dir}/failing/*.java + + + + + + org.moditect + moditect-maven-plugin + + + + diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom.sha1 new file mode 100644 index 000000000..7d0ba890f --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom.sha1 @@ -0,0 +1 @@ +c5a8decdd8e47454120ed4180d72a1f1ebb2a329 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/_remote.repositories new file mode 100644 index 000000000..e39d1e54c --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +jackson-modules-base-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom b/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom new file mode 100644 index 000000000..7c7754c30 --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom @@ -0,0 +1,115 @@ + + 4.0.0 + + com.fasterxml.jackson + jackson-base + 2.15.4 + + com.fasterxml.jackson.module + jackson-modules-base + Jackson modules: Base + 2.15.4 + pom + Parent pom for Jackson "base" modules: modules that build directly on databind, and are +not datatype, data format, or JAX-RS provider modules. + + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + afterburner + blackbird + guice + jakarta-xmlbind + jaxb + mrbean + osgi + paranamer + + no-ctor-deser + + + https://github.com/FasterXML/jackson-modules-base + + scm:git:git@github.com:FasterXML/jackson-modules-base.git + scm:git:git@github.com:FasterXML/jackson-modules-base.git + https://github.com/FasterXML/jackson-modules-base + jackson-modules-base-2.15.4 + + + https://github.com/FasterXML/jackson-modules-base/issues + + + + UTF-8 + + + + 9.5 + + + + + + + org.ow2.asm + asm + ${version.asm} + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + com/fasterxml/jackson/**/failing/*.java + + + + + + + + + de.jjohannes + gradle-module-metadata-maven-plugin + + + + + diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom.sha1 new file mode 100644 index 000000000..22f4ce86e --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom.sha1 @@ -0,0 +1 @@ +52c35ee2989bab5f60186b12d3bd833599e17948 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/_remote.repositories new file mode 100644 index 000000000..a2e04a85e --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:51 EDT 2024 +jackson-modules-java8-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom b/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom new file mode 100644 index 000000000..03d6dfa3a --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom @@ -0,0 +1,92 @@ + + 4.0.0 + + com.fasterxml.jackson + jackson-base + 2.15.4 + + com.fasterxml.jackson.module + jackson-modules-java8 + Jackson modules: Java 8 + 2.15.4 + pom + Parent pom for Jackson modules needed to support Java 8 features and types + + + + parameter-names + datatypes + datetime + + + https://github.com/FasterXML/jackson-modules-java8 + + scm:git:git@github.com:FasterXML/jackson-modules-java8.git + scm:git:git@github.com:FasterXML/jackson-modules-java8.git + http://github.com/FasterXML/jackson-modules-java8 + jackson-modules-java8-2.15.4 + + + https://github.com/FasterXML/jackson-modules-java8/issues + + + + + com.fasterxml.jackson.core + jackson-core + + + com.fasterxml.jackson.core + jackson-databind + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + com/fasterxml/jackson/**/failing/*.java + + + + + + + + + + de.jjohannes + gradle-module-metadata-maven-plugin + + + + + diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom.sha1 new file mode 100644 index 000000000..2062808ad --- /dev/null +++ b/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom.sha1 @@ -0,0 +1 @@ +030e6e7879efe2082eebf3d88edd4559872385cb \ No newline at end of file diff --git a/code/arachne/com/fasterxml/oss-parent/38/_remote.repositories b/code/arachne/com/fasterxml/oss-parent/38/_remote.repositories new file mode 100644 index 000000000..221ffdf89 --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/38/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:48 EDT 2024 +oss-parent-38.pom>local-repo= diff --git a/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom b/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom new file mode 100644 index 000000000..fe1baf05c --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom @@ -0,0 +1,642 @@ + + + + 4.0.0 + + com.fasterxml + oss-parent + 38 + pom + + FasterXML.com parent pom + FasterXML.com parent pom + http://github.com/FasterXML/ + + FasterXML + http://fasterxml.com/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + + + scm:git:git@github.com:FasterXML/oss-parent.git + scm:git:git@github.com:FasterXML/oss-parent.git + http://github.com/FasterXML/oss-parent + oss-parent-38 + + + GitHub Issue Management + https://github.com/FasterXML/${project.artifactId}/issues + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + UTF-8 + UTF-8 + UTF-8 + + ${project.build.directory}/generated-sources + + 1g + + + 1.6 + 1.6 + + + lines,source,vars + yyyy-MM-dd HH:mm:ssZ + + ${project.groupId}.*;version=${project.version} + * + + + + ${range;[===,=+);${@}} + {maven-resources} + + + + + + + 4.2.0 + + 2.6.1 + 2.7 + + + 3.8.0 + 3.0.0-M1 + + 1.6 + + + 3.0.0-M1 + + 3.0.0-M1 + 3.1.2 + + + 3.0.1 + + + 1.0.0.Beta2 + + 2.5.3 + 1.5.3 + 2.7 + + + 3.2.1 + 3.1 + + + 3.0.1 + + + + 2.22.2 + + + 4.12 + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.7 + + + org.apache.maven.plugins + maven-clean-plugin + ${version.plugin.clean} + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.plugin.deploy} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.plugin.gpg} + + + org.apache.maven.plugins + maven-install-plugin + ${version.plugin.install} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + + + org.moditect + moditect-maven-plugin + ${version.plugin.moditect} + + + + + com.google.code.maven-replacer-plugin + replacer + + ${version.plugin.replacer} + + + org.apache.maven.plugins + maven-resources-plugin + ${version.plugin.resources} + + + + org.apache.maven.plugins + maven-shade-plugin + ${version.plugin.shade} + + + org.apache.maven.plugins + maven-site-plugin + ${version.plugin.site} + + + org.codehaus.mojo + cobertura-maven-plugin + ${version.plugin.cobertura} + + + + org.apache.felix + maven-bundle-plugin + ${version.plugin.bundle} + + + + + + + <_removeheaders>Include-Resource,JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME + <_versionpolicy>${osgi.versionpolicy} + ${project.name} + ${project.groupId}.${project.artifactId} + ${project.description} + ${osgi.export} + ${osgi.private} + ${osgi.import} + ${osgi.dynamicImport} + ${osgi.includeResource} + ${project.url} + ${osgi.requiredExecutionEnvironment} + + ${maven.build.timestamp} + ${javac.src.version} + ${javac.target.version} + + ${project.name} + ${project.version} + ${project.groupId} + ${project.organization.name} + + ${project.name} + ${project.version} + ${project.organization.name} + + ${osgi.mainClass} + + + + + + + + org.apache.maven.plugins + maven-release-plugin + ${version.plugin.release} + + forked-path + false + -Prelease + + + + org.sonatype.plugins + nexus-maven-plugin + 2.1 + + https://oss.sonatype.org/ + sonatype-nexus-staging + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${version.plugin.enforcer} + + + enforce-java + validate + + enforce + + + + + + [1.6,) + [ERROR] The currently supported version of Java is 1.6 or higher + + + [3.0,) + [ERROR] The currently supported version of Maven is 3.0 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.plugin.compiler} + + + + org.ow2.asm + asm + 7.0 + + + + ${javac.src.version} + ${javac.target.version} + true + true + true + + true + ${javac.debuglevel} + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-generated-sources + generate-sources + + add-source + + + + ${generatedSourcesDir} + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.surefire} + + + + org.apache.felix + maven-bundle-plugin + ${version.plugin.bundle} + true + + + + org.apache.maven.plugins + maven-jar-plugin + ${version.plugin.jar} + + + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.1 + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.9.1 + + + + + + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.9.1 + + + + org.apache.maven.scm + maven-scm-manager-plexus + 1.9.1 + + + + + org.kathrynhuxtable.maven.wagon + wagon-gitsite + 0.3.1 + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + ${sun.boot.class.path} + com.google.doclava.Doclava + false + -J-Xmx1024m + ${javadoc.maxmemory} + + http://docs.oracle.com/javase/7/docs/api/ + + + com.google.doclava + doclava + 1.0.3 + + + -hdf project.name "${project.name}" + -d ${project.reporting.outputDirectory}/apidocs + + + + + default + + javadoc + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.5 + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.3 + + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0 + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.plugin.surefire} + + + + org.apache.maven.plugins + maven-pmd-plugin + 2.7.1 + + true + 100 + 1.5 + + + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + + + Todo Work + + + TODO + ignoreCase + + + FIXME + ignoreCase + + + + + + + + + + + + + release + + + + org.apache.maven.plugins + maven-source-plugin + ${version.plugin.source} + + + attach-sources + + jar-no-fork + + + + + true + true + + + ${maven.build.timestamp} + ${javac.src.version} + ${javac.target.version} + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + + attach-javadocs + + jar + + + true + + + true + true + + + ${maven.build.timestamp} + ${javac.src.version} + ${javac.target.version} + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.lastUpdated b/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.lastUpdated new file mode 100644 index 000000000..8bf67a564 --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:48 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139888108 +http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml\:oss-parent\:pom\:38 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139887848 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139887854 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139887953 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139888079 diff --git a/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.sha1 b/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.sha1 new file mode 100644 index 000000000..c0158fd84 --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.sha1 @@ -0,0 +1 @@ +ff6b9e9e40c23235f87a44b463995b47adca8dc9 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/oss-parent/50/_remote.repositories b/code/arachne/com/fasterxml/oss-parent/50/_remote.repositories new file mode 100644 index 000000000..139571df5 --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/50/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:28 EDT 2024 +oss-parent-50.pom>ohdsi= diff --git a/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom b/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom new file mode 100644 index 000000000..1a14a57a8 --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom @@ -0,0 +1,665 @@ + + + + 4.0.0 + + com.fasterxml + oss-parent + 50 + pom + + FasterXML.com parent pom + FasterXML.com parent pom + http://github.com/FasterXML/ + + FasterXML + http://fasterxml.com/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + + + scm:git:git@github.com:FasterXML/oss-parent.git + scm:git:git@github.com:FasterXML/oss-parent.git + http://github.com/FasterXML/oss-parent + oss-parent-50 + + + GitHub Issue Management + https://github.com/FasterXML/${project.artifactId}/issues + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + UTF-8 + UTF-8 + UTF-8 + + 2023-03-05T04:38:31Z + + ${project.build.directory}/generated-sources + + 1g + + + 1.6 + 1.6 + + + lines,source,vars + yyyy-MM-dd HH:mm:ssZ + + ${project.groupId}.*;version=${project.version} + * + + + + ${range;[===,=+);${@}} + {maven-resources} + + + + + + + 5.1.8 + + 3.2.0 + 2.7 + + + 3.10.1 + 3.1.0 + + + 3.2.1 + 3.0.1 + + 3.1.0 + 0.8.8 + 3.3.0 + + 3.5.0 + + + 1.0.0.RC2 + + 3.0.0-M7 + 1.5.3 + 3.3.0 + + 3.4.1 + 3.12.1 + + 3.2.1 + + 3.0.0-M9 + + 3.1.1 + + + + + 4.13.2 + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-clean-plugin + ${version.plugin.clean} + + + org.apache.maven.plugins + maven-dependency-plugin + 3.5.0 + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.plugin.deploy} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.plugin.gpg} + + + org.apache.maven.plugins + maven-install-plugin + ${version.plugin.install} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + + org.apache.maven.plugins + maven-resources-plugin + ${version.plugin.resources} + + + + org.apache.maven.plugins + maven-shade-plugin + ${version.plugin.shade} + + + org.apache.maven.plugins + maven-site-plugin + ${version.plugin.site} + + + org.apache.maven.plugins + maven-source-plugin + ${version.plugin.source} + + + org.apache.maven.plugins + maven-wrapper-plugin + ${version.plugin.wrapper} + + + + + org.moditect + moditect-maven-plugin + ${version.plugin.moditect} + + + + + com.google.code.maven-replacer-plugin + replacer + + ${version.plugin.replacer} + + + org.codehaus.mojo + cobertura-maven-plugin + ${version.plugin.cobertura} + + + + org.apache.felix + maven-bundle-plugin + ${version.plugin.bundle} + + + + + + + <_removeheaders>Include-Resource,JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME + <_versionpolicy>${osgi.versionpolicy} + ${project.name} + ${project.groupId}.${project.artifactId} + ${project.description} + ${osgi.export} + ${osgi.private} + ${osgi.import} + ${osgi.dynamicImport} + ${osgi.includeResource} + ${project.url} + ${osgi.requiredExecutionEnvironment} + + ${javac.src.version} + ${javac.target.version} + + ${project.name} + ${project.version} + ${project.groupId} + ${project.organization.name} + + ${project.name} + ${project.version} + ${project.organization.name} + + ${osgi.mainClass} + + + + + + + + org.apache.maven.plugins + maven-release-plugin + ${version.plugin.release} + + forked-path + false + -Prelease + + + + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-generated-sources + generate-sources + + add-source + + + + ${generatedSourcesDir} + + + + + + + + org.jacoco + jacoco-maven-plugin + ${version.plugin.jacoco} + + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.plugin.compiler} + + + + org.ow2.asm + asm + 9.4 + + + + ${javac.src.version} + ${javac.target.version} + true + true + true + + true + ${javac.debuglevel} + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${version.plugin.enforcer} + + + enforce-java + validate + + enforce + + + + + + [1.6,) + [ERROR] The currently supported version of Java is 1.6 or higher + + + [3.0,) + [ERROR] The currently supported version of Maven is 3.0 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + + org.apache.maven.plugins + maven-jar-plugin + ${version.plugin.jar} + + + + org.apache.maven.plugins + maven-scm-plugin + 1.13.0 + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.13.0 + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.surefire} + + + + + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.13.0 + + + + org.apache.maven.scm + maven-scm-manager-plexus + 1.13.0 + + + + + org.kathrynhuxtable.maven.wagon + wagon-gitsite + 0.3.1 + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + ${sun.boot.class.path} + com.google.doclava.Doclava + false + -J-Xmx1024m + ${javadoc.maxmemory} + + http://docs.oracle.com/javase/8/docs/api/ + + + com.google.doclava + doclava + 1.0.3 + + + -hdf project.name "${project.name}" + -d ${project.reporting.outputDirectory}/apidocs + + + + + default + + javadoc + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.4.2 + + + + org.apache.maven.plugins + maven-jxr-plugin + 3.3.0 + + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0 + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.plugin.surefire} + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.20.0 + + true + 100 + 1.5 + + + + + org.codehaus.mojo + taglist-maven-plugin + 3.0.0 + + + + + Todo Work + + + TODO + ignoreCase + + + FIXME + ignoreCase + + + + + + + + + + + + + release + + + + org.apache.maven.plugins + maven-source-plugin + ${version.plugin.source} + + + attach-sources + + jar-no-fork + + + + + true + true + + + ${javac.src.version} + ${javac.target.version} + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + + attach-javadocs + + jar + + + true + + + true + true + + + ${javac.src.version} + ${javac.target.version} + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.lastUpdated b/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.lastUpdated new file mode 100644 index 000000000..18906fd0e --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:28 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml\:oss-parent\:pom\:50 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139808381 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139808500 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139808621 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139808798 diff --git a/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.sha1 b/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.sha1 new file mode 100644 index 000000000..10f9f2c3d --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.sha1 @@ -0,0 +1 @@ +2e5ec5928fa4a136254d3dfeb8c56f47b049d8ed \ No newline at end of file diff --git a/code/arachne/com/fasterxml/oss-parent/55/_remote.repositories b/code/arachne/com/fasterxml/oss-parent/55/_remote.repositories new file mode 100644 index 000000000..1b743f48a --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/55/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:57 EDT 2024 +oss-parent-55.pom>central= diff --git a/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom b/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom new file mode 100644 index 000000000..452755230 --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom @@ -0,0 +1,658 @@ + + + + 4.0.0 + + com.fasterxml + oss-parent + 55 + pom + + FasterXML.com parent pom + FasterXML.com parent pom + http://github.com/FasterXML/ + + FasterXML + http://fasterxml.com/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + + + scm:git:git@github.com:FasterXML/oss-parent.git + scm:git:git@github.com:FasterXML/oss-parent.git + http://github.com/FasterXML/oss-parent + oss-parent-55 + + + GitHub Issue Management + https://github.com/FasterXML/${project.artifactId}/issues + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + UTF-8 + UTF-8 + UTF-8 + + 2023-09-26T22:48:41Z + + ${project.build.directory}/generated-sources + + 1g + + + 1.6 + 1.6 + + + lines,source,vars + yyyy-MM-dd HH:mm:ssZ + + ${project.groupId}.*;version=${project.version} + * + + + + ${range;[===,=+);${@}} + {maven-resources} + + + + + + 5.1.9 + + 3.3.1 + 3.6.0 + 2.7 + 3.11.0 + 3.1.1 + 3.4.1 + 3.1.0 + + 3.1.1 + 0.8.10 + 3.3.0 + + 3.6.0 + + + 1.0.0.Final + + 3.21.0 + 3.0.1 + 1.5.3 + 3.3.1 + + 2.0.1 + 3.5.1 + 4.0.0-M9 + + 3.3.0 + + 3.1.2 + + 3.2.0 + + + + + 4.13.2 + + 3.24.2 + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.4.0 + + + org.apache.maven.plugins + maven-clean-plugin + ${version.plugin.clean} + + + org.apache.maven.plugins + maven-dependency-plugin + ${version.plugin.dependency} + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.plugin.deploy} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.plugin.gpg} + + + org.apache.maven.plugins + maven-install-plugin + ${version.plugin.install} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + + org.apache.maven.plugins + maven-resources-plugin + ${version.plugin.resources} + + + + org.apache.maven.plugins + maven-shade-plugin + ${version.plugin.shade} + + + org.apache.maven.plugins + maven-site-plugin + ${version.plugin.site} + + + org.apache.maven.plugins + maven-source-plugin + ${version.plugin.source} + + + org.apache.maven.plugins + maven-wrapper-plugin + ${version.plugin.wrapper} + + + + + org.moditect + moditect-maven-plugin + ${version.plugin.moditect} + + + + + com.google.code.maven-replacer-plugin + replacer + + ${version.plugin.replacer} + + + org.codehaus.mojo + cobertura-maven-plugin + ${version.plugin.cobertura} + + + + org.apache.felix + maven-bundle-plugin + ${version.plugin.bundle} + + + + + + + <_removeheaders>Include-Resource,JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME + <_versionpolicy>${osgi.versionpolicy} + ${project.name} + ${project.groupId}.${project.artifactId} + ${project.description} + ${osgi.export} + ${osgi.private} + ${osgi.import} + ${osgi.dynamicImport} + ${osgi.includeResource} + ${project.url} + ${osgi.requiredExecutionEnvironment} + + ${javac.src.version} + ${javac.target.version} + + ${project.name} + ${project.version} + ${project.groupId} + ${project.organization.name} + + ${project.name} + ${project.version} + ${project.organization.name} + + ${osgi.mainClass} + + + + + + + + org.apache.maven.plugins + maven-release-plugin + ${version.plugin.release} + + forked-path + false + -Prelease + + + + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-generated-sources + generate-sources + + add-source + + + + ${generatedSourcesDir} + + + + + + + + org.jacoco + jacoco-maven-plugin + ${version.plugin.jacoco} + + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.plugin.compiler} + + + + org.ow2.asm + asm + 9.5 + + + + ${javac.src.version} + ${javac.target.version} + true + true + + true + ${javac.debuglevel} + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${version.plugin.enforcer} + + + enforce-java + validate + + enforce + + + + + + [1.6,) + [ERROR] The currently supported version of Java is 1.6 or higher + + + [3.0,) + [ERROR] The currently supported version of Maven is 3.0 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + + org.apache.maven.plugins + maven-jar-plugin + ${version.plugin.jar} + + + + org.apache.maven.plugins + maven-scm-plugin + ${version.plugin.scm} + + + org.apache.maven.scm + maven-scm-provider-gitexe + ${version.plugin.scm} + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.surefire} + + + + + + + org.apache.maven.scm + maven-scm-provider-gitexe + ${version.plugin.scm} + + + + org.apache.maven.scm + maven-scm-manager-plexus + ${version.plugin.scm} + + + + + org.kathrynhuxtable.maven.wagon + wagon-gitsite + 0.3.1 + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + ${sun.boot.class.path} + com.google.doclava.Doclava + false + -J-Xmx1024m + ${javadoc.maxmemory} + + http://docs.oracle.com/javase/8/docs/api/ + + + com.google.doclava + doclava + 1.0.3 + + + -hdf project.name "${project.name}" + -d ${project.reporting.outputDirectory}/apidocs + + + + + default + + javadoc + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.4.5 + + + + org.apache.maven.plugins + maven-jxr-plugin + 3.3.0 + + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0 + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.plugin.surefire} + + + + org.apache.maven.plugins + maven-pmd-plugin + ${version.plugin.pmd} + + true + 100 + 1.5 + + + + + org.codehaus.mojo + taglist-maven-plugin + 3.0.0 + + + + + Todo Work + + + TODO + ignoreCase + + + FIXME + ignoreCase + + + + + + + + + + + + + release + + + + org.apache.maven.plugins + maven-source-plugin + ${version.plugin.source} + + + attach-sources + + jar-no-fork + + + + + true + true + + + ${javac.src.version} + ${javac.target.version} + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + + attach-javadocs + + jar + + + true + + + true + true + + + ${javac.src.version} + ${javac.target.version} + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom.sha1 b/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom.sha1 new file mode 100644 index 000000000..72f9549f1 --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom.sha1 @@ -0,0 +1 @@ +24ad110e0e507856ae662736d6c6ef5b101a1689 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/oss-parent/56/_remote.repositories b/code/arachne/com/fasterxml/oss-parent/56/_remote.repositories new file mode 100644 index 000000000..9ccb9324a --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/56/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:51 EDT 2024 +oss-parent-56.pom>central= diff --git a/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom b/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom new file mode 100644 index 000000000..39d67a520 --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom @@ -0,0 +1,658 @@ + + + + 4.0.0 + + com.fasterxml + oss-parent + 56 + pom + + FasterXML.com parent pom + FasterXML.com parent pom + http://github.com/FasterXML/ + + FasterXML + http://fasterxml.com/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + + + scm:git:git@github.com:FasterXML/oss-parent.git + scm:git:git@github.com:FasterXML/oss-parent.git + http://github.com/FasterXML/oss-parent + oss-parent-56 + + + GitHub Issue Management + https://github.com/FasterXML/${project.artifactId}/issues + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + UTF-8 + UTF-8 + UTF-8 + + 2023-11-07T02:34:42Z + + ${project.build.directory}/generated-sources + + 1g + + + 1.6 + 1.6 + + + lines,source,vars + yyyy-MM-dd HH:mm:ssZ + + ${project.groupId}.*;version=${project.version} + * + + + + ${range;[===,=+);${@}} + {maven-resources} + + + + + + 5.1.9 + + 3.3.2 + 3.6.1 + 2.7 + 3.11.0 + 3.1.1 + 3.4.1 + 3.1.0 + + 3.1.1 + 0.8.10 + 3.3.0 + + 3.6.0 + + + 1.1.0 + + 3.21.2 + 3.0.1 + 1.5.3 + 3.3.1 + + 2.0.1 + 3.5.1 + 4.0.0-M11 + + 3.3.0 + + 3.2.1 + + 3.2.0 + + + + + 4.13.2 + + 3.24.2 + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.4.0 + + + org.apache.maven.plugins + maven-clean-plugin + ${version.plugin.clean} + + + org.apache.maven.plugins + maven-dependency-plugin + ${version.plugin.dependency} + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.plugin.deploy} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.plugin.gpg} + + + org.apache.maven.plugins + maven-install-plugin + ${version.plugin.install} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + + org.apache.maven.plugins + maven-resources-plugin + ${version.plugin.resources} + + + + org.apache.maven.plugins + maven-shade-plugin + ${version.plugin.shade} + + + org.apache.maven.plugins + maven-site-plugin + ${version.plugin.site} + + + org.apache.maven.plugins + maven-source-plugin + ${version.plugin.source} + + + org.apache.maven.plugins + maven-wrapper-plugin + ${version.plugin.wrapper} + + + + + org.moditect + moditect-maven-plugin + ${version.plugin.moditect} + + + + + com.google.code.maven-replacer-plugin + replacer + + ${version.plugin.replacer} + + + org.codehaus.mojo + cobertura-maven-plugin + ${version.plugin.cobertura} + + + + org.apache.felix + maven-bundle-plugin + ${version.plugin.bundle} + + + + + + + <_removeheaders>Include-Resource,JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME + <_versionpolicy>${osgi.versionpolicy} + ${project.name} + ${project.groupId}.${project.artifactId} + ${project.description} + ${osgi.export} + ${osgi.private} + ${osgi.import} + ${osgi.dynamicImport} + ${osgi.includeResource} + ${project.url} + ${osgi.requiredExecutionEnvironment} + + ${javac.src.version} + ${javac.target.version} + + ${project.name} + ${project.version} + ${project.groupId} + ${project.organization.name} + + ${project.name} + ${project.version} + ${project.organization.name} + + ${osgi.mainClass} + + + + + + + + org.apache.maven.plugins + maven-release-plugin + ${version.plugin.release} + + forked-path + false + -Prelease + + + + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-generated-sources + generate-sources + + add-source + + + + ${generatedSourcesDir} + + + + + + + + org.jacoco + jacoco-maven-plugin + ${version.plugin.jacoco} + + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.plugin.compiler} + + + + org.ow2.asm + asm + 9.6 + + + + ${javac.src.version} + ${javac.target.version} + true + true + + true + ${javac.debuglevel} + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${version.plugin.enforcer} + + + enforce-java + validate + + enforce + + + + + + [1.6,) + [ERROR] The currently supported version of Java is 1.6 or higher + + + [3.0,) + [ERROR] The currently supported version of Maven is 3.0 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + + org.apache.maven.plugins + maven-jar-plugin + ${version.plugin.jar} + + + + org.apache.maven.plugins + maven-scm-plugin + ${version.plugin.scm} + + + org.apache.maven.scm + maven-scm-provider-gitexe + ${version.plugin.scm} + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.surefire} + + + + + + + org.apache.maven.scm + maven-scm-provider-gitexe + ${version.plugin.scm} + + + + org.apache.maven.scm + maven-scm-manager-plexus + ${version.plugin.scm} + + + + + org.kathrynhuxtable.maven.wagon + wagon-gitsite + 0.3.1 + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + ${sun.boot.class.path} + com.google.doclava.Doclava + false + -J-Xmx1024m + ${javadoc.maxmemory} + + http://docs.oracle.com/javase/8/docs/api/ + + + com.google.doclava + doclava + 1.0.3 + + + -hdf project.name "${project.name}" + -d ${project.reporting.outputDirectory}/apidocs + + + + + default + + javadoc + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.4.5 + + + + org.apache.maven.plugins + maven-jxr-plugin + 3.3.1 + + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0 + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.plugin.surefire} + + + + org.apache.maven.plugins + maven-pmd-plugin + ${version.plugin.pmd} + + true + 100 + 1.5 + + + + + org.codehaus.mojo + taglist-maven-plugin + 3.0.0 + + + + + Todo Work + + + TODO + ignoreCase + + + FIXME + ignoreCase + + + + + + + + + + + + + release + + + + org.apache.maven.plugins + maven-source-plugin + ${version.plugin.source} + + + attach-sources + + jar-no-fork + + + + + true + true + + + ${javac.src.version} + ${javac.target.version} + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + + attach-javadocs + + jar + + + true + + + true + true + + + ${javac.src.version} + ${javac.target.version} + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom.sha1 b/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom.sha1 new file mode 100644 index 000000000..b95b42274 --- /dev/null +++ b/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom.sha1 @@ -0,0 +1 @@ +355a98a7c92b8dd838bf0b32b04fd991bec14570 \ No newline at end of file diff --git a/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/_remote.repositories b/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/_remote.repositories new file mode 100644 index 000000000..606edb3a8 --- /dev/null +++ b/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:22 EDT 2024 +caffeine-3.1.8.pom>central= diff --git a/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom b/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom new file mode 100644 index 000000000..3823db33b --- /dev/null +++ b/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom @@ -0,0 +1,54 @@ + + + + + + + + 4.0.0 + com.github.ben-manes.caffeine + caffeine + 3.1.8 + Caffeine cache + A high performance caching library + https://github.com/ben-manes/caffeine + 2014 + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + ben-manes + Ben Manes + ben.manes@gmail.com + + owner + developer + + + + + scm:git:https://github.com/ben-manes/caffeine.git + scm:git:ssh://git@github.com/ben-manes/caffeine.git + https://github.com/ben-manes/caffeine + + + + org.checkerframework + checker-qual + 3.37.0 + compile + + + com.google.errorprone + error_prone_annotations + 2.21.1 + compile + + + diff --git a/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom.sha1 b/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom.sha1 new file mode 100644 index 000000000..7d9492dfb --- /dev/null +++ b/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom.sha1 @@ -0,0 +1 @@ +5ae9f193f45f0eb867d52ae3347637b38534a0ef \ No newline at end of file diff --git a/code/arachne/com/github/docker-java/docker-java-api/3.3.6/_remote.repositories b/code/arachne/com/github/docker-java/docker-java-api/3.3.6/_remote.repositories new file mode 100644 index 000000000..dd7f29512 --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-api/3.3.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:13 EDT 2024 +docker-java-api-3.3.6.pom>central= diff --git a/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom b/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom new file mode 100644 index 000000000..16cd32758 --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom @@ -0,0 +1,90 @@ + + 4.0.0 + + + com.github.docker-java + docker-java-parent + 3.3.6 + ../pom.xml + + + docker-java-api + jar + + docker-java-api + https://github.com/docker-java/docker-java + Java API Client for Docker + + + com.github.dockerjava.api + + + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version} + + + + org.slf4j + slf4j-api + ${slf4j-api.version} + + + + com.google.code.findbugs + annotations + 3.0.1u2 + provided + + + + org.projectlombok + lombok + 1.18.30 + provided + + + + + org.junit.jupiter + junit-jupiter + 5.10.0 + test + + + + com.tngtech.archunit + archunit-junit5 + 0.18.0 + test + + + + com.tngtech.archunit + archunit + 0.18.0 + test + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + com.github.dockerjava.api.* + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + diff --git a/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom.sha1 b/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom.sha1 new file mode 100644 index 000000000..dfb3a6f4f --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom.sha1 @@ -0,0 +1 @@ +ea55cdb21d2bc1001f01a3ce05eb68a1d1ec72a0 \ No newline at end of file diff --git a/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/_remote.repositories b/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/_remote.repositories new file mode 100644 index 000000000..5c42ee79a --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:13 EDT 2024 +docker-java-parent-3.3.6.pom>central= diff --git a/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom b/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom new file mode 100644 index 000000000..7f5226e45 --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom @@ -0,0 +1,363 @@ + + 4.0.0 + + com.github.docker-java + docker-java-parent + pom + 3.3.6 + + docker-java-parent + https://github.com/docker-java/docker-java + Java API Client for Docker + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:git@github.com:docker-java/docker-java.git + git@github.com:docker-java/docker-java.git + scm:git:git@github.com:docker-java/docker-java.git + HEAD + + + + + marcuslinke + Marcus Linke + marcus.linke@gmx.de + + + kostyasha + Kanstantsin Shautsou + kanstantsin.sha@gmail.com + + + kpelykh + Konstantin Pelykh + kpelykh@gmail.com + + + bsideup + Sergei Egorov + bsideup@gmail.com + + + + + UTF-8 + UTF-8 + true + false + 1.8 + 1.8 + + 2.30.1 + 2.10.3 + 2.10.3 + 4.5.12 + 1.21 + 2.13.0 + 3.12.0 + 1.7.30 + + 1.76 + 2.6.1 + 19.0 + + + 1.2.3 + 4.1.46.Final + 2.2 + 1.8 + 2.3.3 + 3.3.0 + + + 3.0.2 + 3.8.1 + 3.0.0-M1 + 3.0.0-M4 + 3.0.0-M4 + 1.8 + 1.1.2.RELEASE + 3.0.0 + 1.6.8 + + + + docker-java-api + docker-java-bom + docker-java-core + docker-java-transport + docker-java-transport-tck + docker-java-transport-netty + docker-java-transport-jersey + docker-java-transport-okhttp + docker-java-transport-httpclient5 + docker-java-transport-zerodep + docker-java + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-deploy-plugin + 3.0.0-M1 + + + org.apache.maven.plugins + maven-resources-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + org.apache.maven.plugins + maven-install-plugin + 3.0.0-M1 + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + ${jdk.source} + ${jdk.target} + ${jdk.debug} + ${jdk.optimize} + + + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + + test-jar + + + + + + + ${automatic.module.name} + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${maven-antrun-plugin.version} + + + validate + + run + + + + ******************************************************************* + ******************************************************************* + [project.name] : ${project.name} + [project.basedir] : ${project.basedir} + [project.version] : ${project.version} + [project.artifactId] ${project.artifactId} + [project.build.directory] ${project.build.directory} + [jdk.source] : ${jdk.source} + [jdk.target] : ${jdk.target} + [jdk.debug] : ${jdk.debug} + [jdk.optimize] : ${jdk.optimize} + [source encoding]: ${project.build.sourceEncoding} + [LocalRepository] : ${settings.localRepository} + ******************************************************************* + ******************************************************************* + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + -Xdoclint:none + + + + attach-javadocs + + jar + + + + + + org.apache.felix + maven-bundle-plugin + 4.2.1 + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + 0.18.3 + + + + com.github.docker-java + ${project.artifactId} + 3.3.4 + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.jar + + + + true + public + true + + + METHOD_NEW_DEFAULT + true + true + + + METHOD_ABSTRACT_NOW_DEFAULT + true + true + + + + + + + verify + + cmp + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + + + + release + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.maven.plugins + maven-source-plugin + + + + + + docker-java-analyses + + true + + + + + maven-checkstyle-plugin + 2.17 + + + checkstyle + validate + + check + + + + + UTF-8 + true + true + false + + + ${maven.multiModuleProjectDirectory}/src/test/resources/checkstyle/checkstyle-config.xml + + + + + + + + + diff --git a/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom.sha1 b/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom.sha1 new file mode 100644 index 000000000..0f43a5975 --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom.sha1 @@ -0,0 +1 @@ +fe218b62edab61693cd459c77cd3e19cbe934dd7 \ No newline at end of file diff --git a/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/_remote.repositories b/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/_remote.repositories new file mode 100644 index 000000000..8c26e6f34 --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:13 EDT 2024 +docker-java-transport-zerodep-3.3.6.pom>central= diff --git a/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom b/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom new file mode 100644 index 000000000..7b1e64bc9 --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom @@ -0,0 +1,109 @@ + + + + docker-java-parent + com.github.docker-java + 3.3.6 + + 4.0.0 + docker-java-transport-zerodep + docker-java-transport-zerodep + Java API Client for Docker + https://github.com/docker-java/docker-java + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + true + + + + org.apache.felix + maven-bundle-plugin + true + + + com.github.dockerjava.zerodep.* + + + + + maven-shade-plugin + + + package + + shade + + + + + true + true + true + + + com.github.docker-java:docker-java-transport + net.java.dev.jna:jna-platform + net.java.dev.jna:* + org.slf4j:slf4j-api + + + + + com.github.docker-java:docker-java-transport-httpclient5 + + com/github/dockerjava/httpclient5/ApacheDockerHttpClient.class + com/github/dockerjava/httpclient5/ApacheDockerHttpClient$* + + + + org.apache.httpcomponents.client5:httpclient5 + + mozilla/* + + + + + + org.apache + com.github.dockerjava.zerodep.shaded.org.apache + + + com.github.dockerjava.httpclient5 + com.github.dockerjava.zerodep + + + + + + + + + + + + com.github.docker-java + docker-java-transport + 3.3.6 + compile + + + org.slf4j + slf4j-api + 1.7.25 + compile + + + net.java.dev.jna + jna + 5.13.0 + compile + + + + com.github.dockerjava.transport.zerodep + + diff --git a/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom.sha1 b/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom.sha1 new file mode 100644 index 000000000..f5774ca1e --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom.sha1 @@ -0,0 +1 @@ +e957328b88d4e08770bbd5ffbe3907d2ab773685 \ No newline at end of file diff --git a/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/_remote.repositories b/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/_remote.repositories new file mode 100644 index 000000000..66fcce20f --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:13 EDT 2024 +docker-java-transport-3.3.6.pom>central= diff --git a/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom b/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom new file mode 100644 index 000000000..bd34e13db --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom @@ -0,0 +1,59 @@ + + 4.0.0 + + + com.github.docker-java + docker-java-parent + 3.3.6 + ../pom.xml + + + docker-java-transport + jar + + docker-java-transport + https://github.com/docker-java/docker-java + Java API Client for Docker + + + com.github.dockerjava.transport + + + + + com.google.code.findbugs + annotations + 3.0.1u2 + provided + + + + org.immutables + value + 2.8.2 + provided + + + + net.java.dev.jna + jna + 5.13.0 + provided + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + com.github.dockerjava.transport.* + + + + + + diff --git a/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom.sha1 b/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom.sha1 new file mode 100644 index 000000000..ebfe52e9c --- /dev/null +++ b/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom.sha1 @@ -0,0 +1 @@ +18cde50c6be9c26da626d0d02c992ad3e34d0d44 \ No newline at end of file diff --git a/code/arachne/com/github/jknack/handlebars.java/4.0.6/_remote.repositories b/code/arachne/com/github/jknack/handlebars.java/4.0.6/_remote.repositories new file mode 100644 index 000000000..168120ad5 --- /dev/null +++ b/code/arachne/com/github/jknack/handlebars.java/4.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:09 EDT 2024 +handlebars.java-4.0.6.pom>central= diff --git a/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom b/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom new file mode 100644 index 000000000..9edd8253c --- /dev/null +++ b/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom @@ -0,0 +1,489 @@ + + + + 4.0.0 + com.github.jknack + handlebars.java + 4.0.6 + pom + + Handlebars.java + Logic-less and semantic templates with Java + + https://github.com/jknack/handlebars.java + + + handlebars + handlebars-helpers + handlebars-springmvc + handlebars-jackson2 + handlebars-markdown + handlebars-humanize + handlebars-proto + handlebars-guava-cache + handlebars-maven-plugin + handlebars-maven-plugin-tests + integration-tests + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + jknack + Edgar Espina + https://github.com/jknack + + + + + scm:git:git@github.com:jknack/handlebars.java.git + scm:git:git@github.com:jknack/handlebars.java.git + scm:git:git@github.com:jknack/handlebars.java.git + HEAD + + + + + ossrh + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + + + ossrh + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + org.apache.commons + commons-lang3 + 3.1 + + + + + com.google.guava + guava + 14.0.1 + + + + org.springframework + spring-webmvc + 3.1.1.RELEASE + + + + org.springframework + spring-test + 3.1.1.RELEASE + test + + + + + org.mozilla + rhino + 1.7R4 + + + + + org.slf4j + slf4j-api + 1.6.4 + + + + + javax.servlet + servlet-api + 2.5 + provided + + + + + org.codehaus.jackson + jackson-mapper-asl + ${jackson-version} + + + + + com.fasterxml.jackson.core + jackson-databind + ${jackson2-version} + + + + + org.pegdown + pegdown + 1.2.1 + + + + + com.github.mfornos + humanize-slim + 1.1.1 + + + + + ch.qos.logback + logback-classic + 1.0.3 + test + + + + junit + junit + test + 4.11 + + + + org.yaml + snakeyaml + 1.10 + test + + + + org.easymock + easymock + 3.1 + + + + org.powermock + powermock-api-easymock + 1.5.2 + test + + + org.easymock + easymock + + + + + + org.powermock + powermock-module-junit4 + 1.5.2 + test + + + + + + + + + + maven-compiler-plugin + 3.1 + + 1.7 + 1.7 + + + + + maven-jar-plugin + 2.4 + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.16 + + + -Duser.language=en -Duser.country=US + + **/*Test.java + **/Issue*.java + **/Hbs*.java + + + **/*BenchTest.java + + + + + + + org.apache.maven.plugins + maven-eclipse-plugin + 2.9 + + true + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.9.1 + + true + checkstyle.xml + true + **/HbsServer* + + + + checkstyle + verify + + checkstyle + + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.6 + + xml + 256m + true + + + com.github.jknack.handlebars.server.* + + + com/github/jknack/handlebars/internal/Hbs*.class + com/github/jknack/handlebars/server/Hbs*.class + + + + + + + org.eluder.coveralls + coveralls-maven-plugin + 2.1.0 + + + + com.mycila.maven-license-plugin + maven-license-plugin + 1.10.b1 + +
LICENSE
+ true + true + + src/main/java/**/*.java + +
+ + + verify + + format + + + +
+ + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.3 + true + + ossrh + https://oss.sonatype.org/ + true + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.1 + + +
+
+ + + + jdk8 + + handlebars + handlebars-helpers + handlebars-springmvc + handlebars-jackson2 + handlebars-markdown + handlebars-humanize + handlebars-proto + handlebars-guava-cache + handlebars-maven-plugin + handlebars-maven-plugin-tests + integration-tests + handlebars-jdk8-tests + + + [1.8,) + + + + bench + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.12.3 + false + + + **/*BenchTest.java + + + + run.bench + true + + + + + + + + + + sonatype-oss-release + + + + + org.codehaus.mojo + exec-maven-plugin + 1.2.1 + + + initialize + invoke build + + exec + + + + + git + + submodule + update + --init + --recursive + + + 0 + + 1 + + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar-no-fork + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + attach-javadocs + + jar + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.4 + + + sign-artifacts + verify + + sign + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.4.2 + + forked-path + false + -Psonatype-oss-release + true + v@{project.version} + release + deploy + + + + + + + + + 3.0 + + + + + UTF-8 + 2.1.4 + 1.9.12 + yyyy-MM-dd HH:mm:ssa + ${maven.build.timestamp} + +
diff --git a/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom.sha1 b/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom.sha1 new file mode 100644 index 000000000..988d4c47b --- /dev/null +++ b/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom.sha1 @@ -0,0 +1 @@ +b3d9c9891b71b24b8e9dbe681e2cd9843c7dca9c \ No newline at end of file diff --git a/code/arachne/com/github/jknack/handlebars/4.0.6/_remote.repositories b/code/arachne/com/github/jknack/handlebars/4.0.6/_remote.repositories new file mode 100644 index 000000000..4c6585bd1 --- /dev/null +++ b/code/arachne/com/github/jknack/handlebars/4.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:09 EDT 2024 +handlebars-4.0.6.pom>central= diff --git a/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom b/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom new file mode 100644 index 000000000..a896307c5 --- /dev/null +++ b/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom @@ -0,0 +1,196 @@ + + + + + com.github.jknack + handlebars.java + 4.0.6 + + + 4.0.0 + com.github.jknack + handlebars + + Handlebars + Logic-less and semantic templates with Java + + + + + org.antlr + antlr4-maven-plugin + ${antlr-version} + + src/main/antlr4 + target/antlr4 + true + + + + + antlr4 + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.7 + + + add-antlr-source + generate-sources + + add-source + + + + src/main/antlr4 + target/antlr4 + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + test-jar + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + 2.5.2 + + + none + + findbugs + check + + + + + + + org.apache.felix + maven-bundle-plugin + 2.5.4 + + + bundle-manifest + process-classes + + manifest + + + + + + + + + + + org.apache.commons + commons-lang3 + + + + + org.antlr + antlr4-runtime + ${antlr-version} + + + org.abego.treelayout + org.abego.treelayout.core + + + + + + + org.mozilla + rhino + + + + + org.slf4j + slf4j-api + + + + + javax.servlet + servlet-api + provided + + + + + ch.qos.logback + logback-classic + test + + + + junit + junit + test + + + + org.yaml + snakeyaml + test + + + + org.easymock + easymock + test + + + + org.apache.commons + commons-io + 1.3.2 + test + + + + org.powermock + powermock-api-easymock + test + + + + org.powermock + powermock-module-junit4 + test + + + + + + 4.5.1-1 + + diff --git a/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom.sha1 b/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom.sha1 new file mode 100644 index 000000000..8b87d74ba --- /dev/null +++ b/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom.sha1 @@ -0,0 +1 @@ +b660ac12670b7fd25ea231de9f772a3903814d82 \ No newline at end of file diff --git a/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/_remote.repositories b/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/_remote.repositories new file mode 100644 index 000000000..8ad3cf74e --- /dev/null +++ b/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:13 EDT 2024 +dbunit-plus-2.0.1.pom>central= diff --git a/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom b/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom new file mode 100644 index 000000000..29e3281eb --- /dev/null +++ b/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom @@ -0,0 +1,479 @@ + + + + + + + 4.0.0 + com.github.mjeanroy + dbunit-plus + 2.0.1 + dbunit-plus + DbUnit extension (provide simple integration with JUnit, Spring and Liquibase). + jar + https://github.com/mjeanroy/dbunit-plus + + + + MIT License + http://www.opensource.org/licenses/mit-license.php + repo + + + + + + mjeanroy + Mickael Jeanroy + mickael.jeanroy@gmail.com + + + + + scm:git:git@github.com:mjeanroy/dbunit-plus.git + scm:git:git@github.com:mjeanroy/dbunit-plus.git + https://github.com/mjeanroy/dbunit-plus + dbunit-plus-2.0.1 + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + + + com.github.mjeanroy.dbunit + + + UTF-8 + 1.8 + ${java.version} + ${java.version} + ${java.source.version} + ${java.source.version} + ${java.target.version} + ${java.target.version} + + + 3.1.0 + 2.22.2 + 3.8.0 + 1.4.1 + 2.5.3 + 1.6 + 3.0.1 + 3.1.0 + 2.5.2 + 3.1.1 + 3.1.0 + 2.8.2 + 3.7.1 + 2.7 + + + 1.7.26 + 2.11.2 + 4.12 + 5.4.2 + 2.6.0 + 1.9.13 + 2.9.8 + 2.8.5 + 1.24 + 2.4.1 + 5.1.6.RELEASE + 3.6.3 + 27.1-jre + + + 3.12.2 + 2.27.0 + 1.2.3 + 2.23.2 + 3.1.8 + + + + + + release + + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven-gpg-plugin.version} + + + sign-artifacts + verify + + sign + + + + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + + jar-no-fork + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${maven-enforcer-plugin.version} + + + enforce-maven + + enforce + + + + + [1.8.0,) + + + + + + + + + + + + + + test-repo + file://${project.basedir}/test-repo + + + + + + org.slf4j + slf4j-api + ${slf4j.version} + true + + + + org.apache.logging.log4j + log4j-api + ${log4j.version} + true + + + org.apache.logging.log4j + log4j-core + ${log4j.version} + true + + + + junit + junit + ${junit.version} + provided + + + org.junit.jupiter + junit-jupiter-api + ${jupiter.version} + provided + + + org.dbunit + dbunit + ${dbunit.version} + provided + + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version} + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + ${jackson.version} + true + + + com.google.code.gson + gson + ${gson.version} + true + + + org.codehaus.jackson + jackson-mapper-asl + ${jackson1.version} + true + + + org.yaml + snakeyaml + ${snakeyaml.version} + true + + + com.google.guava + guava + ${guava.version} + true + + + + org.springframework + spring-test + ${spring.version} + true + + + org.springframework + spring-jdbc + ${spring.version} + true + + + org.springframework + spring-context + ${spring.version} + true + + + + org.hsqldb + hsqldb + ${hsqldb.version} + true + + + org.liquibase + liquibase-core + ${liquibase.version} + true + + + + org.junit.jupiter + junit-jupiter-engine + ${jupiter.version} + test + + + org.junit.vintage + junit-vintage-engine + ${jupiter.version} + test + + + org.assertj + assertj-core + ${assertj.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + ch.qos.logback + logback-classic + ${logback.version} + test + + + com.github.tomakehurst + wiremock + ${wiremock.version} + test + + + com.github.mjeanroy + dbunit-dataset + 0.1.0 + test + + + nl.jqno.equalsverifier + equalsverifier + ${equalsverifier.version} + test + + + + + + + org.apache.maven.plugins + maven-clean-plugin + ${maven-clean-plugin.version} + + + org.apache.maven.plugins + maven-install-plugin + ${maven-install-plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + + ${java-module-name} + + + + + + org.apache.maven.plugins + maven-resources-plugin + ${maven-resources-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + ${project.build.sourceEncoding} + ${maven.compiler.source} + ${maven.compiler.target} + ${maven.compiler.testSource} + ${maven.compiler.testTarget} + true + + + + org.codehaus.mojo + versions-maven-plugin + ${versions-maven-plugin.version} + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${maven-enforcer-plugin.version} + + + enforce-maven + + enforce + + + + + 3.0 + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven-gpg-plugin.version} + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + org.apache.maven.plugins + maven-release-plugin + ${maven-release-plugin.version} + + true + forked-path + false + -Prelease + + + + + \ No newline at end of file diff --git a/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom.sha1 b/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom.sha1 new file mode 100644 index 000000000..9d0e56228 --- /dev/null +++ b/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom.sha1 @@ -0,0 +1 @@ +23e943062edd364bceda6cdaf0664150ab272267 \ No newline at end of file diff --git a/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/_remote.repositories b/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/_remote.repositories new file mode 100644 index 000000000..e33a4101f --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +scribejava-apis-8.3.3.pom>central= diff --git a/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom b/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom new file mode 100644 index 000000000..e0899df6b --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom @@ -0,0 +1,73 @@ + + + 4.0.0 + + + com.github.scribejava + scribejava + 8.3.3 + ../pom.xml + + + com.github.scribejava + scribejava-apis + ScribeJava APIs + jar + + + + com.github.scribejava + scribejava-core + ${project.version} + + + com.github.scribejava + scribejava-httpclient-ahc + ${project.version} + test + + + com.github.scribejava + scribejava-httpclient-ning + ${project.version} + test + + + com.github.scribejava + scribejava-httpclient-okhttp + ${project.version} + test + + + com.github.scribejava + scribejava-httpclient-apache + ${project.version} + test + + + com.github.scribejava + scribejava-httpclient-armeria + ${project.version} + test + + + io.netty + netty-resolver + 4.1.84.Final + test + + + + + + + org.apache.felix + maven-bundle-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + + diff --git a/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom.sha1 b/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom.sha1 new file mode 100644 index 000000000..57e777190 --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom.sha1 @@ -0,0 +1 @@ +25bbd03e878f58b82a248fc4ac83ee164ec7a64b \ No newline at end of file diff --git a/code/arachne/com/github/scribejava/scribejava-core/8.3.3/_remote.repositories b/code/arachne/com/github/scribejava/scribejava-core/8.3.3/_remote.repositories new file mode 100644 index 000000000..b4b9cd808 --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava-core/8.3.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +scribejava-core-8.3.3.pom>central= diff --git a/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom b/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom new file mode 100644 index 000000000..237d120c8 --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom @@ -0,0 +1,62 @@ + + + 4.0.0 + + + com.github.scribejava + scribejava + 8.3.3 + ../pom.xml + + + com.github.scribejava + scribejava-core + ScribeJava Core + jar + + + + com.github.scribejava + scribejava-java8 + ${project.version} + + + commons-codec + commons-codec + 1.15 + true + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + true + + + javax.xml.bind + jaxb-api + 2.3.0 + true + + + + + + + org.apache.felix + maven-bundle-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + diff --git a/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom.sha1 b/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom.sha1 new file mode 100644 index 000000000..86d93aeb9 --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom.sha1 @@ -0,0 +1 @@ +29ef7c43f4bb0368e1e74712e5720cf813a722d7 \ No newline at end of file diff --git a/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/_remote.repositories b/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/_remote.repositories new file mode 100644 index 000000000..4c3c30fb6 --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +scribejava-java8-8.3.3.pom>central= diff --git a/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom b/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom new file mode 100644 index 000000000..27da11d77 --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom @@ -0,0 +1,33 @@ + + + 4.0.0 + + + com.github.scribejava + scribejava + 8.3.3 + ../pom.xml + + + com.github.scribejava + scribejava-java8 + ScribeJava Java 8+ compatibility stuff + jar + + + + + org.apache.felix + maven-bundle-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + + + + 8 + + diff --git a/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom.sha1 b/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom.sha1 new file mode 100644 index 000000000..e3f903084 --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom.sha1 @@ -0,0 +1 @@ +f9f4ed0b8364af269009f56795989be2565d899a \ No newline at end of file diff --git a/code/arachne/com/github/scribejava/scribejava/8.3.3/_remote.repositories b/code/arachne/com/github/scribejava/scribejava/8.3.3/_remote.repositories new file mode 100644 index 000000000..ba82d361a --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava/8.3.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +scribejava-8.3.3.pom>central= diff --git a/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom b/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom new file mode 100644 index 000000000..b438813a2 --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom @@ -0,0 +1,305 @@ + + 4.0.0 + com.github.scribejava + scribejava + pom + 8.3.3 + ScribeJava OAuth Library + The best OAuth library out there + https://github.com/scribejava/scribejava + + + org.sonatype.oss + oss-parent + 9 + + + + scribejava-core + scribejava-java8 + scribejava-apis + scribejava-httpclient-ahc + scribejava-httpclient-ning + scribejava-httpclient-okhttp + scribejava-httpclient-apache + scribejava-httpclient-armeria + + + + + MIT + https://github.com/scribejava/scribejava/blob/master/LICENSE.txt + + + + + scm:git:https://github.com/scribejava/scribejava + scm:git:https://github.com/scribejava/scribejava + https://github.com/scribejava/scribejava + scribejava-8.3.3 + + + + + kullfar + Stanislav Gromov + kullfar@gmail.com + + all + + +3 + + + + + + com.fasterxml.jackson.core + jackson-databind + 2.14.0 + + + junit + junit + 4.13.2 + test + + + com.squareup.okhttp3 + mockwebserver + 4.10.0 + test + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.8 + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.2.0 + + + com.puppycrawl.tools + checkstyle + 10.4 + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + true + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + org.apache.maven.plugins + maven-clean-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-install-plugin + 3.0.1 + + + + + + maven-compiler-plugin + 3.10.1 + + UTF-8 + ${java.release} + true + + -Xlint:-options + + + + + maven-deploy-plugin + 3.0.0 + + + default-deploy + deploy + + deploy + + + + + + org.apache.maven.plugins + maven-resources-plugin + 3.3.0 + + UTF-8 + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.4.1 + + ${java.home}/bin/javadoc + UTF-8 + -html5 + all,-missing + + + + attach-javadoc + + jar + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + validate + validate + + + ${basedir}/src + + checkstyle.xml + UTF-8 + true + + + check + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.19.0 + + + net.sourceforge.pmd + pmd-core + ${pmdVersion} + + + net.sourceforge.pmd + pmd-java + ${pmdVersion} + + + net.sourceforge.pmd + pmd-javascript + ${pmdVersion} + + + net.sourceforge.pmd + pmd-jsp + ${pmdVersion} + + + + 1.${java.release} + false + + ../pmd.xml + + true + true + true + + + + + check + + + + + + + + + 7 + 6.51.0 + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + + + + + + diff --git a/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom.sha1 b/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom.sha1 new file mode 100644 index 000000000..1ae2ffb83 --- /dev/null +++ b/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom.sha1 @@ -0,0 +1 @@ +1f8a65e8fac107fc1a35a26154dfeda3ce50139d \ No newline at end of file diff --git a/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/_remote.repositories b/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/_remote.repositories new file mode 100644 index 000000000..b62319680 --- /dev/null +++ b/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:59 EDT 2024 +spring-test-dbunit-1.3.0.pom>central= diff --git a/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom b/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom new file mode 100644 index 000000000..24515574c --- /dev/null +++ b/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom @@ -0,0 +1,343 @@ + + 4.0.0 + + org.sonatype.oss + oss-parent + 9 + + + com.github.springtestdbunit + spring-test-dbunit + 1.3.0 + jar + Spring Test DBUnit + Integration between the Spring testing framework and DBUnit + https://springtestdbunit.github.com/spring-test-dbunit + + https://github.com/springtestdbunit/spring-test-dbunit/issues + GitHub Issues + + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + https://github.com/springtestdbunit/spring-test-dbunit + scm:git:git://github.com/springtestdbunit/spring-test-dbunit.git + scm:git:git@github.com:springtestdbunit/spring-test-dbunit.git + spring-test-dbunit-1.3.0 + + + 3.2.3 + + + UTF-8 + 1.5 + 4.2.5.RELEASE + + + + Phillip Webb + https://github.com/philwebb + + + Mario Zagar + https://github.com/mzagar + + + + + + maven-antrun-plugin + 1.7 + + + copy-readme + pre-site + + run + + + + + + + + + fix-page-titles + site + + run + + + + + + + + + + + + + maven-clean-plugin + 2.5 + + + maven-javadoc-plugin + 2.9.1 + + + maven-compiler-plugin + 3.1 + + ${java.version} + ${java.version} + 1.8 + 1.8 + + + + maven-deploy-plugin + 2.8.2 + + + maven-eclipse-plugin + 2.9 + + + + .settings/org.eclipse.jdt.ui.prefs + ../eclipse/org.eclipse.jdt.ui.prefs + + + .settings/org.eclipse.jdt.core.prefs + ../eclipse/org.eclipse.jdt.core.prefs + + + + + + maven-install-plugin + 2.5.2 + + + maven-jar-plugin + 2.5 + + + maven-release-plugin + 2.5 + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.9.1 + + + + + default + + perform + + + spring-test-dbunit/pom.xml + + + + + + maven-resources-plugin + 2.6 + + + maven-site-plugin + 3.5 + + + org.apache.maven.doxia + doxia-module-markdown + 1.7 + + + + + + maven-javadoc-plugin + 2.10.3 + + + maven-jxr-plugin + 2.5 + + + maven-pmd-plugin + 3.6 + + ${java.version} + + + + maven-project-info-reports-plugin + 2.9 + + + maven-surefire-report-plugin + 2.19.1 + + + org.codehaus.mojo + cobertura-maven-plugin + 2.7 + + + xml + html + + + + + + + + maven-surefire-plugin + 2.17 + + + maven-source-plugin + 2.3 + + + attach-sources + + jar + + + + + + maven-javadoc-plugin + 2.10.3 + + + attach-javadocs + + jar + + + + + + com.github.github + site-maven-plugin + 0.12 + + Creating site for ${project.version} + + + + + site + + site + + + + + + + + + junit + junit + 4.12 + provided + + + org.dbunit + dbunit + 2.5.2 + jar + provided + + + junit + junit + + + + + org.springframework + spring-beans + ${spring.version} + provided + + + org.springframework + spring-context + ${spring.version} + provided + + + org.springframework + spring-jdbc + ${spring.version} + provided + + + org.springframework + spring-test + ${spring.version} + provided + + + + + org.hibernate + hibernate-entitymanager + 4.3.6.Final + test + + + org.hsqldb + hsqldb + 2.3.3 + test + + + org.mockito + mockito-core + 1.9.5 + jar + test + + + org.slf4j + slf4j-api + 1.7.21 + test + + + org.slf4j + slf4j-log4j12 + 1.7.21 + test + + + org.springframework + spring-aop + ${spring.version} + provided + + + org.springframework + spring-orm + ${spring.version} + test + + + diff --git a/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom.sha1 b/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom.sha1 new file mode 100644 index 000000000..65ee953c5 --- /dev/null +++ b/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom.sha1 @@ -0,0 +1 @@ +cba270d51500198b5e80c7fb2f3bc9af1ab9db8b \ No newline at end of file diff --git a/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/_remote.repositories b/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/_remote.repositories new file mode 100644 index 000000000..bf704ae83 --- /dev/null +++ b/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:10 EDT 2024 +jcip-annotations-1.0-1.pom>central= diff --git a/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom b/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom new file mode 100644 index 000000000..75be98511 --- /dev/null +++ b/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom @@ -0,0 +1,174 @@ + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + com.github.stephenc.jcip + jcip-annotations + 1.0-1 + + JCIP Annotations under Apache License + + A clean room implementation of the JCIP Annotations based entirely on the specification provided by the javadocs. + + http://stephenc.github.com/jcip-annotations + 2013 + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + stephenc + Stephen Connolly + + developer + + + + + + 2.2.1 + + + + scm:git:git://github.com/stephenc/jcip-annotations.git + scm:git:git@github.com:stephenc/jcip-annotations.git + http://github.com/stephenc/jcip-annotations/tree/master/ + jcip-annotations-1.0-1 + + + github + http://github.com/stephenc/jcip-annotations/issues + + + + github.com + gitsite:git@github.com/stephenc/jcip-annotations.git + + + + + UTF-8 + UTF-8 + UTF-8 + + + + + junit + junit + 4.8.2 + test + + + + + + + + maven-clean-plugin + 2.5 + + + maven-compiler-plugin + 3.0 + + + maven-deploy-plugin + 2.7 + + + maven-install-plugin + 2.4 + + + maven-jar-plugin + 2.4 + + + maven-release-plugin + 2.4 + + + maven-resources-plugin + 2.6 + + + maven-site-plugin + 3.2 + + + com.github.stephenc.wagon + wagon-gitsite + 0.4.1 + + + org.apache.maven.doxia + doxia-module-markdown + 1.3 + + + + + maven-surefire-plugin + 2.13 + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.6 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9 + + + org.apache.maven.plugins + maven-jxr-plugin + 2.3 + + + + + diff --git a/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom.sha1 b/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom.sha1 new file mode 100644 index 000000000..6ba1cd854 --- /dev/null +++ b/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom.sha1 @@ -0,0 +1 @@ +bdccebfbbbdd66fe56dcdf3bdee7b97a853cccc5 \ No newline at end of file diff --git a/code/arachne/com/github/virtuald/curvesapi/1.04/_remote.repositories b/code/arachne/com/github/virtuald/curvesapi/1.04/_remote.repositories new file mode 100644 index 000000000..ebd10fc83 --- /dev/null +++ b/code/arachne/com/github/virtuald/curvesapi/1.04/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:59 EDT 2024 +curvesapi-1.04.pom>central= diff --git a/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom b/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom new file mode 100644 index 000000000..2f06f7f2c --- /dev/null +++ b/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom @@ -0,0 +1,123 @@ + + 4.0.0 + com.github.virtuald + curvesapi + 1.04 + curvesapi + Implementation of various mathematical curves that define themselves over a set of control points. The API is written in Java. The curves supported are: Bezier, B-Spline, Cardinal Spline, Catmull-Rom Spline, Lagrange, Natural Cubic Spline, and NURBS. + https://github.com/virtuald/curvesapi + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.5 + 1.5 + + + + + + + + release + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.3 + true + + ossrh + https://oss.sonatype.org/ + true + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.3 + + + attach-javadocs + + jar + + + -Xdoclint:none + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + + + + BSD License + http://opensource.org/licenses/BSD-3-Clause + repo + + + + + https://github.com/virtuald/curvesapi + scm:git:git://github.com/virtuald/curvesapi.git + scm:git:git@github.com/virtuald/curvesapi.git + + + + + stormdollar + http://sourceforge.net/u/stormdollar/profile/ + stormdollar + + + Dustin Spicuzza + https://github.com/virtuald + virtuald + + + + + + junit + junit + 4.12 + test + + + + diff --git a/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom.sha1 b/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom.sha1 new file mode 100644 index 000000000..2f79334c9 --- /dev/null +++ b/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom.sha1 @@ -0,0 +1 @@ +2354cc58a022248c4f7fc925574e73176db87eea \ No newline at end of file diff --git a/code/arachne/com/github/waffle/waffle-jna/2.2.1/_remote.repositories b/code/arachne/com/github/waffle/waffle-jna/2.2.1/_remote.repositories new file mode 100644 index 000000000..5d270369c --- /dev/null +++ b/code/arachne/com/github/waffle/waffle-jna/2.2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:22 EDT 2024 +waffle-jna-2.2.1.pom>central= diff --git a/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom b/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom new file mode 100644 index 000000000..48a3888f0 --- /dev/null +++ b/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom @@ -0,0 +1,109 @@ + + + + 4.0.0 + + + com.github.waffle + waffle-parent + 2.2.1 + + + waffle-jna + 2.2.1 + jar + + waffle-jna + WAFFLE JNA implementation + https://waffle.github.com/waffle/ + + + scm:git:ssh://git@github.com/waffle/waffle.git + scm:git:ssh://git@github.com/waffle/waffle.git + https://github.com/Waffle/waffle + waffle-parent-2.2.1 + + + + + 2.8.1 + 5.5.0 + 2.0.4 + 4.0.3 + + + waffle.jna + + + + + + + net.java.dev.jna + jna + ${jna.version} + + + net.java.dev.jna + jna-platform + ${jna.version} + + + + + + + net.java.dev.jna + jna + + + net.java.dev.jna + jna-platform + + + jakarta.servlet + jakarta.servlet-api + ${servlet.version} + provided + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + slf4j-simple + ${slf4j.version} + true + + + com.github.ben-manes.caffeine + caffeine + ${caffeine.version} + + + org.powermock + powermock-reflect + ${powermock.version} + test + + + diff --git a/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom.sha1 b/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom.sha1 new file mode 100644 index 000000000..749e8fb46 --- /dev/null +++ b/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom.sha1 @@ -0,0 +1 @@ +887237273feb4a0c9de0c06eba45f33047abd052 \ No newline at end of file diff --git a/code/arachne/com/github/waffle/waffle-parent/2.2.1/_remote.repositories b/code/arachne/com/github/waffle/waffle-parent/2.2.1/_remote.repositories new file mode 100644 index 000000000..d84e1d614 --- /dev/null +++ b/code/arachne/com/github/waffle/waffle-parent/2.2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:21 EDT 2024 +waffle-parent-2.2.1.pom>central= diff --git a/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom b/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom new file mode 100644 index 000000000..1f92473e0 --- /dev/null +++ b/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom @@ -0,0 +1,1558 @@ + + + + 4.0.0 + + com.github.waffle + waffle-parent + 2.2.1 + pom + + waffle-parent + Parent POM for WAFFLE + https://waffle.github.io/waffle/ + 2010 + + com.github.waffle + https://github.com/waffle/ + + + + Eclipse Public License + https://raw.github.com/Waffle/waffle/master/LICENSE + repo + + + + + + dblock + Daniel Doubrovkine + dblock@dblock.org + https://github.com/dblock/ + dblock + http://code.dblock.org + + Architect + Developer + + -5 + + https://avatars3.githubusercontent.com/u/542335?s=400 + + + + + + Jeremy Landis + jeremylandis@hotmail.com + https://www.linkedin.com/in/jeremy-landis-548b2719 + hazendaz + https://github.com/hazendaz + + Developer + + -5 + + https://avatars0.githubusercontent.com/u/975267 + + + + + + waffle-demo + waffle-distro + waffle-jetty + waffle-jna + waffle-shiro + waffle-spring-boot + waffle-spring-boot2 + waffle-spring-security4 + waffle-spring-security5 + waffle-tests + waffle-tomcat7 + waffle-tomcat85 + waffle-tomcat9 + + + + scm:git:ssh://git@github.com/waffle/waffle.git + scm:git:ssh://git@github.com/waffle/waffle.git + https://github.com/Waffle/waffle + waffle-parent-2.2.1 + + + Github + https://github.com/Waffle/waffle/issues + + + travis + https://travis-ci.org/Waffle/waffle/ + + + + gh-pages + Waffle GitHub Pages + github:ssh://waffle.github.io/waffle/ + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + 2020 + + + 0.0 + + + yyyy-MM-dd HH:mm:ss + + 1.8 + 1.8 + 1.8 + 1.8 + + 3.6.3 + + UTF-8 + UTF-8 + UTF-8 + + + waffle.parent + + + checkstyle.xml + + + 3.14.0 + 2.3.4 + 1.3 + 1.23 + 1.49 + 3.0.2 + 5.6.0 + 2.0.0-alpha1 + + + java18 + 1.0 + + + 1.18 + 1.8 + 3.2.0 + 3.0.0 + 2.3 + 2.12.1 + 3.1.0 + 3.1.0 + 3.8.1 + 4.3.0 + 3.1.1 + 5.3.0 + 3.0.0-M1 + 0.3.1 + 3.0.0-M3 + 2.11.0 + 4.0.0 + 1.6 + 1.4.1 + 1.3.2 + 3.0.0-M1 + 0.8.5 + 3.2.0 + 3.1.1 + 2.0 + 3.0.0 + 3.0 + 2.0.0 + 1.6.8 + 3.12.0 + 3.0.0 + 3.0.0-M1 + 3.1.0 + 1.11.2 + 3.2.1 + 3.1.12.2 + 3.8.2 + 3.7.0.1746 + 3.0.0-M4 + 2.4 + 1.1.0 + 2.7 + 2.0.0 + 3.2.3 + 1.5.1 + + + 1.5.0 + 1.2.2 + 8.28 + 1.9 + 7.4.7 + 1.10.1 + 1.8 + 1.6.6 + 9+181-r4173-1 + 5.6.0.201912101111-r + 2.0.3 + 3.3.4 + 2.4.8 + + + 1.0.0 + + + -javaagent:${settings.localRepository}/org/jmockit/jmockit/${jmockit.version}/jmockit-${jmockit.version}.jar -Djdk.attach.allowAttachSelf + + + + + org.slf4j + slf4j-simple + ${slf4j.version} + test + + + + + com.google.code.findbugs + jsr305 + ${jsr305.version} + provided + + + com.google.errorprone + error_prone_annotations + ${error-prone.version} + provided + + + com.google.j2objc + j2objc-annotations + ${j2objc.version} + provided + + + + + org.assertj + assertj-core + ${assertj.version} + test + + + org.jmockit + jmockit + ${jmockit.version} + test + + + org.junit.jupiter + junit-jupiter-engine + ${junit.version} + test + + + + + org.openjdk.jmh + jmh-core + ${jmh.version} + test + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh.version} + test + + + + + + + + + org.apache.maven.plugins + maven-clean-plugin + ${clean.plugin} + + + org.apache.maven.plugins + maven-compiler-plugin + ${compiler.plugin} + + + + com.google.errorprone + error_prone_core + ${error-prone.version} + + + + + -XDcompilePolicy=simple + -Xplugin:ErrorProne + + + true + true + + + false + + + + org.apache.maven.plugins + maven-deploy-plugin + ${deploy.plugin} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${enforcer.plugin} + + + org.apache.maven.plugins + maven-gpg-plugin + ${gpg.plugin} + + + org.apache.maven.plugins + maven-install-plugin + ${install.plugin} + + + org.apache.maven.plugins + maven-resources-plugin + ${resources.plugin} + + + org.apache.maven.plugins + maven-site-plugin + ${site.plugin} + + + org.apache.maven.doxia + doxia-module-markdown + ${doxia.version} + + + net.trajano.wagon + wagon-git + ${wagon-git.version} + + + org.apache.maven.wagon + wagon-ssh + ${wagon-ssh.version} + + + + org.apache.maven.skins + maven-fluido-skin + ${fluido.version} + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.plugin} + + + **/*Test.java + **/*Tests.java + + + **/*LoadTests.java + + + + + + pl.project13.maven + git-commit-id-plugin + ${git-commit-id.plugin} + + false + + + true + + true + + + + org.codehaus.mojo + build-helper-maven-plugin + ${build-helper.plugin} + + + + org.apache.maven.plugins + maven-jar-plugin + ${jar.plugin} + + + + true + true + true + + + ${module.name} + ${maven.build.timestamp} + ${copyright} + ${git.commit.id} + ${os.name} + ${os.arch} + ${os.version} + ${maven.compiler.source} + ${maven.compiler.target} + + + true + + + + org.apache.maven.plugins + maven-war-plugin + ${war.plugin} + + + + true + true + true + + + ${buildNumber} + ${maven.build.timestamp} + ${copyright} + ${git.commit.id} + ${os.name} + ${os.arch} + ${os.version} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin} + + ${checkstyle.config} + false + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin} + + + + true + true + + + ${maven.build.timestamp} + ${copyright} + ${git.commit.id} + ${os.name} + ${os.arch} + ${os.version} + ${maven.compiler.source} + ${maven.compiler.target} + + + true + false + + + + org.apache.maven.plugins + maven-pmd-plugin + ${pmd.plugin} + + true + false + + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${antrun.plugin} + + + org.apache.maven.plugins + maven-assembly-plugin + ${assembly.plugin} + + + ${project.basedir}/src/assembly/assembly.xml + + + + + org.apache.maven.plugins + maven-dependency-plugin + ${dependency.plugin} + + + org.apache.maven.plugins + maven-release-plugin + ${release.plugin} + + true + release + + + + org.apache.maven.plugins + maven-source-plugin + ${source.plugin} + + + + true + true + true + + + ${maven.build.timestamp} + ${copyright} + ${git.commit.id} + ${os.name} + ${os.arch} + ${os.version} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.plugin} + + max + true + false + + + com.mebigfatguy.sb-contrib + sb-contrib + ${sb-contrib.version} + + + com.h3xstream.findsecbugs + findsecbugs-plugin + ${findsecbugs.version} + + + jp.skypencil.findbugs.slf4j + bug-pattern + ${bug-pattern.version} + + + + + + com.github.hazendaz.maven + htmlcompressor-maven-plugin + ${htmlcompressor.plugin} + + + com.github.hazendaz + htmlcompressor + ${htmlcompressor.version} + + + com.yahoo.platform.yui + yuicompressor + ${yuicompressor.version} + + + + + org.jacoco + jacoco-maven-plugin + ${jacoco.plugin} + + + org.eluder.coveralls + coveralls-maven-plugin + ${coveralls.plugin} + + + org.codehaus.mojo + tidy-maven-plugin + ${tidy.plugin} + + + net.alchim31.maven + yuicompressor-maven-plugin + ${yuicompressor.plugin} + + + com.yahoo.platform.yui + yuicompressor + ${yuicompressor.version} + + + + + net.revelc.code.formatter + formatter-maven-plugin + ${formatter.plugin} + + + com.github.hazendaz + build-tools + ${build-tools.version} + + + + + net.revelc.code + impsort-maven-plugin + ${impsort.plugin} + + com,java,javax,mockit,org,waffle + java,* + true + + + + com.mycila + license-maven-plugin + ${license.plugin} + +
${main.basedir}/license.txt
+ + .factorypath + .gitattributes + license.txt + + + DOUBLESLASH_STYLE + DOUBLESLASH_STYLE + +
+ + + com.mycila + license-maven-plugin-git + ${license.plugin} + + +
+ + + + org.codehaus.mojo + jdepend-maven-plugin + ${jdepend.plugin} + + + org.apache.maven.plugins + maven-changelog-plugin + ${changelog.plugin} + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin} + + + org.eclipse.jgit + org.eclipse.jgit + ${jgit.version} + + + org.apache.maven.scm + maven-scm-provider-jgit + ${scm.plugin} + + + + https + 443 + + + + org.apache.maven.plugins + maven-jxr-plugin + ${jxr.plugin} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${project-info-reports.plugin} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.plugin} + + + org.codehaus.mojo + taglist-maven-plugin + ${taglist.plugin} + + + + + FIXME Work + + + fixme + ignoreCase + + + @fixme + ignoreCase + + + + + Todo Work + + + todo + ignoreCase + + + @todo + ignoreCase + + + + + Deprecated Work + + + @deprecated + ignoreCase + + + + + + + + + org.codehaus.mojo + versions-maven-plugin + ${versions.plugin} + + + + + org.apache.maven.plugins + maven-scm-plugin + ${scm.plugin} + + + org.eclipse.jgit + org.eclipse.jgit + ${jgit.version} + + + org.apache.maven.scm + maven-scm-provider-jgit + ${scm.plugin} + + + + + + + org.sonarsource.scanner.maven + sonar-maven-plugin + ${sonar.plugin} + + + + + org.codehaus.mojo + wagon-maven-plugin + ${wagon.plugin} + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${animal-sniffer.plugin} + + + org.codehaus.mojo.signature + ${signature.artifact} + ${signature.version} + + + + + + + org.owasp + dependency-check-maven + ${dependency-check.plugin} + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${nexus-staging.plugin} + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + org.commonjava.maven.plugins + directory-maven-plugin + ${directory.plugin} + + + org.gaul + modernizer-maven-plugin + ${modernizer.plugin} + + ${maven.compiler.target} + + +
+
+ + + + + + org.apache.maven.plugins + maven-clean-plugin + + true + + + ${project.build.directory} + + **/* + + + + + + + + + pl.project13.maven + git-commit-id-plugin + + + git-commit-id + + revision + + validate + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + attach-jars + + test-jar + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + test-jar + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + test-jar + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + + [${maven.min-version},) + + + + + + enforce-maven + + enforce + + + + enforce-clean + pre-clean + + enforce + + + + enforce-site + pre-site + + enforce + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + test-sniffer + test + + check + + + + + + com.mycila + license-maven-plugin + + + compile + + format + + + + + + org.jacoco + jacoco-maven-plugin + + + prepare-agent + + prepare-agent + + + + report + + report + + + + + + + + org.commonjava.maven.plugins + directory-maven-plugin + + + directories + + highest-basedir + + initialize + + main.basedir + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + com.puppycrawl.tools + checkstyle + ${checkstyle.version} + + + + + org.gaul + modernizer-maven-plugin + + + modernizer + verify + + modernizer + + + + + + + + + org.apache.maven.wagon + wagon-ssh + ${wagon-ssh.version} + + +
+ + + + + org.apache.maven.plugins + maven-changelog-plugin + + + org.apache.maven.plugins + maven-changes-plugin + + + + github-report + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + org.apache.maven.plugins + maven-javadoc-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + + + org.apache.maven.plugins + maven-pmd-plugin + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + com.github.spotbugs + spotbugs-maven-plugin + + + org.jacoco + jacoco-maven-plugin + + + org.codehaus.mojo + versions-maven-plugin + + + org.codehaus.mojo + taglist-maven-plugin + + + org.codehaus.mojo + jdepend-maven-plugin + + + org.owasp + dependency-check-maven + + + + aggregate + + + + + + + + + + checks + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + + check + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + + check + cpd-check + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + + verify + + check + + + + + + org.jacoco + jacoco-maven-plugin + + + check + + check + + + + + BUNDLE + + + COMPLEXITY + COVEREDRATIO + ${jacoco.minimum.coverage} + + + + + + + + + + org.owasp + dependency-check-maven + + + + check + + + + + + + + + + compression + + + compression.xml + + + + + + com.github.hazendaz.maven + htmlcompressor-maven-plugin + + + default-compile + compile + + html + + + + + true + true + false + true + true + ${project.basedir}/src/main/resources + ${project.basedir}/target/classes + + html + jsp + xhtml + xml + + + + + net.alchim31.maven + yuicompressor-maven-plugin + + + default-compile + compile + + compress + + + + + true + true + + **/*.min.js + **/*.min.css + + + + + + + + + eclipse + + + m2e.version + + + + + + + + org.eclipse.m2e + lifecycle-mapping + ${lifecycle.version} + + + + + + com.github.hazendaz.maven + htmlcompressor-maven-plugin + [${htmlcompressor.plugin},) + + html + + + + + + + + + org.commonjava.maven.plugins + directory-maven-plugin + [${directory.plugin},) + + highest-basedir + + + + + true + true + + + + + + net.alchim31.maven + yuicompressor-maven-plugin + [${yuicompressor.plugin},) + + compress + + + + + + + + + com.mycila + license-maven-plugin + [${license.plugin},) + + format + + + + + true + true + + + + + + org.jacoco + jacoco-maven-plugin + [${jacoco.plugin},) + + prepare-agent + + + + + + + + + net.revelc.code.formatter + formatter-maven-plugin + [${formatter.plugin},) + + format + + + + + + + + + net.revelc.code + impsort-maven-plugin + [${impsort.plugin},) + + sort + + + + + true + true + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + [${enforcer.plugin},) + + enforce + + + + + + + + + + + + + + + + + format + + + format.xml + + + + + + net.revelc.code.formatter + formatter-maven-plugin + + eclipse-formatter-config.xml + + + + + format + + + + + + net.revelc.code + impsort-maven-plugin + + + + sort + + + + + + + + + + jdk8 + + 1.8 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + true + + -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar + + + + + + + + + + jdk9on + + [9,) + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -html5 + + + + + + + + + sort + + + + org.codehaus.mojo + tidy-maven-plugin + + + verify + + pom + + + + + + + + + + release + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + +
diff --git a/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom.sha1 b/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom.sha1 new file mode 100644 index 000000000..68e5e03c4 --- /dev/null +++ b/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom.sha1 @@ -0,0 +1 @@ +395b06d242934eb04f6d407c44c400f235d01260 \ No newline at end of file diff --git a/code/arachne/com/github/waffle/waffle-shiro/2.2.1/_remote.repositories b/code/arachne/com/github/waffle/waffle-shiro/2.2.1/_remote.repositories new file mode 100644 index 000000000..f4c89a563 --- /dev/null +++ b/code/arachne/com/github/waffle/waffle-shiro/2.2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:21 EDT 2024 +waffle-shiro-2.2.1.pom>central= diff --git a/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom b/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom new file mode 100644 index 000000000..5fc6a9716 --- /dev/null +++ b/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom @@ -0,0 +1,108 @@ + + + + 4.0.0 + + + com.github.waffle + waffle-parent + 2.2.1 + + + waffle-shiro + 2.2.1 + jar + + waffle-shiro + Shiro integration for WAFFLE + https://waffle.github.com/waffle/ + + + scm:git:ssh://git@github.com/waffle/waffle.git + scm:git:ssh://git@github.com/waffle/waffle.git + https://github.com/Waffle/waffle + waffle-parent-2.2.1 + + + + + 1.9.4 + 2.0.4 + 4.0.3 + 1.4.2 + + + waffle.shiro + + + + + ${project.groupId} + waffle-jna + ${project.version} + compile + + + ${project.groupId} + waffle-tests + ${project.version} + test + + + org.apache.shiro + shiro-web + ${shiro.version} + provided + + + jakarta.servlet + jakarta.servlet-api + ${servlet.version} + provided + + + commons-beanutils + commons-beanutils + ${beanutils.version} + provided + + + commons-logging + commons-logging + + + commons-collections + commons-collections + + + + + org.powermock + powermock-reflect + ${powermock.version} + test + + + net.bytebuddy + byte-buddy + + + net.bytebuddy + byte-buddy-agent + + + + + diff --git a/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom.sha1 b/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom.sha1 new file mode 100644 index 000000000..0e8a04204 --- /dev/null +++ b/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom.sha1 @@ -0,0 +1 @@ +03db2109cabbe327befc5aea482d8e22ca7720fb \ No newline at end of file diff --git a/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/_remote.repositories b/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/_remote.repositories new file mode 100644 index 000000000..5c0ef43c2 --- /dev/null +++ b/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +java-semver-0.9.0.pom>central= diff --git a/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom b/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom new file mode 100644 index 000000000..032a87d9b --- /dev/null +++ b/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom @@ -0,0 +1,75 @@ + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + com.github.zafarkhaja + java-semver + 0.9.0 + jar + + Java SemVer + Java implementation of the SemVer Specification + https://github.com/zafarkhaja/jsemver + + + + The MIT License + http://www.opensource.org/licenses/mit-license.php + repo + + + + + + zafarkhaja + Zafar Khaja + zafarkhaja@gmail.com + +3 + + + + + https://github.com/zafarkhaja/jsemver + scm:git:git://github.com/zafarkhaja/jsemver.git + scm:git:ssh://git@github.com/zafarkhaja/jsemver.git + + + + + junit + junit + 4.12 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.2 + + 1.6 + 1.6 + UTF-8 + -Xlint:all + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.2 + + -Xdoclint:none + + + + + diff --git a/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom.sha1 b/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom.sha1 new file mode 100644 index 000000000..2c8bb7e4e --- /dev/null +++ b/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom.sha1 @@ -0,0 +1 @@ +09713a0c7f2c8eca691eccbb780d793aa6990bf0 \ No newline at end of file diff --git a/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/_remote.repositories b/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/_remote.repositories new file mode 100644 index 000000000..68401f80c --- /dev/null +++ b/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:25 EDT 2024 +findbugs-annotations-3.0.1.pom>central= diff --git a/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom b/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom new file mode 100644 index 000000000..c6cae7122 --- /dev/null +++ b/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom @@ -0,0 +1,193 @@ + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + + + + com.google.code.findbugs + findbugs-annotations + 3.0.1 + jar + + http://findbugs.sourceforge.net/ + FindBugs-Native-Annotations + Annotation defined by the FindBugs tool + + + GNU Lesser Public License + http://www.gnu.org/licenses/lgpl.html + repo + + + + + 3.0 + + + + scm:git:https://github.com/findbugsproject/findbugs/ + scm:git:https://github.com/findbugsproject/findbugs/ + https://github.com/findbugsproject/findbugs/ + + + + + com.google.code.findbugs + jsr305 + 3.0.1 + compile + true + + + + + + bp + Bill Pugh + pugh at cs.umd.edu + http://www.cs.umd.edu/~pugh/ + + Project Lead + Primary Developer + + -5 + + + al + Andrey Loskutov + Loskutov@gmx.de + http://andrei.gmxhome.de/privat.html + + Eclipse plugin + + +1 + + + bp + Keith Lea + + http://keithlea.com/ + + web cloud + + -5 + + + + + ${basedir}/../../findbugs/src/java/ + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + package + + jar + + + edu.umd.cs.findbugs.annotations:net.jcip.annotations:javax.annotation:javax.annotation.meta:javax.annotation.concurrent + true + true + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.0 + + 1.5 + 1.5 + + edu/umd/cs/findbugs/annotations/*.java + + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + attach-sources + + jar-no-fork + + + + + + edu/umd/cs/findbugs/annotations/*.java + + + + + org.apache.felix + maven-bundle-plugin + 2.4.0 + true + + + bundle-manifest + process-classes + + manifest + + + + + + edu.umd.cs.findbugs.annotations + 3.0.1 + ${project.name} + J2SE-1.5 + + edu.umd.cs.findbugs.annotations + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.3 + true + + ossrh + https://oss.sonatype.org/ + true + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + + diff --git a/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom.sha1 b/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom.sha1 new file mode 100644 index 000000000..6e31a8507 --- /dev/null +++ b/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom.sha1 @@ -0,0 +1 @@ +8485bf05817d5361dab424b3cc1e9e27ac719dd7 \ No newline at end of file diff --git a/code/arachne/com/google/code/findbugs/jsr305/3.0.2/_remote.repositories b/code/arachne/com/google/code/findbugs/jsr305/3.0.2/_remote.repositories new file mode 100644 index 000000000..afa965e7d --- /dev/null +++ b/code/arachne/com/google/code/findbugs/jsr305/3.0.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +jsr305-3.0.2.pom>central= diff --git a/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom b/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom new file mode 100644 index 000000000..e89c2e51f --- /dev/null +++ b/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom @@ -0,0 +1,135 @@ + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + + + + com.google.code.findbugs + jsr305 + 3.0.2 + jar + + http://findbugs.sourceforge.net/ + FindBugs-jsr305 + JSR305 Annotations for Findbugs + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + 3.0 + + + + scm:git:https://code.google.com/p/jsr-305/ + scm:git:https://code.google.com/p/jsr-305/ + https://code.google.com/p/jsr-305/ + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + package + + jar + + + true + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.0 + + 1.5 + 1.5 + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + attach-sources + + jar-no-fork + + + + + + org.apache.felix + maven-bundle-plugin + 2.4.0 + true + + + bundle-manifest + process-classes + + manifest + + + + + + org.jsr-305 + ${project.name} + javax.annotation;javax.annotation.concurrent;javax.annotation.meta + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.3 + true + + ossrh + https://oss.sonatype.org/ + true + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + + diff --git a/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom.sha1 b/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom.sha1 new file mode 100644 index 000000000..f650c32cb --- /dev/null +++ b/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom.sha1 @@ -0,0 +1 @@ +8d93cdf4d84d7e1de736df607945c6df0730a10f \ No newline at end of file diff --git a/code/arachne/com/google/code/gson/gson-parent/2.10.1/_remote.repositories b/code/arachne/com/google/code/gson/gson-parent/2.10.1/_remote.repositories new file mode 100644 index 000000000..4e5549f18 --- /dev/null +++ b/code/arachne/com/google/code/gson/gson-parent/2.10.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:11 EDT 2024 +gson-parent-2.10.1.pom>central= diff --git a/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom b/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom new file mode 100644 index 000000000..b75c97907 --- /dev/null +++ b/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom @@ -0,0 +1,306 @@ + + + + 4.0.0 + + com.google.code.gson + gson-parent + 2.10.1 + pom + + Gson Parent + Gson JSON library + https://github.com/google/gson + + + gson + extras + metrics + proto + + + + UTF-8 + 7 + + + + https://github.com/google/gson/ + scm:git:https://github.com/google/gson.git + scm:git:git@github.com:google/gson.git + gson-parent-2.10.1 + + + + + google + Google + https://www.google.com + + + + + GitHub Issues + https://github.com/google/gson/issues + + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + junit + junit + 4.13.2 + test + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + true + true + true + + + -Xlint:all,-options + + + [11,) + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.4.1 + + + [11,) + + + 11 + + all,-missing + + false + + https://docs.oracle.com/en/java/javase/11/docs/api/ + + + false + + true + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M7 + + true + + false + release + + + + clean verify + antrun:run@replace-version-placeholders + antrun:run@replace-old-version-references + antrun:run@git-add-changed + + + + + maven-antrun-plugin + 3.1.0 + + + + replace-version-placeholders + + run + + + + + + + + + + + + + replace-old-version-references + + run + + + + + + + + + + + + + + + false + + + + + git-add-changed + + run + + + + + + + + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + 0.17.1 + + + + ${project.groupId} + ${project.artifactId} + + JAPICMP-OLD + + + + + ${project.build.directory}/${project.build.finalName}.${project.packaging} + + + + true + true + + com.google.gson.internal + + true + true + true + + + + + + + + + + + release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + diff --git a/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom.sha1 b/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom.sha1 new file mode 100644 index 000000000..524a4eb3f --- /dev/null +++ b/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom.sha1 @@ -0,0 +1 @@ +67ea6db077285dc50a9b0a627763764f0ef4a770 \ No newline at end of file diff --git a/code/arachne/com/google/code/gson/gson/2.10.1/_remote.repositories b/code/arachne/com/google/code/gson/gson/2.10.1/_remote.repositories new file mode 100644 index 000000000..1dd6f33b4 --- /dev/null +++ b/code/arachne/com/google/code/gson/gson/2.10.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:11 EDT 2024 +gson-2.10.1.pom>central= diff --git a/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom b/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom new file mode 100644 index 000000000..d66e1dcb5 --- /dev/null +++ b/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom @@ -0,0 +1,253 @@ + + 4.0.0 + + + com.google.code.gson + gson-parent + 2.10.1 + + + gson + Gson + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + + + + + **/Java17* + + + + + junit + junit + test + + + + + + + + org.codehaus.mojo + templating-maven-plugin + 1.0.0 + + + filtering-java-templates + + filter-sources + + + ${basedir}/src/main/java-templates + ${project.build.directory}/generated-sources/java-templates + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + default-compile + + + + module-info.java + + + + + default-testCompile + test-compile + + testCompile + + + + ${excludeTestCompilation} + + + + + + + biz.aQute.bnd + bnd-maven-plugin + 6.4.0 + + + + bnd-process + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M7 + + + + --illegal-access=deny + + + + com.coderplus.maven.plugins + copy-rename-maven-plugin + 1.0.1 + + + pre-obfuscate-class + process-test-classes + + rename + + + + + ${project.build.directory}/test-classes/com/google/gson/functional/EnumWithObfuscatedTest.class + ${project.build.directory}/test-classes-obfuscated-injar/com/google/gson/functional/EnumWithObfuscatedTest.class + + + ${project.build.directory}/test-classes/com/google/gson/functional/EnumWithObfuscatedTest$Gender.class + ${project.build.directory}/test-classes-obfuscated-injar/com/google/gson/functional/EnumWithObfuscatedTest$Gender.class + + + + + + + + com.github.wvengen + proguard-maven-plugin + 2.6.0 + + + obfuscate-test-class + process-test-classes + + proguard + + + + + true + test-classes-obfuscated-injar + test-classes-obfuscated-outjar + **/*.class + ${basedir}/src/test/resources/testcases-proguard.conf + + ${project.build.directory}/classes + ${java.home}/jmods/java.base.jmod + + + + + maven-resources-plugin + 3.3.0 + + + post-obfuscate-class + process-test-classes + + copy-resources + + + ${project.build.directory}/test-classes/com/google/gson/functional + + + ${project.build.directory}/test-classes-obfuscated-outjar/com/google/gson/functional + + EnumWithObfuscatedTest.class + EnumWithObfuscatedTest$Gender.class + + + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + + org.moditect + moditect-maven-plugin + 1.0.0.RC2 + + + add-module-info + package + + add-module-info + + + 9 + + ${project.build.sourceDirectory}/module-info.java + + + true + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + com.google.gson.internal:com.google.gson.internal.bind + + + + + + + JDK17 + + [17,) + + + 17 + + + + + diff --git a/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom.sha1 b/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom.sha1 new file mode 100644 index 000000000..4285bc051 --- /dev/null +++ b/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom.sha1 @@ -0,0 +1 @@ +ce159faf33c1e665e1f3a785a5d678a2b20151bc \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/_remote.repositories new file mode 100644 index 000000000..3cc259ad3 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:05 EDT 2024 +error_prone_annotations-2.1.3.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom new file mode 100644 index 000000000..ffb63a4d7 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom @@ -0,0 +1,58 @@ + + + + + 4.0.0 + + + com.google.errorprone + error_prone_parent + 2.1.3 + + + error-prone annotations + error_prone_annotations + + + + junit + junit + ${junit.version} + test + + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.7 + 1.7 + + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom.sha1 new file mode 100644 index 000000000..bdab9dfeb --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom.sha1 @@ -0,0 +1 @@ +02d1529fa92342313d1c98beb8ca261e36a2d319 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/_remote.repositories new file mode 100644 index 000000000..30485e7f2 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:44 EDT 2024 +error_prone_annotations-2.11.0.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom new file mode 100644 index 000000000..a453c8595 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom @@ -0,0 +1,69 @@ + + + + + 4.0.0 + + + com.google.errorprone + error_prone_parent + 2.11.0 + + + error-prone annotations + error_prone_annotations + + + + junit + junit + ${junit.version} + test + + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.7 + 1.7 + + + + + maven-jar-plugin + + + + com.google.errorprone.annotations + + + + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom.sha1 new file mode 100644 index 000000000..688aafae8 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom.sha1 @@ -0,0 +1 @@ +ced1afa200bbf344ccdef14b92aa84f7863f395c \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/_remote.repositories new file mode 100644 index 000000000..4bf0c2451 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:32 EDT 2024 +error_prone_annotations-2.18.0.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom new file mode 100644 index 000000000..6858876b5 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom @@ -0,0 +1,69 @@ + + + + + 4.0.0 + + + com.google.errorprone + error_prone_parent + 2.18.0 + + + error-prone annotations + error_prone_annotations + + + + junit + junit + ${junit.version} + test + + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 8 + 8 + + + + + maven-jar-plugin + + + + com.google.errorprone.annotations + + + + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom.sha1 new file mode 100644 index 000000000..a60726ee7 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom.sha1 @@ -0,0 +1 @@ +6d7bbfd3d7567e4c18e981a675ecda707e8a2db1 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/_remote.repositories new file mode 100644 index 000000000..34f7c417a --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:22 EDT 2024 +error_prone_annotations-2.21.1.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom new file mode 100644 index 000000000..8419ea984 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom @@ -0,0 +1,59 @@ + + + + + 4.0.0 + + + com.google.errorprone + error_prone_parent + 2.21.1 + + + error-prone annotations + error_prone_annotations + + + + junit + junit + ${junit.version} + test + + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 8 + 8 + + + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom.sha1 new file mode 100644 index 000000000..4a9298935 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom.sha1 @@ -0,0 +1 @@ +e3d7e7e5c6e7b24256bd55642344a8d99b64e599 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/_remote.repositories new file mode 100644 index 000000000..c6bb5e29f --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:27 EDT 2024 +error_prone_annotations-2.26.1.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom new file mode 100644 index 000000000..07d179008 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom @@ -0,0 +1,129 @@ + + + + + 4.0.0 + + + com.google.errorprone + error_prone_parent + 2.26.1 + + + error-prone annotations + error_prone_annotations + + + + junit + junit + ${junit.version} + test + + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + + + default-compile + + 1.8 + 1.8 + + module-info.java + + + + + compile-java9 + + compile + + + 9 + 9 + 9 + true + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + true + + + + /META-INF/versions/9/com/**/*.class + + + + + biz.aQute.bnd + bnd-maven-plugin + 6.4.0 + + + generate-OSGi-manifest + none + + + generate-OSGi-manifest-annotations + + bnd-process + + + + + + + + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom.sha1 new file mode 100644 index 000000000..f68dc910a --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom.sha1 @@ -0,0 +1 @@ +2e23702f7c5f6c85252ed22bf7e96b474fe48086 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/_remote.repositories new file mode 100644 index 000000000..931b391d8 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:03 EDT 2024 +error_prone_annotations-2.3.4.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom new file mode 100644 index 000000000..9b7753bc3 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom @@ -0,0 +1,68 @@ + + + + + 4.0.0 + + + com.google.errorprone + error_prone_parent + 2.3.4 + + + error-prone annotations + error_prone_annotations + + + + junit + junit + ${junit.version} + test + + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.7 + 1.7 + + + + maven-jar-plugin + + + + com.google.errorprone.annotations + + + + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom.sha1 new file mode 100644 index 000000000..6bd13dbda --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom.sha1 @@ -0,0 +1 @@ +9a23fcb83bc8ed502506a8e6c648bf763dc5bcf9 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/_remote.repositories new file mode 100644 index 000000000..09a9a8413 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:05 EDT 2024 +error_prone_parent-2.1.3.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom new file mode 100644 index 000000000..3ece575fb --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom @@ -0,0 +1,163 @@ + + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + Maven parent POM + com.google.errorprone + error_prone_parent + 2.1.3 + pom + + + UTF-8 + 22.0 + 0.36 + 9-dev-r4023-3 + 1.3 + 4.13-SNAPSHOT + + + + check_api + test_helpers + core + annotation + annotations + docgen + docgen_processor + ant + refaster + + + + scm:git:https://github.com/google/error-prone.git + scm:git:git@github.com:google/error-prone.git + https://github.com/google/error-prone + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + src/main/java + + **/*.properties + + + + + + src/test/java + + **/testdata/** + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 2.1 + + ${project.build.directory}/dependency-reduced-pom.xml + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.5 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + true + + + + org.codehaus.plexus + plexus-io + 2.0.9 + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.6.2 + + 1.8 + 1.8 + + + **/testdata/** + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + package + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.3 + + + attach-descriptor + + attach-descriptor + + + + + + maven-project-info-reports-plugin + 2.9 + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom.sha1 new file mode 100644 index 000000000..0d7e431dd --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom.sha1 @@ -0,0 +1 @@ +fa65cf11b2b7e955eb3862eb01d5bae721e458c0 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/_remote.repositories new file mode 100644 index 000000000..5ac8a5c9c --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:44 EDT 2024 +error_prone_parent-2.11.0.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom new file mode 100644 index 000000000..c6f4c9c4e --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom @@ -0,0 +1,298 @@ + + + + + 4.0.0 + + Error Prone parent POM + com.google.errorprone + error_prone_parent + 2.11.0 + pom + + Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time. + https://errorprone.info + + + UTF-8 + 31.0.1-jre + 2.8.2 + 1.1.3 + 1.0-rc6 + 1.9 + 4.13.1 + 3.15.0 + 3.12.4 + 0.19 + 2.8.8 + 0.6 + 3.1.0 + 3.2.1 + 1.6.7 + 3.19.2 + 1.43.2 + + + + Google LLC + http://www.google.com + + + + + Eddie Aftandilian + + + + + check_api + test_helpers + core + annotation + annotations + type_annotations + docgen + docgen_processor + refaster + + + + scm:git:https://github.com/google/error-prone.git + scm:git:git@github.com:google/error-prone.git + https://github.com/google/error-prone + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + src/main/java + + **/*.properties + **/*.binarypb + + + + + + src/test/java + + **/testdata/** + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 2.1 + + ${project.build.directory}/dependency-reduced-pom.xml + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.0.5 + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.1.1 + + 8 + true + Error Prone ${project.version} API + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 11 + 11 + + + --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + + + **/testdata/** + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + package + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + -Xmx1g + --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + --add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + --add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + --add-opens=java.base/java.math=ALL-UNNAMED + --add-opens=java.base/java.nio=ALL-UNNAMED + + false + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + + release + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${nexus-staging-maven-plugin.version} + true + + ossrh + https://oss.sonatype.org/ + true + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom.sha1 new file mode 100644 index 000000000..9cc871517 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom.sha1 @@ -0,0 +1 @@ +bd585f378139da5b5e670840892c48e75d03cf7b \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/_remote.repositories new file mode 100644 index 000000000..e74d7ee48 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:32 EDT 2024 +error_prone_parent-2.18.0.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom new file mode 100644 index 000000000..617e038bb --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom @@ -0,0 +1,306 @@ + + + + + 4.0.0 + + Error Prone parent POM + com.google.errorprone + error_prone_parent + 2.18.0 + pom + + Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time. + https://errorprone.info + + + UTF-8 + 31.0.1-jre + 2.10.0 + 1.1.3 + 1.0.1 + 1.9 + 4.13.2 + 3.27.0 + 4.9.0 + 0.19 + 3.0.5 + 0.7.4 + 3.3.1 + 3.2.1 + 1.6.8 + 3.19.2 + 1.43.2 + 0.2.0 + + + + Google LLC + http://www.google.com + + + + + Eddie Aftandilian + + + + + check_api + test_helpers + core + annotation + annotations + type_annotations + docgen + docgen_processor + refaster + + + + scm:git:https://github.com/google/error-prone.git + scm:git:git@github.com:google/error-prone.git + https://github.com/google/error-prone + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + src/main/java + + **/*.properties + **/*.binarypb + + + + + + src/test/java + + **/testdata/** + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 2.1 + + ${project.build.directory}/dependency-reduced-pom.xml + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.0.5 + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + 8 + true + Error Prone ${project.version} API + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + 11 + 11 + + + --add-exports=java.base/jdk.internal.javac=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + + + **/testdata/** + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + package + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.10.0 + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + -Xmx1g + --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + --add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + --add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + --add-opens=java.base/java.math=ALL-UNNAMED + --add-opens=java.base/java.nio=ALL-UNNAMED + + false + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + + release + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${nexus-staging-maven-plugin.version} + true + + ossrh + https://oss.sonatype.org/ + true + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + --pinentry-mode + loopback + + + + + + + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom.sha1 new file mode 100644 index 000000000..7d3757290 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom.sha1 @@ -0,0 +1 @@ +b1779a677965027cd2a3de91e61a80102086bb30 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/_remote.repositories new file mode 100644 index 000000000..1f131cdd4 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:22 EDT 2024 +error_prone_parent-2.21.1.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom new file mode 100644 index 000000000..5ad995dfd --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom @@ -0,0 +1,357 @@ + + + + + 4.0.0 + + Error Prone parent POM + com.google.errorprone + error_prone_parent + 2.21.1 + pom + + Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time. + https://errorprone.info + + + UTF-8 + 32.1.1-jre + 2.10.0 + 1.1.3 + 1.0.1 + 1.9 + 4.13.2 + 3.34.0-eisop1 + 4.9.0 + 0.19 + 3.0.5 + 0.7.4 + 3.3.1 + 3.2.1 + 1.6.13 + 3.19.6 + 1.43.3 + 0.2.0 + 5.1.0 + + + + Google LLC + http://www.google.com + + + + + Eddie Aftandilian + + + + + check_api + test_helpers + core + annotation + annotations + type_annotations + docgen + docgen_processor + refaster + + + + scm:git:https://github.com/google/error-prone.git + scm:git:git@github.com:google/error-prone.git + https://github.com/google/error-prone + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + src/main/java + + **/*.properties + **/*.binarypb + + + + + + src/test/java + + **/testdata/** + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 2.1 + + ${project.build.directory}/dependency-reduced-pom.xml + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.0.5 + + + + + + + + biz.aQute.bnd + bnd-maven-plugin + 6.4.0 + + + generate-OSGi-manifest + + bnd-process + + + ;_;.> + Automatic-Module-Name: $ + -exportcontents: com.google.errorprone* + -noextraheaders: true + -removeheaders: Private-Package + ]]> + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + 8 + true + Error Prone ${project.version} API + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + 11 + 11 + + + --add-exports=java.base/jdk.internal.javac=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + + + **/testdata/** + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + package + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.10.0 + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.1.0 + + + -Xmx1g + --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + --add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + --add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + --add-opens=java.base/java.math=ALL-UNNAMED + --add-opens=java.base/java.nio=ALL-UNNAMED + + false + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + + release + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${nexus-staging-maven-plugin.version} + true + + ossrh + https://oss.sonatype.org/ + true + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + --pinentry-mode + loopback + + + + + + + + + + custom-test-runtime-version + + + surefire.jdk-toolchain-version + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${surefire.jdk-toolchain-version} + + + + + + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom.sha1 new file mode 100644 index 000000000..e7f7f6cc6 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom.sha1 @@ -0,0 +1 @@ +e5a62220a9c871cb1283dde6e52b7f1f21c84207 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/_remote.repositories new file mode 100644 index 000000000..367df4ab4 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:27 EDT 2024 +error_prone_parent-2.26.1.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom new file mode 100644 index 000000000..6eb146499 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom @@ -0,0 +1,367 @@ + + + + + 4.0.0 + + Error Prone parent POM + com.google.errorprone + error_prone_parent + 2.26.1 + pom + + Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time. + https://errorprone.info + + + UTF-8 + 32.1.1-jre + 2.10.0 + 1.4.0 + 1.0.1 + 1.9 + 4.13.2 + 3.41.0-eisop1 + 4.9.0 + 0.21.0 + 3.0.5 + 0.7.4 + 3.3.1 + 3.2.1 + 1.6.13 + 3.19.6 + 1.43.3 + 0.3.0 + 5.1.0 + + + + Google LLC + http://www.google.com + + + + + Eddie Aftandilian + + + + + check_api + test_helpers + core + annotation + annotations + type_annotations + docgen + docgen_processor + refaster + + + + scm:git:https://github.com/google/error-prone.git + scm:git:git@github.com:google/error-prone.git + https://github.com/google/error-prone + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + src/main/java + + **/*.properties + **/*.binarypb + + + + + + src/test/java + + **/testdata/** + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 2.1 + + ${project.build.directory}/dependency-reduced-pom.xml + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.0.5 + + + + + + + + biz.aQute.bnd + bnd-maven-plugin + 6.4.0 + + + generate-OSGi-manifest + + bnd-process + + + ;_;.> + Automatic-Module-Name: $ + -exportcontents: com.google.errorprone* + -noextraheaders: true + -removeheaders: Private-Package + ]]> + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + 8 + true + Error Prone ${project.version} API + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + 11 + 11 + + + --add-exports=java.base/jdk.internal.javac=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + + + **/testdata/** + + + + + default-compile + + + -Xlint:-options + + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + package + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.10.0 + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.1.0 + + + -Xmx1g + --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + --add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + --add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + --add-opens=java.base/java.math=ALL-UNNAMED + --add-opens=java.base/java.nio=ALL-UNNAMED + + false + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + + release + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${nexus-staging-maven-plugin.version} + true + + ossrh + https://oss.sonatype.org/ + true + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + --pinentry-mode + loopback + + + + + + + + + + custom-test-runtime-version + + + surefire.jdk-toolchain-version + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${surefire.jdk-toolchain-version} + + + + + + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom.sha1 new file mode 100644 index 000000000..a2f3db242 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom.sha1 @@ -0,0 +1 @@ +b881c4c0f53eef367689790e18dc033d8a75bd52 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/_remote.repositories new file mode 100644 index 000000000..a9b10381e --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:03 EDT 2024 +error_prone_parent-2.3.4.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom new file mode 100644 index 000000000..f5a7fb9be --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom @@ -0,0 +1,169 @@ + + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + Error Prone parent POM + com.google.errorprone + error_prone_parent + 2.3.4 + pom + + + UTF-8 + 27.0.1-jre + 2.8.2 + 0.45 + 9+181-r4173-1 + 1.5.3 + 4.13-beta-1 + 3.0.0 + 2.25.0 + 0.18 + 2.7.0 + + + + check_api + test_helpers + core + annotation + annotations + type_annotations + docgen + docgen_processor + refaster + + + + scm:git:https://github.com/google/error-prone.git + scm:git:git@github.com:google/error-prone.git + https://github.com/google/error-prone + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + src/main/java + + **/*.properties + **/*.binarypb + + + + + + src/test/java + + **/testdata/** + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 2.1 + + ${project.build.directory}/dependency-reduced-pom.xml + + + + maven-surefire-plugin + + alphabetical + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.5 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.0 + + true + Error Prone ${project.version} API + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.6.2 + + 1.8 + 1.8 + + + **/testdata/** + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + package + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.3 + + + attach-descriptor + + attach-descriptor + + + + + + maven-project-info-reports-plugin + 2.9 + + + + diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom.sha1 new file mode 100644 index 000000000..72490df18 --- /dev/null +++ b/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom.sha1 @@ -0,0 +1 @@ +a9b9dd42d174a5f96d6c195525877fc6d0b2028a \ No newline at end of file diff --git a/code/arachne/com/google/guava/failureaccess/1.0.1/_remote.repositories b/code/arachne/com/google/guava/failureaccess/1.0.1/_remote.repositories new file mode 100644 index 000000000..d95f53c97 --- /dev/null +++ b/code/arachne/com/google/guava/failureaccess/1.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:31 EDT 2024 +failureaccess-1.0.1.pom>central= diff --git a/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom b/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom new file mode 100644 index 000000000..6cce78255 --- /dev/null +++ b/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom @@ -0,0 +1,68 @@ + + + 4.0.0 + + com.google.guava + guava-parent + 26.0-android + + failureaccess + 1.0.1 + bundle + Guava InternalFutureFailureAccess and InternalFutures + + Contains + com.google.common.util.concurrent.internal.InternalFutureFailureAccess and + InternalFutures. Most users will never need to use this artifact. Its + classes is conceptually a part of Guava, but they're in this separate + artifact so that Android libraries can use them without pulling in all of + Guava (just as they can use ListenableFuture by depending on the + listenablefuture artifact). + + + + + maven-source-plugin + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + true + org.apache.felix + maven-bundle-plugin + 2.5.0 + + + bundle-manifest + process-classes + + manifest + + + + + + com.google.common.util.concurrent.internal + https://github.com/google/guava/ + + + + + maven-javadoc-plugin + + + attach-docs + + + generate-javadoc-site-report + site + javadoc + + + + + + diff --git a/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom.sha1 b/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom.sha1 new file mode 100644 index 000000000..f2c78c82f --- /dev/null +++ b/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom.sha1 @@ -0,0 +1 @@ +e8160e78fdaaf7088621dc1649d9dd2dfcf8d0e8 \ No newline at end of file diff --git a/code/arachne/com/google/guava/failureaccess/1.0.2/_remote.repositories b/code/arachne/com/google/guava/failureaccess/1.0.2/_remote.repositories new file mode 100644 index 000000000..60238b2d0 --- /dev/null +++ b/code/arachne/com/google/guava/failureaccess/1.0.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +failureaccess-1.0.2.pom>central= diff --git a/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom b/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom new file mode 100644 index 000000000..8886a4b2f --- /dev/null +++ b/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom @@ -0,0 +1,100 @@ + + + 4.0.0 + + com.google.guava + guava-parent + 26.0-android + + failureaccess + 1.0.2 + bundle + Guava InternalFutureFailureAccess and InternalFutures + + Contains + com.google.common.util.concurrent.internal.InternalFutureFailureAccess and + InternalFutures. Most users will never need to use this artifact. Its + classes are conceptually a part of Guava, but they're in this separate + artifact so that Android libraries can use them without pulling in all of + Guava (just as they can use ListenableFuture by depending on the + listenablefuture artifact). + + + + + maven-jar-plugin + + + + com.google.common.util.concurrent.internal + + + + + + maven-source-plugin + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + true + org.apache.felix + maven-bundle-plugin + 5.1.8 + + + bundle-manifest + process-classes + + manifest + + + + + + com.google.common.util.concurrent.internal + https://github.com/google/guava/ + + + + + maven-javadoc-plugin + + + attach-docs + + + generate-javadoc-site-report + site + javadoc + + + + + + + + sonatype-oss-release + + + + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + + + + + + diff --git a/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom.sha1 b/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom.sha1 new file mode 100644 index 000000000..3c7ab029c --- /dev/null +++ b/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom.sha1 @@ -0,0 +1 @@ +2df7ebe307b885a222be352d3bffd5fcf0428ad4 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/25.1-jre/_remote.repositories b/code/arachne/com/google/guava/guava-parent/25.1-jre/_remote.repositories new file mode 100644 index 000000000..3e2aa4e30 --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/25.1-jre/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:05 EDT 2024 +guava-parent-25.1-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom b/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom new file mode 100644 index 000000000..aba1c746b --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom @@ -0,0 +1,302 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 9 + + com.google.guava + guava-parent + 25.1-jre + pom + Guava Maven Parent + https://github.com/google/guava + + + %regex[.*.class] + 0.35 + 1.14 + 3.0.0 + + + GitHub Issues + https://github.com/google/guava/issues + + 2010 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + 3.0.3 + + + scm:git:https://github.com/google/guava.git + scm:git:git@github.com:google/guava.git + https://github.com/google/guava + + + + kevinb9n + Kevin Bourrillion + kevinb@google.com + Google + http://www.google.com + + owner + developer + + -8 + + + + Travis CI + https://travis-ci.org/google/guava + + + guava + guava-gwt + guava-testlib + guava-tests + + + + src + test + + + src + + **/*.java + + + + + + test + + **/*.java + + + + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + + + + maven-compiler-plugin + 3.6.1 + + 1.8 + 1.8 + + + + maven-jar-plugin + 3.0.2 + + + **/ForceGuavaCompilation* + + + + + maven-source-plugin + 2.1.2 + + + attach-sources + post-integration-test + jar + + + + + **/ForceGuavaCompilation* + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${animal.sniffer.version} + + + org.codehaus.mojo.signature + java18 + 1.0 + + + + + check-java-version-compatibility + test + + check + + + + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + true + true + UTF-8 + UTF-8 + UTF-8 + + -XDignore.symbol.file + -Xdoclint:-html + + true + + + + attach-docs + post-integration-test + jar + + + + + maven-dependency-plugin + 2.10 + + + maven-antrun-plugin + 1.6 + + + maven-surefire-plugin + 2.7.2 + + + ${test.include} + + + + + %regex[.*PackageSanityTests.*.class] + + %regex[.*Tester.class] + + %regex[.*[$]\d+.class] + + true + alphabetical + + + -Xmx1536M -Duser.language=hi -Duser.country=IN + + + + + + + + guava-site + Guava Documentation Site + scp://dummy.server/dontinstall/usestaging + + + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + org.checkerframework + checker-qual + 2.0.0 + + + com.google.errorprone + error_prone_annotations + 2.1.3 + + + com.google.j2objc + j2objc-annotations + 1.1 + + + junit + junit + 4.11 + test + + + org.easymock + easymock + 3.0 + test + + + org.mockito + mockito-core + 2.7.19 + test + + + com.google.jimfs + jimfs + 1.1 + test + + + com.google.truth + truth + ${truth.version} + test + + + + com.google.guava + guava + + + + + com.google.truth.extensions + truth-java8-extension + ${truth.version} + test + + + + com.google.guava + guava + + + + + com.google.caliper + caliper + 1.0-beta-2 + test + + + + com.google.guava + guava + + + + + + diff --git a/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom.sha1 b/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom.sha1 new file mode 100644 index 000000000..4916286dd --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom.sha1 @@ -0,0 +1 @@ +802065dc15ff936f7c040c339111793dafcf02f0 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/26.0-android/_remote.repositories b/code/arachne/com/google/guava/guava-parent/26.0-android/_remote.repositories new file mode 100644 index 000000000..404d93661 --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/26.0-android/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:27 EDT 2024 +guava-parent-26.0-android.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom b/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom new file mode 100644 index 000000000..7fd8054dd --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom @@ -0,0 +1,293 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 9 + + com.google.guava + guava-parent + 26.0-android + pom + Guava Maven Parent + https://github.com/google/guava + + + %regex[.*.class] + 0.41 + 1.14 + 3.0.0 + + + GitHub Issues + https://github.com/google/guava/issues + + 2010 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + 3.0.3 + + + scm:git:https://github.com/google/guava.git + scm:git:git@github.com:google/guava.git + https://github.com/google/guava + + + + kevinb9n + Kevin Bourrillion + kevinb@google.com + Google + http://www.google.com + + owner + developer + + -8 + + + + Travis CI + https://travis-ci.org/google/guava + + + guava + guava-testlib + guava-tests + + + + src + test + + + src + + **/*.java + + + + + + test + + **/*.java + + + + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + + + + maven-compiler-plugin + 3.6.1 + + 1.7 + 1.7 + + + + maven-jar-plugin + 3.0.2 + + + **/ForceGuavaCompilation* + + + + + maven-source-plugin + 2.1.2 + + + attach-sources + post-integration-test + jar + + + + + **/ForceGuavaCompilation* + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${animal.sniffer.version} + + + org.codehaus.mojo.signature + java16-sun + 1.10 + + + + sun.misc.Unsafe + + + + + check-java-version-compatibility + test + + check + + + + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + true + true + UTF-8 + UTF-8 + UTF-8 + + -XDignore.symbol.file + -Xdoclint:-html + + true + + + + attach-docs + post-integration-test + jar + + + + + maven-dependency-plugin + 2.10 + + + maven-antrun-plugin + 1.6 + + + maven-surefire-plugin + 2.7.2 + + + ${test.include} + + + + + %regex[.*PackageSanityTests.*.class] + + %regex[.*Tester.class] + + %regex[.*[$]\d+.class] + + true + alphabetical + + + -Xmx1536M -Duser.language=hi -Duser.country=IN + + + + + + + + guava-site + Guava Documentation Site + scp://dummy.server/dontinstall/usestaging + + + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + org.checkerframework + checker-compat-qual + 2.5.2 + + + com.google.errorprone + error_prone_annotations + 2.1.3 + + + com.google.j2objc + j2objc-annotations + 1.1 + + + junit + junit + 4.11 + test + + + org.easymock + easymock + 3.0 + test + + + org.mockito + mockito-core + 2.19.0 + test + + + com.google.jimfs + jimfs + 1.1 + test + + + com.google.truth + truth + ${truth.version} + test + + + + com.google.guava + guava + + + + + com.google.caliper + caliper + 1.0-beta-2 + test + + + + com.google.guava + guava + + + + + + diff --git a/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom.sha1 b/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom.sha1 new file mode 100644 index 000000000..5db21c7f9 --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom.sha1 @@ -0,0 +1 @@ +a2c0df489614352b7e8e503e274bd1dee5c42a64 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/29.0-jre/_remote.repositories b/code/arachne/com/google/guava/guava-parent/29.0-jre/_remote.repositories new file mode 100644 index 000000000..063aaf7fc --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/29.0-jre/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:03 EDT 2024 +guava-parent-29.0-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom b/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom new file mode 100644 index 000000000..886ddace5 --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom @@ -0,0 +1,376 @@ + + + + 4.0.0 + com.google.guava + guava-parent + 29.0-jre + pom + Guava Maven Parent + Parent for guava artifacts + https://github.com/google/guava + + + %regex[.*.class] + 1.0 + 1.18 + 3.1.0 + 3.2.0 + UTF-8 + + + GitHub Issues + https://github.com/google/guava/issues + + 2010 + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:https://github.com/google/guava.git + scm:git:git@github.com:google/guava.git + https://github.com/google/guava + + + + kevinb9n + Kevin Bourrillion + kevinb@google.com + Google + http://www.google.com + + owner + developer + + -8 + + + + Travis CI + https://travis-ci.org/google/guava + + + guava + guava-bom + guava-gwt + guava-testlib + guava-tests + + + + src + test + + + src + + **/*.java + + + + + + test + + **/*.java + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-versions + + enforce + + + + + 3.0.5 + + + 1.8.0 + + + + + + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + + + + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + + + + maven-jar-plugin + 3.2.0 + + + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + post-integration-test + jar + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${animal.sniffer.version} + + com.google.common.util.concurrent.IgnoreJRERequirement + + org.codehaus.mojo.signature + java18 + 1.0 + + + + + check-java-version-compatibility + test + + check + + + + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + true + true + UTF-8 + UTF-8 + UTF-8 + + -XDignore.symbol.file + -Xdoclint:-html + + true + 8 + + + + attach-docs + post-integration-test + jar + + + + + maven-dependency-plugin + 3.1.1 + + + maven-antrun-plugin + 1.6 + + + maven-surefire-plugin + 2.7.2 + + + ${test.include} + + + + + %regex[.*PackageSanityTests.*.class] + + %regex[.*Tester.class] + + %regex[.*[$]\d+.class] + + true + alphabetical + + + -Xmx1536M -Duser.language=hi -Duser.country=IN + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M2 + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + guava-site + Guava Documentation Site + scp://dummy.server/dontinstall/usestaging + + + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + org.checkerframework + checker-qual + 2.11.1 + + + com.google.errorprone + error_prone_annotations + 2.3.4 + + + com.google.j2objc + j2objc-annotations + 1.3 + + + junit + junit + 4.13 + test + + + org.easymock + easymock + 3.0 + test + + + org.mockito + mockito-core + 2.19.0 + test + + + com.google.jimfs + jimfs + 1.1 + test + + + com.google.truth + truth + ${truth.version} + test + + + + com.google.guava + guava + + + + + com.google.truth.extensions + truth-java8-extension + ${truth.version} + test + + + + com.google.guava + guava + + + + + com.google.caliper + caliper + 1.0-beta-2 + test + + + + com.google.guava + guava + + + + + + + + sonatype-oss-release + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + diff --git a/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom.sha1 b/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom.sha1 new file mode 100644 index 000000000..77a5c9c01 --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom.sha1 @@ -0,0 +1 @@ +bd26677407fe1a325335f7c0b96ed42417198250 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/31.1-jre/_remote.repositories b/code/arachne/com/google/guava/guava-parent/31.1-jre/_remote.repositories new file mode 100644 index 000000000..0d720705e --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/31.1-jre/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:43 EDT 2024 +guava-parent-31.1-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom b/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom new file mode 100644 index 000000000..13dd0985d --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom @@ -0,0 +1,415 @@ + + + + 4.0.0 + com.google.guava + guava-parent + 31.1-jre + pom + Guava Maven Parent + Parent for guava artifacts + https://github.com/google/guava + + + %regex[.*.class] + 1.1.2 + 3.12.0 + 1.20 + 3.1.0 + + + 3.2.1 + UTF-8 + + + GitHub Issues + https://github.com/google/guava/issues + + 2010 + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:https://github.com/google/guava.git + scm:git:git@github.com:google/guava.git + https://github.com/google/guava + + + + kevinb9n + Kevin Bourrillion + kevinb@google.com + Google + http://www.google.com + + owner + developer + + -8 + + + + GitHub Actions + https://github.com/google/guava/actions + + + guava + guava-bom + guava-gwt + guava-testlib + guava-tests + + + + src + test + + + src + + **/*.java + **/*.sw* + + + + + + test + + **/*.java + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-versions + + enforce + + + + + 3.0.5 + + + 1.8.0 + + + + + + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + + + + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + + + -sourcepath + doesnotexist + + + + + maven-jar-plugin + 3.2.0 + + + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + post-integration-test + jar + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${animal.sniffer.version} + + true + + org.codehaus.mojo.signature + java18 + 1.0 + + + + + check-java-version-compatibility + test + + check + + + + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + true + true + UTF-8 + UTF-8 + UTF-8 + + -XDignore.symbol.file + -Xdoclint:-html + + true + 8 + ${maven-javadoc-plugin.additionalJOptions} + + + + attach-docs + post-integration-test + jar + + + + + maven-dependency-plugin + 3.1.1 + + + maven-antrun-plugin + 1.6 + + + maven-surefire-plugin + 2.7.2 + + + ${test.include} + + + + + %regex[.*PackageSanityTests.*.class] + + %regex[.*Tester.class] + + %regex[.*[$]\d+.class] + + true + alphabetical + + + -Xmx1536M -Duser.language=hi -Duser.country=IN + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + guava-site + Guava Documentation Site + scp://dummy.server/dontinstall/usestaging + + + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + org.checkerframework + checker-qual + ${checker-framework.version} + + + org.checkerframework + checker-qual + ${checker-framework.version} + sources + + + com.google.errorprone + error_prone_annotations + 2.11.0 + + + com.google.j2objc + j2objc-annotations + 1.3 + + + junit + junit + 4.13.2 + test + + + org.easymock + easymock + 4.3 + test + + + org.mockito + mockito-core + 3.9.0 + test + + + com.google.jimfs + jimfs + 1.2 + test + + + com.google.truth + truth + ${truth.version} + test + + + + com.google.guava + guava + + + + + com.google.truth.extensions + truth-java8-extension + ${truth.version} + test + + + + com.google.guava + guava + + + + + com.google.caliper + caliper + 1.0-beta-2 + test + + + + com.google.guava + guava + + + + + + + + sonatype-oss-release + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + + javadocs-jdk9-12 + + [9,13) + + + --no-module-directories + + + + diff --git a/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom.sha1 b/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom.sha1 new file mode 100644 index 000000000..25206d12a --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom.sha1 @@ -0,0 +1 @@ +99dae234b84eeaafa621086b6fff3530fb7e45d3 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/32.1.2-jre/_remote.repositories b/code/arachne/com/google/guava/guava-parent/32.1.2-jre/_remote.repositories new file mode 100644 index 000000000..dabd12353 --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/32.1.2-jre/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:31 EDT 2024 +guava-parent-32.1.2-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom b/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom new file mode 100644 index 000000000..38df75f49 --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom @@ -0,0 +1,493 @@ + + + + 4.0.0 + com.google.guava + guava-parent + 32.1.2-jre + pom + Guava Maven Parent + Parent for guava artifacts + https://github.com/google/guava + + + %regex[.*.class] + 1.1.3 + 3.4.1 + 9+181-r4173-1 + + + 3.2.1 + 2023-07-31T21:01:01Z + UTF-8 + + release + standard-jvm + jre + 32.1.2-android + android + android + + + GitHub Issues + https://github.com/google/guava/issues + + 2010 + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:https://github.com/google/guava.git + scm:git:git@github.com:google/guava.git + https://github.com/google/guava + + + + kevinb9n + Kevin Bourrillion + kevinb@google.com + Google + http://www.google.com + + owner + developer + + -8 + + + + GitHub Actions + https://github.com/google/guava/actions + + + guava + guava-bom + guava-gwt + guava-testlib + guava-tests + + + + src + test + + + .. + + LICENSE + + META-INF + + + + + test + + **/*.java + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-versions + + enforce + + + + + 3.0.5 + + + 1.8.0 + + + + + + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + ${java.specification.version} + + + + + + + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + UTF-8 + true + + + -sourcepath + doesnotexist + + -XDcompilePolicy=simple + + + + + com.google.errorprone + error_prone_core + 2.16 + + + + true + + + + maven-jar-plugin + 3.2.0 + + + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + post-integration-test + jar + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.23 + + com.google.common.collect.IgnoreJRERequirement,com.google.common.hash.IgnoreJRERequirement,com.google.common.io.IgnoreJRERequirement,com.google.common.reflect.IgnoreJRERequirement,com.google.common.testing.IgnoreJRERequirement + true + + org.codehaus.mojo.signature + java18 + 1.0 + + + + + check-java-version-compatibility + test + + check + + + + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + true + true + UTF-8 + UTF-8 + UTF-8 + + -XDignore.symbol.file + -Xdoclint:-html + + true + 8 + ${maven-javadoc-plugin.additionalJOptions} + + + + attach-docs + post-integration-test + jar + + + + + maven-dependency-plugin + 3.1.1 + + + maven-antrun-plugin + 1.6 + + + maven-surefire-plugin + 2.7.2 + + + ${test.include} + + + + + %regex[.*PackageSanityTests.*.class] + + %regex[.*Tester.class] + + %regex[.*[$]\d+.class] + + true + alphabetical + + + -Xmx1536M -Duser.language=hi -Duser.country=IN ${test.add.opens} + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + maven-resources-plugin + 3.3.1 + + + org.codehaus.mojo + build-helper-maven-plugin + 3.4.0 + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + guava-site + Guava Documentation Site + scp://dummy.server/dontinstall/usestaging + + + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + org.checkerframework + checker-qual + 3.33.0 + + + com.google.errorprone + error_prone_annotations + 2.18.0 + + + com.google.j2objc + j2objc-annotations + 2.8 + + + + + + + sonatype-oss-release + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + javadocs-jdk11-12 + + [11,13) + + + --no-module-directories + + + + open-jre-modules + + [9,] + + + + + --add-opens java.base/java.lang=ALL-UNNAMED + --add-opens java.base/java.util=ALL-UNNAMED + --add-opens java.base/sun.security.jca=ALL-UNNAMED + + + + + javac9-for-jdk8 + + 1.8 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar + + + + + + + + run-error-prone + + + [11,12),[16,) + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + + -Xplugin:ErrorProne -Xep:NullArgumentForNonNullParameter:OFF -Xep:Java8ApiChecker:ERROR + + + -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + + + + + + + + diff --git a/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom.sha1 b/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom.sha1 new file mode 100644 index 000000000..1af063e7f --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom.sha1 @@ -0,0 +1 @@ +c03ed8c8693d7c2e3c26f11bb35ca2523919b0dc \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/33.2.0-jre/_remote.repositories b/code/arachne/com/google/guava/guava-parent/33.2.0-jre/_remote.repositories new file mode 100644 index 000000000..242ba143b --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/33.2.0-jre/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +guava-parent-33.2.0-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom b/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom new file mode 100644 index 000000000..0728b767a --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom @@ -0,0 +1,482 @@ + + + + 4.0.0 + com.google.guava + guava-parent + 33.2.0-jre + pom + Guava Maven Parent + Parent for guava artifacts + https://github.com/google/guava + + + %regex[.*.class] + 1.4.2 + 3.0.2 + 3.42.0 + 2.26.1 + 3.0.0 + 9+181-r4173-1 + + + 2024-05-01T19:45:47Z + UTF-8 + + + release + standard-jvm + jre + 33.2.0-android + android + android + + + GitHub Issues + https://github.com/google/guava/issues + + 2010 + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:https://github.com/google/guava.git + scm:git:git@github.com:google/guava.git + https://github.com/google/guava + + + + kevinb9n + Kevin Bourrillion + kevinb@google.com + Google + http://www.google.com + + owner + developer + + -8 + + + + GitHub Actions + https://github.com/google/guava/actions + + + guava + guava-bom + guava-gwt + guava-testlib + guava-tests + + + + src + test + + + .. + + LICENSE + + META-INF + + + + + test + + **/*.java + + + + + + maven-enforcer-plugin + + + enforce-versions + + enforce + + + + + 3.0.5 + + + 1.8.0 + + + + + + + + + + + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + UTF-8 + true + + + -sourcepath + doesnotexist + + -XDcompilePolicy=simple + + + + + com.google.errorprone + error_prone_core + 2.23.0 + + + + true + + + + maven-jar-plugin + 3.2.0 + + + maven-source-plugin + 3.3.0 + + + attach-sources + + jar-no-fork + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.23 + + + org.ow2.asm + asm + 9.6 + + + + com.google.common.base.IgnoreJRERequirement,com.google.common.collect.IgnoreJRERequirement,com.google.common.hash.IgnoreJRERequirement,com.google.common.io.IgnoreJRERequirement,com.google.common.reflect.IgnoreJRERequirement,com.google.common.testing.IgnoreJRERequirement + true + + org.codehaus.mojo.signature + java18 + 1.0 + + + + + check-java-version-compatibility + test + + check + + + + + + maven-javadoc-plugin + 3.5.0 + + true + true + UTF-8 + UTF-8 + UTF-8 + + -XDignore.symbol.file + -Xdoclint:-html + + true + ${java.specification.version} + ${maven-javadoc-plugin.additionalJOptions} + + + + attach-docs + jar + + + + + maven-dependency-plugin + 3.1.1 + + + maven-antrun-plugin + 1.6 + + + maven-surefire-plugin + 2.7.2 + + + ${test.include} + + + + + %regex[.*PackageSanityTests.*.class] + + %regex[.*Tester.class] + + %regex[.*[$]\d+.class] + + true + alphabetical + + + -Xmx1536M -Duser.language=hi -Duser.country=IN ${test.add.args} ${test.add.opens} + + + + maven-enforcer-plugin + 3.0.0-M3 + + + maven-resources-plugin + 3.3.1 + + + org.codehaus.mojo + build-helper-maven-plugin + 3.4.0 + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + guava-site + Guava Documentation Site + scp://dummy.server/dontinstall/usestaging + + + + + + com.google.code.findbugs + jsr305 + ${jsr305.version} + + + org.checkerframework + checker-qual + ${checker.version} + + + com.google.errorprone + error_prone_annotations + ${errorprone.version} + + + com.google.j2objc + j2objc-annotations + ${j2objc.version} + + + + + + + sonatype-oss-release + + + + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + javadocs-jdk11-12 + + [11,13) + + + --no-module-directories + + + + open-jre-modules + + [9,] + + + + + --add-opens java.base/java.lang=ALL-UNNAMED + --add-opens java.base/java.util=ALL-UNNAMED + --add-opens java.base/sun.security.jca=ALL-UNNAMED + + + + + javac9-for-jdk8 + + 1.8 + + + + + maven-compiler-plugin + + + + -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar + + + + + + + + run-error-prone + + + [11,12),[16,) + + + + + maven-compiler-plugin + + + + + -Xplugin:ErrorProne -Xep:NullArgumentForNonNullParameter:OFF -Xep:Java8ApiChecker:ERROR + + + -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + + + + + + + + javac-for-jvm18plus + + + [18,] + + + -Djava.security.manager=allow + + + + diff --git a/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom.sha1 b/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom.sha1 new file mode 100644 index 000000000..c1b4b99c4 --- /dev/null +++ b/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom.sha1 @@ -0,0 +1 @@ +f5bfac48964350d7ad36aa378acff0ed379f816b \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava/25.1-jre/_remote.repositories b/code/arachne/com/google/guava/guava/25.1-jre/_remote.repositories new file mode 100644 index 000000000..296202f35 --- /dev/null +++ b/code/arachne/com/google/guava/guava/25.1-jre/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:05 EDT 2024 +guava-25.1-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom b/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom new file mode 100644 index 000000000..7095e0404 --- /dev/null +++ b/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom @@ -0,0 +1,180 @@ + + + 4.0.0 + + com.google.guava + guava-parent + 25.1-jre + + guava + bundle + Guava: Google Core Libraries for Java + + Guava is a suite of core and expanded libraries that include + utility classes, google's collections, io classes, and much + much more. + + + + com.google.code.findbugs + jsr305 + + + org.checkerframework + checker-qual + + + com.google.errorprone + error_prone_annotations + + + com.google.j2objc + j2objc-annotations + + + org.codehaus.mojo + animal-sniffer-annotations + ${animal.sniffer.version} + + + + + + + + maven-jar-plugin + + + + com.google.common + + + + + + true + org.apache.felix + maven-bundle-plugin + 2.5.0 + + + bundle-manifest + process-classes + + manifest + + + + + + !com.google.common.base.internal,com.google.common.* + + javax.annotation;resolution:=optional, + javax.crypto.*;resolution:=optional, + sun.misc.*;resolution:=optional + + https://github.com/google/guava/ + + + + + maven-compiler-plugin + + + maven-source-plugin + + + + maven-dependency-plugin + + + unpack-jdk-sources + generate-sources + unpack-dependencies + + srczip + ${project.build.directory}/jdk-sources + false + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + maven-javadoc-plugin + + + + + ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources + + com.google.common + com.google.common.base.internal + + + + false + + + + + https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/ + ${project.basedir}/javadoc-link/jsr305 + + + https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/ + ${project.basedir}/javadoc-link/j2objc-annotations + + + + https://docs.oracle.com/javase/9/docs/api/ + https://docs.oracle.com/javase/9/docs/api/ + + + + https://checkerframework.org/api/ + ${project.basedir}/javadoc-link/checker-framework + + + + https://errorprone.info/api/latest/ + + + + + attach-docs + + + generate-javadoc-site-report + site + javadoc + + + + + + + + srczip + + + ${java.home}/../src.zip + + + + + jdk + srczip + 999 + system + ${java.home}/../src.zip + true + + + + + diff --git a/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom.sha1 b/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom.sha1 new file mode 100644 index 000000000..7636b4d7b --- /dev/null +++ b/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom.sha1 @@ -0,0 +1 @@ +5dd13f6c0d56f05059c5eba88a20a8699ece583d \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava/29.0-jre/_remote.repositories b/code/arachne/com/google/guava/guava/29.0-jre/_remote.repositories new file mode 100644 index 000000000..f926b3af8 --- /dev/null +++ b/code/arachne/com/google/guava/guava/29.0-jre/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:03 EDT 2024 +guava-29.0-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom b/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom new file mode 100644 index 000000000..7483f5720 --- /dev/null +++ b/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom @@ -0,0 +1,252 @@ + + + 4.0.0 + + com.google.guava + guava-parent + 29.0-jre + + guava + bundle + Guava: Google Core Libraries for Java + + Guava is a suite of core and expanded libraries that include + utility classes, google's collections, io classes, and much + much more. + + + + com.google.guava + failureaccess + 1.0.1 + + + com.google.guava + listenablefuture + 9999.0-empty-to-avoid-conflict-with-guava + + + com.google.code.findbugs + jsr305 + + + org.checkerframework + checker-qual + + + com.google.errorprone + error_prone_annotations + + + com.google.j2objc + j2objc-annotations + + + + + + + + maven-jar-plugin + + + + com.google.common + + + + + + true + org.apache.felix + maven-bundle-plugin + 2.5.0 + + + bundle-manifest + process-classes + + manifest + + + + + + + !com.google.common.base.internal, + !com.google.common.util.concurrent.internal, + com.google.common.* + + + com.google.common.util.concurrent.internal, + javax.annotation;resolution:=optional, + javax.crypto.*;resolution:=optional, + sun.misc.*;resolution:=optional + + https://github.com/google/guava/ + + + + + maven-compiler-plugin + + + maven-source-plugin + + + + maven-dependency-plugin + + + unpack-jdk-sources + generate-sources + unpack-dependencies + + srczip + ${project.build.directory}/jdk-sources + false + + **/module-info.java,**/java/io/FileDescriptor.java + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + maven-javadoc-plugin + + + + + ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources + + + + + com.google.common.base.internal,com.google.common.base.internal.*,com.google.thirdparty.publicsuffix,com.google.thirdparty.publicsuffix.*,com.oracle.*,com.sun.*,java.*,javax.*,jdk,jdk.*,org.*,sun.* + + + + + apiNote + X + + + implNote + X + + + implSpec + X + + + jls + X + + + revised + X + + + spec + X + + + + + + false + + + + + https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/ + ${project.basedir}/javadoc-link/jsr305 + + + https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/ + ${project.basedir}/javadoc-link/j2objc-annotations + + + + https://docs.oracle.com/javase/9/docs/api/ + https://docs.oracle.com/javase/9/docs/api/ + + + + https://checkerframework.org/api/ + ${project.basedir}/javadoc-link/checker-framework + + + + https://errorprone.info/api/latest/ + + + + + attach-docs + + + generate-javadoc-site-report + site + javadoc + + + + + + + + srczip-parent + + + ${java.home}/../src.zip + + + + + jdk + srczip + 999 + system + ${java.home}/../src.zip + true + + + + + srczip-lib + + + ${java.home}/lib/src.zip + + + + + jdk + srczip + 999 + system + ${java.home}/lib/src.zip + true + + + + + + maven-javadoc-plugin + + + ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources/java.base + + + + + + + diff --git a/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom.sha1 b/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom.sha1 new file mode 100644 index 000000000..9d2fb6e9c --- /dev/null +++ b/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom.sha1 @@ -0,0 +1 @@ +e40cdee0d70244df1e963daac53a16241aea4585 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava/31.1-jre/_remote.repositories b/code/arachne/com/google/guava/guava/31.1-jre/_remote.repositories new file mode 100644 index 000000000..6d0a3253e --- /dev/null +++ b/code/arachne/com/google/guava/guava/31.1-jre/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:43 EDT 2024 +guava-31.1-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom b/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom new file mode 100644 index 000000000..81a2005c7 --- /dev/null +++ b/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom @@ -0,0 +1,253 @@ + + + 4.0.0 + + com.google.guava + guava-parent + 31.1-jre + + guava + bundle + Guava: Google Core Libraries for Java + https://github.com/google/guava + + Guava is a suite of core and expanded libraries that include + utility classes, Google's collections, I/O classes, and + much more. + + + + com.google.guava + failureaccess + 1.0.1 + + + com.google.guava + listenablefuture + 9999.0-empty-to-avoid-conflict-with-guava + + + com.google.code.findbugs + jsr305 + + + org.checkerframework + checker-qual + + + com.google.errorprone + error_prone_annotations + + + com.google.j2objc + j2objc-annotations + + + + + + + + maven-jar-plugin + + + + com.google.common + + + + + + true + org.apache.felix + maven-bundle-plugin + 2.5.0 + + + bundle-manifest + process-classes + + manifest + + + + + + + !com.google.common.base.internal, + !com.google.common.util.concurrent.internal, + com.google.common.* + + + com.google.common.util.concurrent.internal, + javax.annotation;resolution:=optional, + javax.crypto.*;resolution:=optional, + sun.misc.*;resolution:=optional + + https://github.com/google/guava/ + + + + + maven-compiler-plugin + + + maven-source-plugin + + + + maven-dependency-plugin + + + unpack-jdk-sources + generate-sources + unpack-dependencies + + srczip + ${project.build.directory}/jdk-sources + false + + **/module-info.java,**/java/io/FileDescriptor.java + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + maven-javadoc-plugin + + + + + ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources + + + + + com.azul.tooling.in,com.google.common.base.internal,com.google.common.base.internal.*,com.google.thirdparty.publicsuffix,com.google.thirdparty.publicsuffix.*,com.oracle.*,com.sun.*,java.*,javax.*,jdk,jdk.*,org.*,sun.* + + + + + apiNote + X + + + implNote + X + + + implSpec + X + + + jls + X + + + revised + X + + + spec + X + + + + + + false + + + + + https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/ + ${project.basedir}/javadoc-link/jsr305 + + + https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/ + ${project.basedir}/javadoc-link/j2objc-annotations + + + + https://docs.oracle.com/javase/9/docs/api/ + https://docs.oracle.com/javase/9/docs/api/ + + + + https://checkerframework.org/api/ + ${project.basedir}/javadoc-link/checker-framework + + + + https://errorprone.info/api/latest/ + + + + + attach-docs + + + generate-javadoc-site-report + site + javadoc + + + + + + + + srczip-parent + + + ${java.home}/../src.zip + + + + + jdk + srczip + 999 + system + ${java.home}/../src.zip + true + + + + + srczip-lib + + + ${java.home}/lib/src.zip + + + + + jdk + srczip + 999 + system + ${java.home}/lib/src.zip + true + + + + + + maven-javadoc-plugin + + + ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources/java.base + + + + + + + diff --git a/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom.sha1 b/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom.sha1 new file mode 100644 index 000000000..e3b406e5a --- /dev/null +++ b/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom.sha1 @@ -0,0 +1 @@ +03a6ac93765fbbc416179f7c7127b9ddddbf38d9 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava/32.1.2-jre/_remote.repositories b/code/arachne/com/google/guava/guava/32.1.2-jre/_remote.repositories new file mode 100644 index 000000000..55c668973 --- /dev/null +++ b/code/arachne/com/google/guava/guava/32.1.2-jre/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:31 EDT 2024 +guava-32.1.2-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom b/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom new file mode 100644 index 000000000..d87aa8952 --- /dev/null +++ b/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom @@ -0,0 +1,309 @@ + + + + 4.0.0 + + com.google.guava + guava-parent + 32.1.2-jre + + guava + bundle + Guava: Google Core Libraries for Java + https://github.com/google/guava + + Guava is a suite of core and expanded libraries that include + utility classes, Google's collections, I/O classes, and + much more. + + + + com.google.guava + failureaccess + 1.0.1 + + + com.google.guava + listenablefuture + 9999.0-empty-to-avoid-conflict-with-guava + + + com.google.code.findbugs + jsr305 + + + org.checkerframework + checker-qual + + + com.google.errorprone + error_prone_annotations + + + com.google.j2objc + j2objc-annotations + + + + + + + + .. + + LICENSE + proguard/* + + META-INF + + + + + maven-jar-plugin + + + + com.google.common + + + + + + true + org.apache.felix + maven-bundle-plugin + 5.1.8 + + + bundle-manifest + process-classes + + manifest + + + + + + + !com.google.common.base.internal, + !com.google.common.util.concurrent.internal, + com.google.common.* + + + com.google.common.util.concurrent.internal, + javax.annotation;resolution:=optional, + javax.crypto.*;resolution:=optional, + sun.misc.*;resolution:=optional + + https://github.com/google/guava/ + + + + + maven-compiler-plugin + + + maven-source-plugin + + + + maven-dependency-plugin + + + unpack-jdk-sources + generate-sources + unpack-dependencies + + srczip + ${project.build.directory}/jdk-sources + false + + **/module-info.java,**/java/io/FileDescriptor.java + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + maven-javadoc-plugin + + + + + ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources + + + + + com.azul.tooling.in,com.google.common.base.internal,com.google.common.base.internal.*,com.google.thirdparty.publicsuffix,com.google.thirdparty.publicsuffix.*,com.oracle.*,com.sun.*,java.*,javax.*,jdk,jdk.*,org.*,sun.* + + + + + apiNote + X + + + implNote + X + + + implSpec + X + + + jls + X + + + revised + X + + + spec + X + + + + + + false + + + + + https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/ + ${project.basedir}/javadoc-link/jsr305 + + + https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/ + ${project.basedir}/javadoc-link/j2objc-annotations + + + + https://docs.oracle.com/javase/9/docs/api/ + https://docs.oracle.com/javase/9/docs/api/ + + + + https://checkerframework.org/api/ + ${project.basedir}/javadoc-link/checker-framework + + + + https://errorprone.info/api/latest/ + + ../overview.html + + + + attach-docs + + + generate-javadoc-site-report + site + javadoc + + + + + maven-resources-plugin + + + gradle-module-metadata + compile + + copy-resources + + + target/publish + + + . + + module.json + + true + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + attach-gradle-module-metadata + + attach-artifact + + + + + target/publish/module.json + module + + + + + + + + + + + srczip-parent + + + ${java.home}/../src.zip + + + + + jdk + srczip + 999 + system + ${java.home}/../src.zip + true + + + + + srczip-lib + + + ${java.home}/lib/src.zip + + + + + jdk + srczip + 999 + system + ${java.home}/lib/src.zip + true + + + + + + maven-javadoc-plugin + + + ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources/java.base + + + + + + + diff --git a/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom.sha1 b/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom.sha1 new file mode 100644 index 000000000..42e741b19 --- /dev/null +++ b/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom.sha1 @@ -0,0 +1 @@ +a72008cdb1474c77bc2876919a5ee5fbf0fb79bc \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava/33.2.0-jre/_remote.repositories b/code/arachne/com/google/guava/guava/33.2.0-jre/_remote.repositories new file mode 100644 index 000000000..d6cb7218f --- /dev/null +++ b/code/arachne/com/google/guava/guava/33.2.0-jre/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +guava-33.2.0-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom b/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom new file mode 100644 index 000000000..18debc3c0 --- /dev/null +++ b/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom @@ -0,0 +1,225 @@ + + + + 4.0.0 + + com.google.guava + guava-parent + 33.2.0-jre + + guava + bundle + Guava: Google Core Libraries for Java + https://github.com/google/guava + + Guava is a suite of core and expanded libraries that include + utility classes, Google's collections, I/O classes, and + much more. + + + + com.google.guava + failureaccess + 1.0.2 + + + com.google.guava + listenablefuture + 9999.0-empty-to-avoid-conflict-with-guava + + + com.google.code.findbugs + jsr305 + + + org.checkerframework + checker-qual + + + com.google.errorprone + error_prone_annotations + + + com.google.j2objc + j2objc-annotations + + + + + + .. + + LICENSE + proguard/* + + META-INF + + + + + maven-jar-plugin + + + + com.google.common + + + + + + true + org.apache.felix + maven-bundle-plugin + 5.1.8 + + + bundle-manifest + process-classes + + manifest + + + + + + + !com.google.common.base.internal, + !com.google.common.util.concurrent.internal, + com.google.common.* + + + com.google.common.util.concurrent.internal, + javax.annotation;resolution:=optional, + javax.crypto.*;resolution:=optional, + sun.misc.*;resolution:=optional + + https://github.com/google/guava/ + + + + + maven-compiler-plugin + + + maven-source-plugin + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + maven-javadoc-plugin + + + + + com.azul.tooling.in,com.google.common.base.internal,com.google.common.base.internal.*,com.google.thirdparty.publicsuffix,com.google.thirdparty.publicsuffix.*,com.oracle.*,com.sun.*,java.*,javax.*,jdk,jdk.*,org.*,sun.* + + + + + apiNote + X + + + implNote + X + + + implSpec + X + + + jls + X + + + revised + X + + + spec + X + + + + + + false + + + + + https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/ + ${project.basedir}/javadoc-link/jsr305 + + + https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/ + ${project.basedir}/javadoc-link/j2objc-annotations + + + + https://docs.oracle.com/javase/9/docs/api/ + https://docs.oracle.com/javase/9/docs/api/ + + + + https://checkerframework.org/api/ + ${project.basedir}/javadoc-link/checker-framework + + + + https://errorprone.info/api/latest/ + + ../overview.html + + + + maven-resources-plugin + + + gradle-module-metadata + compile + + copy-resources + + + target/publish + + + . + + module.json + + true + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + attach-gradle-module-metadata + + attach-artifact + + + + + target/publish/module.json + module + + + + + + + + + diff --git a/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom.sha1 b/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom.sha1 new file mode 100644 index 000000000..41ceafa9e --- /dev/null +++ b/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom.sha1 @@ -0,0 +1 @@ +e78e6bc096ac140596ce47c2cd6e90f12a417779 \ No newline at end of file diff --git a/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/_remote.repositories b/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/_remote.repositories new file mode 100644 index 000000000..6493b3c1a --- /dev/null +++ b/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:27 EDT 2024 +listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom>central= diff --git a/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom b/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom new file mode 100644 index 000000000..ad3f23ec6 --- /dev/null +++ b/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom @@ -0,0 +1,56 @@ + + + 4.0.0 + + com.google.guava + guava-parent + 26.0-android + + listenablefuture + 9999.0-empty-to-avoid-conflict-with-guava + Guava ListenableFuture only + + An empty artifact that Guava depends on to signal that it is providing + ListenableFuture -- but is also available in a second "version" that + contains com.google.common.util.concurrent.ListenableFuture class, without + any other Guava classes. The idea is: + + - If users want only ListenableFuture, they depend on listenablefuture-1.0. + + - If users want all of Guava, they depend on guava, which, as of Guava + 27.0, depends on + listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-... + version number is enough for some build systems (notably, Gradle) to select + that empty artifact over the "real" listenablefuture-1.0 -- avoiding a + conflict with the copy of ListenableFuture in guava itself. If users are + using an older version of Guava or a build system other than Gradle, they + may see class conflicts. If so, they can solve them by manually excluding + the listenablefuture artifact or manually forcing their build systems to + use 9999.0-.... + + + + + maven-source-plugin + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + maven-javadoc-plugin + + + attach-docs + + + generate-javadoc-site-report + site + javadoc + + + + + + diff --git a/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom.sha1 b/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom.sha1 new file mode 100644 index 000000000..f6a54cf0f --- /dev/null +++ b/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom.sha1 @@ -0,0 +1 @@ +1b77ba79f9b2b7dfd4e15ea7bb0d568d5eb9cb8d \ No newline at end of file diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.1/_remote.repositories b/code/arachne/com/google/j2objc/j2objc-annotations/1.1/_remote.repositories new file mode 100644 index 000000000..77336ae1d --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:06 EDT 2024 +j2objc-annotations-1.1.pom>central= diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom b/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom new file mode 100644 index 000000000..b640c5143 --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom @@ -0,0 +1,87 @@ + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + com.google.j2objc + j2objc-annotations + jar + 1.1 + + J2ObjC Annotations + + A set of annotations that provide additional information to the J2ObjC + translator to modify the result of translation. + + https://github.com/google/j2objc/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.3 + + + generate-docs + package + jar + + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + generate-sources + package + jar-no-fork + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + sign + + + + + + diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom.sha1 b/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom.sha1 new file mode 100644 index 000000000..af8dd7d30 --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom.sha1 @@ -0,0 +1 @@ +b964a9414771661bdf35a3f10692a2fb0dd2c866 \ No newline at end of file diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.3/_remote.repositories b/code/arachne/com/google/j2objc/j2objc-annotations/1.3/_remote.repositories new file mode 100644 index 000000000..ecd18b9a3 --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/1.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:44 EDT 2024 +j2objc-annotations-1.3.pom>central= diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom b/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom new file mode 100644 index 000000000..d32414aa5 --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom @@ -0,0 +1,87 @@ + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + com.google.j2objc + j2objc-annotations + jar + 1.3 + + J2ObjC Annotations + + A set of annotations that provide additional information to the J2ObjC + translator to modify the result of translation. + + https://github.com/google/j2objc/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.3 + + + generate-docs + package + jar + + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + generate-sources + package + jar-no-fork + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + sign + + + + + + diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom.sha1 b/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom.sha1 new file mode 100644 index 000000000..ca9eed8a0 --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom.sha1 @@ -0,0 +1 @@ +47e0dd93285dcc6b33181713bc7e8aed66742964 \ No newline at end of file diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/2.8/_remote.repositories b/code/arachne/com/google/j2objc/j2objc-annotations/2.8/_remote.repositories new file mode 100644 index 000000000..48a136969 --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/2.8/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:32 EDT 2024 +j2objc-annotations-2.8.pom>central= diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom b/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom new file mode 100644 index 000000000..80d656d55 --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom @@ -0,0 +1,94 @@ + + + + 4.0.0 + + + 1.7 + 1.7 + + + + org.sonatype.oss + oss-parent + 9 + + + com.google.j2objc + j2objc-annotations + jar + 2.8 + + J2ObjC Annotations + + A set of annotations that provide additional information to the J2ObjC + translator to modify the result of translation. + + https://github.com/google/j2objc/ + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.3 + + + generate-docs + package + jar + + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + generate-sources + package + jar-no-fork + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + + + + diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom.sha1 b/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom.sha1 new file mode 100644 index 000000000..50eacf675 --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom.sha1 @@ -0,0 +1 @@ +c8daacea97066c6826844e2175ec89857e598122 \ No newline at end of file diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/_remote.repositories b/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/_remote.repositories new file mode 100644 index 000000000..ee5c1f35f --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:27 EDT 2024 +j2objc-annotations-3.0.0.pom>central= diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom b/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom new file mode 100644 index 000000000..84abf479d --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom @@ -0,0 +1,158 @@ + + + + 4.0.0 + + + 1.7 + 1.7 + + + com.google.j2objc + j2objc-annotations + jar + 3.0.0 + + J2ObjC Annotations + + A set of annotations that provide additional information to the J2ObjC + translator to modify the result of translation. + + https://github.com/google/j2objc/ + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + http://github.com/google/j2objc + scm:git:git://github.com/google/j2objc.git + scm:git:ssh://git@github.com/google/j2objc.git + + + + + tomball + Tom Ball + tball@google.com + Google + https://www.google.com + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.12.1 + + + default-compile + + 1.8 + 1.8 + + module-info.java + + + + + compile-java9 + compile + + compile + + + 9 + true + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + true + + + + META-INF/versions/9/com/** + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + + generate-docs + package + jar + + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + generate-sources + package + jar-no-fork + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.1.0 + + + sign-artifacts + verify + sign + + + + + + diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom.sha1 b/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom.sha1 new file mode 100644 index 000000000..c979a2bde --- /dev/null +++ b/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom.sha1 @@ -0,0 +1 @@ +45cbaa9d129a696907d1e5bc56c707b6a0043181 \ No newline at end of file diff --git a/code/arachne/com/ibm/icu/icu4j/62.1/_remote.repositories b/code/arachne/com/ibm/icu/icu4j/62.1/_remote.repositories new file mode 100644 index 000000000..1a38b3a53 --- /dev/null +++ b/code/arachne/com/ibm/icu/icu4j/62.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:08 EDT 2024 +icu4j-62.1.pom>central= diff --git a/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom b/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom new file mode 100644 index 000000000..419b100f6 --- /dev/null +++ b/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom @@ -0,0 +1,146 @@ + + + + 4.0.0 + + com.ibm.icu + icu4j + 62.1 + + ICU4J + + International Component for Unicode for Java (ICU4J) is a mature, widely used Java library + providing Unicode and Globalization support + + http://icu-project.org/ + 2001 + + + Unicode/ICU License + http://source.icu-project.org/repos/icu/trunk/icu4j/main/shared/licenses/LICENSE + repo + + + + + + mark + Mark Davis + Google + + PMC Member + + + + emmons + John Emmons + IBM Corporation + + PMC Member + + + + doug + Doug Felt + Google + + PMC Member + + + + deborah + Deborah Goldsmith + Apple + + PMC Member + + + + srl + Steven Loomis + IBM Corporation + + PMC Member + + + + markus + Markus Scherer + Google + + PMC Member + + + + pedberg + Peter Edberg + Apple + + PMC Member + + + + yoshito + Yoshito Umaoka + IBM Corporation + + PMC Member + + + + + + + icu-support + https://lists.sourceforge.net/lists/listinfo/icu-support + https://lists.sourceforge.net/lists/listinfo/icu-support + icu-support@lists.sourceforge.net + http://sourceforge.net/mailarchive/forum.php?forum_name=icu-support + + + icu-announce + https://lists.sourceforge.net/lists/listinfo/icu-announce + https://lists.sourceforge.net/lists/listinfo/icu-announce + icu-announce@lists.sourceforge.net + http://sourceforge.net/mailarchive/forum.php?forum_name=icu-announce + + + icu-design + https://lists.sourceforge.net/lists/listinfo/icu-design + https://lists.sourceforge.net/lists/listinfo/icu-design + icu-design@lists.sourceforge.net + http://sourceforge.net/mailarchive/forum.php?forum_name=icu-design + + + + + scm:svn:http://source.icu-project.org/repos/icu/trunk/icu4j + scm:svn:http://source.icu-project.org/repos/icu/trunk/icu4j + http://source.icu-project.org/repos/icu/trunk/icu4j + + + Trac + http://bugs.icu-project.org/trac/ + + + + + icu4j-releases + ICU4J Central Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + icu4j-snapshots + ICU4J Central Development Repository + https://oss.sonatype.org/content/repositories/snapshots + + + diff --git a/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom.sha1 b/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom.sha1 new file mode 100644 index 000000000..eda137412 --- /dev/null +++ b/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom.sha1 @@ -0,0 +1 @@ +e7bfed634332fc5f886afc887b8522fad044beb7 \ No newline at end of file diff --git a/code/arachne/com/jayway/jsonpath/json-path/2.9.0/_remote.repositories b/code/arachne/com/jayway/jsonpath/json-path/2.9.0/_remote.repositories new file mode 100644 index 000000000..fecdd7b80 --- /dev/null +++ b/code/arachne/com/jayway/jsonpath/json-path/2.9.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +json-path-2.9.0.pom>central= diff --git a/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom b/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom new file mode 100644 index 000000000..ed8e872b5 --- /dev/null +++ b/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom @@ -0,0 +1,49 @@ + + + + + + + + 4.0.0 + com.jayway.jsonpath + json-path + 2.9.0 + json-path + A library to query and verify JSON + https://github.com/jayway/JsonPath + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + kalle.stenflo + Kalle Stenflo + kalle.stenflo (a) gmail.com + + + + scm:git:git://github.com/jayway/JsonPath.git + scm:git:git://github.com/jayway/JsonPath.git + scm:git:git://github.com/jayway/JsonPath.git + + + + net.minidev + json-smart + 2.5.0 + runtime + + + org.slf4j + slf4j-api + 2.0.11 + runtime + + + diff --git a/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom.sha1 b/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom.sha1 new file mode 100644 index 000000000..1ed4b4274 --- /dev/null +++ b/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom.sha1 @@ -0,0 +1 @@ +e614d3178d8dddfb44c871fc195fba3c5c212cbf \ No newline at end of file diff --git a/code/arachne/com/microsoft/azure/msal4j/1.9.0/_remote.repositories b/code/arachne/com/microsoft/azure/msal4j/1.9.0/_remote.repositories new file mode 100644 index 000000000..69376fd69 --- /dev/null +++ b/code/arachne/com/microsoft/azure/msal4j/1.9.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:18 EDT 2024 +msal4j-1.9.0.pom>central= diff --git a/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom b/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom new file mode 100644 index 000000000..de2143bdf --- /dev/null +++ b/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom @@ -0,0 +1,286 @@ + + 4.0.0 + com.microsoft.azure + msal4j + 1.9.0 + jar + msal4j + + Microsoft Authentication Library for Java gives you the ability to obtain tokens from Azure AD v2 (work and school + accounts, MSA) and Azure AD B2C, gaining access to Microsoft Cloud API and any other API secured by Microsoft + identities + + https://github.com/AzureAD/microsoft-authentication-library-for-java + + + msopentech + Microsoft Open Technologies, Inc. + + + + + MIT License + + + 2013 + + https://github.com/AzureAD/microsoft-authentication-library-for-java + + + + UTF-8 + + + + + com.nimbusds + oauth2-oidc-sdk + 8.23.1 + + + org.slf4j + slf4j-api + 1.7.28 + + + org.projectlombok + lombok + 1.18.6 + provided + + + com.fasterxml.jackson.core + jackson-databind + 2.10.1 + + + + + org.apache.commons + commons-text + 1.7 + test + + + org.testng + testng + 7.1.0 + test + + + org.powermock + powermock-module-testng + 2.0.0 + test + + + org.powermock + powermock-api-easymock + 2.0.0 + test + + + org.easymock + easymock + 4.0.2 + test + + + org.skyscreamer + jsonassert + 1.5.0 + test + + + org.apache.httpcomponents + httpclient + 4.5.9 + test + + + com.microsoft.azure + azure-keyvault + 1.2.1 + test + + + org.seleniumhq.selenium + selenium-java + 3.14.0 + test + + + com.google.guava + guava + 26.0-jre + test + + + ch.qos.logback + logback-classic + 1.2.3 + test + + + commons-io + commons-io + 2.6 + test + + + + + + + central + https://repo1.maven.org/maven2 + + false + + + + + + central + https://repo1.maven.org/maven2 + + false + + + + + + ${project.build.directory}/delombok + + + org.projectlombok + lombok-maven-plugin + 1.18.2.0 + + + + delombok + + + + + src/main/java + ${project.build.directory}/delombok + false + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.5 + + + + true + true + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.10 + + -noverify + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.1.0 + + ${project.build.directory}/delombok + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar + + + + + + com.github.spotbugs + spotbugs-maven-plugin + 3.1.11 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.7.0 + + 8 + 8 + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.10 + + + add-test-source + process-resources + + add-test-source + + + + src/integrationtest/java + + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.22.1 + + + + integration-test + verify + + + + + + biz.aQute.bnd + bnd-maven-plugin + 4.3.1 + + + + bnd-process + + + + + + + diff --git a/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom.sha1 b/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom.sha1 new file mode 100644 index 000000000..19b4ee001 --- /dev/null +++ b/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom.sha1 @@ -0,0 +1 @@ +3fd96d19d2137ab17d24afbda24a1e64522ea063 \ No newline at end of file diff --git a/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/_remote.repositories b/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/_remote.repositories new file mode 100644 index 000000000..91d6011f2 --- /dev/null +++ b/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +mssql-jdbc-12.4.2.jre11.pom>central= diff --git a/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom b/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom new file mode 100644 index 000000000..137407483 --- /dev/null +++ b/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom @@ -0,0 +1,589 @@ + + + 4.0.0 + com.microsoft.sqlserver + mssql-jdbc + 12.4.2.jre11 + jar + Microsoft JDBC Driver for SQL Server + + Microsoft JDBC Driver for SQL Server. + + https://github.com/Microsoft/mssql-jdbc + + + MIT License + http://www.opensource.org/licenses/mit-license.php + + + + Microsoft Corporation + + + + Microsoft + http://www.microsoft.com + + + + https://github.com/Microsoft/mssql-jdbc + + + + xSQLv12,xSQLv15,NTLM,MSI,reqExternalSetup,clientCertAuth,fedAuth + + + + 6.0.0 + 4.6.1 + 1.9.0 + 1.13.8 + 1.1.0 + 4.9.3 + 2.10.1 + 1.70 + 1.70 + + [1.3.2, 1.9.0] + 5.8.2 + 3.4.2 + 2.7.0 + 1.7.30 + 2.1.0.RELEASE + 2.1.214 + UTF-8 + ${project.build.sourceEncoding} + false + + + + com.azure + azure-security-keyvault-keys + ${azure-security-keyvault-keys.version} + true + + + com.azure + azure-identity + ${azure-identity.version} + true + + + stax + stax-api + + + + + com.microsoft.azure + msal4j + ${msal.version} + true + + + + org.antlr + antlr4-runtime + ${antlr-runtime.version} + true + + + + com.google.code.gson + gson + ${com.google.code.gson.version} + true + + + org.bouncycastle + bcprov-jdk15on + ${bcprov-jdk15on.version} + true + + + + org.bouncycastle + bcpkix-jdk15on + ${bcpkix-jdk15on.version} + true + + + + org.osgi + org.osgi.core + ${org.osgi.core.version} + provided + + + org.osgi + org.osgi.service.jdbc + ${osgi.jdbc.version} + provided + + + + org.junit.platform + junit-platform-console + ${junit.platform.version} + test + + + org.junit.platform + junit-platform-commons + ${junit.platform.version} + test + + + org.junit.platform + junit-platform-engine + ${junit.platform.version} + test + + + org.junit.platform + junit-platform-launcher + ${junit.platform.version} + test + + + org.junit.platform + junit-platform-runner + ${junit.platform.version} + test + + + org.junit.platform + junit-platform-surefire-provider + ${junit.platform.version} + test + + + org.junit.jupiter + junit-jupiter-api + ${junit.jupiter.version} + test + + + org.junit.jupiter + junit-jupiter-engine + ${junit.jupiter.version} + test + + + com.zaxxer + HikariCP + ${hikaricp.version} + test + + + org.apache.commons + commons-dbcp2 + ${dbcp2.version} + test + + + org.slf4j + slf4j-nop + ${slf4j.nop.version} + test + + + org.eclipse.gemini.blueprint + gemini-blueprint-mock + ${gemini.mock.version} + test + + + com.h2database + h2 + ${h2.version} + test + + + org.junit.jupiter + junit-jupiter-params + ${junit.jupiter.version} + test + + + + + jre8 + + ${project.artifactId}-${project.version}.jre8${releaseExt} + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + + **/com/microsoft/sqlserver/jdbc/ISQLServerConnection43.java + **/com/microsoft/sqlserver/jdbc/SQLServerConnection43.java + **/com/microsoft/sqlserver/jdbc/SQLServerJdbc43.java + + + **/com/microsoft/sqlserver/jdbc/connection/ConnectionWrapper43Test.java + **/com/microsoft/sqlserver/jdbc/connection/RequestBoundaryMethodsTest.java + **/com/microsoft/sqlserver/jdbc/JDBC43Test.java + + 1.8 + 1.8 + + + + org.apache.maven.plugins + maven-javadoc-plugin + + 8 + + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.1 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M1 + + + ${excludedGroups}, xJDBC42 + + + + + + + jre11 + + ${project.artifactId}-${project.version}.jre11${releaseExt} + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + + **/com/microsoft/sqlserver/jdbc/SQLServerJdbc42.java + + 11 + 11 + + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.1 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + com.microsoft.sqlserver.jdbc + + + + + + + + + jre17 + + ${project.artifactId}-${project.version}.jre17${releaseExt} + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + + **/com/microsoft/sqlserver/jdbc/SQLServerJdbc42.java + + 17 + 17 + + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.1 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + com.microsoft.sqlserver.jdbc + + + + + + + + + jre20 + + true + + + ${project.artifactId}-${project.version}.jre20${releaseExt} + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + + **/com/microsoft/sqlserver/jdbc/SQLServerJdbc42.java + + 20 + 20 + + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.1 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + com.microsoft.sqlserver.jdbc + + + + + + + + + + + + ${basedir} + + META-INF/services/java.sql.Driver + + + + + + src/test/resources + + **/*.csv + + + + AE_Certificates + + **/*.txt + **/*.jks + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M2 + + + enforce-versions + + enforce + + + + + + WARN + + org.apache.maven.plugins:maven-verifier-plugin + + Please consider using the maven-invoker-plugin + (http://maven.apache.org/plugins/maven-invoker-plugin/)! + + + 3.5.0 + + + 11 + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M1 + + 3 + true + ${argLine} -Xmx1024m -Djava.library.path=${dllPath} + + ${excludedGroups} + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + + jar + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.1 + true + + + <_exportcontents> + com.microsoft.sqlserver.jdbc, + com.microsoft.sqlserver.jdbc.osgi, + com.microsoft.sqlserver.jdbc.dataclassification, + microsoft.sql + + !microsoft.sql,jdk.net;resolution:=optional,* + com.microsoft.sqlserver.jdbc.osgi.Activator + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + true + mssql.* + + + + attach-javadocs + + jar + + + + + + org.codehaus.mojo + versions-maven-plugin + 2.5 + true + + outdated-dependencies.txt + file:///${session.executionRootDirectory}/maven-version-rules.xml + + + + org.jacoco + jacoco-maven-plugin + 0.8.9 + + + pre-test + + prepare-agent + + + + default-report + prepare-package + + report + + + + + + **/mssql/googlecode/**/* + **/mssql/security/**/* + + + + jacoco-execs/ + + **/*.exec + + + + + ${project.build.directory}/jacoco.exec + + + + org.apache.maven.plugins + maven-clean-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-resources-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + + org.apache.maven + maven-archiver + 3.4.0 + + + + diff --git a/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom.sha1 b/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom.sha1 new file mode 100644 index 000000000..b3a37519f --- /dev/null +++ b/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom.sha1 @@ -0,0 +1 @@ +70d487ee6dd908c60527158246d03baf18269511 \ No newline at end of file diff --git a/code/arachne/com/nimbusds/content-type/2.1/_remote.repositories b/code/arachne/com/nimbusds/content-type/2.1/_remote.repositories new file mode 100644 index 000000000..c1ff8047d --- /dev/null +++ b/code/arachne/com/nimbusds/content-type/2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:18 EDT 2024 +content-type-2.1.pom>central= diff --git a/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom b/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom new file mode 100644 index 000000000..0fb6cd7d7 --- /dev/null +++ b/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom @@ -0,0 +1,226 @@ + + + + 4.0.0 + + com.nimbusds + content-type + 2.1 + jar + + Nimbus Content Type + Java library for Content (Media) Type representation + https://bitbucket.org/connect2id/nimbus-content-type + + + Connect2id Ltd. + https://connect2id.com + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:https://bitbucket.org/connect2id/nimbus-content-type.git + scm:git:git@bitbucket.org:connect2id/nimbus-content-type.git + https://bitbucket.org/connect2id/nimbus-content-type + 2.1 + + + + + vdzhuvinov + Vladimir Dzhuvinov + vladimir@dzhuvinov.com + + + + + UTF-8 + + + + + junit + junit + 4.12 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 1.7 + 1.7 + true + -Xlint + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + + ${timestamp} + ${buildNumber} + ${project.scm.tag} + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + true + true + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + 1.7 + true + true + true + true + Nimbus Content Type v${project.version} + + Nimbus Content Type v${project.version} + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + deploy + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + + sign-artifacts + verify + + sign + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + + validate + + create + + + + + true + false + false + {0,date,yyyyMMdd.HHmmss.SSS} + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + org.apache.felix + maven-bundle-plugin + 2.5.4 + true + + + com.nimbusds.common.contenttype.* + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + diff --git a/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom.sha1 b/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom.sha1 new file mode 100644 index 000000000..926f72bde --- /dev/null +++ b/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom.sha1 @@ -0,0 +1 @@ +83827d3e200372469b2c7a6375a45e6308c69921 \ No newline at end of file diff --git a/code/arachne/com/nimbusds/content-type/2.3/_remote.repositories b/code/arachne/com/nimbusds/content-type/2.3/_remote.repositories new file mode 100644 index 000000000..1a784f103 --- /dev/null +++ b/code/arachne/com/nimbusds/content-type/2.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:10 EDT 2024 +content-type-2.3.pom>central= diff --git a/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom b/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom new file mode 100644 index 000000000..20d33fd9a --- /dev/null +++ b/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom @@ -0,0 +1,223 @@ + + + + 4.0.0 + + com.nimbusds + content-type + 2.3 + jar + + Nimbus Content Type + Java library for Content (Media) Type representation + https://bitbucket.org/connect2id/nimbus-content-type + + + Connect2id Ltd. + https://connect2id.com + + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:https://bitbucket.org/connect2id/nimbus-content-type.git + scm:git:git@bitbucket.org:connect2id/nimbus-content-type.git + https://bitbucket.org/connect2id/nimbus-content-type + 2.3 + + + + + vdzhuvinov + Vladimir Dzhuvinov + vladimir@dzhuvinov.com + + + + + UTF-8 + + + + + junit + junit + 4.13.2 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + 1.7 + 1.7 + true + -Xlint + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + ${timestamp} + ${buildNumber} + ${project.scm.tag} + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + true + true + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.0 + + 1.7 + true + true + true + true + Nimbus Content Type v${project.version} + + Nimbus Content Type v${project.version} + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-release-plugin + 3.0.1 + + false + deploy + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.1.0 + + + sign-artifacts + verify + + sign + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.2.0 + + + validate + + create + + + + + true + false + false + {0,date,yyyyMMdd.HHmmss.SSS} + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.1.2 + + + org.apache.felix + maven-bundle-plugin + 3.5.1 + true + + + com.nimbusds.common.contenttype.* + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + diff --git a/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom.sha1 b/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom.sha1 new file mode 100644 index 000000000..f46bedc6d --- /dev/null +++ b/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom.sha1 @@ -0,0 +1 @@ +2d2bb41036b46dd3f40aebf9dfb989271f672f1e \ No newline at end of file diff --git a/code/arachne/com/nimbusds/lang-tag/1.4.4/_remote.repositories b/code/arachne/com/nimbusds/lang-tag/1.4.4/_remote.repositories new file mode 100644 index 000000000..973ec0234 --- /dev/null +++ b/code/arachne/com/nimbusds/lang-tag/1.4.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:18 EDT 2024 +lang-tag-1.4.4.pom>central= diff --git a/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom b/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom new file mode 100644 index 000000000..6f03e06df --- /dev/null +++ b/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom @@ -0,0 +1,251 @@ + + + + 4.0.0 + + com.nimbusds + lang-tag + 1.4.4 + jar + + Nimbus LangTag + Java implementation of "Tags for Identifying Languages" + (RFC 5646). + + + https://bitbucket.org/connect2id/nimbus-language-tags + + + Connect2id Ltd. + http://connect2id.com/ + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + scm:git:https://bitbucket.org/connect2id/nimbus-language-tags.git + + + scm:git:git@bitbucket.org:connect2id/nimbus-language-tags.git + + https://bitbucket.org/connect2id/nimbus-language-tags.git + 1.4.4 + + + + + vdzhuvinov + Vladimir Dzhuvinov + vladimir@dzhuvinov.com + + + + + UTF-8 + + + + + net.minidev + json-smart + 2.3 + test + + + junit + junit + 4.12 + test + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + 1.6 + 1.6 + -Xlint + + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.3 + + + validate + + create + + + + + true + false + false + {0,date,yyyyMMdd.HHmmss.SSS} + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.0 + + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + ${timestamp} + ${buildNumber} + ${project.scm.tag} + + + true + + true + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + true + true + true + true + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.felix + maven-bundle-plugin + + + lang-tag + + com.nimbusds.langtag.*;version=${project.version} + + * + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + deploy + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + + org.apache.felix + maven-bundle-plugin + 2.5.0 + true + + + bundle-manifest + process-classes + + manifest + + + + + + + jar + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + diff --git a/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom.sha1 b/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom.sha1 new file mode 100644 index 000000000..fe7b5fe27 --- /dev/null +++ b/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom.sha1 @@ -0,0 +1 @@ +b7c28bf974eff8da6a73f3d3d30677c8026d32cb \ No newline at end of file diff --git a/code/arachne/com/nimbusds/lang-tag/1.7/_remote.repositories b/code/arachne/com/nimbusds/lang-tag/1.7/_remote.repositories new file mode 100644 index 000000000..6979a0ca2 --- /dev/null +++ b/code/arachne/com/nimbusds/lang-tag/1.7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:10 EDT 2024 +lang-tag-1.7.pom>central= diff --git a/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom b/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom new file mode 100644 index 000000000..6de6cc5dd --- /dev/null +++ b/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom @@ -0,0 +1,236 @@ + + + + 4.0.0 + + com.nimbusds + lang-tag + 1.7 + jar + + Nimbus LangTag + Java implementation of "Tags for Identifying Languages" (RFC 5646) + + https://bitbucket.org/connect2id/nimbus-language-tags + + + Connect2id Ltd. + https://connect2id.com/ + + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:https://bitbucket.org/connect2id/nimbus-language-tags.git + scm:git:git@bitbucket.org:connect2id/nimbus-language-tags.git + https://bitbucket.org/connect2id/nimbus-language-tags.git + 1.7 + + + + + vdzhuvinov + Vladimir Dzhuvinov + vladimir@dzhuvinov.com + + + + + UTF-8 + + + + + net.minidev + json-smart + 2.4.8 + test + + + junit + junit + 4.13.2 + test + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 1.6 + 1.6 + -Xlint + + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + + validate + + create + + + + + true + false + false + {0,date,yyyyMMdd.HHmmss.SSS} + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + ${timestamp} + ${buildNumber} + ${project.scm.tag} + + + true + + true + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.1.1 + + true + true + true + true + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + deploy + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + org.apache.felix + maven-bundle-plugin + 2.5.4 + true + + + bundle-manifest + process-classes + + manifest + + + + + + lang-tag + com.nimbusds.langtag.*;version=${project.version} + * + + + + jar + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + diff --git a/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom.sha1 b/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom.sha1 new file mode 100644 index 000000000..3c4b238fc --- /dev/null +++ b/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom.sha1 @@ -0,0 +1 @@ +2de15dcb52c78653ca3eb3c9855513b9948e7efc \ No newline at end of file diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/_remote.repositories b/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/_remote.repositories new file mode 100644 index 000000000..df5bcdbc0 --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:18 EDT 2024 +nimbus-jose-jwt-8.18.pom>central= diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom b/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom new file mode 100644 index 000000000..381ce3f57 --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom @@ -0,0 +1,318 @@ + + + + 4.0.0 + + com.nimbusds + nimbus-jose-jwt + 8.18 + jar + + Nimbus JOSE+JWT + + Java library for Javascript Object Signing and Encryption (JOSE) and + JSON Web Tokens (JWT) + + https://bitbucket.org/connect2id/nimbus-jose-jwt + + + Connect2id Ltd. + http://connect2id.com + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:https://bitbucket.org/connect2id/nimbus-jose-jwt.git + scm:git:git@bitbucket.org:connect2id/nimbus-jose-jwt.git + https://bitbucket.org/connect2id/nimbus-jose-jwt + 8.18 + + + + + vdzhuvinov + Vladimir Dzhuvinov + vladimir@dzhuvinov.com + + + + + UTF-8 + + + + + com.github.stephenc.jcip + jcip-annotations + 1.0-1 + + + net.minidev + json-smart + [1.3.1,2.3] + + + org.bouncycastle + bcprov-jdk15on + [1.52,) + true + + + org.bouncycastle + bcpkix-jdk15on + [1.52,) + true + + + org.bitbucket.b_c + jose4j + 0.4.1 + test + + + net.jadler + jadler-all + 1.1.1 + test + + + junit + junit + 4.12 + test + + + com.google.crypto.tink + tink + 1.2.2 + true + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + 1.7 + 1.7 + true + -Xlint + + + + + org.codehaus.plexus + plexus-compiler-eclipse + 2.5 + + + + + default-compile + + + jdk6-compile + compile + + compile + + + 1.7 + 1.6 + eclipse + ${project.build.outputDirectory}_jdk6 + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.0 + + + + ${timestamp} + ${buildNumber} + ${project.scm.tag} + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + true + true + + + + + + default-jar + + + jdk6-jar + + jar + + + ${project.build.outputDirectory}_jdk6 + jdk6 + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.0 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.3 + + true + true + true + true + Nimbus JOSE + JWT v${project.version} + + Nimbus JOSE + JWT v${project.version} + ${basedir}/src/main/javadoc/overview.html + + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + deploy + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + + sign-artifacts + verify + + sign + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.3 + + + validate + + create + + + + + true + false + false + {0,date,yyyyMMdd.HHmmss.SSS} + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + + false + + + + org.apache.felix + maven-bundle-plugin + 2.5.0 + true + + + com.nimbusds.jose.*,com.nimbusds.jwt.* + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom.sha1 b/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom.sha1 new file mode 100644 index 000000000..c65157b76 --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom.sha1 @@ -0,0 +1 @@ +5f3ceada1d3d8f2c9fadd048fced4251b07b950f \ No newline at end of file diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/_remote.repositories b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/_remote.repositories new file mode 100644 index 000000000..4e3e89460 --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:10 EDT 2024 +nimbus-jose-jwt-9.37.3.pom>central= diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom new file mode 100644 index 000000000..599c8b842 --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom @@ -0,0 +1,381 @@ + + + 4.0.0 + com.nimbusds + nimbus-jose-jwt + Nimbus JOSE+JWT + 9.37.3 + Java library for Javascript Object Signing and Encryption (JOSE) and + JSON Web Tokens (JWT) + https://bitbucket.org/connect2id/nimbus-jose-jwt + + + vdzhuvinov + Vladimir Dzhuvinov + vladimir@dzhuvinov.com + + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:https://bitbucket.org/connect2id/nimbus-jose-jwt.git + scm:git:git@bitbucket.org:connect2id/nimbus-jose-jwt.git + 9.37.3 + https://bitbucket.org/connect2id/nimbus-jose-jwt + + + Connect2id Ltd. + https://connect2id.com + + + + + maven-compiler-plugin + 3.5.1 + + + default-compile + + + + + org.codehaus.plexus + plexus-compiler-eclipse + 2.5 + + + + 1.7 + 1.7 + true + -Xlint + + + + maven-shade-plugin + 3.4.1 + + + package + + shade + + + + + + + com.google.gson + com.nimbusds.jose.shaded.gson + + + + + com.google.code.gson:gson + + + + + com.google.code.gson:gson + + **/module-info.class + + + + + + + maven-jar-plugin + 3.1.0 + + + default-jar + + + + + + ${timestamp} + ${buildNumber} + ${project.scm.tag} + com.nimbusds.jose.jwt + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + true + true + + + + + + maven-source-plugin + 3.0.0 + + + attach-sources + + jar + + + + + + maven-javadoc-plugin + 2.10.3 + + + attach-javadocs + + jar + + + + + true + true + true + true + Nimbus JOSE + JWT v${project.version} + Nimbus JOSE + JWT v${project.version} + ${basedir}/src/main/javadoc/overview.html + + + + maven-deploy-plugin + 2.8.2 + + + maven-release-plugin + 2.5.3 + + false + deploy + + + + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.3 + + + validate + + create + + + + + true + false + false + {0,date,yyyyMMdd.HHmmss.SSS} + + + + maven-surefire-plugin + 2.22.2 + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + jacoco-init + + prepare-agent + + + + jacoco-report + test + + report + + + + + + org.apache.felix + maven-bundle-plugin + 2.5.0 + true + + + bundle-manifest + process-classes + + manifest + + + + + + com.nimbusds.jose.*,com.nimbusds.jwt.* + !net.minidev.json*,* + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + com.github.stephenc.jcip + jcip-annotations + 1.0-1 + compile + + + org.bouncycastle + bcprov-jdk18on + 1.77 + compile + true + + + org.bouncycastle + bcutil-jdk18on + 1.77 + compile + true + + + org.bouncycastle + bc-fips + [1.0.2,2.0.0) + compile + true + + + org.bouncycastle + bcpkix-jdk18on + 1.77 + compile + true + + + com.google.crypto.tink + tink + 1.12.0 + compile + + + protobuf-java + com.google.protobuf + + + gson + com.google.code.gson + + + true + + + org.bitbucket.b_c + jose4j + 0.9.2 + test + + + slf4j-api + org.slf4j + + + + + net.jadler + jadler-all + 1.3.1 + test + + + jadler-core + net.jadler + + + jadler-jetty + net.jadler + + + jadler-junit + net.jadler + + + + + junit + junit + 4.13.2 + test + + + hamcrest-core + org.hamcrest + + + + + org.mockito + mockito-core + 2.25.0 + test + + + byte-buddy + net.bytebuddy + + + byte-buddy-agent + net.bytebuddy + + + objenesis + org.objenesis + + + + + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + + UTF-8 + + diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom.sha1 b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom.sha1 new file mode 100644 index 000000000..a99ddd9d7 --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom.sha1 @@ -0,0 +1 @@ +bf365bde37338a7aef7928b3a8fbaef259458213 \ No newline at end of file diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/_remote.repositories b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/_remote.repositories new file mode 100644 index 000000000..427545052 --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:10 EDT 2024 +nimbus-jose-jwt-9.39.1.pom>central= diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom new file mode 100644 index 000000000..d4cbf2287 --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom @@ -0,0 +1,478 @@ + + + 4.0.0 + com.nimbusds + nimbus-jose-jwt + Nimbus JOSE+JWT + 9.39.1 + Java library for Javascript Object Signing and Encryption (JOSE) and + JSON Web Tokens (JWT) + https://bitbucket.org/connect2id/nimbus-jose-jwt + + + vdzhuvinov + Vladimir Dzhuvinov + vladimir@dzhuvinov.com + + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:https://bitbucket.org/connect2id/nimbus-jose-jwt.git + scm:git:git@bitbucket.org:connect2id/nimbus-jose-jwt.git + 9.39.1 + https://bitbucket.org/connect2id/nimbus-jose-jwt + + + Connect2id Ltd. + https://connect2id.com + + + + + maven-compiler-plugin + 3.13.0 + + + default-compile + + + ${project.build.sourceDirectory} + ${java7path} + + + + + java9 + compile + + compile + + + 9 + + ${java9path} + + true + + + + + + org.codehaus.plexus + plexus-compiler-eclipse + 2.15.0 + + + + 1.7 + 1.7 + true + -Xlint + + + + maven-shade-plugin + 3.5.3 + + + package + + shade + + + + + ${jar.attachClassifier} + ${jar.classifier} + + + com.google.gson + com.nimbusds.jose.shaded.gson + + + net.jcip.annotations + com.nimbusds.jose.shaded.jcip + + + + + com.google.code.gson:gson + com.github.stephenc.jcip:jcip-annotations + + + + + com.google.code.gson:gson + + **/module-info.class + + + + + + + maven-jar-plugin + 3.3.0 + + + default-jar + + + + + + true + ${timestamp} + ${buildNumber} + ${project.scm.tag} + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + true + true + + + + + + maven-source-plugin + 3.3.1 + + + attach-sources + + jar + + + + + + maven-javadoc-plugin + 3.6.3 + + + attach-javadocs + + jar + + + + + 7 + true + true + true + true + Nimbus JOSE + JWT v${project.version} + Nimbus JOSE + JWT v${project.version} + ${basedir}/src/main/javadoc/overview.html + + + + maven-deploy-plugin + 3.1.2 + + + maven-release-plugin + 3.0.1 + + false + deploy + + + + maven-gpg-plugin + 3.2.4 + + + sign-artifacts + verify + + sign + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.2.0 + + + validate + + create + + + + + true + false + false + {0,date,yyyyMMdd.HHmmss.SSS} + + + + maven-surefire-plugin + 3.2.5 + + + ${test.profile} + + + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + jacoco-init + + prepare-agent + + + + jacoco-report + test + + report + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + true + + + bundle-manifest + process-classes + + manifest + + + + + + com.nimbusds.jose.*,com.nimbusds.jwt.* + !net.minidev.json*,* + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + + org.bouncycastle + bcprov-jdk18on + 1.78 + compile + true + + + org.bouncycastle + bcutil-jdk18on + 1.78 + compile + true + + + org.bouncycastle + bcpkix-jdk18on + 1.78 + compile + true + + + + ${project.basedir}/src/main/java7 + false + ${project.basedir}/src/main/java9 + + + + fips + + + + maven-surefire-plugin + + + org.bouncycastle:bcprov-jdk18on + + + **/ECParameterTableTest.java + + + + + + + + org.bouncycastle + bc-fips + 1.0.2.5 + true + + + org.bouncycastle + bcpkix-fips + 1.0.7 + true + + + + ${project.basedir}/src/main/java7-fips + true + fips + fips + ${project.basedir}/src/main/java9-fips + + + + + + com.google.crypto.tink + tink + 1.13.0 + compile + + + protobuf-java + com.google.protobuf + + + gson + com.google.code.gson + + + true + + + org.bouncycastle + bcprov-jdk18on + 1.78 + compile + true + + + org.bitbucket.b_c + jose4j + 0.9.6 + test + + + slf4j-api + org.slf4j + + + + + net.jadler + jadler-all + 1.3.1 + test + + + jadler-core + net.jadler + + + jadler-jetty + net.jadler + + + jadler-junit + net.jadler + + + + + org.hamcrest + hamcrest-core + 2.2 + test + + + hamcrest + org.hamcrest + + + + + junit + junit + 4.13.2 + test + + + org.mockito + mockito-core + 2.25.0 + test + + + byte-buddy + net.bytebuddy + + + byte-buddy-agent + net.bytebuddy + + + objenesis + org.objenesis + + + + + org.bouncycastle + bcutil-jdk18on + 1.78 + compile + true + + + org.bouncycastle + bcpkix-jdk18on + 1.78 + compile + true + + + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + + UTF-8 + + diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom.sha1 b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom.sha1 new file mode 100644 index 000000000..f0a2aedfa --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom.sha1 @@ -0,0 +1 @@ +7b7871bdaf071229785e8843800bc588b682c878 \ No newline at end of file diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/_remote.repositories b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/_remote.repositories new file mode 100644 index 000000000..2c3b101fb --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:10 EDT 2024 +nimbus-jose-jwt-9.40.pom>central= diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom new file mode 100644 index 000000000..a0f661337 --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom @@ -0,0 +1,478 @@ + + + 4.0.0 + com.nimbusds + nimbus-jose-jwt + Nimbus JOSE+JWT + 9.40 + Java library for Javascript Object Signing and Encryption (JOSE) and + JSON Web Tokens (JWT) + https://bitbucket.org/connect2id/nimbus-jose-jwt + + + vdzhuvinov + Vladimir Dzhuvinov + vladimir@dzhuvinov.com + + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:https://bitbucket.org/connect2id/nimbus-jose-jwt.git + scm:git:git@bitbucket.org:connect2id/nimbus-jose-jwt.git + 9.40 + https://bitbucket.org/connect2id/nimbus-jose-jwt + + + Connect2id Ltd. + https://connect2id.com + + + + + maven-compiler-plugin + 3.13.0 + + + default-compile + + + ${project.build.sourceDirectory} + ${java7path} + + + + + java9 + compile + + compile + + + 9 + + ${java9path} + + true + + + + + + org.codehaus.plexus + plexus-compiler-eclipse + 2.15.0 + + + + 1.7 + 1.7 + true + -Xlint + + + + maven-shade-plugin + 3.5.3 + + + package + + shade + + + + + ${jar.attachClassifier} + ${jar.classifier} + + + com.google.gson + com.nimbusds.jose.shaded.gson + + + net.jcip.annotations + com.nimbusds.jose.shaded.jcip + + + + + com.google.code.gson:gson + com.github.stephenc.jcip:jcip-annotations + + + + + com.google.code.gson:gson + + **/module-info.class + + + + + + + maven-jar-plugin + 3.3.0 + + + default-jar + + + + + + true + ${timestamp} + ${buildNumber} + ${project.scm.tag} + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + true + true + + + + + + maven-source-plugin + 3.3.1 + + + attach-sources + + jar + + + + + + maven-javadoc-plugin + 3.6.3 + + + attach-javadocs + + jar + + + + + 7 + true + true + true + true + Nimbus JOSE + JWT v${project.version} + Nimbus JOSE + JWT v${project.version} + ${basedir}/src/main/javadoc/overview.html + + + + maven-deploy-plugin + 3.1.2 + + + maven-release-plugin + 3.0.1 + + false + deploy + + + + maven-gpg-plugin + 3.2.4 + + + sign-artifacts + verify + + sign + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.2.0 + + + validate + + create + + + + + true + false + false + {0,date,yyyyMMdd.HHmmss.SSS} + + + + maven-surefire-plugin + 3.2.5 + + + ${test.profile} + + + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + jacoco-init + + prepare-agent + + + + jacoco-report + test + + report + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + true + + + bundle-manifest + process-classes + + manifest + + + + + + com.nimbusds.jose.*,com.nimbusds.jwt.* + !net.minidev.json*,* + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + + org.bouncycastle + bcprov-jdk18on + 1.78 + compile + true + + + org.bouncycastle + bcutil-jdk18on + 1.78 + compile + true + + + org.bouncycastle + bcpkix-jdk18on + 1.78 + compile + true + + + + ${project.basedir}/src/main/java7 + false + ${project.basedir}/src/main/java9 + + + + fips + + + + maven-surefire-plugin + + + org.bouncycastle:bcprov-jdk18on + + + **/ECParameterTableTest.java + + + + + + + + org.bouncycastle + bc-fips + 1.0.2.5 + true + + + org.bouncycastle + bcpkix-fips + 1.0.7 + true + + + + ${project.basedir}/src/main/java7-fips + true + fips + fips + ${project.basedir}/src/main/java9-fips + + + + + + com.google.crypto.tink + tink + 1.13.0 + compile + + + protobuf-java + com.google.protobuf + + + gson + com.google.code.gson + + + true + + + org.bouncycastle + bcprov-jdk18on + 1.78 + compile + true + + + org.bitbucket.b_c + jose4j + 0.9.6 + test + + + slf4j-api + org.slf4j + + + + + net.jadler + jadler-all + 1.3.1 + test + + + jadler-core + net.jadler + + + jadler-jetty + net.jadler + + + jadler-junit + net.jadler + + + + + org.hamcrest + hamcrest-core + 2.2 + test + + + hamcrest + org.hamcrest + + + + + junit + junit + 4.13.2 + test + + + org.mockito + mockito-core + 2.25.0 + test + + + byte-buddy + net.bytebuddy + + + byte-buddy-agent + net.bytebuddy + + + objenesis + org.objenesis + + + + + org.bouncycastle + bcutil-jdk18on + 1.78 + compile + true + + + org.bouncycastle + bcpkix-jdk18on + 1.78 + compile + true + + + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + + UTF-8 + + diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom.sha1 b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom.sha1 new file mode 100644 index 000000000..3c350ac43 --- /dev/null +++ b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom.sha1 @@ -0,0 +1 @@ +dce91186ec8fa908460eedc2207a9ff4a94911ec \ No newline at end of file diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/_remote.repositories b/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/_remote.repositories new file mode 100644 index 000000000..de6623222 --- /dev/null +++ b/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:10 EDT 2024 +oauth2-oidc-sdk-11.12.pom>central= diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom b/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom new file mode 100644 index 000000000..ee2991b13 --- /dev/null +++ b/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom @@ -0,0 +1,522 @@ + + + + 4.0.0 + + com.nimbusds + oauth2-oidc-sdk + 11.12 + jar + + OAuth 2.0 SDK with OpenID Connect extensions + + OAuth 2.0 SDK with OpenID Connection extensions for developing client + and server applications. + + https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions + + + Connect2id Ltd. + https://connect2id.com + + + + + Apache License, version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.html + repo + + + + + scm:git:https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions.git + scm:git:git@bitbucket.org:connect2id/oauth-2.0-sdk-with-openid-connect-extensions.git + https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions + 11.12 + + + + + vdzhuvinov + Vladimir Dzhuvinov + vd@connect2id.com + + + + + UTF-8 + + + + + shibboleth-repo + Shibboleth repo for OpenSAML dependencies + https://build.shibboleth.net/nexus/content/repositories/releases/ + + + + + + com.github.stephenc.jcip + jcip-annotations + 1.0-1 + + + com.nimbusds + content-type + 2.3 + + + net.minidev + json-smart + 2.5.1 + + + com.nimbusds + lang-tag + 1.7 + + + com.nimbusds + nimbus-jose-jwt + 9.39.1 + + + com.google.crypto.tink + tink + 1.13.0 + true + + + org.bouncycastle + bcprov-jdk18on + 1.78 + true + + + org.bouncycastle + bcpkix-jdk18on + 1.78 + true + + + org.cryptomator + siv-mode + 1.4.4 + true + + + org.opensaml + opensaml-core + 3.4.6 + true + + + org.bouncycastle + bcprov-jdk15on + + + + + org.opensaml + opensaml-saml-api + 3.4.6 + true + + + + org.bouncycastle + bcprov-jdk15on + + + + + org.opensaml + opensaml-saml-impl + 3.4.6 + true + + + + org.bouncycastle + bcprov-jdk15on + + + + org.apache.velocity + velocity + + + + org.apache.httpcomponents + httpclient + + + + + + org.apache.santuario + xmlsec + 2.3.4 + true + + + + com.fasterxml.woodstox + woodstox-core + 6.4.0 + true + + + + com.google.guava + guava + 32.0.1-jre + true + + + + commons-codec + commons-codec + 1.15 + true + + + jakarta.servlet + jakarta.servlet-api + 5.0.0 + provided + true + + + javax.servlet + javax.servlet-api + 3.0.1 + provided + true + + + junit + junit + 4.13.2 + test + + + net.jadler + jadler-all + 1.3.1 + test + + + org.apache.commons + commons-math3 + 3.6.1 + test + + + org.mockito + mockito-core + 2.25.0 + test + + + com.thetransactioncompany + pretty-json + 1.5 + test + + + org.apache.httpcomponents + httpclient + 4.5.14 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.12.1 + + 1.7 + 1.7 + true + -Xlint + + + + + org.codehaus.plexus + plexus-compiler-eclipse + 2.14.2 + + + + + default-compile + + + jdk8-compile + compile + + compile + + + 1.7 + 1.8 + ${project.build.outputDirectory}_jdk8 + + + + jdk11-compile + compile + + compile + + + 1.7 + 11 + ${project.build.outputDirectory}_jdk11 + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + ${timestamp} + ${buildNumber} + ${project.scm.tag} + connect2id + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + true + true + + + + + + default-jar + + + jdk8-jar + + jar + + + ${project.build.outputDirectory}_jdk8 + jdk8 + + + + jdk11-jar + + jar + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + com.nimbusds.oauth2.sdk + + + ${project.build.outputDirectory}_jdk11 + jdk11 + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + 8 + true + true + true + true + Nimbus OAuth 2.0 SDK with OpenID Connect 1.0 extensions v${project.version} + + Nimbus OAuth 2.0 SDK with OpenID Connect 1.0 extensions v${project.version} + ${basedir}/src/main/javadoc/overview.html + + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-release-plugin + 3.0.1 + + false + deploy + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.1.0 + + + sign-artifacts + verify + + sign + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.1.0 + + + validate + + create + + + + + true + false + false + {0,date,yyyyMMdd.HHmmss.SSS} + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.3 + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + jacoco-init + + prepare-agent + + + + jacoco-report + test + + report + + + + + + biz.aQute.bnd + bnd-maven-plugin + 6.3.1 + true + + + bnd-process + + bnd-process + + + + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + org.owasp + dependency-check-maven + 9.0.7 + + + + check + + + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom.sha1 b/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom.sha1 new file mode 100644 index 000000000..3249db7c7 --- /dev/null +++ b/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom.sha1 @@ -0,0 +1 @@ +55e227da0da2d9ba5cb54cd4085205274874e76f \ No newline at end of file diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/_remote.repositories b/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/_remote.repositories new file mode 100644 index 000000000..6be0f28aa --- /dev/null +++ b/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:18 EDT 2024 +oauth2-oidc-sdk-8.23.1.pom>central= diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom b/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom new file mode 100644 index 000000000..c4348dd02 --- /dev/null +++ b/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom @@ -0,0 +1,390 @@ + + + + 4.0.0 + + com.nimbusds + oauth2-oidc-sdk + 8.23.1 + jar + + OAuth 2.0 SDK with OpenID Connect extensions + + OAuth 2.0 SDK with OpenID Connection extensions for developing + client and server applications. + + + https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions + + + Connect2id Ltd. + https://connect2id.com + + + + + Apache License, version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.html‎ + repo + + + + + scm:git:https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions.git + scm:git:git@bitbucket.org:connect2id/oauth-2.0-sdk-with-openid-connect-extensions.git + https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions + 8.23.1 + + + + + vdzhuvinov + Vladimir Dzhuvinov + vd@connect2id.com + + + + + UTF-8 + + + + + com.github.stephenc.jcip + jcip-annotations + 1.0-1 + + + com.nimbusds + content-type + 2.1 + + + net.minidev + json-smart + [1.3.1,2.3] + + + com.nimbusds + lang-tag + 1.4.4 + + + com.nimbusds + nimbus-jose-jwt + 8.18 + + + org.bouncycastle + bcprov-jdk15on + 1.65 + true + + + org.bouncycastle + bcpkix-jdk15on + 1.65 + true + + + org.cryptomator + siv-mode + 1.3.2 + true + + + org.opensaml + opensaml-core + 3.4.5 + true + + + org.opensaml + opensaml-saml-api + 3.4.5 + true + + + org.opensaml + opensaml-saml-impl + 3.4.5 + true + + + javax.servlet + javax.servlet-api + 3.0.1 + provided + true + + + junit + junit + 4.12 + test + + + net.jadler + jadler-all + 1.3.0 + test + + + org.apache.commons + commons-math3 + 3.6.1 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + 1.7 + 1.7 + true + -Xlint + + + + + org.codehaus.plexus + plexus-compiler-eclipse + 2.5 + + + + + default-compile + + + jdk8-compile + compile + + compile + + + 1.7 + 1.8 + ${project.build.outputDirectory}_jdk8 + + + + jdk10-compile + compile + + compile + + + 1.7 + 10 + ${project.build.outputDirectory}_jdk10 + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.0 + + + + ${timestamp} + ${buildNumber} + ${project.scm.tag} + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + true + true + + + + + + default-jar + + + jdk8-jar + + jar + + + ${project.build.outputDirectory}_jdk8 + jdk8 + + + + jdk10-jar + + jar + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + com.nimbusds.oauth2.sdk + + + ${project.build.outputDirectory}_jdk10 + jdk10 + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.1 + + 8 + true + true + true + true + Nimbus OAuth 2.0 SDK with OpenID Connect 1.0 extensions v${project.version} + + Nimbus OAuth 2.0 SDK with OpenID Connect 1.0 extensions v${project.version} + ${basedir}/src/main/javadoc/overview.html + + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + deploy + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + + sign-artifacts + verify + + sign + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.3 + + + validate + + create + + + + + true + false + false + {0,date,yyyyMMdd.HHmmss.SSS} + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.0 + + + false + + + + org.apache.felix + maven-bundle-plugin + 3.5.1 + true + + + ${project.artifactId} + ${project.version} + com.nimbusds.oauth2.*;version=${project.version},com.nimbusds.openid.*;version=${project.version} + * + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom.sha1 b/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom.sha1 new file mode 100644 index 000000000..e7f8f2089 --- /dev/null +++ b/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom.sha1 @@ -0,0 +1 @@ +a736be50f6bb265d234c2ca02be8c760243a86ce \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/_remote.repositories b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/_remote.repositories new file mode 100644 index 000000000..cc28ea949 --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:09 EDT 2024 +arachne-common-utils-1.16.2-20200914.105631-15.pom>ohdsi.snapshots= diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom new file mode 100644 index 000000000..a2fbd3a10 --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom @@ -0,0 +1,68 @@ + + + + arachne-commons-bundle + com.odysseusinc.arachne + 1.16.2-SNAPSHOT + ../pom.xml + + 4.0.0 + + arachne-common-utils + + + 1.8 + 5.1.7.RELEASE + 4.0.6 + 2.5 + + + + + com.github.jknack + handlebars + ${handlebars.version} + + + commons-io + commons-io + ${commons.io.version} + + + junit + junit + 4.12 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.7.0 + + ${java.version} + ${java.version} + + + + + + + + artifactory + Odysseus community snapshots + http://repo.odysseusinc.com/artifactory/community-libs-snapshot-local + + + artifactory + Odysseus community releases + http://repo.odysseusinc.com/artifactory/community-libs-release-local + + + + \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.lastUpdated b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.lastUpdated new file mode 100644 index 000000000..e829607c8 --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:09 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +https\://repo.ohdsi.org/nexus/content/repositories/snapshots/.lastUpdated=1721139909117 +http\://0.0.0.0/.error=Could not transfer artifact com.odysseusinc.arachne\:arachne-common-utils\:pom\:1.16.2-20200914.105631-15 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139909039 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139909046 +https\://repo1.maven.org/maven2/.lastUpdated=1721139908938 diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.sha1 new file mode 100644 index 000000000..c4db1a0d0 --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.sha1 @@ -0,0 +1 @@ +ef66778a9f78e7c0a00e9cd08225c696abe6e98b \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-SNAPSHOT.pom b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-SNAPSHOT.pom new file mode 100644 index 000000000..a2fbd3a10 --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-SNAPSHOT.pom @@ -0,0 +1,68 @@ + + + + arachne-commons-bundle + com.odysseusinc.arachne + 1.16.2-SNAPSHOT + ../pom.xml + + 4.0.0 + + arachne-common-utils + + + 1.8 + 5.1.7.RELEASE + 4.0.6 + 2.5 + + + + + com.github.jknack + handlebars + ${handlebars.version} + + + commons-io + commons-io + ${commons.io.version} + + + junit + junit + 4.12 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.7.0 + + ${java.version} + ${java.version} + + + + + + + + artifactory + Odysseus community snapshots + http://repo.odysseusinc.com/artifactory/community-libs-snapshot-local + + + artifactory + Odysseus community releases + http://repo.odysseusinc.com/artifactory/community-libs-release-local + + + + \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml new file mode 100644 index 000000000..6410e76ab --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml @@ -0,0 +1,25 @@ + + + com.odysseusinc.arachne + arachne-common-utils + 1.16.2-SNAPSHOT + + + 20200914.105631 + 15 + + 20200914105631 + + + jar + 1.16.2-20200914.105631-15 + 20200914105631 + + + pom + 1.16.2-20200914.105631-15 + 20200914105631 + + + + diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 new file mode 100644 index 000000000..5578e2f4e --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 @@ -0,0 +1 @@ +ae2ed7ad75810a1ec448dfc404e6c3e5a266e4ad \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml new file mode 100644 index 000000000..6410e76ab --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml @@ -0,0 +1,25 @@ + + + com.odysseusinc.arachne + arachne-common-utils + 1.16.2-SNAPSHOT + + + 20200914.105631 + 15 + + 20200914105631 + + + jar + 1.16.2-20200914.105631-15 + 20200914105631 + + + pom + 1.16.2-20200914.105631-15 + 20200914105631 + + + + diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 new file mode 100644 index 000000000..5578e2f4e --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 @@ -0,0 +1 @@ +ae2ed7ad75810a1ec448dfc404e6c3e5a266e4ad \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/resolver-status.properties b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/resolver-status.properties new file mode 100644 index 000000000..5d28366fd --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/resolver-status.properties @@ -0,0 +1,14 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 12:51:19 EDT 2024 +maven-metadata-ohdsi.snapshots.xml.lastUpdated=1721139908805 +maven-metadata-maven-default-http-blocker.xml.error=Could not transfer metadata com.odysseusinc.arachne\:arachne-common-utils\:1.16.2-SNAPSHOT/maven-metadata.xml from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots)] +maven-metadata-jboss-public-repository-group.xml.error= +maven-metadata-jboss-public-repository-group.xml.lastUpdated=1721139908792 +maven-metadata-central.xml.error= +maven-metadata-maven-default-http-blocker.xml/@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148679237 +maven-metadata-jitpack.io.xml.lastUpdated=1721139908812 +maven-metadata-local-repo.xml.error= +maven-metadata-local-repo.xml.lastUpdated=1721139908814 +maven-metadata-central.xml.lastUpdated=1721139908788 +maven-metadata-ohdsi.xml.lastUpdated=1721139908809 +maven-metadata-jitpack.io.xml.error= diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.jar b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..2cdef56d5b54ebffdab64d63572f10afd2215103 GIT binary patch literal 11623 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 literal 0 HcmV?d00001 diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.pom.lastUpdated b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.pom.lastUpdated new file mode 100644 index 000000000..f2a05b78a --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.pom.lastUpdated @@ -0,0 +1,16 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 12:51:17 EDT 2024 +file\:///code/arachne/.lastUpdated=1721139899991 +http\://0.0.0.0/.error=Could not transfer artifact com.odysseusinc.arachne\:arachne-common-utils\:pom\:3.x-MDACA from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148677714 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139899905 +https\://jitpack.io/.error= +https\://repo1.maven.org/maven2/.lastUpdated=1721139899624 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +https\://repo.ohdsi.org/nexus/content/groups/public/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139899742 +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139899854 +file\:///code/arachne/.error= +https\://jitpack.io/.lastUpdated=1721139899980 diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/_remote.repositories b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/_remote.repositories new file mode 100644 index 000000000..a6ca4032d --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:09 EDT 2024 +arachne-commons-bundle-1.16.2-20200914.105632-15.pom>ohdsi.snapshots= diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom new file mode 100644 index 000000000..e4e80b52f --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom @@ -0,0 +1,63 @@ + + + 4.0.0 + + arachne-commons-bundle + com.odysseusinc.arachne + 1.16.2-SNAPSHOT + pom + + + arachne-commons + arachne-sys-settings + execution-engine-commons + arachne-storage + arachne-no-handler-found-exception-util + logging + data-source-manager + arachne-scheduler + arachne-common-types + arachne-common-utils + + + + 5.1.17.RELEASE + 1.2.0.RELEASE + 1.5.22.RELEASE + 8.5.55 + 1.8 + 1.8 + 1.8 + + + + + artifactory + Odysseus community snapshots + http://repo.odysseusinc.com/artifactory/community-libs-snapshot-local + + + artifactory + Odysseus community releases + http://repo.odysseusinc.com/artifactory/community-libs-release-local + + + + + + + org.springframework + spring-webmvc + ${spring.version} + + + org.apache.tomcat.embed + tomcat-embed-core + ${tomcat.version} + + + + + \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom.sha1 new file mode 100644 index 000000000..90427653f --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom.sha1 @@ -0,0 +1 @@ +4aed478a4fb8152dee53f83847a4fa60e3a22028 \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-SNAPSHOT.pom b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-SNAPSHOT.pom new file mode 100644 index 000000000..e4e80b52f --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-SNAPSHOT.pom @@ -0,0 +1,63 @@ + + + 4.0.0 + + arachne-commons-bundle + com.odysseusinc.arachne + 1.16.2-SNAPSHOT + pom + + + arachne-commons + arachne-sys-settings + execution-engine-commons + arachne-storage + arachne-no-handler-found-exception-util + logging + data-source-manager + arachne-scheduler + arachne-common-types + arachne-common-utils + + + + 5.1.17.RELEASE + 1.2.0.RELEASE + 1.5.22.RELEASE + 8.5.55 + 1.8 + 1.8 + 1.8 + + + + + artifactory + Odysseus community snapshots + http://repo.odysseusinc.com/artifactory/community-libs-snapshot-local + + + artifactory + Odysseus community releases + http://repo.odysseusinc.com/artifactory/community-libs-release-local + + + + + + + org.springframework + spring-webmvc + ${spring.version} + + + org.apache.tomcat.embed + tomcat-embed-core + ${tomcat.version} + + + + + \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml new file mode 100644 index 000000000..6cd55f549 --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml @@ -0,0 +1,20 @@ + + + com.odysseusinc.arachne + arachne-commons-bundle + 1.16.2-SNAPSHOT + + + 20200914.105632 + 15 + + 20200914105632 + + + pom + 1.16.2-20200914.105632-15 + 20200914105632 + + + + diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 new file mode 100644 index 000000000..588a9b5ad --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 @@ -0,0 +1 @@ +137f00295f30676450383aefcdb8627ca466c912 \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml new file mode 100644 index 000000000..6cd55f549 --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml @@ -0,0 +1,20 @@ + + + com.odysseusinc.arachne + arachne-commons-bundle + 1.16.2-SNAPSHOT + + + 20200914.105632 + 15 + + 20200914105632 + + + pom + 1.16.2-20200914.105632-15 + 20200914105632 + + + + diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 new file mode 100644 index 000000000..588a9b5ad --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 @@ -0,0 +1 @@ +137f00295f30676450383aefcdb8627ca466c912 \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/resolver-status.properties b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/resolver-status.properties new file mode 100644 index 000000000..1bdc8f599 --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/resolver-status.properties @@ -0,0 +1,14 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 12:51:19 EDT 2024 +maven-metadata-ohdsi.snapshots.xml.lastUpdated=1721139909405 +maven-metadata-maven-default-http-blocker.xml.error=Could not transfer metadata com.odysseusinc.arachne\:arachne-commons-bundle\:1.16.2-SNAPSHOT/maven-metadata.xml from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots)] +maven-metadata-jboss-public-repository-group.xml.error= +maven-metadata-jboss-public-repository-group.xml.lastUpdated=1721139909393 +maven-metadata-central.xml.error= +maven-metadata-maven-default-http-blocker.xml/@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148679582 +maven-metadata-jitpack.io.xml.lastUpdated=1721139909411 +maven-metadata-local-repo.xml.error= +maven-metadata-local-repo.xml.lastUpdated=1721139909413 +maven-metadata-central.xml.lastUpdated=1721139909388 +maven-metadata-ohdsi.xml.lastUpdated=1721139909408 +maven-metadata-jitpack.io.xml.error= diff --git a/code/arachne/com/odysseusinc/arachne/arachne-scheduler/3.x-MDACA/arachne-scheduler-3.x-MDACA.pom.lastUpdated b/code/arachne/com/odysseusinc/arachne/arachne-scheduler/3.x-MDACA/arachne-scheduler-3.x-MDACA.pom.lastUpdated new file mode 100644 index 000000000..6ca796541 --- /dev/null +++ b/code/arachne/com/odysseusinc/arachne/arachne-scheduler/3.x-MDACA/arachne-scheduler-3.x-MDACA.pom.lastUpdated @@ -0,0 +1,16 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 12:51:17 EDT 2024 +file\:///code/arachne/.lastUpdated=1721139901517 +http\://0.0.0.0/.error=Could not transfer artifact com.odysseusinc.arachne\:arachne-scheduler\:pom\:3.x-MDACA from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148677881 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139901441 +https\://jitpack.io/.error= +https\://repo1.maven.org/maven2/.lastUpdated=1721139901019 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +https\://repo.ohdsi.org/nexus/content/groups/public/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139901116 +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139901390 +file\:///code/arachne/.error= +https\://jitpack.io/.lastUpdated=1721139901504 diff --git a/code/arachne/com/odysseusinc/arachne/arachne-sys-settings/arachne-sys-settings-3.x-MDACA.jar b/code/arachne/com/odysseusinc/arachne/arachne-sys-settings/arachne-sys-settings-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..82282e394ab31d485bfc462cf2bc4839ef7bb9c1 GIT binary patch literal 25137 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 bAr$j)z;OerZ^790W=Qw=Ii^Q^!2oakgG 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 literal 0 HcmV?d00001 diff --git a/code/arachne/com/odysseusinc/data-source-manager/3.x-MDACA/data-source-manager-3.x-MDACA.pom.lastUpdated b/code/arachne/com/odysseusinc/data-source-manager/3.x-MDACA/data-source-manager-3.x-MDACA.pom.lastUpdated new file mode 100644 index 000000000..174c2daf1 --- /dev/null +++ b/code/arachne/com/odysseusinc/data-source-manager/3.x-MDACA/data-source-manager-3.x-MDACA.pom.lastUpdated @@ -0,0 +1,16 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 12:51:17 EDT 2024 +file\:///code/arachne/.lastUpdated=1721139902939 +http\://0.0.0.0/.error=Could not transfer artifact com.odysseusinc\:data-source-manager\:pom\:3.x-MDACA from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148677974 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139902867 +https\://jitpack.io/.error= +https\://repo1.maven.org/maven2/.lastUpdated=1721139902453 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +https\://repo.ohdsi.org/nexus/content/groups/public/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139902576 +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139902820 +file\:///code/arachne/.error= +https\://jitpack.io/.lastUpdated=1721139902925 diff --git a/code/arachne/com/odysseusinc/logging/3.x-MDACA/logging-3.x-MDACA.jar b/code/arachne/com/odysseusinc/logging/3.x-MDACA/logging-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..a92e6207019dad41511a68f0cd97bb6ec27e800b GIT binary patch literal 22034 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 diff --git a/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom b/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom new file mode 100644 index 000000000..116f8376d --- /dev/null +++ b/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom @@ -0,0 +1,380 @@ + + 4.0.0 + com.opencsv + opencsv + bundle + 3.7 + opencsv + A simple library for reading and writing CSV in Java + http://opencsv.sf.net + + + 2.19 + 0.7.5.201505241946 + ${project.build.directory}/jacoco-it.exec + 2.10.3 + + + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + A business-friendly OSS license + + + + scm:git:ssh://git.code.sf.net/p/opencsv/source + https://sourceforge.net/p/opencsv/source/ci/master/tree/ + + + + glen-smith + Glen Smith + glen_a_smith@users.sourceforge.net + http://blogs.bytecode.com.au/glen + +10 + + Creator + architect + + + + scott_conway + Scott Conway + sconway@users.sourceforge.net + -6 + + project keeper + architect + developer + + + + + + Tom Squires + tom@tomsquires.com + + Developed Annotation-based bean logic. + + + + Maciek Opala + maciek.opala@gmail.com + + developer - version 3.0 + + + + J.C. Romanda + j_hah@users.sf.net + + developer + + + + Sean Sullivan + sullis@users.sourceforge.net + + developer + + + + Kyle Miller + + Developed bean logic. + + + + + Sourceforge + https://sourceforge.net/p/opencsv/_list/tickets + + + + + + maven-site-plugin + 3.4 + + + org.apache.maven.doxia + doxia-core + 1.6 + + + org.apache.maven.doxia + doxia-module-twiki + 1.6 + + + + + maven-assembly-plugin + 2.4.1 + + + + + + maven-compiler-plugin + 3.3 + + 1.7 + 1.7 + true + true + 256m + 768m + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven.surefire.version} + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + attach-sources + package + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven.javadoc.version} + + + attach-javadocs + package + + jar + + + + + + maven-assembly-plugin + 2.4.1 + + + project + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.3.1 + + + enforce-versions + install + + enforce + + + + + [1.7,1.8) + + + + + + + + org.apache.felix + maven-bundle-plugin + 3.0.1 + true + + + JavaSE-1.7 + com.opencsv.*;version="${project.version}" + + + + + org.jacoco + jacoco-maven-plugin + ${jacoco.version} + + ${jacoco.datafile} + ${jacoco.datafile} + + + + jacoco-initialize + initialize + + prepare-agent + + + jacoco.agent.argLine + + + + default-report + verify + + report + + + + + + + + org.apache.maven.wagon + wagon-ssh + 2.8 + + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.4 + + + + + + junit + junit + 4.12 + test + + + org.apache.commons + commons-lang3 + 3.3.2 + + + org.mockito + mockito-core + 1.10.19 + test + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.4 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.8.1 + + false + false + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.5 + + + pmd-ruleset.xml + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.17 + + ${project.build.sourceDirectory} + checkstyle-suppressions.xml + checkstyle.suppressions.file + checkstyle.xml + + + + + checkstyle + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${maven.surefire.version} + + report-only + ${jacoco.agent.argLine} + + + + org.jacoco + jacoco-maven-plugin + ${jacoco.version} + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.3 + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven.javadoc.version} + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0 + + + + + + + opencsv.sf.net + scp://shell.sourceforge.net/home/project-web/opencsv/htdocs/ + + + diff --git a/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom.sha1 b/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom.sha1 new file mode 100644 index 000000000..0ea881b0d --- /dev/null +++ b/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom.sha1 @@ -0,0 +1 @@ +3389d1f8bc35462a232f1109569b4671ce69de07 \ No newline at end of file diff --git a/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/_remote.repositories b/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/_remote.repositories new file mode 100644 index 000000000..5634ee542 --- /dev/null +++ b/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:11 EDT 2024 +otj-pg-embedded-1.0.3.pom>central= diff --git a/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom b/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom new file mode 100644 index 000000000..bac4e8eb5 --- /dev/null +++ b/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom @@ -0,0 +1,341 @@ + + + + + + 4.0.0 + + + org.basepom + basepom-minimal + 55 + + + + scm:git:git://github.com/opentable/otj-pg-embedded.git + scm:git:git@github.com:opentable/otj-pg-embedded.git + http://github.com/opentable/otj-pg-embedded + otj-pg-embedded-1.0.3 + + + com.opentable.components + otj-pg-embedded + 1.0.3 + Embedded PostgreSQL driver + + + 3.1.0 + 4.2 + validate + true + basepom.oss-release,oss-build + + ${basepom.check.skip-extended} + ${basepom.check.fail-extended} + true + 11 + ${project.build.targetJdk} + ${project.build.targetJdk} + 1.19.6 + 42.7.2 + 4.23.1 + 1.7.36 + 9.16.3 + 3.14.0 + 1.26.0 + 4.13.2 + 5.8.2 + 1800 + false + true + false + false + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + A business-friendly OSS license + + + + + + org.slf4j + slf4j-api + ${dep.slf4j.version} + + + + org.apache.commons + commons-lang3 + ${dep.commons-lang.version} + + + org.apache.commons + commons-compress + ${dep.commons-compress.version} + runtime + + + + org.flywaydb + flyway-core + true + ${dep.flyway.version} + + + + org.liquibase + liquibase-core + ${dep.liquibase.version} + true + + + + org.postgresql + postgresql + ${dep.postgres-jdbc.version} + + + + org.testcontainers + postgresql + + + org.testcontainers + testcontainers + + + + junit + junit + ${dep.junit.version} + provided + true + + + + org.junit.jupiter + junit-jupiter-api + ${dep.junit5.version} + provided + true + + + + org.slf4j + slf4j-simple + ${dep.slf4j.version} + test + + + + + + + org.testcontainers + postgresql + ${dep.testcontainers.version} + + + org.testcontainers + testcontainers + ${dep.testcontainers.version} + + + + + + + oss-build + + + .oss-build + + + + + + + opentable.snapshot + opentable-snapshots + true + https://artifactory.otenv.com/snapshots + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-release-plugin + + + ${basepom.release.profiles} + + + + + + com.mycila + license-maven-plugin + ${dep.plugin.license.version} + + + org.basepom + basepom-policy + ${dep.basepom-policy.version} + + + + ${basepom.check.skip-license} + ${basepom.license.skip-existing} + ${basepom.check.fail-license} +
license/basepom-apache-license-header.txt
+ + license/xml-prefix.xml + + + XML_PREFIX + SLASHSTAR_STYLE + SCRIPT_STYLE + + true + true + true + ${project.build.sourceEncoding} + + .*/** + **/*.md + **/*.rst + **/*.adoc + **/*.sh + **/*.txt + **/*.thrift + **/*.proto + **/*.g + **/*.releaseBackup + **/*.vm + **/*.st + **/*.raw + **/*.ser + **/src/license/** + + + src/** + **/pom.xml + +
+
+ + + + org.apache.maven.plugins + maven-gpg-plugin + ${dep.plugin.gpg.version} + + true + + +
+
+ + + + + com.mycila + license-maven-plugin + + + basepom.default + ${basepom.check.phase-license} + + check + + + + + +
+
+ + + + basepom.oss-release + + + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + package + + jar + + + + + + + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + basepom.sign-artifacts + verify + + sign + + + + + + + +
+ +
diff --git a/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom.sha1 b/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom.sha1 new file mode 100644 index 000000000..56d15efa7 --- /dev/null +++ b/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom.sha1 @@ -0,0 +1 @@ +fd30120bbda345c104b3f944301f06803bda21d3 \ No newline at end of file diff --git a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/_remote.repositories b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/_remote.repositories new file mode 100644 index 000000000..51e5a7a3f --- /dev/null +++ b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:36 EDT 2024 +ojdbc-bom-21.9.0.0.pom>ohdsi= diff --git a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom new file mode 100644 index 000000000..3ad1c3dcf --- /dev/null +++ b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom @@ -0,0 +1,278 @@ + + + 4.0.0 + com.oracle.database.jdbc + ojdbc-bom + 21.9.0.0 + pom + + + 21.9.0.0 + + + + ojdbc-bom + Bill of Materials (BOM) for JDBC driver and other additional jars + https://www.oracle.com/database/technologies/maven-central-guide.html + 1997 + + + + Oracle Free Use Terms and Conditions (FUTC) + https://www.oracle.com/downloads/licenses/oracle-free-license.html + + + + + + Oracle America, Inc. + http://www.oracle.com + + + + + + + + + + + + com.oracle.database.jdbc + ojdbc11 + ${version.lib.ojdbc} + + + + com.oracle.database.jdbc + ojdbc8 + ${version.lib.ojdbc} + + + + com.oracle.database.jdbc + ucp + ${version.lib.ojdbc} + + + + com.oracle.database.jdbc + ucp11 + ${version.lib.ojdbc} + + + + com.oracle.database.jdbc + rsi + ${version.lib.ojdbc} + + + + + + com.oracle.database.security + oraclepki + ${version.lib.ojdbc} + + + + com.oracle.database.security + osdt_core + ${version.lib.ojdbc} + + + + com.oracle.database.security + osdt_cert + ${version.lib.ojdbc} + + + + + + com.oracle.database.ha + simplefan + ${version.lib.ojdbc} + + + + com.oracle.database.ha + ons + ${version.lib.ojdbc} + + + + com.oracle.database.nls + orai18n + ${version.lib.ojdbc} + + + + com.oracle.database.xml + xdb + ${version.lib.ojdbc} + + + + com.oracle.database.xml + xmlparserv2 + ${version.lib.ojdbc} + + + + com.oracle.database.jdbc.debug + ojdbc11_g + ${version.lib.ojdbc} + + + + com.oracle.database.jdbc.debug + ojdbc8_g + ${version.lib.ojdbc} + + + + com.oracle.database.jdbc.debug + ojdbc8dms_g + ${version.lib.ojdbc} + + + + com.oracle.database.jdbc.debug + ojdbc11dms_g + ${version.lib.ojdbc} + + + + com.oracle.database.observability + dms + ${version.lib.ojdbc} + + + + com.oracle.database.observability + ojdbc11dms + ${version.lib.ojdbc} + + + + com.oracle.database.observability + ojdbc8dms + ${version.lib.ojdbc} + + + + com.oracle.database.jdbc + ojdbc11-production + ${version.lib.ojdbc} + pom + + + + com.oracle.database.jdbc + ojdbc8-production + ${version.lib.ojdbc} + pom + + + + com.oracle.database.observability + ojdbc8-observability + ${version.lib.ojdbc} + pom + + + + com.oracle.database.observability + ojdbc11-observability + ${version.lib.ojdbc} + pom + + + + com.oracle.database.jdbc.debug + ojdbc8-debug + ${version.lib.ojdbc} + pom + + + + com.oracle.database.jdbc.debug + ojdbc11-debug + ${version.lib.ojdbc} + pom + + + + com.oracle.database.jdbc.debug + ojdbc8-observability-debug + ${version.lib.ojdbc} + pom + + + + com.oracle.database.jdbc.debug + ojdbc11-observability-debug + ${version.lib.ojdbc} + pom + + + + + + diff --git a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.lastUpdated b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.lastUpdated new file mode 100644 index 000000000..9849889c0 --- /dev/null +++ b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:36 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact com.oracle.database.jdbc\:ojdbc-bom\:pom\:21.9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139816461 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139816558 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139816660 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139816790 diff --git a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 new file mode 100644 index 000000000..eebccc0b1 --- /dev/null +++ b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 @@ -0,0 +1 @@ +5448ed38b62dbc922bf9d5fa12eece0a0ca2f5f4 \ No newline at end of file diff --git a/code/arachne/com/qmino/miredot-annotations/1.5.0/_remote.repositories b/code/arachne/com/qmino/miredot-annotations/1.5.0/_remote.repositories new file mode 100644 index 000000000..75bdd6e1e --- /dev/null +++ b/code/arachne/com/qmino/miredot-annotations/1.5.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:11 EDT 2024 +miredot-annotations-1.5.0.pom>ohdsi= diff --git a/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom b/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom new file mode 100644 index 000000000..10957ea71 --- /dev/null +++ b/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom @@ -0,0 +1,37 @@ + + 4.0.0 + com.qmino + miredot-annotations + jar + 1.5.0 + Miredot Annotations + + UTF-8 + UTF-8 + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + + + + + + miredot + MireDot Releases + http://nexus.qmino.com/content/repositories/miredot + false + + + miredot-snapshots + MireDot Snapshots + http://nexus.qmino.com/content/repositories/miredot-snapshots + true + + + diff --git a/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.lastUpdated b/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.lastUpdated new file mode 100644 index 000000000..68c2aa29d --- /dev/null +++ b/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:11 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact com.qmino\:miredot-annotations\:pom\:1.5.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139910996 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139911002 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139911116 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139911248 +https\://repo1.maven.org/maven2/.lastUpdated=1721139910893 diff --git a/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.sha1 b/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.sha1 new file mode 100644 index 000000000..5d9df47bb --- /dev/null +++ b/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.sha1 @@ -0,0 +1 @@ +6b34ae5c6dbd3f1bbafa54c0efa1a978b716b30d \ No newline at end of file diff --git a/code/arachne/com/querydsl/querydsl-bom/5.0.0/_remote.repositories b/code/arachne/com/querydsl/querydsl-bom/5.0.0/_remote.repositories new file mode 100644 index 000000000..8d826486f --- /dev/null +++ b/code/arachne/com/querydsl/querydsl-bom/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:38 EDT 2024 +querydsl-bom-5.0.0.pom>ohdsi= diff --git a/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom b/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom new file mode 100644 index 000000000..14db2601d --- /dev/null +++ b/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom @@ -0,0 +1,217 @@ + + + 4.0.0 + com.querydsl + querydsl-bom + 5.0.0 + pom + Querydsl - Bill of materials + Bill of materials + http://www.querydsl.com + 2007 + + Querydsl + http://www.querydsl.com + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + timowest + Timo Westkämper + Mysema Ltd + + Project Manager + Architect + + + + ssaarela + Samppa Saarela + Mysema Ltd + + Developer + + + + ponzao + Vesa Marttila + Mysema Ltd + + Developer + + + + mangolas + Lassi Immonen + Mysema Ltd + + Developer + + + + Shredder121 + Ruben Dijkstra + + Developer + + + + johnktims + John Tims + + Developer + + + + robertandrewbain + Robert Bain + + Developer + + + + jwgmeligmeyling + Jan-Willem Gmelig Meyling + + Developer + + + + + scm:git:git@github.com:querydsl/querydsl.git/querydsl-bom + scm:git:git@github.com:querydsl/querydsl.git/querydsl-bom + http://github.com/querydsl/querydsl/querydsl-bom + + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + + ${project.groupId} + querydsl-core + ${project.version} + + + ${project.groupId} + querydsl-codegen + ${project.version} + + + ${project.groupId} + querydsl-codegen-utils + ${project.version} + + + ${project.groupId} + querydsl-spatial + ${project.version} + + + ${project.groupId} + querydsl-apt + ${project.version} + + + ${project.groupId} + querydsl-collections + ${project.version} + + + ${project.groupId} + querydsl-guava + ${project.version} + + + ${project.groupId} + querydsl-sql + ${project.version} + + + ${project.groupId} + querydsl-sql-spatial + ${project.version} + + + ${project.groupId} + querydsl-sql-codegen + ${project.version} + + + ${project.groupId} + querydsl-sql-spring + ${project.version} + + + ${project.groupId} + querydsl-jpa + ${project.version} + + + ${project.groupId} + querydsl-jpa-codegen + ${project.version} + + + ${project.groupId} + querydsl-jdo + ${project.version} + + + ${project.groupId} + querydsl-kotlin-codegen + ${project.version} + + + ${project.groupId} + querydsl-lucene3 + ${project.version} + + + ${project.groupId} + querydsl-lucene4 + ${project.version} + + + ${project.groupId} + querydsl-lucene5 + ${project.version} + + + ${project.groupId} + querydsl-hibernate-search + ${project.version} + + + ${project.groupId} + querydsl-mongodb + ${project.version} + + + ${project.groupId} + querydsl-scala + ${project.version} + + + ${project.groupId} + querydsl-kotlin + ${project.version} + + + + diff --git a/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.lastUpdated b/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..c43017f99 --- /dev/null +++ b/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:38 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact com.querydsl\:querydsl-bom\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139817615 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139817726 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139817943 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139818079 diff --git a/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.sha1 b/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.sha1 new file mode 100644 index 000000000..588f25f9b --- /dev/null +++ b/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.sha1 @@ -0,0 +1 @@ +bba4d94262a15eb93f93126e9e42dd7177ee6ef3 \ No newline at end of file diff --git a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/_remote.repositories b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/_remote.repositories new file mode 100644 index 000000000..983fa1788 --- /dev/null +++ b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:36 EDT 2024 +okhttp-bom-4.12.0.pom>ohdsi= diff --git a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom new file mode 100644 index 000000000..de4d54583 --- /dev/null +++ b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom @@ -0,0 +1,81 @@ + + + + + + + + 4.0.0 + com.squareup.okhttp3 + okhttp-bom + 4.12.0 + pom + okhttp-bom + Square’s meticulous HTTP client for Java and Kotlin. + https://square.github.io/okhttp/ + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + Square, Inc. + + + + scm:git:https://github.com/square/okhttp.git + scm:git:ssh://git@github.com/square/okhttp.git + https://github.com/square/okhttp + + + + + com.squareup.okhttp3 + mockwebserver + 4.12.0 + + + com.squareup.okhttp3 + okcurl + 4.12.0 + + + com.squareup.okhttp3 + okhttp + 4.12.0 + + + com.squareup.okhttp3 + okhttp-brotli + 4.12.0 + + + com.squareup.okhttp3 + okhttp-dnsoverhttps + 4.12.0 + + + com.squareup.okhttp3 + logging-interceptor + 4.12.0 + + + com.squareup.okhttp3 + okhttp-sse + 4.12.0 + + + com.squareup.okhttp3 + okhttp-tls + 4.12.0 + + + com.squareup.okhttp3 + okhttp-urlconnection + 4.12.0 + + + + diff --git a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.lastUpdated b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.lastUpdated new file mode 100644 index 000000000..1e75ee814 --- /dev/null +++ b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:36 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact com.squareup.okhttp3\:okhttp-bom\:pom\:4.12.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139815627 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139815734 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139815932 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139816068 diff --git a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.sha1 b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.sha1 new file mode 100644 index 000000000..95a43dac6 --- /dev/null +++ b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.sha1 @@ -0,0 +1 @@ +739bd19d4113d096b0470fb179cb2d4bad33dac9 \ No newline at end of file diff --git a/code/arachne/com/sun/activation/all/1.2.0/_remote.repositories b/code/arachne/com/sun/activation/all/1.2.0/_remote.repositories new file mode 100644 index 000000000..eb38841f8 --- /dev/null +++ b/code/arachne/com/sun/activation/all/1.2.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:01 EDT 2024 +all-1.2.0.pom>central= diff --git a/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom b/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom new file mode 100644 index 000000000..143612971 --- /dev/null +++ b/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom @@ -0,0 +1,641 @@ + + + + + + net.java + jvnet-parent + 1 + + 4.0.0 + com.sun.activation + all + pom + 1.2.0 + JavaBeans Activation Framework distribution + ${project.name} + + + scm:git:https://github.com/javaee/activation.git + scm:git:git@github.com:javaee/activation.git + https://github.com/javaee/activation + + + + GitHub + https://github.com/javaee/activation/issues + + + + + CDDL/GPLv2+CE + https://github.com/javaee/activation/blob/master/LICENSE.txt + repo + CDDL or GPL version 2 plus the Classpath Exception + + + + + Oracle + http://www.oracle.com + + + + 1.2 + + + ${project.groupId}.${project.artifactId} + + + ${project.groupId}.${project.artifactId} + + + ${project.groupId}.${project.artifactId} + + + ${project.groupId}.${project.artifactId} + + + ${project.groupId}.${project.artifactId} + + + ${project.groupId}.${project.artifactId} + + + javax.activation.*; version=${activation.spec.version} + + + * + + + com.sun.activation.* + + + 2.0.0 + iso-8859-1 + + High + + + 3.0.1 + + + true + + + 1.42 + + + + + shannon + Bill Shannon + bill.shannon@oracle.com + Oracle + + lead + + + + + + + + oracle.com + file:/tmp + + + + + activation + activationapi + + + + + + build-only + + demo + + + true + + + + + + deploy-release + + + + org.apache.maven.plugins + maven-surefire-plugin + + true + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + + deploy-snapshot + + + + org.apache.maven.plugins + maven-surefire-plugin + + true + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + + + + + 1.5 + + + + maven-compiler-plugin + + + default-compile + + true + ${javac.path} + 1.5 + 1.5 + 1.5 + + + + + + + + + + + install + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-version + + enforce + + + + + [2.2.1,) + + + + + + + + + + org.apache.felix + maven-bundle-plugin + + + + ${activation.bundle.symbolicName} + + + ${activation.packages.export} + + + ${activation.packages.import} + + + ${activation.packages.private} + + + * + + + + + + + osgi-manifest + process-classes + + manifest + + + + + + + + org.glassfish.hk2 + osgiversion-maven-plugin + ${hk2.plugin.version} + + qualifier + activation.osgiversion + + + + compute-osgi-version + + compute-osgi-version + + + + + + + + maven-compiler-plugin + + + default-compile + + 1.5 + 1.5 + + + + default-testCompile + + 1.5 + 1.5 + + + + + + + maven-jar-plugin + + + ${project.artifactId} + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + ${activation.extensionName} + + + ${activation.specificationTitle} + + + ${activation.spec.version} + + + ${project.organization.name} + + + ${activation.implementationTitle} + + + ${project.version} + + + ${project.organization.name} + + + com.sun + + + + ${activation.moduleName} + + + + + **/*.java + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-source + generate-sources + + add-source + + + + + ${project.build.directory}/sources + + + target/classes + + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + true + + + **/*.class + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.4 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.4.3 + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + org.codehaus.mojo + build-helper-maven-plugin + 1.7 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.4 + + + + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.version} + + ${findbugs.skip} + ${findbugs.threshold} + true + + ${findbugs.exclude} + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0 + + + org.apache.felix + maven-bundle-plugin + 2.1.0 + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.7 + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + ${copyright-plugin.version} + + git + true + + copyright-exclude + + + + + + + + + + + com.sun.activation + javax.activation + ${project.version} + + + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.version} + + ${findbugs.skip} + ${findbugs.threshold} + + ${findbugs.exclude} + + + + + + diff --git a/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom.sha1 b/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom.sha1 new file mode 100644 index 000000000..c6ef40c4f --- /dev/null +++ b/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom.sha1 @@ -0,0 +1 @@ +9b1023e38195ea19d1a0ac79192d486da1904f97 \ No newline at end of file diff --git a/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/_remote.repositories b/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/_remote.repositories new file mode 100644 index 000000000..a49b3c68d --- /dev/null +++ b/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +istack-commons-runtime-4.1.2.pom>central= diff --git a/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom b/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom new file mode 100644 index 000000000..dc9998046 --- /dev/null +++ b/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom @@ -0,0 +1,49 @@ + + + + + 4.0.0 + + com.sun.istack + istack-commons + 4.1.2 + ../pom.xml + + istack-commons-runtime + + istack common utility code runtime + + + + jakarta.activation + jakarta.activation-api + provided + true + + + + + + + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + + diff --git a/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom.sha1 b/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom.sha1 new file mode 100644 index 000000000..4581b9836 --- /dev/null +++ b/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom.sha1 @@ -0,0 +1 @@ +791e64803f294eafcf0f401c399d626ad0721500 \ No newline at end of file diff --git a/code/arachne/com/sun/istack/istack-commons/4.1.2/_remote.repositories b/code/arachne/com/sun/istack/istack-commons/4.1.2/_remote.repositories new file mode 100644 index 000000000..3f9e4833b --- /dev/null +++ b/code/arachne/com/sun/istack/istack-commons/4.1.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +istack-commons-4.1.2.pom>central= diff --git a/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom b/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom new file mode 100644 index 000000000..e92b0e035 --- /dev/null +++ b/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom @@ -0,0 +1,624 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.7 + + + + com.sun.istack + istack-commons + 4.1.2 + pom + iStack Common Utility Code + istack common utility code + + + scm:git:ssh://git@github.com/eclipse-ee4j/jaxb-istack-commons.git + scm:git:ssh://git@github.com/eclipse-ee4j/jaxb-istack-commons.git + https://github.com/eclipse-ee4j/jaxb-istack-commons + HEAD + + + + + Eclipse Distribution License - v 1.0 + http://www.eclipse.org/org/documents/edl-v10.php + repo + + + + + + Lukas Jungmann + lukas.jungmann@oracle.com + Oracle Corporation + + + + + github + https://github.com/eclipse-ee4j/jaxb-istack-commons/issues + + + + + Eclipse Implementation of JAXB mailing list + jaxb-impl-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/jaxb-impl-dev + https://dev.eclipse.org/mailman/listinfo/jaxb-impl-dev + https://dev.eclipse.org/mhonarc/lists/jaxb-impl-dev + + + + + ${project.build.directory}/common-resources + ${project.build.commonResourcesDirectory}/legal + ${project.build.commonResourcesDirectory}/config + ${config.dir}/copyright-exclude + false + true + false + ${config.dir}/spotbugs-exclude.xml + false + Low + 4.7.3.4 + + 2.1.1 + 3.9.1 + 1.9.7 + 4.13.2 + 1.10.13 + 4.0.2 + 3.5.1 + 3.8.1 + 7.7.1 + 2.33 + + UTF-8 + ${project.build.sourceEncoding} + 11 + ${maven.compiler.release} + Eclipse Foundation + + + + buildtools + runtime + test + tools + maven-plugin + import-properties-plugin + soimp + + + + + + jakarta.activation + jakarta.activation-api + ${activation.version} + + + junit + junit + ${junit.version} + + + org.apache.ant + ant + ${ant.version} + + + org.apache.ant + ant-junit + ${ant.version} + + + org.glassfish.jaxb + codemodel + ${codemodel.version} + + + org.apache.maven + maven-plugin-api + ${maven.api.version} + + + * + * + + + + + org.apache.maven + maven-core + ${maven.api.version} + + + * + * + + + + + org.apache.maven + maven-artifact + ${maven.api.version} + + + * + * + + + + + org.apache.maven + maven-model + ${maven.api.version} + + + * + * + + + + + org.codehaus.plexus + plexus-utils + ${plexus-utils.version} + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${maven-plugin-annotations.version} + + + * + * + + + + + org.testng + testng + ${testng.version} + + + org.apache.maven + maven-settings + ${maven.api.version} + + + org.apache.maven.resolver + maven-resolver-api + ${maven.resolver.version} + + + * + * + + + + + org.apache.maven.resolver + maven-resolver-impl + ${maven.resolver.version} + + + * + * + + + + + args4j + args4j + ${args4j.version} + + + + + + + junit + junit + test + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.3.0 + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0 + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + ${spotbugs.skip} + ${spotbugs.threshold} + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + org.apache.felix + maven-bundle-plugin + 5.1.8 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.5.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.5.0 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.5.0 + + + org.codehaus.gmaven + gmaven-plugin + 1.5 + + + org.apache.groovy + groovy + 4.0.11 + + + org.apache.groovy + groovy-xml + 4.0.11 + + + + + org.apache.maven.plugins + maven-invoker-plugin + 3.5.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.8.1 + + + org.jacoco + jacoco-maven-plugin + 0.8.9 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [${maven.compiler.release},) + + + [3.6.0,) + + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + true + false + 7 + + + + validate + + create + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + ${copyright.exclude} + + ${copyright.scmonly} + + ${copyright.update} + + ${copyright.ignoreyear} + false + + + + org.apache.maven.plugins + maven-assembly-plugin + + + common-resources + generate-resources + + single + + false + + + src/main/assembly/resources.xml + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + unpack-resource + generate-resources + + unpack + + + + + ${project.groupId} + istack-commons + ${project.version} + resources + zip + ${project.build.commonResourcesDirectory} + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -Xlint:all + -Xdoclint:all,-missing + -Werror + + true + false + + + + org.apache.felix + maven-bundle-plugin + + + + false + + + + ${vendor.name} + ${project.groupId} + ${project.version} - ${buildNumber} + + true + + pom + maven-plugin + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + false + + + + META-INF/jpms.args + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + all,-missing + true + true + + + + org.apache.maven.plugins + maven-source-plugin + + + + false + + + ${project.version} - ${buildNumber} + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + true + ${spotbugs.exclude} + High + + + + org.apache.maven.plugins + maven-plugin-plugin + + + java-annotations + + + + + + + + + coverage + + + + org.jacoco + jacoco-maven-plugin + + + default-prepare-agent + + prepare-agent + + + + default-report + + report + + + + + + + + + license-check + + + + dash-licenses-snapshots + https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/ + + true + + + + + + + + org.eclipse.dash + license-tool-plugin + 0.0.1-SNAPSHOT + + + + + + org.eclipse.dash + license-tool-plugin + + + license-check + validate + + license-check + + + + + + + + + + diff --git a/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom.sha1 b/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom.sha1 new file mode 100644 index 000000000..5e49b4c3f --- /dev/null +++ b/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom.sha1 @@ -0,0 +1 @@ +4a568257731f081dd9a566eb5cea0f4fb6c3b20c \ No newline at end of file diff --git a/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/_remote.repositories b/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/_remote.repositories new file mode 100644 index 000000000..7ac0ec797 --- /dev/null +++ b/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:02 EDT 2024 +jaxb-bom-ext-4.0.5.pom>central= diff --git a/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom b/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom new file mode 100644 index 000000000..3b9323390 --- /dev/null +++ b/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom @@ -0,0 +1,92 @@ + + + + + 4.0.0 + + + org.glassfish.jaxb + jaxb-bom + ../bom/pom.xml + 4.0.5 + + + com.sun.xml.bind + jaxb-bom-ext + + pom + JAXB BOM with ALL dependencies + + JAXB Bill of Materials (BOM) with all dependencies. + If you are not sure - DON'T USE THIS BOM. Use com.sun.xml.bind:jaxb-bom instead. + + https://eclipse-ee4j.github.io/jaxb-ri/ + + + ${project.version} + 1.5.1 + ${project.version} + ${project.version} + 1.10.14 + + + + + + com.sun.xml.bind.external + rngom + ${relaxng.version} + + + + org.glassfish.jaxb + xsom + ${xsom.version} + + + com.sun.xml.dtd-parser + dtd-parser + ${dtd-parser.version} + + + com.sun.istack + istack-commons-tools + ${istack.version} + + + org.glassfish.jaxb + codemodel + ${codemodel.version} + + + + org.glassfish.jaxb + txw2 + ${project.version} + + + + org.apache.ant + ant + ${ant.version} + + + com.sun.xml.bind.external + relaxng-datatype + ${relaxng.version} + + + + + diff --git a/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom.sha1 b/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom.sha1 new file mode 100644 index 000000000..b33048f6f --- /dev/null +++ b/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom.sha1 @@ -0,0 +1 @@ +651882f97b92c0ae166ecdfbb23678993c9e3229 \ No newline at end of file diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/_remote.repositories b/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/_remote.repositories new file mode 100644 index 000000000..ec412db2e --- /dev/null +++ b/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:02 EDT 2024 +jaxb-parent-4.0.5.pom>central= diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom b/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom new file mode 100644 index 000000000..51f757bab --- /dev/null +++ b/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom @@ -0,0 +1,777 @@ + + + + + 4.0.0 + + + com.sun.xml.bind + jaxb-bom-ext + 4.0.5 + boms/bom-ext/pom.xml + + + com.sun.xml.bind.mvn + jaxb-parent + 4.0.5 + pom + Jakarta XML Binding Implementation + + Open source Implementation of Jakarta XML Binding (formerly JSR-222) + + + https://eclipse-ee4j.github.io/jaxb-ri + + scm:git:ssh://git@github.com/eclipse-ee4j/jaxb-ri + scm:git:ssh://git@github.com/eclipse-ee4j/jaxb-ri.git + https://github.com/eclipse-ee4j/jaxb-ri.git + HEAD + + + + + Eclipse Distribution License - v 1.0 + http://www.eclipse.org/org/documents/edl-v10.php + repo + + + + + + Roman Grigoriadi + roman.grigoriadi@oracle.com + Oracle Corporation + + + + + github + https://github.com/eclipse-ee4j/jaxb-ri/issues + + + + + Jakarta XML Binding Implementation mailing list + jaxb-impl-dev@eclipse.org + https://accounts.eclipse.org/mailing-list/jaxb-impl-dev + https://accounts.eclipse.org/mailing-list/jaxb-impl-dev + https://accounts.eclipse.org/mailing-list/jaxb-impl-dev + + + + + ${project.build.directory}/common-resources + ${project.build.commonResourcesDirectory}/legal + ${project.build.commonResourcesDirectory}/config/copyright-exclude + false + true + ${project.build.commonResourcesDirectory}/config/copyright.txt + false + + false + Low + 4.8.3.1 + 1.12.0 + ${maven.build.timestamp} + yyyy-MM-dd HH:mm + + 11 + ${maven.compiler.release} + + 4.13.2 + + ${project.build.directory}/mods + + true + 1.0.0 + 6.0.0 + 2.4.0 + true + Eclipse Foundation + org.eclipse + + -Xlint:all,-rawtypes,-unchecked + + -Xdoclint:all,-missing + 150 + + all,-missing + + -Xlint:none + -Xdoclint:none + 10 + + + + + + + com.github.relaxng + relaxngDatatype + 2011.1 + + + + junit + junit + ${junit.version} + + + + + + + org.checkerframework + compiler + ${compiler.version} + + + + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.3.2 + + + org.apache.maven.plugins + maven-resources-plugin + 3.3.1 + + \ + + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + + true + + <_noextraheaders>true + + + pom + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + false + + + + META-INF/jpms.args + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.6.1 + + + com.sun.istack + istack-commons-maven-plugin + 4.1.2 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.12.1 + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.5 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + + false + + + Jakarta XML Binding + ${xml.bind-api.majorVersion}.${xml.bind-api.minorVersion} + Eclipse Foundation + Eclipse Implementation of JAXB + ${project.version} - ${buildNumber} + ${vendor.name} + ${vendor.id} + ${buildNumber} + ${project.scm.connection} + ${timestamp} + ${project.version} + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 3.6.0 + + + + false + + + Jakarta XML Binding + ${xml.bind-api.majorVersion}.${xml.bind-api.minorVersion} + Eclipse Foundation + Eclipse Implementation of JAXB + ${project.version} - ${buildNumber} + ${vendor.name} + ${vendor.id} + ${buildNumber} + ${project.scm.connection} + ${timestamp} + ${project.version} + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + + com.sun.xml.bind:* + com.sun.tools.xjc:* + com.sun.tools.jxc:* + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.5.0 + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + ${copyright.template} + ${copyright.exclude} + + ${copyright.scmonly} + + ${copyright.update} + + ${copyright.ignoreyear} + false + + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + ${spotbugs.skip} + ${spotbugs.threshold} + + ${spotbugs.exclude} + + + + com.h3xstream.findsecbugs + findsecbugs-plugin + ${findsecbugs.version} + + + + + + org.owasp + dependency-check-maven + 9.0.9 + + 7 + false + + HTML + CSV + + + + + org.codehaus.mojo + properties-maven-plugin + 1.2.1 + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.2.0 + + en-US + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.4.1 + + + org.apache.maven.plugins + maven-antrun-plugin + 3.1.0 + + + org.apache.ant + ant + ${ant.version} + + + org.apache.ant + ant-junit + ${ant.version} + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + jaxb.version + + parse-version + + validate + + jaxb + + + + xml.bind-api.version + + parse-version + + validate + + xml.bind-api + ${xml.bind-api.version} + + + + add-legal-resource + generate-resources + + add-resource + + + + + ${legal.doc.source} + META-INF + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-versions + + enforce + + + + + + + [11,) + + + [3.6.0,) + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + create-buildnumber + + create + + + true + 7 + unknown + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + common-resources + generate-resources + + single + + false + + + src/main/assembly/resources.xml + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + unpack-resource + generate-resources + + unpack + + + + + com.sun.xml.bind.mvn + jaxb-parent + ${project.version} + resources + zip + ${project.build.commonResourcesDirectory} + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + true + true + + + + default-compile + + + ${comp.xlint} + ${comp.xdoclint} + -Xmaxwarns + ${warn.limit} + -Xmaxerrs + ${warn.limit} + + + + + default-testCompile + + + ${comp.test.xlint} + ${comp.test.xdoclint} + -Xmaxwarns + ${warn.test.limit} + -Xmaxerrs + ${warn.test.limit} + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + + + + false + + + Jakarta XML Binding + ${xml.bind-api.majorVersion}.${xml.bind-api.minorVersion} + Eclipse Foundation + Eclipse Implementation of JAXB + ${project.version} - ${buildNumber} + ${vendor.name} + ${vendor.id} + ${buildNumber} + ${project.scm.connection} + ${timestamp} + ${project.version} + + + + META-INF/jpms.args + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + false + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + ${jdoc.doclint} + true + + + false + + + true + true + + + + + + + boms/bom + boms/bom-ext + external + xsom + txw + codemodel + core + runtime + xjc + jxc + bundles + + + + + default-profile + + + !dev + + + + + docs + tools/osgi_tests + + + + oss-release + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-no-snapshots + + enforce + + + + + No SNAPSHOT dependency allowed! + + + release version no SNAPSHOT Allowed! + + + ${oss.disallow.snapshots} + + + + + + + + + dev-impl + + + dev + + + + + spotbugs + + + + com.github.spotbugs + spotbugs-maven-plugin + + + verify + + spotbugs + + + + + + + + + dependency-check + + + + org.owasp + dependency-check-maven + + + + check + + + + + + + + + coverage + + + jacoco-build + + + + + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + + + + org.jacoco + jacoco-maven-plugin + + + default-prepare-agent + + prepare-agent + + + + default-report + + report + + + + + + + + + license-check + + + + dash-licenses-snapshots + https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/ + + true + + + + + + + + org.eclipse.dash + license-tool-plugin + 0.0.1-SNAPSHOT + + + + + + org.eclipse.dash + license-tool-plugin + + + license-check + validate + + license-check + + + + + + + + + diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom.sha1 b/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom.sha1 new file mode 100644 index 000000000..4ad8e2102 --- /dev/null +++ b/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom.sha1 @@ -0,0 +1 @@ +537859c01d9f1f80266cda7eb0f46c7e16a7fd7d \ No newline at end of file diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/_remote.repositories b/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/_remote.repositories new file mode 100644 index 000000000..82f4b08c3 --- /dev/null +++ b/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:02 EDT 2024 +jaxb-runtime-parent-4.0.5.pom>central= diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom b/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom new file mode 100644 index 000000000..31697f7ae --- /dev/null +++ b/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom @@ -0,0 +1,36 @@ + + + + + 4.0.0 + + + com.sun.xml.bind.mvn + jaxb-parent + 4.0.5 + ../pom.xml + + + jaxb-runtime-parent + + pom + JAXB Runtime parent + JAXB Runtime parent module. Contains sources used during runtime processing. + https://eclipse-ee4j.github.io/jaxb-ri/ + + + impl + + + diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom.sha1 b/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom.sha1 new file mode 100644 index 000000000..f86ba8469 --- /dev/null +++ b/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom.sha1 @@ -0,0 +1 @@ +911d77fdae4a8371531993a27c45bb7815627fa9 \ No newline at end of file diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/_remote.repositories b/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/_remote.repositories new file mode 100644 index 000000000..775e5ad25 --- /dev/null +++ b/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +jaxb-txw-parent-4.0.5.pom>central= diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom b/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom new file mode 100644 index 000000000..a3dc36379 --- /dev/null +++ b/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom @@ -0,0 +1,36 @@ + + + + + 4.0.0 + + + com.sun.xml.bind.mvn + jaxb-parent + 4.0.5 + ../pom.xml + + + jaxb-txw-parent + pom + JAXB TXW parent + JAXB TXW parent module. Contains sources for TXW component. + https://eclipse-ee4j.github.io/jaxb-ri/ + + + compiler + runtime + + + diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom.sha1 b/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom.sha1 new file mode 100644 index 000000000..61299f5b8 --- /dev/null +++ b/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom.sha1 @@ -0,0 +1 @@ +5826d93f394ec154ea14512ed0b8bfa98c4b4b2c \ No newline at end of file diff --git a/code/arachne/com/sun/xml/security/xml-security-impl/1.0/_remote.repositories b/code/arachne/com/sun/xml/security/xml-security-impl/1.0/_remote.repositories new file mode 100644 index 000000000..e6b998052 --- /dev/null +++ b/code/arachne/com/sun/xml/security/xml-security-impl/1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +xml-security-impl-1.0.pom>central= diff --git a/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom b/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom new file mode 100644 index 000000000..789eb31c6 --- /dev/null +++ b/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom @@ -0,0 +1,103 @@ + + + + + + 4.0.0 + com.sun.xml.security + xml-security-impl + 1.0 + jar + + XML Security with Extensions + + + + + org.jvnet.wagon-svn + wagon-svn + 1.8 + + + + + + org.jvnet.maven-antrun-extended-plugin + maven-antrun-extended-plugin + + + package + + run + + + + + + + + + + + + + + + maven2-repository.dev.java.net + Java.net Repository for Maven + http://download.java.net/maven/2/ + + + + + + maven2-repository.dev.java.net + Java.net Repository for Maven + http://download.java.net/maven/2/ + + + + + + false + java.net-maven2-repository + java-net:/maven2-repository/trunk/repository/ + + + diff --git a/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom.sha1 b/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom.sha1 new file mode 100644 index 000000000..d0d507d00 --- /dev/null +++ b/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom.sha1 @@ -0,0 +1 @@ +3af96637d47d55f8776e0bf72a02f48a8ac5f909 \ No newline at end of file diff --git a/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/_remote.repositories b/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/_remote.repositories new file mode 100644 index 000000000..cb6767e9a --- /dev/null +++ b/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:54 EDT 2024 +xstream-parent-1.4.19.pom>central= diff --git a/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom b/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom new file mode 100644 index 000000000..2ac17e71e --- /dev/null +++ b/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom @@ -0,0 +1,1191 @@ + + + 4.0.0 + com.thoughtworks.xstream + xstream-parent + pom + 1.4.19 + XStream Parent + http://x-stream.github.io + + XStream is a serialization library from Java objects to XML and back. + + + 2004 + + XStream + http://x-stream.github.io + + + + + xstream + XStream Committers + http://x-stream.github.io/team.html + + + + + + jdk12-ge + + [12,) + + + 1.7 + 1.7 + 1.7 + 1.7 + + + + jdk9-ge-jdk12 + + [9,12) + + + 1.6 + 1.6 + 1.6 + + + + jdk9-ge + + [9,) + + + 3.0.0-M1 + + + + jdk8-ge + + [1.8,) + + + -Xdoclint:-missing + 2.5.4 + + + + jdk8 + + 1.8 + + + 1.4 + 1.4 + + + + jdk6 + + 1.6 + + + 1.16 + + + + + jdk6-ge + + [1.6,) + + + + xstream-jmh + xstream-distribution + + + + + jdk5 + + 1.5 + + + 1.8.0.10 + 3.6.6.Final + + + + + jdk4 + + 1.4 + + + 1.3 + 1.3 + 1.0-beta-1 + http://docs.oracle.com/javase/1.4.2/docs/api/ + + 1.8.0.10 + 3.3.2.GA + 3.6.6.Final + + + + java + + + src/java + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + include-license + generate-resources + + add-resource + + + + + ${project.build.directory}/generated-resources + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + copy-license + generate-resources + + run + + + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + org.apache.maven.plugins + maven-enforcer-plugin + + ${version.plugin.maven.enforcer} + + + enforce-java-version + + enforce + + + + + ${version.java.enforced} + + + + + + + + + + + java-test + + + src/test + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + copy-license-for-test + generate-test-resources + + run + + + + + + + + + + + + + + osgi + + [1.6,) + + profiles/osgi + + + + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + ${bundle.export.package} + ${bundle.import.package} + + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + + jar + + + + ${project.build.directory}/OSGi/MANIFEST.MF + + + + + + + + + ${project.groupId}.*;-noimport:=true + * + + + + xstream-release + + [1.8,1.9) + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + coveralls + + + profiles/coveralls + + + + + + org.eluder.coveralls + coveralls-maven-plugin + + + org.jacoco + jacoco-maven-plugin + + + prepare-agent + + prepare-agent + + + + + + + + + + + xstream + xstream-hibernate + xstream-benchmark + + + + + BSD-3-Clause + http://x-stream.github.io/license.html + repo + + + + + github + https://github.com/x-stream/xstream/issues/ + + + Travis + https://travis-ci.org/x-stream/xstream + + + + XStream Users List + xstream-user+subscribe@googlegroups.com + xstream-user+unsubscribe@googlegroups.com + xstream-user@googlegroups.com + https://groups.google.com/forum/#!forum/xstream-user + + http://news.gmane.org/gmane.comp.java.xstream.user + http://markmail.org/search/list:org.codehaus.xstream.user + + + + XStream Notifications List + xstream-notifications+subscribe@googlegroups.com + xstream-notifications+unsubscribe@googlegroups.com + xstream-notifications@googlegroups.com + https://groups.google.com/forum/#!forum/xstream-notifications + + http://news.gmane.org/gmane.comp.java.xstream.scm + + + + Former (pre-2015-06) Development List + http://news.gmane.org/gmane.comp.java.xstream.dev + + http://markmail.org/search/list:org.codehaus.xstream.dev + + + + Former (pre-2015-06) Announcements List + http://markmail.org/search/list:org.codehaus.xstream.announce + + + + + + + com.thoughtworks.xstream + xstream + 1.4.19 + + + com.thoughtworks.xstream + xstream + 1.4.19 + tests + test-jar + test + + + com.thoughtworks.xstream + xstream + 1.4.19 + javadoc + provided + + + com.thoughtworks.xstream + xstream-hibernate + 1.4.19 + + + com.thoughtworks.xstream + xstream-hibernate + 1.4.19 + javadoc + provided + + + com.thoughtworks.xstream + xstream-jmh + 1.4.19 + + + com.thoughtworks.xstream + xstream-jmh + 1.4.19 + javadoc + provided + + + com.thoughtworks.xstream + xstream-benchmark + 1.4.19 + + + com.thoughtworks.xstream + xstream-benchmark + 1.4.19 + javadoc + provided + + + + commons-io + commons-io + ${version.commons.io} + + + + commons-cli + commons-cli + ${version.commons.cli} + + + + commons-lang + commons-lang + ${version.commons.lang} + + + + cglib + cglib-nodep + ${version.cglib.nodep} + + + javassist + javassist + ${version.javaassist} + + + + dom4j + dom4j + ${version.dom4j} + + + xml-apis + xml-apis + + + + + + org.jdom + jdom + ${version.org.jdom} + + + org.jdom + jdom2 + ${version.org.jdom2} + + + + joda-time + joda-time + ${version.joda-time} + + + + com.megginson.sax + xml-writer + ${version.com.megginson.sax.xml-writer} + + + xml-apis + xml-apis + + + + + + stax + stax + ${version.stax} + + + stax + stax-api + ${version.stax.api} + + + + org.codehaus.woodstox + wstx-asl + ${version.org.codehaus.woodstox.asl} + + + + xom + xom + ${version.xom} + + + xerces + xmlParserAPIs + + + xerces + xercesImpl + + + xalan + xalan + + + jaxen + jaxen + + + + + + io.github.x-stream + mxparser + ${version.io.github.x-stream.mxparser} + + + xpp3 + xpp3_min + ${version.xpp3} + + + net.sf.kxml + kxml2-min + ${version.net.sf.kxml.kxml2} + + + net.sf.kxml + kxml2 + ${version.net.sf.kxml.kxml2} + + + xmlpull + xmlpull + ${version.xmlpull} + + + + org.json + json + ${version.org.json} + + + + org.codehaus.jettison + jettison + ${version.org.codehaus.jettison} + + + + xml-apis + xml-apis + ${version.xml-apis} + + + + xerces + xercesImpl + ${version.xerces.impl} + + + + javax.activation + activation + ${version.javax.activation} + + + javax.annotation + javax.annotation-api + ${version.javax.annotation.api} + + + javax.xml.bind + jaxb-api + ${version.javax.xml.bind.api} + + + com.sun.xml.ws + jaxws-rt + ${version.javax.xml.ws.jaxws.rt} + + + + org.hibernate + hibernate-core + ${version.org.hibernate.core} + + + org.hibernate + hibernate-envers + ${version.org.hibernate.envers} + + + cglib + cglib + + + + + org.hsqldb + hsqldb + ${version.hsqldb} + + + org.slf4j + slf4j-api + ${version.org.slf4j} + runtime + + + org.slf4j + slf4j-simple + ${version.org.slf4j} + runtime + + + + org.openjdk.jmh + jmh-core + ${version.org.openjdk.jmh} + + + org.openjdk.jmh + jmh-generator-annprocess + ${version.org.openjdk.jmh} + provided + + + commons-codec + commons-codec + ${version.commons.codec} + + + com.brsanthu + migbase64 + ${version.com.brsanthu.migbase64} + + + + + junit + junit + ${version.junit} + test + + + jmock + jmock + ${version.jmock} + test + + + + + org.apache.felix + org.apache.felix.framework + ${version.org.apache.felix} + test + + + org.glassfish.hk2.external + javax.inject + ${version.javax.inject} + provided + + + org.ops4j.pax.exam + pax-exam-container-native + ${version.org.ops4j.pax.exam} + test + + + org.ops4j.pax.exam + pax-exam-extender-service + ${version.org.ops4j.pax.exam} + test + + + org.ops4j.pax.exam + pax-exam-inject + ${version.org.ops4j.pax.exam} + test + + + org.ops4j.pax.exam + pax-exam-invoker-junit + ${version.org.ops4j.pax.exam} + test + + + org.ops4j.pax.exam + pax-exam-junit4 + ${version.org.ops4j.pax.exam} + test + + + org.ops4j.pax.exam + pax-exam-link-assembly + ${version.org.ops4j.pax.exam} + test + + + org.ops4j.pax.exam + pax-exam-link-mvn + ${version.org.ops4j.pax.exam} + test + + + + + + ${basedir}/src/java + + + ${basedir}/src/java + + **/*.properties + **/*.xml + + + + ${basedir}/src/test + + + ${basedir}/src/test + + **/*.xml + **/*.xsl + **/*.txt + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${version.plugin.maven.antrun} + + + org.apache.maven.plugins + maven-assembly-plugin + ${version.plugin.maven.assembly} + + + org.apache.maven.plugins + maven-clean-plugin + ${version.plugin.maven.clean} + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.plugin.maven.compiler} + + ${version.java.source} + ${version.java.target} + + + + org.apache.maven.plugins + maven-dependency-plugin + ${version.plugin.maven.dependency} + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.plugin.maven.deploy} + + + org.apache.maven.plugins + maven-eclipse-plugin + + true + [artifactId]-1.4.x + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${version.plugin.maven.enforcer} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${version.plugin.maven.failsafe} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.plugin.maven.gpg} + + ${gpg.keyname} + ${gpg.keyname} + + + + org.apache.maven.plugins + maven-install-plugin + ${version.plugin.maven.install} + + + org.apache.maven.plugins + maven-jar-plugin + ${version.plugin.maven.jar} + + + + true + true + + + ${project.info.majorVersion}.${project.info.minorVersion} + BSD-3-Clause + ${version.java.source} + ${version.java.target} + Maven ${maven.version} + ${maven.build.timestamp} + ${os.name} + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.maven.javadoc} + + + attach-javadocs + + jar + + + + + false + ${javadoc.xdoclint} + ${version.java.source} + + ${javadoc.link.javase} + + + + true + true + + + ${project.info.majorVersion}.${project.info.minorVersion} + BSD-3-Clause + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${version.plugin.maven.jxr} + + + org.apache.maven.plugins + maven-release-plugin + ${version.plugin.maven.release} + + forked-path + deploy + true + false + -Pxstream-release + + + + org.apache.maven.plugins + maven-resources-plugin + ${version.plugin.maven.resources} + + + org.apache.maven.plugins + maven-site-plugin + ${version.plugin.maven.site} + + + org.apache.maven.plugins + maven-source-plugin + ${version.plugin.maven.source} + + + attach-sources + package + + jar-no-fork + + + + + + + true + true + + + ${project.info.majorVersion}.${project.info.minorVersion} + 2 + ${project.name} Sources + ${project.artifactId}.sources + ${project.organization.name} Sources + ${project.info.osgiVersion} + BSD-3-Clause + ${project.artifactId};version=${project.info.osgiVersion} + ${version.java.source} + ${version.java.target} + Maven ${maven.version} + ${maven.build.timestamp} + ${os.name} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.maven.surefire} + + once + true + false + + **/*Test.java + **/*TestSuite.java + + + **/Abstract*Test.java + **/*$*.java + + + + java.awt.headless + true + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.plugin.maven.surefire} + + + org.codehaus.mojo + build-helper-maven-plugin + ${version.plugin.mojo.build-helper} + + + org.codehaus.xsite + xsite-maven-plugin + ${version.plugin.codehaus.xsite} + + + com.thoughtworks.xstream + xstream + 1.4.11.1 + + + + + org.apache.felix + maven-bundle-plugin + ${version.plugin.felix.bundle} + + ${project.build.directory}/OSGi + + <_noee>true + <_nouses>true + ${project.artifactId} + BSD-3-Clause + ${project.info.majorVersion}.${project.info.minorVersion} + + + + false + + + + + + org.eluder.coveralls + coveralls-maven-plugin + ${version.plugin.eluder.coveralls} + + + org.jacoco + jacoco-maven-plugin + ${version.plugin.jacoco} + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + versions + initialize + + maven-version + parse-version + + + project.info + + + + + + org.apache.maven.plugins + maven-release-plugin + + https://svn.codehaus.org/xstream/tags + + + + + + + + ossrh-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + ossrh-snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + + + + http://github.com/x-stream/xstream + scm:git:ssh://git@github.com/x-stream/xstream.git + scm:git:ssh://git@github.com/x-stream/xstream.git + v-1.4.x + + + + UTF-8 + + 1.5 + 1.6 + 1.5 + 1.5 + [1.4,) + + 1.3 + 2.3.7 + 1.1 + 2.1 + 2.2 + 2.1 + 2.1 + 2.3 + 1.4 + 2.22.0 + 3.0.1 + 2.2 + 2.2 + 2.10 + 2.5 + 2.1 + 2.2 + 2.0-beta-6 + 2.1.2 + 2.4.3 + 1.5 + 4.2.0 + 0.8.1 + + 2.2 + 2.2 + 0.2 + 1.1 + 1.10 + 1.4 + 2.4 + 1.6.1 + 2.2.8 + 1.2.2 + 3.12.1.GA + 1.1.1 + 1.3.2 + 2.4.0 + 2.3.1 + 2.2 + 1.0.1 + 1.6 + 3.8.1 + 2.3.0 + 4.4.1 + 1.2 + 3.2.7 + 4.2.5.Final + ${version.org.hibernate.core} + 1.1.3 + 2.0.5 + 20080701 + 1.21 + 3.5.0 + 1.6.1 + 1.2.0 + 1.0.1 + 2.8.1 + 1.3.04 + 1.1.3.1 + 1.1 + 1.1.4c + + http://docs.oracle.com/javase/8/docs/api/ + permit + + ${surefire.argline} + + + + diff --git a/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom.sha1 b/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom.sha1 new file mode 100644 index 000000000..49616734d --- /dev/null +++ b/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom.sha1 @@ -0,0 +1 @@ +7b2b9553d4ab5172a924d1a946aaf1d2826f8fd0 \ No newline at end of file diff --git a/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/_remote.repositories b/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/_remote.repositories new file mode 100644 index 000000000..ec6c027dc --- /dev/null +++ b/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:54 EDT 2024 +xstream-1.4.19.pom>central= diff --git a/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom b/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom new file mode 100644 index 000000000..515e856c0 --- /dev/null +++ b/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom @@ -0,0 +1,669 @@ + + + 4.0.0 + + com.thoughtworks.xstream + xstream-parent + 1.4.19 + + xstream + jar + XStream Core + + + + dom4j + dom4j + true + + + + org.jdom + jdom + true + + + org.jdom + jdom2 + true + + + + joda-time + joda-time + true + + + + org.codehaus.woodstox + wstx-asl + true + + + + stax + stax + true + + + + stax + stax-api + true + + + + xom + xom + true + + + + io.github.x-stream + mxparser + + + + net.sf.kxml + kxml2-min + true + + + + + + xpp3 + xpp3_min + true + + + + cglib + cglib-nodep + true + + + + org.codehaus.jettison + jettison + true + + + + javax.activation + activation + true + + + javax.xml.bind + jaxb-api + provided + + + + + junit + junit + + + + jmock + jmock + + + + org.json + json + test + + + + com.megginson.sax + xml-writer + test + + + + commons-lang + commons-lang + test + + + + com.sun.xml.ws + jaxws-rt + test + + + javax.xml.ws + jaxws-api + + + com.sun.istack + istack-commons-runtime + + + com.sun.xml.bind + jaxb-impl + + + com.sun.xml.messaging.saaj + saaj-impl + + + com.sun.xml.stream.buffer + streambuffer + + + com.sun.xml.ws + policy + + + com.sun.org.apache.xml.internal + resolver + + + org.glassfish.gmbal + gmbal-api-only + + + org.jvnet + mimepull + + + org.jvnet.staxex + stax-ex + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + complete-test-classpath + process-test-resources + + copy + + + target/lib + + + proxytoys + proxytoys + 0.2.1 + + + + + + collect-dependencies + package + + copy-dependencies + + + target/dependencies + runtime + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + **/AbstractAcceptanceTest.* + META-INF/LICENSE + + + + ${project.name} Test + ${project.name} Test + BSD-3-Clause + + + + + + + + + + + + jdk17-ge + + [17,) + + + --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.time=ALL-UNNAMED --add-opens java.base/java.time.chrono=ALL-UNNAMED --add-opens java.base/java.lang.invoke=ALL-UNNAMED --add-opens java.base/java.lang.ref=ALL-UNNAMED --add-opens java.base/java.lang.reflect=ALL-UNNAMED --add-opens java.base/java.text=ALL-UNNAMED --add-opens java.base/javax.security.auth.x500=ALL-UNNAMED --add-opens java.base/sun.util.calendar=ALL-UNNAMED --add-opens java.desktop/java.beans=ALL-UNNAMED --add-opens java.desktop/java.awt=ALL-UNNAMED --add-opens java.desktop/java.awt.font=ALL-UNNAMED --add-opens java.desktop/javax.swing=ALL-UNNAMED --add-opens java.desktop/javax.swing.border=ALL-UNNAMED --add-opens java.desktop/javax.swing.event=ALL-UNNAMED --add-opens java.desktop/javax.swing.table=ALL-UNNAMED --add-opens java.desktop/javax.swing.plaf.basic=ALL-UNNAMED --add-opens java.desktop/javax.swing.plaf.metal=ALL-UNNAMED --add-opens java.desktop/javax.imageio=ALL-UNNAMED --add-opens java.desktop/javax.imageio.spi=ALL-UNNAMED --add-opens java.desktop/sun.swing=ALL-UNNAMED --add-opens java.desktop/sun.swing.table=ALL-UNNAMED --add-opens java.xml/javax.xml.datatype=ALL-UNNAMED --add-opens java.xml/com.sun.xml.internal.stream=ALL-UNNAMED --add-opens java.xml/com.sun.org.apache.xerces.internal.parsers=ALL-UNNAMED --add-opens java.xml/com.sun.org.apache.xerces.internal.util=ALL-UNNAMED + + + + jdk11-ge-jdk16 + + [11,17) + + + --illegal-access=${surefire.illegal.access} + + + + jdk11-ge + + [11,) + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + javax.xml.bind + jaxb-api + ${version.javax.xml.bind.api} + + + + + + + + jdk9-ge-jdk10 + + [9,11) + + + --add-modules java.activation,java.xml.bind --illegal-access=${surefire.illegal.access} + + + + jdk8-ge + + [1.8,) + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -XDignore.symbol.file + + + **/Lambda** + **/time/** + **/ISO8601JavaTimeConverter.java + **/annotations/* + **/AnnotationMapper* + **/enums/* + **/EnumMapper* + **/*15.java + **/PathConverter.java + **/Base64*Codec.java + **/Types.java + **/JDom2*.java + + + **/Lambda** + **/*18TypesTest.java + **/*17TypesTest.java + **/*15TypesTest.java + **/FieldDictionaryTest.java + **/annotations/* + **/enums/* + + + + + compile-jdk5 + + ${version.java.5} + ${version.java.5} + + **/Lambda** + **/time/** + **/ISO8601JavaTimeConverter.java + + + **/Lambda** + **/*18TypesTest.java + + + + compile + testCompile + + + + compile-jdk8 + + 1.8 + 1.8 + + + + + compile + testCompile + + + + + + + + + jdk8 + + 1.8 + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + 1.8 + com.thoughtworks.xstream.core.util + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.maven.javadoc} + + com.thoughtworks.xstream.core.util + ${javadoc.xdoclint} + false + 1.8 + + ${javadoc.link.javase} + + + + + + + + jdk7 + + 1.7 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -XDignore.symbol.file + + + **/Lambda** + **/time/** + **/ISO8601JavaTimeConverter.java + **/Base64JavaUtilCodec.java + + + **/Lambda** + **/Base64JavaUtilCodecTest.java + **/*18TypesTest.java + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + 1.7 + com.thoughtworks.xstream.core.util + + + + + + + jdk6 + + 1.6 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -XDignore.symbol.file + + + **/Lambda** + **/extended/PathConverter* + **/time/** + **/ISO8601JavaTimeConverter.java + **/Base64JavaUtilCodec.java + + + **/Lambda** + **/extended/*17Test* + **/Base64JavaUtilCodecTest.java + **/acceptance/Extended17TypesTest* + **/acceptance/*18TypesTest.java + + + + + + + + jdk5 + + 1.5 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -XDignore.symbol.file + + + **/Lambda** + **/extended/PathConverter* + **/time/** + **/ISO8601JavaTimeConverter.java + **/Base64JavaUtilCodec.java + **/Base64JAXBCodec.java + + + **/Lambda** + **/extended/*17Test* + **/Base64JavaUtilCodecTest.java + **/Base64JAXBCodecTest.java + **/acceptance/Extended17TypesTest* + **/acceptance/*18TypesTest.java + + + + + + + + jdk6-ge + + [1.6,) + + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + + jar + + + + ${project.build.directory}/OSGi/MANIFEST.MF + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + org.apache.felix + maven-bundle-plugin + + + !com.thoughtworks.xstream.core.util,com.thoughtworks.xstream.*;-noimport:=true + + + + + + + + jdk4 + + 1.4 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + **/Lambda** + **/annotations/* + **/AnnotationMapper* + **/EnumMapper* + **/enums/* + **/time/** + **/ISO8601JavaTimeConverter.java + **/Base64JavaUtilCodec.java + **/Base64JAXBCodec.java + **/basic/StringBuilder* + **/basic/UUID* + **/core/util/Types* + **/reflection/*15* + **/extended/*15* + **/extended/PathConverter* + **/io/xml/JDom2* + + + **/Lambda** + **/annotations/* + **/enums/* + **/extended/*17Test* + **/reflection/SunLimitedUnsafeReflectionProviderTest* + **/reflection/PureJavaReflectionProvider15Test* + **/Base64JavaUtilCodecTest.java + **/Base64JAXBCodecTest.java + **/io/xml/JDom2*Test* + **/acceptance/Basic15TypesTest* + **/acceptance/Concurrent15TypesTest* + **/acceptance/Extended17TypesTest* + **/acceptance/*18TypesTest.java + + + + + + + + xml-apis + xml-apis + + + xerces + xercesImpl + + + + 1.0.1 + + + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.plugin.maven.surefire} + + + org.jacoco + jacoco-maven-plugin + ${version.plugin.jacoco} + + + + report + + + + + + + + + !com.thoughtworks.xstream.core.util,com.thoughtworks.xstream.*;-noimport:=true + + org.xmlpull.mxp1;resolution:=optional, + org.xmlpull.v1;resolution:=optional, + io.github.xstream.mxparser.*;resolution:=optional, + com.ibm.*;resolution:=optional, + com.sun.*;resolution:=optional, + javax.*;resolution:=optional, + org.xml.*;resolution:=optional, + sun.*;resolution:=optional, + * + + + + diff --git a/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom.sha1 b/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom.sha1 new file mode 100644 index 000000000..6fb2bb79f --- /dev/null +++ b/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom.sha1 @@ -0,0 +1 @@ +d9264e8d44203cb65a3fc8f3b3b73de0c6ddcab1 \ No newline at end of file diff --git a/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom b/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom new file mode 100644 index 000000000..a83378412 --- /dev/null +++ b/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom @@ -0,0 +1,654 @@ + + 4.0.0 + + + UTF-8 + + false + ${project.basedir}/src/main/java11 + ${project.build.directory}/classes-java11 + + + 0.36.0 + 5.1.1 + 6.0.1 + 5.4.16.Final + 3.27.0-GA + 0.11.4.1 + 2.5.3 + 3.2.5 + 1.5.10 + 0.9.0 + 3.7.7 + 4.13.1 + 2.5.4 + 42.2.20 + [2.17.1,) + 1.7.30 + 1.5 + [2.0.206,) + 4.13.1 + 1.15.1 + + + com.zaxxer + HikariCP + 5.0.1 + bundle + + HikariCP + Ultimate JDBC Connection Pool + https://github.com/brettwooldridge/HikariCP + + + Zaxxer.com + https://github.com/brettwooldridge + + + + scm:git:git@github.com:brettwooldridge/HikariCP.git + scm:git:git@github.com:brettwooldridge/HikariCP.git + git@github.com:brettwooldridge/HikariCP.git + HikariCP-5.0.1 + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Brett Wooldridge + brett.wooldridge@gmail.com + + + + + org.sonatype.oss + oss-parent + 9 + + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.apache.logging.log4j + log4j-api + ${log4j.version} + test + + + org.apache.logging.log4j + log4j-core + ${log4j.version} + test + + + org.testcontainers + postgresql + ${testcontainers.version} + test + + + org.apache.commons + commons-csv + ${commons.csv.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + org.hamcrest + hamcrest-core + + + + + junit + junit + ${junit.version} + test + + + org.javassist + javassist + ${javassist.version} + true + + + io.micrometer + micrometer-core + ${micrometer.version} + true + + + org.postgresql + postgresql + ${postgresql.version} + test + + + org.hibernate + hibernate-core + ${hibernate.version} + provided + true + + + jboss-logging + org.jboss.logging + + + jboss-logging-annotations + org.jboss.logging + + + + + io.dropwizard.metrics + metrics-core + ${metrics.version} + provided + true + + + io.dropwizard.metrics + metrics-healthchecks + ${metrics.version} + provided + true + + + io.prometheus + simpleclient + ${simpleclient.version} + provided + true + + + simple-jndi + simple-jndi + ${jndi.version} + test + + + + + javax.inject + javax.inject + 1 + test + + + org.apache.felix + org.apache.felix.framework + ${felix.version} + test + + + org.ops4j.pax.exam + pax-exam-container-native + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-junit4 + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-link-assembly + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-link-mvn + ${pax.exam.version} + test + + + org.ops4j.pax.url + pax-url-aether + ${pax.url.version} + test + + + org.ops4j.pax.url + pax-url-reference + ${pax.url.version} + test + + + com.h2database + h2 + ${h2.version} + test + + + + + + + target/classes + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + enforce-maven + + enforce + + + + + 3.3.9 + + + + + + + + + maven-dependency-plugin + 2.8 + + + generate-sources + + build-classpath + + + maven.compile.classpath + + + + + + + + org.codehaus.mojo + exec-maven-plugin + 1.6.0 + true + + + compile + + + exec + + + + + java + + -cp + ${project.build.outputDirectory}${path.separator}${maven.compile.classpath} + com.zaxxer.hikari.util.JavassistProxyFactory + + + + + + + io.fabric8 + docker-maven-plugin + ${docker.maven.plugin.fabric8.version} + + default + true + + + + db + postgres:11 + + + password + + + database system is ready to accept connections + + + + DB + yellow + + + + + + + + + + start + pre-integration-test + + build + start + + + + stop + post-integration-test + + stop + + + + + + + org.jacoco + jacoco-maven-plugin + 0.8.2 + + + + + prepare-agent + + + + ${project.build.directory}/coverage-reports/jacoco.exec + + surefireArgLine + + **/com/zaxxer/hikari/util/JavassistProxyFactory* + **/com/zaxxer/hikari/pool/HikariProxy* + **/com/zaxxer/hikari/metrics/** + + + + + + report + test + + report + + + + ${project.build.directory}/coverage-reports/jacoco.exec + + **/com/zaxxer/hikari/pool/HikariProxy* + **/com/zaxxer/hikari/metrics/** + + + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 3.0.0-M3 + + + + integration-test + verify + + + + + + + org.apache.felix + maven-bundle-plugin + ${felix.bundle.plugin.version} + true + + ${artifact.classifier} + + ${automatic.module.name} + true + HikariCP + + com.zaxxer.hikari, + com.zaxxer.hikari.hibernate, + com.zaxxer.hikari.metrics + + com.zaxxer.hikari.* + {maven-resources} + <_exportcontents> + com.zaxxer.hikari.pool, + com.zaxxer.hikari.util + + + javax.management, + javax.naming, + javax.naming.spi, + javax.sql, + javax.sql.rowset, + javax.sql.rowset.serial, + javax.sql.rowset.spi, + com.codahale.metrics;resolution:=optional, + com.codahale.metrics.health;resolution:=optional, + io.micrometer.core.instrument;resolution:=optional, + org.slf4j;version="[1.6,2)", + org.hibernate;resolution:=optional, + org.hibernate.cfg;resolution:=optional, + org.hibernate.engine.jdbc.connections.spi;resolution:=optional, + org.hibernate.service;resolution:=optional, + org.hibernate.service.spi;resolution:=optional + + ${project.groupId}.${project.artifactId} + * + + + + + + + manifest + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 11 + 11 + -Xlint + + + + + org.apache.maven.plugins + maven-release-plugin + ${maven.release.version} + + true + HikariCP-@{project.version} + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M5 + + + ${surefireArgLine} ${sureFireOptions11} + ${sureFireForks11} + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + true + + + + attach-sources + + jar + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.1 + + public + + com.zaxxer.hikari.hibernate:com.zaxxer.hikari.metrics.*:com.zaxxer.hikari.pool:com.zaxxer.hikari.util + + true + 1024m + + + + bundle-sources + package + + jar + + + + + + + + + + + Java11 + + [11,) + + + + 2.0.0-alpha1 + true + + + + org.apache.logging.log4j + log4j-slf4j18-impl + ${log4j.version} + test + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + compile-java11 + + compile + + + 11 + + ${project.basedir}/src/main/java11 + + true + + + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + + felix + + true + + pax.exam.framework + felix + + + + felix + none + + + + org.apache.felix + org.apache.felix.framework + ${felix.version} + test + + + + + diff --git a/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom.sha1 b/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom.sha1 new file mode 100644 index 000000000..eb00a2900 --- /dev/null +++ b/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom.sha1 @@ -0,0 +1 @@ +42ce9e94f101b9c19174b556eeee8da5f03b3f2d \ No newline at end of file diff --git a/code/arachne/com/zaxxer/HikariCP/5.0.1/_remote.repositories b/code/arachne/com/zaxxer/HikariCP/5.0.1/_remote.repositories new file mode 100644 index 000000000..7f0e4481c --- /dev/null +++ b/code/arachne/com/zaxxer/HikariCP/5.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:53 EDT 2024 +HikariCP-5.0.1.pom>central= diff --git a/code/arachne/commons-beanutils/commons-beanutils/1.9.4/_remote.repositories b/code/arachne/commons-beanutils/commons-beanutils/1.9.4/_remote.repositories new file mode 100644 index 000000000..d1793a73a --- /dev/null +++ b/code/arachne/commons-beanutils/commons-beanutils/1.9.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:20 EDT 2024 +commons-beanutils-1.9.4.pom>central= diff --git a/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom b/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom new file mode 100644 index 000000000..1a4c70d26 --- /dev/null +++ b/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom @@ -0,0 +1,517 @@ + + + + + org.apache.commons + commons-parent + 47 + + 4.0.0 + commons-beanutils + commons-beanutils + 1.9.4 + Apache Commons BeanUtils + + 2000 + Apache Commons BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection. + https://commons.apache.org/proper/commons-beanutils/ + + + 1.6 + 1.6 + beanutils + 1.9.4 + BEANUTILS + 12310460 + + + -Xmx50M + + false + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-beanutils + site-content + + 3.0.0 + 8.21 + + 3.8 + + 3.1.10 + + 0.8.2 + + + false + + 0.13.0 + false + + + 1.9.3 + RC2 + true + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + Rob Tompkins + B6E73D84EA4FCC47166087253FAAD2CD5ECBB314 + + + + + + jira + https://issues.apache.org/jira/browse/BEANUTILS + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/beanutils/tags/BEANUTILS_1_9_3_RC3 + scm:svn:https://svn.apache.org/repos/asf/commons/proper/beanutils/tags/BEANUTILS_1_9_3_RC3 + http://svn.apache.org/viewvc/commons/proper/beanutils/tags/BEANUTILS_1_9_3_RC3 + + + + + apache.website + Apache Commons Beanutils Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-beanutils + + + + + + Robert Burrell Donkin + rdonkin + rdonkin@apache.org + The Apache Software Foundation + + + Dion Gillard + dion + dion@apache.org + The Apache Software Foundation + + + Craig McClanahan + craigmcc + craigmcc@apache.org + The Apache Software Foundation + + + Geir Magnusson Jr. + geirm + geirm@apache.org + The Apache Software Foundation + + + Scott Sanders + sanders + sanders@apache.org + The Apache Software Foundation + + + James Strachan + jstrachan + jstrachan@apache.org + The Apache Software Foundation + + + Rodney Waldhoff + rwaldhoff + rwaldhoff@apache.org + The Apache Software Foundation + + + Martin van den Bemt + mvdb + mvdb@apache.org + The Apache Software Foundation + + + Yoav Shapira + yoavs + yoavs@apache.org + The Apache Software Foundation + + + Niall Pemberton + niallp + niallp@apache.org + The Apache Software Foundation + + + Simon Kitching + skitching + skitching@apache.org + The Apache Software Foundation + + + James Carman + jcarman + jcarman@apache.org + The Apache Software Foundation + + + Benedikt Ritter + britter + britter@apache.org + The Apache Software Foundation + + + Tim O'Brien + tobrien + tobrien@apache.org + The Apache Software Foundation + + + David Eric Pugh + epugh + epugh@apache.org + The Apache Software Foundation + + + Rodney Waldhoff + rwaldhoff + rwaldhoff@apache.org + The Apache Software Foundation + + + Morgan James Delagrange + morgand + morgand@apache.org + The Apache Software Foundation + + + John E. Conlon + jconlon + jconlon@apache.org + The Apache Software Foundation + + + Stephen Colebourne + scolebourne + scolebourne@apache.org + The Apache Software Foundation + + + Gary Gregory + ggregory + ggregory@apache.org + http://www.garygregory.com + -5 + The Apache Software Foundation + + + stain + Stian Soiland-Reyes + stain@apache.org + http://orcid.org/0000-0001-9842-9718 + +0 + The Apache Software Foundation + + + chtompki + Rob Tompkins + chtompki@apache.org + The Apache Software Foundation + + + + + + Paul Jack + + + + Stephen Colebourne + + + + Berin Loritsch + + + + Alex Crown + + + + Marcus Zander + + + + Paul Hamamnt + + + + Rune Johannesen + + + + Clebert Suconic + + + + Norm Deane + + + + Ralph Schaer + + + + Chris Audley + + + + Rey François + + + + Gregor Raýman + + + + Jan Sorensen + + + + Eric Pabst + + + + Paulo Gaspar + + + + Michael Smith + + + + George Franciscus + + + + Erik Meade + + + + Tomas Viberg + + + + Yauheny Mikulski + + + + Michael Szlapa + + + + Juozas Baliuka + + + + Tommy Tynjä + + + + Bernhard Seebass + + + + Melloware + + + + + + + commons-logging + commons-logging + 1.2 + + + commons-collections + commons-collections + 3.2.2 + + + commons-collections + commons-collections-testframework + 3.2.1 + test + + + junit + junit + 4.12 + test + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + pertest + + ${surefire.argLine} + + **/*TestCase.java + + + + **/*MemoryTestCase.java + + + + true + + org.apache.commons.logging.impl.LogFactoryImpl + org.apache.commons.logging.impl.SimpleLog + WARN + + + + + + maven-assembly-plugin + + + src/main/assembly/bin.xml + src/main/assembly/src.xml + + gnu + + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + + + javadocs** + release-notes** + + + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.6 + + ${basedir}/checkstyle.xml + false + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + + http://docs.oracle.com/javase/1.5.0/docs/api/ + http://commons.apache.org/collections/api-release/ + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + %URL%/%ISSUE% + + + + + + changes-report + + + + + + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + prepare-checkout + + run + + pre-site + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom.sha1 b/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom.sha1 new file mode 100644 index 000000000..706d19e22 --- /dev/null +++ b/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom.sha1 @@ -0,0 +1 @@ +42e7c39331e1735250b294ce2984d0e434ebc955 \ No newline at end of file diff --git a/code/arachne/commons-codec/commons-codec/1.16.1/_remote.repositories b/code/arachne/commons-codec/commons-codec/1.16.1/_remote.repositories new file mode 100644 index 000000000..715634b11 --- /dev/null +++ b/code/arachne/commons-codec/commons-codec/1.16.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:23 EDT 2024 +commons-codec-1.16.1.pom>central= diff --git a/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom b/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom new file mode 100644 index 000000000..19002c2af --- /dev/null +++ b/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom @@ -0,0 +1,446 @@ + + + + + 4.0.0 + + org.apache.commons + commons-parent + 66 + + commons-codec + commons-codec + 1.16.1 + Apache Commons Codec + 2002 + + The Apache Commons Codec component contains encoder and decoders for + various formats such as Base16, Base32, Base64, digest, and Hexadecimal. In addition to these + widely used encoders and decoders, the codec package also maintains a + collection of phonetic encoding utilities. + + https://commons.apache.org/proper/commons-codec/ + + jira + https://issues.apache.org/jira/browse/CODEC + + + scm:git:https://gitbox.apache.org/repos/asf/commons-codec + scm:git:https://gitbox.apache.org/repos/asf/commons-codec + https://github.com/apache/commons-codec + HEAD + + + + stagingSite + Apache Staging Website + ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/commons-${commons.componentid}/ + + + + + Henri Yandell + bayard + bayard@apache.org + + + Tim OBrien + tobrien + tobrien@apache.org + -6 + + + Scott Sanders + sanders + sanders@totalsync.com + + + Rodney Waldhoff + rwaldhoff + rwaldhoff@apache.org + + + Daniel Rall + dlr + dlr@finemaltcoding.com + + + Jon S. Stevens + jon + jon@collab.net + + + ggregory + Gary Gregory + ggregory at apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + https://people.apache.org/~ggregory/img/garydgregory80.png + + + + David Graham + dgraham + dgraham@apache.org + + + Julius Davies + julius + julius@apache.org + http://juliusdavies.ca/ + -8 + + + Thomas Neidhart + tn + tn@apache.org + + + Rob Tompkins + chtompki + chtompki@apache.org + + + Matt Sicker + mattsicker + mattsicker@apache.org + https://musigma.blog/ + + + + + Christopher O'Brien + siege@preoccupied.net + + hex + md5 + architecture + + + + Martin Redington + + Representing xml-rpc + + + + Jeffery Dever + + Representing http-client + + + + Steve Zimmermann + steve.zimmermann@heii.com + + Documentation + + + + Benjamin Walstrum + ben@walstrum.com + + + Oleg Kalnichevski + oleg@ural.ru + + Representing http-client + + + + Dave Dribin + apache@dave.dribin.org + + DigestUtil + + + + Alex Karasulu + aok123 at bellsouth.net + + Submitted Binary class and test + + + + Matthew Inger + mattinger at yahoo.com + + Submitted DIFFERENCE algorithm for Soundex and RefinedSoundex + + + + Jochen Wiedmann + jochen@apache.org + + Base64 code [CODEC-69] + + + + Sebastian Bazley + sebb@apache.org + + Streaming Base64 + + + + Matthew Pocock + turingatemyhamster@gmail.com + + Beider-Morse phonetic matching + + + + Colm Rice + colm_rice at hotmail dot com + + Submitted Match Rating Approach (MRA) phonetic encoder and tests [CODEC-161] + + + + Adam Retter + Evolved Binary + + Base16 Input and Output Streams + + + + + + org.apache.commons + commons-lang3 + 3.14.0 + test + + + commons-io + commons-io + 2.15.1 + test + + + org.hamcrest + hamcrest + 2.2 + test + + + org.junit.jupiter + junit-jupiter-engine + test + + + org.junit.jupiter + junit-jupiter-params + test + + + + 1.8 + 1.8 + codec + org.apache.commons.codec + CODEC + 12310464 + + UTF-8 + UTF-8 + UTF-8 + ${basedir}/src/conf/checkstyle-header.txt + ${basedir}/src/conf/checkstyle.xml + false + + 1.16.1 + 1.16.0 + 1.16.2 + RC1 + true + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + 2024-02-04T15:10:25Z + + + clean verify apache-rat:check japicmp:cmp checkstyle:check javadoc:javadoc + + + + org.apache.maven.plugins + maven-scm-publish-plugin + ${commons.scm-publish.version} + + + archive** + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + ${checkstyle.config.file} + false + true + NOTICE.txt,LICENSE.txt,**/pom.properties,**/sha512.properties + + + + + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/org/apache/commons/codec/bla.tar + src/test/resources/org/apache/commons/codec/bla.tar.xz + src/test/resources/org/apache/commons/codec/empty.bin + src/test/resources/org/apache/commons/codec/small.bin + + + + + + + maven-jar-plugin + + + + + ${commons.module.name} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/*AbstractTest.java + **/*PerformanceTest.java + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + + maven-javadoc-plugin + + ${maven.compiler.source} + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.23 + + + + java.nio.ByteBuffer + + + + + + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/org/apache/commons/codec/bla.tar + src/test/resources/org/apache/commons/codec/bla.tar.xz + src/test/resources/org/apache/commons/codec/empty.bin + src/test/resources/org/apache/commons/codec/small.bin + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd.version} + + ${maven.compiler.target} + true + + ${basedir}/src/conf/pmd.xml + + + + + com.github.spotbugs + spotbugs-maven-plugin + + + org.codehaus.mojo + taglist-maven-plugin + 3.0.0 + + + TODO + NOPMD + NOTE + + + + + org.codehaus.mojo + javancss-maven-plugin + 2.1 + + + + diff --git a/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom.sha1 b/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom.sha1 new file mode 100644 index 000000000..a536228d9 --- /dev/null +++ b/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom.sha1 @@ -0,0 +1 @@ +fdca64157d8fd070e24bd7d4ae9b8851d9ed9c0e \ No newline at end of file diff --git a/code/arachne/commons-collections/commons-collections/3.2.2/_remote.repositories b/code/arachne/commons-collections/commons-collections/3.2.2/_remote.repositories new file mode 100644 index 000000000..11e36daed --- /dev/null +++ b/code/arachne/commons-collections/commons-collections/3.2.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:21 EDT 2024 +commons-collections-3.2.2.pom>central= diff --git a/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom b/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom new file mode 100644 index 000000000..d5e4dba41 --- /dev/null +++ b/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom @@ -0,0 +1,454 @@ + + + + + org.apache.commons + commons-parent + 39 + + 4.0.0 + commons-collections + commons-collections + 3.2.2 + Apache Commons Collections + + 2001 + Types that extend and augment the Java Collections Framework. + + http://commons.apache.org/collections/ + + + jira + http://issues.apache.org/jira/browse/COLLECTIONS + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/collections/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/collections/trunk + http://svn.apache.org/viewvc/commons/proper/collections/trunk + + + + + Stephen Colebourne + scolebourne + + + + + Morgan Delagrange + morgand + + + + + Matthew Hawthorne + matth + + + + + Geir Magnusson + geirm + + + + + Craig McClanahan + craigmcc + + + + + Phil Steitz + psteitz + + + + + Arun M. Thomas + amamment + + + + + Rodney Waldhoff + rwaldhoff + + + + + Henri Yandell + bayard + + + + + James Carman + jcarman + + + + + Robert Burrell Donkin + rdonkin + + + + + + Rafael U. C. Afonso + + + Max Rydahl Andersen + + + Federico Barbieri + + + Arron Bates + + + Nicola Ken Barozzi + + + Sebastian Bazley + + + Matt Benson + + + Ola Berg + + + Christopher Berry + + + Nathan Beyer + + + Janek Bogucki + + + Chuck Burdick + + + Dave Bryson + + + Julien Buret + + + Jonathan Carlson + + + Ram Chidambaram + + + Steve Clark + + + Eric Crampton + + + Dimiter Dimitrov + + + Peter Donald + + + Steve Downey + + + Rich Dougherty + + + Tom Dunham + + + Stefano Fornari + + + Andrew Freeman + + + Gerhard Froehlich + + + Paul Jack + + + Eric Johnson + + + Kent Johnson + + + Marc Johnson + + + Nissim Karpenstein + + + Shinobu Kawai + + + Mohan Kishore + + + Simon Kitching + + + Thomas Knych + + + Serge Knystautas + + + Peter KoBek + + + Jordan Krey + + + Olaf Krische + + + Guilhem Lavaux + + + Paul Legato + + + David Leppik + + + Berin Loritsch + + + Hendrik Maryns + + + Stefano Mazzocchi + + + Brian McCallister + + + Steven Melzer + + + Leon Messerschmidt + + + Mauricio S. Moura + + + Kasper Nielsen + + + Stanislaw Osinski + + + Alban Peignier + + + Mike Pettypiece + + + Steve Phelps + + + Ilkka Priha + + + Jonas Van Poucke + + + Will Pugh + + + Herve Quiroz + + + Daniel Rall + + + Robert Ribnitz + + + Huw Roberts + + + Henning P. Schmiedehausen + + + Howard Lewis Ship + + + Joe Raysa + + + Thomas Schapitz + + + Jon Schewe + + + Andreas Schlosser + + + Christian Siefkes + + + Michael Smith + + + Stephen Smith + + + Jan Sorensen + + + Jon S. Stevens + + + James Strachan + + + Leo Sutic + + + Chris Tilden + + + Neil O'Toole + + + Jeff Turner + + + Kazuya Ujihara + + + Jeff Varszegi + + + Ralph Wagner + + + David Weinrich + + + Dieter Wimberger + + + Serhiy Yevtushenko + + + Jason van Zyl + + + + + + junit + junit + 3.8.1 + test + + + + + 1.2 + 1.2 + collections + 3.2.2 + RC3 + -bin + COLLECTIONS + 12310465 + + + + src/java + src/test + + + org.apache.maven.plugins + maven-surefire-plugin + + + org/apache/commons/collections/TestAllPackages.java + + + + + maven-antrun-plugin + + + package + + + + + + + + + + + + + run + + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + + + + + + org.apache.rat + apache-rat-plugin + + + data/test/* + maven-eclipse.xml + + + + + + + diff --git a/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom.sha1 b/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom.sha1 new file mode 100644 index 000000000..df2a2156a --- /dev/null +++ b/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom.sha1 @@ -0,0 +1 @@ +02a5ba7cb070a882d2b7bd4bf5223e8e445c0268 \ No newline at end of file diff --git a/code/arachne/commons-dbutils/commons-dbutils/1.6/_remote.repositories b/code/arachne/commons-dbutils/commons-dbutils/1.6/_remote.repositories new file mode 100644 index 000000000..8f0ae4eb6 --- /dev/null +++ b/code/arachne/commons-dbutils/commons-dbutils/1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +commons-dbutils-1.6.pom>central= diff --git a/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom b/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom new file mode 100644 index 000000000..43c46ccb7 --- /dev/null +++ b/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom @@ -0,0 +1,327 @@ + + + + + org.apache.commons + commons-parent + 34 + + 4.0.0 + commons-dbutils + commons-dbutils + 1.6 + Apache Commons DbUtils + + 2002 + The Apache Commons DbUtils package is a set of + Java utility classes for easing JDBC development. + + http://commons.apache.org/proper/commons-dbutils/ + + + jira + http://issues.apache.org/jira/browse/DBUTILS + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/dbutils/tags/DBUTILS_1_6 + scm:svn:https://svn.apache.org/repos/asf/commons/proper/dbutils/tags/DBUTILS_1_6 + http://svn.apache.org/viewvc/commons/proper/dbutils/tags/DBUTILS_1_6 + + + + + Juozas Baliuka + baliuka + baliuka@apache.org + + + Java Developer + + + + Steven Caswell + scaswell + steven@caswell.name + + + Java Developer + + + + Dan Fabulich + dfabulich + dan@fabulich.com + + + Java Developer + + + + David Graham + dgraham + dgraham@apache.org + + + Java Developer + + + + Yoav Shapira + yoavs + yoavs@apache.org + + + Java Developer + + + + William Speirs + wspeirs + wspeirs@apache.org + + Java Developer + + + + Simone Tripodi + simonetripodi + simonetripodi at apache dot org + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Benedikt Ritter + britter + britter@apache.org + + + Java Developer + + + + + + + Péter Bagyinszki + + Java Developer + + + + Alan Canon + + Java Developer + + + + Stefan Fleiter + stefan.fleiter@web.de + + Java Developer + + + + Adkins Kendall + + Java Developer + + + + Markus Khouri + mkhouri.list@gmail.com + + Documentation + + + + Uli Kleeberger + ukleeberger@web.de + + Java Developer + + + + Piotr Lakomy + piotrl@cft-inc.net + + Java Developer + + + + Corby Page + + Java Developer + + + + Michael Schuerig + michael@schuerig.de + + Java Developer + + + + Norris Shelton + norrisshelton@yahoo.com + + Java Developer + + + + Stevo Slavic + sslavic at gmail dot com + + + + + + junit + junit + 4.11 + test + + + org.mockito + mockito-core + 1.9.5 + test + + + org.hamcrest + hamcrest-all + 1.3 + test + + + + + + + apache.website + Apache Commons Site + ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid} + + + + + 1.6 + 1.6 + dbutils + 1.6 + RC1 + DBUTILS + 12310470 + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/BaseTestCase.java + + + + + maven-assembly-plugin + + + src/main/assembly/bin.xml + src/main/assembly/src.xml + + gnu + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + %URL%/%ISSUE% + + + + + changes-report + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.9.1 + + ${basedir}/checkstyle.xml + false + ${basedir}/license-header.txt + + + + org.codehaus.mojo + findbugs-maven-plugin + 2.5.4 + + Normal + Default + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.1 + + ${maven.compiler.source} + + ${basedir}/pmd-ruleset.xml + + + + + + + + rc + + + + apache.website + Apache Commons Release Candidate Staging Site + ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site + + + + + + diff --git a/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom.sha1 b/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom.sha1 new file mode 100644 index 000000000..a4537d405 --- /dev/null +++ b/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom.sha1 @@ -0,0 +1 @@ +34c8bfacc732c3ace443e62f515e42d45cd23d7e \ No newline at end of file diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.3.1/_remote.repositories b/code/arachne/commons-fileupload/commons-fileupload/1.3.1/_remote.repositories new file mode 100644 index 000000000..09cb2c0b2 --- /dev/null +++ b/code/arachne/commons-fileupload/commons-fileupload/1.3.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:15 EDT 2024 +commons-fileupload-1.3.1.pom>central= diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom b/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom new file mode 100644 index 000000000..522842306 --- /dev/null +++ b/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom @@ -0,0 +1,298 @@ + + + + 4.0.0 + + + org.apache.commons + commons-parent + 32 + + + commons-fileupload + commons-fileupload + 1.3.1 + + Apache Commons FileUpload + + The Apache Commons FileUpload component provides a simple yet flexible means of adding support for multipart + file upload functionality to servlets and web applications. + + http://commons.apache.org/proper/commons-fileupload/ + 2002 + + + + Martin Cooper + martinc + martinc@apache.org + Yahoo! + + + dIon Gillard + dion + dion@apache.org + Multitask Consulting + + + John McNally + jmcnally + jmcnally@collab.net + CollabNet + + + Daniel Rall + dlr + dlr@finemaltcoding.com + CollabNet + + + Jason van Zyl + jvanzyl + jason@zenplex.com + Zenplex + + + Robert Burrell Donkin + rdonkin + rdonkin@apache.org + + + + Sean C. Sullivan + sullis + sean |at| seansullivan |dot| com + + + + Jochen Wiedmann + jochen + jochen.wiedmann@gmail.com + + + + Simone Tripodi + simonetripodi + simonetripodi@apache.org + Adobe + + + Gary Gregory + ggregory + ggregory@apache.org + + + + + + + Aaron Freeman + aaron@sendthisfile.com + + + Daniel Fabian + dfabian@google.com + + + Jörg Heinicke + joerg.heinicke@gmx.de + + + Stepan Koltsov + yozh@mx1.ru + + + Michael Macaluso + michael.public@wavecorp.com + + + Amichai Rothman + amichai2@amichais.net + + + Alexander Sova + bird@noir.crocodile.org + + + Paul Spurr + pspurr@gmail.com + + + Thomas Vandahl + tv@apache.org + + + Henry Yandell + bayard@apache.org + + + Jan Novotný + novotnaci@gmail.com + + + frank + mailsurfie@gmail.com + + + Rafal Krzewski + Rafal.Krzewski@e-point.pl + + + Sean Legassick + sean@informage.net + + + Oleg Kalnichevski + oleg@ural.ru + + + David Sean Taylor + taylor@apache.org + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/fileupload/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk + http://svn.apache.org/viewvc/commons/proper/fileupload/trunk + + + jira + http://issues.apache.org/jira/browse/FILEUPLOAD + + + + 1.5 + 1.5 + ISO-8859-1 + fileupload + 1.3.1 + RC1 + FILEUPLOAD + 12310476 + !org.apache.commons.fileupload.util.mime,org.apache.commons.*;version=${project.version};-noimport:=true + !javax.portlet,* + javax.portlet + + + + + junit + junit + 4.11 + test + + + javax.servlet + servlet-api + 2.4 + provided + + + portlet-api + portlet-api + 1.0 + provided + + + commons-io + commons-io + 2.2 + + + + + + + maven-assembly-plugin + + + ${basedir}/src/main/assembly/bin.xml + ${basedir}/src/main/assembly/src.xml + + gnu + + + + maven-release-plugin + + clean site verify + deploy + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + %URL%/../%ISSUE% + + + + + changes-report + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.10 + + ${basedir}/src/checkstyle/fileupload_checks.xml + ${basedir}/src/checkstyle/checkstyle-suppressions.xml + false + ${basedir}/src/checkstyle/license-header.txt + + + + org.apache.maven.plugins + maven-pmd-plugin + 2.7.1 + + ${maven.compiler.target} + + ${basedir}/src/checkstyle/fileupload_basic.xml + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + + + commons-fileupload + commons-fileupload + 1.3 + + + + + + + + diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom.sha1 b/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom.sha1 new file mode 100644 index 000000000..30b9b6d91 --- /dev/null +++ b/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom.sha1 @@ -0,0 +1 @@ +909928bd37f1bf2accb0ec2c37252a540671b332 \ No newline at end of file diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.5/_remote.repositories b/code/arachne/commons-fileupload/commons-fileupload/1.5/_remote.repositories new file mode 100644 index 000000000..1a002c663 --- /dev/null +++ b/code/arachne/commons-fileupload/commons-fileupload/1.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +commons-fileupload-1.5.pom>central= diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom b/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom new file mode 100644 index 000000000..47ef39350 --- /dev/null +++ b/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom @@ -0,0 +1,457 @@ + + + + 4.0.0 + + + org.apache.commons + commons-parent + 56 + + + commons-fileupload + commons-fileupload + 1.5 + + Apache Commons FileUpload + + The Apache Commons FileUpload component provides a simple yet flexible means of adding support for multipart + file upload functionality to servlets and web applications. + + https://commons.apache.org/proper/commons-fileupload/ + 2002 + + + + Martin Cooper + martinc + martinc@apache.org + Yahoo! + + + dIon Gillard + dion + dion@apache.org + Multitask Consulting + + + John McNally + jmcnally + jmcnally@collab.net + CollabNet + + + Daniel Rall + dlr + dlr@finemaltcoding.com + CollabNet + + + Jason van Zyl + jvanzyl + jason@zenplex.com + Zenplex + + + Robert Burrell Donkin + rdonkin + rdonkin@apache.org + + + + Sean C. Sullivan + sullis + sean |at| seansullivan |dot| com + + + + Jochen Wiedmann + jochen + jochen.wiedmann@gmail.com + + + + Simone Tripodi + simonetripodi + simonetripodi@apache.org + Adobe + + + Gary Gregory + ggregory + ggregory@apache.org + + + + Rob Tompkins + chtompki + chtompki@apache.org + + + + + + Aaron Freeman + aaron@sendthisfile.com + + + Daniel Fabian + dfabian@google.com + + + Jörg Heinicke + joerg.heinicke@gmx.de + + + Stepan Koltsov + yozh@mx1.ru + + + Michael Macaluso + michael.public@wavecorp.com + + + Amichai Rothman + amichai2@amichais.net + + + Alexander Sova + bird@noir.crocodile.org + + + Paul Spurr + pspurr@gmail.com + + + Thomas Vandahl + tv@apache.org + + + Henry Yandell + bayard@apache.org + + + Jan Novotný + novotnaci@gmail.com + + + frank + mailsurfie@gmail.com + + + maxxedev + maxxedev@gmail.com + + + Rafal Krzewski + Rafal.Krzewski@e-point.pl + + + Sean Legassick + sean@informage.net + + + Oleg Kalnichevski + oleg@ural.ru + + + David Sean Taylor + taylor@apache.org + + + fangwentong + fangwentong2012@gmail.com + + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-fileupload.git + scm:git:https://gitbox.apache.org/repos/asf/commons-fileupload.git + https://gitbox.apache.org/repos/asf?p=commons-fileupload.git + commons-fileupload-1.5-RC1 + + + jira + https://issues.apache.org/jira/browse/FILEUPLOAD + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-fileupload/ + + + + + 1.6 + 1.6 + fileupload + org.apache.commons.fileupload + 1.5 + (requires Java ${maven.compiler.target} or later) + FILEUPLOAD + 12310476 + fileupload + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-fileupload + site-content + !org.apache.commons.fileupload.util.mime,org.apache.commons.*;version=${project.version};-noimport:=true + !javax.portlet,* + javax.portlet + false + + + 1.4 + RC1 + true + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + Rob Tompkins + B6E73D84EA4FCC47166087253FAAD2CD5ECBB314 + + + + + junit + junit + 4.13.2 + test + + + javax.servlet + servlet-api + 2.4 + provided + + + portlet-api + portlet-api + 1.0 + provided + + + commons-io + commons-io + 2.11.0 + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + validate-main + validate + + ${basedir}/src/checkstyle/fileupload_checks.xml + ${basedir}/src/checkstyle/checkstyle-suppressions.xml + false + false + true + true + false + + + checkstyle + + + + + + maven-assembly-plugin + + + ${basedir}/src/main/assembly/bin.xml + ${basedir}/src/main/assembly/src.xml + + gnu + + + + + + + org.apache.rat + apache-rat-plugin + + + site-content/** + src/site/resources/download_lang.cgi + src/checkstyle/license-header.txt + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.maven.plugins + maven-antrun-plugin + [1.8,) + + run + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + [1.10,) + + parse-version + + + + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + ${basedir}/src/checkstyle/fileupload_checks.xml + ${basedir}/src/checkstyle/checkstyle-suppressions.xml + false + false + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + %URL%/../%ISSUE% + + + + + changes-report + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + ${basedir}/src/checkstyle/fileupload_checks.xml + ${basedir}/src/checkstyle/checkstyle-suppressions.xml + false + false + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + org.apache.maven.plugins + maven-pmd-plugin + + ${maven.compiler.target} + + ${basedir}/src/checkstyle/fileupload_basic.xml + + + + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + prepare-checkout + pre-site + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + java9 + + 9 + + + + true + + + + diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom.sha1 b/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom.sha1 new file mode 100644 index 000000000..95d5f33bd --- /dev/null +++ b/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom.sha1 @@ -0,0 +1 @@ +a1c27474e1b308025e14e67b31be901859deaa3c \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/1.3.2/_remote.repositories b/code/arachne/commons-io/commons-io/1.3.2/_remote.repositories new file mode 100644 index 000000000..b8c2a3985 --- /dev/null +++ b/code/arachne/commons-io/commons-io/1.3.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +commons-io-1.3.2.pom>central= diff --git a/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom b/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom new file mode 100644 index 000000000..b56e64f59 --- /dev/null +++ b/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom @@ -0,0 +1,318 @@ + + + commons-parent + org.apache.commons + 3 + + 4.0.0 + commons-io + commons-io + Commons IO + 1.3.2 + Commons-IO contains utility classes, stream implementations, file filters, and endian classes. + http://jakarta.apache.org/commons/io/ + + jira + http://issues.apache.org/jira/browse/IO + + 2002 + + + sanders + Scott Sanders + sanders@apache.org + + + Java Developer + + + + dion + dIon Gillard + dion@apache.org + + + Java Developer + + + + nicolaken + Nicola Ken Barozzi + nicolaken@apache.org + + + Java Developer + + + + bayard + Henri Yandell + bayard@apache.org + + + Java Developer + + + + scolebourne + Stephen Colebourne + + + Java Developer + + 0 + + + jeremias + Jeremias Maerki + jeremias@apache.org + + + Java Developer + + +1 + + + matth + Matthew Hawthorne + matth@apache.org + + + Java Developer + + + + martinc + Martin Cooper + martinc@apache.org + + + Java Developer + + + + roxspring + Rob Oxspring + roxspring@apache.org + + + Java Developer + + + + jochen + Jochen Wiedmann + jochen.wiedmann@gmail.com + + + + + Rahul Akolkar + + + Jason Anderson + + + Nathan Beyer + + + Emmanuel Bourg + + + Chris Eldredge + + + Magnus Grimsell + + + Jim Harrington + + + Thomas Ledoux + + + Andy Lehane + + + Marcelo Liberato + + + Alban Peignier + alban.peignier at free.fr + + + Niall Pemberton + + + Ian Springer + + + Masato Tezuka + + + James Urie + + + Frank W. Zammetti + + + + scm:svn:scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk + scm:svn:scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk + http://svn.apache.org/viewvc/jakarta/commons/proper/io/trunk + + + src/java + src/test + + + maven-surefire-plugin + + + **/*Test* + + + **/*AbstractTestCase* + **/AllIOTestSuite* + **/PackageTestSuite* + **/testtools/** + **/*$* + + + + + maven-assembly-plugin + + + src/main/assembly/bin.xml + src/main/assembly/src.xml + + gnu + + + + + + + release + + + + maven-site-plugin + + + package + + site + + + + + + maven-antrun-plugin + + + package + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + + + maven-assembly-plugin + + + package + + attached + + + + + + + + + rc + + + + maven-site-plugin + + + package + + site + + + + + + maven-assembly-plugin + + + package + + attached + + + + + + + + + + + junit + junit + 3.8.1 + test + + + + + + maven-changes-plugin + + %URL%/../%ISSUE% + + + + + changes-report + jira-report + + + + + + + + deployed + + \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 b/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 new file mode 100644 index 000000000..56b15539b --- /dev/null +++ b/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 @@ -0,0 +1 @@ +6e24d777140826c244c3c3fd3afdd4ffe6e6159f \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.11.0/_remote.repositories b/code/arachne/commons-io/commons-io/2.11.0/_remote.repositories new file mode 100644 index 000000000..162db0b8f --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.11.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +commons-io-2.11.0.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom b/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom new file mode 100644 index 000000000..d3372ca85 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom @@ -0,0 +1,601 @@ + + + + + org.apache.commons + commons-parent + 52 + + 4.0.0 + commons-io + commons-io + 2.11.0 + Apache Commons IO + + 2002 + +The Apache Commons IO library contains utility classes, stream implementations, file filters, +file comparators, endian transformation classes, and much more. + + + https://commons.apache.org/proper/commons-io/ + + + jira + https://issues.apache.org/jira/browse/IO + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/commons-io.git + scm:git:https://gitbox.apache.org/repos/asf/commons-io.git + https://gitbox.apache.org/repos/asf?p=commons-io.git + rel/commons-io-2.11.0 + + + + + Scott Sanders + sanders + sanders@apache.org + + + Java Developer + + + + dIon Gillard + + dion + dion@apache.org + + + Java Developer + + + + Nicola Ken Barozzi + nicolaken + nicolaken@apache.org + + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Stephen Colebourne + scolebourne + + + Java Developer + + 0 + + + Jeremias Maerki + jeremias + jeremias@apache.org + + + Java Developer + + +1 + + + Matthew Hawthorne + matth + matth@apache.org + + + Java Developer + + + + Martin Cooper + martinc + martinc@apache.org + + + Java Developer + + + + Rob Oxspring + roxspring + roxspring@apache.org + + + Java Developer + + + + Jochen Wiedmann + jochen + jochen.wiedmann@gmail.com + + + Niall Pemberton + niallp + + Java Developer + + + + Jukka Zitting + jukka + + Java Developer + + + + ggregory + Gary Gregory + ggregory at apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + https://people.apache.org/~ggregory/img/garydgregory80.png + + + + Kristian Rosenvold + krosenvold + krosenvold@apache.org + +1 + + + + + + Rahul Akolkar + + + Jason Anderson + + + Nathan Beyer + + + Emmanuel Bourg + + + Chris Eldredge + + + Magnus Grimsell + + + Jim Harrington + + + Thomas Ledoux + + + Andy Lehane + + + Marcelo Liberato + + + Alban Peignier + alban.peignier at free.fr + + + Adam Retter + Evolved Binary + + + Ian Springer + + + Dominik Stadler + + + Masato Tezuka + + + James Urie + + + Frank W. Zammetti + + + + + + + org.junit + junit-bom + 5.7.2 + pom + import + + + + + + + org.junit.jupiter + junit-jupiter + test + + + org.junit-pioneer + junit-pioneer + 1.4.2 + test + + + org.mockito + mockito-inline + 3.11.2 + test + + + com.google.jimfs + jimfs + 1.2 + test + + + org.apache.commons + commons-lang3 + 3.12.0 + test + + + org.openjdk.jmh + jmh-core + ${jmh.version} + test + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh.version} + test + + + + + 1.8 + 1.8 + io + org.apache.commons.io + RC1 + 2.10.0 + 2.11.0 + (requires Java 8) + IO + 12310477 + + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output;version=1.4.9999;-noimport:=true, + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output; + org.apache.commons.io.*;version=${project.version};-noimport:=true + + + + sun.nio.ch;resolution:=optional, + sun.misc;resolution:=optional, + * + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ + site-content + 3.1.2 + 0.8.7 + 3.0.0-M5 + 0.15.3 + 4.2.3 + 4.3.0 + 1.32 + false + ${env.JACOCO_SKIP} + true + Gary Gregory + 86fdc7e2a11262cb + + + + + clean package apache-rat:check japicmp:cmp checkstyle:check javadoc:javadoc + + + + org.apache.rat + apache-rat-plugin + 0.13 + + + src/test/resources/**/*.bin + src/test/resources/dir-equals-tests/** + test/** + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + ${basedir}/checkstyle.xml + false + + + + com.puppycrawl.tools + checkstyle + 8.44 + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + enforce-maven + + enforce + + + + + 3.0.5 + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + ${commons.module.name} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + xerces:xercesImpl + + 1 + false + + ${argLine} -Xmx25M + + + **/*Test*.class + + + **/*AbstractTestCase* + **/testtools/** + + **/*$* + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.plugin.version} + + + com.github.spotbugs + spotbugs + ${spotbugs.impl.version} + + + + ${basedir}/spotbugs-exclude-filter.xml + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.plugin.version} + + ${basedir}/spotbugs-exclude-filter.xml + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 3.0.0 + + + prepare-checkout + pre-site + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + java9+ + + [9,) + + + + true + + + + benchmark + + true + org.apache + + + + + org.codehaus.mojo + exec-maven-plugin + 3.0.0 + + + benchmark + test + + exec + + + test + java + + -classpath + + org.openjdk.jmh.Main + -rf + json + -rff + target/jmh-result.${benchmark}.json + ${benchmark} + + + + + + + + + + diff --git a/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom.sha1 b/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom.sha1 new file mode 100644 index 000000000..7049ab8d5 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom.sha1 @@ -0,0 +1 @@ +3fe5d6ebed1afb72c3e8c166dba0b0e00fdd1f16 \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.15.1/_remote.repositories b/code/arachne/commons-io/commons-io/2.15.1/_remote.repositories new file mode 100644 index 000000000..6e6fd6bcf --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.15.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:14 EDT 2024 +commons-io-2.15.1.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom b/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom new file mode 100644 index 000000000..d43ebd2d5 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom @@ -0,0 +1,603 @@ + + + + + org.apache.commons + commons-parent + 65 + + 4.0.0 + commons-io + commons-io + 2.15.1 + Apache Commons IO + + 2002 + +The Apache Commons IO library contains utility classes, stream implementations, file filters, +file comparators, endian transformation classes, and much more. + + + https://commons.apache.org/proper/commons-io/ + + + jira + https://issues.apache.org/jira/browse/IO + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/commons-io.git + scm:git:https://gitbox.apache.org/repos/asf/commons-io.git + https://gitbox.apache.org/repos/asf?p=commons-io.git + rel/commons-io-2.15.1 + + + + + Scott Sanders + sanders + sanders@apache.org + + + Java Developer + + + + dIon Gillard + + dion + dion@apache.org + + + Java Developer + + + + Nicola Ken Barozzi + nicolaken + nicolaken@apache.org + + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Stephen Colebourne + scolebourne + + + Java Developer + + 0 + + + Jeremias Maerki + jeremias + jeremias@apache.org + + + Java Developer + + +1 + + + Matthew Hawthorne + matth + matth@apache.org + + + Java Developer + + + + Martin Cooper + martinc + martinc@apache.org + + + Java Developer + + + + Rob Oxspring + roxspring + roxspring@apache.org + + + Java Developer + + + + Jochen Wiedmann + jochen + jochen.wiedmann@gmail.com + + + Niall Pemberton + niallp + + Java Developer + + + + Jukka Zitting + jukka + + Java Developer + + + + ggregory + Gary Gregory + ggregory at apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + https://people.apache.org/~ggregory/img/garydgregory80.png + + + + Kristian Rosenvold + krosenvold + krosenvold@apache.org + +1 + + + + + + Rahul Akolkar + + + Jason Anderson + + + Nathan Beyer + + + Emmanuel Bourg + + + Chris Eldredge + + + Magnus Grimsell + + + Jim Harrington + + + Thomas Ledoux + + + Andy Lehane + + + Marcelo Liberato + + + Alban Peignier + alban.peignier at free.fr + + + Adam Retter + Evolved Binary + + + Ian Springer + + + Dominik Stadler + + + Masato Tezuka + + + James Urie + + + Frank W. Zammetti + + + Martin Grigorov + mgrigorov@apache.org + + + Arturo Bernal + + + + + + org.junit.jupiter + junit-jupiter + test + + + org.junit-pioneer + junit-pioneer + 1.9.1 + test + + + + net.bytebuddy + byte-buddy + ${commons.bytebuddy.version} + test + + + + net.bytebuddy + byte-buddy-agent + ${commons.bytebuddy.version} + test + + + org.mockito + mockito-inline + 4.11.0 + test + + + com.google.jimfs + jimfs + 1.3.0 + test + + + org.apache.commons + commons-lang3 + 3.14.0 + test + + + commons-codec + commons-codec + 1.16.0 + test + + + org.openjdk.jmh + jmh-core + ${jmh.version} + test + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh.version} + test + + + + + 1.8 + 1.8 + io + org.apache.commons.io + RC1 + 2.15.0 + 2.15.1 + 2.15.2 + (requires Java 8) + IO + 12310477 + + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output;version=1.4.9999;-noimport:=true, + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output; + org.apache.commons.io.*;version=${project.version};-noimport:=true + + + + sun.nio.ch;resolution:=optional, + sun.misc;resolution:=optional, + * + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ + site-content + ${commons.javadoc8.java.link} + 1.37 + 1.14.10 + false + ${env.JACOCO_SKIP} + true + + + + + clean verify apache-rat:check japicmp:cmp checkstyle:check spotbugs:check pmd:check javadoc:javadoc + + + + org.apache.rat + apache-rat-plugin + 0.15 + + + src/test/resources/**/*.bin + src/test/resources/dir-equals-tests/** + test/** + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + ${basedir}/src/conf/checkstyle.xml + ${basedir}/src/conf/checkstyle-suppressions.xml + false + true + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + ${commons.module.name} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + xerces:xercesImpl + + 1 + false + + + ${argLine} -Xmx25M + + + **/*Test*.class + + + **/*AbstractTestCase* + **/testtools/** + + **/*$* + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + com.github.spotbugs + spotbugs-maven-plugin + + ${basedir}/src/conf/spotbugs-exclude-filter.xml + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + + org.apache.commons.io.StreamIterator + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + src/conf/maven-pmd-plugin.xml + + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + com.github.spotbugs + spotbugs-maven-plugin + + ${basedir}/src/conf/spotbugs-exclude-filter.xml + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + + org.apache.commons.io.StreamIterator + + + + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 3.1.0 + + + prepare-checkout + pre-site + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + java9-compile + + [9,) + + + + true + 8 + + + + benchmark + + true + org.apache + + + + + org.codehaus.mojo + exec-maven-plugin + 3.1.1 + + + benchmark + test + + exec + + + test + java + + -classpath + + org.openjdk.jmh.Main + -rf + json + -rff + target/jmh-result.${benchmark}.json + ${benchmark} + + + + + + + + + + diff --git a/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom.sha1 b/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom.sha1 new file mode 100644 index 000000000..c3b9841d0 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom.sha1 @@ -0,0 +1 @@ +3ec366b41f9e6c0f3f2c413299a0186ad6d093c4 \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.2/_remote.repositories b/code/arachne/commons-io/commons-io/2.2/_remote.repositories new file mode 100644 index 000000000..4aa0f937f --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:15 EDT 2024 +commons-io-2.2.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom b/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom new file mode 100644 index 000000000..83925b626 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom @@ -0,0 +1,346 @@ + + + + + org.apache.commons + commons-parent + 24 + + 4.0.0 + commons-io + commons-io + 2.2 + Commons IO + + 2002 + +The Commons IO library contains utility classes, stream implementations, file filters, +file comparators, endian transformation classes, and much more. + + + http://commons.apache.org/io/ + + + jira + http://issues.apache.org/jira/browse/IO + + + + + apache.website + Apache Commons IO Site + ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid} + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/io/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/io/trunk + http://svn.apache.org/viewvc/commons/proper/io/trunk + + + + + Scott Sanders + sanders + sanders@apache.org + + + Java Developer + + + + dIon Gillard + dion + dion@apache.org + + + Java Developer + + + + Nicola Ken Barozzi + nicolaken + nicolaken@apache.org + + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Stephen Colebourne + scolebourne + + + Java Developer + + 0 + + + Jeremias Maerki + jeremias + jeremias@apache.org + + + Java Developer + + +1 + + + Matthew Hawthorne + matth + matth@apache.org + + + Java Developer + + + + Martin Cooper + martinc + martinc@apache.org + + + Java Developer + + + + Rob Oxspring + roxspring + roxspring@apache.org + + + Java Developer + + + + Jochen Wiedmann + jochen + jochen.wiedmann@gmail.com + + + Niall Pemberton + niallp + + Java Developer + + + + Jukka Zitting + jukka + + Java Developer + + + + Gary Gregory + ggregory + ggregory@apache.org + http://www.garygregory.com + -5 + + + + + + Rahul Akolkar + + + Jason Anderson + + + Nathan Beyer + + + Emmanuel Bourg + + + Chris Eldredge + + + Magnus Grimsell + + + Jim Harrington + + + Thomas Ledoux + + + Andy Lehane + + + Marcelo Liberato + + + Alban Peignier + alban.peignier at free.fr + + + Ian Springer + + + Masato Tezuka + + + James Urie + + + Frank W. Zammetti + + + + + + junit + junit + 4.10 + test + + + + + 1.5 + 1.5 + io + 2.2 + RC1 + (requires JDK 1.5+) + 1.4 + (requires JDK 1.3+) + IO + 12310477 + + 2.4 + + + + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + pertest + + -Xmx25M + + + **/*Test*.class + + + **/*AbstractTestCase* + **/testtools/** + + + **/*$* + + + + + maven-assembly-plugin + + + src/main/assembly/bin.xml + src/main/assembly/src.xml + + gnu + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.9.1 + + ${basedir}/checkstyle.xml + false + + + + org.codehaus.mojo + findbugs-maven-plugin + 2.4.0 + + Normal + Default + ${basedir}/findbugs-exclude-filter.xml + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Key DESC,Type,Fix Version DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + 300 + + + + + changes-report + jira-report + + + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/**/*.bin + .pmd + + + + + + diff --git a/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom.sha1 b/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom.sha1 new file mode 100644 index 000000000..856e74c86 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom.sha1 @@ -0,0 +1 @@ +1ef24807b2eaf9d51b5587710878146d630cc855 \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.4/_remote.repositories b/code/arachne/commons-io/commons-io/2.4/_remote.repositories new file mode 100644 index 000000000..c498e8fc5 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:14 EDT 2024 +commons-io-2.4.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom b/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom new file mode 100644 index 000000000..99bdc7f87 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom @@ -0,0 +1,323 @@ + + + + + org.apache.commons + commons-parent + 25 + + 4.0.0 + commons-io + commons-io + 2.4 + Commons IO + + 2002 + +The Commons IO library contains utility classes, stream implementations, file filters, +file comparators, endian transformation classes, and much more. + + + http://commons.apache.org/io/ + + + jira + http://issues.apache.org/jira/browse/IO + + + + + apache.website + Apache Commons IO Site + ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid} + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/io/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/io/trunk + http://svn.apache.org/viewvc/commons/proper/io/trunk + + + + + Scott Sanders + sanders + sanders@apache.org + + + Java Developer + + + + dIon Gillard + dion + dion@apache.org + + + Java Developer + + + + Nicola Ken Barozzi + nicolaken + nicolaken@apache.org + + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Stephen Colebourne + scolebourne + + + Java Developer + + 0 + + + Jeremias Maerki + jeremias + jeremias@apache.org + + + Java Developer + + +1 + + + Matthew Hawthorne + matth + matth@apache.org + + + Java Developer + + + + Martin Cooper + martinc + martinc@apache.org + + + Java Developer + + + + Rob Oxspring + roxspring + roxspring@apache.org + + + Java Developer + + + + Jochen Wiedmann + jochen + jochen.wiedmann@gmail.com + + + Niall Pemberton + niallp + + Java Developer + + + + Jukka Zitting + jukka + + Java Developer + + + + Gary Gregory + ggregory + ggregory@apache.org + http://www.garygregory.com + -5 + + + + + + Rahul Akolkar + + + Jason Anderson + + + Nathan Beyer + + + Emmanuel Bourg + + + Chris Eldredge + + + Magnus Grimsell + + + Jim Harrington + + + Thomas Ledoux + + + Andy Lehane + + + Marcelo Liberato + + + Alban Peignier + alban.peignier at free.fr + + + Ian Springer + + + Masato Tezuka + + + James Urie + + + Frank W. Zammetti + + + + + + junit + junit + 4.10 + test + + + + + 1.6 + 1.6 + io + RC1 + 2.4 + (requires JDK 1.6+) + 2.2 + (requires JDK 1.5+) + IO + 12310477 + + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output;version=1.4.9999;-noimport:=true, + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output; + org.apache.commons.io.*;version=${project.version};-noimport:=true + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + pertest + + -Xmx25M + + + **/*Test*.class + + + **/*AbstractTestCase* + **/testtools/** + + **/*$* + + + + + maven-assembly-plugin + + + src/main/assembly/bin.xml + src/main/assembly/src.xml + + gnu + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.9.1 + + ${basedir}/checkstyle.xml + false + + + + org.codehaus.mojo + findbugs-maven-plugin + 2.4.0 + + Normal + Default + ${basedir}/findbugs-exclude-filter.xml + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/**/*.bin + .pmd + + + + + + diff --git a/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom.sha1 b/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom.sha1 new file mode 100644 index 000000000..8d01778d5 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom.sha1 @@ -0,0 +1 @@ +9ece23effe8bce3904f3797a76b1ba6ab681e1b9 \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.5/_remote.repositories b/code/arachne/commons-io/commons-io/2.5/_remote.repositories new file mode 100644 index 000000000..eb8e21f9d --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:09 EDT 2024 +commons-io-2.5.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom b/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom new file mode 100644 index 000000000..8ab814911 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom @@ -0,0 +1,422 @@ + + + + + org.apache.commons + commons-parent + 39 + + 4.0.0 + commons-io + commons-io + 2.5 + Apache Commons IO + + 2002 + +The Apache Commons IO library contains utility classes, stream implementations, file filters, +file comparators, endian transformation classes, and much more. + + + http://commons.apache.org/proper/commons-io/ + + + jira + http://issues.apache.org/jira/browse/IO + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-i/ + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/io/tags/commons-io-2.5 + scm:svn:https://svn.apache.org/repos/asf/commons/proper/io/tags/commons-io-2.5 + http://svn.apache.org/viewvc/commons/proper/io/tags/commons-io-2.5 + + + + + Scott Sanders + sanders + sanders@apache.org + + + Java Developer + + + + dIon Gillard + + dion + dion@apache.org + + + Java Developer + + + + Nicola Ken Barozzi + nicolaken + nicolaken@apache.org + + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Stephen Colebourne + scolebourne + + + Java Developer + + 0 + + + Jeremias Maerki + jeremias + jeremias@apache.org + + + Java Developer + + +1 + + + Matthew Hawthorne + matth + matth@apache.org + + + Java Developer + + + + Martin Cooper + martinc + martinc@apache.org + + + Java Developer + + + + Rob Oxspring + roxspring + roxspring@apache.org + + + Java Developer + + + + Jochen Wiedmann + jochen + jochen.wiedmann@gmail.com + + + Niall Pemberton + niallp + + Java Developer + + + + Jukka Zitting + jukka + + Java Developer + + + + Gary Gregory + ggregory + ggregory@apache.org + http://www.garygregory.com + -5 + + + Kristian Rosenvold + krosenvold + krosenvold@apache.org + +1 + + + + + + Rahul Akolkar + + + Jason Anderson + + + Nathan Beyer + + + Emmanuel Bourg + + + Chris Eldredge + + + Magnus Grimsell + + + Jim Harrington + + + Thomas Ledoux + + + Andy Lehane + + + Marcelo Liberato + + + Alban Peignier + alban.peignier at free.fr + + + Ian Springer + + + Dominik Stadler + + + Masato Tezuka + + + James Urie + + + Frank W. Zammetti + + + + + + junit + junit + 4.12 + test + + + + + 1.6 + 1.6 + io + RC4 + 2.5 + (requires JDK 1.6+) + IO + 12310477 + + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output;version=1.4.9999;-noimport:=true, + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output; + org.apache.commons.io.*;version=${project.version};-noimport:=true + + + site-content + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.14.1 + + + xerces:xercesImpl + + pertest + + -Xmx25M + + + **/*Test*.class + + + **/*AbstractTestCase* + **/testtools/** + + **/*$* + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + + org.apache.rat + apache-rat-plugin + + + + src/test/resources/**/*.bin + test/** + + + site-content/** + .pmd + src/site/resources/download_*.cgi + + + + + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.7 + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.12.1 + + ${basedir}/checkstyle.xml + false + + + + org.codehaus.mojo + findbugs-maven-plugin + ${commons.findbugs.version} + + Normal + Default + ${basedir}/findbugs-exclude-filter.xml + + + + org.apache.rat + apache-rat-plugin + + + + src/test/resources/**/*.bin + test/** + + + site-content/** + .pmd + src/site/resources/download_*.cgi + + + + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + prepare-checkout + pre-site + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1 b/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1 new file mode 100644 index 000000000..c2e40c07c --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1 @@ -0,0 +1 @@ +7e39112810f6096061c43504188d18edc7d7eece \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.7/_remote.repositories b/code/arachne/commons-io/commons-io/2.7/_remote.repositories new file mode 100644 index 000000000..7e87f7105 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +commons-io-2.7.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom b/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom new file mode 100644 index 000000000..978b23a2d --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom @@ -0,0 +1,473 @@ + + + + + org.apache.commons + commons-parent + 50 + + 4.0.0 + commons-io + commons-io + 2.7 + Apache Commons IO + + 2002 + +The Apache Commons IO library contains utility classes, stream implementations, file filters, +file comparators, endian transformation classes, and much more. + + + https://commons.apache.org/proper/commons-io/ + + + jira + https://issues.apache.org/jira/browse/IO + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/commons-io.git + scm:git:https://gitbox.apache.org/repos/asf/commons-io.git + https://gitbox.apache.org/repos/asf?p=commons-io.git + commons-io-2.6 + + + + + Scott Sanders + sanders + sanders@apache.org + + + Java Developer + + + + dIon Gillard + + dion + dion@apache.org + + + Java Developer + + + + Nicola Ken Barozzi + nicolaken + nicolaken@apache.org + + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Stephen Colebourne + scolebourne + + + Java Developer + + 0 + + + Jeremias Maerki + jeremias + jeremias@apache.org + + + Java Developer + + +1 + + + Matthew Hawthorne + matth + matth@apache.org + + + Java Developer + + + + Martin Cooper + martinc + martinc@apache.org + + + Java Developer + + + + Rob Oxspring + roxspring + roxspring@apache.org + + + Java Developer + + + + Jochen Wiedmann + jochen + jochen.wiedmann@gmail.com + + + Niall Pemberton + niallp + + Java Developer + + + + Jukka Zitting + jukka + + Java Developer + + + + Gary Gregory + ggregory + ggregory@apache.org + http://www.garygregory.com + -5 + + + Kristian Rosenvold + krosenvold + krosenvold@apache.org + +1 + + + + + + Rahul Akolkar + + + Jason Anderson + + + Nathan Beyer + + + Emmanuel Bourg + + + Chris Eldredge + + + Magnus Grimsell + + + Jim Harrington + + + Thomas Ledoux + + + Andy Lehane + + + Marcelo Liberato + + + Alban Peignier + alban.peignier at free.fr + + + Adam Retter + Evolved Binary + + + Ian Springer + + + Dominik Stadler + + + Masato Tezuka + + + James Urie + + + Frank W. Zammetti + + + + + + org.junit.jupiter + junit-jupiter + 5.6.2 + test + + + org.junit-pioneer + junit-pioneer + 0.6.0 + test + + + org.mockito + mockito-core + 3.3.3 + test + + + com.google.jimfs + jimfs + 1.1 + test + + + org.apache.commons + commons-lang3 + 3.10 + test + + + + + 1.8 + 1.8 + io + org.apache.commons.io + RC1 + 2.6 + 2.7 + (requires Java 8) + IO + 12310477 + + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output;version=1.4.9999;-noimport:=true, + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output; + org.apache.commons.io.*;version=${project.version};-noimport:=true + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ + site-content + 3.1.0 + 0.8.5 + 2.22.2 + 0.14.3 + false + ${env.JACOCO_SKIP} + 2.6 + true + Gary Gregory + 86fdc7e2a11262cb + + + + clean verify apache-rat:check clirr:check checkstyle:check javadoc:javadoc + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/**/*.bin + src/test/resources/dir-equals-tests/** + test/** + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + ${commons.module.name} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + xerces:xercesImpl + + 1 + false + + ${argLine} -Xmx25M + + + **/*Test*.class + + + **/*AbstractTestCase* + **/testtools/** + + **/*$* + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + ${basedir}/checkstyle.xml + false + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + ${basedir}/checkstyle.xml + false + + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.5 + + Normal + Default + ${basedir}/findbugs-exclude-filter.xml + + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + prepare-checkout + pre-site + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + java9+ + + [9,) + + + + true + + + + diff --git a/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom.sha1 b/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom.sha1 new file mode 100644 index 000000000..8e31bea04 --- /dev/null +++ b/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom.sha1 @@ -0,0 +1 @@ +60fb89f2e5c6da8e16bdc716dea69a23e9a5c9bf \ No newline at end of file diff --git a/code/arachne/commons-lang/commons-lang/2.6/_remote.repositories b/code/arachne/commons-lang/commons-lang/2.6/_remote.repositories new file mode 100644 index 000000000..83533bf92 --- /dev/null +++ b/code/arachne/commons-lang/commons-lang/2.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:15 EDT 2024 +commons-lang-2.6.pom>central= diff --git a/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom b/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom new file mode 100644 index 000000000..3ceccf9de --- /dev/null +++ b/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom @@ -0,0 +1,545 @@ + + + + + org.apache.commons + commons-parent + 17 + + 4.0.0 + commons-lang + commons-lang + 2.6 + Commons Lang + + 2001 + + Commons Lang, a package of Java utility classes for the + classes that are in java.lang's hierarchy, or are considered to be so + standard as to justify existence in java.lang. + + + http://commons.apache.org/lang/ + + + jira + http://issues.apache.org/jira/browse/LANG + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/lang/branches/LANG_2_X + scm:svn:https://svn.apache.org/repos/asf/commons/proper/lang/branches/LANG_2_X + http://svn.apache.org/viewvc/commons/proper/lang/branches/LANG_2_X + + + + + Daniel Rall + dlr + dlr@finemaltcoding.com + CollabNet, Inc. + + Java Developer + + + + Stephen Colebourne + scolebourne + scolebourne@joda.org + SITA ATS Ltd + 0 + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Steven Caswell + scaswell + stevencaswell@apache.org + + + Java Developer + + -5 + + + Robert Burrell Donkin + rdonkin + rdonkin@apache.org + + + Java Developer + + + + Gary D. Gregory + ggregory + ggregory@seagullsw.com + Seagull Software + -8 + + Java Developer + + + + Phil Steitz + psteitz + phil@steitz.com + + + Java Developer + + + + Fredrik Westermarck + fredrik + + + + Java Developer + + + + James Carman + jcarman + jcarman@apache.org + Carman Consulting, Inc. + + Java Developer + + + + Niall Pemberton + niallp + + Java Developer + + + + Matt Benson + mbenson + + Java Developer + + + + Joerg Schaible + joehni + joerg.schaible@gmx.de + + Java Developer + + +1 + + + Oliver Heger + oheger + oheger@apache.org + +1 + + Java Developer + + + + Paul Benedict + pbenedict + pbenedict@apache.org + + Java Developer + + + + + + C. Scott Ananian + + + Chris Audley + + + Stephane Bailliez + + + Michael Becke + + + Benjamin Bentmann + + + Ola Berg + + + Nathan Beyer + + + Stefan Bodewig + + + Janek Bogucki + + + Mike Bowler + + + Sean Brown + + + Alexander Day Chaffee + + + Al Chou + + + Greg Coladonato + + + Maarten Coene + + + Justin Couch + + + Michael Davey + + + Norm Deane + + + Ringo De Smet + + + Russel Dittmar + + + Steve Downey + + + Matthias Eichel + + + Christopher Elkins + + + Chris Feldhacker + + + Pete Gieser + + + Jason Gritman + + + Matthew Hawthorne + + + Michael Heuer + + + Chris Hyzer + + + Marc Johnson + + + Shaun Kalley + + + Tetsuya Kaneuchi + + + Nissim Karpenstein + + + Ed Korthof + + + Holger Krauth + + + Rafal Krupinski + + + Rafal Krzewski + + + Craig R. McClanahan + + + Rand McNeely + + + Hendrik Maryns + + + Dave Meikle + + + Nikolay Metchev + + + Kasper Nielsen + + + Tim O'Brien + + + Brian S O'Neill + + + Andrew C. Oliver + + + Alban Peignier + + + Moritz Petersen + + + Dmitri Plotnikov + + + Neeme Praks + + + Eric Pugh + + + Stephen Putman + + + Travis Reeder + + + Antony Riley + + + Scott Sanders + + + Ralph Schaer + + + Henning P. Schmiedehausen + + + Sean Schofield + + + Robert Scholte + + + Reuben Sivan + + + Ville Skytta + + + Jan Sorensen + + + Glen Stampoultzis + + + Scott Stanchfield + + + Jon S. Stevens + + + Sean C. Sullivan + + + Ashwin Suresh + + + Helge Tesgaard + + + Arun Mammen Thomas + + + Masato Tezuka + + + Jeff Varszegi + + + Chris Webb + + + Mario Winterer + + + Stepan Koltsov + + + Holger Hoffstatte + + + Derek C. Ashmore + + + + + + + junit + junit + 3.8.1 + test + + + + + UTF-8 + UTF-8 + 1.3 + 1.3 + lang + 2.6 + (Java 1.3+) + 3.0-beta + (Java 5.0+) + LANG + 12310481 + **/RandomUtilsFreqTest.java + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/*Test.java + + + **/EntitiesPerformanceTest.java + ${random.exclude.test} + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + + + + + + test-random-freq + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/RandomUtilsFreqTest.java + + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + 2.3 + + ${basedir}/src/site/changes/changes.xml + %URL%/%ISSUE% + + + + + changes-report + + + + + + maven-checkstyle-plugin + 2.6 + + ${basedir}/checkstyle.xml + false + + + + + org.codehaus.mojo + findbugs-maven-plugin + 2.3.1 + + Normal + Default + ${basedir}/findbugs-exclude-filter.xml + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.4 + + + org.codehaus.mojo + clirr-maven-plugin + 2.2.2 + + 2.5 + info + + + + + + diff --git a/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 b/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 new file mode 100644 index 000000000..505197df1 --- /dev/null +++ b/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 @@ -0,0 +1 @@ +347d60b180fa80e5699d8e2cb72c99c93dda5454 \ No newline at end of file diff --git a/code/arachne/commons-logging/commons-logging/1.2/_remote.repositories b/code/arachne/commons-logging/commons-logging/1.2/_remote.repositories new file mode 100644 index 000000000..6886d1e21 --- /dev/null +++ b/code/arachne/commons-logging/commons-logging/1.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:16 EDT 2024 +commons-logging-1.2.pom>central= diff --git a/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom b/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom new file mode 100644 index 000000000..cdad31c28 --- /dev/null +++ b/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom @@ -0,0 +1,547 @@ + + + + + org.apache.commons + commons-parent + 34 + + 4.0.0 + commons-logging + commons-logging + Apache Commons Logging + 1.2 + Apache Commons Logging is a thin adapter allowing configurable bridging to other, + well known logging systems. + http://commons.apache.org/proper/commons-logging/ + + + JIRA + http://issues.apache.org/jira/browse/LOGGING + + + 2001 + + + + baliuka + Juozas Baliuka + baliuka@apache.org + + Java Developer + + + + morgand + Morgan Delagrange + morgand@apache.org + Apache + + Java Developer + + + + donaldp + Peter Donald + donaldp@apache.org + + + rdonkin + Robert Burrell Donkin + rdonkin@apache.org + The Apache Software Foundation + + + skitching + Simon Kitching + skitching@apache.org + The Apache Software Foundation + + + dennisl + Dennis Lundberg + dennisl@apache.org + The Apache Software Foundation + + + costin + Costin Manolache + costin@apache.org + The Apache Software Foundation + + + craigmcc + Craig McClanahan + craigmcc@apache.org + The Apache Software Foundation + + + tn + Thomas Neidhart + tn@apache.org + The Apache Software Foundation + + + sanders + Scott Sanders + sanders@apache.org + The Apache Software Foundation + + + rsitze + Richard Sitze + rsitze@apache.org + The Apache Software Foundation + + + bstansberry + Brian Stansberry + + + rwaldhoff + Rodney Waldhoff + rwaldhoff@apache.org + The Apache Software Foundation + + + + + Matthew P. Del Buono + + Provided patch + + + + Vince Eagen + vince256 at comcast dot net + + Lumberjack logging abstraction + + + + Peter Lawrey + + Provided patch + + + + Berin Loritsch + bloritsch at apache dot org + + Lumberjack logging abstraction + JDK 1.4 logging abstraction + + + + Philippe Mouawad + + Provided patch + + + + Neeme Praks + neeme at apache dot org + + Avalon logging abstraction + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/logging/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/logging/trunk + http://svn.apache.org/repos/asf/commons/proper/logging/trunk + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + testjar + package + + test-jar + + + commons-logging + + + + + apijar + package + + jar + + + ${project.artifactId}-api-${project.version} + + org/apache/commons/logging/*.class + org/apache/commons/logging/impl/LogFactoryImpl*.class + org/apache/commons/logging/impl/WeakHashtable*.class + org/apache/commons/logging/impl/SimpleLog*.class + org/apache/commons/logging/impl/NoOpLog*.class + org/apache/commons/logging/impl/Jdk14Logger.class + META-INF/LICENSE.txt + META-INF/NOTICE.txt + + + **/package.html + + + + + + adaptersjar + package + + jar + + + ${project.artifactId}-adapters-${project.version} + + org/apache/commons/logging/impl/**.class + META-INF/LICENSE.txt + META-INF/NOTICE.txt + + + org/apache/commons/logging/impl/WeakHashtable*.class + org/apache/commons/logging/impl/LogFactoryImpl*.class + + + + + + + fulljar + package + + jar + + + ${project.artifactId}-${project.version} + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + site.resources + site + + + + + + + + + + + run + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.0 + + + attach-artifacts + package + + attach-artifact + + + + + ${project.build.directory}/${project.artifactId}-adapters-${project.version}.jar + jar + adapters + + + ${project.build.directory}/${project.artifactId}-api-${project.version}.jar + jar + api + + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + true + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + true + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.surefire.version} + + + integration-test + + integration-test + verify + + + ${failsafe.runorder} + + **/*TestCase.java + + + + ${log4j:log4j:jar} + ${logkit:logkit:jar} + ${javax.servlet:servlet-api:jar} + target/${project.build.finalName}.jar + target/${project.artifactId}-api-${project.version}.jar + target/${project.artifactId}-adapters-${project.version}.jar + target/commons-logging-tests.jar + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.3 + + + src/main/assembly/bin.xml + src/main/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-dependency-plugin + 2.4 + + + + properties + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + commons-logging-** + + + + + + + + + + junit + junit + 3.8.1 + test + + + log4j + log4j + 1.2.17 + true + + + logkit + logkit + 1.0.1 + true + + + avalon-framework + avalon-framework + 4.1.5 + true + + + javax.servlet + servlet-api + 2.3 + provided + true + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.7 + + ${basedir}/checkstyle.xml + false + ${basedir}/license-header.txt + + + + org.codehaus.mojo + clirr-maven-plugin + 2.2.2 + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0-beta-1 + + + org.codehaus.mojo + findbugs-maven-plugin + 2.5.2 + + true + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.0.1 + + + 1.3 + true + + ${basedir}/pmd.xml + + + + + + + + + apache.website + ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/logging/ + + + + + 1.2 + 1.2 + logging + 1.2 + LOGGING + 12310484 + + RC2 + 2.12 + true + + filesystem + + + javax.servlet;version="[2.1.0, 3.0.0)";resolution:=optional, + org.apache.avalon.framework.logger;version="[4.1.3, 4.1.5]";resolution:=optional, + org.apache.log;version="[1.0.1, 1.0.1]";resolution:=optional, + org.apache.log4j;version="[1.2.15, 2.0.0)";resolution:=optional + + + diff --git a/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 b/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 new file mode 100644 index 000000000..8cb2a6214 --- /dev/null +++ b/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 @@ -0,0 +1 @@ +075c03ba4b01932842a996ef8d3fc1ab61ddeac2 \ No newline at end of file diff --git a/code/arachne/data-source-manager-3.x-MDACA.jar b/code/arachne/data-source-manager-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..2728374994ff6a7132806c2b206401e723230a3e GIT binary patch literal 27341 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 literal 0 HcmV?d00001 diff --git a/code/arachne/execution-engine-commons-3.x-MDACA.jar b/code/arachne/execution-engine-commons-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..9c97bc3a2ed105b7b670aab2130f193c86626b14 GIT binary patch literal 36429 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 mYx)4{>-gVK@jK{44pmMP47h>^_+central= diff --git a/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom b/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom new file mode 100644 index 000000000..f2fbcfef7 --- /dev/null +++ b/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom @@ -0,0 +1,262 @@ + + + + 4.0.0 + buji-pac4j + 9.0.1 + jar + pac4j bridge for Shiro + Bridge from the pac4j security library to Shiro + https://github.com/bujiio/buji-pac4j + + + io.buji + buji-parent + 1 + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + apache-snapshots + Apache Snapshots + https://repository.apache.org/snapshots/ + + false + + + true + + + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:git@github.com:bujiio/buji-pac4j.git + scm:git:git@github.com:bujiio/buji-pac4j.git + https://github.com/bujiio/buji-pac4j + + + + 6.0.1 + 17 + 1.13.0 + 6.55.0 + + + + + org.apache.shiro + shiro-web + ${shiro.version} + + + org.pac4j + pac4j-javaee + ${pac4j.version} + + + org.projectlombok + lombok + 1.18.30 + + + org.slf4j + jcl-over-slf4j + 2.0.12 + test + + + org.pac4j + pac4j-cas + ${pac4j.version} + test + + + junit + junit + 4.13.2 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.12.1 + + ${java.version} + UTF-8 + + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + true + + + io.buji.pac4j + io.buji.pac4j*;version=${project.version} + + org.apache.shiro*;version="[1.2, 2)", + org.pac4j*;version="[5.0, 6.0)", + org.scribe*;version="[8.0)", + * + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + UTF-8 + UTF-8 + UTF-8 + + + + attach-javadocs + + jar + + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.8.3.1 + + Low + Max + true + ${basedir}/spotbugs-exclude.xml + true + + + + run-sportbugs + compile + + check + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.21.2 + + true + true + + + + run-pmd + compile + + check + + + + + + net.sourceforge.pmd + pmd-core + ${pmdVersion} + + + net.sourceforge.pmd + pmd-java + ${pmdVersion} + + + net.sourceforge.pmd + pmd-javascript + ${pmdVersion} + + + net.sourceforge.pmd + pmd-jsp + ${pmdVersion} + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.5 + + + **/*Tests.java + + + + + + + diff --git a/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom.sha1 b/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom.sha1 new file mode 100644 index 000000000..b9f296058 --- /dev/null +++ b/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom.sha1 @@ -0,0 +1 @@ +2d17492f0acfe13fd5d5fa944687841d1338fde4 \ No newline at end of file diff --git a/code/arachne/io/buji/buji-parent/1/_remote.repositories b/code/arachne/io/buji/buji-parent/1/_remote.repositories new file mode 100644 index 000000000..2144a99f9 --- /dev/null +++ b/code/arachne/io/buji/buji-parent/1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:23 EDT 2024 +buji-parent-1.pom>central= diff --git a/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom b/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom new file mode 100644 index 000000000..e30c02518 --- /dev/null +++ b/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom @@ -0,0 +1,31 @@ + + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + + + io.buji + buji-parent + 1 + pom + Buji + http://buji.io + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:git@github.com:bujiio/buji-parent.git + scm:git:git@github.com:bujiio/buji-parent.git + git@github.com:bujiio/buji-parent.git + + + \ No newline at end of file diff --git a/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom.sha1 b/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom.sha1 new file mode 100644 index 000000000..fd9ba8364 --- /dev/null +++ b/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom.sha1 @@ -0,0 +1 @@ +8686e27c4db0cc924621f5d9a09d0f66e9b906d5 \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/_remote.repositories new file mode 100644 index 000000000..f5389e914 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:46 EDT 2024 +metrics-bom-4.1.7.pom>local-repo= diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom new file mode 100644 index 000000000..bec24c7bb --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom @@ -0,0 +1,121 @@ + + + 4.0.0 + + + io.dropwizard.metrics + metrics-parent + 4.1.7 + + + metrics-bom + Metrics BOM + pom + Bill of Materials for Metrics + + + + + io.dropwizard.metrics + metrics-annotation + ${project.version} + + + io.dropwizard.metrics + metrics-core + ${project.version} + + + io.dropwizard.metrics + metrics-collectd + ${project.version} + + + io.dropwizard.metrics + metrics-ehcache + ${project.version} + + + io.dropwizard.metrics + metrics-graphite + ${project.version} + + + io.dropwizard.metrics + metrics-healthchecks + ${project.version} + + + io.dropwizard.metrics + metrics-httpclient + ${project.version} + + + io.dropwizard.metrics + metrics-httpasyncclient + ${project.version} + + + io.dropwizard.metrics + metrics-jcache + ${project.version} + + + io.dropwizard.metrics + metrics-jdbi + ${project.version} + + + io.dropwizard.metrics + metrics-jdbi3 + ${project.version} + + + io.dropwizard.metrics + metrics-jersey2 + ${project.version} + + + io.dropwizard.metrics + metrics-jetty9 + ${project.version} + + + io.dropwizard.metrics + metrics-jmx + ${project.version} + + + io.dropwizard.metrics + metrics-json + ${project.version} + + + io.dropwizard.metrics + metrics-jvm + ${project.version} + + + io.dropwizard.metrics + metrics-log4j2 + ${project.version} + + + io.dropwizard.metrics + metrics-logback + ${project.version} + + + io.dropwizard.metrics + metrics-servlet + ${project.version} + + + io.dropwizard.metrics + metrics-servlets + ${project.version} + + + + + diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.lastUpdated new file mode 100644 index 000000000..d38ea0a8f --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:46 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139886343 +http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-bom\:pom\:4.1.7 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139885908 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139885922 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139886033 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139886287 diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.sha1 new file mode 100644 index 000000000..60dc981e6 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.sha1 @@ -0,0 +1 @@ +633e023ea985e3ee07215eaab9b55c307fc87e64 \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/_remote.repositories new file mode 100644 index 000000000..41b93a554 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:30 EDT 2024 +metrics-bom-4.2.19.pom>ohdsi= diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom new file mode 100644 index 000000000..431ca2dad --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom @@ -0,0 +1,176 @@ + + + 4.0.0 + + + io.dropwizard.metrics + metrics-parent + 4.2.19 + + + metrics-bom + Metrics BOM + pom + Bill of Materials for Metrics + + + + + io.dropwizard.metrics + metrics-annotation + ${project.version} + + + io.dropwizard.metrics + metrics-caffeine + ${project.version} + + + io.dropwizard.metrics + metrics-caffeine3 + ${project.version} + + + io.dropwizard.metrics + metrics-core + ${project.version} + + + io.dropwizard.metrics + metrics-collectd + ${project.version} + + + io.dropwizard.metrics + metrics-ehcache + ${project.version} + + + io.dropwizard.metrics + metrics-graphite + ${project.version} + + + io.dropwizard.metrics + metrics-healthchecks + ${project.version} + + + io.dropwizard.metrics + metrics-httpclient + ${project.version} + + + io.dropwizard.metrics + metrics-httpclient5 + ${project.version} + + + io.dropwizard.metrics + metrics-httpasyncclient + ${project.version} + + + io.dropwizard.metrics + metrics-jakarta-servlet + ${project.version} + + + io.dropwizard.metrics + metrics-jakarta-servlets + ${project.version} + + + io.dropwizard.metrics + metrics-jcache + ${project.version} + + + io.dropwizard.metrics + metrics-jdbi + ${project.version} + + + io.dropwizard.metrics + metrics-jdbi3 + ${project.version} + + + io.dropwizard.metrics + metrics-jersey2 + ${project.version} + + + io.dropwizard.metrics + metrics-jersey3 + ${project.version} + + + io.dropwizard.metrics + metrics-jersey31 + ${project.version} + + + io.dropwizard.metrics + metrics-jetty9 + ${project.version} + + + io.dropwizard.metrics + metrics-jetty10 + ${project.version} + + + io.dropwizard.metrics + metrics-jetty11 + ${project.version} + + + io.dropwizard.metrics + metrics-jmx + ${project.version} + + + io.dropwizard.metrics + metrics-json + ${project.version} + + + io.dropwizard.metrics + metrics-jvm + ${project.version} + + + io.dropwizard.metrics + metrics-log4j2 + ${project.version} + + + io.dropwizard.metrics + metrics-logback + ${project.version} + + + io.dropwizard.metrics + metrics-logback13 + ${project.version} + + + io.dropwizard.metrics + metrics-logback14 + ${project.version} + + + io.dropwizard.metrics + metrics-servlet + ${project.version} + + + io.dropwizard.metrics + metrics-servlets + ${project.version} + + + + + diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.lastUpdated new file mode 100644 index 000000000..f886bf297 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:30 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-bom\:pom\:4.2.19 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139870432 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139870443 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139870592 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139870734 diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.sha1 new file mode 100644 index 000000000..bfabfd11a --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.sha1 @@ -0,0 +1 @@ +9ae6a38c9279ba65d21800ec41c535c892dc9cb4 \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/_remote.repositories new file mode 100644 index 000000000..857a6b5ca --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:23 EDT 2024 +metrics-bom-4.2.25.pom>ohdsi= diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom new file mode 100644 index 000000000..0ab914d01 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom @@ -0,0 +1,191 @@ + + + 4.0.0 + + + io.dropwizard.metrics + metrics-parent + 4.2.25 + + + metrics-bom + Metrics BOM + pom + Bill of Materials for Metrics + + + + + io.dropwizard.metrics + metrics-annotation + ${project.version} + + + io.dropwizard.metrics + metrics-caffeine + ${project.version} + + + io.dropwizard.metrics + metrics-caffeine3 + ${project.version} + + + io.dropwizard.metrics + metrics-core + ${project.version} + + + io.dropwizard.metrics + metrics-collectd + ${project.version} + + + io.dropwizard.metrics + metrics-ehcache + ${project.version} + + + io.dropwizard.metrics + metrics-graphite + ${project.version} + + + io.dropwizard.metrics + metrics-healthchecks + ${project.version} + + + io.dropwizard.metrics + metrics-httpclient + ${project.version} + + + io.dropwizard.metrics + metrics-httpclient5 + ${project.version} + + + io.dropwizard.metrics + metrics-httpasyncclient + ${project.version} + + + io.dropwizard.metrics + metrics-jakarta-servlet + ${project.version} + + + io.dropwizard.metrics + metrics-jakarta-servlet6 + ${project.version} + + + io.dropwizard.metrics + metrics-jakarta-servlets + ${project.version} + + + io.dropwizard.metrics + metrics-jcache + ${project.version} + + + io.dropwizard.metrics + metrics-jdbi + ${project.version} + + + io.dropwizard.metrics + metrics-jdbi3 + ${project.version} + + + io.dropwizard.metrics + metrics-jersey2 + ${project.version} + + + io.dropwizard.metrics + metrics-jersey3 + ${project.version} + + + io.dropwizard.metrics + metrics-jersey31 + ${project.version} + + + io.dropwizard.metrics + metrics-jetty9 + ${project.version} + + + io.dropwizard.metrics + metrics-jetty10 + ${project.version} + + + io.dropwizard.metrics + metrics-jetty11 + ${project.version} + + + io.dropwizard.metrics + metrics-jetty12 + ${project.version} + + + io.dropwizard.metrics + metrics-jetty12-ee10 + ${project.version} + + + io.dropwizard.metrics + metrics-jmx + ${project.version} + + + io.dropwizard.metrics + metrics-json + ${project.version} + + + io.dropwizard.metrics + metrics-jvm + ${project.version} + + + io.dropwizard.metrics + metrics-log4j2 + ${project.version} + + + io.dropwizard.metrics + metrics-logback + ${project.version} + + + io.dropwizard.metrics + metrics-logback13 + ${project.version} + + + io.dropwizard.metrics + metrics-logback14 + ${project.version} + + + io.dropwizard.metrics + metrics-servlet + ${project.version} + + + io.dropwizard.metrics + metrics-servlets + ${project.version} + + + + + diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.lastUpdated new file mode 100644 index 000000000..9ab9f716d --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:23 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-bom\:pom\:4.2.25 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139803086 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139803187 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139803376 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139803543 diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.sha1 new file mode 100644 index 000000000..67affb6a2 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.sha1 @@ -0,0 +1 @@ +f06ad7963d689e323e56320b4fce38eb8f850503 \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/_remote.repositories new file mode 100644 index 000000000..eadf8d348 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:32 EDT 2024 +metrics-core-4.2.25.pom>central= diff --git a/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom b/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom new file mode 100644 index 000000000..db6d3a9df --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom @@ -0,0 +1,70 @@ + + + 4.0.0 + + + io.dropwizard.metrics + metrics-parent + 4.2.25 + + + metrics-core + Metrics Core + bundle + + Metrics is a Java library which gives you unparalleled insight into what your code does in + production. Metrics provides a powerful toolkit of ways to measure the behavior of critical + components in your production environment. + + + + com.codahale.metrics + + + + + + net.bytebuddy + byte-buddy + ${byte-buddy.version} + + + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + junit + junit + ${junit.version} + test + + + org.assertj + assertj-core + ${assertj.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + org.slf4j + slf4j-simple + ${slf4j.version} + test + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + test + + + diff --git a/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom.sha1 new file mode 100644 index 000000000..c2f4e5ee7 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom.sha1 @@ -0,0 +1 @@ +fcc0a3ff248731ce9d0b46bbcaeddb25992820cd \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/_remote.repositories new file mode 100644 index 000000000..26568893e --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:39 EDT 2024 +metrics-json-4.2.25.pom>central= diff --git a/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom b/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom new file mode 100644 index 000000000..f24ca3991 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom @@ -0,0 +1,86 @@ + + + 4.0.0 + + + io.dropwizard.metrics + metrics-parent + 4.2.25 + + + metrics-json + Jackson Integration for Metrics + bundle + + A set of Jackson modules which provide serializers for most Metrics classes. + + + + com.codahale.metrics.json + 2.12.7 + 2.12.7.1 + + + + + + io.dropwizard.metrics + metrics-bom + ${project.version} + pom + import + + + net.bytebuddy + byte-buddy + ${byte-buddy.version} + + + + + + + io.dropwizard.metrics + metrics-core + + + io.dropwizard.metrics + metrics-healthchecks + true + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson-databind.version} + + + junit + junit + ${junit.version} + test + + + org.assertj + assertj-core + ${assertj.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + org.slf4j + slf4j-simple + ${slf4j.version} + test + + + diff --git a/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom.sha1 new file mode 100644 index 000000000..212f31b82 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom.sha1 @@ -0,0 +1 @@ +3d982d12512a5907bf2c0d9b68167361ea17a3f8 \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/_remote.repositories new file mode 100644 index 000000000..0b96f2faa --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:47 EDT 2024 +metrics-parent-4.1.7.pom>local-repo= diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom new file mode 100644 index 000000000..4faae4b61 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom @@ -0,0 +1,381 @@ + + + 4.0.0 + + io.dropwizard.metrics + metrics-parent + 4.1.7 + pom + Metrics Parent + + The Metrics library. + + https://metrics.dropwizard.io + + + docs + metrics-bom + metrics-annotation + metrics-benchmarks + metrics-core + metrics-collectd + metrics-ehcache + metrics-graphite + metrics-healthchecks + metrics-httpclient + metrics-httpclient5 + metrics-httpasyncclient + metrics-jcache + metrics-jcstress + metrics-jdbi + metrics-jdbi3 + metrics-jersey2 + metrics-jetty9 + metrics-jmx + metrics-json + metrics-jvm + metrics-log4j2 + metrics-logback + metrics-servlet + metrics-servlets + + + + UTF-8 + UTF-8 + 1.7.30 + 3.15.0 + 3.3.3 + 4.12 + 3.8.1 + + + + + Coda Hale + coda.hale@gmail.com + America/Los_Angeles + + architect + + + + Ryan Tenney + ryan@10e.us + America/New_York + + committer + + + + Artem Prigoda + prigoda.artem@ya.ru + Europe/Berlin + + committer + + + + + + + Apache License 2.0 + https://www.apache.org/licenses/LICENSE-2.0.html + repo + + + + + scm:git:git://github.com/dropwizard/metrics.git + scm:git:git@github.com:dropwizard/metrics.git + https://github.com/dropwizard/metrics/ + v4.1.7 + + + + github + https://github.com/dropwizard/metrics/issues/ + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + junit + junit + ${junit.version} + test + + + org.assertj + assertj-core + ${assertj.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + org.slf4j + slf4j-simple + ${slf4j.version} + test + + + + + + jdk8 + + 1.8 + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + javac-with-errorprone + true + true + -Xlint:all + 1.8 + 1.8 + true + + -XepExcludedPaths:.*/target/generated-sources/.* + + + + + org.codehaus.plexus + plexus-compiler-javac-errorprone + 2.8.6 + + + + com.google.errorprone + error_prone_core + 2.3.4 + + + + + + + + jdk11 + + 11 + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + 1.8 + 1.8 + true + true + + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + --no-tty + + + + + sign-artifacts + verify + + sign + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + + + + org.apache.felix + maven-bundle-plugin + 4.2.1 + true + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + -Djava.net.preferIPv4Stack=true + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + enforce + + + + + + + enforce + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.2 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + 8 + none + true + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + true + forked-path + v@{project.version} + clean test + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + + true + + + ${javaModuleName} + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.1.1 + + checkstyle.xml + true + + + + org.apache.maven.plugins + maven-site-plugin + 3.9.0 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.0.0 + + + + diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.lastUpdated new file mode 100644 index 000000000..43371bad0 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:47 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139887017 +http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-parent\:pom\:4.1.7 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139886452 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139886462 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139886821 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139886965 diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.sha1 new file mode 100644 index 000000000..e82fd13fb --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.sha1 @@ -0,0 +1 @@ +23c0321484c24c409670affddde4a29a582e38da \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/_remote.repositories new file mode 100644 index 000000000..20fd25cef --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:31 EDT 2024 +metrics-parent-4.2.19.pom>ohdsi= diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom new file mode 100644 index 000000000..6192b52fc --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom @@ -0,0 +1,468 @@ + + + 4.0.0 + + io.dropwizard.metrics + metrics-parent + 4.2.19 + pom + Metrics Parent + + The Metrics library. + + https://metrics.dropwizard.io + + + docs + metrics-bom + metrics-annotation + metrics-benchmarks + metrics-caffeine + metrics-caffeine3 + metrics-core + metrics-collectd + metrics-ehcache + metrics-graphite + metrics-healthchecks + metrics-httpclient + metrics-httpclient5 + metrics-httpasyncclient + metrics-jakarta-servlet + metrics-jakarta-servlets + metrics-jcache + metrics-jcstress + metrics-jdbi + metrics-jdbi3 + metrics-jersey2 + metrics-jersey3 + metrics-jersey31 + metrics-jetty9 + metrics-jetty10 + metrics-jetty11 + metrics-jmx + metrics-json + metrics-jvm + metrics-log4j2 + metrics-logback + metrics-logback13 + metrics-logback14 + metrics-servlet + metrics-servlets + + + + 2023-06-01T21:00:23Z + UTF-8 + UTF-8 + + 2.12.3 + 9.4.51.v20230217 + 10.0.15 + 11.0.15 + 1.7.36 + 3.24.2 + 1.14.4 + 5.3.1 + 4.13.1 + 1.3 + 3.11.0 + 2.19.1 + 9+181-r4173-1 + + dropwizard_metrics + dropwizard + https://sonarcloud.io + ${project.artifactId} + + + + + Coda Hale + coda.hale@gmail.com + America/Los_Angeles + + architect + + + + Ryan Tenney + ryan@10e.us + America/New_York + + committer + + + + Artem Prigoda + prigoda.artem@ya.ru + Europe/Berlin + + committer + + + + + + + Apache License 2.0 + https://www.apache.org/licenses/LICENSE-2.0.html + repo + + + + + scm:git:git://github.com/dropwizard/metrics.git + scm:git:git@github.com:dropwizard/metrics.git + https://github.com/dropwizard/metrics/ + v4.2.19 + + + + github + https://github.com/dropwizard/metrics/issues/ + + + + + ossrh + Sonatype Nexus Snapshots + https://s01.oss.sonatype.org/content/repositories/snapshots + + + ossrh + Nexus Release Repository + https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + jdk8 + + 1.8 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${errorprone.javac.version}/javac-${errorprone.javac.version}.jar + + + + + + + + jdk17 + + [17,) + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -Xlint:all + -XDcompilePolicy=simple + -Xplugin:ErrorProne -XepExcludedPaths:.*/target/generated-sources/.* + -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + + + + com.google.errorprone + error_prone_core + ${errorprone.version} + + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + EDA86E9FB607B5FC9223FB767D4868B53E31E7AD + + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.5.0 + + 8 + none + true + true + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.1.0 + + + --pinentry-mode + loopback + + + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + + ossrh + https://s01.oss.sonatype.org/ + true + + + + nexus-deploy + deploy + + deploy + + + + + + org.cyclonedx + cyclonedx-maven-plugin + 2.7.9 + + + package + + makeAggregateBom + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + 3.1.1 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.8 + 1.8 + true + true + true + + -Xlint:all + -XDcompilePolicy=simple + -Xplugin:ErrorProne -XepExcludedPaths:.*/target/generated-sources/.* + + + + com.google.errorprone + error_prone_core + ${errorprone.version} + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + true + + + + + ${javaModuleName} + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.1.0 + + @{argLine} -Djava.net.preferIPv4Stack=true + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.3.0 + + + enforce + + + + + + + enforce + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.6.0 + + + analyze + + analyze-only + analyze-dep-mgt + analyze-duplicate + + verify + + true + true + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0 + + true + forked-path + v@{project.version} + clean test + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + true + + + ${javaModuleName} + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.3.0 + + checkstyle.xml + true + + + + org.apache.maven.plugins + maven-site-plugin + 3.12.1 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.4.4 + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + prepare-agent + + prepare-agent + + + + report + + report + + + + + + + diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.lastUpdated new file mode 100644 index 000000000..81a48e447 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:31 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-parent\:pom\:4.2.19 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139871067 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139871075 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139871181 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139871365 diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.sha1 new file mode 100644 index 000000000..41d6e5c15 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.sha1 @@ -0,0 +1 @@ +d025565493834f8033193afcfe480c6c275e5e4d \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/_remote.repositories new file mode 100644 index 000000000..c912426b2 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:24 EDT 2024 +metrics-parent-4.2.25.pom>ohdsi= diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom new file mode 100644 index 000000000..87169f2b4 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom @@ -0,0 +1,478 @@ + + + 4.0.0 + + io.dropwizard.metrics + metrics-parent + 4.2.25 + pom + Metrics Parent + + The Metrics library. + + https://metrics.dropwizard.io + + + docs + metrics-bom + metrics-annotation + metrics-benchmarks + metrics-caffeine + metrics-caffeine3 + metrics-core + metrics-collectd + metrics-ehcache + metrics-graphite + metrics-healthchecks + metrics-httpclient + metrics-httpclient5 + metrics-httpasyncclient + metrics-jakarta-servlet + metrics-jakarta-servlet6 + metrics-jakarta-servlets + metrics-jcache + metrics-jcstress + metrics-jdbi + metrics-jdbi3 + metrics-jersey2 + metrics-jersey3 + metrics-jersey31 + metrics-jetty9 + metrics-jetty10 + metrics-jetty11 + metrics-jmx + metrics-json + metrics-jvm + metrics-log4j2 + metrics-logback + metrics-logback13 + metrics-logback14 + metrics-servlet + metrics-servlets + + + + 2024-01-24T22:47:57Z + UTF-8 + UTF-8 + + 9.4.53.v20231009 + 10.0.19 + 11.0.19 + 12.0.5 + 1.7.36 + 3.25.2 + 1.14.11 + 5.9.0 + 4.13.1 + 3.14.0 + 3.12.1 + 2.24.1 + 9+181-r4173-1 + 6.0.0 + + dropwizard_metrics + dropwizard + https://sonarcloud.io + ${project.artifactId} + + + + + Coda Hale + coda.hale@gmail.com + America/Los_Angeles + + architect + + + + Ryan Tenney + ryan@10e.us + America/New_York + + committer + + + + Artem Prigoda + prigoda.artem@ya.ru + Europe/Berlin + + committer + + + + + + + Apache License 2.0 + https://www.apache.org/licenses/LICENSE-2.0.html + repo + + + + + scm:git:git://github.com/dropwizard/metrics.git + scm:git:git@github.com:dropwizard/metrics.git + https://github.com/dropwizard/metrics/ + v4.2.25 + + + + github + https://github.com/dropwizard/metrics/issues/ + + + + + ossrh + Sonatype Nexus Snapshots + https://s01.oss.sonatype.org/content/repositories/snapshots + + + ossrh + Nexus Release Repository + https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + jdk8 + + 1.8 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${errorprone.javac.version}/javac-${errorprone.javac.version}.jar + + + + + + + + jdk17 + + [17,) + + + metrics-jetty12 + metrics-jetty12-ee10 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -Xlint:all + -XDcompilePolicy=simple + -Xplugin:ErrorProne -XepExcludedPaths:.*/target/generated-sources/.* + -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + + + + com.google.errorprone + error_prone_core + ${errorprone.version} + + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + EDA86E9FB607B5FC9223FB767D4868B53E31E7AD + + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.1.0 + + + --pinentry-mode + loopback + + + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + + ossrh + https://s01.oss.sonatype.org/ + true + + + + nexus-deploy + deploy + + deploy + + + + + + org.cyclonedx + cyclonedx-maven-plugin + 2.7.11 + + + package + + makeAggregateBom + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + 8 + none + true + true + true + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 8 + true + true + true + + -Xlint:all + -XDcompilePolicy=simple + -Xplugin:ErrorProne -XepExcludedPaths:.*/target/generated-sources/.* + + + + com.google.errorprone + error_prone_core + ${errorprone.version} + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + true + + + + + ${javaModuleName} + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.5 + + @{argLine} -Djava.net.preferIPv4Stack=true + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.4.1 + + + enforce + + + + + + + enforce + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.6.1 + + + analyze + + analyze-only + analyze-dep-mgt + analyze-duplicate + + verify + + true + true + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.1 + + true + forked-path + v@{project.version} + clean test + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + true + + + ${javaModuleName} + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.3.1 + + checkstyle.xml + true + + + + org.apache.maven.plugins + maven-site-plugin + 3.12.1 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.5.0 + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + prepare-agent + + prepare-agent + + + + report + + report + + + + + + + diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.lastUpdated new file mode 100644 index 000000000..ad2455421 --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:24 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-parent\:pom\:4.2.25 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139803562 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139803655 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139804184 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139804336 diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.sha1 new file mode 100644 index 000000000..437bda83b --- /dev/null +++ b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.sha1 @@ -0,0 +1 @@ +5912b9400b8fd9d5bf7d46421da7fb8c4226d461 \ No newline at end of file diff --git a/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/_remote.repositories b/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/_remote.repositories new file mode 100644 index 000000000..82d3fecff --- /dev/null +++ b/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:50 EDT 2024 +kubernetes-client-bom-5.12.4.pom>central= diff --git a/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom b/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom new file mode 100644 index 000000000..1debbb132 --- /dev/null +++ b/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom @@ -0,0 +1,636 @@ + + + + + 4.0.0 + + io.fabric8 + kubernetes-client-bom + 5.12.4 + Fabric8 :: Kubernetes :: Bom + pom + Generated Bom + + http://fabric8.io/ + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + scm:git:git@github.com:fabric8io/kubernetes-client.git + scm:git:git@github.com:fabric8io/kubernetes-client.git + http://github.com/fabric8io/kubernetes-client/ + 5.12.4 + + + + + geeks + Fabric8 Development Team + fabric8 + http://fabric8.io/ + + + + + + io.fabric8 + kubernetes-model-common + 5.12.4 + + + io.fabric8 + model-annotator + 5.12.4 + + + io.fabric8 + kubernetes-model-core + 5.12.4 + + + io.fabric8 + kubernetes-model-rbac + 5.12.4 + + + io.fabric8 + kubernetes-model-admissionregistration + 5.12.4 + + + io.fabric8 + kubernetes-model-apps + 5.12.4 + + + io.fabric8 + kubernetes-model-autoscaling + 5.12.4 + + + io.fabric8 + kubernetes-model-apiextensions + 5.12.4 + + + io.fabric8 + kubernetes-model-batch + 5.12.4 + + + io.fabric8 + kubernetes-model-certificates + 5.12.4 + + + io.fabric8 + kubernetes-model-coordination + 5.12.4 + + + io.fabric8 + kubernetes-model-discovery + 5.12.4 + + + io.fabric8 + kubernetes-model-events + 5.12.4 + + + io.fabric8 + kubernetes-model-extensions + 5.12.4 + + + io.fabric8 + kubernetes-model-networking + 5.12.4 + + + io.fabric8 + kubernetes-model-metrics + 5.12.4 + + + io.fabric8 + kubernetes-model-policy + 5.12.4 + + + io.fabric8 + kubernetes-model-scheduling + 5.12.4 + + + io.fabric8 + kubernetes-model-storageclass + 5.12.4 + + + io.fabric8 + openshift-model + 5.12.4 + + + io.fabric8 + kubernetes-model + 5.12.4 + + + io.fabric8 + kubernetes-model-jsonschema2pojo + 5.12.4 + + + io.fabric8 + kubernetes-model-flowcontrol + 5.12.4 + + + io.fabric8 + kubernetes-model-node + 5.12.4 + + + io.fabric8 + openshift-model-clusterautoscaling + 5.12.4 + + + io.fabric8 + openshift-model-hive + 5.12.4 + + + io.fabric8 + openshift-model-installer + 5.12.4 + + + io.fabric8 + openshift-model-operator + 5.12.4 + + + io.fabric8 + openshift-model-operatorhub + 5.12.4 + + + io.fabric8 + openshift-model-machine + 5.12.4 + + + io.fabric8 + openshift-model-monitoring + 5.12.4 + + + io.fabric8 + openshift-model-console + 5.12.4 + + + io.fabric8 + openshift-model-machineconfig + 5.12.4 + + + io.fabric8 + openshift-model-tuned + 5.12.4 + + + io.fabric8 + openshift-model-whereabouts + 5.12.4 + + + io.fabric8 + openshift-model-storageversionmigrator + 5.12.4 + + + io.fabric8 + openshift-model-miscellaneous + 5.12.4 + + + io.fabric8 + kubernetes-client + 5.12.4 + + + io.fabric8 + kubernetes-server-mock + 5.12.4 + + + io.fabric8 + openshift-client + 5.12.4 + + + io.fabric8 + knative-model + 5.12.4 + + + io.fabric8 + knative-client + 5.12.4 + + + io.fabric8 + knative-mock + 5.12.4 + + + io.fabric8 + knative-examples + 5.12.4 + + + io.fabric8 + knative-tests + 5.12.4 + + + io.fabric8 + tekton-model-v1alpha1 + 5.12.4 + + + io.fabric8 + tekton-model-v1beta1 + 5.12.4 + + + io.fabric8 + tekton-model-triggers + 5.12.4 + + + io.fabric8 + tekton-client + 5.12.4 + + + io.fabric8 + tekton-mock + 5.12.4 + + + io.fabric8 + tekton-examples + 5.12.4 + + + io.fabric8 + tekton-tests + 5.12.4 + + + io.fabric8 + servicecatalog-model + 5.12.4 + + + io.fabric8 + servicecatalog-client + 5.12.4 + + + io.fabric8 + servicecatalog-server-mock + 5.12.4 + + + io.fabric8 + service-catalog-examples + 5.12.4 + + + io.fabric8 + servicecatalog-tests + 5.12.4 + + + io.fabric8 + volumesnapshot-model + 5.12.4 + + + io.fabric8 + volumesnapshot-client + 5.12.4 + + + io.fabric8 + volumesnapshot-server-mock + 5.12.4 + + + io.fabric8 + volumesnapshot-examples + 5.12.4 + + + io.fabric8 + volumesnapshot-tests + 5.12.4 + + + io.fabric8 + chaosmesh-model + 5.12.4 + + + io.fabric8 + chaosmesh-client + 5.12.4 + + + io.fabric8 + chaosmesh-server-mock + 5.12.4 + + + io.fabric8 + chaosmesh-examples + 5.12.4 + + + io.fabric8 + chaosmesh-tests + 5.12.4 + + + io.fabric8 + camel-k-model-v1 + 5.12.4 + + + io.fabric8 + camel-k-model-v1alpha1 + 5.12.4 + + + io.fabric8 + camel-k-client + 5.12.4 + + + io.fabric8 + camel-k-mock + 5.12.4 + + + io.fabric8 + camel-k-tests + 5.12.4 + + + io.fabric8 + certmanager-model-v1alpha2 + 5.12.4 + + + io.fabric8 + certmanager-model-v1alpha3 + 5.12.4 + + + io.fabric8 + certmanager-model-v1beta1 + 5.12.4 + + + io.fabric8 + certmanager-model-v1 + 5.12.4 + + + io.fabric8 + certmanager-client + 5.12.4 + + + io.fabric8 + certmanager-server-mock + 5.12.4 + + + io.fabric8 + certmanager-examples + 5.12.4 + + + io.fabric8 + certmanager-tests + 5.12.4 + + + io.fabric8 + verticalpodautoscaler-model-v1 + 5.12.4 + + + io.fabric8 + verticalpodautoscaler-client + 5.12.4 + + + io.fabric8 + verticalpodautoscaler-server-mock + 5.12.4 + + + io.fabric8 + verticalpodautoscaler-examples + 5.12.4 + + + io.fabric8 + verticalpodautoscaler-tests + 5.12.4 + + + io.fabric8 + volcano-model-v1beta1 + 5.12.4 + + + io.fabric8 + volcano-client + 5.12.4 + + + io.fabric8 + volcano-examples + 5.12.4 + + + io.fabric8 + volcano-server-mock + 5.12.4 + + + io.fabric8 + volcano-tests + 5.12.4 + + + io.fabric8 + istio-model-v1alpha3 + 5.12.4 + + + io.fabric8 + istio-model-v1beta1 + 5.12.4 + + + io.fabric8 + istio-client + 5.12.4 + + + io.fabric8 + istio-server-mock + 5.12.4 + + + io.fabric8 + istio-examples + 5.12.4 + + + io.fabric8 + istio-tests + 5.12.4 + + + io.fabric8 + open-cluster-management-apps-model + 5.12.4 + + + io.fabric8 + open-cluster-management-agent-model + 5.12.4 + + + io.fabric8 + open-cluster-management-cluster-model + 5.12.4 + + + io.fabric8 + open-cluster-management-discovery-model + 5.12.4 + + + io.fabric8 + open-cluster-management-observability-model + 5.12.4 + + + io.fabric8 + open-cluster-management-operator-model + 5.12.4 + + + io.fabric8 + open-cluster-management-placementruleapps-model + 5.12.4 + + + io.fabric8 + open-cluster-management-policy-model + 5.12.4 + + + io.fabric8 + open-cluster-management-search-model + 5.12.4 + + + io.fabric8 + open-cluster-management-client + 5.12.4 + + + io.fabric8 + open-cluster-management-server-mock + 5.12.4 + + + io.fabric8 + open-cluster-management-tests + 5.12.4 + + + io.fabric8 + openclustermanagement-examples + 5.12.4 + + + io.fabric8 + openshift-server-mock + 5.12.4 + + + io.fabric8 + kubernetes-examples + 5.12.4 + + + io.fabric8.kubernetes + kubernetes-karaf + 5.12.4 + + + io.fabric8.kubernetes + kubernetes-karaf-itests + 5.12.4 + + + io.fabric8 + crd-generator-api + 5.12.4 + + + io.fabric8 + crd-generator-apt + 5.12.4 + + + io.fabric8 + kubernetes-test + 5.12.4 + + + io.fabric8 + kubernetes-openshift-uberjar + 5.12.4 + + + + + + + + + + + + diff --git a/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom.sha1 b/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom.sha1 new file mode 100644 index 000000000..dad97c7cb --- /dev/null +++ b/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom.sha1 @@ -0,0 +1 @@ +e79360b6c85f975006571e2251496c9677a15d19 \ No newline at end of file diff --git a/code/arachne/io/github/x-stream/mxparser/1.2.2/_remote.repositories b/code/arachne/io/github/x-stream/mxparser/1.2.2/_remote.repositories new file mode 100644 index 000000000..c1ea52ed8 --- /dev/null +++ b/code/arachne/io/github/x-stream/mxparser/1.2.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:54 EDT 2024 +mxparser-1.2.2.pom>central= diff --git a/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom b/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom new file mode 100644 index 000000000..870c7ad61 --- /dev/null +++ b/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom @@ -0,0 +1,639 @@ + + + 4.0.0 + io.github.x-stream + mxparser + jar + 1.2.2 + MXParser + http://x-stream.github.io/mxparser + + MXParser is a fork of xpp3_min 1.1.7 containing only the parser with merged changes of the Plexus fork. + + + 2020 + + + Indiana University Extreme! Lab Software License + https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt + repo + + + + + + mxparser + XStream Committers + http://x-stream.github.io/team.html + + + + + + validate-changes + + + changes.xml + + + + + + org.apache.maven.plugins + maven-changes-plugin + + + validate-changes + package + + changes-validate + + + + + ${basedir}/changes.xml + true + + + + + + + mxparser-release + + [1.8,1.9) + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + + + github + https://github.com/x-stream/mxparser/issues/ + + + GitHub Action + https://github.com/x-stream/mxparser/actions?query=workflow%3A%22CI+with+Maven%22 + + + + + + xmlpull + xmlpull + ${version.xmlpull} + + + + + junit + junit + ${version.junit} + test + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${version.plugin.maven.antrun} + + + org.apache.maven.plugins + maven-changes-plugin + ${version.plugin.maven.changes} + + + org.apache.maven.plugins + maven-clean-plugin + ${version.plugin.maven.clean} + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.plugin.maven.compiler} + + ${version.java.source} + ${version.java.target} + + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.plugin.maven.deploy} + + + org.apache.maven.plugins + maven-eclipse-plugin + + true + [artifactId] + + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.plugin.maven.gpg} + + ${gpg.keyname} + ${gpg.keyname} + + + + org.apache.maven.plugins + maven-install-plugin + ${version.plugin.maven.install} + + + org.apache.maven.plugins + maven-jar-plugin + ${version.plugin.maven.jar} + + + + true + true + + + ${project.info.majorVersion}.${project.info.minorVersion} + Indiana University Extreme! Lab Software License + ${jar.module.name} + ${version.java.source} + ${version.java.target} + Maven ${maven.version} + ${maven.build.timestamp} + ${os.name} + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.maven.javadoc} + + + attach-javadocs + + jar + + + + + false + ${javadoc.xdoclint} + ${version.java.source} + + ${javadoc.link.javase} + + + + true + true + + + ${project.info.majorVersion}.${project.info.minorVersion} + Indiana University Extreme! Lab Software License + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${version.plugin.maven.jxr} + + + org.apache.maven.plugins + maven-release-plugin + ${version.plugin.maven.release} + + forked-path + deploy site-deploy + true + false + -Pmxparser-release + + + + org.apache.maven.plugins + maven-resources-plugin + ${version.plugin.maven.resources} + + + org.apache.maven.plugins + maven-scm-publish-plugin + ${version.plugin.maven.scm-publish} + + Update site docs for version ${project.version}. + ${project.build.directory}/site + true + gh-pages + github + + + + org.apache.maven.plugins + maven-site-plugin + ${version.plugin.maven.site} + + true + + + + org.apache.maven.plugins + maven-source-plugin + ${version.plugin.maven.source} + + + attach-sources + package + + jar-no-fork + + + + + + + true + true + + + ${project.info.majorVersion}.${project.info.minorVersion} + 2 + ${project.name} Sources + ${project.artifactId}.sources + ${project.organization.name} Sources + ${project.info.osgiVersion} Sources + Indiana University Extreme! Lab Software License + ${project.artifactId};version=${project.info.osgiVersion} + ${version.java.source} + ${version.java.target} + Maven ${maven.version} + ${maven.build.timestamp} + ${os.name} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.maven.surefire} + + once + true + false + + + java.awt.headless + true + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.plugin.maven.surefire} + + + org.codehaus.mojo + build-helper-maven-plugin + ${version.plugin.mojo.build-helper} + + + org.apache.felix + maven-bundle-plugin + ${version.plugin.felix.bundle} + + ${project.build.directory}/OSGi + + <_noee>true + <_nouses>true + ${project.artifactId} + Indiana University Extreme! Lab Software License + ${project.info.majorVersion}.${project.info.minorVersion} + + + + false + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + versions + initialize + + maven-version + parse-version + + + project.info + + + + include-license + generate-resources + + add-resource + + + + + ${project.build.directory}/generated-resources + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + copy-license + generate-resources + + run + + + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + push-site + site-deploy + + publish-scm + + + + + + org.apache.maven.plugins + maven-source-plugin + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + ${bundle.export.package} + ${bundle.import.package} + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + default-testCompile + + testCompile + + + ${version.java.test.source} + ${version.java.test.target} + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + + jar + + + + ${project.build.directory}/OSGi/MANIFEST.MF + + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${version.plugin.maven.project-info-reports} + + + + index + summary + dependencies + issue-management + licenses + scm + + + + + false + + + + org.apache.maven.plugins + maven-changes-plugin + ${version.plugin.maven.changes} + + + + changes-report + + + + + ${basedir}/changes.xml + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.maven.javadoc} + + + + javadoc-no-fork + + + + + false + ${javadoc.xdoclint} + ${version.java.source} + + ${javadoc.link.javase} + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${version.plugin.maven.jxr} + + + + jxr + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.plugin.maven.surefire} + + + + report-only + + + + + + + + + + xmlpull + xmlpull + + + + + junit + junit + + + + + + ossrh-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + ossrh-snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + github + scm:git:ssh://git@github.com/x-stream/mxparser.git + + + + + https://github.com/x-stream/mxparser + scm:git:ssh://git@github.com/x-stream/mxparser.git + scm:git:ssh://git@github.com/x-stream/mxparser.git + v-1.2.2 + + + + UTF-8 + + 1.4 + 1.4 + 1.5 + 1.5 + + 2.3.7 + 3.0.0 + 2.12.1 + 3.1.0 + 3.8.0 + 3.0.0-M1 + 1.6 + 3.0.0-M1 + 3.2.0 + 3.2.0 + 2.5 + 3.1.0 + 2.5.3 + 3.2.0 + 3.0.0 + 3.9.1 + 3.2.1 + 3.0.0-M5 + 3.2.0 + + 1.1.3.1 + 4.13.1 + + ${jar.module.name};-noimport:=true + * + io.github.xstream.mxparser + http://docs.oracle.com/javase/8/docs/api/ + + + diff --git a/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom.sha1 b/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom.sha1 new file mode 100644 index 000000000..d542012ee --- /dev/null +++ b/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom.sha1 @@ -0,0 +1 @@ +cb8503fb7e26d29467db5d3e4b5c58c3a2b16788 \ No newline at end of file diff --git a/code/arachne/io/jsonwebtoken/jjwt/0.9.1/_remote.repositories b/code/arachne/io/jsonwebtoken/jjwt/0.9.1/_remote.repositories new file mode 100644 index 000000000..251197cb4 --- /dev/null +++ b/code/arachne/io/jsonwebtoken/jjwt/0.9.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:22 EDT 2024 +jjwt-0.9.1.pom>central= diff --git a/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom b/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom new file mode 100644 index 000000000..0858ccf2e --- /dev/null +++ b/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom @@ -0,0 +1,481 @@ + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + io.jsonwebtoken + jjwt + 0.9.1 + JSON Web Token support for the JVM + jar + https://github.com/jwtk/jjwt + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + scm:git:https://github.com/jwtk/jjwt.git + scm:git:git@github.com:jwtk/jjwt.git + git@github.com:jwtk/jjwt.git + 0.9.1 + + + GitHub Issues + https://github.com/jwtk/jjwt/issues + + + TravisCI + https://travis-ci.org/jwtk/jjwt + + + + + + + false + + bintray-jwtk-coveralls-maven-plugin + bintray + https://dl.bintray.com/jwtk/coveralls-maven-plugin + + + + + + false + + bintray-jwtk-coveralls-maven-plugin + bintray-plugins + https://dl.bintray.com/jwtk/coveralls-maven-plugin + + + + + + + 3.0.2 + 3.6.1 + + 1.7 + UTF-8 + ${user.name}-${maven.build.timestamp} + + 2.9.6 + + + 1.56 + + + 2.4.11 + 1.2.3 + 3.5 + 4.12 + 2.0.0-beta.5 + 2.20.1 + 2.20.1 + 4.2.0 + + + + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version} + + + + + org.bouncycastle + bcprov-jdk15on + ${bouncycastle.version} + compile + true + + + + + com.google.android + android + 4.1.1.4 + provided + + + commons-logging + commons-logging + + + + + + + ch.qos.logback + logback-classic + ${logback.version} + test + + + org.codehaus.groovy + groovy-all + ${groovy.version} + test + + + org.easymock + easymock + ${easymock.version} + test + + + org.powermock + powermock-module-junit4 + ${powermock.version} + test + + + org.powermock + powermock-api-easymock + ${powermock.version} + test + + + org.powermock + powermock-core + ${powermock.version} + test + + + junit + junit + 4.12 + test + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + enforce-banned-dependencies + + enforce + + + + + true + + commons-logging + + + + true + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven.compiler.version} + + ${jdk.version} + ${jdk.version} + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-jar-plugin + ${maven.jar.version} + + + + true + true + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + org.codehaus.gmaven + gmaven-plugin + 1.5 + + 2.0 + + + + + + generateStubs + compile + generateTestStubs + testCompile + + + + + + org.codehaus.gmaven.runtime + gmaven-runtime-2.0 + 1.5 + + + org.codehaus.groovy + groovy-all + + + + + org.codehaus.groovy + groovy-all + ${groovy.version} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.plugin.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${failsafe.plugin.version} + + + **/*IT.java + **/*IT.groovy + **/*ITCase.java + **/*ITCase.groovy + + + **/*ManualIT.java + **/*ManualIT.groovy + + + + + + integration-test + verify + + + + + + org.openclover + clover-maven-plugin + ${clover.version} + + + **/*Test* + + io/jsonwebtoken/lang/* + + 100% + 100% + 100% + 100% + + + + clover + test + + instrument + check + clover + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.9.5 + + + + forked-path + false + -Psonatype-oss-release -Pdocs -Psign + true + + + + org.apache.felix + maven-bundle-plugin + 3.3.0 + true + + + bundle-manifest + process-classes + + manifest + + + + + + + + + + + + + + org.jwtk.coveralls + coveralls-maven-plugin + 4.4.0 + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + + attach-javadocs + + jar + + + + + + + commons-lang + commons-lang + 2.6 + + + + + + + + jdk8 + + 1.8 + + + + -Xdoclint:none + + + + sign + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + docs + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + + attach-javadocs + + jar + + + + + + + commons-lang + commons-lang + 2.6 + + + + + + + + diff --git a/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom.sha1 b/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom.sha1 new file mode 100644 index 000000000..d63c991f4 --- /dev/null +++ b/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom.sha1 @@ -0,0 +1 @@ +c897bfecf65a226c8e45e14da346d1ab579217f6 \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-bom/1.12.5/_remote.repositories b/code/arachne/io/micrometer/micrometer-bom/1.12.5/_remote.repositories new file mode 100644 index 000000000..0ba725520 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-bom/1.12.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:33 EDT 2024 +micrometer-bom-1.12.5.pom>ohdsi= diff --git a/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom b/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom new file mode 100644 index 000000000..9c64b2fb9 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom @@ -0,0 +1,207 @@ + + + 4.0.0 + io.micrometer + micrometer-bom + 1.12.5 + pom + micrometer-bom + Micrometer BOM (Bill of Materials) for managing Micrometer artifact versions + https://github.com/micrometer-metrics/micrometer + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + shakuzen + Tommy Ludwig + tludwig@vmware.com + + + + git@github.com:micrometer-metrics/micrometer.git + + + + + io.micrometer + micrometer-commons + 1.12.5 + + + io.micrometer + micrometer-core + 1.12.5 + + + io.micrometer + micrometer-jakarta9 + 1.12.5 + + + io.micrometer + micrometer-jetty11 + 1.12.5 + + + io.micrometer + micrometer-observation + 1.12.5 + + + io.micrometer + micrometer-observation-test + 1.12.5 + + + io.micrometer + micrometer-registry-appoptics + 1.12.5 + + + io.micrometer + micrometer-registry-atlas + 1.12.5 + + + io.micrometer + micrometer-registry-azure-monitor + 1.12.5 + + + io.micrometer + micrometer-registry-cloudwatch + 1.12.5 + + + io.micrometer + micrometer-registry-cloudwatch2 + 1.12.5 + + + io.micrometer + micrometer-registry-datadog + 1.12.5 + + + io.micrometer + micrometer-registry-dynatrace + 1.12.5 + + + io.micrometer + micrometer-registry-elastic + 1.12.5 + + + io.micrometer + micrometer-registry-ganglia + 1.12.5 + + + io.micrometer + micrometer-registry-graphite + 1.12.5 + + + io.micrometer + micrometer-registry-health + 1.12.5 + + + io.micrometer + micrometer-registry-humio + 1.12.5 + + + io.micrometer + micrometer-registry-influx + 1.12.5 + + + io.micrometer + micrometer-registry-jmx + 1.12.5 + + + io.micrometer + micrometer-registry-kairos + 1.12.5 + + + io.micrometer + micrometer-registry-new-relic + 1.12.5 + + + io.micrometer + micrometer-registry-opentsdb + 1.12.5 + + + io.micrometer + micrometer-registry-otlp + 1.12.5 + + + io.micrometer + micrometer-registry-prometheus + 1.12.5 + + + io.micrometer + micrometer-registry-signalfx + 1.12.5 + + + io.micrometer + micrometer-registry-stackdriver + 1.12.5 + + + io.micrometer + micrometer-registry-statsd + 1.12.5 + + + io.micrometer + micrometer-registry-wavefront + 1.12.5 + + + io.micrometer + micrometer-test + 1.12.5 + + + + + 1.0 + io.micrometer#micrometer-bom;1.12.5 + 1.12.5 + release + circleci + Linux + Etc/UTC + 2024-04-08T13:59:01.330994237Z + 2024-04-08_13:59:01 + 8.6 + /micrometer-bom + git@github.com:micrometer-metrics/micrometer.git + 52d1d12 + 52d1d1249324b691c355a70c53ae1921967449d3 + HEAD + ed5fdb4eabcb + deploy + 32110 + 32110 + https://circleci.com/gh/micrometer-metrics/micrometer/32110 + 21.0.2+13-LTS (Eclipse Adoptium) + tludwig@vmware.com + tludwig@vmware.com + + diff --git a/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.lastUpdated b/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.lastUpdated new file mode 100644 index 000000000..38dfa45ba --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:33 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.micrometer\:micrometer-bom\:pom\:1.12.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139813516 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139813610 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139813714 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139813847 diff --git a/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.sha1 b/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.sha1 new file mode 100644 index 000000000..09237101f --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.sha1 @@ -0,0 +1 @@ +0e50095d99ff5e1250754a9347adbe1edf910399 \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-bom/1.5.1/_remote.repositories b/code/arachne/io/micrometer/micrometer-bom/1.5.1/_remote.repositories new file mode 100644 index 000000000..e7e629799 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-bom/1.5.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:51 EDT 2024 +micrometer-bom-1.5.1.pom>local-repo= diff --git a/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom b/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom new file mode 100644 index 000000000..35807f992 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom @@ -0,0 +1,174 @@ + + + 4.0.0 + io.micrometer + micrometer-bom + 1.5.1 + pom + + + + io.micrometer + micrometer-core + 1.5.1 + + + io.micrometer + micrometer-jersey2 + 1.5.1 + + + io.micrometer + micrometer-registry-appoptics + 1.5.1 + + + io.micrometer + micrometer-registry-atlas + 1.5.1 + + + io.micrometer + micrometer-registry-azure-monitor + 1.5.1 + + + io.micrometer + micrometer-registry-cloudwatch + 1.5.1 + + + io.micrometer + micrometer-registry-cloudwatch2 + 1.5.1 + + + io.micrometer + micrometer-registry-datadog + 1.5.1 + + + io.micrometer + micrometer-registry-dynatrace + 1.5.1 + + + io.micrometer + micrometer-registry-elastic + 1.5.1 + + + io.micrometer + micrometer-registry-ganglia + 1.5.1 + + + io.micrometer + micrometer-registry-graphite + 1.5.1 + + + io.micrometer + micrometer-registry-humio + 1.5.1 + + + io.micrometer + micrometer-registry-influx + 1.5.1 + + + io.micrometer + micrometer-registry-jmx + 1.5.1 + + + io.micrometer + micrometer-registry-kairos + 1.5.1 + + + io.micrometer + micrometer-registry-new-relic + 1.5.1 + + + io.micrometer + micrometer-registry-opentsdb + 1.5.1 + + + io.micrometer + micrometer-registry-prometheus + 1.5.1 + + + io.micrometer + micrometer-registry-signalfx + 1.5.1 + + + io.micrometer + micrometer-registry-stackdriver + 1.5.1 + + + io.micrometer + micrometer-registry-statsd + 1.5.1 + + + io.micrometer + micrometer-registry-wavefront + 1.5.1 + + + io.micrometer + micrometer-test + 1.5.1 + + + + micrometer-bom + Micrometer BOM (Bill of Materials) for managing Micrometer artifact versions + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + 1.0 + io.micrometer#micrometer-bom;1.5.1 + 1.5.1 + release + circleci + Linux + 2020-05-08_16:43:24 + 6.4 + /micrometer-bom + git@github.com:micrometer-metrics/micrometer.git + 5984c10 + 5984c10fc12b781652e27a9ea95c439f96e73cf8 + 82db0d896427 + LOCAL + LOCAL + LOCAL + 14.0.1+7 (Oracle Corporation) + 14.0.1 + tludwig@vmware.com + tludwig@vmware.com + + https://github.com/micrometer-metrics/micrometer + + git@github.com:micrometer-metrics/micrometer.git + + + + shakuzen + Tommy Ludwig + tludwig@vmware.com + + + diff --git a/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.lastUpdated b/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.lastUpdated new file mode 100644 index 000000000..0dff39163 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:51 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139891613 +http\://0.0.0.0/.error=Could not transfer artifact io.micrometer\:micrometer-bom\:pom\:1.5.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139891254 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139891258 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139891445 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139891559 diff --git a/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.sha1 b/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.sha1 new file mode 100644 index 000000000..056c15457 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.sha1 @@ -0,0 +1 @@ +fb57aac12f2370e7115ab8af5265322397cae49e \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-commons/1.12.5/_remote.repositories b/code/arachne/io/micrometer/micrometer-commons/1.12.5/_remote.repositories new file mode 100644 index 000000000..16ba95d7c --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-commons/1.12.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:47 EDT 2024 +micrometer-commons-1.12.5.pom>central= diff --git a/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom b/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom new file mode 100644 index 000000000..529e40057 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom @@ -0,0 +1,78 @@ + + + 4.0.0 + io.micrometer + micrometer-commons + 1.12.5 + micrometer-commons + Module containing common code + https://github.com/micrometer-metrics/micrometer + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + shakuzen + Tommy Ludwig + tludwig@vmware.com + + + + git@github.com:micrometer-metrics/micrometer.git + + + + com.google.code.findbugs + jsr305 + 3.0.2 + compile + true + + + ch.qos.logback + logback-classic + 1.2.13 + compile + true + + + org.aspectj + aspectjweaver + 1.9.22 + compile + true + + + + 1.0 + io.micrometer#micrometer-commons;1.12.5 + 1.12.5 + release + circleci + Linux + Etc/UTC + 2024-04-08T13:59:01.393716590Z + 2024-04-08_13:59:01 + 8.6 + /micrometer-commons + git@github.com:micrometer-metrics/micrometer.git + 52d1d12 + 52d1d1249324b691c355a70c53ae1921967449d3 + HEAD + ed5fdb4eabcb + deploy + 32110 + 32110 + https://circleci.com/gh/micrometer-metrics/micrometer/32110 + 21.0.2+13-LTS (Eclipse Adoptium) + tludwig@vmware.com + tludwig@vmware.com + 1.8 + 1.8 + 21 + + diff --git a/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom.sha1 b/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom.sha1 new file mode 100644 index 000000000..83f538def --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom.sha1 @@ -0,0 +1 @@ +282afe1283645b3b6aa96200414dc662b0b23873 \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-core/1.12.5/_remote.repositories b/code/arachne/io/micrometer/micrometer-core/1.12.5/_remote.repositories new file mode 100644 index 000000000..cb9475ffe --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-core/1.12.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:53 EDT 2024 +micrometer-core-1.12.5.pom>central= diff --git a/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom b/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom new file mode 100644 index 000000000..c972efb86 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom @@ -0,0 +1,304 @@ + + + 4.0.0 + io.micrometer + micrometer-core + 1.12.5 + micrometer-core + Core module of Micrometer containing instrumentation API and implementation + https://github.com/micrometer-metrics/micrometer + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + shakuzen + Tommy Ludwig + tludwig@vmware.com + + + + git@github.com:micrometer-metrics/micrometer.git + + + + io.micrometer + micrometer-commons + 1.12.5 + compile + + + io.micrometer + micrometer-observation + 1.12.5 + compile + + + org.hdrhistogram + HdrHistogram + 2.1.12 + runtime + + + org.latencyutils + LatencyUtils + 2.0.3 + runtime + + + org.hdrhistogram + HdrHistogram + + + + + com.google.code.findbugs + jsr305 + 3.0.2 + compile + true + + + org.aspectj + aspectjweaver + 1.9.22 + compile + true + + + io.dropwizard.metrics + metrics-core + 4.2.25 + compile + true + + + com.google.guava + guava + 32.1.2-jre + compile + true + + + com.github.ben-manes.caffeine + caffeine + 2.9.3 + compile + true + + + net.sf.ehcache + ehcache + 2.10.9.2 + compile + true + + + javax.cache + cache-api + 1.1.1 + compile + true + + + com.hazelcast + hazelcast + 5.3.2 + compile + true + + + org.hibernate + hibernate-entitymanager + 5.6.15.Final + compile + true + + + org.eclipse.jetty + jetty-server + 9.4.54.v20240208 + compile + true + + + jakarta.servlet + jakarta.servlet-api + 5.0.0 + compile + true + + + org.eclipse.jetty + jetty-client + 9.4.54.v20240208 + compile + true + + + org.apache.tomcat.embed + tomcat-embed-core + 8.5.100 + compile + true + + + org.glassfish.jersey.core + jersey-server + 2.41 + compile + true + + + io.grpc + grpc-api + 1.58.0 + compile + true + + + io.netty + netty-transport + 4.1.108.Final + compile + true + + + org.apache.httpcomponents + httpclient + 4.5.14 + compile + true + + + org.apache.httpcomponents + httpasyncclient + 4.1.5 + compile + true + + + org.apache.httpcomponents.client5 + httpclient5 + 5.2.3 + compile + true + + + com.netflix.hystrix + hystrix-core + 1.5.12 + compile + true + + + ch.qos.logback + logback-classic + 1.2.13 + compile + true + + + org.apache.logging.log4j + log4j-core + 2.21.1 + compile + true + + + com.squareup.okhttp3 + okhttp + 4.11.0 + compile + true + + + org.mongodb + mongodb-driver-sync + 4.11.2 + compile + true + + + org.jooq + jooq + 3.14.16 + compile + true + + + org.apache.kafka + kafka-clients + 2.8.2 + compile + true + + + org.apache.kafka + kafka-streams + 2.8.2 + compile + true + + + io.micrometer + context-propagation + 1.1.1 + compile + true + + + org.jetbrains.kotlin + kotlin-reflect + 1.7.22 + compile + true + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.7.22 + compile + true + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.7.3 + compile + true + + + + 1.0 + io.micrometer#micrometer-core;1.12.5 + 1.12.5 + release + circleci + Linux + Etc/UTC + 2024-04-08T13:59:01.455218596Z + 2024-04-08_13:59:01 + 8.6 + /micrometer-core + git@github.com:micrometer-metrics/micrometer.git + 52d1d12 + 52d1d1249324b691c355a70c53ae1921967449d3 + HEAD + ed5fdb4eabcb + deploy + 32110 + 32110 + https://circleci.com/gh/micrometer-metrics/micrometer/32110 + 21.0.2+13-LTS (Eclipse Adoptium) + tludwig@vmware.com + tludwig@vmware.com + 1.8 + 1.8 + 21 + + diff --git a/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom.sha1 b/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom.sha1 new file mode 100644 index 000000000..566e36fda --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom.sha1 @@ -0,0 +1 @@ +6f18688e44c532650b2f1067b6e2c6f9ff6d589d \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-observation/1.12.5/_remote.repositories b/code/arachne/io/micrometer/micrometer-observation/1.12.5/_remote.repositories new file mode 100644 index 000000000..a0cc7bb91 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-observation/1.12.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:47 EDT 2024 +micrometer-observation-1.12.5.pom>central= diff --git a/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom b/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom new file mode 100644 index 000000000..1007fbe0c --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom @@ -0,0 +1,91 @@ + + + 4.0.0 + io.micrometer + micrometer-observation + 1.12.5 + micrometer-observation + Module containing Observation related code + https://github.com/micrometer-metrics/micrometer + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + shakuzen + Tommy Ludwig + tludwig@vmware.com + + + + git@github.com:micrometer-metrics/micrometer.git + + + + io.micrometer + micrometer-commons + 1.12.5 + compile + + + com.google.code.findbugs + jsr305 + 3.0.2 + compile + true + + + io.micrometer + context-propagation + 1.1.1 + compile + true + + + javax.servlet + javax.servlet-api + 4.0.1 + compile + true + + + org.aspectj + aspectjweaver + 1.9.22 + compile + true + + + + 1.0 + io.micrometer#micrometer-observation;1.12.5 + 1.12.5 + release + circleci + Linux + Etc/UTC + 2024-04-08T13:59:01.622808235Z + 2024-04-08_13:59:01 + 8.6 + /micrometer-observation + git@github.com:micrometer-metrics/micrometer.git + 52d1d12 + 52d1d1249324b691c355a70c53ae1921967449d3 + HEAD + ed5fdb4eabcb + deploy + 32110 + 32110 + https://circleci.com/gh/micrometer-metrics/micrometer/32110 + 21.0.2+13-LTS (Eclipse Adoptium) + tludwig@vmware.com + tludwig@vmware.com + 1.8 + 1.8 + 21 + + diff --git a/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom.sha1 b/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom.sha1 new file mode 100644 index 000000000..91e4650ec --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom.sha1 @@ -0,0 +1 @@ +6e21f9ef115a4ea4b780bce6094eaf359c87664d \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/_remote.repositories b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/_remote.repositories new file mode 100644 index 000000000..192a395eb --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:34 EDT 2024 +micrometer-tracing-bom-1.2.5.pom>ohdsi= diff --git a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom new file mode 100644 index 000000000..b93940bb0 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom @@ -0,0 +1,109 @@ + + + 4.0.0 + io.micrometer + micrometer-tracing-bom + 1.2.5 + pom + micrometer-tracing-bom + Micrometer Tracing BOM (Bill of Materials) for managing Micrometer Tracing artifact versions + https://github.com/micrometer-metrics/tracing + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + shakuzen + Tommy Ludwig + tludwig@vmware.com + + + jonatan-ivanov + Jonatan Ivanov + jivanov@vmware.com + + + marcingrzejszczak + Marcin Grzejszczak + mgrzejszczak@vmware.com + + + + git@github.com:micrometer-metrics/tracing.git + + + + + io.micrometer + docs + 1.2.5 + + + io.micrometer + micrometer-tracing + 1.2.5 + + + io.micrometer + micrometer-tracing-bridge-brave + 1.2.5 + + + io.micrometer + micrometer-tracing-bridge-otel + 1.2.5 + + + io.micrometer + micrometer-tracing-integration-test + 1.2.5 + + + io.micrometer + micrometer-tracing-reporter-wavefront + 1.2.5 + + + io.micrometer + micrometer-tracing-test + 1.2.5 + + + io.micrometer + micrometer-bom + 1.12.5 + pom + import + + + + + 1.0 + io.micrometer#micrometer-tracing-bom;1.2.5 + 1.2.5 + release + circleci + Linux + Etc/UTC + 2024-04-08T14:17:34.242591221Z + 2024-04-08_14:17:34 + 8.6 + /micrometer-tracing-bom + git@github.com:micrometer-metrics/tracing.git + 27935c7 + 27935c71f00e51bff3cc818118cbe7b559718a1f + HEAD + de2cf3926638 + deploy + 6378 + 6378 + https://circleci.com/gh/micrometer-metrics/tracing/6378 + 20.0.1+9 (Eclipse Adoptium) + tludwig@vmware.com,jivanov@vmware.com,mgrzejszczak@vmware.com + tludwig@vmware.com,jivanov@vmware.com,mgrzejszczak@vmware.com + + diff --git a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.lastUpdated b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.lastUpdated new file mode 100644 index 000000000..1a5dd5fc1 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:34 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.micrometer\:micrometer-tracing-bom\:pom\:1.2.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139813856 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139813954 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139814272 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139814389 diff --git a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.sha1 b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.sha1 new file mode 100644 index 000000000..68a0c70d8 --- /dev/null +++ b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.sha1 @@ -0,0 +1 @@ +2251c42c29811b37b6d785267b8c795c816a71e1 \ No newline at end of file diff --git a/code/arachne/io/netty/netty-bom/4.1.107.Final/_remote.repositories b/code/arachne/io/netty/netty-bom/4.1.107.Final/_remote.repositories new file mode 100644 index 000000000..1215854e8 --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.107.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:51 EDT 2024 +netty-bom-4.1.107.Final.pom>central= diff --git a/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom b/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom new file mode 100644 index 000000000..b16ebdb37 --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom @@ -0,0 +1,387 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + + + + io.netty + netty-bom + 4.1.107.Final + pom + + Netty/BOM + Netty (Bill of Materials) + https://netty.io/ + + + The Netty Project + https://netty.io/ + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + 2008 + + + https://github.com/netty/netty + scm:git:git://github.com/netty/netty.git + scm:git:ssh://git@github.com/netty/netty.git + netty-4.1.107.Final + + + + + netty.io + The Netty Project Contributors + netty@googlegroups.com + https://netty.io/ + The Netty Project + https://netty.io/ + + + + + + 2.0.61.Final + + + + + + com.commsen.maven + bom-helper-maven-plugin + 0.4.0 + + + + + + + + io.netty + netty-buffer + ${project.version} + + + io.netty + netty-codec + ${project.version} + + + io.netty + netty-codec-dns + ${project.version} + + + io.netty + netty-codec-haproxy + ${project.version} + + + io.netty + netty-codec-http + ${project.version} + + + io.netty + netty-codec-http2 + ${project.version} + + + io.netty + netty-codec-memcache + ${project.version} + + + io.netty + netty-codec-mqtt + ${project.version} + + + io.netty + netty-codec-redis + ${project.version} + + + io.netty + netty-codec-smtp + ${project.version} + + + io.netty + netty-codec-socks + ${project.version} + + + io.netty + netty-codec-stomp + ${project.version} + + + io.netty + netty-codec-xml + ${project.version} + + + io.netty + netty-common + ${project.version} + + + io.netty + netty-dev-tools + ${project.version} + + + io.netty + netty-handler + ${project.version} + + + io.netty + netty-handler-proxy + ${project.version} + + + io.netty + netty-handler-ssl-ocsp + ${project.version} + + + io.netty + netty-resolver + ${project.version} + + + io.netty + netty-resolver-dns + ${project.version} + + + io.netty + netty-transport + ${project.version} + + + io.netty + netty-transport-rxtx + ${project.version} + + + io.netty + netty-transport-sctp + ${project.version} + + + io.netty + netty-transport-udt + ${project.version} + + + io.netty + netty-example + ${project.version} + + + io.netty + netty-all + ${project.version} + + + io.netty + netty-resolver-dns-classes-macos + ${project.version} + + + io.netty + netty-resolver-dns-native-macos + ${project.version} + + + io.netty + netty-resolver-dns-native-macos + ${project.version} + osx-x86_64 + + + io.netty + netty-resolver-dns-native-macos + ${project.version} + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + + + io.netty + netty-transport-native-unix-common + ${project.version} + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + linux-riscv64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + osx-aarch_64 + + + io.netty + netty-transport-classes-epoll + ${project.version} + + + io.netty + netty-transport-native-epoll + ${project.version} + + + io.netty + netty-transport-native-epoll + ${project.version} + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + ${project.version} + linux-riscv64 + + + io.netty + netty-transport-native-epoll + ${project.version} + linux-x86_64 + + + io.netty + netty-transport-classes-kqueue + ${project.version} + + + io.netty + netty-transport-native-kqueue + ${project.version} + + + io.netty + netty-transport-native-kqueue + ${project.version} + osx-x86_64 + + + io.netty + netty-transport-native-kqueue + ${project.version} + osx-aarch_64 + + + + io.netty + netty-tcnative-classes + ${tcnative.version} + + + io.netty + netty-tcnative + ${tcnative.version} + linux-x86_64 + + + io.netty + netty-tcnative + ${tcnative.version} + linux-x86_64-fedora + + + io.netty + netty-tcnative + ${tcnative.version} + linux-aarch_64-fedora + + + io.netty + netty-tcnative + ${tcnative.version} + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + windows-x86_64 + + + + diff --git a/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom.sha1 b/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom.sha1 new file mode 100644 index 000000000..152649368 --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom.sha1 @@ -0,0 +1 @@ +3eaa3b12c0e8140d40c9dc9aabcef31f4b2d320b \ No newline at end of file diff --git a/code/arachne/io/netty/netty-bom/4.1.109.Final/_remote.repositories b/code/arachne/io/netty/netty-bom/4.1.109.Final/_remote.repositories new file mode 100644 index 000000000..a924f3817 --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.109.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:35 EDT 2024 +netty-bom-4.1.109.Final.pom>ohdsi= diff --git a/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom b/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom new file mode 100644 index 000000000..af971daee --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom @@ -0,0 +1,387 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + + + + io.netty + netty-bom + 4.1.109.Final + pom + + Netty/BOM + Netty (Bill of Materials) + https://netty.io/ + + + The Netty Project + https://netty.io/ + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + 2008 + + + https://github.com/netty/netty + scm:git:git://github.com/netty/netty.git + scm:git:ssh://git@github.com/netty/netty.git + netty-4.1.109.Final + + + + + netty.io + The Netty Project Contributors + netty@googlegroups.com + https://netty.io/ + The Netty Project + https://netty.io/ + + + + + + 2.0.65.Final + + + + + + com.commsen.maven + bom-helper-maven-plugin + 0.4.0 + + + + + + + + io.netty + netty-buffer + ${project.version} + + + io.netty + netty-codec + ${project.version} + + + io.netty + netty-codec-dns + ${project.version} + + + io.netty + netty-codec-haproxy + ${project.version} + + + io.netty + netty-codec-http + ${project.version} + + + io.netty + netty-codec-http2 + ${project.version} + + + io.netty + netty-codec-memcache + ${project.version} + + + io.netty + netty-codec-mqtt + ${project.version} + + + io.netty + netty-codec-redis + ${project.version} + + + io.netty + netty-codec-smtp + ${project.version} + + + io.netty + netty-codec-socks + ${project.version} + + + io.netty + netty-codec-stomp + ${project.version} + + + io.netty + netty-codec-xml + ${project.version} + + + io.netty + netty-common + ${project.version} + + + io.netty + netty-dev-tools + ${project.version} + + + io.netty + netty-handler + ${project.version} + + + io.netty + netty-handler-proxy + ${project.version} + + + io.netty + netty-handler-ssl-ocsp + ${project.version} + + + io.netty + netty-resolver + ${project.version} + + + io.netty + netty-resolver-dns + ${project.version} + + + io.netty + netty-transport + ${project.version} + + + io.netty + netty-transport-rxtx + ${project.version} + + + io.netty + netty-transport-sctp + ${project.version} + + + io.netty + netty-transport-udt + ${project.version} + + + io.netty + netty-example + ${project.version} + + + io.netty + netty-all + ${project.version} + + + io.netty + netty-resolver-dns-classes-macos + ${project.version} + + + io.netty + netty-resolver-dns-native-macos + ${project.version} + + + io.netty + netty-resolver-dns-native-macos + ${project.version} + osx-x86_64 + + + io.netty + netty-resolver-dns-native-macos + ${project.version} + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + + + io.netty + netty-transport-native-unix-common + ${project.version} + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + linux-riscv64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + osx-aarch_64 + + + io.netty + netty-transport-classes-epoll + ${project.version} + + + io.netty + netty-transport-native-epoll + ${project.version} + + + io.netty + netty-transport-native-epoll + ${project.version} + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + ${project.version} + linux-riscv64 + + + io.netty + netty-transport-native-epoll + ${project.version} + linux-x86_64 + + + io.netty + netty-transport-classes-kqueue + ${project.version} + + + io.netty + netty-transport-native-kqueue + ${project.version} + + + io.netty + netty-transport-native-kqueue + ${project.version} + osx-x86_64 + + + io.netty + netty-transport-native-kqueue + ${project.version} + osx-aarch_64 + + + + io.netty + netty-tcnative-classes + ${tcnative.version} + + + io.netty + netty-tcnative + ${tcnative.version} + linux-x86_64 + + + io.netty + netty-tcnative + ${tcnative.version} + linux-x86_64-fedora + + + io.netty + netty-tcnative + ${tcnative.version} + linux-aarch_64-fedora + + + io.netty + netty-tcnative + ${tcnative.version} + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + windows-x86_64 + + + + diff --git a/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.lastUpdated b/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.lastUpdated new file mode 100644 index 000000000..4a5bfa32f --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:35 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.netty\:netty-bom\:pom\:4.1.109.Final from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139814745 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139814849 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139815044 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139815208 diff --git a/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.sha1 b/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.sha1 new file mode 100644 index 000000000..085b12211 --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.sha1 @@ -0,0 +1 @@ +e686c2955652387e7417e8fd0997e9d611ae2362 \ No newline at end of file diff --git a/code/arachne/io/netty/netty-bom/4.1.49.Final/_remote.repositories b/code/arachne/io/netty/netty-bom/4.1.49.Final/_remote.repositories new file mode 100644 index 000000000..3f377179d --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.49.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:51 EDT 2024 +netty-bom-4.1.49.Final.pom>local-repo= diff --git a/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom b/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom new file mode 100644 index 000000000..f6dcadabf --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom @@ -0,0 +1,235 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + + + + io.netty + netty-bom + 4.1.49.Final + pom + + Netty/BOM + Netty (Bill of Materials) + https://netty.io/ + + + The Netty Project + https://netty.io/ + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + 2008 + + + https://github.com/netty/netty + scm:git:git://github.com/netty/netty.git + scm:git:ssh://git@github.com/netty/netty.git + netty-4.1.49.Final + + + + + netty.io + The Netty Project Contributors + netty@googlegroups.com + https://netty.io/ + The Netty Project + https://netty.io/ + + + + + + + + io.netty + netty-buffer + 4.1.49.Final + + + io.netty + netty-codec + 4.1.49.Final + + + io.netty + netty-codec-dns + 4.1.49.Final + + + io.netty + netty-codec-haproxy + 4.1.49.Final + + + io.netty + netty-codec-http + 4.1.49.Final + + + io.netty + netty-codec-http2 + 4.1.49.Final + + + io.netty + netty-codec-memcache + 4.1.49.Final + + + io.netty + netty-codec-mqtt + 4.1.49.Final + + + io.netty + netty-codec-redis + 4.1.49.Final + + + io.netty + netty-codec-smtp + 4.1.49.Final + + + io.netty + netty-codec-socks + 4.1.49.Final + + + io.netty + netty-codec-stomp + 4.1.49.Final + + + io.netty + netty-codec-xml + 4.1.49.Final + + + io.netty + netty-common + 4.1.49.Final + + + io.netty + netty-dev-tools + 4.1.49.Final + + + io.netty + netty-handler + 4.1.49.Final + + + io.netty + netty-handler-proxy + 4.1.49.Final + + + io.netty + netty-resolver + 4.1.49.Final + + + io.netty + netty-resolver-dns + 4.1.49.Final + + + io.netty + netty-transport + 4.1.49.Final + + + io.netty + netty-transport-rxtx + 4.1.49.Final + + + io.netty + netty-transport-sctp + 4.1.49.Final + + + io.netty + netty-transport-udt + 4.1.49.Final + + + io.netty + netty-example + 4.1.49.Final + + + io.netty + netty-all + 4.1.49.Final + + + io.netty + netty-transport-native-unix-common + 4.1.49.Final + + + io.netty + netty-transport-native-unix-common + 4.1.49.Final + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.49.Final + osx-x86_64 + + + io.netty + netty-transport-native-epoll + 4.1.49.Final + + + io.netty + netty-transport-native-epoll + 4.1.49.Final + linux-x86_64 + + + io.netty + netty-transport-native-kqueue + 4.1.49.Final + + + io.netty + netty-transport-native-kqueue + 4.1.49.Final + osx-x86_64 + + + + diff --git a/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.lastUpdated b/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.lastUpdated new file mode 100644 index 000000000..4a650d5ce --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:51 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139891975 +http\://0.0.0.0/.error=Could not transfer artifact io.netty\:netty-bom\:pom\:4.1.49.Final from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139891702 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139891708 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139891865 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139891927 diff --git a/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.sha1 b/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.sha1 new file mode 100644 index 000000000..12a925418 --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.sha1 @@ -0,0 +1 @@ +3d86dbc337441ed287ca9abc91c016aacd1bb4a4 \ No newline at end of file diff --git a/code/arachne/io/netty/netty-bom/4.1.97.Final/_remote.repositories b/code/arachne/io/netty/netty-bom/4.1.97.Final/_remote.repositories new file mode 100644 index 000000000..60b86e8ed --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.97.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:50 EDT 2024 +netty-bom-4.1.97.Final.pom>central= diff --git a/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom b/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom new file mode 100644 index 000000000..8c54992b1 --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom @@ -0,0 +1,375 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + + + + io.netty + netty-bom + 4.1.97.Final + pom + + Netty/BOM + Netty (Bill of Materials) + https://netty.io/ + + + The Netty Project + https://netty.io/ + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + 2008 + + + https://github.com/netty/netty + scm:git:git://github.com/netty/netty.git + scm:git:ssh://git@github.com/netty/netty.git + netty-4.1.97.Final + + + + + netty.io + The Netty Project Contributors + netty@googlegroups.com + https://netty.io/ + The Netty Project + https://netty.io/ + + + + + + 2.0.61.Final + + + + + + com.commsen.maven + bom-helper-maven-plugin + 0.4.0 + + + + + + + + io.netty + netty-buffer + ${project.version} + + + io.netty + netty-codec + ${project.version} + + + io.netty + netty-codec-dns + ${project.version} + + + io.netty + netty-codec-haproxy + ${project.version} + + + io.netty + netty-codec-http + ${project.version} + + + io.netty + netty-codec-http2 + ${project.version} + + + io.netty + netty-codec-memcache + ${project.version} + + + io.netty + netty-codec-mqtt + ${project.version} + + + io.netty + netty-codec-redis + ${project.version} + + + io.netty + netty-codec-smtp + ${project.version} + + + io.netty + netty-codec-socks + ${project.version} + + + io.netty + netty-codec-stomp + ${project.version} + + + io.netty + netty-codec-xml + ${project.version} + + + io.netty + netty-common + ${project.version} + + + io.netty + netty-dev-tools + ${project.version} + + + io.netty + netty-handler + ${project.version} + + + io.netty + netty-handler-proxy + ${project.version} + + + io.netty + netty-handler-ssl-ocsp + ${project.version} + + + io.netty + netty-resolver + ${project.version} + + + io.netty + netty-resolver-dns + ${project.version} + + + io.netty + netty-transport + ${project.version} + + + io.netty + netty-transport-rxtx + ${project.version} + + + io.netty + netty-transport-sctp + ${project.version} + + + io.netty + netty-transport-udt + ${project.version} + + + io.netty + netty-example + ${project.version} + + + io.netty + netty-all + ${project.version} + + + io.netty + netty-resolver-dns-classes-macos + ${project.version} + + + io.netty + netty-resolver-dns-native-macos + ${project.version} + + + io.netty + netty-resolver-dns-native-macos + ${project.version} + osx-x86_64 + + + io.netty + netty-resolver-dns-native-macos + ${project.version} + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + + + io.netty + netty-transport-native-unix-common + ${project.version} + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + ${project.version} + osx-aarch_64 + + + io.netty + netty-transport-classes-epoll + ${project.version} + + + io.netty + netty-transport-native-epoll + ${project.version} + + + io.netty + netty-transport-native-epoll + ${project.version} + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + ${project.version} + linux-x86_64 + + + io.netty + netty-transport-classes-kqueue + ${project.version} + + + io.netty + netty-transport-native-kqueue + ${project.version} + + + io.netty + netty-transport-native-kqueue + ${project.version} + osx-x86_64 + + + io.netty + netty-transport-native-kqueue + ${project.version} + osx-aarch_64 + + + + io.netty + netty-tcnative-classes + ${tcnative.version} + + + io.netty + netty-tcnative + ${tcnative.version} + linux-x86_64 + + + io.netty + netty-tcnative + ${tcnative.version} + linux-x86_64-fedora + + + io.netty + netty-tcnative + ${tcnative.version} + linux-aarch_64-fedora + + + io.netty + netty-tcnative + ${tcnative.version} + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + ${tcnative.version} + windows-x86_64 + + + + diff --git a/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom.sha1 b/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom.sha1 new file mode 100644 index 000000000..f8f0141f1 --- /dev/null +++ b/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom.sha1 @@ -0,0 +1 @@ +59402eabe8a5babbda7b3209ab0b178f396ae893 \ No newline at end of file diff --git a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/_remote.repositories b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/_remote.repositories new file mode 100644 index 000000000..de8f88604 --- /dev/null +++ b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:36 EDT 2024 +opentelemetry-bom-1.31.0.pom>ohdsi= diff --git a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom new file mode 100644 index 000000000..8d1fb283c --- /dev/null +++ b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom @@ -0,0 +1,184 @@ + + + + + + + + 4.0.0 + io.opentelemetry + opentelemetry-bom + 1.31.0 + pom + OpenTelemetry Java + OpenTelemetry Bill of Materials + https://github.com/open-telemetry/opentelemetry-java + + + The Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + opentelemetry + OpenTelemetry + https://github.com/open-telemetry/community + + + + scm:git:git@github.com:open-telemetry/opentelemetry-java.git + scm:git:git@github.com:open-telemetry/opentelemetry-java.git + git@github.com:open-telemetry/opentelemetry-java.git + + + + + io.opentelemetry + opentelemetry-context + 1.31.0 + + + io.opentelemetry + opentelemetry-opentracing-shim + 1.31.0 + + + io.opentelemetry + opentelemetry-api + 1.31.0 + + + io.opentelemetry + opentelemetry-exporter-common + 1.31.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger + 1.31.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-thrift + 1.31.0 + + + io.opentelemetry + opentelemetry-exporter-logging + 1.31.0 + + + io.opentelemetry + opentelemetry-exporter-logging-otlp + 1.31.0 + + + io.opentelemetry + opentelemetry-exporter-zipkin + 1.31.0 + + + io.opentelemetry + opentelemetry-extension-kotlin + 1.31.0 + + + io.opentelemetry + opentelemetry-extension-trace-propagators + 1.31.0 + + + io.opentelemetry + opentelemetry-sdk + 1.31.0 + + + io.opentelemetry + opentelemetry-sdk-common + 1.31.0 + + + io.opentelemetry + opentelemetry-sdk-logs + 1.31.0 + + + io.opentelemetry + opentelemetry-sdk-metrics + 1.31.0 + + + io.opentelemetry + opentelemetry-sdk-testing + 1.31.0 + + + io.opentelemetry + opentelemetry-sdk-trace + 1.31.0 + + + io.opentelemetry + opentelemetry-sdk-extension-autoconfigure + 1.31.0 + + + io.opentelemetry + opentelemetry-sdk-extension-autoconfigure-spi + 1.31.0 + + + io.opentelemetry + opentelemetry-sdk-extension-jaeger-remote-sampler + 1.31.0 + + + io.opentelemetry + opentelemetry-exporter-otlp + 1.31.0 + + + io.opentelemetry + opentelemetry-exporter-otlp-common + 1.31.0 + + + io.opentelemetry + opentelemetry-exporter-sender-grpc-managed-channel + 1.31.0 + + + io.opentelemetry + opentelemetry-exporter-sender-okhttp + 1.31.0 + + + io.opentelemetry + opentelemetry-sdk-extension-aws + 1.19.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-proto + 1.17.0 + + + io.opentelemetry + opentelemetry-extension-annotations + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-extension-resources + 1.19.0 + + + io.opentelemetry + opentelemetry-extension-aws + 1.20.1 + + + + diff --git a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.lastUpdated b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.lastUpdated new file mode 100644 index 000000000..7fcc72cf0 --- /dev/null +++ b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:36 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.opentelemetry\:opentelemetry-bom\:pom\:1.31.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139816079 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139816194 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139816325 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139816454 diff --git a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.sha1 b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.sha1 new file mode 100644 index 000000000..4bcdd359a --- /dev/null +++ b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.sha1 @@ -0,0 +1 @@ +33963c7ef93f9ff079ceac41f2d48c1e5d42b273 \ No newline at end of file diff --git a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/_remote.repositories b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/_remote.repositories new file mode 100644 index 000000000..da973c710 --- /dev/null +++ b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:38 EDT 2024 +reactor-bom-2023.0.5.pom>ohdsi= diff --git a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom new file mode 100644 index 000000000..aaeba82a1 --- /dev/null +++ b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom @@ -0,0 +1,133 @@ + + + + + + + + 4.0.0 + io.projectreactor + reactor-bom + 2023.0.5 + pom + Project Reactor 3 Release Train - BOM + Bill of materials to make sure a consistent set of versions is used for Reactor 3. + https://projectreactor.io + + reactor + https://github.com/reactor + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + simonbasle + Simon Baslé + sbasle at vmware.com + + + violetagg + Violeta Georgieva + violetag at vmware.com + + + odokuka + Oleh Dokuka + odokuka at vmware.com + + + + scm:git:git://github.com/reactor/reactor + scm:git:git://github.com/reactor/reactor + https://github.com/reactor/reactor + + + GitHub Issues + https://github.com/reactor + + + + + org.reactivestreams + reactive-streams + 1.0.4 + + + io.projectreactor + reactor-core + 3.6.5 + + + io.projectreactor + reactor-test + 3.6.5 + + + io.projectreactor + reactor-tools + 3.6.5 + + + io.projectreactor + reactor-core-micrometer + 1.1.5 + + + io.projectreactor.addons + reactor-extra + 3.5.1 + + + io.projectreactor.addons + reactor-adapter + 3.5.1 + + + io.projectreactor.netty + reactor-netty + 1.1.18 + + + io.projectreactor.netty + reactor-netty-core + 1.1.18 + + + io.projectreactor.netty + reactor-netty-http + 1.1.18 + + + io.projectreactor.netty + reactor-netty-http-brave + 1.1.18 + + + io.projectreactor.addons + reactor-pool + 1.0.5 + + + io.projectreactor.addons + reactor-pool-micrometer + 0.1.5 + + + io.projectreactor.kotlin + reactor-kotlin-extensions + 1.2.2 + + + io.projectreactor.kafka + reactor-kafka + 1.3.23 + + + + diff --git a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.lastUpdated b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.lastUpdated new file mode 100644 index 000000000..e31549de2 --- /dev/null +++ b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:38 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.projectreactor\:reactor-bom\:pom\:2023.0.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139818089 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139818182 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139818370 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139818498 diff --git a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.sha1 b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.sha1 new file mode 100644 index 000000000..53a8d7026 --- /dev/null +++ b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.sha1 @@ -0,0 +1 @@ +23e9418b6a3fe86350abb886c67b117f74af047d \ No newline at end of file diff --git a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/_remote.repositories b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/_remote.repositories new file mode 100644 index 000000000..8a453e0f4 --- /dev/null +++ b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:52 EDT 2024 +reactor-bom-Dysprosium-SR7.pom>local-repo= diff --git a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom new file mode 100644 index 000000000..4444cd3e4 --- /dev/null +++ b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom @@ -0,0 +1,117 @@ + + + 4.0.0 + io.projectreactor + reactor-bom + Dysprosium-SR7 + pom + Project Reactor 3 Release Train - BOM + Bill of materials to make sure a consistent set of versions is used for Reactor 3. + https://projectreactor.io + + Pivotal Software, Inc. + https://pivotal.io/ + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + smaldini + Stephane Maldini + smaldini at pivotal.io + + + simonbasle + Simon Baslé + sbasle at pivotal.io + + + violetagg + Violeta Georgieva + vgeorgieva at pivotal.io + + + bsideup + Sergei Egorov + segorov at pivotal.io + + + akarnokd + David Karnok + akarnokd at gmail.com + + + + scm:git:git://github.com/reactor/reactor + scm:git:git://github.com/reactor/reactor + https://github.com/reactor/reactor + + + GitHub Issues + https://github.com/reactor + + + + + org.reactivestreams + reactive-streams + 1.0.3 + + + io.projectreactor + reactor-core + 3.3.5.RELEASE + + + io.projectreactor + reactor-test + 3.3.5.RELEASE + + + io.projectreactor + reactor-tools + 3.3.5.RELEASE + + + io.projectreactor.addons + reactor-extra + 3.3.3.RELEASE + + + io.projectreactor.addons + reactor-adapter + 3.3.3.RELEASE + + + io.projectreactor.netty + reactor-netty + 0.9.7.RELEASE + + + io.projectreactor.addons + reactor-pool + 0.1.3.RELEASE + + + io.projectreactor.kafka + reactor-kafka + 1.2.2.RELEASE + + + io.projectreactor.rabbitmq + reactor-rabbitmq + 1.4.2.RELEASE + + + io.projectreactor.kotlin + reactor-kotlin-extensions + 1.0.2.RELEASE + + + + diff --git a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.lastUpdated b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.lastUpdated new file mode 100644 index 000000000..768037f61 --- /dev/null +++ b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:52 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139892676 +http\://0.0.0.0/.error=Could not transfer artifact io.projectreactor\:reactor-bom\:pom\:Dysprosium-SR7 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139892402 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139892411 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139892514 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139892625 diff --git a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.sha1 b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.sha1 new file mode 100644 index 000000000..935fe5e9e --- /dev/null +++ b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.sha1 @@ -0,0 +1 @@ +e34496676fd586f0aae9c81f1708ead38f166d4f \ No newline at end of file diff --git a/code/arachne/io/projectreactor/reactor-core/3.6.5/_remote.repositories b/code/arachne/io/projectreactor/reactor-core/3.6.5/_remote.repositories new file mode 100644 index 000000000..079c0c4a0 --- /dev/null +++ b/code/arachne/io/projectreactor/reactor-core/3.6.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:13 EDT 2024 +reactor-core-3.6.5.pom>central= diff --git a/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom b/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom new file mode 100644 index 000000000..2afc1f491 --- /dev/null +++ b/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom @@ -0,0 +1,56 @@ + + + + + + + + 4.0.0 + io.projectreactor + reactor-core + 3.6.5 + Non-Blocking Reactive Foundation for the JVM + Non-Blocking Reactive Foundation for the JVM + https://github.com/reactor/reactor-core + + reactor + https://github.com/reactor + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + simonbasle + Simon Baslé + sbasle@vmware.com + + + odokuka + Oleh Dokuka + odokuka@vmware.com + + + + scm:git:git://github.com/reactor/reactor-core + scm:git:git://github.com/reactor/reactor-core + https://github.com/reactor/reactor-core + + + GitHub Issues + https://github.com/reactor/reactor-core/issues + + + + org.reactivestreams + reactive-streams + 1.0.4 + compile + + + diff --git a/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom.sha1 b/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom.sha1 new file mode 100644 index 000000000..cd9e0e17b --- /dev/null +++ b/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom.sha1 @@ -0,0 +1 @@ +5069a210f81d9a469727f6dc2da7c0b1c10e782a \ No newline at end of file diff --git a/code/arachne/io/prometheus/parent/0.16.0/_remote.repositories b/code/arachne/io/prometheus/parent/0.16.0/_remote.repositories new file mode 100644 index 000000000..52f3c68da --- /dev/null +++ b/code/arachne/io/prometheus/parent/0.16.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:37 EDT 2024 +parent-0.16.0.pom>ohdsi= diff --git a/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom b/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom new file mode 100644 index 000000000..f6116cc42 --- /dev/null +++ b/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom @@ -0,0 +1,313 @@ + + + pom + 4.0.0 + + io.prometheus + parent + 0.16.0 + + Prometheus Java Suite + http://github.com/prometheus/client_java + + The Prometheus Java Suite: Client Metrics, Exposition, and Examples + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:git@github.com:prometheus/client_java.git + scm:git:git@github.com:prometheus/client_java.git + git@github.com:prometheus/client_java.git + parent-0.16.0 + + + + + mtp + Matt T. Proud + matt.proud@gmail.com + + + + + simpleclient + simpleclient_common + simpleclient_caffeine + simpleclient_dropwizard + simpleclient_graphite_bridge + simpleclient_hibernate + simpleclient_guava + simpleclient_hotspot + simpleclient_httpserver + simpleclient_log4j + simpleclient_log4j2 + simpleclient_logback + simpleclient_pushgateway + simpleclient_servlet + simpleclient_servlet_common + simpleclient_servlet_jakarta + simpleclient_spring_web + simpleclient_spring_boot + simpleclient_jetty + simpleclient_jetty_jdk8 + simpleclient_tracer + simpleclient_vertx + simpleclient_vertx4 + simpleclient_bom + benchmarks + integration_tests + + + + UTF-8 + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + + + + maven-install-plugin + 2.4 + + + maven-resources-plugin + 2.6 + + + maven-compiler-plugin + 3.1 + + + maven-surefire-plugin + 2.12.4 + + + maven-jar-plugin + 2.4 + + + maven-deploy-plugin + 2.7 + + + maven-clean-plugin + 2.5 + + + maven-site-plugin + 3.3 + + + + maven-shade-plugin + 3.2.4 + + + maven-failsafe-plugin + 2.22.2 + + + maven-release-plugin + 2.5.3 + + + maven-dependency-plugin + 3.1.2 + + + maven-javadoc-plugin + 3.3.0 + + + maven-gpg-plugin + 3.0.1 + + + maven-source-plugin + 3.2.1 + + + maven-enforcer-plugin + 1.4.1 + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-plugin-versions + + enforce + + + + + org.springframework.boot:spring-boot-maven-plugin + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + + true + false + release + deploy + + + + org.apache.maven.plugins + maven-deploy-plugin + + + org.apache.felix + maven-bundle-plugin + 2.4.0 + true + + + org.apache.maven.plugins + maven-surefire-plugin + + + org.apache.maven.plugins + maven-javadoc-plugin + + UTF-8 + UTF-8 + true + 8 + ${java.home}/bin/javadoc + + + + generate-javadoc-site-report + site + + aggregate + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.6 + 1.6 + + + + org.codehaus.mojo + versions-maven-plugin + 2.10.0 + + file://${project.basedir}/version-rules.xml + + + + + + + + + + maven-project-info-reports-plugin + 2.9 + + + maven-javadoc-plugin + + + aggregate + false + + aggregate + + + + default + + javadoc + + + + + + + + + + release + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + + + diff --git a/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.lastUpdated b/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.lastUpdated new file mode 100644 index 000000000..007734881 --- /dev/null +++ b/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:37 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.prometheus\:parent\:pom\:0.16.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139817177 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139817277 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139817448 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139817604 diff --git a/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.sha1 b/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.sha1 new file mode 100644 index 000000000..bae706b4e --- /dev/null +++ b/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.sha1 @@ -0,0 +1 @@ +2ae0bbbf4310dedfed62e8fd92279bf5bc60975d \ No newline at end of file diff --git a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/_remote.repositories b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/_remote.repositories new file mode 100644 index 000000000..e720a9f7b --- /dev/null +++ b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:37 EDT 2024 +simpleclient_bom-0.16.0.pom>ohdsi= diff --git a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom new file mode 100644 index 000000000..df1ea609e --- /dev/null +++ b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom @@ -0,0 +1,146 @@ + + + 4.0.0 + + + io.prometheus + parent + 0.16.0 + + + simpleclient_bom + pom + + Prometheus Java Simpleclient BOM + + Bill of Materials for the Simpleclient. + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + + io.prometheus + simpleclient + ${project.version} + + + io.prometheus + simpleclient_caffeine + ${project.version} + + + io.prometheus + simpleclient_common + ${project.version} + + + io.prometheus + simpleclient_dropwizard + ${project.version} + + + io.prometheus + simpleclient_graphite_bridge + ${project.version} + + + io.prometheus + simpleclient_guava + ${project.version} + + + io.prometheus + simpleclient_hibernate + ${project.version} + + + io.prometheus + simpleclient_hotspot + ${project.version} + + + io.prometheus + simpleclient_httpserver + ${project.version} + + + io.prometheus + simpleclient_tracer_common + ${project.version} + + + io.prometheus + simpleclient_jetty + ${project.version} + + + io.prometheus + simpleclient_jetty_jdk8 + ${project.version} + + + io.prometheus + simpleclient_log4j + ${project.version} + + + io.prometheus + simpleclient_log4j2 + ${project.version} + + + io.prometheus + simpleclient_logback + ${project.version} + + + io.prometheus + simpleclient_pushgateway + ${project.version} + + + io.prometheus + simpleclient_servlet + ${project.version} + + + io.prometheus + simpleclient_servlet_jakarta + ${project.version} + + + io.prometheus + simpleclient_spring_boot + ${project.version} + + + io.prometheus + simpleclient_spring_web + ${project.version} + + + io.prometheus + simpleclient_tracer_otel + ${project.version} + + + io.prometheus + simpleclient_tracer_otel_agent + ${project.version} + + + io.prometheus + simpleclient_vertx + ${project.version} + + + + diff --git a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.lastUpdated b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.lastUpdated new file mode 100644 index 000000000..c3284cf54 --- /dev/null +++ b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:37 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.prometheus\:simpleclient_bom\:pom\:0.16.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139816798 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139816895 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139817044 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139817169 diff --git a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.sha1 b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.sha1 new file mode 100644 index 000000000..57f6f28c1 --- /dev/null +++ b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.sha1 @@ -0,0 +1 @@ +7a83764a96ed642f7236dac41b9d4b3483be3a10 \ No newline at end of file diff --git a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/_remote.repositories b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/_remote.repositories new file mode 100644 index 000000000..eda44c915 --- /dev/null +++ b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:52 EDT 2024 +r2dbc-bom-Arabba-SR3.pom>local-repo= diff --git a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom new file mode 100644 index 000000000..3c50d9029 --- /dev/null +++ b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom @@ -0,0 +1,99 @@ + + + + 4.0.0 + io.r2dbc + r2dbc-bom + Arabba-SR3 + pom + Reactive Relational Database Connectivity - Bill of Materials + Dependency Management for R2DBC Drivers + https://github.com/r2dbc/r2dbc-bom + + + Apache License 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + R2DBC Working Group + + + + scm:git:https://github.com/r2dbc/r2dbc-bom + https://github.com/r2dbc/r2dbc-bom + + + 0.8.2.RELEASE + 0.8.2.RELEASE + 0.8.2.RELEASE + 0.8.2.RELEASE + 0.2.0 + 0.8.1.RELEASE + UTF-8 + UTF-8 + 0.8.3.RELEASE + 0.8.1.RELEASE + + + + + com.google.cloud + cloud-spanner-r2dbc + ${r2dbc-cloud-spanner.version} + + + io.r2dbc + r2dbc-h2 + ${r2dbc-h2.version} + + + io.r2dbc + r2dbc-mssql + ${r2dbc-mssql.version} + + + dev.miku + r2dbc-mysql + ${r2dbc-mysql.version} + + + io.r2dbc + r2dbc-postgresql + ${r2dbc-postgresql.version} + + + io.r2dbc + r2dbc-pool + ${r2dbc-pool.version} + + + io.r2dbc + r2dbc-proxy + ${r2dbc-proxy.version} + + + io.r2dbc + r2dbc-spi + ${r2dbc-spi.version} + + + + diff --git a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.lastUpdated b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.lastUpdated new file mode 100644 index 000000000..629dcd677 --- /dev/null +++ b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:52 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139892305 +http\://0.0.0.0/.error=Could not transfer artifact io.r2dbc\:r2dbc-bom\:pom\:Arabba-SR3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139892075 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139892083 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139892180 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139892261 diff --git a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.sha1 b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.sha1 new file mode 100644 index 000000000..f93e34cdf --- /dev/null +++ b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.sha1 @@ -0,0 +1 @@ +0e046b50e83750c7b2a0fd6580d964949db8b7a8 \ No newline at end of file diff --git a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/_remote.repositories b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/_remote.repositories new file mode 100644 index 000000000..d0c000ae1 --- /dev/null +++ b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:38 EDT 2024 +rest-assured-bom-5.3.2.pom>ohdsi= diff --git a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom new file mode 100644 index 000000000..4175fc3ef --- /dev/null +++ b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom @@ -0,0 +1,112 @@ + + + + + 4.0.0 + + io.rest-assured + rest-assured-bom + 5.3.2 + REST Assured: BOM + pom + Centralized dependencyManagement for the Rest Assured Project + + https://rest-assured.io/ + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.html + repo + + + + + + scm:git:git://github.com/rest-assured/rest-assured.git + scm:git:ssh://git@github.com/rest-assured/rest-assured.git + http://github.com/rest-assured/rest-assured/tree/master + HEAD + + + + + johan.haleby + Johan Haleby + johan.haleby at gmail.com + Jayway + http://www.jayway.com + + + + + + io.rest-assured + json-schema-validator + 5.3.2 + + + io.rest-assured + rest-assured-common + 5.3.2 + + + io.rest-assured + json-path + 5.3.2 + + + io.rest-assured + xml-path + 5.3.2 + + + io.rest-assured + rest-assured + 5.3.2 + + + io.rest-assured + spring-commons + 5.3.2 + + + io.rest-assured + spring-mock-mvc + 5.3.2 + + + io.rest-assured + scala-support + 5.3.2 + + + io.rest-assured + spring-web-test-client + 5.3.2 + + + io.rest-assured + kotlin-extensions + 5.3.2 + + + io.rest-assured + spring-mock-mvc-kotlin-extensions + 5.3.2 + + + io.rest-assured + rest-assured-all + 5.3.2 + + + + + + + + + + + + diff --git a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.lastUpdated b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.lastUpdated new file mode 100644 index 000000000..489feed02 --- /dev/null +++ b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:38 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.rest-assured\:rest-assured-bom\:pom\:5.3.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139818506 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139818637 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139818738 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139818863 diff --git a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.sha1 b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.sha1 new file mode 100644 index 000000000..98e4b175c --- /dev/null +++ b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.sha1 @@ -0,0 +1 @@ +fda54c1c84f4dbb04298230cc760007e1d71390f \ No newline at end of file diff --git a/code/arachne/io/rsocket/rsocket-bom/1.0.0/_remote.repositories b/code/arachne/io/rsocket/rsocket-bom/1.0.0/_remote.repositories new file mode 100644 index 000000000..990ac93a1 --- /dev/null +++ b/code/arachne/io/rsocket/rsocket-bom/1.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:53 EDT 2024 +rsocket-bom-1.0.0.pom>local-repo= diff --git a/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom b/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom new file mode 100644 index 000000000..67be6a570 --- /dev/null +++ b/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom @@ -0,0 +1,84 @@ + + + 4.0.0 + io.rsocket + rsocket-bom + 1.0.0 + pom + rsocket-bom + RSocket Java Bill of materials. + http://rsocket.io + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + robertroeser + Robert Roeser + robert@netifi.com + + + rdegnan + Ryland Degnan + ryland@netifi.com + + + yschimke + Yuri Schimke + yuri@schimke.ee + + + OlegDokuka + Oleh Dokuka + oleh@netifi.com + + + mostroverkhov + Maksym Ostroverkhov + m.ostroverkhov@gmail.com + + + + scm:git:https://github.com/rsocket/rsocket-java.git + scm:git:https://github.com/rsocket/rsocket-java.git + https://github.com/rsocket/rsocket-java + + + + + io.rsocket + rsocket-core + 1.0.0 + + + io.rsocket + rsocket-load-balancer + 1.0.0 + + + io.rsocket + rsocket-micrometer + 1.0.0 + + + io.rsocket + rsocket-test + 1.0.0 + + + io.rsocket + rsocket-transport-local + 1.0.0 + + + io.rsocket + rsocket-transport-netty + 1.0.0 + + + + diff --git a/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.lastUpdated b/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.lastUpdated new file mode 100644 index 000000000..c798497df --- /dev/null +++ b/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:53 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139893208 +http\://0.0.0.0/.error=Could not transfer artifact io.rsocket\:rsocket-bom\:pom\:1.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139892799 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139892807 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139892912 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139893160 diff --git a/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.sha1 b/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.sha1 new file mode 100644 index 000000000..616244b85 --- /dev/null +++ b/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.sha1 @@ -0,0 +1 @@ +68ec71ef3002f1e607f7da844a40e90e4fa3ac47 \ No newline at end of file diff --git a/code/arachne/io/rsocket/rsocket-bom/1.1.3/_remote.repositories b/code/arachne/io/rsocket/rsocket-bom/1.1.3/_remote.repositories new file mode 100644 index 000000000..428892590 --- /dev/null +++ b/code/arachne/io/rsocket/rsocket-bom/1.1.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:39 EDT 2024 +rsocket-bom-1.1.3.pom>ohdsi= diff --git a/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom b/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom new file mode 100644 index 000000000..460998437 --- /dev/null +++ b/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom @@ -0,0 +1,79 @@ + + + 4.0.0 + io.rsocket + rsocket-bom + 1.1.3 + pom + rsocket-bom + RSocket Java Bill of materials. + http://rsocket.io + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + rdegnan + Ryland Degnan + ryland@netifi.com + + + yschimke + Yuri Schimke + yuri@schimke.ee + + + OlegDokuka + Oleh Dokuka + oleh.dokuka@icloud.com + + + rstoyanchev + Rossen Stoyanchev + rstoyanchev@vmware.com + + + + scm:git:https://github.com/rsocket/rsocket-java.git + scm:git:https://github.com/rsocket/rsocket-java.git + https://github.com/rsocket/rsocket-java + + + + + io.rsocket + rsocket-core + 1.1.3 + + + io.rsocket + rsocket-load-balancer + 1.1.3 + + + io.rsocket + rsocket-micrometer + 1.1.3 + + + io.rsocket + rsocket-test + 1.1.3 + + + io.rsocket + rsocket-transport-local + 1.1.3 + + + io.rsocket + rsocket-transport-netty + 1.1.3 + + + + diff --git a/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.lastUpdated b/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.lastUpdated new file mode 100644 index 000000000..3ff2fca06 --- /dev/null +++ b/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:39 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.rsocket\:rsocket-bom\:pom\:1.1.3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139818871 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139818960 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139819094 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139819217 diff --git a/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.sha1 b/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.sha1 new file mode 100644 index 000000000..d01cbbd6c --- /dev/null +++ b/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.sha1 @@ -0,0 +1 @@ +a14dbc5198c3219b6e764229029f466d1c66a426 \ No newline at end of file diff --git a/code/arachne/io/smallrye/jandex-parent/3.1.2/_remote.repositories b/code/arachne/io/smallrye/jandex-parent/3.1.2/_remote.repositories new file mode 100644 index 000000000..e7087c5f9 --- /dev/null +++ b/code/arachne/io/smallrye/jandex-parent/3.1.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:02 EDT 2024 +jandex-parent-3.1.2.pom>central= diff --git a/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom b/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom new file mode 100644 index 000000000..89a3ec78c --- /dev/null +++ b/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom @@ -0,0 +1,185 @@ + + 4.0.0 + + + io.smallrye + smallrye-build-parent + 39 + + + io.smallrye + jandex-parent + 3.1.2 + pom + + Jandex: Parent + + + UTF-8 + UTF-8 + 2023-06-08T15:06:43Z + + 1.8 + 1.8 + + 1.10.11 + 1.6.Final + 1.11.13 + 3.0.0 + 5.8.2 + 3.8.1 + 5.1.8 + 3.10.1 + 3.3.0 + 3.2.2 + 3.6.1 + 3.3.0 + 1.6.13 + 1.1.1 + 2.11.1 + 3.5.0 + + + + GitHub + https://github.com/smallrye/jandex/issues + + + + scm:git:git@github.com:smallrye/jandex.git + scm:git:git@github.com:smallrye/jandex.git + https://github.com/smallrye/jandex/ + 3.1.2 + + + + core + maven-plugin + test-data + + benchmarks + + + + + + io.smallrye + jandex + ${project.version} + + + io.smallrye + jandex-test-data + ${project.version} + + + + net.bytebuddy + byte-buddy + ${version.bytebuddy} + + + org.apache.ant + ant + ${version.ant} + + + org.apache.maven + maven-plugin-api + ${version.maven} + + + org.apache.maven + maven-core + ${version.maven} + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${version.maven-plugin-tools} + + + org.codehaus.plexus + plexus-utils + ${version.plexus-utils} + + + org.junit.jupiter + junit-jupiter + ${version.junit} + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.maven-compiler-plugin} + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${version.nexus-staging-maven-plugin} + + + + + + + + java8-incompatible-plugins + + 1.8 + + + + + net.revelc.code.formatter + formatter-maven-plugin + + + none + + + + + net.revelc.code + impsort-maven-plugin + + + sort-imports + none + + + + + + + + + compiler-release-option + + [9,) + + + + 8 + + + + + release + + + !release.maven.bug.always.be.active + + + + release + + + + diff --git a/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom.sha1 b/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom.sha1 new file mode 100644 index 000000000..c4ca213b3 --- /dev/null +++ b/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom.sha1 @@ -0,0 +1 @@ +68c735c8ece1f38f933830260bd688fdfd96c28f \ No newline at end of file diff --git a/code/arachne/io/smallrye/jandex/3.1.2/_remote.repositories b/code/arachne/io/smallrye/jandex/3.1.2/_remote.repositories new file mode 100644 index 000000000..a558aced6 --- /dev/null +++ b/code/arachne/io/smallrye/jandex/3.1.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:01 EDT 2024 +jandex-3.1.2.pom>central= diff --git a/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom b/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom new file mode 100644 index 000000000..f079c923e --- /dev/null +++ b/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom @@ -0,0 +1,172 @@ + + 4.0.0 + + + io.smallrye + jandex-parent + 3.1.2 + + + jandex + bundle + + Jandex: Core + + + + org.apache.ant + ant + provided + true + + + + io.smallrye + jandex-test-data + test + + + net.bytebuddy + byte-buddy + test + + + org.junit.jupiter + junit-jupiter + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + true + true + + + + org.apache.maven.plugins + maven-javadoc-plugin + + UTF-8 + UTF-8 + UTF-8 + true + true + true + true + + --allow-script-in-comments + + true + + + + ]]> + + SyntaxHighlighter.defaults["auto-links"] = false; + SyntaxHighlighter.defaults["gutter"] = false; + SyntaxHighlighter.defaults["toolbar"] = false; + SyntaxHighlighter.all(); + + ]]> + + + + org.apache.felix + maven-bundle-plugin + ${version.maven-bundle-plugin} + true + + + true + + org.jboss.jandex.Main + + + org.jboss.jandex + true + + + + ${project.groupId}.${project.artifactId} + ${project.version} + + org.jboss.jandex;version="${project.version}" + + + org.apache.tools.ant;resolution:=optional, + org.apache.tools.ant.types;resolution:=optional, + * + + + <_nouses>true + + + + + org.jboss.bridger + bridger + ${version.bridger} + + + weave + process-classes + + transform + + + + + + + + + + ecj + + + compiler + ecj + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + eclipse + + + + org.codehaus.plexus + plexus-compiler-eclipse + ${version.plexus-compiler-eclipse} + + + + + + + + + parameters + + + parameters + true + + + + true + + + + diff --git a/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom.sha1 b/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom.sha1 new file mode 100644 index 000000000..3438dd359 --- /dev/null +++ b/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom.sha1 @@ -0,0 +1 @@ +320c80d96a5f81a5c492e5d58054dabe0a59190c \ No newline at end of file diff --git a/code/arachne/io/smallrye/smallrye-build-parent/39/_remote.repositories b/code/arachne/io/smallrye/smallrye-build-parent/39/_remote.repositories new file mode 100644 index 000000000..ce2c512bf --- /dev/null +++ b/code/arachne/io/smallrye/smallrye-build-parent/39/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:02 EDT 2024 +smallrye-build-parent-39.pom>central= diff --git a/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom b/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom new file mode 100644 index 000000000..09e201595 --- /dev/null +++ b/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom @@ -0,0 +1,815 @@ + + + + 4.0.0 + + io.smallrye + smallrye-build-parent + 39 + + SmallRye: Build Parent + SmallRye Build Parent POM + https://smallrye.io + + 2018 + + pom + + + full-parent + + + + + 3.2.0 + 3.10.1 + 3.0.1 + 3.1.0 + 3.3.0 + 3.4.1 + 1.6.13 + 3.0.0-M7 + 3.1.0 + 3.2.1 + 3.12.1 + 3.0.0-M9 + 3.0.0-M9 + 3.0.0-M9 + 2 + 2.22.0 + 1.8.0 + 0.8.8 + 1.0.0 + 3.0.0 + 2.14.2 + + + UTF-8 + UTF-8 + + + https://sonarcloud.io + smallrye + + + 11 + 11 + ${maven.compiler.target} + ${maven.compiler.source} + + + 3.Final + + false + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + GitHub + https://github.com/smallrye/smallrye-parent/issues + + + + + radcortez + Roberto Cortez + radcortez@redhat.com + Red Hat + https://www.redhat.com/en + + + + + scm:git:git@github.com:smallrye/smallrye-parent.git + scm:git:git@github.com:smallrye/smallrye-parent.git + https://github.com/smallrye/smallrye-parent + 39 + + + + + oss.sonatype + https://oss.sonatype.org/content/repositories/snapshots/ + + + oss.sonatype + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + + org.apache.maven.plugins + maven-clean-plugin + ${version.clean.plugin} + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.compiler.plugin} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.gpg.plugin} + + + --pinentry-mode + loopback + + + + + org.apache.maven.plugins + maven-install-plugin + ${version.install.plugin} + + + org.apache.maven.plugins + maven-jar-plugin + ${version.jar.plugin} + + + true + + true + true + + + ${project.url} + ${java.version} + ${java.vendor} + ${os.name} + ${os.arch} + ${os.version} + ${project.scm.url} + ${project.scm.connection} + ${buildNumber} + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.javadoc.plugin} + + + + + apiNote + a + API Note: + + + implSpec + a + Implementation Requirements: + + + implNote + a + Implementation Note: + + + param + + + return + + + throws + + + since + + + version + + + serialData + + + see + + + + + + org.apache.maven.plugins + maven-source-plugin + ${version.source.plugin} + + + org.apache.maven.plugins + maven-site-plugin + ${version.site.plugin} + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.surefire.plugin} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.surefire-report.plugin} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${version.failsafe.plugin} + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${version.nexus.staging.plugin} + + 15 + + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.deploy.plugin} + + + org.jacoco + jacoco-maven-plugin + ${version.jacoco.plugin} + + jacocoArgLine + true + + META-INF/** + + + + + prepare-agent + + prepare-agent + + generate-test-resources + + + + + io.smallrye + smallrye-maven-plugin + ${version.smallrye.plugin} + + + + + + + maven-compiler-plugin + + + default-compile + compile + + compile + + + + + -Aorg.jboss.logging.tools.addGeneratedAnnotation=false + + + + + + + org.apache.maven.plugins + maven-release-plugin + ${version.release.plugin} + + true + @{project.version} + verify + false + true + false + -DskipTests ${release.arguments} + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + net.revelc.code.formatter + formatter-maven-plugin + ${version.formatter.plugin} + + + io.smallrye + smallrye-code-rules + ${version.smallrye.code.rules.plugin} + + + + io/smallrye/coderules/eclipse-format.xml + ${format.skip} + + + + process-sources + + format + + + + + + net.revelc.code + impsort-maven-plugin + ${version.impsort.plugin} + + java.,javax.,jakarta.,org.,com. + * + ${format.skip} + true + + + + sort-imports + + sort + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + ${version.buildnumber.plugin} + + + get-scm-revision + initialize + + create + + + false + false + UNKNOWN + true + + + + + + org.codehaus.mojo + versions-maven-plugin + ${version.versions.plugin} + + false + + + + + + + + release + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + maven-javadoc-plugin + + + package + + jar + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + true + + https://oss.sonatype.org/ + oss.sonatype + true + + + + + + + + + + compile-java11-release-flag + + + ${basedir}/build-release-11 + + [11,) + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + default-compile + compile + + compile + + + 11 + + + + + + + + + + + + + + + java17-test-classpath + + [17,18) + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + default-test + + ${project.build.outputDirectory}/META-INF/versions/17 + + ${project.build.outputDirectory} + + + + + + + + + + + + java11-test + + [17,) + + java11.home + + + ${basedir}/build-test-java11 + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + java11-test + test + + test + + + ${java11.home}/bin/java + ${project.build.outputDirectory}/META-INF/versions/11 + + ${project.build.outputDirectory} + + + + + + + + + + + + java17-mr-build + + [17,) + + ${basedir}/src/main/java17 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + compile-java17 + compile + + compile + + + 17 + + ${project.basedir}/src/main/java17 + + true + + + + + + maven-jar-plugin + + + + true + + + + + + + + + + + + + + + java18-test-classpath + + [18,19) + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + default-test + + ${project.build.outputDirectory}/META-INF/versions/18 + + ${project.build.outputDirectory}/META-INF/versions/17 + ${project.build.outputDirectory} + + + + + + + + + + + + java17-test + + [18,) + + java17.home + + + ${basedir}/build-test-java17 + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + java17-test + test + + test + + + ${java17.home}/bin/java + ${project.build.outputDirectory}/META-INF/versions/17 + + ${project.build.outputDirectory} + + + + + + + + + + + + java18-mr-build + + [18,) + + ${basedir}/src/main/java18 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + compile-java18 + compile + + compile + + + 18 + + ${project.basedir}/src/main/java18 + + true + + + + + + maven-jar-plugin + + + + true + + + + + + + + + + + + + + + java19-test-classpath + + [19,20) + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + default-test + + ${project.build.outputDirectory}/META-INF/versions/19 + + ${project.build.outputDirectory}/META-INF/versions/18 + ${project.build.outputDirectory}/META-INF/versions/17 + ${project.build.outputDirectory} + + + + + + + + + + + + java18-test + + [19,) + + java18.home + + + ${basedir}/build-test-java18 + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + java18-test + test + + test + + + ${java18.home}/bin/java + ${project.build.outputDirectory}/META-INF/versions/18 + + ${project.build.outputDirectory}/META-INF/versions/17 + ${project.build.outputDirectory} + + + + + + + + + + + + java19-mr-build + + [19,) + + ${basedir}/src/main/java19 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + compile-java19 + compile + + compile + + + 19 + + ${project.basedir}/src/main/java19 + + true + + + + + + maven-jar-plugin + + + + true + + + + + + + + + + diff --git a/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom.sha1 b/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom.sha1 new file mode 100644 index 000000000..66820c0ac --- /dev/null +++ b/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom.sha1 @@ -0,0 +1 @@ +cbe799d4790e7ab7c7fb2fb4ac9591cc26767dc5 \ No newline at end of file diff --git a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/_remote.repositories b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/_remote.repositories new file mode 100644 index 000000000..b922e9227 --- /dev/null +++ b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:22 EDT 2024 +brave-bom-5.16.0.pom>ohdsi= diff --git a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom new file mode 100644 index 000000000..07c55bcac --- /dev/null +++ b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom @@ -0,0 +1,335 @@ + + + 4.0.0 + + io.zipkin.brave + brave-bom + 5.16.0 + Brave BOM + Bill Of Materials POM for all Brave artifacts + pom + https://github.com/openzipkin/brave + 2013 + + + UTF-8 + UTF-8 + UTF-8 + UTF-8 + + ${project.basedir}/.. + + + 2.23.2 + 2.16.3 + + 1.6.8 + + + + OpenZipkin + https://zipkin.io/ + + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + https://github.com/openzipkin/brave + scm:git:https://github.com/openzipkin/brave.git + scm:git:https://github.com/openzipkin/brave.git + 5.16.0 + + + + + + openzipkin + OpenZipkin Gitter + https://gitter.im/openzipkin/zipkin + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + Github + https://github.com/openzipkin/brave/issues + + + + + + io.zipkin.reporter2 + zipkin-reporter-bom + ${zipkin-reporter.version} + pom + import + + + io.zipkin.zipkin2 + zipkin + ${zipkin.version} + + + ${project.groupId} + brave + ${project.version} + + + ${project.groupId} + brave-tests + ${project.version} + + + ${project.groupId} + brave-context-jfr + ${project.version} + + + ${project.groupId} + brave-context-log4j2 + ${project.version} + + + ${project.groupId} + brave-context-log4j12 + ${project.version} + + + ${project.groupId} + brave-context-slf4j + ${project.version} + + + ${project.groupId} + brave-context-rxjava2 + ${project.version} + + + ${project.groupId} + brave-instrumentation-dubbo + ${project.version} + + + ${project.groupId} + brave-instrumentation-dubbo-rpc + ${project.version} + + + ${project.groupId} + brave-instrumentation-grpc + ${project.version} + + + ${project.groupId} + brave-instrumentation-http + ${project.version} + + + ${project.groupId} + brave-instrumentation-http-tests + ${project.version} + + + ${project.groupId} + brave-instrumentation-httpasyncclient + ${project.version} + + + ${project.groupId} + brave-instrumentation-httpclient + ${project.version} + + + ${project.groupId} + brave-instrumentation-jaxrs2 + ${project.version} + + + ${project.groupId} + brave-instrumentation-jersey-server + ${project.version} + + + ${project.groupId} + brave-instrumentation-jms + ${project.version} + + + ${project.groupId} + brave-instrumentation-jms-jakarta + ${project.version} + + + ${project.groupId} + brave-instrumentation-kafka-clients + ${project.version} + + + ${project.groupId} + brave-instrumentation-kafka-streams + ${project.version} + + + ${project.groupId} + brave-instrumentation-messaging + ${project.version} + + + ${project.groupId} + brave-instrumentation-mongodb + ${project.version} + + + ${project.groupId} + brave-instrumentation-mysql + ${project.version} + + + ${project.groupId} + brave-instrumentation-mysql6 + ${project.version} + + + ${project.groupId} + brave-instrumentation-mysql8 + ${project.version} + + + ${project.groupId} + brave-instrumentation-netty-codec-http + ${project.version} + + + ${project.groupId} + brave-instrumentation-okhttp3 + ${project.version} + + + ${project.groupId} + brave-instrumentation-p6spy + ${project.version} + + + ${project.groupId} + brave-instrumentation-rpc + ${project.version} + + + ${project.groupId} + brave-instrumentation-servlet + ${project.version} + + + ${project.groupId} + brave-instrumentation-servlet-jakarta + ${project.version} + + + ${project.groupId} + brave-instrumentation-sparkjava + ${project.version} + + + ${project.groupId} + brave-instrumentation-spring-rabbit + ${project.version} + + + ${project.groupId} + brave-instrumentation-spring-web + ${project.version} + + + ${project.groupId} + brave-instrumentation-spring-webmvc + ${project.version} + + + ${project.groupId} + brave-instrumentation-vertx-web + ${project.version} + + + ${project.groupId} + brave-spring-beans + ${project.version} + + + + + + + release + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${nexus-staging-maven-plugin.version} + true + + ossrh + https://oss.sonatype.org/ + true + + + + + maven-deploy-plugin + 3.0.0-M1 + + + + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + --pinentry-mode + loopback + + + + + + + + + + diff --git a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.lastUpdated b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.lastUpdated new file mode 100644 index 000000000..6b7237b40 --- /dev/null +++ b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:22 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.zipkin.brave\:brave-bom\:pom\:5.16.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139801533 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139801699 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139801895 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139802043 diff --git a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.sha1 b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.sha1 new file mode 100644 index 000000000..2186a8ac7 --- /dev/null +++ b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.sha1 @@ -0,0 +1 @@ +2ddc9c29bff98d7fcde594fd3611e16ce06b60b6 \ No newline at end of file diff --git a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/_remote.repositories b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/_remote.repositories new file mode 100644 index 000000000..5aa4ce5b6 --- /dev/null +++ b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:22 EDT 2024 +zipkin-reporter-bom-2.16.3.pom>ohdsi= diff --git a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom new file mode 100644 index 000000000..4a145d1d4 --- /dev/null +++ b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom @@ -0,0 +1,199 @@ + + + + 4.0.0 + + io.zipkin.reporter2 + zipkin-reporter-bom + Zipkin Reporter BOM + 2.16.3 + pom + Bill Of Materials POM for all Zipkin reporter artifacts + + + ${project.basedir}/.. + + 2.23.2 + 1.0.0 + + 1.6.8 + + + https://github.com/openzipkin/zipkin-reporter-java + 2016 + + + OpenZipkin + https://zipkin.io/ + + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + https://github.com/openzipkin/zipkin-reporter-java + scm:git:https://github.com/openzipkin/zipkin-reporter-java.git + scm:git:https://github.com/openzipkin/zipkin-reporter-java.git + 2.16.3 + + + + + + openzipkin + OpenZipkin Gitter + https://gitter.im/openzipkin/zipkin + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + Github + https://github.com/openzipkin/zipkin-reporter-java/issues + + + + + + io.zipkin.zipkin2 + zipkin + ${zipkin.version} + + + io.zipkin.proto3 + zipkin-proto3 + ${zipkin-proto3.version} + + + ${project.groupId} + zipkin-reporter + ${project.version} + + + ${project.groupId} + zipkin-sender-okhttp3 + ${project.version} + + + ${project.groupId} + zipkin-sender-libthrift + ${project.version} + + + ${project.groupId} + zipkin-sender-urlconnection + ${project.version} + + + ${project.groupId} + zipkin-sender-kafka08 + ${project.version} + + + ${project.groupId} + zipkin-sender-kafka + ${project.version} + + + ${project.groupId} + zipkin-sender-amqp-client + ${project.version} + + + ${project.groupId} + zipkin-sender-activemq-client + ${project.version} + + + ${project.groupId} + zipkin-reporter-spring-beans + ${project.version} + + + ${project.groupId} + zipkin-reporter-brave + ${project.version} + + + ${project.groupId} + zipkin-reporter-metrics-micrometer + ${project.version} + + + + + + + release + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${nexus-staging-maven-plugin.version} + true + + ossrh + https://oss.sonatype.org/ + true + + + + + maven-deploy-plugin + 3.0.0-M1 + + + + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + --pinentry-mode + loopback + + + + + + + + + + diff --git a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.lastUpdated b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.lastUpdated new file mode 100644 index 000000000..8450b1d30 --- /dev/null +++ b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:22 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact io.zipkin.reporter2\:zipkin-reporter-bom\:pom\:2.16.3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139802052 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139802151 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139802308 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139802459 diff --git a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.sha1 b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.sha1 new file mode 100644 index 000000000..998c5d411 --- /dev/null +++ b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.sha1 @@ -0,0 +1 @@ +9bb2094d21c35e35e5145d3264b137491e5c6d6a \ No newline at end of file diff --git a/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/_remote.repositories b/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/_remote.repositories new file mode 100644 index 000000000..9bd4b0f0c --- /dev/null +++ b/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:01 EDT 2024 +jakarta.activation-api-2.1.3.pom>central= diff --git a/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom b/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom new file mode 100644 index 000000000..83fb9de9e --- /dev/null +++ b/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom @@ -0,0 +1,421 @@ + + + + + + + org.eclipse.ee4j + project + 1.0.9 + + + 4.0.0 + jakarta.activation + jakarta.activation-api + 2.1.3 + jar + Jakarta Activation API + ${project.name} ${spec.version} Specification + https://github.com/jakartaee/jaf-api + + + 2.1 + Jakarta Activation Specification + false + + UTF-8 + 2024-02-14T00:00:00Z + Jakarta Activation API documentation + ${project.basedir}/.. + ${project.basedir}/../etc/copyright-exclude + false + true + false + false + Low + ${project.basedir}/../etc/spotbugs-exclude.xml + + 4.7.3.4 + + + + scm:git:ssh://git@github.com/jakartaee/jaf-api.git + scm:git:ssh://git@github.com/jakartaee/jaf-api.git + https://github.com/jakartaee/jaf-api + HEAD + + + + github + https://github.com/jakartaee/jaf-api/issues/ + + + + + EDL 1.0 + http://www.eclipse.org/org/documents/edl-v10.php + repo + + + + + + shannon + Bill Shannon + bill.shannon@oracle.com + Oracle + + lead + + + + + + + + oracle.com + file:/tmp + + + + + + + + src/main/resources + true + + META-INF/*.default + + + + src/main/resources + false + + META-INF/*.default + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.0.0 + + + org.apache.felix + maven-bundle-plugin + 5.1.8 + + + <_noextraheaders>true + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + org.codehaus.mojo + build-helper-maven-plugin + 3.3.0 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + ${spotbugs.skip} + ${spotbugs.threshold} + ${spotbugs.exclude} + true + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.5.0 + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-site-plugin + 3.12.1 + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-version + + enforce + + + + + [3.6.3,) + + + [11,) + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 9 + + -Xlint:all + + true + false + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + validate + + create + + + true + 7 + false + + + + + + org.apache.felix + maven-bundle-plugin + + + + false + + + true + + <_noextraheaders>true + ${project.artifactId} + ${spec.title} + ${spec.version} + ${project.organization.name} + ${project.groupId} + ${project.name} + ${project.organization.name} + ${buildNumber} + * + org.glassfish.hk2.osgiresourcelocator + + !org.glassfish.hk2.osgiresourcelocator, + * + + + =1.0.0)(!(version>=2.0.0)))";resolution:=optional, + osgi.serviceloader; + filter:="(osgi.serviceloader=jakarta.activation.spi.MailcapRegistryProvider)"; + osgi.serviceloader="jakarta.activation.spi.MailcapRegistryProvider"; + cardinality:=multiple;resolution:=optional, + osgi.serviceloader; + filter:="(osgi.serviceloader=jakarta.activation.spi.MimeTypeRegistryProvider)"; + osgi.serviceloader="jakarta.activation.spi.MimeTypeRegistryProvider"; + cardinality:=multiple;resolution:=optional, + osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8)) + ]]> + + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + false + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + currentyear-property + + timestamp-property + + validate + + current.year + en,US + yyyy + + + + add-resource + generate-resources + + add-resource + + + + + ${legal.doc.source} + META-INF + + LICENSE.md + NOTICE.md + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + + false + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + false + + + false + ${javadoc.title} + ${javadoc.title} + ${javadoc.title} + true + true + true + true +
Jakarta Activation API v${project.version}]]>
+ + jaf-dev@eclipse.org
.
+Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> + + + true + false + 11 + true + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + ${copyright.exclude} + + ${copyright.scmonly} + + ${copyright.update} + + ${copyright.ignoreyear} + false + + + + + + diff --git a/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom.sha1 b/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom.sha1 new file mode 100644 index 000000000..7f0a61617 --- /dev/null +++ b/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom.sha1 @@ -0,0 +1 @@ +d50eecb3b12aa729c1bd58ca3a4a61b22d98563d \ No newline at end of file diff --git a/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/_remote.repositories b/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/_remote.repositories new file mode 100644 index 000000000..98171e865 --- /dev/null +++ b/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:48 EDT 2024 +jakarta.annotation-api-2.1.1.pom>central= diff --git a/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom b/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom new file mode 100644 index 000000000..648779967 --- /dev/null +++ b/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom @@ -0,0 +1,366 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.7 + + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + + Jakarta Annotations API + Jakarta Annotations API + + https://projects.eclipse.org/projects/ee4j.ca + + 2004 + + + + Linda De Michiel + Oracle Corp. + + + Dmitry Kornilov + Oracle Corp. + + + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + + scm:git:https://github.com/eclipse-ee4j/common-annotations-api.git + scm:git:git@github.com:eclipse-ee4j/common-annotations-api.git + https://github.com/eclipse-ee4j/common-annotations-api + HEAD + + + + github + https://github.com/eclipse-ee4j/common-annotations-api/issues + + + + + Jakarta Annotations mailing list + ca-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/ca-dev + https://dev.eclipse.org/mailman/listinfo/ca-dev + https://dev.eclipse.org/mhonarc/lists/ca-dev + + + + + false + true + false + false + Low + 4.0.4 + + false + 2.1 + jakarta.annotation + Eclipse Foundation + org.glassfish + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + maven-compiler-plugin + 3.8.1 + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.3 + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + + org.apache.felix + maven-bundle-plugin + 5.1.1 + + + <_noextraheaders>true + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [11,) + + + [3.6.0,) + + + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + + ${copyright.scmonly} + + ${copyright.update} + + ${copyright.ignoreyear} + + + + validate + + check + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-resource + generate-resources + + add-resource + + + + + ${basedir}/.. + META-INF + + LICENSE.md + NOTICE.md + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 9 + + -Xlint:all + + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + org.glassfish.build + spec-version-maven-plugin + + jakarta + + ${non.final} + api + ${spec.build} + ${spec.version} + ${new.spec.version} + ${project.version} + ${extension.name} + + + + + + set-spec-properties + + + + + + + + org.apache.felix + maven-bundle-plugin + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + ${project.name} + ${vendor.name} + ${project.organization.name} + ${implementation.vendor.id} + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-source-plugin + + + + false + true + + + ${buildNumber} + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + false + + + 11 + --add-modules java.sql + true + true + true + Jakarta Annotations ${project.version} API Specification +
Jakarta Annotations API v${project.version}]]>
+ + Use is subject to license terms.]]> + +
+
+ + com.github.spotbugs + spotbugs-maven-plugin + + ${spotbugs.skip} + ${spotbugs.threshold} + true + true + + +
+
+
diff --git a/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom.sha1 b/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom.sha1 new file mode 100644 index 000000000..9592905f4 --- /dev/null +++ b/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom.sha1 @@ -0,0 +1 @@ +1c89931b0b9bf7c03d18ae18a13473528617838e \ No newline at end of file diff --git a/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/_remote.repositories b/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/_remote.repositories new file mode 100644 index 000000000..8ed5efdc9 --- /dev/null +++ b/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.authentication-api-3.0.0.pom>central= diff --git a/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom b/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom new file mode 100644 index 000000000..3cdfae689 --- /dev/null +++ b/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom @@ -0,0 +1,290 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.6 + + + + jakarta.authentication + jakarta.authentication-api + 3.0.0 + + Jakarta Authentication + + Jakarta Authentication defines a general low-level SPI for authentication mechanisms, which are controllers + that interact with a caller and a container's environment to obtain the caller's credentials, validate these, + and pass an authenticated identity (such as name and groups) to the container. + + Jakarta Authentication consists of several profiles, with each profile telling how a specific container + (such as Jakarta Servlet) can integrate with- and adapt to this SPI. + + https://github.com/eclipse-ee4j/authentication + + Jakarta Authentication + https://github.com/eclipse-ee4j/authentication + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + + + atijms + Arjan Tijms + arjan.tijms@gmail.com + + Project-Lead + comitter + developer + + +1 + + + yaminikb + Yamini K B + Oracle Corporation + http://www.oracle.com/ + + + + + Ronald Monzillo + Oracle Corporation + http://www.oracle.com/ + + + + + scm:git:ssh://git@github.com/eclipse-ee4j/authentication.git + scm:git:ssh://git@github.com/eclipse-ee4j/authentication.git + https://github.com/eclipse-ee4j/authentication + + + github + https://github.com/eclipse-ee4j/authentication/issues + + + + UTF-8 + UTF-8 + + 11 + 11 + + + + install + + + src/main/java + + **/*.properties + **/*.html + + + + src/main/resources + + META-INF/README + ${findbugs.exclude} + + + + ${project.basedir}/.. + + LICENSE.md + NOTICE.md + + META-INF + + + ${project.basedir} + + LICENSE.md + NOTICE.md + + META-INF + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.6.0 + + + + + + + + + + maven-compiler-plugin + 3.10.0 + + 11 + 11 + -Xlint:unchecked + + + + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + + 3.0 + ${project.version} + jakarta.security.auth.message + + + + + + set-spec-properties + check-module + + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.4 + + + jar + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + + Jakarta Authentication ${spec.specification.version} Specification + + Oracle Corporation + ${project.organization.name} + org.glassfish + <_include>-${basedir}/osgi.bundle + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + **/*.java + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + + attach-api-javadocs + + jar + + + 11 + -Xdoclint:none + Jakarta Authentication API documentation + Jakarta Authentication API documentation + Jakarta Authentication API documentation +
Jakarta Authentication API v${project.version}]]>
+ jaspic-dev@eclipse.org.
+Copyright © 2020, 2022 Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ true + + + Jakarta Authentication API Documentation + + jakarta.security.auth.message + jakarta.security.auth.message.callback + jakarta.security.auth.message.config + jakarta.security.auth.message.module + + + +
+
+
+
+
+
+
diff --git a/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom.sha1 b/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom.sha1 new file mode 100644 index 000000000..57cae7f0f --- /dev/null +++ b/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom.sha1 @@ -0,0 +1 @@ +64e3002c3a915df5993b75f6a69aff303761a8f7 \ No newline at end of file diff --git a/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/_remote.repositories b/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/_remote.repositories new file mode 100644 index 000000000..3cb0f2054 --- /dev/null +++ b/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:06 EDT 2024 +jakarta.authorization-api-2.1.0.pom>central= diff --git a/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom b/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom new file mode 100644 index 000000000..1f4f1622f --- /dev/null +++ b/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom @@ -0,0 +1,310 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.6 + + + + jakarta.authorization + jakarta.authorization-api + 2.1.0 + + Jakarta Authorization + + Jakarta Authorization defines a low-level SPI for authorization modules, which are repositories of permissions + facilitating subject based security by determining whether a given subject has a given permission, and algorithms + to transform security constraints for specific containers (such as Jakarta Servlet or Jakarta Enterprise Beans) into + these permissions. + + https://github.com/eclipse-ee4j/authorization + 2013 + + Oracle Corporation + http://www.oracle.com + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + + + yaminikb + Yamini K B + Oracle Corporation + http://www.oracle.com/ + + + + + Ronald Monzillo + Oracle Corporation + http://www.oracle.com/ + + + + + + Jakarta Authorization mailing list + jacc-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/jacc-dev + https://dev.eclipse.org/mailman/listinfo/jacc-dev + https://dev.eclipse.org/mhonarc/lists/jacc-dev + + + + + scm:git:ssh://git@github.com/eclipse-ee4j/authorization.git + scm:git:ssh://git@github.com/eclipse-ee4j/authorization.git + https://github.com/eclipse-ee4j/authorization + + + GitHub + https://github.com/eclipse-ee4j/authorization/issues + + + + UTF-8 + UTF-8 + + + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + + + + + install + + + src/main/java + + **/*.properties + + + + src/main/resources + + META-INF/README + ${findbugs.exclude} + + + + ${project.basedir}/.. + + LICENSE.md + NOTICE.md + + META-INF + + + ${project.basedir} + + LICENSE.md + NOTICE.md + + META-INF + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.6.0 + + + + + + + + + + maven-compiler-plugin + 3.10.0 + + 11 + 11 + -Xlint:unchecked + + + + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + + 2.1 + ${project.version} + jakarta.security.jacc + + + + + + set-spec-properties + check-module + + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.4 + true + + + bundle-manifest + process-classes + + manifest + + + + + + jar + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + + Jakarta Authorization ${spec.specification.version} Specification + + Oracle Corporation + ${project.organization.name} + org.glassfish + jakarta.security.jacc + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + **/*.java + **/*.html + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + true + + + + attach-sources + + jar-no-fork + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + + attach-api-javadocs + + jar + + + 11 + -Xdoclint:none + true + Jakarta Authorization API documentation + Jakarta Authorization API documentation + Jakarta Authorization API documentation +
Jakarta Authorization API v${project.version}]]>
+ jacc-dev@eclipse.org.
+Copyright © 2018, 2022 Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ true + + + Jakarta Authorization API Documentation + + jakarta.security.jacc + + + +
+
+
+
+
+
+
diff --git a/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom.sha1 b/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom.sha1 new file mode 100644 index 000000000..8f60a006d --- /dev/null +++ b/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom.sha1 @@ -0,0 +1 @@ +93963b10109b62c223aa3539a6c6ccae4e5165b3 \ No newline at end of file diff --git a/code/arachne/jakarta/batch/batch-api-parent/2.1.1/_remote.repositories b/code/arachne/jakarta/batch/batch-api-parent/2.1.1/_remote.repositories new file mode 100644 index 000000000..6ceeda2fb --- /dev/null +++ b/code/arachne/jakarta/batch/batch-api-parent/2.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:06 EDT 2024 +batch-api-parent-2.1.1.pom>central= diff --git a/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom b/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom new file mode 100644 index 000000000..5a94812ea --- /dev/null +++ b/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom @@ -0,0 +1,236 @@ + + + + + org.eclipse.ee4j + project + 1.0.7 + + + + 4.0.0 + jakarta.batch + batch-api-parent + 2.1.1 + pom + batch-parent + + Batch processing is a pervasive workload pattern, expressed by a distinct application organization and + execution model. It is found across virtually every industry, applied to such tasks as statement + generation, bank postings, risk evaluation, credit score calculation, inventory management, portfolio + optimization, and on and on. Nearly any bulk processing task from any business sector is a candidate for + batch processing. + Batch processing is typified by bulk-oriented, non-interactive, background execution. Frequently long- + running, it may be data or computationally intensive, execute sequentially or in parallel, and may be + initiated through various invocation models, including ad hoc, scheduled, and on-demand. + Batch applications have common requirements, including logging, checkpointing, and parallelization. + Batch workloads have common requirements, especially operational control, which allow for initiation + of, and interaction with, batch instances; such interactions include stop and restart. + + https://github.com/eclipse-ee4j/batch-api + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:https://github.com/eclipse-ee4j/batch-api.git + scm:git:https://github.com/eclipse-ee4j/batch-api.git + https://github.com/eclipse-ee4j/batch-api + 2.1.1 + + + + + scottkurz + Scott Kurz + skurz@us.ibm.com + + + dmbelina + Dan Belina + belina@us.ibm.com + + + ajmauer + Andrew Mauer + ajmauer@us.ibm.com + + + + + + + perform-release + + + performRelease + true + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.4 + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + + + + + UTF-8 + 11 + + + 4.0.0 + 2.0.1 + + 1.6.6 + 1.8 + 3.3.0 + 3.8.1 + 2.18 + 2.4 + 2.7 + 2.18 + + + + + api + spec + + + + + + jakarta.enterprise + jakarta.enterprise.cdi-api + ${version.jakarta.enterprise.jakarta.enterprise.cdi-api} + + + jakarta.inject + jakarta.inject-api + ${version.jakarta.inject.jakarta.inject-api} + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.org.apache.maven.plugins.maven-compiler-plugin} + + ${version.java} + ${version.java} + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-antrun-plugin + ${version.org.apache.maven.plugins.maven-antrun-plugin} + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-versions + + enforce + + + + + [11.0,12.0) + ! JDK 11 is required ! + + + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${version.org.apache.maven.plugins.maven-failsafe-plugin} + + + org.apache.maven.plugins + maven-jar-plugin + ${version.org.apache.maven.plugins.maven-jar-plugin} + + + org.apache.maven.plugins + maven-javadoc-plugin + + + org.apache.maven.plugins + maven-resources-plugin + ${version.org.apache.maven.plugins.maven-resources-plugin} + + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-source-plugin + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.org.apache.maven.plugins.maven-surefire-plugin} + + + + + + + diff --git a/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom.sha1 b/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom.sha1 new file mode 100644 index 000000000..27836b816 --- /dev/null +++ b/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom.sha1 @@ -0,0 +1 @@ +a64e090ed5499b4ca8d51a7027976f7e38145644 \ No newline at end of file diff --git a/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/_remote.repositories b/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/_remote.repositories new file mode 100644 index 000000000..96dce58ec --- /dev/null +++ b/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:06 EDT 2024 +jakarta.batch-api-2.1.1.pom>central= diff --git a/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom b/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom new file mode 100644 index 000000000..a9dc78f9a --- /dev/null +++ b/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom @@ -0,0 +1,142 @@ + + + 4.0.0 + + jakarta.batch + batch-api-parent + 2.1.1 + + + jakarta.batch + jakarta.batch-api + jar + Jakarta Batch API + + + + jakarta.inject + jakarta.inject-api + provided + + + jakarta.enterprise + jakarta.enterprise.cdi-api + provided + + + + + + + ${project.basedir}/../ + + LICENSE + NOTICE + + META-INF + + + ${project.basedir}/src/main/resources/jakarta/xml/batch + + *.xsd + + xsd + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-enforcer-plugin + + + org.apache.maven.plugins + maven-resources-plugin + + + sources-as-resources + package + + copy-resources + + + + + src/main/java + + + ${project.build.directory}/sources + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + src/main/resources/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + Copyright © 2018, 2022 Eclipse Foundation.
Use is subject to + license terms.]]> +
+ true + Jakarta Batch ${project.version} API + Jakarta Batch ${project.version} API + 11 +
+ + + attach-javadocs + + jar + + + +
+
+
+ +
+ + diff --git a/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom.sha1 b/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom.sha1 new file mode 100644 index 000000000..203081c43 --- /dev/null +++ b/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom.sha1 @@ -0,0 +1 @@ +17b4438fff4bd6f4f874973f9f835251ee069139 \ No newline at end of file diff --git a/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/_remote.repositories b/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/_remote.repositories new file mode 100644 index 000000000..f3e298b6d --- /dev/null +++ b/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.ejb-api-4.0.1.pom>central= diff --git a/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom b/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom new file mode 100644 index 000000000..8dfb6596c --- /dev/null +++ b/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom @@ -0,0 +1,436 @@ + + + + + 4.0.0 + + org.eclipse.ee4j + project + 1.0.7 + + + + jakarta.ejb + jakarta.ejb-api + 4.0.1 + + + jakarta.ejb + 4.0 + ../ + UTF-8 + UTF-8 + 1.8 + 1.8 + 3.8.1 + 2.1 + 5.1.2 + 3.2.0 + 3.2.1 + 3.2.0 + 4.0.0 + 4.0.3 + 3.9.0 + 3.0.0-M3 + 3.1.0 + 3.0.0 + 2.0.0 + + + Jakarta Enterprise Beans API + Jakarta Enterprise Beans API + + https://github.com/jakartaee/enterprise-beans + + Eclipse Foundation + https://projects.eclipse.org/projects/ee4j.ejb + + + + yaminikb + Yamini K B + Oracle Corporation + http://www.oracle.com/ + + + + + Marina Vatkina + Oracle Corporation + http://www.oracle.com/ + + + + + + EPL 2.0 + https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + github + https://github.com/jakartaee/enterprise-beans/issues + + + scm:git:ssh://git@github.com/jakartaee/enterprise-beans.git + scm:git:ssh://git@github.com/jakartaee/enterprise-beans.git + https://github.com/jakartaee/enterprise-beans + HEAD + + + + Enterprise Beans developer discussions + mailto:ejb-dev@eclipse.org + mailto:ejb-dev-request@eclipse.org?subject=subscribe + mailto:ejb-dev-request@eclipse.org?subject=unsubscribe + http://www.eclipse.org/lists/ejb-dev + + http://www.eclipse.org/lists/ejb-dev/maillist.rss + + + + + + + src/main/java + + **/*.properties + **/*.html + + + + + + + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + org.glassfish.build + spec-version-maven-plugin + ${spec-version-maven-plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${maven-bundle-plugin.version} + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + ${maven.compiler.source} + + Copyright © 2018, ${current.year} Eclipse Foundation.
Use is subject to license terms.]]> +
+ true + Jakarta Enterprise Beans ${project.version} API + Jakarta Enterprise Beans ${project.version} API +
+
+ + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs-maven-plugin.version} + + + + com.github.spotbugs + spotbugs + ${spotbugs.version} + + + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${maven-enforcer-plugin.version} + +
+
+ + + + maven-compiler-plugin + + + default-compile + + + module-info.java + + + + + compile-module-info + compile + + compile + + + 9 + + module-info.java + + + + + + + org.glassfish.build + spec-version-maven-plugin + + + api + ${spec.version} + ${project.version} + ${extension.name} + + + + + + set-spec-properties + check-module + + + + + + org.apache.felix + maven-bundle-plugin + + + jar + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + + Jakarta Enterprise Beans ${spec.version} API Design Specification + + ${project.organization.name} + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + **/*.java + + + + + org.apache.maven.plugins + maven-source-plugin + + true + + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + javadoc + + javadoc + + + + + Jakarta Enterprise Beans API Documentation + jakarta.ejb + + + + + + + + org.apache.maven.plugins + maven-release-plugin + + @{project.version} + install + deploy + + + + org.sonatype.plugins + nexus-staging-maven-plugin + true + + + default-deploy + deploy + + deploy + + + + + + org.codehaus.mojo + build-helper-maven-plugin + ${build-helper-maven-plugin.version} + + + add-legal-resource + generate-resources + + add-resource + + + + + ${legal.doc.source} + + NOTICE.md + LICENSE.md + + META-INF + + + + + + timestamp-property + + timestamp-property + + validate + + current.year + yyyy + en + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-versions + + enforce + + + + + 3.5.4 + + + [9,) + You need JDK 9 or higher + + + + + + + +
+ + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${maven-project-info-reports-plugin.version} + + + com.github.spotbugs + spotbugs-maven-plugin + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + aggregate-no-fork + + + + + + + + + jakarta.transaction + jakarta.transaction-api + ${jakarta.transaction-api.version} + + +
diff --git a/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom.sha1 b/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom.sha1 new file mode 100644 index 000000000..c270990fb --- /dev/null +++ b/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom.sha1 @@ -0,0 +1 @@ +9d6b7a13294de9c9567cfe73f305be4fb3069b47 \ No newline at end of file diff --git a/code/arachne/jakarta/el/jakarta.el-api/5.0.1/_remote.repositories b/code/arachne/jakarta/el/jakarta.el-api/5.0.1/_remote.repositories new file mode 100644 index 000000000..99b140d72 --- /dev/null +++ b/code/arachne/jakarta/el/jakarta.el-api/5.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:04 EDT 2024 +jakarta.el-api-5.0.1.pom>central= diff --git a/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom b/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom new file mode 100644 index 000000000..9ea8eb420 --- /dev/null +++ b/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom @@ -0,0 +1,283 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.6 + + + + jakarta.el + jakarta.el-api + 5.0.1 + jar + + Jakarta Expression Language API + + Jakarta Expression Language defines an expression language for Java applications + + https://projects.eclipse.org/projects/ee4j.el + + + + jakarta-ee4j-el + Jakarta Expression Language Developers + Eclipse Foundation + el-dev@eclipse.org + + + + + Jakarta Expression Language Contributors + el-dev@eclipse.org + https://github.com/eclipse-ee4j/el-ri/graphs/contributors + + + + + + Expression Language dev mailing list + el-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/el-dev + https://dev.eclipse.org/mailman/listinfo/el-dev + https://dev.eclipse.org/mhonarc/lists/el-dev + + + + + scm:git:https://github.com/eclipse-ee4j/el-ri.git + scm:git:ssh://git@github.com/eclipse-ee4j/el-ri.git + https://github.com/eclipse-ee4j/el-ri + HEAD + + + github + https://github.com/eclipse-ee4j/el-ri/issues + + + + + org.junit.jupiter + junit-jupiter-engine + 5.8.1 + test + + + + + + 5.0 + ${project.version} + jakarta.el + jakarta.el-api + Eclipse Foundation + + + + + + src/main/java + + **/*.properties + + + + ${project.basedir}/.. + + LICENSE.md + NOTICE.md + + META-INF + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.6.0 + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 11 + -Xlint:unchecked + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M5 + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.3 + + etc/config/copyright-exclude + + git + + false + + true + + true + + false + + false + etc/config/copyright-eclipse.txt + etc/config/copyright-oracle.txt + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.2 + + + jar + + + Jakarta Expression Language ${spec.version} + ${bundle.symbolicName} + ${bundle.version} + ${extensionName} + ${spec.version} + ${vendorName} + ${project.version} + ${vendorName} + jakarta.el + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + maven-jar-plugin + 3.2.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + **/*.java + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + true + + + + attach-sources + + jar-no-fork + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + + attach-javadocs + + jar + + + 11 + -Xdoclint:none + true + Jakarta Expression Language API documentation + Jakarta Expression Language API documentation + Jakarta Expression Language API documentation +
Jakarta Expression Language API v${project.version}]]>
+ el-dev@eclipse.org.
+Copyright © 2018, 2022 Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ true + + + Jakarta Expression Language API Documentation + + jakarta.el.* + + + +
+
+
+
+ +
+
+
diff --git a/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom.sha1 b/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom.sha1 new file mode 100644 index 000000000..ed596a266 --- /dev/null +++ b/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom.sha1 @@ -0,0 +1 @@ +f8eb17de87dd57f4e30ea8cb4e8ecd3dd191f8d7 \ No newline at end of file diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/_remote.repositories b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/_remote.repositories new file mode 100644 index 000000000..aed80ae9b --- /dev/null +++ b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.enterprise.cdi-api-4.0.1.pom>central= diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom new file mode 100644 index 000000000..c7b2ddf8a --- /dev/null +++ b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom @@ -0,0 +1,412 @@ + + + + 4.0.0 + + + jakarta.enterprise + jakarta.enterprise.cdi-parent + 4.0.1 + + + jakarta.enterprise.cdi-api + jar + + CDI APIs + APIs for CDI (Contexts and Dependency Injection for Java) + + http://cdi-spec.org + + + Apache License 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + Jakarta CDI Issues + https://github.com/eclipse-ee4j/cdi/issues + + + + JBoss by Red Hat, Inc. + https://jboss.org + + + 2008 + + + + Antoine Sabot-Durand + asabotdu + CET + Red Hat Inc. + + Specfication Lead + + asd[at]redhat[dot]com + + + + Martin Kouba + mkouba + Red Hat Inc. + + RI tech lead + + mkouba[at]redhat[dot]com + + + + Tomas Remes + tremes + Red Hat Inc. + + TCK tech lead + + tremes[at]redhat[dot]com + + + + Mark Struberg + mstruberg + CET + + Implementation developer + + struberg[at]yahoo[dot]de + + + + John D. Ament + johndament + Independent + EST + + EG Member + + johndament[at]apache[dot]org + + + + Matej Novotny + manovotn + Red Hat Inc. + + TCK and RI developer + + manovotn[at]redhat[dot]com + + + + Mark Paluch + mp911de + Independent + CET + + EG Member + + mpaluch[at]paluch[dot]biz + + + + + + + 2.1.0 + 2.0.1 + 5.0.0 + 2.1.0 + + 11 + 5.1.2 + 3.3.0 + 3.0.0-M5 + UTF-8 + + + + + + + + org.testng + testng + 6.8.8 + + + + jakarta.enterprise + jakarta.enterprise.lang-model + ${project.version} + + + + jakarta.annotation + jakarta.annotation-api + ${annotation.api.version} + + + + jakarta.inject + jakarta.inject-api + ${atinject.api.version} + + + + jakarta.el + jakarta.el-api + ${uel.api.version} + + + + jakarta.interceptor + jakarta.interceptor-api + ${interceptor.api.version} + + + + + + + jakarta.enterprise + jakarta.enterprise.lang-model + + + + jakarta.annotation + jakarta.annotation-api + + + + jakarta.el + jakarta.el-api + + + + jakarta.interceptor + jakarta.interceptor-api + + + jakarta.annotation + jakarta.annotation-api + + + + + + jakarta.inject + jakarta.inject-api + + + + org.testng + testng + test + + + + + + scm:git:git@github.com:cdi-spec/cdi.git + scm:git:git@github.com:cdi-spec/cdi.git + scm:git:git@github.com:cdi-spec/cdi.git + 4.0.1 + + + + + jboss-public-repository + + + jboss-public-repository + !false + + + + + jboss-public-repository-group + JBoss Public Maven Repository Group + https://repository.jboss.org/nexus/content/groups/public + + true + never + + + false + never + + + + + + jboss-public-repository-group + JBoss Public Maven Repository Group + https://repository.jboss.org/nexus/content/groups/public + + true + never + + + false + never + + + + + + + + + + ${project.basedir}/.. + + LICENSE.txt + NOTICE.md + + META-INF + + + src/main/resources + + + + + true + src/test/resources + + + + + maven-compiler-plugin + 3.8.1 + + + -Xlint:all + + + + + org.apache.felix + maven-bundle-plugin + ${maven-bundle-plugin.version} + + + bundle-manifest + process-classes + + manifest + + + + + + jakarta.cdi + + jakarta.decorator;version=4.0, + jakarta.enterprise.*;version=4.0, + + + jakarta.el; version=4.0, + * + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + default-test + + + ${project.build.testOutputDirectory}/META-INF/services/ + + + **/privileged/** + + false + + + + privileged-test + test + + test + + + + ${project.build.testOutputDirectory}/META-INF/services/ + + + **/privileged/** + + -Djava.security.manager -Djava.security.policy="${project.build.testOutputDirectory}/java.policy" + 1 + false + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin} + + true + Jakarta Context Dependency Injection API + Jakarta Context Dependency Injection API + false + Jakarta Context Dependency Injection API +
Jakarta Context Dependency Injection ${project.version}]]> +
+ cdi-dev@eclipse.org.
+Copyright © 2018,2022 Eclipse Foundation.
+Use is subject to license terms.]]> +
+
+ + + + attach-javadocs + + jar + + + +
+
+
+ + +
diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom.sha1 b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom.sha1 new file mode 100644 index 000000000..cb82e62e8 --- /dev/null +++ b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom.sha1 @@ -0,0 +1 @@ +31302535a46d274e3fa77669be7ea563946bb9b3 \ No newline at end of file diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/_remote.repositories b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/_remote.repositories new file mode 100644 index 000000000..1f7c92773 --- /dev/null +++ b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.enterprise.cdi-parent-4.0.1.pom>central= diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom new file mode 100644 index 000000000..140900184 --- /dev/null +++ b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom @@ -0,0 +1,82 @@ + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.6 + + + jakarta.enterprise + jakarta.enterprise.cdi-parent + pom + 4.0.1 + + Parent module for CDI Specification + + + + Apache License 2.0 + https://repository.jboss.org/licenses/apache-2.0.txt + repo + + + + + scm:git:git://github.com/eclipse-ee4j/cdi.git + scm:git:git@github.com:eclipse-ee4j/cdi.git + https://github.com/eclipse-ee4j/cdi + 4.0.1 + + + + spec + lang-model + api + + + clean package + + + + https://jakarta.oss.sonatype.org/ + ${sonatypeOssDistMgmtNexusUrl}content/repositories/staging/ + + + + + + staging + + false + + + + sonatype-nexus-staging + Sonatype Nexus Staging + ${sonatypeOssDistMgmtStagingUrl} + + true + + + false + + + + + + sonatype-nexus-staging + Sonatype Nexus Staging + ${sonatypeOssDistMgmtStagingUrl} + + true + + + false + + + + + + + diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom.sha1 b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom.sha1 new file mode 100644 index 000000000..0ee525663 --- /dev/null +++ b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom.sha1 @@ -0,0 +1 @@ +2648d27b5ba25d34242827af628ab0142f908105 \ No newline at end of file diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/_remote.repositories b/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/_remote.repositories new file mode 100644 index 000000000..0296a21ae --- /dev/null +++ b/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.enterprise.lang-model-4.0.1.pom>central= diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom b/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom new file mode 100644 index 000000000..2afa660bf --- /dev/null +++ b/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom @@ -0,0 +1,120 @@ + + 4.0.0 + + + jakarta.enterprise + jakarta.enterprise.cdi-parent + 4.0.1 + + + jakarta.enterprise.lang-model + jar + + CDI Language Model + Build Compatible (Reflection-Free) Java Language Model for CDI + + + + Apache License 2.0 + https://repository.jboss.org/licenses/apache-2.0.txt + repo + + + + + 11 + 5.1.2 + 3.2.0 + 2.22.0 + UTF-8 + + + + + + ${project.basedir}/.. + + LICENSE.txt + NOTICE.md + + META-INF + + + src/main/resources + + + + + + maven-compiler-plugin + 3.8.1 + + + -Xlint:all + + + + + org.apache.felix + maven-bundle-plugin + ${maven-bundle-plugin.version} + + + bundle-manifest + process-classes + + manifest + + + + + + + jakarta.enterprise.lang.model.*;version=4.0, + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin} + + true + Jakarta CDI Language Model + Jakarta CDI Language Model + Jakarta CDI Language Model +
Jakarta CDI Language Model ${project.version}]]> +
+ cdi-dev@eclipse.org.
+Copyright © 2018,2020 Eclipse Foundation.
+Use is subject to license terms.]]> +
+
+ + + + attach-javadocs + + jar + + + +
+
+
+ + +
diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom.sha1 b/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom.sha1 new file mode 100644 index 000000000..01462a74f --- /dev/null +++ b/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom.sha1 @@ -0,0 +1 @@ +0731188ce992ce2c6857cac43bc2f44807c5d11f \ No newline at end of file diff --git a/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/_remote.repositories b/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/_remote.repositories new file mode 100644 index 000000000..65af87fe6 --- /dev/null +++ b/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:04 EDT 2024 +jakarta.faces-api-4.0.1.pom>central= diff --git a/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom b/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom new file mode 100644 index 000000000..d849c39bb --- /dev/null +++ b/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom @@ -0,0 +1,165 @@ + + + + 4.0.0 + jakarta.faces + jakarta.faces-api + 4.0.1 + Jakarta Faces + Jakarta Faces defines an MVC framework for building user interfaces for web applications, + including UI components, state management, event handing, input validation, page navigation, and + support for internationalization and accessibility. + https://github.com/eclipse-ee4j/faces-api + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + + atijms + Arjan Tijms + arjan.tijms@gmail.com + + Project-Lead + comitter + developer + + +1 + + + balusc + Bauke Scholtz + balusc@gmail.com + + comitter + developer + + +4 + + + + scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakarta.faces-api + scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakarta.faces-api + https://github.com/eclipse-ee4j/ee4j/jakarta.faces-api + + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + provided + + + jakarta.websocket + jakarta.websocket-api + 2.1.0 + provided + + + jakarta.websocket + jakarta.websocket-client-api + 2.1.0 + provided + + + jakarta.el + jakarta.el-api + 5.0.0 + provided + + + jakarta.enterprise + jakarta.enterprise.cdi-api + 4.0.1 + provided + + + jakarta.validation + jakarta.validation-api + 3.0.2 + provided + + + jakarta.transaction + jakarta.transaction-api + 2.0.1 + provided + true + + + jakarta.json + jakarta.json-api + 2.1.0 + provided + true + + + jakarta.ejb + jakarta.ejb-api + 4.0.1 + provided + true + + + jakarta.persistence + jakarta.persistence-api + 3.1.0 + provided + true + + + jakarta.xml.ws + jakarta.xml.ws-api + 4.0.0 + provided + true + + + jakarta.annotation + jakarta.annotation-api + 2.1.0 + provided + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + provided + true + + + org.glassfish + jakarta.faces + 4.0.0 + sources + provided + true + + + diff --git a/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom.sha1 b/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom.sha1 new file mode 100644 index 000000000..ec410a569 --- /dev/null +++ b/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom.sha1 @@ -0,0 +1 @@ +c4d9af324fe30bedfd6f3f8a484ea1c5358b5293 \ No newline at end of file diff --git a/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/_remote.repositories b/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/_remote.repositories new file mode 100644 index 000000000..93e5c4cdb --- /dev/null +++ b/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:57 EDT 2024 +jakarta.inject-api-2.0.1.pom>central= diff --git a/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom b/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom new file mode 100644 index 000000000..278f43c8b --- /dev/null +++ b/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom @@ -0,0 +1,188 @@ + + + org.eclipse.ee4j + project + 1.0.6 + + + + 4.0.0 + jakarta.inject + jakarta.inject-api + jar + Jakarta Dependency Injection + 2.0.1 + Jakarta Dependency Injection + https://github.com/eclipse-ee4j/injection-api + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:ssh://git@github.com/eclipse-ee4j/injection-api.git + scm:git:ssh://git@github.com/eclipse-ee4j/injection-api.git + https://github.com/eclipse-ee4j/injection-api + 2.0.1 + + + + + Antoine Sabot-Durand + asabotdu + CET + Red Hat Inc. + + Specfication Lead + + asd[at]redhat[dot]com + + + + Martin Kouba + mkouba + Red Hat Inc. + + RI tech lead + + mkouba[at]redhat[dot]com + + + + Tomas Remes + tremes + Red Hat Inc. + + TCK tech lead + + tremes[at]redhat[dot]com + + + + Matej Novotny + manovotn + Red Hat Inc. + + TCK and RI developer + + manovotn[at]redhat[dot]com + + + + + jakarta.inject.* + 2.0 + + + + + + ${project.basedir} + + LICENSE.txt + NOTICE.md + + META-INF + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.0 + + true + Jakarta Dependency Injection API + Jakarta Dependency Injection API + Jakarta Dependency Injection API +
Jakarta Dependency Injection ${project.version}]]> +
+ cdi-dev@eclipse.org.
+Copyright © 2018,2020 Eclipse Foundation.
+Use is subject to license terms.]]> +
+
+ + + + attach-javadocs + + jar + + + +
+ + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + target/classes/META-INF/MANIFEST.MF + + + + + org.apache.felix + maven-bundle-plugin + 4.2.1 + + + ${spec_version} + + + + + osgi-manifest + process-classes + + manifest + + + + + + + maven-compiler-plugin + 3.8.1 + + + 9 + + -Xlint:all + + true + true + + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + +
+
+ +
diff --git a/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom.sha1 b/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom.sha1 new file mode 100644 index 000000000..34c906c59 --- /dev/null +++ b/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom.sha1 @@ -0,0 +1 @@ +d53e5e2c5362dc3f6748efac10909af8562b3505 \ No newline at end of file diff --git a/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/_remote.repositories b/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/_remote.repositories new file mode 100644 index 000000000..e466fb813 --- /dev/null +++ b/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.interceptor-api-2.1.0.pom>central= diff --git a/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom b/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom new file mode 100644 index 000000000..efb6acbec --- /dev/null +++ b/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom @@ -0,0 +1,300 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.6 + + + + jakarta.interceptor + jakarta.interceptor-api + 2.1.0 + + Jakarta Interceptors + + Jakarta Interceptors defines a means of interposing on business method invocations + and specific events—such as lifecycle events and timeout events—that occur on instances + of Jakarta EE components and other managed classes. + + https://github.com/eclipse-ee4j/interceptor-api + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + + + yaminikb + Yamini K B + Oracle Corporation + http://www.oracle.com/ + + + + + Marina Vatkina + Oracle Corporation + http://www.oracle.com/ + + + + + scm:git:ssh://git@github.com/eclipse-ee4j/interceptor-api.git + scm:git:ssh://git@github.com/eclipse-ee4j/interceptor-api.git + https://github.com/eclipse-ee4j/interceptor-api + HEAD + + + Github + https://github.com/eclipse-ee4j/interceptor-api/issues + + + + UTF-8 + UTF-8 + + + + + jakarta.annotation + jakarta.annotation-api + 2.1.0 + + + + + + + src/main/java + + **/*.properties + **/*.html + + + + ${project.basedir}/.. + + LICENSE.md + NOTICE.md + + META-INF + + + src/main/resources + + META-INF/README + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + enforce-maven + + enforce + + + + + 3.5.4 + + + + + + + + + + maven-compiler-plugin + 3.8.1 + + 9 + + -Xlint:all + + true + true + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + + 2.1 + ${project.version} + jakarta.interceptor + + + + + + set-spec-properties + check-module + + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.2 + + + jar + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + + Jakarta Interceptors ${spec.specification.version} Specification + + Oracle Corporation + ${project.organization.name} + org.glassfish + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + **/*.java + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + true + + + + attach-sources + + jar-no-fork + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + 1.8 + -Xdoclint:none + Jakarta Interceptors API documentation + false + Jakarta Interceptors API documentation + Jakarta Interceptors API documentation +
Jakarta Interceptors API v${project.version}]]>
+ interceptors-dev@eclipse.org.
+Copyright © 2019, 2020 Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ true + + + Jakarta Interceptors API Documentation + + jakarta.interceptor + + + +
+ + + attach-api-javadocs + + jar + + + +
+
+
+
diff --git a/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom.sha1 b/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom.sha1 new file mode 100644 index 000000000..e27d9e5a3 --- /dev/null +++ b/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom.sha1 @@ -0,0 +1 @@ +f7ccfe403d34464fcfa0363c73e4a710a92a96b3 \ No newline at end of file diff --git a/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/_remote.repositories b/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/_remote.repositories new file mode 100644 index 000000000..6c63bbbaa --- /dev/null +++ b/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:06 EDT 2024 +jakarta.jms-api-3.1.0.pom>central= diff --git a/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom b/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom new file mode 100644 index 000000000..67a838fd1 --- /dev/null +++ b/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom @@ -0,0 +1,228 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.7 + + + jakarta.jms + jakarta.jms-api + 3.1.0 + Jakarta Messaging API + + Jakarta Messaging describes a means for Java applications to create, send, + and receive messages via loosely coupled, reliable asynchronous communication services. + + https://projects.eclipse.org/projects/ee4j.jms + + + Eclipse Public License 2.0 + https://projects.eclipse.org/license/epl-2.0 + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://projects.eclipse.org/license/secondary-gpl-2.0-cp + repo + + + + + UTF-8 + UTF-8 + 11 + + 3.1 + + + + + + jakarta.annotation + jakarta.annotation-api + 2.1.0-B1 + provided + + + + + + ${project.basedir}/.. + + LICENSE.md + NOTICE.md + + META-INF + + + ${project.basedir} + + LICENSE.md + NOTICE.md + + META-INF + + + + + + + maven-compiler-plugin + 3.8.1 + + + + -Xlint:all + + true + true + + + + + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + + ${spec.version} + ${project.version} + jakarta.jms + + + + + + set-spec-properties + check-module + + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.4 + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + + Jakarta Messaging ${spec.specification.version} Specification + + org.eclipse.ee4j.jms + Eclipse Foundation + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + true + + + + attach-sources + + jar-no-fork + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + -Xdoclint:none + Jakarta Messaging API documentation + Jakarta Messaging API documentation + Jakarta Messaging API documentation +
Jakarta Messaging API v${project.version}]]>
+ messaging-dev@eclipse.org.
+ Copyright © 2018, 2022 Eclipse Foundation. All rights reserved.
+ Use is subject to license terms.]]> +
+ true + + + Jakarta Messaging API Documentation + + jakarta.jms + + + +
+ + + attach-api-javadocs + + jar + + + +
+
+
+
diff --git a/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom.sha1 b/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom.sha1 new file mode 100644 index 000000000..d209430ca --- /dev/null +++ b/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom.sha1 @@ -0,0 +1 @@ +6f7803760edf860fda185edce6f9b38558704471 \ No newline at end of file diff --git a/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/_remote.repositories b/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/_remote.repositories new file mode 100644 index 000000000..06db8c50e --- /dev/null +++ b/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.json.bind-api-3.0.1.pom>central= diff --git a/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom b/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom new file mode 100644 index 000000000..16d689bf7 --- /dev/null +++ b/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom @@ -0,0 +1,491 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.9 + + + jakarta.json.bind + jakarta.json.bind-api + 3.0.1 + jar + + JSON-B API + Jakarta JSON Binding is a standard binding layer for converting Java objects to/from JSON documents. + 2016 + https://jakartaee.github.io/jsonb-api + + + github + https://github.com/jakartaee/jsonb-api/issues + + + + + Mailing list + jsonb-dev@eclipse.org + + + + + + Eclipse Public License 2.0 + https://projects.eclipse.org/license/epl-2.0 + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://projects.eclipse.org/license/secondary-gpl-2.0-cp + repo + + + + + scm:git:git://github.com/jakartaee/jsonb-api.git + scm:git:git@github.com:jakartaee/jsonb-api.git + https://github.com/jakartaee/jsonb-api + HEAD + + + + + m0mus + Dmitry Kornilov + dmitry.kornilov@oracle.com + https://dmitrykornilov.net + Oracle + + Project Lead + + CET + + + + + jsonb-dev@eclipse.org + UTF-8 + 01 + 3.0.0 + false + false + 3.0 + 2.1.3 + + 2.0.0 + jakarta.json.bind + ${project.basedir}/.. + Oracle Corporation + + ${project.basedir}/../etc/config/copyright-exclude + ${project.basedir}/../etc/config/epl-copyright.txt + ${project.basedir}/../etc/config/edl-copyright.txt + true + true + false + + ${project.basedir}/../etc/config/spotbugs-exclude.xml + false + Low + 4.8.3.1 + + 11 + ${maven.compiler.release} + + + + + + jakarta.json + jakarta.json-api + ${jakarta.json.version} + + + junit + junit + 4.13.2 + test + + + + + + + jakarta.json + jakarta.json-api + provided + + + junit + junit + + + + + + final + + false + + + + false + + + + + skip-tests + + false + + + true + + + + release + + false + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + org.apache.maven.plugins + maven-deploy-plugin + + + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.5.0 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + ${spotbugs.skip} + ${spotbugs.threshold} + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.12.1 + + + -Xlint:all + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.2.0 + + {0,date,MM/dd/yyyy hh:mm aa} + + timestamp + + + + + validate + + create + + + + + + + org.glassfish.build + spec-version-maven-plugin + 2.2 + + + ${non.final} + api + ${spec.version} + ${new.spec.version} + ${milestone.number} + ${project.version} + ${api_package} + + + + + + set-spec-properties + + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + true + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + ${buildNumber} + Java API for JSON Binding (JSON-Binding) + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + * + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + ${vendor.name} + <_nodefaultversion>false + jakarta.json.bind.*; version=${spec.version} + <_noee>true + + + + + osgi-bundle + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + Jakarta JSON Binding ${project.version} API Specification + + **/module-info.java + target/**/*.java + + true + + http://docs.oracle.com/en/java/javase/11/docs/api/ + + false + false +
Jakarta JSON Binding API v${project.version}]]> +
+ ${release.spec.feedback}.
+ Copyright © 2019, 2024 Eclipse Foundation. All Rights Reserved.
+ Use is subject to license terms.]]> +
+
+ + + attach-javadocs + + jar + + + +
+ + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-jxr-plugin + 3.3.2 + + + + jxr + + validate + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + ${copyright.exclude} + ${copyright.scmonly} + ${copyright.update} + ${copyright.ignoreyear} + false + ${copyright.templatefile} + ${copyright.bsdTemplateFile} + + + + verify + + check + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.3.1 + + + com.puppycrawl.tools + checkstyle + 8.29 + + + + ${project.build.directory}/checkstyle/checkstyle-result.xml + ${basedir}/../etc/config/checkstyle.xml + true + true + **/module-info.java + + + + + check + + compile + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.1.0 + +
+
+ + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-legal-resource + generate-resources + + add-resource + + + + + ${legal.doc.source} + + NOTICE.md + LICENSE.md + + META-INF + + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + org.apache.felix + maven-bundle-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + + + biz.aQute.bnd + bnd-baseline-maven-plugin + 6.0.0 + + + ${baseline.compare.version} + + + + + baseline + + baseline + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + true + ${spotbugs.exclude} + High + + + +
+
diff --git a/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom.sha1 b/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom.sha1 new file mode 100644 index 000000000..eb2b3902c --- /dev/null +++ b/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom.sha1 @@ -0,0 +1 @@ +1247b839f673454db85ca90c2026e154e577fd2f \ No newline at end of file diff --git a/code/arachne/jakarta/json/jakarta.json-api/2.1.3/_remote.repositories b/code/arachne/jakarta/json/jakarta.json-api/2.1.3/_remote.repositories new file mode 100644 index 000000000..651b2223e --- /dev/null +++ b/code/arachne/jakarta/json/jakarta.json-api/2.1.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.json-api-2.1.3.pom>central= diff --git a/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom b/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom new file mode 100644 index 000000000..0f4906a69 --- /dev/null +++ b/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom @@ -0,0 +1,417 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.8 + + + + jakarta.json + jakarta.json-api + + 2.1.3 + Jakarta JSON Processing API + Jakarta JSON Processing defines a Java(R) based framework for parsing, generating, transforming, and querying JSON documents. + https://github.com/eclipse-ee4j/jsonp + + + scm:git:git://github.com/eclipse-ee4j/jsonp.git + scm:git:git@github.com:eclipse-ee4j/jsonp.git + https://github.com/eclipse-ee4j/jsonp + HEAD + + + + + Eclipse Public License 2.0 + https://projects.eclipse.org/license/epl-2.0 + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://projects.eclipse.org/license/secondary-gpl-2.0-cp + repo + + + + + + m0mus + Dmitry Kornilov + Oracle + + project lead + + + + lukasj + Lukas Jungmann + Oracle + + dev lead + + + + + + ${project.basedir}/../etc/copyright-exclude + ${project.basedir}/../etc/copyright.txt + true + true + false + ${project.basedir}/../etc/spotbugs-exclude.xml + false + Low + 4.7.3.5 + + false + jakarta.json + 2.1 + ${project.basedir}/.. + Eclipse Foundation + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.2.0 + + + org.codehaus.mojo + build-helper-maven-plugin + 3.4.0 + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + + + <_noextraheaders>true + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.5.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.4.0 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + ${spotbugs.skip} + ${spotbugs.threshold} + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [11,) + + + [3.6.0,) + + + + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + ${copyright.exclude} + ${copyright.scmonly} + ${copyright.update} + ${copyright.ignoreyear} + false + + + + verify + + check + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + validate + + create + + + true + 7 + false + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-legal-resource + generate-resources + + add-resource + + + + + ${legal.doc.source} + + NOTICE.md + LICENSE.md + + META-INF + + + + + + currentyear-property + + timestamp-property + + validate + + current.year + en,US + yyyy + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 9 + false + + -Xlint:all + -Xdoclint:all + + true + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + org.glassfish.build + spec-version-maven-plugin + + + ${non.final} + api + ${spec.version} + ${project.version} + ${extension.name} + + + + + + set-spec-properties + + + + + + + + org.apache.felix + maven-bundle-plugin + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + Jakarta JSON Processing API ${spec.version} + ${vendor.name} + ${buildNumber} + * + + !org.glassfish.hk2.osgiresourcelocator, + !org.eclipse.parsson, + * + + + =1.0.0)(!(version>=2.0.0)))";resolution:=optional, + osgi.serviceloader; + filter:="(osgi.serviceloader=jakarta.json.spi.JsonProvider)"; + osgi.serviceloader="jakarta.json.spi.JsonProvider"; + cardinality:=multiple;resolution:=optional + ]]> + + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-source-plugin + + + + false + true + + + ${buildNumber} + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + false + + + 11 + true + true + JSON Processing API documentation + JSON Processing API documentation + JSON Processing API documentation +
JSON Processing API v${project.version}]]>
+ jsonp-dev@eclipse.org.
+Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ true + true +
+
+ + com.github.spotbugs + spotbugs-maven-plugin + + true + ${spotbugs.exclude} + High + + +
+
+ +
diff --git a/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom.sha1 b/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom.sha1 new file mode 100644 index 000000000..333d08736 --- /dev/null +++ b/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom.sha1 @@ -0,0 +1 @@ +2aa4310ec3c5c33b7a5c9b4ba91b760a9d959c8b \ No newline at end of file diff --git a/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/_remote.repositories b/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/_remote.repositories new file mode 100644 index 000000000..556a4d756 --- /dev/null +++ b/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:06 EDT 2024 +jakarta.mail-api-2.1.3.pom>central= diff --git a/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom b/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom new file mode 100644 index 000000000..a76eb9d6e --- /dev/null +++ b/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom @@ -0,0 +1,501 @@ + + + + + + + org.eclipse.ee4j + project + 1.0.9 + + + + 4.0.0 + jakarta.mail + jakarta.mail-api + 2.1.3 + Jakarta Mail API + ${project.name} ${spec.version} Specification API + + + scm:git:ssh://git@github.com/jakartaee/mail-api.git + scm:git:ssh://git@github.com/jakartaee/mail-api.git + https://github.com/jakartaee/mail-api + + + + GitHub + https://github.com/jakartaee/mail-api/issues + + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + EDL 1.0 + http://www.eclipse.org/org/documents/edl-v10.php + repo + + + + + 2.1 + Jakarta Mail Specification + 2024-02-14T00:00:00Z + UTF-8 + Jakarta Mail API documentation + ${project.basedir}/.. + + ${project.basedir}/../copyright-exclude + false + true + false + false + Low + ${project.basedir}/../spotbugs-exclude.xml + + 4.8.3.1 + + + ${project.version} + + + + + + jakarta.activation + jakarta.activation-api + 2.1.3 + + + org.eclipse.angus + angus-activation + 2.0.2 + + + junit + junit + 4.13.2 + + + + + + + jakarta.activation + jakarta.activation-api + + + junit + junit + test + + + org.eclipse.angus + angus-activation + test + + + + + + + + org.apache.maven.plugins + maven-resources-plugin + 3.3.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.12.1 + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.5 + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + org.codehaus.mojo + build-helper-maven-plugin + 3.4.0 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + ${spotbugs.skip} + ${spotbugs.threshold} + ${spotbugs.exclude} + true + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.4.1 + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.0.0 + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + + + <_noextraheaders>true + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.5.0 + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-version + + enforce + + + + + [3.6.3,) + + + [11,) + + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + validate + + create + + + true + 7 + false + + + + + + org.apache.maven.plugins + maven-resources-plugin + + + copy-resources + validate + + copy-resources + + + ${basedir}/target/generated-sources/version + + + src/main/resources + true + + jakarta/mail/Version.java + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-legal-resource + generate-resources + + add-resource + + + + + ${legal.doc.source} + + NOTICE.md + LICENSE.md + + META-INF + + + + + + add-sources + generate-sources + + add-source + + + + ${basedir}/target/generated-sources/version + + + + + currentyear-property + + timestamp-property + + validate + + current.year + en,US + yyyy + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 9 + false + + -Xlint:all + + true + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + org.apache.felix + maven-bundle-plugin + + + + false + + + true + + ${project.artifactId} + ${spec.title} + ${spec.version} + ${project.organization.name} + ${project.groupId} + ${project.name} + ${project.organization.name} + ${buildNumber} + org.glassfish.hk2.osgiresourcelocator + + !org.glassfish.hk2.osgiresourcelocator, + * + + + =1.0.0)(!(version>=2.0.0)))";resolution:=optional, + osgi.serviceloader;filter:="(osgi.serviceloader=jakarta.mail.Provider)"; + osgi.serviceloader="jakarta.mail.Provider"; + cardinality:=multiple;resolution:=optional, + osgi.serviceloader;filter:="(osgi.serviceloader=jakarta.mail.util.StreamProvider)"; + osgi.serviceloader="jakarta.mail.util.StreamProvider"; + cardinality:=multiple;resolution:=optional, + osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))" + ]]> + + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + false + + + + + **/*.java + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + 11 + true + false + true + true + false + true + true + Jakarta Mail API documentation + Jakarta Mail API documentation + Jakarta Mail API documentation +
v${project.version}]]>
+ mail-dev@eclipse.org.
+Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ false + true +
+
+ + org.apache.maven.plugins + maven-surefire-plugin + + 2 + false + false + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + ${copyright.exclude} + + ${copyright.scmonly} + + ${copyright.update} + + ${copyright.ignoreyear} + false + + +
+
+ + + + coverage + + + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + + + + org.jacoco + jacoco-maven-plugin + + + default-prepare-agent + + prepare-agent + + + + default-report + + report + + + + + + + + + +
diff --git a/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom.sha1 b/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom.sha1 new file mode 100644 index 000000000..e5be6d563 --- /dev/null +++ b/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom.sha1 @@ -0,0 +1 @@ +aeb31583a5070de637bce979e1963bd2bd07729f \ No newline at end of file diff --git a/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/_remote.repositories b/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/_remote.repositories new file mode 100644 index 000000000..c14396599 --- /dev/null +++ b/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:01 EDT 2024 +jakarta.persistence-api-3.1.0.pom>central= diff --git a/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom b/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom new file mode 100644 index 000000000..0f3a959eb --- /dev/null +++ b/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom @@ -0,0 +1,359 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.7 + + + + jakarta.persistence + jakarta.persistence-api + 3.1.0 + + Jakarta Persistence API + https://github.com/eclipse-ee4j/jpa-api + + + scm:git:git://github.com/eclipse-ee4j/jpa-api.git + scm:git:git@github.com:eclipse-ee4j/jpa-api.git + https://github.com/eclipse-ee4j/jpa-api.git + HEAD + + + + + Eclipse Public License v. 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + Standard Eclipse Licence + + + Eclipse Distribution License v. 1.0 + http://www.eclipse.org/org/documents/edl-v10.php + repo + Standard Eclipse Distribution License + + + + + + lukasj + Lukas Jungmann + Oracle, Inc. + + lead + + + + + + IssueTracker + https://github.com/eclipse-ee4j/jpa-api/issues + + + + + Community discussions + https://accounts.eclipse.org/mailing-list/jpa-dev + https://accounts.eclipse.org/mailing-list/jpa-dev + jpa-dev@eclipse.org + https://dev.eclipse.org/mhonarc/lists/jpa-dev/ + + http://dev.eclipse.org/mhonarc/lists/jpa-dev/maillist.rss + + + + + + ${project.basedir}/copyright-exclude + false + true + ${project.basedir}/copyright-template + false + + UTF-8 + false + 3.1 + 01 + 3.1.0 + jakarta.persistence + 3.1 + ${project.basedir}/.. + Eclipse Foundation + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.9.0 + + + org.apache.felix + maven-bundle-plugin + 5.1.4 + + + <_noextraheaders>true + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-legal-resource + generate-resources + + add-resource + + + + + ${legal.doc.source} + + NOTICE.md + LICENSE.md + + META-INF + + + + + + currentyear-property + + timestamp-property + + validate + + current.year + en,US + yyyy + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + + [11,) + + + + + + validate + + display-info + enforce + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + ${copyright.template} + ${copyright.exclude} + + ${copyright.scmonly} + + ${copyright.update} + + ${copyright.ignoreyear} + false + + + + validate + + check + + + + + + org.glassfish.build + spec-version-maven-plugin + + jakarta + + ${spec.non.final} + api + ${spec.version} + ${spec.build} + ${spec.impl.version} + ${spec.api.package} + ${spec.new.spec.version} + + + + + + set-spec-properties + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 11 + + -Xlint:all + + true + true + + + + org.apache.felix + maven-bundle-plugin + + true + + Jakarta Persistence ${spec.specification.version} API jar + Jakarta Persistence API jar + ${spec.bundle.symbolic-name} + ${spec.bundle.version} + ${spec.extension.name} + ${spec.implementation.version} + ${vendor.name} + ${spec.specification.version} + + + + + osgi-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-source-plugin + + + + false + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + false + + + 11 + true + true + true + Jakarta Persistence API documentation + Jakarta Persistence API documentation + Jakarta Persistence API documentation +
Jakarta Persistence API v${project.version}]]> +
+ +Comments to: jpa-dev@eclipse.org.
+Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ + + Jakarta Persistence API Packages + jakarta.persistence* + + +
+
+
+
+ +
diff --git a/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom.sha1 b/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom.sha1 new file mode 100644 index 000000000..e8d87bf79 --- /dev/null +++ b/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom.sha1 @@ -0,0 +1 @@ +7fccf0dcc83d2997106e7161cdf2d040251d6b25 \ No newline at end of file diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/_remote.repositories b/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/_remote.repositories new file mode 100644 index 000000000..514a6392f --- /dev/null +++ b/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:06 EDT 2024 +jakarta.jakartaee-api-10.0.0.pom>central= diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom b/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom new file mode 100644 index 000000000..e437a8941 --- /dev/null +++ b/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom @@ -0,0 +1,215 @@ + + + + + + 4.0.0 + + org.eclipse.ee4j + project + 1.0 + + jakarta.platform + jakarta.jakartaee-api + 10.0.0 + + Eclipse Foundation + https://www.eclipse.org + + + + Eclipse Public License v. 2.0 + https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://www.gnu.org/software/classpath/license.html + repo + + + + + eclipseee4j + Eclipse EE4J Developers + ee4j-pmc@eclipse.org + Eclipse Foundation + + + + + Community discussions + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + jakarta.ee-community@eclipse.org + https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ + + http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss + + + + PMC discussions + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://accounts.eclipse.org/mailing-list/ee4j-pmc + ee4j-pmc@eclipse.org + https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ + + http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss + + + + + scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakartaee-api-parent/jakarta.jakartaee-api + scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakartaee-api-parent/jakarta.jakartaee-api + https://github.com/eclipse-ee4j/ee4j/jakartaee-api-parent/jakarta.jakartaee-api + + + GitHub Issues + https://github.com/eclipse-ee4j/ee4j/issues + + + + jakarta.platform + jakarta.jakartaee-web-api + 10.0.0 + compile + false + + + jakarta.jms + jakarta.jms-api + 3.1.0 + compile + false + + + jakarta.activation + jakarta.activation-api + 2.1.0 + compile + false + + + jakarta.mail + jakarta.mail-api + 2.1.0 + compile + + + * + * + + + false + + + jakarta.resource + jakarta.resource-api + 2.1.0 + compile + + + * + * + + + false + + + jakarta.authorization + jakarta.authorization-api + 2.1.0 + compile + + + * + * + + + false + + + jakarta.batch + jakarta.batch-api + 2.1.1 + compile + + + * + * + + + false + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + compile + + + * + * + + + true + + + jakarta.xml.ws + jakarta.xml.ws-api + 4.0.0 + compile + + + * + * + + + true + + + jakarta.xml.soap + jakarta.xml.soap-api + 3.0.0 + compile + + + * + * + + + true + + + org.glassfish + jakarta.faces + 4.0.0 + provided + + + * + * + + + true + + + + diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom.sha1 b/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom.sha1 new file mode 100644 index 000000000..1d52f3bd3 --- /dev/null +++ b/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom.sha1 @@ -0,0 +1 @@ +91df2e4daf036ce412b110f79446e1eee884873f \ No newline at end of file diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/_remote.repositories b/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/_remote.repositories new file mode 100644 index 000000000..6808c5ad0 --- /dev/null +++ b/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:49 EDT 2024 +jakarta.jakartaee-bom-9.1.0.pom>central= diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom b/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom new file mode 100644 index 000000000..920a230ff --- /dev/null +++ b/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom @@ -0,0 +1,220 @@ + + + + + 4.0.0 + + jakarta.platform + jakartaee-api-parent + 9.1.0 + + jakarta.jakartaee-bom + pom + Jakarta EE API BOM + Jakarta EE API BOM + + + + + org.glassfish.build + glassfishbuild-maven-plugin + + + generate-pom + + generate-pom + + + + attach-all-artifacts + + attach-all-artifacts + + + + + + + + + + + + jakarta.servlet + jakarta.servlet-api + ${jakarta.servlet-api.version} + + + jakarta.servlet.jsp + jakarta.servlet.jsp-api + ${jakarta.servlet.jsp-api.version} + + + jakarta.el + jakarta.el-api + ${jakarta.el-api.version} + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + ${jakarta.servlet.jsp.jstl-api.version} + + + jakarta.faces + jakarta.faces-api + ${jakarta.faces-api.version} + + + jakarta.ws.rs + jakarta.ws.rs-api + ${jakarta.ws.rs-api.version} + + + jakarta.websocket + jakarta.websocket-api + ${jakarta.websocket-api.version} + + + jakarta.json + jakarta.json-api + ${jakarta.json-api.version} + + + jakarta.json.bind + jakarta.json.bind-api + ${jakarta.json.bind-api.version} + + + jakarta.annotation + jakarta.annotation-api + ${jakarta.annotation-api.version} + + + jakarta.ejb + jakarta.ejb-api + ${jakarta.ejb-api.version} + + + jakarta.transaction + jakarta.transaction-api + ${jakarta.transaction-api.version} + + + jakarta.persistence + jakarta.persistence-api + ${jakarta.persistence-api.version} + + + jakarta.validation + jakarta.validation-api + ${jakarta.validation-api.version} + + + jakarta.interceptor + jakarta.interceptor-api + ${jakarta.interceptor-api.version} + + + jakarta.enterprise + jakarta.enterprise.cdi-api + ${jakarta.enterprise.cdi-api.version} + + + jakarta.inject + jakarta.inject-api + ${jakarta.inject.version} + + + jakarta.authentication + jakarta.authentication-api + ${jakarta.authentication-api.version} + + + jakarta.security.enterprise + jakarta.security.enterprise-api + ${jakarta.security.enterprise-api.version} + + + + + jakarta.jms + jakarta.jms-api + ${jakarta.jms-api.version} + + + jakarta.activation + jakarta.activation-api + ${jakarta.activation-api.version} + + + jakarta.mail + jakarta.mail-api + ${jakarta.mail-api.version} + + + com.sun.mail + jakarta.mail + ${jakarta.mail-api.version} + + + jakarta.resource + jakarta.resource-api + ${jakarta.resource-api.version} + + + jakarta.authorization + jakarta.authorization-api + ${jakarta.authorization-api.version} + + + jakarta.enterprise.concurrent + jakarta.enterprise.concurrent-api + ${jakarta.enterprise.concurrent-api.version} + + + jakarta.batch + jakarta.batch-api + ${jakarta.batch-api.version} + + + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jakarta.xml.bind-api.version} + + + jakarta.xml.ws + jakarta.xml.ws-api + ${jakarta.xml.ws-api.version} + + + jakarta.jws + jakarta.jws-api + ${jakarta.jws-api.version} + + + jakarta.xml.soap + jakarta.xml.soap-api + ${jakarta.xml.soap-api.version} + + + + + diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom.sha1 b/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom.sha1 new file mode 100644 index 000000000..4b11c27a1 --- /dev/null +++ b/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom.sha1 @@ -0,0 +1 @@ +39a915229cabfe6bba43e0566b1a74bf8fe3eefe \ No newline at end of file diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/_remote.repositories b/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/_remote.repositories new file mode 100644 index 000000000..45bea7ad3 --- /dev/null +++ b/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:04 EDT 2024 +jakarta.jakartaee-web-api-10.0.0.pom>central= diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom b/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom new file mode 100644 index 000000000..34298b92c --- /dev/null +++ b/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom @@ -0,0 +1,349 @@ + + + + + + 4.0.0 + + org.eclipse.ee4j + project + 1.0 + + jakarta.platform + jakarta.jakartaee-web-api + 10.0.0 + + Eclipse Foundation + https://www.eclipse.org + + + + Eclipse Public License v. 2.0 + https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://www.gnu.org/software/classpath/license.html + repo + + + + + eclipseee4j + Eclipse EE4J Developers + ee4j-pmc@eclipse.org + Eclipse Foundation + + + + + Community discussions + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + jakarta.ee-community@eclipse.org + https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ + + http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss + + + + PMC discussions + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://accounts.eclipse.org/mailing-list/ee4j-pmc + ee4j-pmc@eclipse.org + https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ + + http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss + + + + + scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakartaee-api-parent/jakarta.jakartaee-web-api + scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakartaee-api-parent/jakarta.jakartaee-web-api + https://github.com/eclipse-ee4j/ee4j/jakartaee-api-parent/jakarta.jakartaee-web-api + + + GitHub Issues + https://github.com/eclipse-ee4j/ee4j/issues + + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + compile + + + * + * + + + false + + + jakarta.servlet.jsp + jakarta.servlet.jsp-api + 3.1.0 + compile + + + * + * + + + false + + + jakarta.el + jakarta.el-api + 5.0.1 + compile + false + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + 3.0.0 + compile + + + * + * + + + false + + + jakarta.faces + jakarta.faces-api + 4.0.1 + compile + + + * + * + + + false + + + jakarta.ws.rs + jakarta.ws.rs-api + 3.1.0 + compile + false + + + jakarta.websocket + jakarta.websocket-api + 2.1.0 + compile + false + + + jakarta.websocket + jakarta.websocket-client-api + 2.1.0 + compile + false + + + jakarta.json + jakarta.json-api + 2.1.0 + compile + false + + + jakarta.json.bind + jakarta.json.bind-api + 3.0.0 + compile + false + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + compile + false + + + jakarta.ejb + jakarta.ejb-api + 4.0.1 + compile + + + * + * + + + false + + + jakarta.transaction + jakarta.transaction-api + 2.0.1 + compile + + + * + * + + + false + + + jakarta.persistence + jakarta.persistence-api + 3.1.0 + compile + false + + + jakarta.validation + jakarta.validation-api + 3.0.2 + compile + + + * + * + + + false + + + jakarta.interceptor + jakarta.interceptor-api + 2.1.0 + compile + + + * + * + + + false + + + jakarta.enterprise + jakarta.enterprise.cdi-api + 4.0.1 + compile + + + * + * + + + false + + + jakarta.enterprise + jakarta.enterprise.lang-model + 4.0.1 + compile + false + + + jakarta.inject + jakarta.inject-api + 2.0.1 + compile + false + + + jakarta.authentication + jakarta.authentication-api + 3.0.0 + compile + + + * + * + + + false + + + jakarta.security.enterprise + jakarta.security.enterprise-api + 3.0.0 + compile + + + * + * + + + false + + + jakarta.enterprise.concurrent + jakarta.enterprise.concurrent-api + 3.0.1 + compile + + + * + * + + + true + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + provided + + + * + * + + + true + + + jakarta.activation + jakarta.activation-api + 2.1.0 + provided + true + + + org.glassfish + jakarta.faces + 4.0.0 + provided + + + * + * + + + true + + + + diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom.sha1 b/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom.sha1 new file mode 100644 index 000000000..936ca9aff --- /dev/null +++ b/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom.sha1 @@ -0,0 +1 @@ +ded99e8b6f2149695c384e8a577e09d53c1ef537 \ No newline at end of file diff --git a/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/_remote.repositories b/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/_remote.repositories new file mode 100644 index 000000000..315772100 --- /dev/null +++ b/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:49 EDT 2024 +jakartaee-api-parent-9.1.0.pom>central= diff --git a/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom b/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom new file mode 100644 index 000000000..491553860 --- /dev/null +++ b/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom @@ -0,0 +1,320 @@ + + + + + 4.0.0 + + org.eclipse.ee4j + project + 1.0.7 + + jakarta.platform + jakartaee-api-parent + 9.1.0 + pom + Jakarta EE API parent + Jakarta EE API parent + + + jakartaee-bom + jakartaee-web-api + jakartaee-api + + + + UTF-8 + 9.0.0 + + + + 5.0.0 + 3.0.0 + 2.0.0 + 3.0.0 + 4.0.0 + 2.0.0 + 2.0.1 + 2.0.0 + 2.0.0 + 4.0.0 + 2.0.0 + 3.0.0 + 3.0.0 + 2.0.0 + 3.0.0 + 2.0.0 + 2.0.0 + 2.0.0 + 3.0.0 + + + 3.0.0 + 2.0.1 + 2.0.1 + 2.0.0 + 2.0.0 + 2.0.0 + 2.0.0 + + + 3.0.1 + 3.0.1 + 2.0.1 + 3.0.0 + + + 1.50 + + + 3.0.0 + + + + + package + + + org.apache.maven.plugins + maven-jar-plugin + + true + + + false + false + false + + + + + + org.apache.maven.plugins + maven-resources-plugin + + + copy-resource-files + process-resources + + copy-resources + + + + + ${project.build.directory}/sources-dependency + + **/*.properties + + + + ${project.build.directory}/classes + + + + copy-javadoc-resources + process-resources + + copy-resources + + + + + ${project.build.directory}/sources-dependency + + **/*.jpg + **/*.gif + **/*.pdf + + + + ${project.build.directory}/site/apidocs + + + + + + maven-compiler-plugin + + + default-compile + + 1.8 + 1.8 + + + + + default-testCompile + + 1.8 + 1.8 + + + + + + org.apache.maven.plugins + maven-deploy-plugin + + true + + false + + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + org.apache.maven.plugins + maven-resources-plugin + 2.4.3 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.7.0 + + + org.apache.maven.plugins + maven-source-plugin + 2.1 + + true + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.glassfish.build + glassfishbuild-maven-plugin + 3.2.28 + + + unpack-sources + process-sources + + true + tools-jar,servlet-api,jakarta.faces + ${extra.excludes} + jakarta/**, resources/** + true + + + + generate-pom + package + + + org.eclipse.ee4j + project + 1.0 + + jakarta.platform + ${project.artifactId} + ${jakartaee.version} + + + + attach-all-artifacts + verify + + ${project.build.directory}/pom.xml + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.1.0 + + false + ${javadoc.options} + true + ${project.basedir}/../src/main/javadoc + true + none + ${project.name} + ${project.name} +
${project.name} v${project.version}]]>
+ +Copyright © 2018,2020 Eclipse Foundation.
Use is subject to +license terms.]]> +
+ + + implSpec + a + Implementation Specification: + + +
+
+
+
+ + + META-INF/ + false + ${project.basedir}/.. + + LICENSE.txt + + + +
+ + + + + check-serial-version-uid + + + + org.apache.maven.plugins + maven-compiler-plugin + + false + true + + -Xlint:serial + + + + + + + +
diff --git a/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 b/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 new file mode 100644 index 000000000..cd2711cfa --- /dev/null +++ b/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 @@ -0,0 +1 @@ +e5020a636b3c0cc4c5dd110e17213aaded1d6895 \ No newline at end of file diff --git a/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/_remote.repositories b/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/_remote.repositories new file mode 100644 index 000000000..9b5eef187 --- /dev/null +++ b/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:06 EDT 2024 +jakarta.resource-api-2.1.0.pom>central= diff --git a/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom b/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom new file mode 100644 index 000000000..46ddb6e98 --- /dev/null +++ b/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom @@ -0,0 +1,296 @@ + + + + + 4.0.0 + + org.eclipse.ee4j + project + 1.0.7 + + + jakarta.resource + jakarta.resource-api + 2.1.0 + + + jakarta.resource + 2.1 + false + false + Low + 4.5.0.0 + + ${extension.name} API + Jakarta Connectors ${spec.version} + + https://github.com/eclipse-ee4j/jca-api + + + + yaminikb + Yamini K B + Oracle Corporation + http://www.oracle.com/ + + + smillidge + Steve Millidge + Payara + http://www.payara.fish/ + + + + + + Sivakumar Thyagarajan + Oracle, Inc. + + + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + github + https://github.com/eclipse-ee4j/jca-api/issues + + + scm:git:ssh://git@github.com/eclipse-ee4j/jca-api.git + scm:git:ssh://git@github.com/eclipse-ee4j/jca-api.git + https://github.com/eclipse-ee4j/jca-api + HEAD + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [11,) + + + [3.6.0,) + + + + + + + + maven-compiler-plugin + 3.8.1 + + 11 + + + -Xlint:all,-dep-ann + + true + true + + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + jakarta + + ${non.final} + api + ${spec.version} + ${project.version} + ${extension.name} + + + + + + set-spec-properties + check-module + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.3 + + + jar + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + + Jakarta Connectors ${spec.version} Specification + + Jakarta Connectors + ${project.organization.name} + org.glassfish + jakarta.transaction;version="[2.0,3.0)",* + <_include>-${basedir}/osgi.bundle + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + + false + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + currentyear-property + + timestamp-property + + validate + + current.year + en,US + yyyy + + + + add-resource + generate-resources + + add-resource + + + + + .. + META-INF + + LICENSE.md + NOTICE.md + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + + + false + + + 11 + none + true + true + true +
Jakarta Connectors API v${project.version}]]>
+ +license terms. +]]> + + + + Jakarta(tm) Connectors API Documentation + jakarta.resource + + +
+
+ + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + ${spotbugs.skip} + ${spotbugs.threshold} + true + + +
+
+ + + jakarta.transaction + jakarta.transaction-api + 2.0.1 + + + jakarta.annotation + jakarta.annotation-api + 2.1.0 + + + + jakarta.enterprise + jakarta.enterprise.cdi-api + 3.0.1 + provided + + +
diff --git a/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom.sha1 b/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom.sha1 new file mode 100644 index 000000000..ee8026c24 --- /dev/null +++ b/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom.sha1 @@ -0,0 +1 @@ +3115484af6195efd35e24c1b738c4050c0bc52c1 \ No newline at end of file diff --git a/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/_remote.repositories b/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/_remote.repositories new file mode 100644 index 000000000..44fdf0d07 --- /dev/null +++ b/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.security.enterprise-api-3.0.0.pom>central= diff --git a/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom b/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom new file mode 100644 index 000000000..58f949434 --- /dev/null +++ b/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom @@ -0,0 +1,336 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.6 + + + + jakarta.security.enterprise + jakarta.security.enterprise-api + 3.0.0 + bundle + + Jakarta Security + + Jakarta Security defines a standard for creating secure Jakarta EE applications in modern application paradigms. + It defines an overarching (end-user targeted) Security API for Jakarta EE Applications. + + 2015 + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + + scm:git:https://github.com/eclipse-ee4j/security-api.git + scm:git:https://github.com/eclipse-ee4j/security-api.git + https://github.com/eclipse-ee4j/security-api + HEAD + + + + UTF-8 + UTF-8 + + 11 + 11 + + + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + provided + + + jakarta.interceptor + jakarta.interceptor-api + 2.1.0 + provided + + + jakarta.el + jakarta.el-api + 5.0.0 + provided + + + jakarta.enterprise + jakarta.enterprise.cdi-api + 4.0.0 + provided + + + jakarta.authentication + jakarta.authentication-api + 3.0.0 + provided + + + jakarta.authorization + jakarta.authorization-api + 2.1.0 + provided + + + jakarta.json + jakarta.json-api + 2.1.0 + + + + junit + junit + 4.13.2 + test + + + + + + + ${project.basedir}/.. + + LICENSE.md + NOTICE.md + + META-INF + + + ${project.basedir} + + LICENSE.md + NOTICE.md + + META-INF + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.5.4 + + + + + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + git + true + + speclicense.html + + + + + validate + + copyright + check + + + + + + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + + 3.0 + ${project.version} + jakarta.security.enterprise + + + + + + set-spec-properties + check-module + + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.4 + true + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + + Jakarta Security ${spec.specification.version} Specification + + Oracle Corporation + ${project.organization.name} + jakarta.security.enterprise.* + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + + attach-api-javadocs + + jar + + + 11 + true + -Xdoclint:none + false + Jakarta Security API documentation + Jakarta Security API documentation + Jakarta Security API documentation +
Jakarta Security API v${project.version}]]>
+ es-dev@eclipse.org.
+Copyright © 2019, 2022 Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ true + + + Jakarta Security API Documentation + + jakarta.security.enterprise.* + + + +
+
+
+
+
+
+ + + + only-eclipse + + + m2e.version + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.glassfish.build + spec-version-maven-plugin + [1.2,) + + set-spec-properties + + + + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + [1.2,) + + copyright + check + + + + + + + + + + + + + + + +
diff --git a/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom.sha1 b/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom.sha1 new file mode 100644 index 000000000..2bc7ee18c --- /dev/null +++ b/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom.sha1 @@ -0,0 +1 @@ +8b2cf71171691b3da4a3cc27252f3084d4cd3882 \ No newline at end of file diff --git a/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/_remote.repositories b/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/_remote.repositories new file mode 100644 index 000000000..57a033e6b --- /dev/null +++ b/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:04 EDT 2024 +jakarta.servlet-api-6.0.0.pom>central= diff --git a/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom b/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom new file mode 100644 index 000000000..b34a1e306 --- /dev/null +++ b/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom @@ -0,0 +1,462 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.7 + + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + + Jakarta Servlet + https://projects.eclipse.org/projects/ee4j.servlet + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + + + yaminikb + Yamini K B + Oracle Corporation + http://www.oracle.com/ + + + + + Ed Burns + + + Shing Wai Chan + + + + + + Servlet mailing list + servlet-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/servlet-dev + https://dev.eclipse.org/mailman/listinfo/servlet-dev + https://dev.eclipse.org/mhonarc/lists/servlet-dev + + + + + scm:git:https://github.com/eclipse-ee4j/servlet-api.git + scm:git:git@github.com:eclipse-ee4j/servlet-api.git + https://github.com/eclipse-ee4j/servlet-api + HEAD + + + github + https://github.com/eclipse-ee4j/servlet-api/issues + + + + + org.junit.jupiter + junit-jupiter-engine + 5.8.1 + test + + + org.junit.jupiter + junit-jupiter-params + 5.8.1 + test + + + org.hamcrest + hamcrest + 2.2 + test + + + + + + + src/main/java + + **/*.properties + **/*.html + + + + src/main/resources + + + + + + net.revelc.code.formatter + formatter-maven-plugin + 2.11.0 + + ${project.basedir}/etc/config/ee4j-eclipse-formatting.xml + + + + net.revelc.code + impsort-maven-plugin + 1.4.1 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.5.4 + + + + + + + + + + maven-compiler-plugin + 3.8.1 + + 11 + 11 + -Xlint:all + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M5 + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + etc/config/copyright-exclude + + git + + off + + true + + true + + false + + false + etc/config/copyright-eclipse.txt + etc/config/copyright-oracle.txt + + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.2 + + + jar + + + 6.0.0 + jakarta.servlet-api + + Jakarta Servlet 6.0 + + jakarta.servlet + 6.0 + Eclipse Foundation + ${project.version} + ${project.organization.name} + org.eclipse + jakarta.servlet.* + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + **/*.java + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + true + + + + attach-sources + + jar-no-fork + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.0 + + + attach-api-javadocs + + jar + + + true + 11 + -Xdoclint:none + Jakarta Servlet API documentation + Jakarta Servlet API documentation + Jakarta Servlet API documentation +
Jakarta Servlet API v${project.version}]]>
+ servlet-dev@eclipse.org.
+Copyright © 2019, 2022 Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ true + + + Jakarta Servlet API Documentation + + jakarta.servlet.* + + + + + + implSpec + a + Implementation Requirements: + + + param + + + return + + + throws + + + since + + + version + + + serialData + + + factory + + + see + + +
+
+
+
+ + + org.codehaus.mojo + build-helper-maven-plugin + 3.1.0 + + + add-resource + generate-resources + + add-resource + + + + + ${maven.multiModuleProjectDirectory} + META-INF + + LICENSE.md + NOTICE.md + + + + + + + +
+
+ + + + + + format + + true + + !validate-format + + + + + + net.revelc.code.formatter + formatter-maven-plugin + + + process-sources + + format + + + + + + net.revelc.code + impsort-maven-plugin + + true + + + + sort-imports + + sort + + + + + + + + + validate + + true + + validate-format + + + + + + net.revelc.code.formatter + formatter-maven-plugin + + + process-sources + + validate + + + + + + net.revelc.code + impsort-maven-plugin + + true + + + + check-imports + + check + + + + + + + + + +
diff --git a/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom.sha1 b/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom.sha1 new file mode 100644 index 000000000..6eba8ffd6 --- /dev/null +++ b/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom.sha1 @@ -0,0 +1 @@ +31e5c0c37cd563caf1e8aa9899f9c78ebef4570c \ No newline at end of file diff --git a/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/_remote.repositories b/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/_remote.repositories new file mode 100644 index 000000000..ec77348cd --- /dev/null +++ b/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:04 EDT 2024 +jakarta.servlet.jsp-api-3.1.0.pom>central= diff --git a/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom b/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom new file mode 100644 index 000000000..f417a8be3 --- /dev/null +++ b/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom @@ -0,0 +1,289 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.6 + + + + jakarta.servlet.jsp + jakarta.servlet.jsp-api + 3.1.0 + jar + + Jakarta Server Pages API + Jakarta Server Pages API + https://projects.eclipse.org/projects/ee4j.jsp + + + + jakarta-ee4j-jsp + Jakarta Server Pages Developers + Eclipse Foundation + jsp-dev@eclipse.org + + + + + Jakarta Server Pages Contributors + jsp-dev@eclipse.org + https://github.com/eclipse-ee4j/jsp-api/graphs/contributors + + + + + + JSP dev mailing list + jsp-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/jsp-dev + https://dev.eclipse.org/mailman/listinfo/jsp-dev + https://dev.eclipse.org/mhonarc/lists/jsp-dev + + + + + scm:git:https://github.com/eclipse-ee4j/jsp-api.git + scm:git:ssh://git@github.com/eclipse-ee4j/jsp-api.git + https://github.com/eclipse-ee4j/jsp-api + HEAD + + + github + https://github.com/eclipse-ee4j/jsp-api/issues + + + + + 3.1 + ${project.version} + jakarta.servlet.jsp + jakarta.servlet.jsp-api + Eclipse Foundation + + + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + provided + + + jakarta.el + jakarta.el-api + 5.0.0 + provided + + + + + + + src/main/java + + **/*.properties + + + + ${project.basedir}/.. + + LICENSE.md + NOTICE.md + + META-INF + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + enforce-maven + + enforce + + + + + 3.5.4 + You need Maven 3.5.4 or higher + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 11 + 11 + -Xlint:unchecked + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.3 + + etc/config/copyright-exclude + + git + + false + + true + + true + + false + + false + etc/config/copyright-eclipse.txt + etc/config/copyright-oracle.txt + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.1 + + + jar + + + Jakarta Server Pages ${spec.version} + ${bundle.symbolicName} + ${bundle.version} + ${extensionName} + ${spec.version} + ${vendorName} + ${project.version} + ${vendorName} + jakarta.servlet.jsp.* + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + maven-jar-plugin + 3.2.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + **/*.java + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + true + + + + attach-sources + + jar-no-fork + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + + attach-javadocs + + jar + + + 11 + -Xdoclint:none + Jakarta Server Pages API documentation + Jakarta Server Pages API documentation + Jakarta Server Pages API documentation +
Jakarta Server Pages API v${project.version}]]>
+ jsp-dev@eclipse.org.
+Copyright © 2018, 2021 Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ true + + + Jakarta Server Pages API Documentation + + jakarta.servlet.jsp* + + + +
+
+
+
+ + + + org.sonatype.plugins + nexus-staging-maven-plugin + + 3bda51d9c036 + + +
+
+
diff --git a/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom.sha1 b/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom.sha1 new file mode 100644 index 000000000..67f69b045 --- /dev/null +++ b/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom.sha1 @@ -0,0 +1 @@ +77b6ff4771a3b3f0932ff5f77f95ef510ab283d0 \ No newline at end of file diff --git a/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/_remote.repositories b/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/_remote.repositories new file mode 100644 index 000000000..9d61a9a2c --- /dev/null +++ b/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:04 EDT 2024 +jakarta.servlet.jsp.jstl-api-3.0.0.pom>central= diff --git a/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom b/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom new file mode 100644 index 000000000..f1595c16e --- /dev/null +++ b/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom @@ -0,0 +1,310 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.6 + + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + 3.0.0 + jar + + Jakarta Standard Tag Library API + Jakarta Standard Tag Library API + https://projects.eclipse.org/projects/ee4j.jstl + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + + + yaminikb + Yamini K B + Oracle Corporation + http://www.oracle.com/ + + + + + Kin Man Chung + + + + + + JSTL dev mailing list + jstl-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/jstl-dev + https://dev.eclipse.org/mailman/listinfo/jstl-dev + https://dev.eclipse.org/mhonarc/lists/jstl-dev + + + + + scm:git:https://github.com/eclipse-ee4j/jstl-api.git + scm:git:ssh://git@github.com/eclipse-ee4j/jstl-api.git + https://github.com/eclipse-ee4j/jstl-api + HEAD + + + github + https://github.com/eclipse-ee4j/jstl-api/issues + + + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + + + jakarta.servlet.jsp + jakarta.servlet.jsp-api + 3.1.0 + provided + + + jakarta.el + jakarta.el-api + 5.0.0 + + + + + + + src/main/java + + **/*.properties + + + + ${project.basedir}/.. + + LICENSE.md + NOTICE.md + + META-INF + + + ${project.basedir} + + LICENSE.md + NOTICE.md + + META-INF + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.6.0 + + + + + + + + + + maven-compiler-plugin + 3.8.1 + + 11 + -Xlint:unchecked + + + + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + + 3.0 + ${project.version} + jakarta.servlet.jsp.jstl + + + + + + set-spec-properties + check-module + + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.3 + + + jar + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + + Jakarta Standard Tag Library ${spec.specification.version} Specification + + ${project.organization.name} + ${project.organization.name} + org.glassfish + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + **/*.java + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + true + + + + attach-sources + + jar-no-fork + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + timestamp-property + + timestamp-property + + validate + + current.year + yyyy + en_US + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + + attach-api-javadocs + + jar + + + 11 + -Xdoclint:none + Jakarta Standard Tag Library API documentation + Jakarta Standard Tag Library API documentation + Jakarta Standard Tag Library API documentation +
Jakarta Standard Tag Library API v${project.version}]]>
+ jstl-dev@eclipse.org.
+Copyright © 2018, ${current.year} Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ true + + + Jakarta Standard Tag Library API Documentation + jakarta.servlet.jsp.jstl* + + +
+
+
+
+
+
+
diff --git a/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom.sha1 b/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom.sha1 new file mode 100644 index 000000000..2b06d5562 --- /dev/null +++ b/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom.sha1 @@ -0,0 +1 @@ +a36fe9884f2a11be485ea2949acd87701f6b9ef4 \ No newline at end of file diff --git a/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/_remote.repositories b/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/_remote.repositories new file mode 100644 index 000000000..114a57e6f --- /dev/null +++ b/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:01 EDT 2024 +jakarta.transaction-api-2.0.1.pom>central= diff --git a/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom b/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom new file mode 100644 index 000000000..2bf5a2dd1 --- /dev/null +++ b/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom @@ -0,0 +1,329 @@ + + + + + 4.0.0 + + org.eclipse.ee4j + project + 1.0.6 + + + + jakarta.transaction + jakarta.transaction-api + 2.0.1 + + + false + jakarta.transaction + 2.0 + 1.8 + 1.8 + + ${extension.name} API + Jakarta Transactions + https://projects.eclipse.org/projects/ee4j.jta + + + + stephen_felts + Stephen Felts + Oracle, Inc. + + lead + + + + + + EE4J Community + https://github.com/eclipse-ee4j + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + github + https://github.com/eclipse-ee4j/jta-api/issues + + + + Jakarta Transactions mailing list + jta-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/jta-dev + https://dev.eclipse.org/mailman/listinfo/jta-dev + https://dev.eclipse.org/mhonarc/lists/jta-dev/ + + + + scm:git:https://github.com/eclipse-ee4j/jta-api.git + scm:git:git@github.com:eclipse-ee4j/jta-api.git + https://github.com/eclipse-ee4j/jta-api + HEAD + + + + + + src/main/java + + **/*.properties + **/*.html + + + + src/main/resources + + + + + + maven-compiler-plugin + 3.8.1 + + + 11 + + -Xlint:all + + true + true + + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + jakarta + + ${non.final} + api + ${spec.version} + ${project.version} + ${extension.name} + + + + + + set-spec-properties + check-module + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.1 + + + jar + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + + Jakarta(TM) Transactions ${spec.version} API Design Specification + + Oracle Corporation + ${project.organization.name} + org.glassfish + + jakarta.enterprise.context;version=!, + jakarta.enterprise.util;version=!, + jakarta.interceptor;version="2.0.1", + javax.transaction.xa, + * + + + jakarta.transaction;version="2.0.1";uses:="javax.transaction.xa,jakarta.interceptor,jakarta.enterprise.context,jakarta.enterprise.util" + + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + jakarta.transaction + + + + + **/*.java + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.0.0 + + + add-resource + generate-resources + + add-resource + + + + + .. + META-INF + + LICENSE.md + NOTICE.md + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1 + + true + + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + false + + Jakarta Transactions documentation + + + Jakarta Transactions documentation + + + Jakarta Transactions documentation + + true + true + + Use is subject to + license terms. + ]]> + + 1.8 + + + + package + + javadoc + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + forked-path + false + ${release.arguments} + + + + org.apache.maven.plugins + maven-site-plugin + 3.1 + + + + + + jakarta.enterprise + jakarta.enterprise.cdi-api + 3.0.1 + provided + + + jakarta.interceptor + jakarta.interceptor-api + 2.0.1 + provided + + + diff --git a/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom.sha1 b/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom.sha1 new file mode 100644 index 000000000..305f69db4 --- /dev/null +++ b/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom.sha1 @@ -0,0 +1 @@ +5ea0f7ca81255825d28b937eb08d718087a0daa9 \ No newline at end of file diff --git a/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/_remote.repositories b/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/_remote.repositories new file mode 100644 index 000000000..4ac9d8eca --- /dev/null +++ b/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:56 EDT 2024 +jakarta.validation-api-3.0.2.pom>central= diff --git a/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom b/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom new file mode 100644 index 000000000..dca6f3117 --- /dev/null +++ b/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom @@ -0,0 +1,277 @@ + + + + 4.0.0 + + org.eclipse.ee4j + project + 1.0.6 + + + jakarta.validation + jakarta.validation-api + 3.0.2 + jar + Jakarta Bean Validation API + https://beanvalidation.org + + + Jakarta Bean Validation API + + + + + epbernard + Emmanuel Bernard + emmanuel@hibernate.org + Red Hat, Inc. + http://in.relation.to/emmanuel-bernard/ + + + emmanuelbernard + Emmanuel Bernard + emmanuel@hibernate.org + Red Hat, Inc. + http://in.relation.to/emmanuel-bernard/ + + + hardy.ferentschik + Hardy Ferentschik + hferents@redhat.com + Red Hat, Inc. + http://in.relation.to/hardy-ferentschik/ + + + gunnar.morling + Gunnar Morling + gunnar@hibernate.org + Red Hat, Inc. + http://in.relation.to/gunnar-morling/ + + + guillaume.smet + Guillaume Smet + guillaume.smet@hibernate.org + Red Hat, Inc. + http://in.relation.to/guillaume-smet/ + + + + + JIRA + https://hibernate.atlassian.net/projects/BVAL/ + + + 2007 + + + + Apache License 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + scm:git:git://github.com/eclipse-ee4j/beanvalidation-api.git + scm:git:git@github.com:eclipse-ee4j/beanvalidation-api.git + https://github.com/eclipse-ee4j/beanvalidation-api + HEAD + + + + UTF-8 + + + + + org.testng + testng + 6.11 + test + + + + + + + org.apache.felix + maven-bundle-plugin + 3.5.0 + + + + jakarta.validation.*;version="${project.version}", + + + + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 9 + + -Xlint:all + + true + true + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + once + true + + **/*Test.java + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + ${basedir}/target/classes/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.0 + + + attach-javadocs + + jar + + + + + 8 + false + Jakarta Bean Validation API Packages + Jakarta Bean Validation API ${project.version} + Jakarta Bean Validation API ${project.version} + bean-validation-dev@eclipse.org.
+Copyright © 2019,2020 Eclipse Foundation.
+Use is subject to EFSL; this spec is based on material that is licensed under the Apache License, version 2.0.]]> +
+
+
+ + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + true + true + deploy + + + + maven-deploy-plugin + 3.0.0-M1 + + + com.mycila + license-maven-plugin + 3.0 + +
${project.basedir}/license/license.header
+ true + + ${project.basedir}/license/java-header-style.xml + ${project.basedir}/license/xml-header-style.xml + + + JAVA_CLASS_STYLE + XML_FILE_STYLE + XML_FILE_STYLE + + + **/*.java + **/*.xml + **/*.xsd + +
+ + + license-headers + + check + + + +
+
+
+ + + + release + + true + + + + +
diff --git a/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom.sha1 b/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom.sha1 new file mode 100644 index 000000000..92727c286 --- /dev/null +++ b/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom.sha1 @@ -0,0 +1 @@ +8c6efd0edc3669094814b1af2d990b9e42666f7e \ No newline at end of file diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/_remote.repositories b/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/_remote.repositories new file mode 100644 index 000000000..9517b3551 --- /dev/null +++ b/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.websocket-all-2.1.1.pom>central= diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom b/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom new file mode 100644 index 000000000..42a0ff4b5 --- /dev/null +++ b/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom @@ -0,0 +1,263 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.8 + + + + jakarta.websocket + jakarta.websocket-all + 2.1.1 + pom + + Jakarta WebSocket API Parent + Jakarta WebSocket API Parent + https://projects.eclipse.org/projects/ee4j.websocket + + 2012 + + + + jakarta-ee4j-websocket + Jakarta WebSocket Developers + Eclipse Foundation + websocket-dev@eclipse.org + + + + + + Jakarta WebSocket Contributors + websocket-dev@eclipse.org + https://github.com/eclipse-ee4j/websocket-api/graphs/contributors + + + + + + WebSocket dev mailing list + websocket-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/websocket-dev + https://dev.eclipse.org/mailman/listinfo/websocket-dev + https://dev.eclipse.org/mhonarc/lists/websocket-dev + + + + + scm:git:https://github.com/eclipse-ee4j/websocket-api.git + scm:git:ssh://git@github.com/eclipse-ee4j/websocket-api.git + https://github.com/eclipse-ee4j/websocket-api + HEAD + + + + github + https://github.com/eclipse-ee4j/websocket-api/issues + + + + + 2.1 + ${project.version} + Eclipse Foundation + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + enforce-maven + + enforce + + + + + 3.5.4 + You need Maven 3.5.4 or higher + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + -Xlint:unchecked + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.3 + + etc/config/copyright-exclude + + git + + false + + true + + true + + false + + false + etc/config/copyright-eclipse.txt + etc/config/copyright-oracle.txt + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.1 + + + Jakarta WebSocket ${spec.version} + ${bundle.symbolicName} + ${bundle.version} + ${extensionName} + ${spec.version} + ${vendorName} + ${project.version} + ${vendorName} + jakarta.websocket.* + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + maven-jar-plugin + 3.1.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + true + + + + attach-sources + + jar-no-fork + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.1.1 + + + attach-javadocs + + jar + + + 1.8 + -Xdoclint:none + Jakarta WebSocket API documentation + Jakarta WebSocket API documentation + Jakarta WebSocket API documentation +
+ websocket-dev@eclipse.org.
+Copyright © 2018, 2021 Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ true + + + Jakarta WebSocket API Documentation + + jakarta.websocket* + + + + + + implSpec + a + Implementation Requirements: + + + + https://docs.oracle.com/javase/8/docs/api/ + + true +
+
+
+
+
+
+
+ + + client + server + +
diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom.sha1 b/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom.sha1 new file mode 100644 index 000000000..3f93fe2cb --- /dev/null +++ b/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom.sha1 @@ -0,0 +1 @@ +e3dbfb7d5c0557316957b861d6aa3f158f41a446 \ No newline at end of file diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/_remote.repositories b/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/_remote.repositories new file mode 100644 index 000000000..ffe58c941 --- /dev/null +++ b/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.websocket-api-2.1.1.pom>central= diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom b/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom new file mode 100644 index 000000000..583537faf --- /dev/null +++ b/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom @@ -0,0 +1,115 @@ + + + + + 4.0.0 + + jakarta.websocket + jakarta.websocket-all + 2.1.1 + + + jakarta.websocket-api + jar + Jakarta WebSocket - Server API + Jakarta WebSocket - Server API + https://projects.eclipse.org/projects/ee4j.websocket + + + jakarta.websocket-api + jakarta.websocket + + + + + + ${project.basedir}/../../ + + LICENSE.md + NOTICE.md + + META-INF + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + org.apache.maven.plugins + maven-compiler-plugin + + 9 + + -Xlint:all + + true + true + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-source-plugin + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + + + jakarta.websocket + jakarta.websocket-client-api + ${project.version} + provided + + + diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom.sha1 b/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom.sha1 new file mode 100644 index 000000000..c685a5a60 --- /dev/null +++ b/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom.sha1 @@ -0,0 +1 @@ +380d095fc76d7a0c635e6c54e95414ef9443e268 \ No newline at end of file diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/_remote.repositories b/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/_remote.repositories new file mode 100644 index 000000000..1ade6f02e --- /dev/null +++ b/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:05 EDT 2024 +jakarta.websocket-client-api-2.1.1.pom>central= diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom b/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom new file mode 100644 index 000000000..337bb9728 --- /dev/null +++ b/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom @@ -0,0 +1,106 @@ + + + + + 4.0.0 + + jakarta.websocket + jakarta.websocket-all + 2.1.1 + + + jakarta.websocket-client-api + jar + Jakarta WebSocket - Client API + Jakarta WebSocket - Client API + https://projects.eclipse.org/projects/ee4j.websocket + + + jakarta.websocket-client-api + jakarta.websocket-client + + + + + + ${project.basedir}/../../ + + LICENSE.md + NOTICE.md + + META-INF + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + org.apache.maven.plugins + maven-compiler-plugin + + 9 + + -Xlint:all + + true + true + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.maven.plugins + maven-jar-plugin + + + org.apache.maven.plugins + maven-source-plugin + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom.sha1 b/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom.sha1 new file mode 100644 index 000000000..235f04451 --- /dev/null +++ b/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom.sha1 @@ -0,0 +1 @@ +0ff7a942f4ae26d861b46503cb538bb61e73492a \ No newline at end of file diff --git a/code/arachne/jakarta/ws/rs/all/3.1.0/_remote.repositories b/code/arachne/jakarta/ws/rs/all/3.1.0/_remote.repositories new file mode 100644 index 000000000..63c790500 --- /dev/null +++ b/code/arachne/jakarta/ws/rs/all/3.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:58 EDT 2024 +all-3.1.0.pom>central= diff --git a/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom b/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom new file mode 100644 index 000000000..e8bf7661f --- /dev/null +++ b/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom @@ -0,0 +1,87 @@ + + + + + 4.0.0 + + jakarta.ws.rs + all + 3.1.0 + pom + Jakarta RESTful WS Project + + + org.eclipse.ee4j + project + 1.0.7 + + + + + + repo.eclipse.org + JAX-RS API Repository - Snapshots + https://repo.eclipse.org/content/repositories/jax-rs-api-snapshots/ + + + + + + release-eclipse + + + repo.eclipse.org + JAX-RS API Repository - Releases + https://repo.eclipse.org/content/repositories/jax-rs-api-releases/ + + + + + dependentModules + + true + + jaxrs.all.build + + + + jaxrs-api + jaxrs-tck + examples + + + + dependentSpecification + + + jaxrs.all.build + + + + jaxrs-spec + + + + jersey-tck + + + jaxrs.jerseytck.build + + + + jersey-tck + + + + diff --git a/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom.sha1 b/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom.sha1 new file mode 100644 index 000000000..986db37bd --- /dev/null +++ b/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom.sha1 @@ -0,0 +1 @@ +441bf5fed041486c0a616e8a5d966458f34cf0ab \ No newline at end of file diff --git a/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/_remote.repositories b/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/_remote.repositories new file mode 100644 index 000000000..62104e9d6 --- /dev/null +++ b/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:57 EDT 2024 +jakarta.ws.rs-api-3.1.0.pom>central= diff --git a/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom b/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom new file mode 100644 index 000000000..530269dd1 --- /dev/null +++ b/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom @@ -0,0 +1,407 @@ + + + + + 4.0.0 + + jakarta.ws.rs-api + bundle + Jakarta RESTful WS API + Jakarta RESTful Web Services + + + jakarta.ws.rs + all + 3.1.0 + + + https://github.com/eclipse-ee4j/jaxrs-api + + + Eclipse Foundation + https://www.eclipse.org/org/foundation/ + + + + + developers + JAX-RS API Developers + jaxrs-dev@eclipse.org + https://github.com/eclipse-ee4j/jaxrs-api/graphs/contributors + + + + + Github + https://github.com/eclipse-ee4j/jaxrs-api/issues + + + + + JAX-RS Developer Discussions + jaxrs-dev@eclipse.org + + + + + + EPL-2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL-2.0-with-classpath-exception + https://www.gnu.org/software/classpath/license.html + repo + + + + + scm:git:https://github.com/eclipse-ee4j/jaxrs-api + https://github.com/eclipse-ee4j/jaxrs-api + HEAD + + + + + + skip-tests + + false + + + true + + + + + + ${project.artifactId} + + + + maven-jar-plugin + 3.2.0 + + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + {0,date,MM/dd/yyyy hh:mm aa} + + timestamp + + + + + validate + + create + + + + + + org.apache.felix + maven-bundle-plugin + ${maven.bundle.plugin.version} + true + + + <_failok>true + ${buildNumber} + Jakarta RESTful Web Services API (JAX-RS) + ${project.version} + jakarta.ws.rs-api + * + ${api.package} + ${project.version} + ${spec.version} + Eclipse Foundation + ${spec.version} + <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@))) + <_nodefaultversion>false + osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))" + + + + + osgi-bundle + package + + bundle + + + + + + maven-javadoc-plugin + ${maven.javadoc.plugin.version} + + 8 + ${apidocs.title} + true + + Copyright © 2018, 2020 Eclipse Foundation.
Use is subject to license terms.]]> +
+ true + + + module-info.java + +
+ + + attach-javadocs + + jar + + + +
+ + maven-source-plugin + 3.2.1 + + + attach-sources + + jar-no-fork + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + add-legal-resource + generate-resources + + add-resource + + + + + ${legal.doc.folder} + + NOTICE.md + LICENSE.md + + META-INF + + + + + + + + maven-jxr-plugin + 3.1.1 + + + + jxr + + validate + + + + + maven-checkstyle-plugin + 3.1.2 + + ${project.build.directory}/checkstyle + ${project.build.directory}/checkstyle/checkstyle-result.xml + ${basedir}/../etc/config/checkstyle.xml + **/module-info.java + true + + + + com.puppycrawl.tools + checkstyle + 8.44 + + + + + + checkstyle + + validate + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 1.39 + + ${basedir}/../etc/config/copyright-exclude + + git + + false + + true + + true + + false + + false + + + + maven-surefire-plugin + ${maven.surefire.plugin.version} + + --add-modules jakarta.xml.bind + + + + maven-compiler-plugin + ${maven.compiler.plugin.version} + +
+
+ + + org.apache.felix + maven-bundle-plugin + + + maven-compiler-plugin + + + maven-jar-plugin + + + org.codehaus.mojo + buildnumber-maven-plugin + + + maven-javadoc-plugin + + + maven-source-plugin + + + maven-jxr-plugin + + + maven-checkstyle-plugin + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + + org.codehaus.mojo + build-helper-maven-plugin + + +
+ + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jaxb.api.version} + provided + true + + + jakarta.activation + jakarta.activation-api + ${activation.api.version} + provided + + + org.glassfish.jaxb + jaxb-runtime + ${jaxb.impl.version} + test + + + org.junit.jupiter + junit-jupiter-api + 5.8.0-M1 + test + + + org.hamcrest + hamcrest + 2.2 + test + + + org.mockito + mockito-core + 3.11.1 + test + + + + + Jakarta RESTful Web Services ${spec.version} API Specification ${spec.version.revision} + 11 + + 5.1.2 + 3.8.1 + ${java.version} + 3.3.0 + 3.0.0-M5 + + jakarta.ws.rs + UTF-8 + false + 3.1 + + + 3.0.1 + 3.0.2-b01 + 2.0.1 + ${project.basedir}/.. + + +
diff --git a/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom.sha1 b/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom.sha1 new file mode 100644 index 000000000..38a5cc3f3 --- /dev/null +++ b/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom.sha1 @@ -0,0 +1 @@ +281714cf26e0e93784d7634b1ad17301d6599f95 \ No newline at end of file diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/_remote.repositories b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/_remote.repositories new file mode 100644 index 000000000..446f7c0e5 --- /dev/null +++ b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:01 EDT 2024 +jakarta.xml.bind-api-parent-4.0.2.pom>central= diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom new file mode 100644 index 000000000..0274e2156 --- /dev/null +++ b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom @@ -0,0 +1,238 @@ + + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.9 + + + + jakarta.xml.bind + jakarta.xml.bind-api-parent + 4.0.2 + pom + Jakarta XML Binding + Jakarta XML Binding API + https://github.com/jakartaee/jaxb-api + + + scm:git:git://github.com/jakartaee/jaxb-api.git + scm:git:git@github.com:jakartaee/jaxb-api.git + https://github.com/jakartaee/jaxb-api.git + HEAD + + + + + Eclipse Distribution License - v 1.0 + http://www.eclipse.org/org/documents/edl-v10.php + repo + + + + + + Roman Grigoriadi + roman.grigoriadi@oracle.com + Oracle Corporation + + + + + github + https://github.com/jakartaee/jaxb-api/issues + + + + + Jakarta XML Binding mailing list + jaxb-dev@eclipse.org + https://accounts.eclipse.org/mailing-list/jaxb-dev + https://accounts.eclipse.org/mailing-list/jaxb-dev + https://dev.eclipse.org/mhonarc/lists/jaxb-dev + + + + + ${config.dir}/copyright-exclude + true + true + ${config.dir}/edl-copyright.txt + false + false + Low + 4.8.3.1 + + 11 + + jaxb-dev@eclipse.org + Mar 2022 + jakarta.xml.bind + jakarta.xml.bind + 4.0 + 2.1.3 + ${project.basedir}/etc/config + Eclipse Foundation + + + + api + + + + + + jakarta.activation + jakarta.activation-api + ${activation.version} + + + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.2.0 + + + org.codehaus.mojo + build-helper-maven-plugin + 3.5.0 + + + maven-compiler-plugin + 3.12.1 + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + + maven-surefire-plugin + 3.2.5 + + + maven-javadoc-plugin + 3.6.3 + + + maven-enforcer-plugin + 3.4.1 + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + + + maven-jar-plugin + 3.3.0 + + + maven-source-plugin + 3.3.0 + + + maven-resources-plugin + 3.3.1 + + + maven-deploy-plugin + 3.1.1 + + + maven-dependency-plugin + 3.6.1 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + ${spotbugs.skip} + ${spotbugs.threshold} + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -Xlint:all + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + ${copyright.templatefile} + ${copyright.exclude} + + ${copyright.scmonly} + + ${copyright.update} + + ${copyright.ignoreyear} + false + + + + validate + + check + + + + + + org.apache.maven.plugins + maven-source-plugin + + + + false + true + + + ${project.version} - ${buildNumber} + + + + + + + + + + + test + + jaxb-api-test + + + + diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom.sha1 b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom.sha1 new file mode 100644 index 000000000..53dc2357c --- /dev/null +++ b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom.sha1 @@ -0,0 +1 @@ +5d3186bca50baf84bb24db19bafcff2d131d02cb \ No newline at end of file diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/_remote.repositories b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/_remote.repositories new file mode 100644 index 000000000..02fe0500d --- /dev/null +++ b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:01 EDT 2024 +jakarta.xml.bind-api-4.0.2.pom>central= diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom new file mode 100644 index 000000000..22eb1ce98 --- /dev/null +++ b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom @@ -0,0 +1,274 @@ + + + + + + jakarta.xml.bind-api-parent + jakarta.xml.bind + 4.0.2 + ../pom.xml + + 4.0.0 + + jakarta.xml.bind-api + jar + Jakarta XML Binding API + + + ${project.basedir}/../etc/config + ${project.basedir}/.. + ${project.basedir}/../etc/spotbugs-exclude.xml + + + + + jakarta.activation + jakarta.activation-api + + + junit + junit + 4.13.2 + test + + + + + + + + + maven-enforcer-plugin + + + + [11,) + + + [3.6.0,) + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + true + 7 + false + + + + maven-javadoc-plugin + + true + all,-missing + true + false + true + true + false + true + true + Jakarta XML Binding API documentation + Jakarta XML Binding API documentation + Jakarta XML Binding API documentation +
v${project.version}]]> +
+ + ${release.spec.feedback}.
+Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+ false + true + + + Jakarta XML Binding API Packages + jakarta.xml.bind* + + + + + apiNote + + a + API Note: + + + implSpec + + a + Implementation Requirements: + + + implNote + + a + Implementation Note: + + +
+
+
+
+ + + + org.codehaus.mojo + build-helper-maven-plugin + + + currentyear-property + + timestamp-property + + validate + + current.year + en,US + yyyy + + + + add-legal-resource + generate-resources + + add-resource + + + + + ${legal.doc.source} + + NOTICE.md + LICENSE.md + + META-INF + + + + + + + + maven-enforcer-plugin + + + enforce-versions + + enforce + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + validate + + create + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -Xlint:all + -Xdoclint:all,-missing + + true + true + + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + false + + + true + + ${project.version} + + Jakarta XML Binding API ${spec.version} Design Specification + + ${extension.name} + ${project.version} + ${spec.version} + + !org.glassfish.hk2.osgiresourcelocator, + * + + ${extension.name}-api + org.glassfish.hk2.osgiresourcelocator + ${vendor.name} + ${buildNumber} + <_noextraheaders>true + + =1.0.0)(!(version>=2.0.0)))";resolution:=optional, + osgi.serviceloader; + filter:="(osgi.serviceloader=jakarta.xml.bind.JAXBContextFactory)"; + osgi.serviceloader="jakarta.xml.bind.JAXBContextFactory"; + cardinality:=multiple;resolution:=optional + ]]> + + + + + + + + maven-jar-plugin + + + + false + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + com.github.spotbugs + spotbugs-maven-plugin + + true + ${spotbugs.exclude} + High + + + +
+
\ No newline at end of file diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 new file mode 100644 index 000000000..3388046c6 --- /dev/null +++ b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 @@ -0,0 +1 @@ +da6b967605200a3f7ed3b5874159046cc9e8ecc5 \ No newline at end of file diff --git a/code/arachne/javax/activation/javax.activation-api/1.2.0/_remote.repositories b/code/arachne/javax/activation/javax.activation-api/1.2.0/_remote.repositories new file mode 100644 index 000000000..872ecd4f0 --- /dev/null +++ b/code/arachne/javax/activation/javax.activation-api/1.2.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:01 EDT 2024 +javax.activation-api-1.2.0.pom>central= diff --git a/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom b/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom new file mode 100644 index 000000000..9a781122a --- /dev/null +++ b/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom @@ -0,0 +1,146 @@ + + + + + + + + com.sun.activation + all + 1.2.0 + + 4.0.0 + javax.activation + javax.activation-api + jar + JavaBeans Activation Framework API jar + + + + javax.activation + + + java.activation + + + javax.activation.*; version=${activation.spec.version} + + + javax.activation-api + + + + + + + maven-dependency-plugin + + + + get-binaries + process-sources + + unpack + + + + + get-sources + process-sources + + unpack + + + + + com.sun.activation + javax.activation + ${project.version} + sources + + ${project.build.directory}/sources + + + + + + + + + + com.sun.activation + javax.activation + ${project.version} + + + + ${project.build.outputDirectory} + + + javax/**, + META-INF/LICENSE.txt + + + + + maven-jar-plugin + + ${project.artifactId} + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + diff --git a/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom.sha1 b/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom.sha1 new file mode 100644 index 000000000..f811d9254 --- /dev/null +++ b/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom.sha1 @@ -0,0 +1 @@ +1aa9ef58e50ba6868b2e955d61fcd73be5b4cea5 \ No newline at end of file diff --git a/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/_remote.repositories b/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/_remote.repositories new file mode 100644 index 000000000..c3f1535f0 --- /dev/null +++ b/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:01 EDT 2024 +jaxb-api-parent-2.3.1.pom>central= diff --git a/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom b/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom new file mode 100644 index 000000000..32efc4248 --- /dev/null +++ b/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom @@ -0,0 +1,213 @@ + + + + + + 4.0.0 + javax.xml.bind + jaxb-api-parent + 2.3.1 + + + net.java + jvnet-parent + 5 + + + + jaxb-api + jaxb-api-test + + pom + + Java Architecture for XML Binding + JAXB (JSR 222) API + https://github.com/javaee/jaxb-spec + + + Oracle Corporation + http://www.oracle.com/ + + + + scm:git:git://github.com/javaee/jaxb-spec.git + scm:git:git@github.com:javaee/jaxb-spec.git + https://github.com/javaee/jaxb-spec.git + HEAD + + + + + Roman Grigoriadi + roman.grigoriadi@oracle.com + Oracle Corporation + + + Martin Grebac + martin.grebac@oracle.com + Oracle Corporation + + + Iaroslav Savytskyi + iaroslav.savytskyi@oracle.com + Oracle Corporation + + + + + + CDDL 1.1 + https://oss.oracle.com/licenses/CDDL+GPL-1.1 + repo + + + GPL2 w/ CPE + https://oss.oracle.com/licenses/CDDL+GPL-1.1 + repo + + + + + jira + https://github.com/javaee/jaxb-spec/issues + + + + javaee-spec@javaee.groups.io + Jul 2017 + ${project.basedir}/exclude.xml + Low + ${project.basedir}/src/main/mr-jar + ${project.build.directory}/classes-mrjar + javax.xml.bind + 2.3 + 0 + 1.2.0 + + + + + + javax.activation + javax.activation-api + ${activation.version} + + + + + + + + + + maven-compiler-plugin + 3.7.0 + + 1.7 + 1.7 + + -Xlint:all + + + + + maven-surefire-plugin + 2.20 + + + maven-release-plugin + 2.5.3 + + + maven-javadoc-plugin + 3.0.1 + + + maven-enforcer-plugin + 3.0.0-M2 + + + maven-source-plugin + 3.0.1 + + + maven-deploy-plugin + 2.8.2 + + + maven-dependency-plugin + 3.1.1 + + + maven-gpg-plugin + 1.6 + + + + + + + + + jvnet-release + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + -Xdoclint:none + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + + + + + diff --git a/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom.sha1 b/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom.sha1 new file mode 100644 index 000000000..838da0610 --- /dev/null +++ b/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom.sha1 @@ -0,0 +1 @@ +26101e8a1a09e16cdf277a4591f6d29917b2e06e \ No newline at end of file diff --git a/code/arachne/javax/xml/bind/jaxb-api/2.3.1/_remote.repositories b/code/arachne/javax/xml/bind/jaxb-api/2.3.1/_remote.repositories new file mode 100644 index 000000000..fbcabdba2 --- /dev/null +++ b/code/arachne/javax/xml/bind/jaxb-api/2.3.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:01 EDT 2024 +jaxb-api-2.3.1.pom>central= diff --git a/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom b/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom new file mode 100644 index 000000000..fb8584450 --- /dev/null +++ b/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom @@ -0,0 +1,426 @@ + + + + + + + jaxb-api-parent + javax.xml.bind + 2.3.1 + + 4.0.0 + + jaxb-api + jar + + + + javax.activation + javax.activation-api + + + + + + + + + maven-resources-plugin + 3.1.0 + + + org.glassfish.build + gfnexus-maven-plugin + 0.20 + + + + javax.xml.bind:jaxb-api:${project.version}:jar + javax.xml.bind + + + metro + JAXB_API-${project.version} + + + + maven-enforcer-plugin + + + + [1.8,) + + + [3.0.3,) + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.7 + + + xml + + + 45 + 45 + true + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 1.49 + + ${project.basedir}/copyright.txt + ${project.basedir}/copyright-exclude + + true + + true + + false + + false + + + + maven-dependency-plugin + 3.1.1 + + + maven-jar-plugin + 3.1.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + javax.xml.bind + ${scmBranch}-${buildNumber}, ${timestamp} + true + + + true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + true + {0,date,yyyy-MM-dd'T'HH:mm:ssZ} + true + false + + + + org.apache.felix + maven-bundle-plugin + true + 3.5.1 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + osgi.ee;filter:="(&(osgi.ee=JavaSE)(version>=1.8))" + ${project.version} + ${extension.name} + ${spec.version}.${impl.version} + ${project.version} + ${extension.name}.*; version=${spec.version} + + javax.activation;version=!, + javax.xml.bind;version="[${spec.version},3)", + javax.xml.bind.annotation;version="[${spec.version},3)", + javax.xml.bind.annotation.adapters;version="[${spec.version},3)", + javax.xml.bind.attachment;version="[${spec.version},3)", + javax.xml.bind.helpers;version="[${spec.version},3)", + javax.xml.bind.util;version="[${spec.version},3)", + javax.xml.datatype, + javax.xml.namespace, + javax.xml.parsers, + javax.xml.stream, + javax.xml.transform, + javax.xml.transform.dom, + javax.xml.transform.sax, + javax.xml.transform.stream, + javax.xml.validation, + org.w3c.dom, + org.xml.sax, + org.xml.sax.ext, + org.xml.sax.helpers + + jaxb-api + org.glassfish.hk2.osgiresourcelocator + Oracle Corporation + ${project.organization.name} + org.glassfish + + + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.5 + + ${findbugs.skip} + ${findbugs.threshold} + true + + ${findbugs.exclude} + + true + -Xms64m -Xmx256m + + + + org.glassfish.findbugs + findbugs + 1.0 + + + + + maven-javadoc-plugin + + false + false + true + true + +JAXB ${project.version} Runtime Library +${project.name} specification, ${release.spec.date}
+Comments to: ${release.spec.feedback}
+More information at: http://jaxb.java.net

 

${project.name}


+
 
]]> +
+
v${project.version}]]> +
+ +
Comments to: ${release.spec.feedback} +
More information at: http://jaxb.java.net +

Copyright © 2004-2017 Oracle ]]> + + false + + + http://download.oracle.com/javase/8/docs/api/ + ${basedir}/offline-javadoc + + + + + apiNote + + a + API Note: + + + implSpec + + a + Implementation Requirements: + + + implNote + + a + Implementation Note: + + + + + + maven-release-plugin + + + maven-compiler-plugin + + + default-compile + + 8 + + module-info.java + + + + + module-info-compile + test-compile + + compile + + + 9 + + module-info.java + + + + + + + + + + + maven-resources-plugin + + + generate-sources + + copy-resources + + + ${project.build.directory}/mr-jar/META-INF/versions/9 + + + ${basedir}/src/main/mr-jar + + + + + + + + maven-enforcer-plugin + + + enforce-versions + + enforce + + + + + + maven-dependency-plugin + + + initialize + + properties + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + validate + + create + + + + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + + maven-antrun-plugin + 1.8 + + + compile-java9 + compile + + + + + + + + run + + + + update-source-jar + verify + + + + + + + + + run + + + + + + + + + + + diff --git a/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom.sha1 b/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom.sha1 new file mode 100644 index 000000000..5da3c8f0b --- /dev/null +++ b/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom.sha1 @@ -0,0 +1 @@ +c42c51ae84892b73ef7de5351188908e673f5c69 \ No newline at end of file diff --git a/code/arachne/joda-time/joda-time/2.12.1/_remote.repositories b/code/arachne/joda-time/joda-time/2.12.1/_remote.repositories new file mode 100644 index 000000000..f58194320 --- /dev/null +++ b/code/arachne/joda-time/joda-time/2.12.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:44 EDT 2024 +joda-time-2.12.1.pom>central= diff --git a/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom b/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom new file mode 100644 index 000000000..486dd7024 --- /dev/null +++ b/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom @@ -0,0 +1,1090 @@ + + + + + + 4.0.0 + joda-time + joda-time + jar + Joda-Time + 2.12.1 + Date and time library to replace JDK date handling + https://www.joda.org/joda-time/ + + + + GitHub + https://github.com/JodaOrg/joda-time/issues + + 2002 + + + + + jodastephen + Stephen Colebourne + + Project Lead + + 0 + https://github.com/jodastephen + + + broneill + Brian S O'Neill + + + Senior Developer + + https://github.com/broneill + + + + + Sergi Almacellas Abellana + https://github.com/pokoli + + + Adrian Acala + https://github.com/AdrianAcala + + + Afif Ahmed + https://github.com/a7i7 + + + AlexMe951 + https://github.com/AlexMe951 + + + Guy Allard + + + Brad Arndt + https://github.com/bradarndt + + + Mikey Austin + https://github.com/mikey-austin + + + Dominik Baláž + https://github.com/dombalaz + + + Oren Benjamin + https://github.com/oby1 + + + Besnik Bleta + https://github.com/ujdhesa + + + Fredrik Borgh + + + Dave Brosius + https://github.com/mebigfatguy + + + Dan Cavallaro + https://github.com/dancavallaro + + + Luc Claes + https://github.com/lucclaes + + + Emiliano Claria + https://github.com/emilianogc + + + Dan Cojocar + https://github.com/dancojocar + + + Evgeniy Devyatykh + https://github.com/john9x + + + dspitfire + https://github.com/dspitfire + + + Christopher Elkins + https://github.com/celkins + + + emopers + https://github.com/emopers + + + Michael Ernst + https://github.com/mernst + + + Jeroen van Erp + + + Gwyn Evans + + + Niklas Fiekas + https://github.com/niklasf + + + John Fletcher + + + Sean Geoghegan + + + Jim Gough + https://github.com/jpgough + + + Craig Gidney + https://github.com/Strilanc + + + haguenau + https://github.com/haguenau + + + Michael Hausegger + https://github.com/TheRealHaui + + + Kaj Hejer + https://github.com/kajh + + + Rowan Hill + https://github.com/rowanhill + + + LongHua Huang + https://github.com/longhua + + + Brendan Humphreys + https://github.com/pandacalculus + + + Vsevolod Ivanov + https://github.com/seva-ask + + + Ing. Jan Kalab + https://github.com/Pitel + + + Ashish Katyal + + + Kurt Alfred Kluever + https://github.com/kluever + + + Martin Kneissl + https://github.com/mkneissl + + + Kuunh + https://github.com/Kuunh + + + Sebastian Kurten + https://github.com/sebkur + + + Fabian Lange + https://github.com/CodingFabian + + + Mikel Larreategi + https://github.com/erral + + + Vidar Larsen + https://github.com/vlarsen + + + Kasper Laudrup + + + Jeff Lavallee + https://github.com/jlavallee + + + Chung-yeol Lee + https://github.com/chungyeol + + + Antonio Leitao + + + Kostas Maistrelis + + + mjunginger + https://github.com/mjunginger + + + Al Major + + + Pete Marsh + https://github.com/petedmarsh + + + Blair Martin + + + Paul Martin + https://github.com/pgpx + + + mo20053444 + https://github.com/mo20053444 + + + Mustofa + https://github.com/mustofa-id + + + Katy P + https://github.com/katyp + + + Amling Palantir + https://github.com/AmlingPalantir + + + Julen Parra + + + Jorge Perez + https://github.com/jperezalv + + + Rok Piltaver + https://github.com/Rok-Piltaver + + + Michael Plump + + + Bjorn Pollex + https://github.com/bjoernpollex + + + Ryan Propper + + + Anton Qiu + https://github.com/antonqiu + + + Zhanbolat Raimbekov + https://github.com/janbolat + + + H. Z. Sababa + https://github.com/hb20007 + + + Mike Schrag + + + Albert Scotto + https://github.com/alb-i986 + + + Hajime Senuma + https://github.com/hajimes + + + Kandarp Shah + + + Alexander Shopov + https://github.com/alshopov + + + Michael Sotnikov + https://github.com/stari4ek + + + Francois Staes + + + Grzegorz Swierczynski + https://github.com/gswierczynski + + + syafiqnazim + https://github.com/syafiqnazim + + + Dave Syer + https://github.com/dsyer + + + Jason Tedor + https://github.com/jasontedor + + + trejkaz + https://github.com/trejkaz + + + Ricardo Trindade + + + Bram Van Dam + https://github.com/codematters + + + Ed Wagstaff + https://github.com/edwag + + + Can Yapan + https://github.com/canyapan + + + Maxim Zhao + + + Alex + https://github.com/nyrk + + + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:https://github.com/JodaOrg/joda-time.git + scm:git:git@github.com:JodaOrg/joda-time.git + https://github.com/JodaOrg/joda-time + HEAD + + + Joda.org + https://www.joda.org + + + + + + + META-INF + ${project.basedir} + + LICENSE.txt + NOTICE.txt + + + + ${project.basedir}/src/main/java + + **/*.properties + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + 3.6.0 + + + + + + + + + org.codehaus.mojo + exec-maven-plugin + 3.1.0 + + + compile-tzdb + compile + + java + + + + + org.joda.time.tz.ZoneInfoCompiler + compile + true + + + org.joda.time.DateTimeZone.Provider + org.joda.time.tz.UTCProvider + + + + -src + ${project.build.sourceDirectory}/org/joda/time/tz/src + -dst + ${project.build.outputDirectory}/org/joda/time/tz/data + africa + antarctica + asia + australasia + europe + northamerica + southamerica + etcetera + backward + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/TestAllPackages.java + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + + + src/conf/MANIFEST.MF + + ${tz.database.version} + org.joda.time + org.joda.time + + + + + + no-tzdb + package + + jar + + + no-tzdb + + + Joda-Time-No-TZDB + + + + org/joda/time/tz/data/** + org/joda/time/tz/ZoneInfoCompiler* + + + + + + + + true + true + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + User packages + org.joda.time:org.joda.time.format:org.joda.time.chrono + + + Implementation packages + org.joda.time.base:org.joda.time.convert:org.joda.time.field:org.joda.time.tz + + + + + + attach-javadocs + package + + jar + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + package + + jar-no-fork + + + + attach-no-tztb-sources + package + + jar-no-fork + + + no-tzdb-sources + + org/joda/time/tz/data/** + org/joda/time/tz/ZoneInfoCompiler* + + + + + + + + **/*.properties + + + + + + org.codehaus.mojo + clirr-maven-plugin + 2.8 + + 2.7 + info + true + + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven-checkstyle-plugin.version} + + + org.apache.maven.plugins + maven-changes-plugin + ${maven-changes-plugin.version} + + + org.apache.maven.plugins + maven-clean-plugin + ${maven-clean-plugin.version} + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + org.apache.maven.plugins + maven-dependency-plugin + ${maven-dependency-plugin.version} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${maven-enforcer-plugin.version} + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven-gpg-plugin.version} + + + org.apache.maven.plugins + maven-install-plugin + ${maven-install-plugin.version} + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + org.apache.maven.plugins + maven-jxr-plugin + ${maven-jxr-plugin.version} + + + org.apache.maven.plugins + maven-plugin-plugin + ${maven-plugin-plugin.version} + + + org.apache.maven.plugins + maven-pmd-plugin + ${maven-pmd-plugin.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${maven-project-info-reports-plugin.version} + + + org.apache.maven.plugins + maven-repository-plugin + ${maven-repository-plugin.version} + + + org.apache.maven.plugins + maven-resources-plugin + ${maven-resources-plugin.version} + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${maven-surefire-report-plugin.version} + + + org.apache.maven.plugins + maven-toolchains-plugin + ${maven-toolchains-plugin.version} + + + + org.apache.maven.plugins + maven-release-plugin + ${maven-release-plugin.version} + + -Doss.repo + true + v@{project.version} + true + + + + org.codehaus.mojo + build-helper-maven-plugin + ${build-helper-maven-plugin.version} + + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + true + + + + org.joda.external + reflow-velocity-tools + 1.2 + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.codehaus.mojo + + exec-maven-plugin + + [1.2.1,) + + java + + + + + + + + + + + + + + + + + + org.joda + joda-convert + 1.9.2 + compile + true + + + junit + junit + 3.8.2 + test + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${maven-project-info-reports-plugin.version} + + + + ci-management + dependencies + dependency-info + issue-management + licenses + team + scm + summary + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + + javadoc + + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${maven-surefire-report-plugin.version} + + true + + + + + org.apache.maven.plugins + maven-changes-plugin + ${maven-changes-plugin.version} + + + + changes-report + + + + + + + + + + + sonatype-joda-staging + Sonatype OSS staging repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + default + + + false + sonatype-joda-snapshot + Sonatype OSS snapshot repository + https://oss.sonatype.org/content/repositories/joda-snapshots + default + + https://oss.sonatype.org/content/repositories/joda-releases + + + + + + + java5to7 + + [1.5,1.8] + + + 2.19.1 + + + + + java8plus + + [1.8,) + + + 2.21.0 + + -Xdoclint:none + none + + + + + + repo-sign-artifacts + + + oss.repo + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${nexus-staging-maven-plugin.version} + true + + https://oss.sonatype.org/ + sonatype-joda-staging + Releasing ${project.groupId}:${project.artifactId}:${project.version} + true + true + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + make-assembly + deploy + + single + + + + src/main/assembly/dist.xml + + gnu + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + sign-dist-artifacts + deploy + + sign + + + + + + + de.jutzig + github-release-plugin + 1.4.0 + + + github-releases + deploy + + release + + + Release v${project.version} + See the [change notes](https://www.joda.org/joda-time/changes-report.html#a${project.version}) for more information. + v${project.version} + true + + + ${project.build.directory} + + ${project.artifactId}-${project.version}-dist.tar.gz + ${project.artifactId}-${project.version}-dist.tar.gz.asc + ${project.artifactId}-${project.version}-dist.zip + ${project.artifactId}-${project.version}-dist.zip.asc + ${project.artifactId}-${project.version}.jar.asc + + + + + + + + + + + 2.19.1 + + + + attach-additional-javadoc + + + maven.javadoc.skip + !true + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + attach-no-tzdb-javadoc + package + + attach-artifact + + + + + ${project.build.directory}/${project.artifactId}-${project.version}-javadoc.jar + jar + no-tzdb-javadoc + + + + + + + + + + + + + + + 3.3.0 + 3.4.2 + 2.12.1 + 2.17 + 3.2.0 + 3.10.1 + 3.0.0 + 3.3.0 + 3.1.0 + 3.0.1 + 3.0.1 + 3.3.0 + 3.4.1 + 3.3.0 + 3.6.4 + 3.19.0 + 3.4.1 + 2.5.3 + 2.4 + 3.3.0 + 3.12.1 + 3.2.1 + + 2.21.0 + 3.1.0 + 1.6.13 + + 1.5 + 1.5 + 1.5 + true + false + true + true + lines,source + + false + true + + src/main/checkstyle/checkstyle.xml + false + + UTF-8 + UTF-8 + 2022fgtz + + diff --git a/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom.sha1 b/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom.sha1 new file mode 100644 index 000000000..457d6d9d9 --- /dev/null +++ b/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom.sha1 @@ -0,0 +1 @@ +e358054cf69a1395987286e8111fa525ba7ef46e \ No newline at end of file diff --git a/code/arachne/joda-time/joda-time/2.5/_remote.repositories b/code/arachne/joda-time/joda-time/2.5/_remote.repositories new file mode 100644 index 000000000..d861a965b --- /dev/null +++ b/code/arachne/joda-time/joda-time/2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +joda-time-2.5.pom>central= diff --git a/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom b/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom new file mode 100644 index 000000000..ee50f35ac --- /dev/null +++ b/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom @@ -0,0 +1,750 @@ + + + + 4.0.0 + joda-time + joda-time + jar + Joda-Time + 2.5 + Date and time library to replace JDK date handling + http://www.joda.org/joda-time/ + + + + GitHub + https://github.com/JodaOrg/joda-time/issues + + 2002 + + + Joda Interest list + https://lists.sourceforge.net/lists/listinfo/joda-interest + https://lists.sourceforge.net/lists/listinfo/joda-interest + http://sourceforge.net/mailarchive/forum.php?forum_name=joda-interest + + + + + + + jodastephen + Stephen Colebourne + + Project Lead + + 0 + https://github.com/jodastephen + + + broneill + Brian S O'Neill + + + Senior Developer + + https://github.com/broneill + + + + + Guy Allard + + + Oren Benjamin + https://github.com/oby1 + + + Fredrik Borgh + + + Dave Brosius + https://github.com/mebigfatguy + + + Luc Claes + https://github.com/lucclaes + + + Dan Cojocar + https://github.com/dancojocar + + + Christopher Elkins + https://github.com/celkins + + + Jeroen van Erp + + + Gwyn Evans + + + John Fletcher + + + Sean Geoghegan + + + Craig Gidney + https://github.com/Strilanc + + + haguenau + https://github.com/haguenau + + + Rowan Hill + https://github.com/rowanhill + + + LongHua Huang + https://github.com/longhua + + + Vsevolod Ivanov + https://github.com/seva-ask + + + Ashish Katyal + + + Martin Kneissl + https://github.com/mkneissl + + + Fabian Lange + https://github.com/CodingFabian + + + Vidar Larsen + https://github.com/vlarsen + + + Kasper Laudrup + + + Jeff Lavallee + https://github.com/jlavallee + + + Chung-yeol Lee + https://github.com/chungyeol + + + Antonio Leitao + + + Kostas Maistrelis + + + mjunginger + https://github.com/mjunginger + + + Al Major + + + Pete Marsh + https://github.com/petedmarsh + + + Blair Martin + + + Amling Palantir + https://github.com/AmlingPalantir + + + Julen Parra + + + Jorge Perez + https://github.com/jperezalv + + + Michael Plump + + + Bjorn Pollex + https://github.com/bjoernpollex + + + Ryan Propper + + + Mike Schrag + + + Hajime Senuma + https://github.com/hajimes + + + Kandarp Shah + + + Francois Staes + + + Grzegorz Swierczynski + https://github.com/gswierczynski + + + Ricardo Trindade + + + Bram Van Dam + https://github.com/codematters + + + Maxim Zhao + + + + + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:https://github.com/JodaOrg/joda-time.git + scm:git:git@github.com:JodaOrg/joda-time.git + https://github.com/JodaOrg/joda-time + + + Joda.org + http://www.joda.org + + + + + + + META-INF + ${project.basedir} + + LICENSE.txt + NOTICE.txt + + + + ${project.basedir}/src/main/java + + **/*.properties + + + + + + + org.codehaus.mojo + exec-maven-plugin + 1.2.1 + + + compile + + java + + + + + org.joda.time.tz.ZoneInfoCompiler + compile + true + + + org.joda.time.DateTimeZone.Provider + org.joda.time.tz.UTCProvider + + + + -src + ${project.build.sourceDirectory}/org/joda/time/tz/src + -dst + ${project.build.outputDirectory}/org/joda/time/tz/data + africa + antarctica + asia + australasia + europe + northamerica + southamerica + pacificnew + etcetera + backward + systemv + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/TestAllPackages.java + + + + + org.apache.maven.plugins + maven-jar-plugin + + + src/conf/MANIFEST.MF + + true + true + + + ${tz.database.version} + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + User packages + org.joda.time:org.joda.time.format:org.joda.time.chrono + + + Implementation packages + org.joda.time.base:org.joda.time.convert:org.joda.time.field:org.joda.time.tz + + + + + + attach-javadocs + package + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + package + + jar-no-fork + + + + + + + **/*.properties + + + + + org.apache.maven.plugins + maven-assembly-plugin + + false + + src/main/assembly/dist.xml + + gnu + + + + make-assembly + deploy + + single + + + + + + org.apache.maven.plugins + maven-site-plugin + + true + + + + com.github.github + site-maven-plugin + 0.9 + + + github-site + + site + + site-deploy + + + + Create website for ${project.artifactId} v${project.version} + ${project.artifactId} + true + github + JodaOrg + jodaorg.github.io + refs/heads/master + + + + org.codehaus.mojo + clirr-maven-plugin + 2.3 + + 2.3 + info + true + + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven-checkstyle-plugin.version} + + + org.apache.maven.plugins + maven-changes-plugin + ${maven-changes-plugin.version} + + + org.apache.maven.plugins + maven-clean-plugin + ${maven-clean-plugin.version} + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + org.apache.maven.plugins + maven-dependency-plugin + ${maven-dependency-plugin.version} + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven-gpg-plugin.version} + + + org.apache.maven.plugins + maven-install-plugin + ${maven-install-plugin.version} + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + org.apache.maven.plugins + maven-jxr-plugin + ${maven-jxr-plugin.version} + + + org.apache.maven.plugins + maven-plugin-plugin + ${maven-plugin-plugin.version} + + + org.apache.maven.plugins + maven-pmd-plugin + ${maven-pmd-plugin.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${maven-project-info-reports-plugin.version} + + + org.apache.maven.plugins + maven-repository-plugin + ${maven-repository-plugin.version} + + + org.apache.maven.plugins + maven-resources-plugin + ${maven-resources-plugin.version} + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${maven-surefire-report-plugin.version} + + + org.apache.maven.plugins + maven-toolchains-plugin + ${maven-toolchains-plugin.version} + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.codehaus.mojo + + exec-maven-plugin + + [1.2.1,) + + java + + + + + + + + + + + + + + + + + 3.0.4 + + + + org.joda + joda-convert + 1.2 + compile + true + + + junit + junit + 3.8.2 + test + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${maven-project-info-plugin.version} + + + + dependencies + dependency-info + issue-tracking + license + mailing-list + project-team + scm + summary + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + + javadoc + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${maven-surefire-report-plugin.version} + + true + + + + org.apache.maven.plugins + maven-jxr-plugin + ${maven-jxr-plugin.version} + + + + jxr + + + + + + + + + + + sonatype-joda-staging + Sonatype OSS staging repository + http://oss.sonatype.org/service/local/staging/deploy/maven2/ + default + + + false + sonatype-joda-snapshot + Sonatype OSS snapshot repository + http://oss.sonatype.org/content/repositories/joda-snapshots + default + + http://oss.sonatype.org/content/repositories/joda-releases + + + + + + repo-sign-artifacts + + + oss.repo + true + + + + + + org.apache.maven.plugins + maven-toolchains-plugin + + + validate + + toolchain + + + + + + + 1.5 + sun + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + + + + + 2.4 + 2.9 + 2.11 + 2.5 + 3.1 + 2.8.1 + 2.8 + 1.4 + 2.5.1 + 2.4 + 2.9.1 + 2.3 + 3.2 + 3.0.1 + 2.7 + 2.3.1 + 2.6 + 3.3 + 2.2.1 + 2.16 + 2.16 + 1.0 + + 1.5 + 1.5 + 1.5 + true + true + true + true + lines,source + + false + true + + ${project.basedir}/src/main/checkstyle/checkstyle.xml + + UTF-8 + UTF-8 + 2014h + + diff --git a/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom.sha1 b/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom.sha1 new file mode 100644 index 000000000..d98875fbc --- /dev/null +++ b/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom.sha1 @@ -0,0 +1 @@ +44897bde70c633ef0e70da9d46193285bde466b0 \ No newline at end of file diff --git a/code/arachne/junit/junit/4.13.2/_remote.repositories b/code/arachne/junit/junit/4.13.2/_remote.repositories new file mode 100644 index 000000000..a6ebe36cd --- /dev/null +++ b/code/arachne/junit/junit/4.13.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:12 EDT 2024 +junit-4.13.2.pom>central= diff --git a/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom b/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom new file mode 100644 index 000000000..38be96092 --- /dev/null +++ b/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom @@ -0,0 +1,633 @@ + + + 4.0.0 + + junit + junit + 4.13.2 + + JUnit + JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck. + http://junit.org + 2002 + + JUnit + http://www.junit.org + + + + Eclipse Public License 1.0 + http://www.eclipse.org/legal/epl-v10.html + repo + + + + + + dsaff + David Saff + david@saff.net + + + kcooney + Kevin Cooney + kcooney@google.com + + + stefanbirkner + Stefan Birkner + mail@stefan-birkner.de + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + + + JUnit contributors + JUnit + team@junit.org + https://github.com/junit-team/junit4/graphs/contributors + + developers + + + + + + 3.0.4 + + + + scm:git:git://github.com/junit-team/junit4.git + scm:git:git@github.com:junit-team/junit4.git + https://github.com/junit-team/junit4 + r4.13.2 + + + github + https://github.com/junit-team/junit4/issues + + + github + https://github.com/junit-team/junit4/actions + + + https://github.com/junit-team/junit4/wiki/Download-and-Install + + junit-snapshot-repo + Nexus Snapshot Repository + https://oss.sonatype.org/content/repositories/snapshots/ + + + junit-releases-repo + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + junit.github.io + gitsite:git@github.com/junit-team/junit4.git + + + + + 1.5 + 2.19.1 + 1.3 + 1.4 + 2.6 + 2.10.3 + ISO-8859-1 + + 67893CC4 + + + + + org.hamcrest + hamcrest-core + ${hamcrestVersion} + + + + org.hamcrest + hamcrest-library + ${hamcrestVersion} + test + + + + + + + ${project.basedir}/src/main/resources + + + ${project.basedir} + + LICENSE-junit.txt + + + + + + + + maven-enforcer-plugin + ${enforcerPluginVersion} + + + enforce-versions + initialize + + enforce + + + true + + + + Current version of Maven ${maven.version} required to build the project + should be ${project.prerequisites.maven}, or higher! + + [${project.prerequisites.maven},) + + + Current JDK version ${java.version} should be ${jdkVersion}, or higher! + + ${jdkVersion} + + + Best Practice is to never define repositories in pom.xml (use a repository + manager instead). + + + + No Snapshots Dependencies Allowed! + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + 1.5.3 + + + process-sources + + replace + + + + + false + ${project.build.sourceDirectory}/junit/runner/Version.java.template + ${project.build.sourceDirectory}/junit/runner/Version.java + false + @version@ + ${project.version} + + + + + maven-compiler-plugin + 3.3 + + ${project.build.sourceEncoding} + ${jdkVersion} + ${jdkVersion} + ${jdkVersion} + ${jdkVersion} + 1.5 + true + true + true + true + + -Xlint:unchecked + + 128m + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.14 + + + signature-check + test + + check + + + + org.codehaus.mojo.signature + java15 + 1.0 + + + + + + + + maven-surefire-plugin + ${surefireVersion} + + org/junit/tests/AllTests.java + true + false + + + + org.apache.maven.surefire + surefire-junit47 + ${surefireVersion} + + + + + + maven-source-plugin + 2.4 + + + + maven-javadoc-plugin + ${javadocPluginVersion} + + ${basedir}/src/main/javadoc/stylesheet.css + protected + false + false + false + true + true + true + JUnit API + UTF-8 + en + ${jdkVersion} + + + api_${jdkVersion} + http://docs.oracle.com/javase/${jdkVersion}.0/docs/api/ + + + *.internal.* + true + 32m + 128m + true + true + + org.hamcrest:hamcrest-core:* + + + + + maven-release-plugin + 2.5.2 + + forked-path + false + -Pgenerate-docs,junit-release ${arguments} + r@{project.version} + + + + maven-site-plugin + 3.4 + + + com.github.stephenc.wagon + wagon-gitsite + 0.4.1 + + + org.apache.maven.doxia + doxia-module-markdown + 1.5 + + + + + maven-jar-plugin + ${jarPluginVersion} + + + false + + true + + + junit + + + + + + maven-clean-plugin + 2.6.1 + + + maven-deploy-plugin + 2.8.2 + + + maven-install-plugin + 2.5.2 + + + maven-resources-plugin + 2.7 + + + + + + + + maven-project-info-reports-plugin + 2.8 + + false + + + + + + index + dependency-info + modules + license + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + distribution-management + + + + + + maven-javadoc-plugin + ${javadocPluginVersion} + + javadoc/latest + ${basedir}/src/main/javadoc/stylesheet.css + protected + false + false + false + true + true + true + JUnit API + UTF-8 + en + ${jdkVersion} + + + api_${jdkVersion} + http://docs.oracle.com/javase/${jdkVersion}.0/docs/api/ + + + junit.*,*.internal.* + true + 32m + 128m + true + true + + org.hamcrest:hamcrest-core:* + + + + + + javadoc + + + + + + + + + + junit-release + + + + + + maven-gpg-plugin + 1.6 + + + gpg-sign + verify + + sign + + + + + + + + + generate-docs + + + + + maven-source-plugin + + + attach-sources + prepare-package + + jar-no-fork + + + + + + maven-javadoc-plugin + + + attach-javadoc + package + + jar + + + + + + + + + restrict-doclint + + + [1.8,) + + + + + maven-compiler-plugin + + + -Xlint:unchecked + -Xdoclint:accessibility,reference,syntax + + + + + maven-javadoc-plugin + + -Xdoclint:accessibility -Xdoclint:reference + + + + + + + + maven-javadoc-plugin + + -Xdoclint:accessibility -Xdoclint:reference + + + + + + + java9 + + [1.9,12) + + + + 1.6 + + + + + maven-javadoc-plugin + + 1.6 + + + + + + + + maven-javadoc-plugin + + 1.6 + + + + + + + java12 + + [12,) + + + + 1.7 + 3.0.0-M3 + 3.2.0 + 3.2.0 + + + + + maven-javadoc-plugin + + 1.7 + false + + + + maven-compiler-plugin + + + -Xdoclint:none + + + + + + + + + maven-javadoc-plugin + + 1.7 + false + + + + + + + diff --git a/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom.sha1 b/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom.sha1 new file mode 100644 index 000000000..1e9c14294 --- /dev/null +++ b/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom.sha1 @@ -0,0 +1 @@ +73bc5be628edeb297a1caf421a5a2e494798b92f \ No newline at end of file diff --git a/code/arachne/logging-3.x-MDACA.jar b/code/arachne/logging-3.x-MDACA.jar new file mode 100644 index 0000000000000000000000000000000000000000..a92e6207019dad41511a68f0cd97bb6ec27e800b GIT binary patch literal 22034 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 diff --git a/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom b/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom new file mode 100644 index 000000000..2e991d347 --- /dev/null +++ b/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom @@ -0,0 +1,231 @@ + + + 4.0.0 + + + net.bytebuddy + byte-buddy-parent + 1.14.13 + + + byte-buddy-agent + jar + + + net.bytebuddy.agent.Installer + com.sun.tools.attach + com.ibm.tools.attach + net.bytebuddy.agent,net.bytebuddy.agent.utility.nullability + i686-w64-mingw32-gcc + x86_64-w64-mingw32-gcc + + + + Byte Buddy agent + The Byte Buddy agent offers convenience for attaching an agent to the local or a remote VM. + + + + + + net.java.dev.jna + jna + ${version.jna} + provided + + + net.java.dev.jna + jna-platform + ${version.jna} + provided + + + junit + junit + ${version.junit} + test + + + org.mockito + mockito-core + ${version.mockito} + test + + + net.bytebuddy + byte-buddy + + + net.bytebuddy + byte-buddy-agent + + + + + + net.bytebuddy + byte-buddy + 1.14.12 + test + + + + + + + src/main/resources + + + .. + META-INF + true + + LICENSE + NOTICE + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.surefire} + + -Djna.library.path=${net.bytebuddy.test.jnapath} ${surefire.arguments} + + + + + org.apache.maven.plugins + maven-jar-plugin + ${version.plugin.jar} + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + org.apache.felix + maven-bundle-plugin + ${version.plugin.bundle} + + + process-classes + + manifest + + + + true + ${bytebuddy.agent} + ${bytebuddy.agent} + true + true + true + + ${attach.package.sun};resolution:="optional", + ${attach.package.ibm};resolution:="optional" + + ${packages.list} + + + + + + + + codes.rafael.modulemaker + modulemaker-maven-plugin + ${version.plugin.modulemaker} + + + org.ow2.asm + asm + ${version.asm} + + + + + prepare-package + + make-module + + + ${modulemaker.skip} + ${project.groupId}.agent + ${project.version} + true + ${packages.list} + ${packages.list} + java.instrument + + jdk.attach, + com.sun.jna, + com.sun.jna.platform + + + + + + + + + + + native-compile + + false + + + + + org.codehaus.mojo + exec-maven-plugin + ${version.plugin.exec} + + + compile-32 + compile + + exec + + + ${native.compiler.32} + + -shared + -o + ${project.basedir}/src/main/resources/win32-x86/attach_hotspot_windows.dll + ${project.basedir}/src/main/c/attach_hotspot_windows.c + + + + + compile-64 + compile + + exec + + + ${native.compiler.64} + + -shared + -o + ${project.basedir}/src/main/resources/win32-x86-64/attach_hotspot_windows.dll + ${project.basedir}/src/main/c/attach_hotspot_windows.c + + + + + + + + + + diff --git a/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom.sha1 b/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom.sha1 new file mode 100644 index 000000000..b07fe62e9 --- /dev/null +++ b/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom.sha1 @@ -0,0 +1 @@ +50a854eb457ea1bc9b94b492a22be651ed3b66a6 \ No newline at end of file diff --git a/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/_remote.repositories b/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/_remote.repositories new file mode 100644 index 000000000..781972de5 --- /dev/null +++ b/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:02 EDT 2024 +byte-buddy-parent-1.14.13.pom>central= diff --git a/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom b/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom new file mode 100644 index 000000000..3f53f8a96 --- /dev/null +++ b/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom @@ -0,0 +1,1345 @@ + + + 4.0.0 + + net.bytebuddy + byte-buddy-parent + 1.14.13 + pom + + 2014 + + Byte Buddy (parent) + + Byte Buddy is a Java library for creating Java classes at run time. + The parent artifact contains configuration information that concern all modules. + + https://bytebuddy.net + + + + + byte-buddy + byte-buddy-dep + byte-buddy-benchmark + byte-buddy-agent + byte-buddy-android + byte-buddy-android-test + byte-buddy-maven-plugin + byte-buddy-gradle-plugin + + + + Rafael Winterhalter + false + false + false + UTF-8 + 1711657269 + 1.5 + 1.6 + 1.5 + 1.6 + net.bytebuddy + https://s01.oss.sonatype.org + 9.6 + 5.12.1 + 4.13.2 + 2.28.2 + 3.2.0 + 5.1.7 + 3.10.1 + 3.0.1 + 3.0.0 + 1.6.13 + 2.11.0 + 3.4.0 + 3.2.1 + 3.5.2 + 3.0.1 + 3.2.0 + 3.3.0 + 3.2.2 + 3.12.0 + 3.1.0 + 3.6.4 + 3.0.0-M7 + 3.2.0 + 3.4.2 + 3.3.0 + 3.2.0 + 2.22.2 + 1.9.2 + 1.21 + 3.1.0 + 0.8.8 + 4.3.0 + 3.1.2 + 1.1 + 4.7.3.0 + 1.11 + 3.0 + 0.15.7 + 3.1.0 + 9.3 + 4.1.1.4 + 3.0.1 + 3.0.2 + 1.35 + 3.3.0 + 3.29.0-GA + false + false + false + false + false + git@github.com:raphw/byte-buddy.git + + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + A business-friendly OSS license + + + + + + raphw + Rafael Winterhalter + rafael.wth@gmail.com + https://rafael.codes + + developer + + +1 + + + + + github.com + https://github.com/raphw/byte-buddy/issues + + + + scm:git:${repository.url} + scm:git:${repository.url} + ${repository.url} + byte-buddy-1.14.13 + + + + + + com.google.code.findbugs + findbugs-annotations + ${version.utility.findbugs} + provided + + + + com.google.code.findbugs + jsr305 + ${version.utility.jsr305} + provided + + + + + + + + org.apache.maven.plugins + maven-release-plugin + ${version.plugin.release} + + false + extras,gpg,gradle-release + true + byte-buddy-@{project.version} + + + + + org.pitest + pitest-maven + ${version.plugin.pitest} + + + ${pitest.target}.* + + + ${pitest.target}.* + + + + + + org.jacoco + jacoco-maven-plugin + ${version.plugin.jacoco} + + ${jacoco.skip} + + net/bytebuddy/** + + + + net/bytebuddy/benchmark/generated/* + net/bytebuddy/benchmark/jmh_generated/* + + *Test* + *test* + + + + + + org.eluder.coveralls + coveralls-maven-plugin + ${version.plugin.coveralls} + + + ${project.basedir}/byte-buddy-dep/src/main/java-6 + + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${version.plugin.spotbugs} + + ${spotbugs.skip} + Max + Low + true + false + ${project.build.directory}/spotbugs + ${project.basedir}/../spotbugs-exclude.xml + + + + + com.github.ferstl + jitwatch-jarscan-maven-plugin + ${version.plugin.jitwatch} + + + + com.mycila + license-maven-plugin + ${version.plugin.license} + false + +

${project.basedir}/NOTICE
+ true + true + ${project.build.sourceEncoding} + + ${copyright.holder} + + + **/main/java/**/*.java + **/main/java-*/**/*.java + **/main/c/**/*.c + + true + + SLASHSTAR_STYLE + +
+ + + package + + format + + + +
+ + + org.sonatype.plugins + nexus-staging-maven-plugin + ${version.plugin.staging} + true + + central + ${nexus.url} + true + + + + + org.codehaus.mojo + versions-maven-plugin + ${version.plugin.versions} + + file://${session.executionRootDirectory}/version-rules.xml + + +
+ + + + + org.apache.maven.plugins + maven-clean-plugin + ${version.plugin.clean} + + + org.apache.maven.plugins + maven-jar-plugin + ${version.plugin.jar} + + + org.apache.maven.plugins + maven-resources-plugin + ${version.plugin.resources} + + + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-install-plugin + ${version.plugin.install} + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.surefire} + + ${surefire.arguments} + + ${bytebuddy.experimental} + ${bytebuddy.integration} + + + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.plugin.deploy} + + + org.apache.maven.plugins + maven-site-plugin + ${version.plugin.site} + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.plugin.compiler} + true + + ${sourcecode.main.version} + ${bytecode.main.version} + ${sourcecode.test.version} + ${bytecode.test.version} + ${project.build.sourceEncoding} + true + true + -Xlint:all,-options,-processing + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + ${sourcecode.main.version} + true + false + + + + org.apache.maven.plugins + maven-plugin-plugin + ${version.plugin.plugin} + + + org.ow2.asm + asm + ${version.asm} + + + org.ow2.asm + asm-commons + ${version.asm} + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${version.plugin.assembly} + + + org.apache.maven.plugins + maven-dependency-plugin + ${version.plugin.dependency} + + + org.apache.maven.plugins + maven-help-plugin + ${version.plugin.help} + + + +
+ + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${version.plugin.jxr} + + + + + + + central + ${nexus.url}/content/repositories/snapshots + + + central + ${nexus.url}/service/local/staging/deploy/maven2 + + + + + + + java6-compatibility + + false + 1.6 + + + 7.1 + 3.0.0 + 2.5.4 + 3.6.2 + 2.5.2 + 2.8.2 + 1.6.8 + 2.4 + 2.4 + 1.6 + 2.5 + 1.12 + 3.0.2 + 3.7.1 + 1.5.0 + 3.5.2 + 3.0.2 + 2.6 + 2.10 + 2.2 + 1.16 + 1.4.1 + 0.7.9 + 2.15 + 3.1.0-RC8 + 3.0 + 3.1.1 + 2.22.1 + 2.10.4 + 1.8 + 6.1.1 + 1.16 + 3.2.12 + 3.22.0-GA + true + true + true + + + byte-buddy + byte-buddy-dep + byte-buddy-benchmark + byte-buddy-agent + byte-buddy-android + byte-buddy-maven-plugin + byte-buddy-gradle-plugin + + + + + + org.apache.maven.plugins + maven-plugin-plugin + ${version.plugin.plugin} + + + org.ow2.asm + asm + ${version.asm.deprecated} + + + org.ow2.asm + asm-commons + ${version.asm.deprecated} + + + org.ow2.asm + asm-deprecated + ${version.asm.deprecated} + + + + + + + + + + java7-compatibility + + false + 1.7 + + + 3.1.0 + 3.5.1 + 3.8.1 + 1.6.8 + 2.8.1 + 3.1.1 + 3.2.0 + 3.11.0 + 3.0.0 + 3.3.0 + 3.1.0-RC8 + 3.2.0 + 1.17 + 1.4.1 + 0.7.9 + 3.0.0 + 0.13.1 + 3.2.4 + 3.0.0 + 6.19 + 3.2.12 + 3.23.2-GA + true + true + + + + + java9-compatibility + + false + 9 + + + + 1.6 + 1.6 + 1.6 + 1.6 + + + + + java10-compatibility + + false + 10 + + + 1.7 + 1.7 + 1.7 + 1.7 + + + + + java11-compatibility + + false + 11 + + + 1.7 + 1.7 + 1.7 + 1.7 + + + + + java12-compatibility + + false + 12 + + + 1.7 + 1.7 + 1.7 + 1.7 + + + + + java13-compatibility + + false + 13 + + + 1.7 + 1.7 + 1.7 + 1.7 + + + + + java14-compatibility + + false + 14 + + + 1.7 + 1.7 + 1.7 + 1.7 + + + + + java15-compatibility + + false + 15 + + + 8 + 8 + 8 + 8 + + + + + java16-compatibility + + false + 16 + + + 8 + 8 + 8 + 8 + true + + + + + java17-compatibility + + false + 17 + + + 8 + 8 + 8 + 8 + true + + + + + java18-compatibility + + false + 18 + + + 8 + 8 + 8 + 8 + true + + + + + java19-compatibility + + false + 19 + + + 8 + 8 + 8 + 8 + true + + + + + java20-compatibility + + false + 20 + + + 8 + 8 + 8 + 8 + true + + + + + java21-compatibility + + false + 21 + + + 8 + 8 + 8 + 8 + true + + + + + java22-compatibility + + false + 22 + + + 8 + 8 + 8 + 8 + true + + + + + java23-compatibility + + false + 23 + + + 8 + 8 + 8 + 8 + true + + + + + java6 + + false + + + 1.6 + + + + + java7 + + false + + + 1.7 + 1.7 + + + + + java8 + + false + + + 1.8 + 1.8 + + + + + java9 + + false + + + 9 + 9 + + + + + java10 + + false + + + 10 + 10 + + + + + java11 + + false + + + 11 + 11 + + + + + java12 + + false + + + 12 + 12 + + + + + java13 + + false + + + 13 + 13 + + + + + java14 + + false + + + 14 + 14 + + + + + java15 + + false + + + 15 + 15 + + + + + java16 + + false + + + 16 + 16 + + + + + java17 + + false + + + 17 + 17 + + + + + java18 + + false + + + 18 + 18 + true + + + + + java19 + + false + + + 19 + 19 + true + + + + + java20 + + false + + + 20 + 20 + true + + + + + java21 + + false + + + 21 + 21 + true + + + + + java22 + + false + + + 22 + 22 + true + + + + + java23 + + false + + + 23 + 23 + true + + + + + surefire-enable-dynamic-attach + + false + [22,) + + + -XX:+EnableDynamicAgentLoading + + + + + extras + + false + + + true + + + + + + org.apache.maven.plugins + maven-source-plugin + ${version.plugin.source} + + + + jar + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + + + jar + + + + + + + + + + gpg + + false + + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.plugin.gpg} + + + verify + + sign + + + + --pinentry-mode + loopback + + + + + + + + + + + checks + + false + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${version.plugin.checkstyle} + + + validate + + check + + + checkstyle.xml + true + true + **/generated/**/* + false + + + + + + com.puppycrawl.tools + checkstyle + ${version.checkstyle} + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${version.plugin.animal-sniffer} + + + test + + check + + + + org.codehaus.mojo.signature + java15 + 1.0 + + + + + + + org.ow2.asm + asm + ${version.asm} + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${version.plugin.enforcer} + + + + enforce + + + true + + + + org.ow2.asm:asm-tree + + + + [3.2.5,) + + + [1.6,) + + + + + + + + + + + + integration + + false + + + true + + + + + analysis + + false + + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${version.plugin.spotbugs} + + + verify + + check + + + ${spotbugs.skip} + Max + Low + true + true + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${version.plugin.japicmp} + + + verify + + cmp + + + ${japicmp.skip} + + + ${project.build.directory}/${project.artifactId}-${project.version}.jar + + + + public + \d+\.\d+\.\d+ + true + true + true + + net.bytebuddy.asm.MemberSubstitution$Replacement$Binding + net.bytebuddy.asm.MemberSubstitution$Replacement$ForElementMatchers + net.bytebuddy.asm.MemberSubstitution$Replacement$ForFirstBinding + net.bytebuddy.asm.MemberSubstitution$Replacement$NoOp + + + + + + + + + + + + checksum-collect + + false + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${version.plugin.antrun} + false + + + checksum-collect + initialize + + run + + + + + + + + + + + + + + + checksum-enforce + + false + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${version.plugin.antrun} + false + + + checksum-enforce + initialize + + run + + + + + + + + + + + + + + + + + + ${project.groupId} + byte-buddy + ${project.version} + + + ${project.groupId} + byte-buddy-dep + ${project.version} + + + ${project.groupId} + byte-buddy-agent + ${project.version} + + + ${project.groupId} + byte-buddy-benchmark + ${project.version} + + + ${project.groupId} + byte-buddy-android + ${project.version} + + + ${project.groupId} + byte-buddy-maven-plugin + ${project.version} + + + ${project.groupId} + byte-buddy-gradle-plugin + ${project.version} + + + + +
diff --git a/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom.sha1 b/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom.sha1 new file mode 100644 index 000000000..2c842612f --- /dev/null +++ b/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom.sha1 @@ -0,0 +1 @@ +963eec06a1d5eb5ed173ed0abef6210b217ddb0a \ No newline at end of file diff --git a/code/arachne/net/bytebuddy/byte-buddy/1.14.13/_remote.repositories b/code/arachne/net/bytebuddy/byte-buddy/1.14.13/_remote.repositories new file mode 100644 index 000000000..5ecd1f1fa --- /dev/null +++ b/code/arachne/net/bytebuddy/byte-buddy/1.14.13/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:02 EDT 2024 +byte-buddy-1.14.13.pom>central= diff --git a/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom b/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom new file mode 100644 index 000000000..c09d51a0e --- /dev/null +++ b/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom @@ -0,0 +1,384 @@ + + + + byte-buddy-parent + net.bytebuddy + 1.14.13 + + 4.0.0 + byte-buddy + Byte Buddy (without dependencies) + Byte Buddy is a Java library for creating Java classes at run time. + This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space. + + + + true + src/main/resources + + + + + + maven-javadoc-plugin + ${version.plugin.javadoc} + + true + + ${project.groupId}:byte-buddy-dep + + + + + + + + org.pitest + pitest-maven + ${version.plugin.pitest} + + true + + + + com.github.spotbugs + spotbugs-maven-plugin + ${version.plugin.spotbugs} + + true + + + + maven-jar-plugin + ${version.plugin.jar} + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.felix + maven-bundle-plugin + ${version.plugin.bundle} + + + process-classes + + manifest + + + + true + ${packages.list.external} + + + + + + + codes.rafael.modulemaker + modulemaker-maven-plugin + ${version.plugin.modulemaker} + + + package + + inject-module + + + ${modulemaker.skip} + ${project.groupId} + ${project.version} + true + ${packages.list.external},${packages.list.internal} + ${packages.list.external} + java.instrument, + java.management, + jdk.unsupported, + net.bytebuddy.agent, + com.sun.jna, + com.sun.jna.platform + net.bytebuddy.build.Plugin$Engine$Default + + + + + + org.ow2.asm + asm + ${version.asm} + + + + + + + + extras + + + + maven-source-plugin + 3.2.1 + + + + jar + + + true + + + + + true + + + + + + + shade-current + + + + maven-shade-plugin + 3.5.2 + + + package + + shade + + + false + true + true + true + + + org.objectweb.asm + net.bytebuddy.jar.asm + + + + + net.bytebuddy:byte-buddy-dep:* + + META-INF/MANIFEST.MF + META-INF/maven/** + + + + org.ow2.asm:* + + META-INF/MANIFEST.MF + **/module-info.class + **/LICENSE + **/NOTICE + + + + org.ow2.asm:asm-commons + + org/objectweb/asm/commons/AnnotationRemapper.** + org/objectweb/asm/commons/ClassRemapper.** + org/objectweb/asm/commons/FieldRemapper.** + org/objectweb/asm/commons/MethodRemapper.** + org/objectweb/asm/commons/ModuleHashesAttribute.** + org/objectweb/asm/commons/ModuleRemapper.** + org/objectweb/asm/commons/RecordComponentRemapper.** + org/objectweb/asm/commons/Remapper.** + org/objectweb/asm/commons/SignatureRemapper.** + org/objectweb/asm/commons/SimpleRemapper.** + + + + + + net.bytebuddy.build.Plugin$Engine$Default + + + sources-jar + + + + META-INF/LICENSE + + + + + + + + org.ow2.asm + asm + 9.6 + compile + + + org.ow2.asm + asm-commons + 9.6 + compile + + + + + + + + shade-legacy + + + + maven-shade-plugin + ${version.plugin.shade} + + + package + + shade + + + false + true + ${bytebuddy.extras} + true + + + ${shade.source} + ${shade.target} + + + + + net.bytebuddy:byte-buddy-dep:* + + META-INF/MANIFEST.MF + + + + org.ow2.asm:* + + META-INF/MANIFEST.MF + **/module-info.class + **/LICENSE + **/NOTICE + + + + org.ow2.asm:asm-commons + + org/objectweb/asm/commons/AnnotationRemapper.** + org/objectweb/asm/commons/ClassRemapper.** + org/objectweb/asm/commons/FieldRemapper.** + org/objectweb/asm/commons/MethodRemapper.** + org/objectweb/asm/commons/ModuleHashesAttribute.** + org/objectweb/asm/commons/ModuleRemapper.** + org/objectweb/asm/commons/RecordComponentRemapper.** + org/objectweb/asm/commons/Remapper.** + org/objectweb/asm/commons/SignatureRemapper.** + org/objectweb/asm/commons/SimpleRemapper.** + + + + + + net.bytebuddy.build.Plugin$Engine$Default + + + META-INF/LICENSE + + + + + + + + org.ow2.asm + asm + ${version.asm} + + + org.ow2.asm + asm-commons + ${version.asm} + + + + + + + + + + net.java.dev.jna + jna + 5.12.1 + provided + + + net.java.dev.jna + jna-platform + 5.12.1 + provided + + + com.google.code.findbugs + findbugs-annotations + 3.0.1 + provided + + + com.google.code.findbugs + jsr305 + 3.0.2 + provided + + + + true + net.bytebuddy, + net.bytebuddy.agent.builder, + net.bytebuddy.asm, + net.bytebuddy.build, + net.bytebuddy.description, + net.bytebuddy.description.annotation, + net.bytebuddy.description.enumeration, + net.bytebuddy.description.field, + net.bytebuddy.description.method, + net.bytebuddy.description.modifier, + net.bytebuddy.description.type, + net.bytebuddy.dynamic, + net.bytebuddy.dynamic.loading, + net.bytebuddy.dynamic.scaffold, + net.bytebuddy.dynamic.scaffold.inline, + net.bytebuddy.dynamic.scaffold.subclass, + net.bytebuddy.implementation, + net.bytebuddy.implementation.attribute, + net.bytebuddy.implementation.auxiliary, + net.bytebuddy.implementation.bind, + net.bytebuddy.implementation.bind.annotation, + net.bytebuddy.implementation.bytecode, + net.bytebuddy.implementation.bytecode.assign, + net.bytebuddy.implementation.bytecode.assign.primitive, + net.bytebuddy.implementation.bytecode.assign.reference, + net.bytebuddy.implementation.bytecode.collection, + net.bytebuddy.implementation.bytecode.constant, + net.bytebuddy.implementation.bytecode.member, + net.bytebuddy.matcher, + net.bytebuddy.pool, + net.bytebuddy.utility, + net.bytebuddy.utility.nullability, + net.bytebuddy.utility.privilege, + net.bytebuddy.utility.visitor, + ${shade.target}, + ${shade.target}.signature, + ${shade.target}.commons + org.objectweb.asm + net.bytebuddy.jar.asm + net.bytebuddy.utility.dispatcher + + diff --git a/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom.sha1 b/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom.sha1 new file mode 100644 index 000000000..0c7eb6498 --- /dev/null +++ b/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom.sha1 @@ -0,0 +1 @@ +022caf6bb212e382cd48452771558744188f6190 \ No newline at end of file diff --git a/code/arachne/net/java/dev/jna/jna-platform/5.5.0/_remote.repositories b/code/arachne/net/java/dev/jna/jna-platform/5.5.0/_remote.repositories new file mode 100644 index 000000000..286ec77b9 --- /dev/null +++ b/code/arachne/net/java/dev/jna/jna-platform/5.5.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:22 EDT 2024 +jna-platform-5.5.0.pom>central= diff --git a/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom b/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom new file mode 100644 index 000000000..7e34f6b43 --- /dev/null +++ b/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom @@ -0,0 +1,61 @@ + + 4.0.0 + + net.java.dev.jna + jna-platform + 5.5.0 + jar + + Java Native Access Platform + Java Native Access Platform + https://github.com/java-native-access/jna + + + + LGPL, version 2.1 + http://www.gnu.org/licenses/licenses.html + repo + + + Apache License v2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:https://github.com/java-native-access/jna + scm:git:ssh://git@github.com/java-native-access/jna.git + https://github.com/java-native-access/jna + + + + + twall + Timothy Wall + + Owner + + + + mblaesing@doppel-helix.eu + Matthias Bläsing + https://github.com/matthiasblaesing/ + + Developer + + + + + + + net.java.dev.jna + jna + 5.5.0 + + + + diff --git a/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom.sha1 b/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom.sha1 new file mode 100644 index 000000000..ef9267d1b --- /dev/null +++ b/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom.sha1 @@ -0,0 +1 @@ +a79e586606a32462c92b54b084596ba9976db000 \ No newline at end of file diff --git a/code/arachne/net/java/dev/jna/jna/5.13.0/_remote.repositories b/code/arachne/net/java/dev/jna/jna/5.13.0/_remote.repositories new file mode 100644 index 000000000..cc2aa0e7e --- /dev/null +++ b/code/arachne/net/java/dev/jna/jna/5.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:13 EDT 2024 +jna-5.13.0.pom>central= diff --git a/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom b/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom new file mode 100644 index 000000000..0960aed21 --- /dev/null +++ b/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom @@ -0,0 +1,63 @@ + + 4.0.0 + + net.java.dev.jna + jna + 5.13.0 + jar + + Java Native Access + Java Native Access + https://github.com/java-native-access/jna + + + + LGPL-2.1-or-later + https://www.gnu.org/licenses/old-licenses/lgpl-2.1 + repo + + Java Native Access (JNA) is licensed under the LGPL, version 2.1 or + later, or the Apache License, version 2.0. You can freely decide which + license you want to apply to the project. + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + Java Native Access (JNA) is licensed under the LGPL, version 2.1 or + later, or the Apache License, version 2.0. You can freely decide which + license you want to apply to the project. + + + + + + scm:git:https://github.com/java-native-access/jna + scm:git:ssh://git@github.com/java-native-access/jna.git + https://github.com/java-native-access/jna + + + + + twall + Timothy Wall + + Owner + + + + mblaesing@doppel-helix.eu + Matthias Bläsing + https://github.com/matthiasblaesing/ + + Developer + + + + + diff --git a/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom.sha1 b/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom.sha1 new file mode 100644 index 000000000..aca9f0696 --- /dev/null +++ b/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom.sha1 @@ -0,0 +1 @@ +b7cc05a5394544befc936c39080a93cc8c1e082e \ No newline at end of file diff --git a/code/arachne/net/java/dev/jna/jna/5.5.0/_remote.repositories b/code/arachne/net/java/dev/jna/jna/5.5.0/_remote.repositories new file mode 100644 index 000000000..7676959e8 --- /dev/null +++ b/code/arachne/net/java/dev/jna/jna/5.5.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:22 EDT 2024 +jna-5.5.0.pom>central= diff --git a/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom b/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom new file mode 100644 index 000000000..8d2ad8bea --- /dev/null +++ b/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom @@ -0,0 +1,53 @@ + + 4.0.0 + + net.java.dev.jna + jna + 5.5.0 + jar + + Java Native Access + Java Native Access + https://github.com/java-native-access/jna + + + + LGPL, version 2.1 + http://www.gnu.org/licenses/licenses.html + repo + + + Apache License v2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:https://github.com/java-native-access/jna + scm:git:ssh://git@github.com/java-native-access/jna.git + https://github.com/java-native-access/jna + + + + + twall + Timothy Wall + + Owner + + + + mblaesing@doppel-helix.eu + Matthias Bläsing + https://github.com/matthiasblaesing/ + + Developer + + + + + diff --git a/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom.sha1 b/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom.sha1 new file mode 100644 index 000000000..87bfc39cb --- /dev/null +++ b/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom.sha1 @@ -0,0 +1 @@ +ddecd921171d1d9b6cd8498f4b3aecda926df48b \ No newline at end of file diff --git a/code/arachne/net/java/jvnet-parent/1/_remote.repositories b/code/arachne/net/java/jvnet-parent/1/_remote.repositories new file mode 100644 index 000000000..949f91c21 --- /dev/null +++ b/code/arachne/net/java/jvnet-parent/1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:02 EDT 2024 +jvnet-parent-1.pom>central= diff --git a/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom b/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom new file mode 100644 index 000000000..01e79f1bd --- /dev/null +++ b/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom @@ -0,0 +1,157 @@ + + + + 4.0.0 + + net.java + jvnet-parent + 1 + pom + + Java.net Parent + http://java.net/ + Java.net - The Source for Java Technology Collaboration + + + scm:git:git@github.com:sonatype/jvnet-parent.git + scm:git:git@github.com:sonatype/jvnet-parent.git + https://github.com/sonatype/jvnet-parent + + + + + jvnet-nexus-snapshots + Java.net Nexus Snapshots Repository + https://maven.java.net/content/repositories/snapshots + + false + + + true + + + + + + + + jvnet-nexus-snapshots + Java.net Nexus Snapshots Repository + ${jvnetDistMgmtSnapshotsUrl} + + + jvnet-nexus-staging + Java.net Nexus Staging Repository + https://maven.java.net/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures + and checksums respectively. + + + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + forked-path + false + -Pjvnet-release + + + + + + + + UTF-8 + https://maven.java.net/content/repositories/snapshots/ + + + + + jvnet-release + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + + diff --git a/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom.sha1 b/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom.sha1 new file mode 100644 index 000000000..791e02782 --- /dev/null +++ b/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom.sha1 @@ -0,0 +1 @@ +b55a1b046dbe82acdee8edde7476eebcba1e57d8 \ No newline at end of file diff --git a/code/arachne/net/java/jvnet-parent/5/_remote.repositories b/code/arachne/net/java/jvnet-parent/5/_remote.repositories new file mode 100644 index 000000000..4a0ec5487 --- /dev/null +++ b/code/arachne/net/java/jvnet-parent/5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:01 EDT 2024 +jvnet-parent-5.pom>central= diff --git a/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom b/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom new file mode 100644 index 000000000..7e82a90e0 --- /dev/null +++ b/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom @@ -0,0 +1,265 @@ + + + + 4.0.0 + + net.java + jvnet-parent + 5 + pom + + Java.net Parent + http://java.net/ + Java.net - The Source for Java Technology Collaboration + + + scm:git:git@github.com:sonatype/jvnet-parent.git + scm:git:git@github.com:sonatype/jvnet-parent.git + https://github.com/sonatype/jvnet-parent + + + + + jvnet-nexus-snapshots + Java.net Nexus Snapshots Repository + ${jvnetDistMgmtSnapshotsUrl} + + + jvnet-nexus-staging + Java.net Nexus Staging Repository + https://maven.java.net/service/local/staging/deploy/maven2/ + + + + + + + jvnet-nexus-releases + Java.net Releases Repositories + https://maven.java.net/content/repositories/releases/ + + true + + + false + + + + + + jvnet-nexus-releases + Java.net Releases Repositories + https://maven.java.net/content/repositories/releases/ + + true + + + false + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + + forked-path + false + -Pjvnet-release ${release.arguments} + + + + + + + + UTF-8 + https://maven.java.net/content/repositories/snapshots/ + + + + + + + jvnet-release + + + + org.apache.maven.plugins + maven-source-plugin + 2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.8 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0-beta-1 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures + and checksums respectively. + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + snapshots + + + jvnet-nexus-snapshots + Java.net Nexus Snapshots Repository + https://maven.java.net/content/repositories/snapshots + + false + + + true + + + + + + jvnet-nexus-snapshots + Java.net Nexus Snapshots Repository + https://maven.java.net/content/repositories/snapshots + + false + + + true + + + + + + staging + + false + + + + jvnet-nexus-staging + Java.net Staging Repositoriy + https://maven.java.net/content/repositories/staging/ + + true + + + false + + + + + + jvnet-nexus-staging + Java.net Staging Repositoriy + https://maven.java.net/content/repositories/staging/ + + true + + + false + + + + + + promoted + + false + + + + jvnet-nexus-promoted + Java.net Promoted Repositories + https://maven.java.net/content/repositories/promoted/ + + true + + + false + + + + + + jvnet-nexus-promoted + Java.net Promoted Repositories + https://maven.java.net/content/repositories/promoted/ + + true + + + false + + + + + + diff --git a/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom.sha1 b/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom.sha1 new file mode 100644 index 000000000..cc61d297a --- /dev/null +++ b/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom.sha1 @@ -0,0 +1 @@ +5343c954d21549d039feebe5fadef023cdfc1388 \ No newline at end of file diff --git a/code/arachne/net/jcip/jcip-annotations/1.0/_remote.repositories b/code/arachne/net/jcip/jcip-annotations/1.0/_remote.repositories new file mode 100644 index 000000000..545a19bc1 --- /dev/null +++ b/code/arachne/net/jcip/jcip-annotations/1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:18 EDT 2024 +jcip-annotations-1.0.pom>central= diff --git a/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom b/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom new file mode 100644 index 000000000..be447a63e --- /dev/null +++ b/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom @@ -0,0 +1,14 @@ + + + 4.0.0 + net.jcip + jcip-annotations + jar + 1.0 + "Java Concurrency in Practice" book annotations + http://jcip.net/ + + \ No newline at end of file diff --git a/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom.sha1 b/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom.sha1 new file mode 100644 index 000000000..0a43662ec --- /dev/null +++ b/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom.sha1 @@ -0,0 +1 @@ +dc988441d471560e3dbcf7bea80d06fa6dc58003 \ No newline at end of file diff --git a/code/arachne/net/minidev/accessors-smart/2.5.1/_remote.repositories b/code/arachne/net/minidev/accessors-smart/2.5.1/_remote.repositories new file mode 100644 index 000000000..21edf2bf1 --- /dev/null +++ b/code/arachne/net/minidev/accessors-smart/2.5.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:08 EDT 2024 +accessors-smart-2.5.1.pom>central= diff --git a/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom b/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom new file mode 100644 index 000000000..4360b5af8 --- /dev/null +++ b/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom @@ -0,0 +1,252 @@ + + + 4.0.0 + net.minidev + accessors-smart + 2.5.1 + ASM based accessors helper used by json-smart + Java reflect give poor performance on getter setter an constructor calls, accessors-smart use ASM to speed up those calls. + bundle + https://urielch.github.io/ + + Chemouni Uriel + https://urielch.github.io/ + + + + uriel + Uriel Chemouni + uchemouni@gmail.com + GMT+3 + + + shoothzj + ZhangJian He + shoothzj@gmail.com + GMT+8 + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + All files under Apache 2 + + + + UTF-8 + 10 + 1.8 + 1.8 + + + scm:git:https://github.com/netplex/json-smart-v2.git + scm:git:https://github.com/netplex/json-smart-v2.git + https://github.com/netplex/json-smart-v2 + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + release-sign-artifacts + + + + performRelease + true + + + + + + + 53BE126D + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + 8 + + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.1 + + forked-path + -Psonatype-oss-release + false + false + release + deploy + + + + + + + include-sources + + + + / + true + src/main/java + + **/*.java + + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + bind-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + UTF-8 + ${maven.compiler.source} + ${maven.compiler.target} + + + + org.apache.maven.plugins + maven-resources-plugin + 3.2.0 + + UTF-8 + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + + 8 + false + + + + + attach-javadocs + + jar + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.2 + true + + + ${project.groupId}.${project.artifactId} + ${project.artifactId} + ${project.version} + + org.objectweb.asm;version="[8.0,10)",* + + + net.minidev.asm, net.minidev.asm.ex + + + + + + + + + + org.junit.jupiter + junit-jupiter-api + 5.10.0 + test + + + + org.ow2.asm + asm + 9.6 + + + diff --git a/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom.sha1 b/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom.sha1 new file mode 100644 index 000000000..440db5a13 --- /dev/null +++ b/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom.sha1 @@ -0,0 +1 @@ +b0844383f60fb68dfaef5375f3f9a31fd0cc3e0a \ No newline at end of file diff --git a/code/arachne/net/minidev/json-smart/2.5.1/_remote.repositories b/code/arachne/net/minidev/json-smart/2.5.1/_remote.repositories new file mode 100644 index 000000000..88e65cbfb --- /dev/null +++ b/code/arachne/net/minidev/json-smart/2.5.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:08 EDT 2024 +json-smart-2.5.1.pom>central= diff --git a/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom b/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom new file mode 100644 index 000000000..95c2602d2 --- /dev/null +++ b/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom @@ -0,0 +1,270 @@ + + + 4.0.0 + net.minidev + json-smart + 2.5.1 + JSON Small and Fast Parser + JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language. + bundle + https://urielch.github.io/ + + Chemouni Uriel + https://urielch.github.io/ + + + + uriel + Uriel Chemouni + uchemouni@gmail.com + GMT+3 + + + erav + Eitan Raviv + adoneitan@gmail.com + GMT+2 + + + shoothzj + ZhangJian He + shoothzj@gmail.com + GMT+8 + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + All files under Apache 2 + + + + UTF-8 + 10 + 1.8 + 1.8 + 5.10.2 + + + scm:git:https://github.com/netplex/json-smart-v2.git + scm:git:https://github.com/netplex/json-smart-v2.git + https://github.com/netplex/json-smart-v2 + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + release-sign-artifacts + + + + performRelease + true + + + + + + + 53BE126D + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.1.0 + + + sign-artifacts + verify + + sign + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + 8 + + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.1 + + forked-path + -Psonatype-oss-release + false + false + release + deploy + + + + + + + include-sources + + + + / + true + src/main/java + + **/*.java + + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + bind-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.12.1 + + UTF-8 + ${maven.compiler.source} + ${maven.compiler.target} + + + + org.apache.maven.plugins + maven-resources-plugin + 3.3.1 + + UTF-8 + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + + 8 + false + + + + + attach-javadocs + + jar + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + true + + + ${project.groupId}.${project.artifactId} + ${project.artifactId} + ${project.version} + + net.minidev.json, net.minidev.json.annotate, + net.minidev.json.parser, + net.minidev.json.reader, + net.minidev.json.writer + + + net.minidev.asm;version="1.0", + * + + + + + + + + + + org.junit.jupiter + junit-jupiter-api + ${junit.version} + test + + + + org.junit.jupiter + junit-jupiter-params + ${junit.version} + test + + + + net.minidev + accessors-smart + 2.5.1 + + + diff --git a/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom.sha1 b/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom.sha1 new file mode 100644 index 000000000..ef22ed285 --- /dev/null +++ b/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom.sha1 @@ -0,0 +1 @@ +d367a9c886ea665835020cee3839aa60219e419c \ No newline at end of file diff --git a/code/arachne/net/shibboleth/parent/17.0.1/_remote.repositories b/code/arachne/net/shibboleth/parent/17.0.1/_remote.repositories new file mode 100644 index 000000000..0b001d3e9 --- /dev/null +++ b/code/arachne/net/shibboleth/parent/17.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:29 EDT 2024 +parent-17.0.1.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom b/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom new file mode 100644 index 000000000..ec534491c --- /dev/null +++ b/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom @@ -0,0 +1,1268 @@ + + + + 4.0.0 + + net.shibboleth + parent + 17.0.1 + pom + + Shibboleth Project Java 17 Super POM + + A POM containing properties, profiles, plugin configurations, etc. that + are common across all Shibboleth projects based on the Java 17 + platform. + + + + UTF-8 + 17 + + + + + 1.10.14 + 1.76 + 1.76 + 1.23.0 + 3.13.0 + 1.2.6 + 1.3 + + org.apache.httpcomponents.client5 + httpclient5 + httpclient5-cache + 5.2.1 + org.apache.httpcomponents.core5 + httpcore5 + 5.2.2 + 21.2.0 + 32.1.2-jre + 2.15.2 + 9 + 2.0.1 + 2.0.1 + 2.0.1 + 3.1.10 + org.eclipse.jetty + 1.15.4 + 2.2.0 + 3.9.0 + 7.7.1 + 6.0.9 + 4.2.19 + 1.7.14 + 15.3 + 1.0.0 + org.slf4j + 2.0.7 + 1.4.11 + org.springframework + 6.0.11 + org.springframework.webflow + 3.0.0 + 2.3 + 3.0.2 + 2.9.1 + + 3.2.0 + 1.0.14 + ${basedir}/target/m2SignatureReport.txt + + 8.45.1 + 3.1.2 + checkstyle.xml + + 0.8.8 + 3.5.0 + 3.1.0 + 3.10.1 + 3.3.0 + 3.0.0-M2 + 3.0.0-M3 + 3.0.1 + 3.0.0-M1 + 3.2.2 + 3.3.0.2 + 3.2.0 + 3.2.2 + 3.2.0 + 3.11.0 + 3.2.1 + 3.1.2 + 2.14.1 + 3.3.2 + + https://build.shibboleth.net/nexus/content/sites/site/ + + //shibboleth.net/home/javasites/staging/ + + scm:git:https://git.shibboleth.net/git/ + scm:git:git@git.shibboleth.net: + https://git.shibboleth.net/view/?p= + + + https://google.github.io/guava/releases/${guava.version}/api/docs + https://docs.oracle.com/en/java/javase/${maven.compiler.release}/docs/api + https://jakarta.ee/specifications/platform/${jakarta.ee.version}/apidocs + http://www.ldaptive.org/javadocs + https://docs.spring.io/spring/docs/${spring.version}/javadoc-api + https://docs.spring.io/spring-webflow/docs/${spring-webflow.version}/api + + + 9.0.0-SNAPSHOT + 4.0.1 + + + ${shibboleth.site.url}java-shib-shared/${java-shib-shared.version}/apidocs + ${shibboleth.site.url}java-opensaml/${opensaml.version}/apidocs + + + + + + + + + + + + + + + + + + + + + ${slf4j.groupId} + slf4j-api + ${slf4j.version} + + + commons-codec + commons-codec + 1.16.0 + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + com.google.guava + guava + ${guava.version} + + + org.apache.commons + commons-dbcp2 + 2.9.0 + + + org.apache.commons + commons-lang3 + ${commons.lang3.version} + + + org.apache.commons + commons-compress + ${commons.compress.version} + + + com.duosecurity + DuoWeb + ${duoweb.version} + + + io.dropwizard.metrics + metrics-bom + ${metrics.version} + pom + import + + + ${httpclient.httpcore.groupId} + ${httpclient.httpcore.artifactId} + ${httpclient.httpcore.version} + + + ${httpclient.groupId} + ${httpclient.artifactId} + ${httpclient.version} + + + ${httpclient.groupId} + ${httpclient.cache.artifactId} + ${httpclient.version} + + + + org.codehaus.janino + janino + ${janino.version} + + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version} + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + ${jackson.version} + + + com.github.jasminb + jsonapi-converter + 0.13 + + + + com.squareup.retrofit2 + retrofit + + + + + ${spring.groupId} + spring-framework-bom + ${spring.version} + pom + import + + + ${spring-webflow.groupId} + spring-webflow + ${spring-webflow.version} + + + commons-logging + commons-logging + + + + + org.cryptacular + cryptacular + ${cryptacular.version} + + + org.bouncycastle + bcpg-jdk18on + ${bouncycastle.pg.version} + + + org.bouncycastle + bcprov-jdk18on + ${bouncycastle.version} + + + org.bouncycastle + bcpkix-jdk18on + ${bouncycastle.version} + + + org.bouncycastle + bcutil-jdk18on + ${bouncycastle.version} + + + + org.ldaptive + ldaptive + ${ldaptive.version} + + + com.unboundid + unboundid-ldapsdk + ${unboundid.version} + test + + + org.apache.velocity + velocity-engine-core + ${velocity.version} + + + org.apache.santuario + xmlsec + ${xmlsec.version} + + + jakarta.xml.bind + jakarta.xml.bind-api + + + com.fasterxml.woodstox + woodstox-core + + + + + com.beust + jcommander + 1.81 + + + commons-collections + commons-collections + 3.2.2 + + + + + org.apache.ant + ant + ${ant.version} + provided + + + org.apache.ant + ant-launcher + ${ant.version} + provided + + + jakarta.activation + jakarta.activation-api + ${jakarta.activation.version} + provided + + + jakarta.json + jakarta.json-api + ${jakarta.json.version} + provided + + + jakarta.mail + jakarta.mail-api + ${jakarta.mail.version} + runtime + + + jakarta.servlet.jsp + jakarta.servlet.jsp-api + 3.0.0 + provided + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + provided + + + + + ${slf4j.groupId} + jcl-over-slf4j + ${slf4j.version} + provided + + + + + ${slf4j.groupId} + jul-to-slf4j + ${slf4j.version} + provided + + + ${slf4j.groupId} + log4j-over-slf4j + ${slf4j.version} + provided + + + + + ch.qos.logback + logback-classic + ${logback.version} + runtime + + + javax.mail + mail + + + + + ch.qos.logback + logback-core + ${logback.version} + runtime + + + javax.mail + mail + + + + + ch.qos.logback + logback-access + ${logback.version} + runtime + + + javax.mail + mail + + + + + com.sun.activation + jakarta.activation + ${jakarta.activation.version} + runtime + + + com.sun.mail + jakarta.mail + ${jakarta.mail.version} + runtime + + + org.glassfish + jakarta.json + ${jakarta.json.version} + runtime + + + org.mozilla + rhino + ${rhino.version} + runtime + + + org.mozilla + rhino-runtime + ${rhino.version} + runtime + + + + + org.testng + testng + ${testng.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + org.xmlunit + xmlunit-core + ${xmlunit.version} + test + + + javax.xml.bind + jaxb-api + + + + + org.xmlunit + xmlunit-matchers + ${xmlunit.version} + test + + + ${spring.groupId} + spring-test + ${spring.version} + test + + + org.hsqldb + hsqldb + 2.7.2 + test + + + org.jsoup + jsoup + ${jsoup.version} + test + + + + + + + release + https://build.shibboleth.net/nexus/content/repositories/releases + + + snapshot + https://build.shibboleth.net/nexus/content/repositories/snapshots + + + site + scp:${shibboleth.site.deploy.url} + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle-plugin.version} + + + com.puppycrawl.tools + checkstyle + ${checkstyle.version} + + + + + org.apache.maven.plugins + maven-clean-plugin + ${maven-clean-plugin.version} + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + true + + + + org.apache.maven.plugins + maven-dependency-plugin + ${maven-dependency-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + true + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${maven-enforcer-plugin.version} + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven-gpg-plugin.version} + + + org.apache.maven.plugins + maven-install-plugin + ${maven-install-plugin.version} + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + + net.shibboleth.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + + ${javase.link} + ${jakartaee.link} + ${spring-framework.link} + ${spring-webflow.link} + ${guava.link} + ${ldaptive.link} + ${java-shib-shared.link} + ${java-opensaml.link} + + true + false + private + true + ${project.name} ${project.version} API + ${project.name} ${project.version} API + + + parent + t + Parent: + + + child + t + Child: + + + added + t + Added: + + + removed + t + Removed: + + + event + t + Event: + + + pre + t + Precondition: + + + post + t + Postcondition: + + + + + + org.apache.maven.plugins + maven-resources-plugin + ${maven-resources-plugin.version} + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + org.apache.maven.wagon + wagon-webdav-jackrabbit + 3.5.3 + + + org.apache.maven.wagon + wagon-ssh + 3.5.3 + + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + org.apache.maven.surefire + surefire-testng + ${maven-surefire-plugin.version} + + + + + org.codehaus.mojo + versions-maven-plugin + ${maven-versions-plugin.version} + + + org.apache.maven.plugins + maven-war-plugin + ${maven-war-plugin.version} + + + org.jacoco + jacoco-maven-plugin + ${jacoco-maven-plugin.version} + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + ${checkstyle.configLocation} + + + + org.apache.maven.plugins + maven-jar-plugin + + true + + **/.gitkeep + + + + + + test-jar + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + true + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + + maven-version + + enforce + + + + + 3.8.4 + + + true + + + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle-plugin.version} + + ${checkstyle.configLocation} + + + + + net.shibboleth.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + + ${javase.link} + ${jakartaee.link} + ${spring-framework.link} + ${spring-webflow.link} + ${guava.link} + ${ldaptive.link} + ${java-shib-shared.link} + ${java-opensaml.link} + + true + false + private + true + ${project.name} ${project.version} API + ${project.name} ${project.version} API + + + parent + t + Parent: + + + child + t + Child: + + + added + t + Added: + + + removed + t + Removed: + + + event + t + Event: + + + pre + t + Precondition: + + + post + t + Postcondition: + + + + + + aggregate + + aggregate + test-aggregate + + + + non-aggregate + + javadoc-no-fork + test-javadoc-no-fork + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${maven-jxr-plugin.version} + + true + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${maven-project-info-reports-plugin.version} + + false + false + + + + + index + licenses + distribution-management + mailing-lists + issue-management + scm + ci-management + team + dependencies + dependency-management + plugins + plugin-management + + + + + + + + + + + + release + + + + org.apache.maven.plugins + maven-compiler-plugin + + true + true + true + true + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + net.shibboleth.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + test-jar + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + + + + + + sign + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + + + lint + + + + org.apache.maven.plugins + maven-compiler-plugin + + true + true + true + -Xlint:unchecked + + + + + + + + + check-m2 + + false + + .check-m2 + + + !no-check-m2 + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + net.shibboleth.maven.enforcer.rules + maven-dist-enforcer + ${maven-dist-enforcer.version} + + + + + M2-enforce + install + + enforce + + + + + net.shibboleth.maven.enforcer.rules + maven-dist-enforcer-data + ${maven-dist-enforcer-data.version} + ${basedir}/src/main/enforcer/shibbolethKeys.gpg + ${basedir} + + + false + false + false + false + true + ${maven-dist-enforcer-data.m2ReportPath} + + + + + + + + + + + + + nojacoco + + [19, + + + + + org.jacoco + jacoco-maven-plugin + + true + + + + + + + + + + + http://shibboleth.net/ + + 1999 + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Shibboleth Announce + mailto:announce-subscribe@shibboleth.net + mailto:announce-unsubscribe@shibboleth.net + http://marc.info/?l=shibboleth-announce + + + Shibboleth Users + mailto:users-subscribe@shibboleth.net + mailto:users-unsubscribe@shibboleth.net + users@shibboleth.net + http://marc.info/?l=shibboleth-users + + + Shibboleth Development + mailto:dev-subscribe@shibboleth.net + mailto:dev-unsubscribe@shibboleth.net + dev@shibboleth.net + http://marc.info/?l=shibboleth-dev + + + + + JIRA + https://issues.shibboleth.net/ + + + + ${shibboleth.scm.connection}java-parent-project-v3 + ${shibboleth.scm.developerConnection}java-parent-project-v3 + ${shibboleth.scm.url}java-parent-project-v3.git + + + + + iay + Ian Young + Ian A. Young + https://iay.org.uk + 0 + + + lajoie + Chad La Joie + -5 + + + putmanb + Brent Putman + Georgetown University + http://www.georgetown.edu + -5 + + + rdw + Rod Widdowson + Steading System Software + http://SteadingSoftware.com + 0 + + + scantor + Scott Cantor + The Ohio State University + http://www.osu.edu + -5 + + + dfisher + Daniel Fisher + Virginia Tech + http://www.vt.edu + -5 + + + philsmart + Phil Smart + Jisc + https://www.jisc.ac.uk + 0 + + + mikkonen + Henri Mikkonen + 3 + + + + + + Nathan Klingenstein + Internet2 + http://internet2.edu + -7 + + + + + Shibboleth Consortium + https://shibboleth.net + + + diff --git a/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.lastUpdated b/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.lastUpdated new file mode 100644 index 000000000..6b15a77f5 --- /dev/null +++ b/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:29 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:parent\:pom\:17.0.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139869154 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139869159 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139869272 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139869450 +https\://repo1.maven.org/maven2/.lastUpdated=1721139869064 diff --git a/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.sha1 b/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.sha1 new file mode 100644 index 000000000..701566d79 --- /dev/null +++ b/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.sha1 @@ -0,0 +1 @@ +d25f329ce02cc67ff925b6b2c1f1273ef2f87e58 \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-networking/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-networking/9.0.0/_remote.repositories new file mode 100644 index 000000000..16e057013 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-networking/9.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:35 EDT 2024 +shib-networking-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom b/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom new file mode 100644 index 000000000..2e6c9e2d3 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom @@ -0,0 +1,84 @@ + + + + 4.0.0 + + + net.shibboleth + shib-shared-parent + 9.0.0 + + + Shibboleth Shared :: Networking Support + shib-networking + jar + + + net.shibboleth.networking + ${project.basedir}/../resources/checkstyle/checkstyle.xml + + + + + + ${project.groupId} + shib-support + ${project.version} + + + + com.google.guava + guava + + + + ${httpclient.groupId} + ${httpclient.artifactId} + + + ${httpclient.groupId} + ${httpclient.cache.artifactId} + + + ${httpclient.httpcore.groupId} + ${httpclient.httpcore.artifactId} + + + + + jakarta.servlet + jakarta.servlet-api + provided + + + + + + + ${spring.groupId} + spring-test + test + + + + ${spring.groupId} + spring-web + test + + + + + ${shibboleth.scm.connection}java-shib-shared + ${shibboleth.scm.developerConnection}java-shib-shared + ${shibboleth.scm.url}java-shib-shared.git + + + + + site + scp:${shared-module.site.url} + + + + diff --git a/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.lastUpdated new file mode 100644 index 000000000..a9f2209ad --- /dev/null +++ b/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:35 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-networking\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139875097 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139875105 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139875215 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139875345 +https\://repo1.maven.org/maven2/.lastUpdated=1721139875000 diff --git a/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.sha1 new file mode 100644 index 000000000..3b405a775 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.sha1 @@ -0,0 +1 @@ +4f0bd9519f1acf679067bc4ec9e43d780061b0c9 \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-security/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-security/9.0.0/_remote.repositories new file mode 100644 index 000000000..2a5870a47 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-security/9.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:34 EDT 2024 +shib-security-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom b/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom new file mode 100644 index 000000000..a51de54c4 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom @@ -0,0 +1,93 @@ + + + + 4.0.0 + + + net.shibboleth + shib-shared-parent + 9.0.0 + + + Shibboleth Shared :: Security Support + shib-security + jar + + + net.shibboleth.shared.security + ${project.basedir}/../resources/checkstyle/checkstyle.xml + + + + + + ${project.groupId} + shib-support + ${project.version} + + + + ${project.groupId} + shib-networking + ${project.version} + + + + com.google.guava + guava + + + + commons-codec + commons-codec + + + + org.bouncycastle + bcprov-jdk18on + + + org.bouncycastle + bcpkix-jdk18on + + + + + com.beust + jcommander + true + + + + + jakarta.servlet + jakarta.servlet-api + provided + + + + + + + ${spring.groupId} + spring-core + test + + + + + ${shibboleth.scm.connection}java-shib-shared + ${shibboleth.scm.developerConnection}java-shib-shared + ${shibboleth.scm.url}java-shib-shared.git + + + + + site + scp:${shared-module.site.url} + + + + + diff --git a/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.lastUpdated new file mode 100644 index 000000000..b3f5fe2c2 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:34 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-security\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139874573 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139874581 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139874794 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139874924 +https\://repo1.maven.org/maven2/.lastUpdated=1721139874485 diff --git a/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.sha1 new file mode 100644 index 000000000..713572b6f --- /dev/null +++ b/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.sha1 @@ -0,0 +1 @@ +ad95e28a4fdac166904655468fd251e9c08c07ca \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/_remote.repositories new file mode 100644 index 000000000..2034b60ab --- /dev/null +++ b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:29 EDT 2024 +shib-shared-bom-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom new file mode 100644 index 000000000..c3f3656f8 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom @@ -0,0 +1,85 @@ + + + + 4.0.0 + + + net.shibboleth + shib-shared-parent + 9.0.0 + + + Shibboleth Shared Components :: BOM + Bill of Materials + shib-shared-bom + pom + + + + ${basedir}/m2SignatureReport.txt + + + + + + ${project.groupId} + shib-cli + ${project.version} + + + ${project.groupId} + shib-networking + ${project.version} + + + ${project.groupId} + shib-networking-spring + ${project.version} + + + ${project.groupId} + shib-security + ${project.version} + + + ${project.groupId} + shib-security-spring + ${project.version} + + + ${project.groupId} + shib-service + ${project.version} + + + ${project.groupId} + shib-spring + ${project.version} + + + ${project.groupId} + shib-support + ${project.version} + + + ${project.groupId} + shib-velocity + ${project.version} + + + ${project.groupId} + shib-velocity-spring + ${project.version} + + + + ${project.groupId} + shib-testing + ${project.version} + test + + + + + diff --git a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.lastUpdated new file mode 100644 index 000000000..2e6e13692 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:29 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-shared-bom\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139869632 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139869639 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139869755 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139869887 +https\://repo1.maven.org/maven2/.lastUpdated=1721139869536 diff --git a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.sha1 new file mode 100644 index 000000000..1a54b72a4 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.sha1 @@ -0,0 +1 @@ +eb82278d1940b0f2b57f0655d2cf2206da650439 \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/_remote.repositories new file mode 100644 index 000000000..a59905379 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:30 EDT 2024 +shib-shared-parent-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom new file mode 100644 index 000000000..9a5d6a27a --- /dev/null +++ b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom @@ -0,0 +1,142 @@ + + + + 4.0.0 + + + net.shibboleth + parent + 17.0.1 + + + Shibboleth Shared Components + + A multi-module project aggregating a number of shared + Shibboleth components. + + These were previously known as java-support and spring-extensions. + + + shib-shared-parent + 9.0.0 + pom + + + + shib-support + shib-spring + + + shib-cli + shib-networking + shib-networking-spring + shib-security + shib-security-spring + shib-service + shib-testing + shib-velocity + shib-velocity-spring + + shib-shared-bom + + + + + ${project.basedir}/resources/checkstyle/checkstyle.xml + ${shibboleth.site.deploy.url}java-shib-shared/${project.version}/ + ${shared-parent.site.url}${project.artifactId} + + + + + + ${slf4j.groupId} + slf4j-api + + + com.google.code.findbugs + jsr305 + + + + + + + + + org.testng + testng + test + + + ch.qos.logback + logback-classic + test + + + + + + + + + + + + + + + + + ${shibboleth.scm.connection}java-shib-shared + ${shibboleth.scm.developerConnection}java-shib-shared + ${shibboleth.scm.url}java-shib-shared.git + + + + + site + scp:${shibboleth.site.deploy.url}java-shib-shared/${project.version}/ + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${automatic.module.name} + true + + + + + + + + + + + get-nashorn + + [15, + + + + org.openjdk.nashorn + nashorn-core + ${nashorn.jdk.version} + test + + + + + + diff --git a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.lastUpdated new file mode 100644 index 000000000..01bf16515 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:30 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-shared-parent\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139870094 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139870101 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139870220 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139870338 +https\://repo1.maven.org/maven2/.lastUpdated=1721139869978 diff --git a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.sha1 new file mode 100644 index 000000000..9f31cc9e1 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.sha1 @@ -0,0 +1 @@ +733f919b32f5ff98f316e634fb66809b77d36f9d \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-support/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-support/9.0.0/_remote.repositories new file mode 100644 index 000000000..47bebedac --- /dev/null +++ b/code/arachne/net/shibboleth/shib-support/9.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:32 EDT 2024 +shib-support-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom b/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom new file mode 100644 index 000000000..132b58564 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom @@ -0,0 +1,70 @@ + + + + 4.0.0 + + + net.shibboleth + shib-shared-parent + 9.0.0 + + + Shibboleth Shared :: Generic Support Classes + shib-support + jar + + + net.shibboleth.shared.support + ${project.basedir}/../resources/checkstyle/checkstyle.xml + + + + + + commons-codec + commons-codec + + + com.google.guava + guava + + + + + + + + + ch.qos.logback + logback-classic + test + + + ch.qos.logback + logback-core + test + + + + ${spring.groupId} + spring-core + test + + + + + + scm:git:https://git.shibboleth.net/git/${project.artifactId} + scm:git:git@git.shibboleth.net:${project.artifactId} + https://git.shibboleth.net/view/?p=${project.artifactId}.git + + + + + site + scp:${shared-module.site.url} + + + + diff --git a/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.lastUpdated new file mode 100644 index 000000000..86f4ef4f1 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:32 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-support\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139872661 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139872668 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139872782 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139872923 +https\://repo1.maven.org/maven2/.lastUpdated=1721139872552 diff --git a/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.sha1 new file mode 100644 index 000000000..c4bdd6abd --- /dev/null +++ b/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.sha1 @@ -0,0 +1 @@ +28ea6ba5e546db5e0477e4db0a09dbe03c10f1c1 \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-velocity/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-velocity/9.0.0/_remote.repositories new file mode 100644 index 000000000..8f6694dca --- /dev/null +++ b/code/arachne/net/shibboleth/shib-velocity/9.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:41 EDT 2024 +shib-velocity-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom b/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom new file mode 100644 index 000000000..ca89dfa3c --- /dev/null +++ b/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom @@ -0,0 +1,58 @@ + + + + 4.0.0 + + + net.shibboleth + shib-shared-parent + 9.0.0 + + + Shibboleth Shared :: Velocity Support + shib-velocity + jar + + + net.shibboleth.shared.velocity + ${project.basedir}/../resources/checkstyle/checkstyle.xml + + + + + + ${project.groupId} + shib-support + ${project.version} + + + + com.google.guava + guava + + + + org.apache.velocity + velocity-engine-core + + + + + + + + + ${shibboleth.scm.connection}java-shib-shared + ${shibboleth.scm.developerConnection}java-shib-shared + ${shibboleth.scm.url}java-shib-shared.git + + + + + site + scp:${shared-module.site.url} + + + + diff --git a/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.lastUpdated new file mode 100644 index 000000000..805beafbe --- /dev/null +++ b/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:41 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-velocity\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139881639 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139881646 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139881752 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139881889 +https\://repo1.maven.org/maven2/.lastUpdated=1721139881544 diff --git a/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.sha1 new file mode 100644 index 000000000..8ab5a34f6 --- /dev/null +++ b/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.sha1 @@ -0,0 +1 @@ +799eb068a6bf488578267685a23c759d41ea299a \ No newline at end of file diff --git a/code/arachne/org/antlr/antlr4-master/4.13.0/_remote.repositories b/code/arachne/org/antlr/antlr4-master/4.13.0/_remote.repositories new file mode 100644 index 000000000..7f856b8bc --- /dev/null +++ b/code/arachne/org/antlr/antlr4-master/4.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +antlr4-master-4.13.0.pom>central= diff --git a/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom b/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom new file mode 100644 index 000000000..5ed8421b1 --- /dev/null +++ b/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom @@ -0,0 +1,181 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 9 + + org.antlr + antlr4-master + 4.13.0 + pom + + ANTLR 4 + ANTLR 4 Master Build POM + https://www.antlr.org/ + 1992 + + ANTLR + https://www.antlr.org/ + + + + 3.8 + + + + + BSD-3-Clause + https://www.antlr.org/license.html + repo + + + + + + Terence Parr + https://github.com/parrt + + Project lead - ANTLR + + + + Sam Harwell + http://tunnelvisionlabs.com + + Developer + + + + Eric Vergnaud + + Developer - JavaScript, C#, Python 2, Python 3 + + + + Peter Boyer + + Developer - Go + + + + Jim Idle + jimi@idle.ws + https://www.linkedin.com/in/jimidle/ + + Developer - Maven Plugin + Developer - Go runtime + + + + Mike Lischke + + Developer - C++ Target + + + + Tom Everett + + Developer + + + + + + runtime/Java + tool + antlr4-maven-plugin + tool-testsuite + runtime-testsuite + + + + UTF-8 + UTF-8 + 1684689931 + true + 11 + 11 + + + + + antlr-discussion + https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion + + + + + GitHub Issues + https://github.com/antlr/antlr4/issues + + + + https://github.com/antlr/antlr4/tree/master + scm:git:git://github.com/antlr/antlr4.git + scm:git:git@github.com:antlr/antlr4.git + 4.13.0 + + + + + + resources + + + + + test + + + + + maven-clean-plugin + 3.1.0 + + + + runtime/Swift/.build + + + runtime/Swift/Tests/Antlr4Tests/gen + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + ${maven.compiler.source} + ${maven.compiler.target} + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M6 + + + + + diff --git a/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom.sha1 b/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom.sha1 new file mode 100644 index 000000000..a962397c0 --- /dev/null +++ b/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom.sha1 @@ -0,0 +1 @@ +d8cb4559e841b8fb7fb73da13b6fb28aad20e8c6 \ No newline at end of file diff --git a/code/arachne/org/antlr/antlr4-master/4.5.1-1/_remote.repositories b/code/arachne/org/antlr/antlr4-master/4.5.1-1/_remote.repositories new file mode 100644 index 000000000..bef3126d6 --- /dev/null +++ b/code/arachne/org/antlr/antlr4-master/4.5.1-1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:09 EDT 2024 +antlr4-master-4.5.1-1.pom>central= diff --git a/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom b/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom new file mode 100644 index 000000000..a383a9c0d --- /dev/null +++ b/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom @@ -0,0 +1,128 @@ + + 4.0.0 + + org.sonatype.oss + oss-parent + 9 + + org.antlr + antlr4-master + 4.5.1-1 + pom + + ANTLR 4 + ANTLR 4 Master Build POM + http://www.antlr.org + 1992 + + ANTLR + http://www.antlr.org + + + + + The BSD License + http://www.antlr.org/license.html + repo + + + + + + Terence Parr + http://antlr.org/wiki/display/~admin/Home + + Project lead - ANTLR + + + + Sam Harwell + http://tunnelvisionlabs.com + + Developer + + + + Eric Vergnaud + + Developer - JavaScript, C#, Python 2, Python 3 + + + + Jim Idle + jimi@idle.ws + http://www.linkedin.com/in/jimidle + + Developer - Maven Plugin + + + + + + runtime/Java + tool + antlr4-maven-plugin + tool-testsuite + runtime-testsuite + + + + UTF-8 + UTF-8 + true + 1.6 + 1.6 + + + + + antlr-discussion + https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion + + + + + GitHub Issues + https://github.com/antlr/antlr4/issues + + + + https://github.com/antlr/antlr4/tree/master + scm:git:git://github.com/antlr/antlr4.git + scm:git:git@github.com:antlr/antlr4.git + HEAD + + + + + + resources + + + test + + + test + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${maven.compiler.source} + ${maven.compiler.target} + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -Xdoclint:none + + + + + + diff --git a/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom.sha1 b/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom.sha1 new file mode 100644 index 000000000..41171d6c9 --- /dev/null +++ b/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom.sha1 @@ -0,0 +1 @@ +b572c96b564e13b1d81656351b698d605c6c7f08 \ No newline at end of file diff --git a/code/arachne/org/antlr/antlr4-runtime/4.13.0/_remote.repositories b/code/arachne/org/antlr/antlr4-runtime/4.13.0/_remote.repositories new file mode 100644 index 000000000..a81d64463 --- /dev/null +++ b/code/arachne/org/antlr/antlr4-runtime/4.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +antlr4-runtime-4.13.0.pom>central= diff --git a/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom b/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom new file mode 100644 index 000000000..177dc9f62 --- /dev/null +++ b/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom @@ -0,0 +1,121 @@ + + + + 4.0.0 + + org.antlr + antlr4-master + 4.13.0 + ../../pom.xml + + antlr4-runtime + ANTLR 4 Runtime + The ANTLR 4 Runtime + + + 3.8 + + + + + dot + + + + src + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + + jar + + + + + + us.bryon + graphviz-maven-plugin + 1.0 + + + + dot + + + ${dot.path} + ${project.build.directory}/apidocs + svg + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + 1.8 + false + + + + + javadoc + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.7 + + + bundle-manifest + process-classes + + + org.antlr.antlr4.runtime + org.antlr.antlr4-runtime + org.antlr.v4.gui;resolution:=optional, * + + + + manifest + + + + + + maven-jar-plugin + 3.2.0 + + + + true + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 8 + 1.8 + 1.8 + + + + + diff --git a/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom.sha1 b/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom.sha1 new file mode 100644 index 000000000..56106e176 --- /dev/null +++ b/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom.sha1 @@ -0,0 +1 @@ +bd7a583a403c741d7b33674d693a7d3787a41519 \ No newline at end of file diff --git a/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/_remote.repositories b/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/_remote.repositories new file mode 100644 index 000000000..8e7345031 --- /dev/null +++ b/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:09 EDT 2024 +antlr4-runtime-4.5.1-1.pom>central= diff --git a/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom b/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom new file mode 100644 index 000000000..8a1574628 --- /dev/null +++ b/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom @@ -0,0 +1,66 @@ + + 4.0.0 + + org.antlr + antlr4-master + 4.5.1-1 + ../../pom.xml + + antlr4-runtime + ANTLR 4 Runtime + The ANTLR 4 Runtime + + + src + + + org.antlr + antlr4-maven-plugin + 4.5 + + + antlr + + src + + + antlr4 + + + + + + org.apache.felix + maven-bundle-plugin + 2.5.4 + + + bundle-manifest + process-classes + + + org.antlr.antlr4-runtime-osgi + ANTLR 4 Runtime + ANTLR + org.antlr + ${project.version} + + + + manifest + + + + + + maven-jar-plugin + 2.4 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + diff --git a/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom.sha1 b/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom.sha1 new file mode 100644 index 000000000..760f7d5e9 --- /dev/null +++ b/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom.sha1 @@ -0,0 +1 @@ +18bc9db6e89af5fe275a45b7994588db1418c780 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/13/_remote.repositories b/code/arachne/org/apache/apache/13/_remote.repositories new file mode 100644 index 000000000..bc50d850a --- /dev/null +++ b/code/arachne/org/apache/apache/13/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +apache-13.pom>central= diff --git a/code/arachne/org/apache/apache/13/apache-13.pom b/code/arachne/org/apache/apache/13/apache-13.pom new file mode 100644 index 000000000..57cde9ab1 --- /dev/null +++ b/code/arachne/org/apache/apache/13/apache-13.pom @@ -0,0 +1,384 @@ + + + + + + 4.0.0 + + + org.apache + apache + 13 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + http://www.apache.org/ + + The Apache Software Foundation + http://www.apache.org/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + apache.snapshots + Apache Snapshot Repository + http://repository.apache.org/snapshots + + false + + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-13 + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-13 + http://svn.apache.org/viewvc/maven/pom/tags/apache-13 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + http://www.apache.org/images/asf_logo_wide.gif + UTF-8 + source-release + true + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.6 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2.1 + + + org.apache.maven.plugins + maven-clean-plugin + 2.5 + + + org.apache.maven.plugins + maven-compiler-plugin + 2.5.1 + + 1.4 + 1.4 + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.7 + + + org.apache.maven.plugins + maven-docck-plugin + 1.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.12.4 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.4 + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + org.apache.maven.plugins + maven-invoker-plugin + 1.7 + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.2 + + + + org.apache.maven.plugins + maven-release-plugin + 2.3.2 + + false + deploy + -Papache-release ${arguments} + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.4 + + + org.apache.maven.plugins + maven-resources-plugin + 2.6 + + + org.apache.maven.plugins + maven-scm-plugin + 1.8 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.0-beta-2 + + + org.apache.maven.plugins + maven-site-plugin + 3.2 + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.12.4 + + + org.apache.rat + apache-rat-plugin + 0.8 + + + org.codehaus.mojo + clirr-maven-plugin + 2.4 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + + + + + + apache-release + + + + + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.4 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + gnu + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + ${gpg.passphrase} + ${gpg.useagent} + + + + + sign + + + + + + + + + + + maven-3 + + + + ${basedir} + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/13/apache-13.pom.sha1 b/code/arachne/org/apache/apache/13/apache-13.pom.sha1 new file mode 100644 index 000000000..e615620d7 --- /dev/null +++ b/code/arachne/org/apache/apache/13/apache-13.pom.sha1 @@ -0,0 +1 @@ +15aff1faaec4963617f07dbe8e603f0adabc3a12 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/16/_remote.repositories b/code/arachne/org/apache/apache/16/_remote.repositories new file mode 100644 index 000000000..71ef19bbb --- /dev/null +++ b/code/arachne/org/apache/apache/16/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:19 EDT 2024 +apache-16.pom>central= diff --git a/code/arachne/org/apache/apache/16/apache-16.pom b/code/arachne/org/apache/apache/16/apache-16.pom new file mode 100644 index 000000000..4f5dba50a --- /dev/null +++ b/code/arachne/org/apache/apache/16/apache-16.pom @@ -0,0 +1,415 @@ + + + + + + 4.0.0 + + + org.apache + apache + 16 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + http://www.apache.org/ + + The Apache Software Foundation + http://www.apache.org/ + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + 2.2.1 + + + + scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-16 + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-16 + http://svn.apache.org/viewvc/maven/pom/tags/apache-16 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + http://www.apache.org/images/asf_logo_wide.gif + UTF-8 + UTF-8 + source-release + true + + + 1.4 + 1.4 + + + + + apache.snapshots + Apache Snapshot Repository + http://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.7 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.4.1 + + + org.apache.maven.plugins + maven-clean-plugin + 2.5 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + ${maven.compiler.source} + ${maven.compiler.target} + + + + org.apache.maven.plugins + maven-dependency-plugin + 2.8 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.3.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.17 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 1.9 + + + org.apache.maven.plugins + maven-jar-plugin + 2.5 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.3 + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.1 + + false + deploy + -Papache-release ${arguments} + 10 + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.5 + + + org.apache.maven.plugins + maven-resources-plugin + 2.6 + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.2 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.0-beta-2 + + + org.apache.maven.plugins + maven-site-plugin + 3.4 + + + org.apache.maven + maven-archiver + 2.5 + + + org.codehaus.plexus + plexus-archiver + 2.4.4 + + + + + org.apache.maven.plugins + maven-source-plugin + 2.3 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.17 + + + org.apache.rat + apache-rat-plugin + 0.11 + + + org.codehaus.mojo + clirr-maven-plugin + 2.6.1 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + + + + + + apache-release + + + + + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.4 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + gnu + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + + sign + + + + + + + + + + + maven-3 + + + + ${basedir} + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.1 + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/16/apache-16.pom.sha1 b/code/arachne/org/apache/apache/16/apache-16.pom.sha1 new file mode 100644 index 000000000..9bfc9d183 --- /dev/null +++ b/code/arachne/org/apache/apache/16/apache-16.pom.sha1 @@ -0,0 +1 @@ +8a90e31780e5cd0685ccaf25836c66e3b4e163b7 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/17/_remote.repositories b/code/arachne/org/apache/apache/17/_remote.repositories new file mode 100644 index 000000000..c8f5e5bc6 --- /dev/null +++ b/code/arachne/org/apache/apache/17/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:56 EDT 2024 +apache-17.pom>central= diff --git a/code/arachne/org/apache/apache/17/apache-17.pom b/code/arachne/org/apache/apache/17/apache-17.pom new file mode 100644 index 000000000..23cc6f87e --- /dev/null +++ b/code/arachne/org/apache/apache/17/apache-17.pom @@ -0,0 +1,426 @@ + + + + + + 4.0.0 + + + org.apache + apache + 17 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + http://www.apache.org/ + + The Apache Software Foundation + http://www.apache.org/ + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + 3.0 + + + + scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-17 + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-17 + http://svn.apache.org/viewvc/maven/pom/tags/apache-17 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + http://www.apache.org/images/asf_logo_wide.gif + UTF-8 + UTF-8 + source-release + true + + 1.5 + 1.5 + + + + + apache.snapshots + Apache Snapshot Repository + http://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.7 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.4.1 + + + org.apache.maven.plugins + maven-clean-plugin + 2.5 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.2 + + + org.apache.maven.plugins + maven-dependency-plugin + 2.8 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.3.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.18.1 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 1.9 + + + org.apache.maven.plugins + maven-jar-plugin + 2.5 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.4 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.8 + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.1 + + false + deploy + -Papache-release ${arguments} + 10 + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.5 + + + org.apache.maven.plugins + maven-resources-plugin + 2.7 + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.2 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.1 + + + org.apache.maven.plugins + maven-site-plugin + 3.4 + + + org.apache.maven + maven-archiver + 2.5 + + + org.codehaus.plexus + plexus-archiver + 2.4.4 + + + org.apache.maven.doxia + doxia-core + 1.6 + + + xerces + xercesImpl + + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.18.1 + + + org.apache.maven.plugins + maven-surefire-report-plugin + 2.18.1 + + + org.apache.maven.plugins + maven-war-plugin + 2.5 + + + org.apache.rat + apache-rat-plugin + 0.11 + + + org.apache.maven.doxia + doxia-core + 1.2 + + + xerces + xercesImpl + + + + + + + org.codehaus.mojo + clirr-maven-plugin + 2.6.1 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.5 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + gnu + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + + sign + + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/17/apache-17.pom.sha1 b/code/arachne/org/apache/apache/17/apache-17.pom.sha1 new file mode 100644 index 000000000..d51411d70 --- /dev/null +++ b/code/arachne/org/apache/apache/17/apache-17.pom.sha1 @@ -0,0 +1 @@ +c1685ef8de6047fdad5e5fce99a8ccd80fc8b659 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/18/_remote.repositories b/code/arachne/org/apache/apache/18/_remote.repositories new file mode 100644 index 000000000..589383d18 --- /dev/null +++ b/code/arachne/org/apache/apache/18/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:51 EDT 2024 +apache-18.pom>local-repo= diff --git a/code/arachne/org/apache/apache/18/apache-18.pom b/code/arachne/org/apache/apache/18/apache-18.pom new file mode 100644 index 000000000..b92ce5d7c --- /dev/null +++ b/code/arachne/org/apache/apache/18/apache-18.pom @@ -0,0 +1,416 @@ + + + + + + 4.0.0 + + + org.apache + apache + 18 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + 3.0 + + + + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-18 + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-18 + https://svn.apache.org/viewvc/maven/pom/tags/apache-18 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide.gif + UTF-8 + UTF-8 + source-release + true + + 1.6 + 1.6 + 2.19.1 + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.6 + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + + org.apache.maven.plugins + maven-dependency-plugin + 2.10 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 2.0.0 + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.0 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.3 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.4 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.9 + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + deploy + -Papache-release ${arguments} + 10 + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.5 + + + org.apache.maven.plugins + maven-resources-plugin + 2.7 + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.4 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.1 + + + org.apache.maven.plugins + maven-site-plugin + 3.5.1 + + + org.apache.maven.plugins + maven-source-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 2.6 + + + org.apache.rat + apache-rat-plugin + 0.11 + + + + DEPENDENCIES + + + + + org.apache.maven.doxia + doxia-core + 1.2 + + + xerces + xercesImpl + + + + + + + org.codehaus.mojo + clirr-maven-plugin + 2.7 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + gnu + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/18/apache-18.pom.lastUpdated b/code/arachne/org/apache/apache/18/apache-18.pom.lastUpdated new file mode 100644 index 000000000..845115679 --- /dev/null +++ b/code/arachne/org/apache/apache/18/apache-18.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:51 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139891125 +http\://0.0.0.0/.error=Could not transfer artifact org.apache\:apache\:pom\:18 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139890868 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139890874 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139890947 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139891076 diff --git a/code/arachne/org/apache/apache/18/apache-18.pom.sha1 b/code/arachne/org/apache/apache/18/apache-18.pom.sha1 new file mode 100644 index 000000000..08bf64e6c --- /dev/null +++ b/code/arachne/org/apache/apache/18/apache-18.pom.sha1 @@ -0,0 +1 @@ +bd408bbea3840f2c7f914b29403e39a90f84fd5f \ No newline at end of file diff --git a/code/arachne/org/apache/apache/19/_remote.repositories b/code/arachne/org/apache/apache/19/_remote.repositories new file mode 100644 index 000000000..d20f44ea0 --- /dev/null +++ b/code/arachne/org/apache/apache/19/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:21 EDT 2024 +apache-19.pom>central= diff --git a/code/arachne/org/apache/apache/19/apache-19.pom b/code/arachne/org/apache/apache/19/apache-19.pom new file mode 100644 index 000000000..4252fd977 --- /dev/null +++ b/code/arachne/org/apache/apache/19/apache-19.pom @@ -0,0 +1,420 @@ + + + + + + 4.0.0 + + + org.apache + apache + 19 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-19 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide.gif + UTF-8 + UTF-8 + source-release + true + + 1.6 + 1.6 + 2.20.1 + posix + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.6.0 + + + org.apache.maven.plugins + maven-dependency-plugin + 2.10 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.5 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.9 + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + deploy + -Papache-release ${arguments} + 10 + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.5 + + + org.apache.maven.plugins + maven-resources-plugin + 3.0.2 + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.5 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.1 + + + org.apache.maven.plugins + maven-site-plugin + 3.7 + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-shade-plugin + 2.4.3 + + + org.apache.rat + apache-rat-plugin + 0.12 + + + org.codehaus.mojo + clirr-maven-plugin + 2.8 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + 3.0 + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + posix + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/19/apache-19.pom.sha1 b/code/arachne/org/apache/apache/19/apache-19.pom.sha1 new file mode 100644 index 000000000..34d835e80 --- /dev/null +++ b/code/arachne/org/apache/apache/19/apache-19.pom.sha1 @@ -0,0 +1 @@ +db8bb0231dcbda5011926dbaca1a7ce652fd5517 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/21/_remote.repositories b/code/arachne/org/apache/apache/21/_remote.repositories new file mode 100644 index 000000000..a6f7dc3b6 --- /dev/null +++ b/code/arachne/org/apache/apache/21/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:56 EDT 2024 +apache-21.pom>ohdsi= diff --git a/code/arachne/org/apache/apache/21/apache-21.pom b/code/arachne/org/apache/apache/21/apache-21.pom new file mode 100644 index 000000000..e45e5dfbf --- /dev/null +++ b/code/arachne/org/apache/apache/21/apache-21.pom @@ -0,0 +1,460 @@ + + + + + + 4.0.0 + + + org.apache + apache + 21 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-21 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide.gif + UTF-8 + UTF-8 + source-release + true + + 1.7 + 1.7 + 2.22.0 + posix + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-clean-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.7.0 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.1 + + + org.apache.maven.plugins + maven-ear-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-help-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.0 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.5.2 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.0.0 + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + deploy + -Papache-release ${arguments} + 10 + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.5 + + + org.apache.maven.plugins + maven-resources-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.5 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-shade-plugin + 3.1.1 + + + org.apache.rat + apache-rat-plugin + 0.12 + + + org.codehaus.mojo + clirr-maven-plugin + 2.8 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + 3.0.5 + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + posix + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + 1.7 + + + source-release-checksum + + files + + + + + + SHA-512 + + false + + + ${project.build.directory} + + ${project.artifactId}-${project.version}-source-release.zip + ${project.artifactId}-${project.version}-source-release.tar* + + + + false + + + + + + + + diff --git a/code/arachne/org/apache/apache/21/apache-21.pom.lastUpdated b/code/arachne/org/apache/apache/21/apache-21.pom.lastUpdated new file mode 100644 index 000000000..c6616b803 --- /dev/null +++ b/code/arachne/org/apache/apache/21/apache-21.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:56 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.apache\:apache\:pom\:21 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139836308 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139836316 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139836572 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139836708 diff --git a/code/arachne/org/apache/apache/21/apache-21.pom.sha1 b/code/arachne/org/apache/apache/21/apache-21.pom.sha1 new file mode 100644 index 000000000..794c30119 --- /dev/null +++ b/code/arachne/org/apache/apache/21/apache-21.pom.sha1 @@ -0,0 +1 @@ +649b700a1b2b4a1d87e7ae8e3f47bfe101b2a4a5 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/23/_remote.repositories b/code/arachne/org/apache/apache/23/_remote.repositories new file mode 100644 index 000000000..852e92f69 --- /dev/null +++ b/code/arachne/org/apache/apache/23/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:45 EDT 2024 +apache-23.pom>central= diff --git a/code/arachne/org/apache/apache/23/apache-23.pom b/code/arachne/org/apache/apache/23/apache-23.pom new file mode 100644 index 000000000..447a0f3e6 --- /dev/null +++ b/code/arachne/org/apache/apache/23/apache-23.pom @@ -0,0 +1,492 @@ + + + + + + 4.0.0 + + + org.apache + apache + 23 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-23 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide_2016.png + UTF-8 + UTF-8 + source-release + true + + 1.7 + 1.7 + 2.22.0 + posix + 2020-01-22T15:10:15Z + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-clean-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.1 + + + org.apache.maven.plugins + maven-ear-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-help-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.5.2 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.0.0 + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M1 + + false + deploy + -Papache-release ${arguments} + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.7.0 + + + org.apache.maven.plugins + maven-resources-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.5 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.0.0 + + + org.apache.maven.scm + maven-scm-api + 1.10.0 + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.10.0 + + + org.apache.maven.scm + maven-scm-provider-svn-commons + 1.10.0 + + + org.apache.maven.scm + maven-scm-provider-svnexe + 1.10.0 + + + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-shade-plugin + 3.1.1 + + + org.apache.rat + apache-rat-plugin + 0.13 + + + org.codehaus.mojo + clirr-maven-plugin + 2.8 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + 3.0.5 + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + posix + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + 1.7 + + + source-release-checksum + + files + + + + + + SHA-512 + + false + + + ${project.build.directory} + + ${project.artifactId}-${project.version}-source-release.zip + ${project.artifactId}-${project.version}-source-release.tar* + + + + false + + + + + + + + diff --git a/code/arachne/org/apache/apache/23/apache-23.pom.sha1 b/code/arachne/org/apache/apache/23/apache-23.pom.sha1 new file mode 100644 index 000000000..abc64923b --- /dev/null +++ b/code/arachne/org/apache/apache/23/apache-23.pom.sha1 @@ -0,0 +1 @@ +0404949e96725e63a10a6d8f9d9b521948d170d5 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/24/_remote.repositories b/code/arachne/org/apache/apache/24/_remote.repositories new file mode 100644 index 000000000..bbfa9697b --- /dev/null +++ b/code/arachne/org/apache/apache/24/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:37 EDT 2024 +apache-24.pom>central= diff --git a/code/arachne/org/apache/apache/24/apache-24.pom b/code/arachne/org/apache/apache/24/apache-24.pom new file mode 100644 index 000000000..dedd77f84 --- /dev/null +++ b/code/arachne/org/apache/apache/24/apache-24.pom @@ -0,0 +1,519 @@ + + + + + + 4.0.0 + + + org.apache + apache + 24 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-24 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide_2016.png + UTF-8 + UTF-8 + source-release + true + 3.1.1 + 1.8 + ${maven.compiler.target} + 1.7 + 2.22.2 + posix + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-clean-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.2 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.1 + + + org.apache.maven.plugins + maven-ear-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-help-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.0 + + true + + + + org.apache.maven.plugins + maven-plugin-plugin + 3.6.1 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.1.2 + + + org.eclipse.m2e:lifecycle-mapping + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M4 + + false + deploy + apache-release + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.7.0 + + + org.apache.maven.plugins + maven-resources-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-scm-plugin + 1.11.2 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-site-plugin + 3.9.1 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 3.3.1 + + + org.apache.maven.plugins + maven-shade-plugin + 3.2.4 + + + org.apache.rat + apache-rat-plugin + 0.13 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + ${minimalMavenBuildVersion} + + + + + + enforce-java-version + + enforce + + + + + ${minimalJavaBuildVersion} + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + posix + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + 1.11 + + + source-release-checksum + + artifacts + + + post-integration-test + + + SHA-512 + + + source-release + true + false + + true + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + + + + enforce-output-timestamp-property + + + ${basedir}/.maven-apache-parent.marker + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-output-timestamp-property + + enforce + + + + + project.build.outputTimestamp + The property "project.build.outputTimestamp" must be set on the reactor's root pom.xml to make the build reproducible. Further information at "https://maven.apache.org/guides/mini/guide-reproducible-builds.html". + + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/24/apache-24.pom.sha1 b/code/arachne/org/apache/apache/24/apache-24.pom.sha1 new file mode 100644 index 000000000..5c138b142 --- /dev/null +++ b/code/arachne/org/apache/apache/24/apache-24.pom.sha1 @@ -0,0 +1 @@ +976e85f5e412cf1a187de8e0c2548f8f46fed6a5 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/25/_remote.repositories b/code/arachne/org/apache/apache/25/_remote.repositories new file mode 100644 index 000000000..f26fa3ae0 --- /dev/null +++ b/code/arachne/org/apache/apache/25/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:44 EDT 2024 +apache-25.pom>central= diff --git a/code/arachne/org/apache/apache/25/apache-25.pom b/code/arachne/org/apache/apache/25/apache-25.pom new file mode 100644 index 000000000..1a5e9502a --- /dev/null +++ b/code/arachne/org/apache/apache/25/apache-25.pom @@ -0,0 +1,536 @@ + + + + + + 4.0.0 + + + org.apache + apache + 25 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-25 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide_2016.png + UTF-8 + UTF-8 + source-release + true + 3.1.1 + 1.8 + ${maven.compiler.target} + 1.7 + 2.22.2 + 3.6.4 + posix + 2022-02-17T22:08:13Z + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${maven.plugin.tools.version} + + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-clean-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.0 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.1 + + + org.apache.maven.plugins + maven-ear-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-help-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.2 + + true + + + + org.apache.maven.plugins + maven-plugin-plugin + ${maven.plugin.tools.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.1.2 + + + org.eclipse.m2e:lifecycle-mapping + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M5 + + false + deploy + apache-release + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.7.0 + + + org.apache.maven.plugins + maven-resources-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-scm-plugin + 1.12.2 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-site-plugin + 3.11.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 3.3.2 + + + org.apache.maven.plugins + maven-shade-plugin + 3.2.4 + + + org.apache.rat + apache-rat-plugin + 0.13 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + ${minimalMavenBuildVersion} + + + + + + enforce-java-version + + enforce + + + + + ${minimalJavaBuildVersion} + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + posix + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + 1.11 + + + source-release-checksum + + artifacts + + + post-integration-test + + + SHA-512 + + + source-release + true + false + + true + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + + + + only-eclipse + + + m2e.version + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + [0,1.8.0) + + process + + + + + + + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/25/apache-25.pom.sha1 b/code/arachne/org/apache/apache/25/apache-25.pom.sha1 new file mode 100644 index 000000000..0c6d9ead6 --- /dev/null +++ b/code/arachne/org/apache/apache/25/apache-25.pom.sha1 @@ -0,0 +1 @@ +c2202b94ed7980d47f78ab7850ee981fd69ba7e2 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/27/_remote.repositories b/code/arachne/org/apache/apache/27/_remote.repositories new file mode 100644 index 000000000..bb3f507c3 --- /dev/null +++ b/code/arachne/org/apache/apache/27/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:12 EDT 2024 +apache-27.pom>central= diff --git a/code/arachne/org/apache/apache/27/apache-27.pom b/code/arachne/org/apache/apache/27/apache-27.pom new file mode 100644 index 000000000..5b957b3ae --- /dev/null +++ b/code/arachne/org/apache/apache/27/apache-27.pom @@ -0,0 +1,531 @@ + + + + + + 4.0.0 + + + org.apache + apache + 27 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-27 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide_2016.png + UTF-8 + UTF-8 + source-release + true + 3.2.5 + 1.8 + ${maven.compiler.target} + 1.7 + 2.22.2 + 3.6.4 + posix + 2022-07-10T09:19:36Z + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${maven.plugin.tools.version} + + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.4.1 + + + org.apache.maven.plugins + maven-clean-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-ear-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-help-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.4.0 + + true + + + + org.apache.maven.plugins + maven-plugin-plugin + ${maven.plugin.tools.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.3.0 + + + org.eclipse.m2e:lifecycle-mapping + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M6 + + false + deploy + apache-release + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.7.0 + + + org.apache.maven.plugins + maven-resources-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-scm-plugin + 1.13.0 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-site-plugin + 3.12.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 3.3.2 + + + org.apache.maven.plugins + maven-shade-plugin + 3.3.0 + + + org.apache.rat + apache-rat-plugin + 0.14 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + ${minimalMavenBuildVersion} + + + + + + enforce-java-version + + enforce + + + + + ${minimalJavaBuildVersion} + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + posix + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + 1.11 + + + source-release-checksum + + artifacts + + + post-integration-test + + + SHA-512 + + + source-release + true + false + + true + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + + + + only-eclipse + + + m2e.version + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + [0,1.8.0) + + process + + + + + + + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/27/apache-27.pom.sha1 b/code/arachne/org/apache/apache/27/apache-27.pom.sha1 new file mode 100644 index 000000000..4dff381aa --- /dev/null +++ b/code/arachne/org/apache/apache/27/apache-27.pom.sha1 @@ -0,0 +1 @@ +ea179482b464bfc8cac939c6d6e632b6a8e3316b \ No newline at end of file diff --git a/code/arachne/org/apache/apache/29/_remote.repositories b/code/arachne/org/apache/apache/29/_remote.repositories new file mode 100644 index 000000000..9d231b7c6 --- /dev/null +++ b/code/arachne/org/apache/apache/29/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:45 EDT 2024 +apache-29.pom>central= diff --git a/code/arachne/org/apache/apache/29/apache-29.pom b/code/arachne/org/apache/apache/29/apache-29.pom new file mode 100644 index 000000000..ae136be31 --- /dev/null +++ b/code/arachne/org/apache/apache/29/apache-29.pom @@ -0,0 +1,538 @@ + + + + + + 4.0.0 + + + org.apache + apache + 29 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-29 + + + + + apache.releases.https + ${distMgmtReleasesName} + ${distMgmtReleasesUrl} + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide_2016.png + UTF-8 + UTF-8 + source-release + true + 3.2.5 + 1.8 + ${maven.compiler.target} + 1.7 + 2.22.2 + 3.7.0 + posix + 2022-12-11T19:18:10Z + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${maven.plugin.tools.version} + + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.4.2 + + + org.apache.maven.plugins + maven-clean-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.4.0 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-ear-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-help-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-install-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-invoker-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.4.1 + + true + + + + org.apache.maven.plugins + maven-plugin-plugin + ${maven.plugin.tools.version} + + + org.apache.maven.plugins + maven-plugin-report-plugin + ${maven.plugin.tools.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.4.1 + + + org.eclipse.m2e:lifecycle-mapping + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M7 + + false + deploy + apache-release + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.7.0 + + + org.apache.maven.plugins + maven-resources-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-scm-plugin + 1.13.0 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-site-plugin + 3.12.1 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 3.3.2 + + + org.apache.maven.plugins + maven-shade-plugin + 3.4.1 + + + org.apache.rat + apache-rat-plugin + 0.15 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + ${minimalMavenBuildVersion} + + + + + + enforce-java-version + + enforce + + + + + ${minimalJavaBuildVersion} + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + ${assembly.tarLongFileMode} + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + 1.11 + + + source-release-checksum + + artifacts + + + post-integration-test + + + SHA-512 + + + source-release + true + false + + true + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + + + + only-eclipse + + + m2e.version + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + [0,1.8.0) + + process + + + + + + + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/29/apache-29.pom.sha1 b/code/arachne/org/apache/apache/29/apache-29.pom.sha1 new file mode 100644 index 000000000..f733d3edc --- /dev/null +++ b/code/arachne/org/apache/apache/29/apache-29.pom.sha1 @@ -0,0 +1 @@ +57991491045c9a37a3113f24bf29a41a4ceb1459 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/30/_remote.repositories b/code/arachne/org/apache/apache/30/_remote.repositories new file mode 100644 index 000000000..78d2f8415 --- /dev/null +++ b/code/arachne/org/apache/apache/30/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:33 EDT 2024 +apache-30.pom>ohdsi= diff --git a/code/arachne/org/apache/apache/30/apache-30.pom b/code/arachne/org/apache/apache/30/apache-30.pom new file mode 100644 index 000000000..c57fb205d --- /dev/null +++ b/code/arachne/org/apache/apache/30/apache-30.pom @@ -0,0 +1,561 @@ + + + + + + 4.0.0 + + + org.apache + apache + 30 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-30 + + + + + apache.releases.https + ${distMgmtReleasesName} + ${distMgmtReleasesUrl} + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide_2016.png + UTF-8 + UTF-8 + source-release + true + 3.2.5 + 1.8 + ${maven.compiler.target} + 1.7 + 3.1.2 + 3.9.0 + posix + + 1.11.2 + 2023-06-11T16:41:23Z + + 0.15 + 1.5 + 1.11 + 3.1.0 + 3.6.0 + 3.2.0 + 3.11.0 + 3.6.0 + 3.1.1 + 3.3.0 + 3.3.0 + 3.1.0 + 3.4.0 + 3.1.1 + 3.5.1 + 3.3.0 + 3.5.0 + ${maven.plugin.tools.version} + 3.4.5 + 3.0.1 + 3.1.0 + 3.3.1 + 2.0.1 + 3.2.1 + 3.4.1 + 3.12.1 + 3.3.0 + ${surefire.version} + 3.3.2 + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${version.maven-plugin-tools} + + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${version.maven-antrun-plugin} + + + org.apache.maven.plugins + maven-assembly-plugin + ${version.maven-assembly-plugin} + + + org.apache.maven.plugins + maven-clean-plugin + ${version.maven-clean-plugin} + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.maven-compiler-plugin} + + + org.apache.maven.plugins + maven-dependency-plugin + ${version.maven-dependency-plugin} + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.maven-deploy-plugin} + + + org.apache.maven.plugins + maven-ear-plugin + ${version.maven-ear-plugin} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${version.maven-enforcer-plugin} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${version.maven-surefire} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.maven-gpg-plugin} + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-help-plugin + ${version.maven-help-plugin} + + + org.apache.maven.plugins + maven-install-plugin + ${version.maven-install-plugin} + + + org.apache.maven.plugins + maven-invoker-plugin + ${version.maven-invoker-plugin} + + + org.apache.maven.plugins + maven-jar-plugin + ${version.maven-jar-plugin} + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.maven-javadoc-plugin} + + true + + + + org.apache.maven.plugins + maven-plugin-plugin + ${version.maven-plugin-tools} + + + org.apache.maven.plugins + maven-plugin-report-plugin + ${version.maven-plugin-tools} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${version.maven-project-info-reports-plugin} + + + org.eclipse.m2e:lifecycle-mapping + + + + + + org.apache.maven.plugins + maven-release-plugin + ${version.maven-release-plugin} + + false + deploy + apache-release + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + ${version.maven-remote-resources-plugin} + + + org.apache.maven.plugins + maven-resources-plugin + ${version.maven-resources-plugin} + + + org.apache.maven.plugins + maven-scm-plugin + ${version.maven-scm-plugin} + + + org.apache.maven.plugins + maven-scm-publish-plugin + ${version.maven-scm-publish-plugin} + + + org.apache.maven.plugins + maven-site-plugin + ${version.maven-site-plugin} + + + org.apache.maven.plugins + maven-source-plugin + ${version.maven-source-plugin} + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.maven-surefire} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.maven-surefire} + + + org.apache.maven.plugins + maven-war-plugin + ${version.maven-war-plugin} + + + org.apache.maven.plugins + maven-shade-plugin + ${version.maven-shade-plugin} + + + org.apache.rat + apache-rat-plugin + ${version.apache-rat-plugin} + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache.apache.resources:apache-jar-resource-bundle:${version.apache-resource-bundles} + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + ${minimalMavenBuildVersion} + + + + + + enforce-java-version + + enforce + + + + + ${minimalJavaBuildVersion} + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + ${version.apache-resource-bundles} + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + ${assembly.tarLongFileMode} + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + ${version.checksum-maven-plugin} + + + source-release-checksum + + artifacts + + + post-integration-test + + + SHA-512 + + + source-release + true + false + + true + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + + + + only-eclipse + + + m2e.version + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + [0,) + + process + + + + + + + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/30/apache-30.pom.lastUpdated b/code/arachne/org/apache/apache/30/apache-30.pom.lastUpdated new file mode 100644 index 000000000..5816e3a24 --- /dev/null +++ b/code/arachne/org/apache/apache/30/apache-30.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:33 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.apache\:apache\:pom\:30 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139813145 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139813237 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139813368 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139813505 diff --git a/code/arachne/org/apache/apache/30/apache-30.pom.sha1 b/code/arachne/org/apache/apache/30/apache-30.pom.sha1 new file mode 100644 index 000000000..a285e1d61 --- /dev/null +++ b/code/arachne/org/apache/apache/30/apache-30.pom.sha1 @@ -0,0 +1 @@ +8ec9c23c01b89c7c704fea3fc4822c4de4c02430 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/31/_remote.repositories b/code/arachne/org/apache/apache/31/_remote.repositories new file mode 100644 index 000000000..90c269eb1 --- /dev/null +++ b/code/arachne/org/apache/apache/31/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:50 EDT 2024 +apache-31.pom>central= diff --git a/code/arachne/org/apache/apache/31/apache-31.pom b/code/arachne/org/apache/apache/31/apache-31.pom new file mode 100644 index 000000000..8e9c6dfc6 --- /dev/null +++ b/code/arachne/org/apache/apache/31/apache-31.pom @@ -0,0 +1,567 @@ + + + + + + 4.0.0 + + + org.apache + apache + 31 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-31 + + + + + apache.releases.https + ${distMgmtReleasesName} + ${distMgmtReleasesUrl} + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide_2016.png + UTF-8 + UTF-8 + source-release + true + 3.6.3 + 1.8 + ${maven.compiler.target} + 1.7 + 3.2.2 + 3.10.2 + posix + + 1.11.2 + 2023-11-08T22:14:21Z + + 0.15 + 1.5 + 1.11 + 3.1.0 + 3.6.0 + 3.3.2 + 3.3.1 + 3.11.0 + 3.6.1 + 3.1.1 + 3.3.0 + 3.4.1 + 3.1.0 + 3.4.0 + 3.1.1 + 3.6.0 + 3.3.0 + 3.6.2 + ${maven.plugin.tools.version} + 3.4.5 + 3.0.1 + 3.1.0 + 3.3.1 + 2.0.1 + 3.2.1 + 3.5.1 + 3.12.1 + 3.3.0 + ${surefire.version} + 3.4.0 + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${version.maven-plugin-tools} + + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${version.maven-antrun-plugin} + + + org.apache.maven.plugins + maven-assembly-plugin + ${version.maven-assembly-plugin} + + + org.apache.maven.plugins + maven-clean-plugin + ${version.maven-clean-plugin} + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${version.maven-checkstyle-plugin} + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.maven-compiler-plugin} + + + org.apache.maven.plugins + maven-dependency-plugin + ${version.maven-dependency-plugin} + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.maven-deploy-plugin} + + + org.apache.maven.plugins + maven-ear-plugin + ${version.maven-ear-plugin} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${version.maven-enforcer-plugin} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${version.maven-surefire} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.maven-gpg-plugin} + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-help-plugin + ${version.maven-help-plugin} + + + org.apache.maven.plugins + maven-install-plugin + ${version.maven-install-plugin} + + + org.apache.maven.plugins + maven-invoker-plugin + ${version.maven-invoker-plugin} + + + org.apache.maven.plugins + maven-jar-plugin + ${version.maven-jar-plugin} + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.maven-javadoc-plugin} + + true + + + + org.apache.maven.plugins + maven-plugin-plugin + ${version.maven-plugin-tools} + + + org.apache.maven.plugins + maven-plugin-report-plugin + ${version.maven-plugin-tools} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${version.maven-project-info-reports-plugin} + + + org.eclipse.m2e:lifecycle-mapping + + + + + + org.apache.maven.plugins + maven-release-plugin + ${version.maven-release-plugin} + + false + deploy + apache-release + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + ${version.maven-remote-resources-plugin} + + + org.apache.maven.plugins + maven-resources-plugin + ${version.maven-resources-plugin} + + + org.apache.maven.plugins + maven-scm-plugin + ${version.maven-scm-plugin} + + + org.apache.maven.plugins + maven-scm-publish-plugin + ${version.maven-scm-publish-plugin} + + + org.apache.maven.plugins + maven-site-plugin + ${version.maven-site-plugin} + + + org.apache.maven.plugins + maven-source-plugin + ${version.maven-source-plugin} + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.maven-surefire} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.maven-surefire} + + + org.apache.maven.plugins + maven-war-plugin + ${version.maven-war-plugin} + + + org.apache.maven.plugins + maven-shade-plugin + ${version.maven-shade-plugin} + + + org.apache.rat + apache-rat-plugin + ${version.apache-rat-plugin} + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache.apache.resources:apache-jar-resource-bundle:${version.apache-resource-bundles} + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + ${minimalMavenBuildVersion} + + + + + + enforce-java-version + + enforce + + + + + ${minimalJavaBuildVersion} + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + ${version.apache-resource-bundles} + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + ${assembly.tarLongFileMode} + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + ${version.checksum-maven-plugin} + + + source-release-checksum + + artifacts + + + post-integration-test + + + SHA-512 + + + source-release + true + false + + true + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + + + + only-eclipse + + + m2e.version + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + [0,) + + process + + + + + + + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/31/apache-31.pom.sha1 b/code/arachne/org/apache/apache/31/apache-31.pom.sha1 new file mode 100644 index 000000000..741d09f85 --- /dev/null +++ b/code/arachne/org/apache/apache/31/apache-31.pom.sha1 @@ -0,0 +1 @@ +9009cbdad2b69835f2df9265794c8ab50cf4dce1 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/32/_remote.repositories b/code/arachne/org/apache/apache/32/_remote.repositories new file mode 100644 index 000000000..49495c081 --- /dev/null +++ b/code/arachne/org/apache/apache/32/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:19 EDT 2024 +apache-32.pom>central= diff --git a/code/arachne/org/apache/apache/32/apache-32.pom b/code/arachne/org/apache/apache/32/apache-32.pom new file mode 100644 index 000000000..3c20e1541 --- /dev/null +++ b/code/arachne/org/apache/apache/32/apache-32.pom @@ -0,0 +1,582 @@ + + + + + + 4.0.0 + + + org.apache + apache + 32 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + docs + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-32 + + + + + ${distMgmtReleasesId} + ${distMgmtReleasesName} + ${distMgmtReleasesUrl} + + + ${distMgmtSnapshotsId} + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + apache.snapshots.https + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide_2016.png + UTF-8 + UTF-8 + source-release + true + 3.6.3 + 1.8 + ${maven.compiler.target} + 7 + 3.2.5 + posix + + 1.11.2 + 2024-04-13T16:31:25Z + + 0.16.1 + 1.5 + 1.11 + 3.1.0 + 3.7.1 + 3.3.2 + 3.3.1 + 3.13.0 + 3.6.1 + 3.1.1 + 3.3.0 + 3.4.1 + 3.2.3 + 3.4.0 + 3.1.1 + 3.6.1 + 3.4.0 + 3.6.3 + 3.12.0 + 3.5.0 + 3.0.1 + 3.2.0 + 3.3.1 + 2.0.1 + 3.2.1 + 3.5.2 + 3.12.1 + 3.3.1 + ${surefire.version} + 3.4.0 + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${version.maven-plugin-tools} + + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${version.maven-antrun-plugin} + + + org.apache.maven.plugins + maven-assembly-plugin + ${version.maven-assembly-plugin} + + + org.apache.maven.plugins + maven-clean-plugin + ${version.maven-clean-plugin} + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${version.maven-checkstyle-plugin} + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.maven-compiler-plugin} + + + org.apache.maven.plugins + maven-dependency-plugin + ${version.maven-dependency-plugin} + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.maven-deploy-plugin} + + + org.apache.maven.plugins + maven-ear-plugin + ${version.maven-ear-plugin} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${version.maven-enforcer-plugin} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${version.maven-surefire} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.maven-gpg-plugin} + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-help-plugin + ${version.maven-help-plugin} + + + org.apache.maven.plugins + maven-install-plugin + ${version.maven-install-plugin} + + + org.apache.maven.plugins + maven-invoker-plugin + ${version.maven-invoker-plugin} + + + org.apache.maven.plugins + maven-jar-plugin + ${version.maven-jar-plugin} + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.maven-javadoc-plugin} + + true + + + + org.apache.maven.plugins + maven-plugin-plugin + ${version.maven-plugin-tools} + + + org.apache.maven.plugins + maven-plugin-report-plugin + ${version.maven-plugin-tools} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${version.maven-project-info-reports-plugin} + + + org.eclipse.m2e:lifecycle-mapping + + + + + + org.apache.maven.plugins + maven-release-plugin + ${version.maven-release-plugin} + + true + false + deploy + apache-release + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + ${version.maven-remote-resources-plugin} + + + org.apache.maven.plugins + maven-resources-plugin + ${version.maven-resources-plugin} + + + org.apache.maven.plugins + maven-scm-plugin + ${version.maven-scm-plugin} + + + org.apache.maven.plugins + maven-scm-publish-plugin + ${version.maven-scm-publish-plugin} + + + org.apache.maven.plugins + maven-site-plugin + ${version.maven-site-plugin} + + + org.apache.maven.plugins + maven-source-plugin + ${version.maven-source-plugin} + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.maven-surefire} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.maven-surefire} + + + org.apache.maven.plugins + maven-war-plugin + ${version.maven-war-plugin} + + + org.apache.maven.plugins + maven-shade-plugin + ${version.maven-shade-plugin} + + + org.apache.rat + apache-rat-plugin + ${version.apache-rat-plugin} + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache.apache.resources:apache-jar-resource-bundle:${version.apache-resource-bundles} + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + ${minimalMavenBuildVersion} + + + + + + enforce-java-version + + enforce + + + + + ${minimalJavaBuildVersion} + + + + + + + + + + org.apache.maven.plugins + maven-site-plugin + false + + true + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + ${version.apache-resource-bundles} + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + ${assembly.tarLongFileMode} + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + ${version.checksum-maven-plugin} + + + source-release-checksum + + artifacts + + + post-integration-test + + + SHA-512 + + + source-release + true + false + + true + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + + + + jdk9+ + + + [9,) + + + + ${maven.compiler.target} + + + + only-eclipse + + + m2e.version + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + [0,) + + process + + + + + + + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/32/apache-32.pom.sha1 b/code/arachne/org/apache/apache/32/apache-32.pom.sha1 new file mode 100644 index 000000000..d444cb05d --- /dev/null +++ b/code/arachne/org/apache/apache/32/apache-32.pom.sha1 @@ -0,0 +1 @@ +2e08f841a6fbc946452701faaf5e39a17ac97ef3 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/4/_remote.repositories b/code/arachne/org/apache/apache/4/_remote.repositories new file mode 100644 index 000000000..ca01c15b0 --- /dev/null +++ b/code/arachne/org/apache/apache/4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +apache-4.pom>central= diff --git a/code/arachne/org/apache/apache/4/apache-4.pom b/code/arachne/org/apache/apache/4/apache-4.pom new file mode 100644 index 000000000..8d202b8b1 --- /dev/null +++ b/code/arachne/org/apache/apache/4/apache-4.pom @@ -0,0 +1,113 @@ + + + + + + 4.0.0 + + + org.apache + apache + 4 + pom + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + The Apache Software Foundation + http://www.apache.org/ + + http://www.apache.org/ + + + apache.snapshots + Apache Snapshot Repository + http://people.apache.org/repo/m2-snapshot-repository + + false + + + + + + + apache.releases + Apache Release Distribution Repository + scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository + + + apache.snapshots + Apache Development Snapshot Repository + scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + + + http://www.apache.org/images/asf_logo_wide.gif + + + + scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-4 + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-4 + http://svn.apache.org/viewvc/maven/pom/tags/apache-4 + + + diff --git a/code/arachne/org/apache/apache/4/apache-4.pom.sha1 b/code/arachne/org/apache/apache/4/apache-4.pom.sha1 new file mode 100644 index 000000000..e2fe94295 --- /dev/null +++ b/code/arachne/org/apache/apache/4/apache-4.pom.sha1 @@ -0,0 +1 @@ +602b647986c1d24301bc3d70e5923696bc7f1401 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/7/_remote.repositories b/code/arachne/org/apache/apache/7/_remote.repositories new file mode 100644 index 000000000..979c13ced --- /dev/null +++ b/code/arachne/org/apache/apache/7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:15 EDT 2024 +apache-7.pom>central= diff --git a/code/arachne/org/apache/apache/7/apache-7.pom b/code/arachne/org/apache/apache/7/apache-7.pom new file mode 100644 index 000000000..6f992bd75 --- /dev/null +++ b/code/arachne/org/apache/apache/7/apache-7.pom @@ -0,0 +1,369 @@ + + + + + + 4.0.0 + + + org.apache + apache + 7 + pom + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + The Apache Software Foundation + http://www.apache.org/ + + http://www.apache.org/ + + + apache.snapshots + Apache Snapshot Repository + http://repository.apache.org/snapshots + + false + + + + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + http://www.apache.org/images/asf_logo_wide.gif + UTF-8 + source-release + + + scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-7 + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-7 + http://svn.apache.org/viewvc/maven/pom/tags/apache-7 + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.3 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2-beta-5 + + + org.apache.maven.plugins + maven-clean-plugin + 2.3 + + + org.apache.maven.plugins + maven-compiler-plugin + 2.0.2 + + 1.4 + 1.4 + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.5 + + + org.apache.maven.plugins + maven-docck-plugin + 1.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0-beta-1 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.0-alpha-4 + + + org.apache.maven.plugins + maven-install-plugin + 2.3 + + + org.apache.maven.plugins + maven-invoker-plugin + 1.5 + + + org.apache.maven.plugins + maven-jar-plugin + 2.3 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + 2.5 + + + org.apache.maven.plugins + maven-plugin-plugin + 2.5.1 + + + + org.apache.maven.plugins + maven-release-plugin + 2.0-beta-9 + + false + deploy + -Papache-release + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.1 + + + org.apache.maven.plugins + maven-resources-plugin + 2.4 + + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-scm-plugin + 1.2 + + + org.apache.maven.plugins + maven-site-plugin + 2.0.1 + + + org.apache.maven.plugins + maven-source-plugin + 2.1.1 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.4.3 + + + org.codehaus.mojo + clirr-maven-plugin + 2.2.2 + + + org.codehaus.plexus + plexus-maven-plugin + 1.3.8 + + + org.codehaus.modello + modello-maven-plugin + 1.1 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + + + + + + maven-project-info-reports-plugin + 2.1.2 + + + + + + + + apache-release + + + + + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.2 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + gnu + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + ${gpg.passphrase} + + + + + sign + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + ${project.build.sourceEncoding} + + + + attach-javadocs + + jar + + + + + + + + + + + diff --git a/code/arachne/org/apache/apache/7/apache-7.pom.sha1 b/code/arachne/org/apache/apache/7/apache-7.pom.sha1 new file mode 100644 index 000000000..f1eb4c676 --- /dev/null +++ b/code/arachne/org/apache/apache/7/apache-7.pom.sha1 @@ -0,0 +1 @@ +a5f679b14bb06a3cb3769eb04e228c8b9e12908f \ No newline at end of file diff --git a/code/arachne/org/apache/apache/9/_remote.repositories b/code/arachne/org/apache/apache/9/_remote.repositories new file mode 100644 index 000000000..ce719eb9f --- /dev/null +++ b/code/arachne/org/apache/apache/9/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:14 EDT 2024 +apache-9.pom>central= diff --git a/code/arachne/org/apache/apache/9/apache-9.pom b/code/arachne/org/apache/apache/9/apache-9.pom new file mode 100644 index 000000000..e36c2ec82 --- /dev/null +++ b/code/arachne/org/apache/apache/9/apache-9.pom @@ -0,0 +1,393 @@ + + + + + + 4.0.0 + + + org.apache + apache + 9 + pom + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + The Apache Software Foundation + http://www.apache.org/ + + http://www.apache.org/ + + + apache.snapshots + Apache Snapshot Repository + http://repository.apache.org/snapshots + + false + + + + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + http://www.apache.org/images/asf_logo_wide.gif + UTF-8 + source-release + + + scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-9 + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-9 + http://svn.apache.org/viewvc/maven/pom/tags/apache-9 + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.6 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2 + + + org.apache.maven.plugins + maven-clean-plugin + 2.4.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + 1.4 + 1.4 + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.5 + + + org.apache.maven.plugins + maven-docck-plugin + 1.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + org.apache.maven.plugins + maven-invoker-plugin + 1.5 + + + org.apache.maven.plugins + maven-jar-plugin + 2.3.1 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + 2.5 + + + org.apache.maven.plugins + maven-plugin-plugin + 2.7 + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + false + deploy + -Papache-release + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.1 + + + org.apache.maven.plugins + maven-resources-plugin + 2.4.3 + + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-scm-plugin + 1.4 + + + org.apache.maven.plugins + maven-site-plugin + 2.2 + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.7.2 + + + org.apache.rat + apache-rat-plugin + 0.7 + + + org.codehaus.mojo + clirr-maven-plugin + 2.3 + + + org.codehaus.plexus + plexus-maven-plugin + 1.3.8 + + + org.codehaus.modello + modello-maven-plugin + 1.4.1 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.3.1 + + + + + + + + apache-release + + + + + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.3 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + gnu + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + ${gpg.passphrase} + true + + + + + sign + + + + + + + + + + maven-3 + + + + ${basedir} + + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.0-beta-3 + + + + + + + + diff --git a/code/arachne/org/apache/apache/9/apache-9.pom.sha1 b/code/arachne/org/apache/apache/9/apache-9.pom.sha1 new file mode 100644 index 000000000..8f3f7a06d --- /dev/null +++ b/code/arachne/org/apache/apache/9/apache-9.pom.sha1 @@ -0,0 +1 @@ +de55d73a30c7521f3d55e8141d360ffbdfd88caa \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-collections4/4.1/_remote.repositories b/code/arachne/org/apache/commons/commons-collections4/4.1/_remote.repositories new file mode 100644 index 000000000..bebd84cbd --- /dev/null +++ b/code/arachne/org/apache/commons/commons-collections4/4.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:18 EDT 2024 +commons-collections4-4.1.pom>central= diff --git a/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom b/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom new file mode 100644 index 000000000..5ae7f5265 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom @@ -0,0 +1,731 @@ + + + + + org.apache.commons + commons-parent + 38 + + 4.0.0 + org.apache.commons + commons-collections4 + 4.1 + Apache Commons Collections + + 2001 + The Apache Commons Collections package contains types that extend and augment the Java Collections Framework. + + http://commons.apache.org/proper/commons-collections/ + + + jira + http://issues.apache.org/jira/browse/COLLECTIONS + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/collections/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/collections/trunk + http://svn.apache.org/viewvc/commons/proper/collections/trunk + + + + + Matt Benson + mbenson + + + James Carman + jcarman + + + Stephen Colebourne + scolebourne + + + Robert Burrell Donkin + rdonkin + + + Morgan Delagrange + morgand + + + Gary D. Gregory + ggregory + + + Matthew Hawthorne + matth + + + Dipanjan Laha + dlaha + + + Geir Magnusson + geirm + + + Luc Maisonobe + luc + + + Craig McClanahan + craigmcc + + + Thomas Neidhart + tn + + + Adrian Nistor + adriannistor + + + Phil Steitz + psteitz + + + Arun M. Thomas + amamment + + + Rodney Waldhoff + rwaldhoff + + + Henri Yandell + bayard + + + + + + Rafael U. C. Afonso + + + Max Rydahl Andersen + + + Avalon + + + Federico Barbieri + + + Jeffrey Barnes + + + Nicola Ken Barozzi + + + Arron Bates + + + Sebastian Bazley + + + Benjamin Bentmann + + + Ola Berg + + + Sam Berlin + + + Christopher Berry + + + Nathan Beyer + + + Rune Peter Bjørnstad + + + Janek Bogucki + + + Maarten Brak + + + Dave Bryson + + + Chuck Burdick + + + Julien Buret + + + Josh Cain + + + Jonathan Carlson + + + Ram Chidambaram + + + Steve Clark + + + Benoit Corne + + + Eric Crampton + + + Dimiter Dimitrov + + + Peter Donald + + + Steve Downey + + + Rich Dougherty + + + Tom Dunham + + + Stefano Fornari + + + Andrew Freeman + + + Gerhard Froehlich + + + Goran Hacek + + + David Hay + + + Mario Ivankovits + + + Paul Jack + + + Eric Johnson + + + Kent Johnson + + + Marc Johnson + + + Roger Kapsi + + + Nissim Karpenstein + + + Shinobu Kawai + + + Stephen Kestle + + + Mohan Kishore + + + Simon Kitching + + + Thomas Knych + + + Serge Knystautas + + + Peter KoBek + + + Jordan Krey + + + Olaf Krische + + + Guilhem Lavaux + + + Paul Legato + + + David Leppik + + + Berin Loritsch + + + Hendrik Maryns + + + Stefano Mazzocchi + + + Brian McCallister + + + David Meikle + + + Steven Melzer + + + Leon Messerschmidt + + + Mauricio S. Moura + + + Kasper Nielsen + + + Stanislaw Osinski + + + Alban Peignier + + + Mike Pettypiece + + + Steve Phelps + + + Ilkka Priha + + + Jonas Van Poucke + + + Will Pugh + + + Herve Quiroz + + + Daniel Rall + + + Robert Ribnitz + + + Huw Roberts + + + Henning P. Schmiedehausen + + + Joerg Schmuecker + + + Howard Lewis Ship + + + Joe Raysa + + + Jeff Rodriguez + + + Ashwin S + + + Jordane Sarda + + + Thomas Schapitz + + + Jon Schewe + + + Andreas Schlosser + + + Christian Siefkes + + + Michael Smith + + + Stephen Smith + + + Jan Sorensen + + + Jon S. Stevens + + + James Strachan + + + Leo Sutic + + + Radford Tam + + + Chris Tilden + + + Neil O'Toole + + + Jeff Turner + + + Kazuya Ujihara + + + Thomas Vahrst + + + Jeff Varszegi + + + Ralph Wagner + + + Hollis Waite + + + David Weinrich + + + Dieter Wimberger + + + Serhiy Yevtushenko + + + Sai Zhang + + + Jason van Zyl + + + Geoff Schoeman + + + Goncalo Marques + + + + + + junit + junit + 4.11 + test + + + org.easymock + easymock + 3.2 + test + + + + + + apache.website + Apache Commons Site + ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid} + + + + + UTF-8 + UTF-8 + 1.6 + 1.6 + + + collections4 + + + 4.1 + (Java 6.0+) + + + 3.2.2 + (Requires Java 1.3 or later) + + commons-collections-${commons.release.2.version} + + COLLECTIONS + 12310465 + + RC2 + 2.9.1 + + collections + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-collections + site-content + + + 2.9.1 + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/*Test.java + + + **/*$* + **/TestUtils.java + **/Abstract*.java + **/BulkTest.java + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + maven-checkstyle-plugin + ${checkstyle.version} + + ${basedir}/src/conf/checkstyle.xml + false + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + %URL%/%ISSUE% + + + false + Fix Version,Key,Summary,Type,Resolution,Status + + Key DESC,Type,Fix Version DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + ${commons.release.version} + 500 + + + + + changes-report + jira-report + + + + + + maven-checkstyle-plugin + ${checkstyle.version} + + ${basedir}/src/conf/checkstyle.xml + false + ${basedir}/src/conf/checkstyle-suppressions.xml + + + + + checkstyle + + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + findbugs-maven-plugin + 2.5.5 + + Normal + Default + ${basedir}/src/conf/findbugs-exclude-filter.xml + + + + maven-pmd-plugin + 2.7.1 + + ${maven.compiler.target} + + + + + pmd + cpd + + + + + + org.apache.rat + apache-rat-plugin + + + site-content/**/* + src/test/resources/data/test/* + maven-eclipse.xml + .travis.yml + + + + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.7 + + + prepare-checkout + pre-site + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + + travis + + + env.TRAVIS + true + + + + true + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + prepare-agent + + prepare-agent + + + + + + org.eluder.coveralls + coveralls-maven-plugin + 3.1.0 + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom.sha1 b/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom.sha1 new file mode 100644 index 000000000..56f24f4f1 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom.sha1 @@ -0,0 +1 @@ +56c31f5fa1096fa1b33bf2813f2913412c47db2c \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-compress/1.24.0/_remote.repositories b/code/arachne/org/apache/commons/commons-compress/1.24.0/_remote.repositories new file mode 100644 index 000000000..627f29cf4 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-compress/1.24.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:12 EDT 2024 +commons-compress-1.24.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom b/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom new file mode 100644 index 000000000..376535aeb --- /dev/null +++ b/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom @@ -0,0 +1,637 @@ + + + + 4.0.0 + + org.apache.commons + commons-parent + 61 + + + commons-compress + 1.24.0 + Apache Commons Compress + https://commons.apache.org/proper/commons-compress/ + 2002 + + +Apache Commons Compress defines an API for working with +compression and archive formats. These include: bzip2, gzip, pack200, +lzma, xz, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, +Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj. + + + + 1.8 + 1.8 + + compress + org.apache.commons.compress + COMPRESS + 12310904 + + 1.24.0 + 1.23.0 + RC1 + 4.11.0 + + true + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + Gary Gregory + 86fdc7e2a11262cb + + ${project.build.outputDirectory}/META-INF + ${commons.manifestlocation}/MANIFEST.MF + + org.tukaani.xz;resolution:=optional, + org.brotli.dec;resolution:=optional, + com.github.luben.zstd;resolution:=optional, + org.objectweb.asm;resolution:=optional, + javax.crypto.*;resolution:=optional, + * + + + + true + + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} + false + + 4.13.5 + 2.0.8 + 9.5 + + + + jira + https://issues.apache.org/jira/browse/COMPRESS + + + + + org.junit.jupiter + junit-jupiter-params + test + + + org.junit.vintage + junit-vintage-engine + test + + + org.hamcrest + hamcrest + 2.2 + test + + + com.github.luben + zstd-jni + 1.5.5-5 + true + + + org.brotli + dec + 0.1.2 + true + + + org.tukaani + xz + 1.9 + true + + + + + org.ow2.asm + asm + ${asm.version} + true + + + + + org.mockito + mockito-core + ${mockito.version} + test + + + org.mockito + mockito-junit-jupiter + ${mockito.version} + test + + + com.github.marschall + memoryfilesystem + 2.6.1 + test + + + + + org.ops4j.pax.exam + pax-exam-container-native + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-junit4 + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-cm + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-link-mvn + ${pax.exam.version} + test + + + org.apache.felix + org.apache.felix.framework + 7.0.5 + test + + + javax.inject + javax.inject + 1 + test + + + org.slf4j + slf4j-api + ${slf4j.version} + test + + + commons-io + commons-io + 2.13.0 + test + + + org.apache.commons + commons-lang3 + 3.13.0 + test + + + + org.osgi + org.osgi.core + 6.0.0 + provided + + + + + + Torsten Curdt + tcurdt + tcurdt at apache.org + + + Stefan Bodewig + bodewig + bodewig at apache.org + + + Sebastian Bazley + sebb + sebb at apache.org + + + Christian Grobmeier + grobmeier + grobmeier at apache.org + + + Julius Davies + julius + julius at apache.org + + + Damjan Jovanovic + damjan + damjan at apache.org + + + Emmanuel Bourg + ebourg + ebourg at apache.org + + + ggregory + Gary Gregory + ggregory at apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + https://people.apache.org/~ggregory/img/garydgregory80.png + + + + Rob Tompkins + chtompki + chtompki at apache.org + + + Peter Alfred Lee + peterlee + peterlee at apache.org + + + + + + Wolfgang Glas + wolfgang.glas at ev-i.at + + + Christian Kohlschütte + ck@newsclub.de + + + Bear Giles + bgiles@coyotesong.com + + + Michael Kuss + mail at michael minus kuss.de + + + Lasse Collin + lasse.collin@tukaani.org + + + John Kodis + + + BELUGA BEHR + + + Simon Spero + sesuncedu@gmail.com + + + Michael Hausegger + hausegger.michael@googlemail.com + + + Arturo Bernal + arturobernalg@yahoo.com + + + + + scm:git:https://gitbox.apache.org/repos/asf/commons-compress.git + scm:git:https://gitbox.apache.org/repos/asf/commons-compress.git + https://gitbox.apache.org/repos/asf?p=commons-compress.git + HEAD + + + + clean verify apache-rat:check japicmp:cmp javadoc:javadoc + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + ${maven.compiler.source} + true + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc8.java.link} + ${commons.javadoc.javaee.link} + + + + Immutable + a + This class is immutable + + + NotThreadSafe + a + This class is not thread-safe + + + ThreadSafe + a + This class is thread-safe + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + src/test/resources/** + .pmd + .projectile + .mvn/** + .gitattributes + + + + + org.eluder.coveralls + coveralls-maven-plugin + + false + + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + + org.apache.commons.compress.harmony.pack200.Segment + org.apache.commons.compress.harmony.pack200.SegmentMethodVisitor + org.apache.commons.compress.harmony.pack200.SegmentAnnotationVisitor + org.apache.commons.compress.harmony.pack200.SegmentFieldVisitor + + + + + + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + maven-jar-plugin + + + + org.apache.commons.compress.archivers.Lister + org.apache.commons.compress + ${commons.module.name} + + + + + + org.apache.felix + maven-bundle-plugin + + ${commons.manifestlocation} + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + org.apache.maven.plugins + maven-pmd-plugin + + 200 + ${maven.compiler.source} + + ${basedir}/src/conf/pmd-ruleset.xml + + + + + com.github.spotbugs + spotbugs-maven-plugin + + Normal + Default + ${basedir}/src/conf/spotbugs-exclude-filter.xml + + + + org.apache.maven.plugins + maven-antrun-plugin + + + process-test-resources + + + + + + + run + + + + + + maven-surefire-plugin + + + ${karaf.version} + ${project.version} + + + + + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + 200 + ${maven.compiler.source} + + ${basedir}/src/conf/pmd-ruleset.xml + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + ${maven.compiler.source} + true + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc8.java.link} + ${commons.javadoc.javaee.link} + + + + Immutable + a + This class is immutable + + + NotThreadSafe + a + This class is not thread-safe + + + ThreadSafe + a + This class is thread-safe + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + Normal + Default + ${basedir}/src/conf/spotbugs-exclude-filter.xml + + + + + + + + + run-zipit + + + + org.apache.maven.plugins + maven-antrun-plugin + + + process-test-resources + + + + + + + run + + + + + + maven-surefire-plugin + + + **/zip/*IT.java + + + + + + + + run-tarit + + + + maven-surefire-plugin + + + **/tar/*IT.java + + + + + + + + java11+ + + [11,) + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + 8 + + + + + + + java9+ + + [9,) + + + 8 + true + + true + + + + + + diff --git a/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom.sha1 b/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom.sha1 new file mode 100644 index 000000000..dcb67edaf --- /dev/null +++ b/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom.sha1 @@ -0,0 +1 @@ +7aed3b6026a9177fa638c33e419ac57f7b10143f \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-compress/1.26.0/_remote.repositories b/code/arachne/org/apache/commons/commons-compress/1.26.0/_remote.repositories new file mode 100644 index 000000000..d3d642296 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-compress/1.26.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:12 EDT 2024 +commons-compress-1.26.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom b/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom new file mode 100644 index 000000000..e1118dc1a --- /dev/null +++ b/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom @@ -0,0 +1,642 @@ + + + + 4.0.0 + + org.apache.commons + commons-parent + 66 + + + commons-compress + 1.26.0 + Apache Commons Compress + https://commons.apache.org/proper/commons-compress/ + 2002 + + +Apache Commons Compress defines an API for working with +compression and archive formats. These include bzip2, gzip, pack200, +LZMA, XZ, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, +Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj. + + + + 1.8 + 1.8 + + compress + org.apache.commons.compress + COMPRESS + 12310904 + + 1.26.0 + 1.26.1 + 1.25.0 + RC1 + 4.11.0 + + true + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + ${project.build.outputDirectory}/META-INF + ${commons.manifestlocation}/MANIFEST.MF + + org.tukaani.xz;resolution:=optional, + org.brotli.dec;resolution:=optional, + com.github.luben.zstd;resolution:=optional, + org.objectweb.asm;resolution:=optional, + javax.crypto.*;resolution:=optional, + org.apache.commons.commons-codec;resolution:=optional, + org.apache.commons.commons-io;resolution:=optional, + org.apache.commons.lang3.reflect;resolution:=optional, + * + + + + true + + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} + false + + 4.13.5 + 2.0.12 + 9.6 + 2024-02-17T22:58:53Z + + 0.5.5 + + + + jira + https://issues.apache.org/jira/browse/COMPRESS + + + + + org.junit.jupiter + junit-jupiter-params + test + + + org.junit.vintage + junit-vintage-engine + test + + + org.hamcrest + hamcrest + 2.2 + test + + + com.github.luben + zstd-jni + 1.5.5-11 + true + + + org.brotli + dec + 0.1.2 + true + + + org.tukaani + xz + 1.9 + true + + + + commons-codec + commons-codec + 1.16.1 + true + + + + + org.ow2.asm + asm + ${asm.version} + true + + + + + org.mockito + mockito-core + ${mockito.version} + test + + + org.mockito + mockito-junit-jupiter + ${mockito.version} + test + + + com.github.marschall + memoryfilesystem + 2.8.0 + test + + + + + org.ops4j.pax.exam + pax-exam-container-native + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-junit4 + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-cm + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-link-mvn + ${pax.exam.version} + test + + + org.apache.felix + org.apache.felix.framework + 7.0.5 + test + + + javax.inject + javax.inject + 1 + test + + + org.slf4j + slf4j-api + ${slf4j.version} + test + + + commons-io + commons-io + 2.15.1 + + + org.apache.commons + commons-lang3 + 3.14.0 + + + org.osgi + org.osgi.core + 6.0.0 + provided + + + + + scm:git:https://gitbox.apache.org/repos/asf/commons-compress.git + scm:git:https://gitbox.apache.org/repos/asf/commons-compress.git + https://gitbox.apache.org/repos/asf?p=commons-compress.git + HEAD + + + + clean artifact:check-buildplan verify apache-rat:check checkstyle:check japicmp:cmp javadoc:javadoc + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + ${maven.compiler.source} + true + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc8.java.link} + ${commons.javadoc.javaee.link} + https://commons.apache.org/proper/commons-codec/apidocs + https://commons.apache.org/proper/commons-io/apidocs + + + + Immutable + a + This class is immutable + + + NotThreadSafe + a + This class is not thread-safe + + + ThreadSafe + a + This class is thread-safe + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + src/test/resources/** + .pmd + .projectile + .mvn/** + .gitattributes + + + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + + org.apache.commons.compress.harmony.pack200.Segment + org.apache.commons.compress.harmony.pack200.SegmentMethodVisitor + org.apache.commons.compress.harmony.pack200.SegmentAnnotationVisitor + org.apache.commons.compress.harmony.pack200.SegmentFieldVisitor + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + Normal + Default + ${basedir}/src/conf/spotbugs-exclude-filter.xml + + + + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + maven-jar-plugin + + + + org.apache.commons.compress.archivers.Lister + org.apache.commons.compress + ${commons.module.name} + + + + + + org.apache.felix + maven-bundle-plugin + + ${commons.manifestlocation} + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + org.apache.maven.plugins + maven-pmd-plugin + + 200 + ${maven.compiler.source} + + ${basedir}/src/conf/pmd-ruleset.xml + + + + + com.github.spotbugs + spotbugs-maven-plugin + + + org.apache.maven.plugins + maven-antrun-plugin + + + process-test-resources + + + + + + + run + + + + + + maven-surefire-plugin + + + ${karaf.version} + ${project.version} + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + ${basedir}/src/conf/checkstyle.xml + checkstyle-suppressions.xml + true + false + target/** + + + + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + 200 + ${maven.compiler.source} + + ${basedir}/src/conf/pmd-ruleset.xml + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + com.github.spotbugs + spotbugs-maven-plugin + + + + + + + + run-zipit + + + + org.apache.maven.plugins + maven-antrun-plugin + + + process-test-resources + + + + + + + run + + + + + + maven-surefire-plugin + + + **/zip/*IT.java + + + + + + + + run-tarit + + + + maven-surefire-plugin + + + **/tar/*IT.java + + + + + + + + java11+ + + [11,) + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + 8 + + + + + + + java9+ + + [9,) + + + 8 + true + + true + + + + java17 + + [17,) + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + --add-opens java.base/java.io=ALL-UNNAMED + + + + + + + + + + + Torsten Curdt + tcurdt + tcurdt at apache.org + + + Stefan Bodewig + bodewig + bodewig at apache.org + + + Sebastian Bazley + sebb + sebb at apache.org + + + Christian Grobmeier + grobmeier + grobmeier at apache.org + + + Julius Davies + julius + julius at apache.org + + + Damjan Jovanovic + damjan + damjan at apache.org + + + Emmanuel Bourg + ebourg + ebourg at apache.org + + + ggregory + Gary Gregory + ggregory at apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + https://people.apache.org/~ggregory/img/garydgregory80.png + + + + Rob Tompkins + chtompki + chtompki at apache.org + + + Peter Alfred Lee + peterlee + peterlee at apache.org + + + + + + Wolfgang Glas + wolfgang.glas at ev-i.at + + + Christian Kohlschütte + ck@newsclub.de + + + Bear Giles + bgiles@coyotesong.com + + + Michael Kuss + mail at michael minus kuss.de + + + Lasse Collin + lasse.collin@tukaani.org + + + John Kodis + + + BELUGA BEHR + + + Simon Spero + sesuncedu@gmail.com + + + Michael Hausegger + hausegger.michael@googlemail.com + + + Arturo Bernal + arturobernalg@yahoo.com + + + + diff --git a/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom.sha1 b/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom.sha1 new file mode 100644 index 000000000..6b03577d5 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom.sha1 @@ -0,0 +1 @@ +634886adafbd321483b905393ab1cd73b46edf72 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-csv/1.9.0/_remote.repositories b/code/arachne/org/apache/commons/commons-csv/1.9.0/_remote.repositories new file mode 100644 index 000000000..8df694961 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-csv/1.9.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:57 EDT 2024 +commons-csv-1.9.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom b/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom new file mode 100644 index 000000000..fd2d55d43 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom @@ -0,0 +1,527 @@ + + + + 4.0.0 + + org.apache.commons + commons-parent + 52 + + commons-csv + 1.9.0 + Apache Commons CSV + https://commons.apache.org/proper/commons-csv/ + 2005 + The Apache Commons CSV library provides a simple interface for reading and writing CSV files of various types. + + + + org.junit.jupiter + junit-jupiter + 5.8.0-M1 + test + + + org.hamcrest + hamcrest + 2.2 + test + + + org.mockito + mockito-core + 3.11.2 + test + + + commons-io + commons-io + 2.11.0 + test + + + org.apache.commons + commons-lang3 + 3.12.0 + test + + + com.h2database + h2 + 1.4.200 + test + + + + + + bayard + Henri Yandell + bayard@apache.org + The Apache Software Foundation + + + Martin van den Bemt + mvdb + mvdb@apache.org + The Apache Software Foundation + + + Yonik Seeley + yonik + yonik@apache.org + The Apache Software Foundation + + + Emmanuel Bourg + ebourg + ebourg@apache.org + Apache + + + ggregory + Gary Gregory + ggregory at apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + https://people.apache.org/~ggregory/img/garydgregory80.png + + + + Benedikt Ritter + britter + britter@apache.org + The Apache Software Foundation + + + Rob Tompkins + chtompki + chtompki@apache.org + The Apache Software Foundation + + + + + Bob Smith + + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-csv.git + scm:git:https://gitbox.apache.org/repos/asf/commons-csv.git + https://gitbox.apache.org/repos/asf?p=commons-csv.git + + + + jira + https://issues.apache.org/jira/browse/CSV + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-csv/ + + + + + 1.9.0 + (Java 8) + + RC1 + 1.8 + csv + org.apache.commons.csv + CSV + 12313222 + 1.8 + 1.8 + http://docs.oracle.com/javase/8/docs/api/ + + UTF-8 + UTF-8 + UTF-8 + + 3.1.2 + 8.44 + ${basedir}/src/site/resources/checkstyle/checkstyle-header.txt + ${basedir}/src/site/resources/checkstyle/checkstyle.xml + ${basedir}/src/site/resources/checkstyle/checkstyle-suppressions.xml + LICENSE.txt, NOTICE.txt, **/maven-archiver/pom.properties + + 3.14.0 + 6.36.0 + 0.8.7 + 4.3.0 + 0.15.3 + 3.3.0 + 5.3.0 + false + + true + Gary Gregory + 86fdc7e2a11262cb + + + + clean package apache-rat:check japicmp:cmp checkstyle:check spotbugs:check pmd:check javadoc:javadoc + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${commons.checkstyle-plugin.version} + + ${checkstyle.config.file} + false + ${checkstyle.suppress.file} + + + + com.puppycrawl.tools + checkstyle + ${commons.checkstyle.version} + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd.version} + + + net.sourceforge.pmd + pmd-core + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-java + ${commons.pmd-impl.version} + + + + ${maven.compiler.target} + false + + ${basedir}/src/site/resources/pmd/pmd-ruleset.xml + + + + + + + org.apache.rat + apache-rat-plugin + + + + + src/test/resources/org/apache/commons/csv/empty.txt + src/test/resources/org/apache/commons/csv/csv-167/sample1.csv + src/test/resources/org/apache/commons/csv/CSV-198/optd_por_public.csv + src/test/resources/org/apache/commons/csv/CSV-213/999751170.patch.csv + src/test/resources/org/apache/commons/csv/CSVFileParser/bom.csv + src/test/resources/org/apache/commons/csv/CSVFileParser/test.csv + src/test/resources/org/apache/commons/csv/CSVFileParser/test_default.txt + src/test/resources/org/apache/commons/csv/CSVFileParser/test_default_comment.txt + src/test/resources/org/apache/commons/csv/CSVFileParser/test_rfc4180.txt + src/test/resources/org/apache/commons/csv/CSVFileParser/test_rfc4180_trim.txt + src/test/resources/org/apache/commons/csv/CSVFileParser/testCSV85.csv + src/test/resources/org/apache/commons/csv/CSVFileParser/testCSV85_default.txt + src/test/resources/org/apache/commons/csv/CSVFileParser/testCSV85_ignoreEmpty.txt + + src/test/resources/org/apache/commons/csv/ferc.gov/contract.txt + src/test/resources/org/apache/commons/csv/ferc.gov/transaction.txt + src/test/resources/**/*.bin + src/test/resources/org/apache/commons/csv/CSV-259/sample.txt + src/test/resources/org/apache/commons/csv/CSVFileParser/testCSV246.csv + src/test/resources/org/apache/commons/csv/CSVFileParser/testCSV246_checkWithNoComment.txt + + + + + + + + maven-compiler-plugin + + + **/*Benchmark* + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/perf/PerformanceTest.java + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + com.github.spotbugs + spotbugs-maven-plugin + ${commons.spotbugs.version} + + ${basedir}/src/site/resources/spotbugs/spotbugs-exclude-filter.xml + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + + org.apache.rat + apache-rat-plugin + + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + + + checkstyle + + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${commons.spotbugs.version} + + ${basedir}/src/site/resources/spotbugs/spotbugs-exclude-filter.xml + + + + org.apache.maven.plugins + maven-pmd-plugin + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + + + Needs Work + + + TODO + exact + + + FIXME + exact + + + XXX + exact + + + + + Notable Markers + + + NOTE + exact + + + NOPMD + exact + + + NOSONAR + exact + + + + + + + + + org.apache.rat + apache-rat-plugin + + + + + + + + benchmark + + + + org.openjdk.jmh + jmh-core + 1.32 + test + + + + org.openjdk.jmh + jmh-generator-annprocess + 1.32 + test + + + + genjava + gj-csv + 1.0 + test + + + + net.sourceforge.javacsv + javacsv + 2.0 + test + + + + com.opencsv + opencsv + 5.5.1 + test + + + + net.sf.supercsv + super-csv + 2.4.0 + test + + + + + org.skife.kasparov + csv + 1.0 + provided + + + + org.apache.commons + commons-lang3 + 3.12.0 + + + + + true + org.apache + + + + + + + maven-compiler-plugin + ${commons.compiler.version} + + + **/* + + + + + + + org.codehaus.mojo + exec-maven-plugin + + + benchmark + test + + exec + + + test + java + + -classpath + + org.openjdk.jmh.Main + -rf + json + -rff + target/jmh-result.json + ${benchmark} + + + + + + + + + + + java9 + + 9 + + + + true + + + + + diff --git a/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom.sha1 b/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom.sha1 new file mode 100644 index 000000000..3f0467102 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom.sha1 @@ -0,0 +1 @@ +8c772f73226ac68b9c3f3ed8779e275345c937ce \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-io/1.3.2/_remote.repositories b/code/arachne/org/apache/commons/commons-io/1.3.2/_remote.repositories new file mode 100644 index 000000000..b8c2a3985 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-io/1.3.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +commons-io-1.3.2.pom>central= diff --git a/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom b/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom new file mode 100644 index 000000000..3f45d29f2 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom @@ -0,0 +1,14 @@ + + + 4.0.0 + org.apache.commons + commons-io + 1.3.2 + + + commons-io + commons-io + https://issues.sonatype.org/browse/MVNCENTRAL-244 + + + diff --git a/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 b/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 new file mode 100644 index 000000000..635df983f --- /dev/null +++ b/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 @@ -0,0 +1 @@ +785e86ecf26be3f245edcc567d5628bd8cea08fa \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-lang3/3.13.0/_remote.repositories b/code/arachne/org/apache/commons/commons-lang3/3.13.0/_remote.repositories new file mode 100644 index 000000000..edb7515f7 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-lang3/3.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:11 EDT 2024 +commons-lang3-3.13.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom b/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom new file mode 100644 index 000000000..99e87fd02 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom @@ -0,0 +1,1003 @@ + + + + + org.apache.commons + commons-parent + 58 + + 4.0.0 + commons-lang3 + 3.13.0 + Apache Commons Lang + + 2001 + + Apache Commons Lang, a package of Java utility classes for the + classes that are in java.lang's hierarchy, or are considered to be so + standard as to justify existence in java.lang. + + + https://commons.apache.org/proper/commons-lang/ + + + jira + https://issues.apache.org/jira/browse/LANG + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-lang.git + scm:git:https://gitbox.apache.org/repos/asf/commons-lang.git + https://gitbox.apache.org/repos/asf?p=commons-lang.git + rel/commons-lang-3.13.0 + + + + + Daniel Rall + dlr + dlr@finemaltcoding.com + CollabNet, Inc. + + Java Developer + + + + Stephen Colebourne + scolebourne + scolebourne@joda.org + SITA ATS Ltd + 0 + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Steven Caswell + scaswell + stevencaswell@apache.org + + + Java Developer + + -5 + + + Robert Burrell Donkin + rdonkin + rdonkin@apache.org + + + Java Developer + + + + ggregory + Gary Gregory + ggregory at apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + https://people.apache.org/~ggregory/img/garydgregory80.png + + + + Fredrik Westermarck + fredrik + + + + Java Developer + + + + James Carman + jcarman + jcarman@apache.org + Carman Consulting, Inc. + + Java Developer + + + + Niall Pemberton + niallp + + Java Developer + + + + Matt Benson + mbenson + + Java Developer + + + + Joerg Schaible + joehni + joerg.schaible@gmx.de + + Java Developer + + +1 + + + Oliver Heger + oheger + oheger@apache.org + +1 + + Java Developer + + + + Paul Benedict + pbenedict + pbenedict@apache.org + + Java Developer + + + + Benedikt Ritter + britter + britter@apache.org + + Java Developer + + + + Duncan Jones + djones + djones@apache.org + 0 + + Java Developer + + + + Loic Guibert + lguibert + lguibert@apache.org + +4 + + Java Developer + + + + Rob Tompkins + chtompki + chtompki@apache.org + -5 + + Java Developer + + + + + + C. Scott Ananian + + + Chris Audley + + + Stephane Bailliez + + + Michael Becke + + + Benjamin Bentmann + + + Ola Berg + + + Nathan Beyer + + + Stefan Bodewig + + + Janek Bogucki + + + Mike Bowler + + + Sean Brown + + + Alexander Day Chaffee + + + Al Chou + + + Greg Coladonato + + + Maarten Coene + + + Justin Couch + + + Michael Davey + + + Norm Deane + + + Morgan Delagrange + + + Ringo De Smet + + + Russel Dittmar + + + Steve Downey + + + Matthias Eichel + + + Christopher Elkins + + + Chris Feldhacker + + + Roland Foerther + + + Pete Gieser + + + Jason Gritman + + + Matthew Hawthorne + + + Michael Heuer + + + Chas Honton + + + Chris Hyzer + + + Paul Jack + + + Marc Johnson + + + Shaun Kalley + + + Tetsuya Kaneuchi + + + Nissim Karpenstein + + + Ed Korthof + + + Holger Krauth + + + Rafal Krupinski + + + Rafal Krzewski + + + David Leppik + + + Eli Lindsey + + + Sven Ludwig + + + Craig R. McClanahan + + + Rand McNeely + + + Hendrik Maryns + + + Dave Meikle + + + Nikolay Metchev + + + Kasper Nielsen + + + Tim O'Brien + + + Brian S O'Neill + + + Andrew C. Oliver + + + Alban Peignier + + + Moritz Petersen + + + Dmitri Plotnikov + + + Neeme Praks + + + Eric Pugh + + + Stephen Putman + + + Travis Reeder + + + Antony Riley + + + Valentin Rocher + + + Scott Sanders + + + James Sawle + + + Ralph Schaer + + + Henning P. Schmiedehausen + + + Sean Schofield + + + Robert Scholte + + + Reuben Sivan + + + Ville Skytta + + + David M. Sledge + + + Michael A. Smith + + + Jan Sorensen + + + Glen Stampoultzis + + + Scott Stanchfield + + + Jon S. Stevens + + + Sean C. Sullivan + + + Ashwin Suresh + + + Helge Tesgaard + + + Arun Mammen Thomas + + + Masato Tezuka + + + Daniel Trebbien + + + Jeff Varszegi + + + Chris Webb + + + Mario Winterer + + + Stepan Koltsov + + + Holger Hoffstatte + + + Derek C. Ashmore + + + Sebastien Riou + + + Allon Mureinik + + + Adam Hooper + + + Chris Karcher + + + Michael Osipov + + + Thiago Andrade + + + Jonathan Baker + + + Mikhail Mazursky + + + Fabian Lange + + + Michał Kordas + + + Felipe Adorno + + + Adrian Ber + + + Mark Dacek + + + Peter Verhas + + + Jin Xu + + + Arturo Bernal + + + + + + + + org.junit.jupiter + junit-jupiter + test + + + org.junit-pioneer + junit-pioneer + 1.9.1 + test + + + org.hamcrest + hamcrest + 2.2 + test + + + + org.easymock + easymock + 5.1.0 + test + + + + + org.apache.commons + commons-text + 1.10.0 + provided + + + + org.openjdk.jmh + jmh-core + ${jmh.version} + test + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh.version} + test + + + com.google.code.findbugs + jsr305 + 3.0.2 + test + + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-lang/ + + + + + -Xmx512m + ISO-8859-1 + UTF-8 + 1.8 + 1.8 + + lang + lang3 + org.apache.commons.lang3 + + 3.13.0 + (Java 8+) + + 2.6 + (Requires Java 1.2 or later) + + commons-lang-${commons.release.2.version} + LANG + 12310481 + + lang + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-lang + site-content + utf-8 + + src/site/resources/checkstyle + + false + + 0.5.5 + + 1.36 + benchmarks + + + 3.12.0 + RC1 + true + scm:svn:https://dist.apache.org/repos/dist/dev/commons/lang + Gary Gregory + 86fdc7e2a11262cb + + + + clean verify apache-rat:check checkstyle:check japicmp:cmp spotbugs:check pmd:check javadoc:javadoc + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd.version} + + ${maven.compiler.target} + src/conf/exclude-pmd.properties + + + + org.apache.rat + apache-rat-plugin + + + site-content/** + src/site/resources/.htaccess + src/site/resources/download_lang.cgi + src/site/resources/release-notes/RELEASE-NOTES-*.txt + src/test/resources/lang-708-input.txt + + + + + + + + maven-javadoc-plugin + + ${maven.compiler.source} + true + true + + https://commons.apache.org/proper/commons-text/apidocs + https://docs.oracle.com/javase/8/docs/api + https://docs.oracle.com/javaee/6/api + + true + + + true + true + + + all + + + + create-javadoc-jar + + javadoc + jar + + package + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + plain + + + **/*Test.java + + random + + + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + ${commons.module.name} + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + maven-checkstyle-plugin + + ${checkstyle.configdir}/checkstyle.xml + true + false + + + + com.github.spotbugs + spotbugs-maven-plugin + + ${basedir}/src/conf/spotbugs-exclude-filter.xml + + + + + + + + + maven-javadoc-plugin + + ${maven.compiler.source} + true + true + + https://commons.apache.org/proper/commons-text/apidocs + https://docs.oracle.com/javase/8/docs/api + https://docs.oracle.com/javaee/6/api + + true + + + true + true + + + all + + + + maven-checkstyle-plugin + + ${checkstyle.configdir}/checkstyle.xml + true + false + + + + + checkstyle + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + ${basedir}/src/conf/spotbugs-exclude-filter.xml + + + + org.apache.maven.plugins + maven-pmd-plugin + + + org.codehaus.mojo + taglist-maven-plugin + 3.0.0 + + + + + Needs Work + + + TODO + exact + + + FIXME + exact + + + XXX + exact + + + + + Noteable Markers + + + NOTE + exact + + + NOPMD + exact + + + NOSONAR + exact + + + + + + + + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + prepare-checkout + pre-site + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + + java9+ + + [9,) + + + + + -Xmx512m --add-opens java.base/java.lang.reflect=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED + + true + + + + java13+ + + [13,) + + + + true + + + + java15 + + + 15 + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + org/apache/commons/lang3/time/Java15BugFastDateParserTest.java + + + + + + + + + benchmark + + true + org.apache + + + + + org.codehaus.mojo + exec-maven-plugin + 3.1.0 + + + benchmark + test + + exec + + + test + java + + -classpath + + org.openjdk.jmh.Main + -rf + json + -rff + target/jmh-result.${benchmark}.json + ${benchmark} + + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom.sha1 b/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom.sha1 new file mode 100644 index 000000000..42d0473e4 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom.sha1 @@ -0,0 +1 @@ +7ab891d9dcdbea24037ceaa42744d5e7d800e495 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/17/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/17/_remote.repositories new file mode 100644 index 000000000..17821c7bb --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/17/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:15 EDT 2024 +commons-parent-17.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom b/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom new file mode 100644 index 000000000..ceb236a33 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom @@ -0,0 +1,785 @@ + + + + 4.0.0 + + org.apache + apache + 7 + + org.apache.commons + commons-parent + pom + + 17 + Commons Parent + http://commons.apache.org/ + + + continuum + http://vmbuild.apache.org/continuum/ + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-17 + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-17 + http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-17 + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + 1.3 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2-beta-5 + + + org.apache.maven.plugins + maven-clean-plugin + 2.4 + + + org.apache.maven.plugins + maven-compiler-plugin + 2.1 + + ${maven.compile.source} + ${maven.compile.target} + ${commons.encoding} + ${commons.compiler.fork} + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.5 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + org.apache.maven.plugins + maven-install-plugin + 2.3 + + + org.apache.maven.plugins + maven-jar-plugin + 2.3 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.5 + + + true + ${commons.encoding} + ${commons.docEncoding} + + + true + true + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.0 + + + org.apache.maven.plugins + maven-remote-resources-plugin + + 1.0 + + + true + + + + org.apache.maven.plugins + maven-resources-plugin + 2.4.1 + + + org.apache.maven.plugins + maven-site-plugin + 2.0.1 + + + org.apache.maven.plugins + maven-source-plugin + 2.1.1 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + + org.apache.commons + commons-build-plugin + 1.3 + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + + 1.4.3 + true + + + + + + maven-compiler-plugin + + + maven-surefire-plugin + + ${commons.surefire.java} + + + + maven-jar-plugin + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compile.source} + ${maven.compile.target} + + + + + + org.apache.felix + maven-bundle-plugin + + true + target/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + maven-idea-plugin + + + ${maven.compile.source} + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.commons + commons-build-plugin + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.1.2 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.5 + + + true + ${maven.compile.source} + ${commons.encoding} + ${commons.docEncoding} + true + + http://java.sun.com/javase/6/docs/api/ + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.1 + + false + + + + org.apache.maven.plugins + maven-site-plugin + 2.0.1 + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire.version} + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0-beta-2 + + + org.codehaus.mojo + rat-maven-plugin + 1.0-alpha-3 + + + + + + + + ci + + + apache.snapshots + Apache Development Snapshot Repository + ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository + + + apache.snapshots + Apache Development Snapshot Repository + ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository + + + + + + release + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + + package + + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compile.source} + + + + maven-assembly-plugin + + + + attached + + package + + + + + + + + + rc + + + apache.snapshots + Apache Development Snapshot Repository + ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/staged + + + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + + package + + + + + maven-release-plugin + + + -Prc + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compile.source} + + + + maven-assembly-plugin + + + + attached + + package + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + 2.2 + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + + + + + + trunks-proper + + ../beanutils + ../betwixt + ../chain + ../cli + ../codec + ../collections + ../compress + ../configuration + ../daemon + ../dbcp + ../dbutils + ../digester + ../discovery + ../el + ../email + ../exec + ../fileupload + ../io + ../jci + ../jexl + ../jxpath + ../lang + ../launcher + ../logging + ../math + ../modeler + ../net + ../pool + ../primitives + ../proxy + ../sanselan + ../scxml + ../validator + ../vfs + + + + + + + + 1.3 + 1.3 + + + false + + + + 2.5 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + + + ${project.artifactId} + + + RC1 + + + org.apache.commons.${commons.componentid} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + + + target/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + ${commons.encoding} + + ${commons.encoding} + ${commons.encoding} + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 new file mode 100644 index 000000000..59f5d9d6e --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 @@ -0,0 +1 @@ +84bc2f457fac92c947cde9c15c81786ded79b3c1 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/24/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/24/_remote.repositories new file mode 100644 index 000000000..70ae7e614 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/24/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:15 EDT 2024 +commons-parent-24.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom b/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom new file mode 100644 index 000000000..4f37c5f88 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom @@ -0,0 +1,1187 @@ + + + + 4.0.0 + + org.apache + apache + + 9 + + org.apache.commons + commons-parent + pom + + 24 + Commons Parent + http://commons.apache.org/ + The Apache Commons Parent Pom provides common settings for all Apache Commons components. + + + + + + 2.2.1 + + + + continuum + http://vmbuild.apache.org/continuum/ + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.7 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.3 + + + org.apache.maven.plugins + maven-clean-plugin + 2.4.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + ${maven.compile.source} + ${maven.compile.target} + ${commons.encoding} + ${commons.compiler.fork} + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.7 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.4 + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${commons.encoding} + ${commons.docEncoding} + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.2.2 + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + 1.2.1 + + + true + + + + org.apache.maven.plugins + maven-resources-plugin + 2.5 + + + org.apache.maven.plugins + maven-site-plugin + 3.0 + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + + org.apache.commons + commons-build-plugin + 1.4 + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + 2.3.7 + true + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.0 + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compile.source} + ${maven.compile.target} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + true + target/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compile.source} + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.0 + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + cobertura-maven-plugin + 2.5.1 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0-beta-2 + + + + + + + + + release + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + test-jar + + + + + + maven-jar-plugin + + + + test-jar + + + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compile.source} + + + + maven-assembly-plugin + + + + single + + package + + + + + + + + + rc + + + apache.snapshots + Apache Development Snapshot Repository + ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/staged + + + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + + package + + + + + maven-release-plugin + + + -Prc + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compile.source} + + + + maven-assembly-plugin + + + + single + + package + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + + + + + + trunks-proper + + + ../bcel + ../beanutils + ../betwixt + ../chain + ../cli + ../codec + ../collections + ../compress + ../configuration + ../daemon + ../dbcp + ../dbutils + ../digester + ../discovery + ../el + ../email + ../exec + ../fileupload + ../functor + ../io + ../jci + ../jcs + + ../jexl + ../jxpath + ../lang + ../launcher + ../logging + ../math + ../modeler + ../net + ../ognl + ../pool + ../primitives + ../proxy + ../sanselan + ../scxml + + ../validator + ../vfs + + + + + + maven-3 + + + + ${basedir} + + + + + + maven-site-plugin + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + java-1.5-detected + + 1.5 + + + + + + + org.apache.felix + maven-bundle-plugin + + + biz.aQute + bndlib + + 1.15.0 + + + + + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + !buildNumber.skip!true + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + + + + + 24 + RC1 + + + 1.3 + 1.3 + + + false + + + + + + 2.12 + 2.12 + 2.8.1 + 0.8 + 2.6 + 2.3 + 2.3 + 2.4 + 2.2 + + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + + ${project.artifactId} + + + org.apache.commons.${commons.componentid} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + + + target/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + ${commons.encoding} + + ${commons.encoding} + ${commons.encoding} + + + http://download.oracle.com/javase/6/docs/api/ + http://download.oracle.com/javaee/6/api/ + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + false + + + diff --git a/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom.sha1 new file mode 100644 index 000000000..1cb71b46b --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom.sha1 @@ -0,0 +1 @@ +dbb7913f93b279ef889f6bad288b82dae58df237 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/25/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/25/_remote.repositories new file mode 100644 index 000000000..3ebe3ab96 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/25/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:14 EDT 2024 +commons-parent-25.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom b/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom new file mode 100644 index 000000000..f41458c27 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom @@ -0,0 +1,1214 @@ + + + + 4.0.0 + + org.apache + apache + + 9 + + org.apache.commons + commons-parent + pom + + 25 + Commons Parent + http://commons.apache.org/ + The Apache Commons Parent Pom provides common settings for all Apache Commons components. + + + + + + 2.2.1 + + + + continuum + http://vmbuild.apache.org/continuum/ + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.7 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.3 + + + org.apache.maven.plugins + maven-clean-plugin + 2.4.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + ${maven.compile.source} + ${maven.compile.target} + ${commons.encoding} + ${commons.compiler.fork} + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.7 + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.4 + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${commons.encoding} + ${commons.docEncoding} + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.2.2 + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + 1.2.1 + + + true + + + + org.apache.maven.plugins + maven-resources-plugin + 2.5 + + + + org.apache.maven.plugins + maven-site-plugin + 3.0 + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + + org.apache.commons + commons-build-plugin + 1.4 + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + 2.3.7 + true + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.0 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compile.source} + ${maven.compile.target} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + true + target/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Key DESC,Type,Fix Version DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compile.source} + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.0 + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + cobertura-maven-plugin + 2.5.1 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0-beta-2 + + + + + + + + + release + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + test-jar + + + + + + maven-jar-plugin + + + + test-jar + + + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compile.source} + + + + maven-assembly-plugin + + + + single + + package + + + + + + + + + rc + + + apache.snapshots + Apache Development Snapshot Repository + ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/staged + + + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + + package + + + + + maven-release-plugin + + + -Prc + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compile.source} + + + + maven-assembly-plugin + + + + single + + package + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + + + + + + trunks-proper + + + ../bcel + ../beanutils + ../betwixt + ../chain + ../cli + ../codec + ../collections + ../compress + ../configuration + ../daemon + ../dbcp + ../dbutils + ../digester + ../discovery + ../el + ../email + ../exec + ../fileupload + ../functor + ../io + ../jci + ../jcs + + ../jexl + ../jxpath + ../lang + ../launcher + ../logging + ../math + ../modeler + ../net + ../ognl + ../pool + ../primitives + ../proxy + ../sanselan + ../scxml + + ../validator + ../vfs + + + + + + maven-3 + + + + ${basedir} + + + + + + maven-site-plugin + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + java-1.5-detected + + 1.5 + + + + + + + org.apache.felix + maven-bundle-plugin + + + biz.aQute + bndlib + + 1.15.0 + + + + + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + !buildNumber.skip!true + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + + + + + 25 + RC1 + + + + 1.3 + 1.3 + + + false + + + + + + 2.12 + 2.12 + 2.8.1 + 0.8 + 2.6 + 2.4 + 2.3 + 2.4 + 2.2 + + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + + ${project.artifactId} + + + org.apache.commons.${commons.componentid} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + + + target/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + ${commons.encoding} + + ${commons.encoding} + ${commons.encoding} + + + http://download.oracle.com/javase/6/docs/api/ + http://download.oracle.com/javaee/6/api/ + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + false + + + diff --git a/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom.sha1 new file mode 100644 index 000000000..831b77168 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom.sha1 @@ -0,0 +1 @@ +67b84199ca4acf0d8fbc5256d90b80f746737e94 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/3/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/3/_remote.repositories new file mode 100644 index 000000000..9e39fba58 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +commons-parent-3.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom b/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom new file mode 100644 index 000000000..e0bd2dcd1 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom @@ -0,0 +1,325 @@ + + 4.0.0 + + org.apache + apache + 4 + + org.apache.commons + commons-parent + pom + + 3 + Jakarta Commons + http://jakarta.apache.org/commons/ + 2001 + + + + + + + + + dummy + Dummy to avoid accidental deploys + + + + + + + scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/commons-parent/tags/commons-parent-3 + scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/commons-parent/tags/commons-parent-3 + http://svn.apache.org/viewvc/jakarta/commons/proper/commons-parent/tags/commons-parent-3 + + + + + Commons Dev List + commons-dev-subscribe@jakarta.apache.org + commons-dev-unsubscribe@jakarta.apache.org + commons-dev@jakarta.apache.org + http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev + + http://www.mail-archive.com/commons-dev@jakarta.apache.org/ + http://www.nabble.com/Commons---Dev-f317.html + + + + Commons User List + commons-user-subscribe@jakarta.apache.org + commons-user-unsubscribe@jakarta.apache.org + commons-user@jakarta.apache.org + http://mail-archives.apache.org/mod_mbox/jakarta-commons-user + + http://www.mail-archive.com/commons-user@jakarta.apache.org/ + http://www.nabble.com/Commons---User-f319.html + + + + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.0-alpha-3 + + + org.apache.maven.plugins + maven-jar-plugin + 2.1 + + + org.apache.maven.plugins + maven-source-plugin + 2.0.3 + + + + + + + maven-compiler-plugin + + ${maven.compile.source} + ${maven.compile.target} + + + + maven-jar-plugin + + + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compile.source} + ${maven.compile.source} + + + + + + maven-idea-plugin + + ${maven.compile.source} + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.2 + + true + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.1 + + true + + + + org.apache.maven.plugins + maven-site-plugin + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0-beta-1 + + + org.codehaus.mojo + rat-maven-plugin + + + + + + + release + + + + apache.releases + Apache Release Distribution Repository + ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository + + + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-source-plugin + + + create-source-jar + + jar + + + + + + maven-javadoc-plugin + + + create-javadoc-jar + + jar + + + ${maven.compile.source} + + + + + + + + + rc + + + apache.snapshots + Apache Development Snapshot Repository + ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository + + + apache.snapshots + Apache Development Snapshot Repository + ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository + + + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-source-plugin + + + create-source-jar + + jar + + + + + + maven-javadoc-plugin + + + create-javadoc-jar + + jar + + + ${maven.compile.source} + + + + + + + + + + + + + 1.3 + 1.3 + + + scp + + + + \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 new file mode 100644 index 000000000..88e7e9622 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 @@ -0,0 +1 @@ +cc68f9bf1b52f227e82308b9157e265e05470804 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/32/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/32/_remote.repositories new file mode 100644 index 000000000..70c692fea --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/32/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:15 EDT 2024 +commons-parent-32.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom b/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom new file mode 100644 index 000000000..8bc7ab0d0 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom @@ -0,0 +1,1301 @@ + + + + 4.0.0 + + org.apache + apache + 13 + + org.apache.commons + commons-parent + pom + 32 + Apache Commons Parent + http://commons.apache.org/ + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + + + + + 2.2.1 + + + + continuum + http://vmbuild.apache.org/continuum/ + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-32 + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-32 + http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-32 + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.7 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.4 + + + org.apache.maven.plugins + maven-clean-plugin + 2.5 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + ${commons.compiler.fork} + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.7 + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.4 + + + org.apache.maven.plugins + maven-install-plugin + 2.4 + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.4.1 + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + 1.4 + + + true + + + + org.apache.maven.plugins + maven-resources-plugin + 2.6 + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + + org.apache.commons + commons-build-plugin + 1.4 + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + 2.4.0 + true + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.2 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + true + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.0-beta-2 + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + true + + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + jdepend-maven-plugin + ${commons.jdepend.version} + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + ${commons.jacoco.classRatio} + ${commons.jacoco.instructionRatio} + ${commons.jacoco.methodRatio} + ${commons.jacoco.branchRatio} + ${commons.jacoco.complexityRatio} + ${commons.jacoco.lineRatio} + + ${commons.jacoco.haltOnFailure} + + + + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + + release + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + test-jar + + + + + + maven-jar-plugin + + + + test-jar + + + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + + + + maven-assembly-plugin + true + + + + single + + package + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + + + + + + trunks-proper + + + ../bcel + ../beanutils + ../betwixt + ../chain + ../cli + ../codec + ../collections + ../compress + ../configuration + ../daemon + ../dbcp + ../dbutils + ../digester + ../discovery + ../el + ../email + ../exec + ../fileupload + ../functor + ../imaging + ../io + ../jci + ../jcs + + ../jexl + ../jxpath + ../lang + ../launcher + ../logging + ../math + ../modeler + ../net + ../ognl + ../pool + ../primitives + ../proxy + ../scxml + + ../validator + ../vfs + + + + + + maven-3 + + + + ${basedir} + + + + + + maven-site-plugin + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + !buildNumber.skip!true + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + + + + ${project.version} + RC1 + COMMONSSITE + + + + 1.3 + 1.3 + + + false + + + + + + 2.15 + 2.15 + + 2.9.1 + + 0.9 + 2.9 + 2.5 + 2.3 + 2.7 + 2.3 + 3.3 + 0.6.3.201306030806 + 2.5.2 + 2.0-beta-2 + + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + + 100 + 90 + 95 + 85 + 85 + 90 + false + + + ${project.artifactId} + + + org.apache.commons.${commons.componentid} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + ${commons.encoding} + + ${commons.encoding} + ${commons.encoding} + + + http://download.oracle.com/javase/6/docs/api/ + http://download.oracle.com/javaee/6/api/ + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + false + + + ${user.home}/commons-sites + + ${project.artifactId} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} + ${commons.site.cache}/${commons.site.path} + + https://analysis.apache.org/ + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom.sha1 new file mode 100644 index 000000000..c2f9fe4d9 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom.sha1 @@ -0,0 +1 @@ +0e51c4223003c2c7c63f38d7b8823e40eb06bd1f \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/34/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/34/_remote.repositories new file mode 100644 index 000000000..9ab4382df --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/34/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +commons-parent-34.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom b/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom new file mode 100644 index 000000000..a6f61eda8 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom @@ -0,0 +1,1386 @@ + + + + 4.0.0 + + org.apache + apache + 13 + + org.apache.commons + commons-parent + pom + 34 + Apache Commons Parent + http://commons.apache.org/ + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + + + + + 3.0 + + + + continuum + https://continuum-ci.apache.org/ + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.7 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.4 + + + org.apache.maven.plugins + maven-clean-plugin + 2.5 + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + ${commons.compiler.fork} + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.1 + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.4 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.1 + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.4.2 + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + 1.5 + + + true + + + + org.apache.maven.plugins + maven-resources-plugin + 2.6 + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + + org.apache.commons + commons-build-plugin + 1.4 + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + 2.4.0 + true + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.2 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + + + + + + + maven-assembly-plugin + + + src/main/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + true + org.apache.maven.plugins + maven-enforcer-plugin + 1.3.1 + + + enforce-maven-3 + + enforce + + + + + 3.0.0 + + + true + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + true + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + ${commons.scm-publish.version} + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + true + + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + jdepend-maven-plugin + ${commons.jdepend.version} + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + + release + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + test-jar + + + + + + maven-jar-plugin + + + + test-jar + + + + true + + + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + + + + maven-assembly-plugin + true + + + + single + + package + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + + + + + + trunks-proper + + + ../bcel + ../beanutils + ../betwixt + ../chain + ../cli + ../codec + ../collections + ../compress + ../configuration + ../daemon + ../dbcp + ../dbutils + ../digester + ../discovery + ../el + ../email + ../exec + ../fileupload + ../functor + ../imaging + ../io + ../jci + ../jcs + + ../jexl + ../jxpath + ../lang + ../launcher + ../logging + ../math + ../modeler + ../net + ../ognl + ../pool + ../primitives + ../proxy + ../scxml + + ../validator + ../vfs + + + + + + maven-3 + + + + ${basedir} + + + + + + maven-site-plugin + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + !buildNumber.skip!true + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + + + + ${project.version} + RC1 + COMMONSSITE + + + + 1.3 + 1.3 + + + false + + + + + + 2.17 + 2.17 + + 2.9.1 + 0.10 + 2.9 + 2.6.1 + 2.4 + 2.7 + 2.3 + 3.3 + 0.6.4.201312101107 + 2.6 + 2.0-beta-2 + 3.1 + 1.0 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + + org.apache.commons.${commons.componentid} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + ${commons.encoding} + + ${commons.encoding} + ${commons.encoding} + + + http://docs.oracle.com/javase/6/docs/api/ + http://docs.oracle.com/javaee/6/api/ + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + false + + + ${user.home}/commons-sites + + ${project.artifactId} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} + ${commons.site.cache}/${commons.site.path} + commons.site + + https://analysis.apache.org/ + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 new file mode 100644 index 000000000..201a5e597 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 @@ -0,0 +1 @@ +1f6be162a806d8343e3cd238dd728558532473a5 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/38/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/38/_remote.repositories new file mode 100644 index 000000000..4b977048c --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/38/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:18 EDT 2024 +commons-parent-38.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom b/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom new file mode 100644 index 000000000..af70faeab --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom @@ -0,0 +1,1559 @@ + + + + 4.0.0 + + org.apache + apache + 16 + + org.apache.commons + commons-parent + pom + 38 + Apache Commons Parent + http://commons.apache.org/ + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + + + + + 3.0.1 + + + + continuum + https://continuum-ci.apache.org/ + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-38 + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-38 + http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-38 + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.5.5 + + + org.apache.maven.plugins + maven-clean-plugin + 2.6.1 + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + + org.apache.maven.plugins + maven-jar-plugin + 2.5 + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.1 + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + 1.5 + + + true + + + + org.apache.maven.plugins + maven-resources-plugin + 2.7 + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + + org.apache.commons + commons-build-plugin + 1.4 + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + 2.5.3 + true + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + 1.8 + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.3 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + + + + + + + maven-assembly-plugin + + + src/main/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + true + org.apache.maven.plugins + maven-enforcer-plugin + 1.3.1 + + + enforce-maven-3 + + enforce + + + + + 3.0.0 + + + true + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + ${commons.scm-publish.version} + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + true + + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + project-team + scm + issue-tracking + mailing-list + dependency-info + dependency-management + dependencies + dependency-convergence + cim + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + jdepend-maven-plugin + ${commons.jdepend.version} + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + + release + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + test-jar + + + + + + maven-jar-plugin + + + + test-jar + + + + true + + + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + + + + maven-assembly-plugin + true + + + + single + + package + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + 2.11 + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.9 + + true + 1.9 + ${JAVA_1_9_HOME}/bin/javac + ${JAVA_1_9_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + + + + + + trunks-proper + + + ../bcel + ../beanutils + ../betwixt + ../chain + ../cli + ../codec + ../collections + ../compress + ../configuration + ../daemon + ../dbcp + ../dbutils + ../digester + ../discovery + ../el + ../email + ../exec + ../fileupload + ../functor + ../imaging + ../io + ../jci + ../jcs + + ../jexl + ../jxpath + ../lang + ../launcher + ../logging + ../math + ../modeler + ../net + ../ognl + ../pool + ../primitives + ../proxy + ../scxml + + ../validator + ../vfs + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + jdk7-plugin-fix-version + + [1.7,) + + + + 3.0.0 + + 1.13 + + + + + + site-basic + + true + true + true + true + true + true + true + true + true + true + + + + + + + + ${project.version} + RC1 + COMMONSSITE + + + + 1.3 + 1.3 + + + false + + + + + + 2.18.1 + 2.18.1 + 2.10.2 + 0.11 + 2.11 + 2.6.1 + 2.5 + 2.8 + 2.8 + 3.4 + 0.7.4.201502262128 + 2.7 + 2.0 + 3.2 + 1.1 + 2.5.5 + + 1.11 + + 1.0 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + + org.apache.commons.${commons.componentid} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + http://docs.oracle.com/javase/7/docs/api/ + http://docs.oracle.com/javaee/6/api/ + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${project.artifactId} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} + ${commons.site.cache}/${commons.site.path} + commons.site + + https://analysis.apache.org/ + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom.sha1 new file mode 100644 index 000000000..f02eb4176 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom.sha1 @@ -0,0 +1 @@ +b1fe2a39dc1f76d14fbc402982938ffb5ba1043a \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/39/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/39/_remote.repositories new file mode 100644 index 000000000..c9152b195 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/39/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:21 EDT 2024 +commons-parent-39.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom b/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom new file mode 100644 index 000000000..ae0aefe7c --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom @@ -0,0 +1,1503 @@ + + + + 4.0.0 + + org.apache + apache + 16 + + org.apache.commons + commons-parent + pom + 39 + Apache Commons Parent + http://commons.apache.org/ + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + + + + + 3.0.1 + + + + continuum + https://continuum-ci.apache.org/ + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-39 + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-39 + http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-39 + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.5.5 + + + org.apache.maven.plugins + maven-clean-plugin + 2.6.1 + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + + org.apache.maven.plugins + maven-jar-plugin + 2.6 + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.2 + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + 1.5 + + + true + + + + org.apache.maven.plugins + maven-resources-plugin + 2.7 + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + + org.apache.commons + commons-build-plugin + 1.4 + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + 2.5.3 + true + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + 1.9.1 + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.3 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + true + org.apache.maven.plugins + maven-enforcer-plugin + 1.3.1 + + + enforce-maven-3 + + enforce + + + + + 3.0.0 + + + true + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + ${commons.scm-publish.version} + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + true + + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + project-team + scm + issue-tracking + mailing-list + dependency-info + dependency-management + dependencies + dependency-convergence + cim + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + jdepend-maven-plugin + ${commons.jdepend.version} + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + + release + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + test-jar + + + + + + maven-jar-plugin + + + + test-jar + + + + true + + + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + + + + maven-assembly-plugin + true + + + + single + + package + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + 2.11 + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.9 + + true + 1.9 + ${JAVA_1_9_HOME}/bin/javac + ${JAVA_1_9_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + jdk7-plugin-fix-version + + [1.7,) + + + + 3.0.0 + + 1.14 + + + + + + site-basic + + true + true + true + true + true + true + true + true + true + true + + + + + + + + ${project.version} + RC1 + COMMONSSITE + + + + 1.3 + 1.3 + + + false + + + + + + 2.18.1 + 2.18.1 + 2.10.3 + 0.11 + 2.11 + 2.6.1 + 2.5 + 2.8 + 2.8 + 3.4 + 0.7.5.201505241946 + 2.7 + 2.0 + 3.3 + 1.1 + 2.5.5 + + 1.11 + + 1.0 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + + org.apache.commons.${commons.componentid} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + http://docs.oracle.com/javase/7/docs/api/ + http://docs.oracle.com/javaee/6/api/ + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + 100 + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${project.artifactId} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} + ${commons.site.cache}/${commons.site.path} + commons.site + + https://analysis.apache.org/ + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 new file mode 100644 index 000000000..cea079737 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 @@ -0,0 +1 @@ +4bc32d3cda9f07814c548492af7bf19b21798d46 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/47/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/47/_remote.repositories new file mode 100644 index 000000000..09f3fbaaa --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/47/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:20 EDT 2024 +commons-parent-47.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom b/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom new file mode 100644 index 000000000..af7d14d07 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom @@ -0,0 +1,1944 @@ + + + + 4.0.0 + + org.apache + apache + 19 + + org.apache.commons + commons-parent + pom + 47 + Apache Commons Parent + http://commons.apache.org/commons-parent-pom.html + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + jira + http://issues.apache.org/jira/browse/COMMONSSITE + + + + + + + + + + + + + + + + 3.0.5 + + + + jenkins + https://builds.apache.org/ + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + true + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + versions-maven-plugin + + 2.5 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + org.apache.bcel + bcel + 6.2 + + + + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + true + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M2 + + + + 3.0.5 + + + ${maven.compiler.target} + + + true + + + + enforce-maven-3 + + enforce + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + maven-source-plugin + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + true + + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + team + scm + issue-management + mailing-lists + dependency-info + dependency-management + dependencies + dependency-convergence + ci-management + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + org.codehaus.mojo + jdepend-maven-plugin + ${commons.jdepend.version} + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + + true + true + true + + + + + + + + + svn + + + .svn + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + + create + + + + + + true + + ?????? + + + javasvn + + + + + + + + + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + clirr + + + src/site/resources/profile.clirr + + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + + + + + + + japicmp + + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + + + + + release + + + + maven-install-plugin + + true + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + + + + maven-assembly-plugin + ${commons.assembly-plugin.version} + true + + + + single + + + verify + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + 2.11 + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.9 + + true + 1.9 + ${JAVA_1_9_HOME}/bin/javac + ${JAVA_1_9_HOME}/bin/java + + + + + + java-1.10 + + true + 1.10 + ${JAVA_1_10_HOME}/bin/javac + ${JAVA_1_10_HOME}/bin/java + + + + + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + true + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + jdk7-plugin-fix-version + + [1.7,) + + + + + + + + site-basic + + true + true + true + true + true + true + true + true + true + true + true + + + + + travis-cobertura + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + xml + + + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + travis-jacoco + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + + + + ${project.version} + RC1 + COMMONSSITE + + + + + 1.3 + 1.3 + + + false + + + + + + 1.9 + 1.3 + 2.22.0 + 2.22.0 + 2.22.0 + 3.0.1 + 0.12 + 2.12.1 + 2.8 + 0.12.0 + 2.5 + 3.0.0 + 3.1.0 + + 3.1.0 + 3.1.0 + 3.7.1 + 0.8.1 + 2.7 + 4.3.0 + EpochMillis + 2.0 + 3.7.0 + 1.1 + 3.0.5 + 3.1.3 + 3.5.0 + 3.0.0 + 1.16 + + 1.0 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + http://docs.oracle.com/javase/7/docs/api/ + http://docs.oracle.com/javaee/6/api/ + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + 100 + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + + ${user.name} + DEADBEEF + + https://analysis.apache.org/ + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom.sha1 new file mode 100644 index 000000000..593ecb526 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom.sha1 @@ -0,0 +1 @@ +391715f2f4f1b32604a201a2f4ea74a174e1f21c \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/50/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/50/_remote.repositories new file mode 100644 index 000000000..7adf5e487 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/50/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +commons-parent-50.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom b/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom new file mode 100644 index 000000000..7d83ae426 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom @@ -0,0 +1,1879 @@ + + + + 4.0.0 + + org.apache + apache + 21 + + org.apache.commons + commons-parent + 50 + pom + Apache Commons Parent + The Apache Commons Parent POM provides common settings for all Apache Commons components. + https://commons.apache.org/commons-parent-pom.html + + + + + + + ${project.version} + RC1 + COMMONSSITE + + + + + 1.3 + 1.3 + + + false + + + + + 1.18 + + 1.0 + 3.2.0 + 3.0.0 + 1.11 + 2.12.1 + 3.1.0 + 2.8 + 2.7 + 3.8.1 + 4.3.0 + EpochMillis + 2.22.2 + 4.2.1 + 3.0.5 + 0.8.5 + 0.14.1 + 3.2.0 + 3.1.1 + 2.0 + 3.0.0 + 3.12.0 + 3.0.0 + 0.13 + 1.7 + 1.1 + + + 3.8.2 + 3.2.0 + 3.1.6 + 2.22.2 + 2.22.2 + 3.3.4 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + http://docs.oracle.com/javase/6/docs/api/ + http://docs.oracle.com/javase/7/docs/api/ + http://docs.oracle.com/javase/8/docs/api/ + http://docs.oracle.com/javase/9/docs/api/ + http://docs.oracle.com/javase/10/docs/api/ + https://docs.oracle.com/en/java/javase/11/docs/api/ + https://docs.oracle.com/en/java/javase/12/docs/api/ + + ${commons.javadoc7.java.link} + + http://docs.oracle.com/javaee/5/api/ + http://docs.oracle.com/javaee/6/api/ + http://docs.oracle.com/javaee/7/api/ + + ${commons.javadoc.javaee6.link} + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + 100 + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + + ${user.name} + DEADBEEF + + https://analysis.apache.org/ + + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-user/ + + https://markmail.org/list/org.apache.commons.users/ + https://www.mail-archive.com/user@commons.apache.org/ + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-dev/ + + https://markmail.org/list/org.apache.commons.dev/ + https://www.mail-archive.com/dev@commons.apache.org/ + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-issues/ + + https://markmail.org/list/org.apache.commons.issues/ + https://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-commits/ + + https://markmail.org/list/org.apache.commons.commits/ + https://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + https://markmail.org/list/org.apache.announce/ + https://www.mail-archive.com/announce@apache.org/ + + + + + + 3.0.5 + + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git + scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git + https://gitbox.apache.org/repos/asf?p=commons-parent.git + + + + jira + https://issues.apache.org/jira/browse/COMMONSSITE + + + + jenkins + https://builds.apache.org/ + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-source-plugin + ${commons.source-plugin.version} + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + ${project.groupId} + ${project.artifactId} + ${commons.bc.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} + + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + versions-maven-plugin + + 2.7 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + org.apache.bcel + bcel + 6.4.1 + + + + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + true + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M2 + + + + 3.0.5 + + + ${maven.compiler.target} + + + true + + + + enforce-maven-3 + + enforce + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + maven-source-plugin + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + rat-check + validate + + check + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + true + + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + team + scm + issue-management + mailing-lists + dependency-info + dependency-management + dependencies + dependency-convergence + ci-management + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + org.codehaus.mojo + jdepend-maven-plugin + ${commons.jdepend.version} + + + + + + + svn + + + .svn + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + + create + + + + + + true + + ?????? + + + javasvn + + + + + + + + + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + report + + + + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + clirr + + + src/site/resources/profile.clirr + + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + + + + + + + japicmp + + [1.8,) + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + + + + + + + + + release + + + + maven-install-plugin + + true + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + + + + maven-assembly-plugin + ${commons.assembly-plugin.version} + true + + + + single + + + verify + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + + + clean-staging + clean + + clean-staging + + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + 2.11 + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.9 + + true + 1.9 + ${JAVA_1_9_HOME}/bin/javac + ${JAVA_1_9_HOME}/bin/java + + + + + + java-1.10 + + true + 1.10 + ${JAVA_1_10_HOME}/bin/javac + ${JAVA_1_10_HOME}/bin/java + + + + + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/java + + + + + + java-1.12 + + true + 1.12 + ${JAVA_1_12_HOME}/bin/javac + ${JAVA_1_12_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + true + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + jdk7-plugin-fix-version + + [1.7,1.8) + + + + 3.5.1 + + + + + + site-basic + + true + true + true + true + true + true + true + true + true + true + true + + + + + travis-cobertura + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + xml + + + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + travis-jacoco + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom.sha1 new file mode 100644 index 000000000..54fb06969 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom.sha1 @@ -0,0 +1 @@ +b47c55b7ee647e1c78546791e7f4fe59b842c320 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/52/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/52/_remote.repositories new file mode 100644 index 000000000..0e3015c1f --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/52/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +commons-parent-52.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom b/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom new file mode 100644 index 000000000..6571e70ba --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom @@ -0,0 +1,1943 @@ + + + + 4.0.0 + + org.apache + apache + 23 + + org.apache.commons + commons-parent + 52 + pom + Apache Commons Parent + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + https://commons.apache.org/commons-parent-pom.html + + + + + + + ${project.version} + RC1 + COMMONSSITE + + + + + 1.3 + 1.3 + + + false + + + + + + 1.19 + + + 1.0 + 3.3.0 + 3.2.0 + 1.11 + 2.12.1 + 3.1.1 + 2.8 + 2.7 + 3.8.1 + 4.3.0 + EpochMillis + 2.22.2 + 5.1.1 + 3.0.5 + 0.8.5 + 0.14.3 + 3.2.0 + 3.2.0 + 2.0 + 3.0.0 + 3.13.0 + 3.1.0 + 0.13 + 1.7 + 1.1 + + 5.1.2 + + + + 3.9.1 + 3.2.1 + 4.0.4 + 4.0.6 + 2.22.2 + 2.22.2 + 3.4.0 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + http://docs.oracle.com/javase/6/docs/api/ + http://docs.oracle.com/javase/7/docs/api/ + http://docs.oracle.com/javase/8/docs/api/ + http://docs.oracle.com/javase/9/docs/api/ + http://docs.oracle.com/javase/10/docs/api/ + https://docs.oracle.com/en/java/javase/11/docs/api/ + https://docs.oracle.com/en/java/javase/12/docs/api/ + https://docs.oracle.com/en/java/javase/13/docs/api/ + + ${commons.javadoc7.java.link} + + http://docs.oracle.com/javaee/5/api/ + http://docs.oracle.com/javaee/6/api/ + http://docs.oracle.com/javaee/7/api/ + + ${commons.javadoc.javaee6.link} + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + 100 + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + + ${user.name} + DEADBEEF + + https://analysis.apache.org/ + + + . + RELEASE-NOTES.txt + + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-user/ + + https://markmail.org/list/org.apache.commons.users/ + https://www.mail-archive.com/user@commons.apache.org/ + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-dev/ + + https://markmail.org/list/org.apache.commons.dev/ + https://www.mail-archive.com/dev@commons.apache.org/ + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-issues/ + + https://markmail.org/list/org.apache.commons.issues/ + https://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-commits/ + + https://markmail.org/list/org.apache.commons.commits/ + https://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + https://markmail.org/list/org.apache.announce/ + https://www.mail-archive.com/announce@apache.org/ + + + + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git + scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git + https://gitbox.apache.org/repos/asf?p=commons-parent.git + + + + jira + https://issues.apache.org/jira/browse/COMMONSSITE + + + + jenkins + https://builds.apache.org/ + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.compiler.javadoc} + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-source-plugin + ${commons.source-plugin.version} + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + ${project.groupId} + ${project.artifactId} + ${commons.bc.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} + + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + + biz.aQute.bnd + biz.aQute.bndlib + ${biz.aQute.bndlib.version} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + versions-maven-plugin + + 2.7 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + org.apache.bcel + bcel + 6.5.0 + + + + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + true + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + + 3.5.0 + + + ${maven.compiler.target} + + + true + + + + enforce-maven-3 + + enforce + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + maven-source-plugin + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + rat-check + validate + + check + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.compiler.javadoc} + ${commons.encoding} + ${commons.docEncoding} + true + true + + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + team + scm + issue-management + mailing-lists + dependency-info + dependency-management + dependencies + dependency-convergence + ci-management + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + org.codehaus.mojo + jdepend-maven-plugin + ${commons.jdepend.version} + + + + + + + svn + + + .svn + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + + create + + + + + + true + + ?????? + + + javasvn + + + + + + + + + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + report + + + + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + clirr + + + src/site/resources/profile.clirr + + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + + + + + + + japicmp + + [1.8,) + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + + + + + + + + + release + + + + maven-install-plugin + + true + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + ${commons.compiler.javadoc} + + + + maven-assembly-plugin + ${commons.assembly-plugin.version} + true + + + + single + + + verify + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + + + clean-staging + clean + + clean-staging + + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/javadoc + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/javadoc + ${JAVA_1_4_HOME}/bin/java + + 2.11 + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/javadoc + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/javadoc + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/javadoc + ${JAVA_1_7_HOME}/bin/java + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/javadoc + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.9 + + true + 1.9 + ${JAVA_1_9_HOME}/bin/javac + ${JAVA_1_9_HOME}/bin/javadoc + ${JAVA_1_9_HOME}/bin/java + + + + + + java-1.10 + + true + 1.10 + ${JAVA_1_10_HOME}/bin/javac + ${JAVA_1_10_HOME}/bin/javadoc + ${JAVA_1_10_HOME}/bin/java + + + + + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/javadoc + ${JAVA_1_11_HOME}/bin/java + + + + + + java-1.12 + + true + 1.12 + ${JAVA_1_12_HOME}/bin/javac + ${JAVA_1_12_HOME}/bin/javadoc + ${JAVA_1_12_HOME}/bin/java + + + + + + java-1.13 + + true + 1.13 + ${JAVA_1_13_HOME}/bin/javac + ${JAVA_1_13_HOME}/bin/javadoc + ${JAVA_1_13_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + true + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + ${changes.announcementDirectory} + ${changes.announcementFile} + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + jdk7-plugin-fix-version + + [1.7,1.8) + + + + 3.5.1 + 1.17 + 3.5.0 + + + + + + site-basic + + true + true + true + true + true + true + true + true + true + true + true + + + + + travis-cobertura + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + xml + + + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + travis-jacoco + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom.sha1 new file mode 100644 index 000000000..9d7f8af9e --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom.sha1 @@ -0,0 +1 @@ +004ee86dedc66d0010ccdc29e5a4ce014c057854 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/56/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/56/_remote.repositories new file mode 100644 index 000000000..5666955ec --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/56/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +commons-parent-56.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom b/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom new file mode 100644 index 000000000..f1cd35c7a --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom @@ -0,0 +1,1995 @@ + + + + 4.0.0 + + org.apache + apache + 29 + + org.apache.commons + commons-parent + 56 + pom + Apache Commons Parent + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + 2006 + https://commons.apache.org/proper/commons-parent/ + + + + + + 3.3.9 + + + 2022-12-30T16:12:53Z + ${project.version} + RC1 + COMMONSSITE + + 55 + true + Gary Gregory + 86fdc7e2a11262cb + + + + + 1.3 + 1.3 + + + false + + + + + + 1.22 + + 1.0 + 3.4.2 + 3.3.0 + 1.12 + 2.12.1 + 3.2.0 + 9.3 + 2.7 + 3.10.1 + 4.3.0 + EpochMillis + 2.7.3 + 0.6.3 + 3.0.0-M7 + 5.1.8 + 0.8.8 + 0.17.1 + 3.3.0 + 3.4.1 + 3.3.0 + 3.19.0 + 6.52.0 + 3.4.1 + 0.15 + 1.8.0 + 1.1 + 3.1.0 + 3.0.0 + 6.4.0 + 5.9.1 + + + + 3.12.1 + 3.2.1 + 4.7.3.0 + 4.7.3 + 3.0.0-M7 + 3.0.0-M7 + 3.5.3 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + https://docs.oracle.com/javase/6/docs/api/ + https://docs.oracle.com/javase/7/docs/api/ + https://docs.oracle.com/javase/8/docs/api/ + https://docs.oracle.com/javase/9/docs/api/ + https://docs.oracle.com/javase/10/docs/api/ + https://docs.oracle.com/en/java/javase/11/docs/api/ + https://docs.oracle.com/en/java/javase/12/docs/api/ + https://docs.oracle.com/en/java/javase/13/docs/api/ + https://docs.oracle.com/en/java/javase/14/docs/api/ + https://docs.oracle.com/en/java/javase/15/docs/api/ + https://docs.oracle.com/en/java/javase/16/docs/api/ + https://docs.oracle.com/en/java/javase/17/docs/api/ + https://docs.oracle.com/en/java/javase/18/docs/api/ + https://docs.oracle.com/en/java/javase/19/docs/api/ + + ${commons.javadoc7.java.link} + + https://docs.oracle.com/javaee/5/api/ + https://docs.oracle.com/javaee/6/api/ + https://docs.oracle.com/javaee/7/api/ + + ${commons.javadoc.javaee6.link} + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + + ${user.name} + DEADBEEF + + https://analysis.apache.org/ + + + . + RELEASE-NOTES.txt + + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-user/ + + https://markmail.org/list/org.apache.commons.users/ + https://www.mail-archive.com/user@commons.apache.org/ + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-dev/ + + https://markmail.org/list/org.apache.commons.dev/ + https://www.mail-archive.com/dev@commons.apache.org/ + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-issues/ + + https://markmail.org/list/org.apache.commons.issues/ + https://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-commits/ + + https://markmail.org/list/org.apache.commons.commits/ + https://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + https://markmail.org/list/org.apache.announce/ + https://www.mail-archive.com/announce@apache.org/ + + + + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git + scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git + https://gitbox.apache.org/repos/asf?p=commons-parent.git + + + + jira + https://issues.apache.org/jira/browse/COMMONSSITE + + + + GitHub + https://github.com/apache/commons-parent/actions + + + + + + org.junit + junit-bom + ${commons.junit.version} + pom + import + + + + + + + clean apache-rat:check package site + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.compiler.javadoc} + ${commons.encoding} + ${commons.docEncoding} + + true + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-source-plugin + ${commons.source-plugin.version} + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + ${project.groupId} + ${project.artifactId} + ${commons.bc.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.jar + + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + METHOD_ADDED_TO_INTERFACE + false + false + PATCH + + + + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + + biz.aQute.bnd + biz.aQute.bndlib + ${commons.biz.aQute.bndlib.version} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + ${commons.buildnumber-plugin.version} + + + org.codehaus.mojo + versions-maven-plugin + + 2.14.2 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + org.apache.bcel + bcel + 6.7.0 + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${commons.checkstyle-plugin.version} + + + com.puppycrawl.tools + checkstyle + ${commons.checkstyle.version} + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${commons.spotbugs.plugin.version} + + + com.github.spotbugs + spotbugs + ${commons.spotbugs.impl.version} + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd.version} + + + net.sourceforge.pmd + pmd-core + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-java + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-javascript + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-jsp + ${commons.pmd-impl.version} + + + + + org.cyclonedx + cyclonedx-maven-plugin + ${commons.cyclonedx.version} + + + make-bom + package + + makeBom + + + + + library + 1.4 + true + true + true + true + true + false + false + true + all + ${project.artifactId}-${project.version}-bom + + + + org.spdx + spdx-maven-plugin + ${commons.spdx.version} + + + build-spdx + + createSPDX + + + + + + *.spdx + + + + + org.codehaus.mojo + javancss-maven-plugin + + + + + + + **/*.java + + + + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + true + org.apache.maven.plugins + maven-enforcer-plugin + ${commons.enforcer-plugin.version} + + + + 3.5.0 + + + ${maven.compiler.target} + + + true + + + + enforce-maven-3 + + enforce + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + maven-source-plugin + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + rat-check + validate + + check + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.codehaus.mojo + versions-maven-plugin + + + org.cyclonedx + cyclonedx-maven-plugin + + + org.spdx + spdx-maven-plugin + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + team + scm + issue-management + mailing-lists + dependency-info + dependency-management + dependencies + dependency-convergence + ci-management + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + + + + + svn + + + .svn + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + + create + + + + + + true + + ?????? + + + javasvn + + + + + + + + + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + report + + + + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + japicmp + + [1.8,) + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + + + + + + + + + release + + + + maven-install-plugin + + true + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + ${commons.compiler.javadoc} + + + + maven-assembly-plugin + ${commons.assembly-plugin.version} + true + + + + single + + + verify + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + + + clean-staging + clean + + clean-staging + + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/javadoc + ${JAVA_1_7_HOME}/bin/java + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/javadoc + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.9 + + true + 1.9 + ${JAVA_1_9_HOME}/bin/javac + ${JAVA_1_9_HOME}/bin/javadoc + ${JAVA_1_9_HOME}/bin/java + + + + + + java-1.10 + + true + 1.10 + ${JAVA_1_10_HOME}/bin/javac + ${JAVA_1_10_HOME}/bin/javadoc + ${JAVA_1_10_HOME}/bin/java + + + + + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/javadoc + ${JAVA_1_11_HOME}/bin/java + + + + + + java-1.12 + + true + 1.12 + ${JAVA_1_12_HOME}/bin/javac + ${JAVA_1_12_HOME}/bin/javadoc + ${JAVA_1_12_HOME}/bin/java + + + + + + java-1.13 + + true + 1.13 + ${JAVA_1_13_HOME}/bin/javac + ${JAVA_1_13_HOME}/bin/javadoc + ${JAVA_1_13_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + true + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + ${changes.announcementDirectory} + ${changes.announcementFile} + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + jdk7-plugin-fix-version + + [1.7,1.8) + + + 3.5.1 + 1.17 + 3.5.0 + + + + + + site-basic + + true + true + true + true + true + true + true + true + + + + + travis-cobertura + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + xml + + + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + travis-jacoco + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom.sha1 new file mode 100644 index 000000000..0429fd817 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom.sha1 @@ -0,0 +1 @@ +d0fbfc1a68d5b07be160c5012e2e7fcdbacecbf4 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/58/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/58/_remote.repositories new file mode 100644 index 000000000..7a2aab81e --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/58/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:11 EDT 2024 +commons-parent-58.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom b/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom new file mode 100644 index 000000000..d5a65359b --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom @@ -0,0 +1,2007 @@ + + + + 4.0.0 + + org.apache + apache + 29 + + org.apache.commons + commons-parent + 58 + pom + Apache Commons Parent + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + 2006 + https://commons.apache.org/proper/commons-parent/ + + + + + + 3.6.3 + + + 2023-05-20T13:25:23Z + ${project.version} + RC1 + COMMONSSITE + + 57 + true + Gary Gregory + 86fdc7e2a11262cb + + + + + 1.3 + 1.3 + + + 8 + + + false + + + + + + 1.23 + + 1.0 + 3.5.0 + 3.4.0 + 1.12 + 2.12.1 + 3.2.2 + 9.3 + 2.7 + 3.11.0 + 4.3.0 + EpochMillis + 2.7.9 + 0.6.5 + 3.0.0 + 5.1.8 + 0.8.10 + 0.17.2 + 3.3.0 + 3.5.0 + 3.3.0 + 3.20.0 + 6.55.0 + 3.4.3 + 0.15 + 1.8.0 + 1.1 + 3.3.0 + 3.1.0 + 6.4.0 + 5.9.3 + + + + 3.12.1 + 3.2.1 + 4.7.3.4 + 4.7.3 + 3.0.0 + 3.0.0 + 3.5.3 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + https://docs.oracle.com/javase/6/docs/api/ + https://docs.oracle.com/javase/7/docs/api/ + https://docs.oracle.com/javase/8/docs/api/ + https://docs.oracle.com/javase/9/docs/api/ + https://docs.oracle.com/javase/10/docs/api/ + https://docs.oracle.com/en/java/javase/11/docs/api/ + https://docs.oracle.com/en/java/javase/12/docs/api/ + https://docs.oracle.com/en/java/javase/13/docs/api/ + https://docs.oracle.com/en/java/javase/14/docs/api/ + https://docs.oracle.com/en/java/javase/15/docs/api/ + https://docs.oracle.com/en/java/javase/16/docs/api/ + https://docs.oracle.com/en/java/javase/17/docs/api/ + https://docs.oracle.com/en/java/javase/18/docs/api/ + https://docs.oracle.com/en/java/javase/19/docs/api/ + https://docs.oracle.com/en/java/javase/20/docs/api/ + + ${commons.javadoc8.java.link} + + https://docs.oracle.com/javaee/5/api/ + https://docs.oracle.com/javaee/6/api/ + https://docs.oracle.com/javaee/7/api/ + + ${commons.javadoc.javaee6.link} + + + info + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + + ${user.name} + DEADBEEF + + https://analysis.apache.org/ + + + . + RELEASE-NOTES.txt + + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-user/ + + https://markmail.org/list/org.apache.commons.users/ + https://www.mail-archive.com/user@commons.apache.org/ + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-dev/ + + https://markmail.org/list/org.apache.commons.dev/ + https://www.mail-archive.com/dev@commons.apache.org/ + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-issues/ + + https://markmail.org/list/org.apache.commons.issues/ + https://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-commits/ + + https://markmail.org/list/org.apache.commons.commits/ + https://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + https://markmail.org/list/org.apache.announce/ + https://www.mail-archive.com/announce@apache.org/ + + + + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git + scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git + https://gitbox.apache.org/repos/asf?p=commons-parent.git + + + + jira + https://issues.apache.org/jira/browse/COMMONSSITE + + + + GitHub + https://github.com/apache/commons-parent/actions + + + + + + org.junit + junit-bom + ${commons.junit.version} + pom + import + + + + + + + clean apache-rat:check package site + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.compiler.javadoc} + ${commons.encoding} + ${commons.docEncoding} + + true + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-source-plugin + ${commons.source-plugin.version} + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + ${project.groupId} + ${project.artifactId} + ${commons.bc.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.jar + + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + METHOD_ADDED_TO_INTERFACE + false + false + PATCH + + + + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + + biz.aQute.bnd + biz.aQute.bndlib + ${commons.biz.aQute.bndlib.version} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + ${commons.buildnumber-plugin.version} + + + org.codehaus.mojo + versions-maven-plugin + + 2.15.0 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + org.apache.bcel + bcel + 6.7.0 + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${commons.checkstyle-plugin.version} + + + com.puppycrawl.tools + checkstyle + ${commons.checkstyle.version} + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${commons.spotbugs.plugin.version} + + + com.github.spotbugs + spotbugs + ${commons.spotbugs.impl.version} + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd.version} + + + net.sourceforge.pmd + pmd-core + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-java + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-javascript + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-jsp + ${commons.pmd-impl.version} + + + + + org.cyclonedx + cyclonedx-maven-plugin + ${commons.cyclonedx.version} + + + make-bom + package + + makeAggregateBom + + + + + ${project.artifactId}-${project.version}-bom + + + + org.spdx + spdx-maven-plugin + ${commons.spdx.version} + + + build-spdx + + createSPDX + + + + + + org.codehaus.mojo + javancss-maven-plugin + + + + + + + **/*.java + + + + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + true + org.apache.maven.plugins + maven-enforcer-plugin + ${commons.enforcer-plugin.version} + + + + ${minimalMavenBuildVersion} + + + ${maven.compiler.target} + + + true + + + + enforce-maven-3 + + enforce + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + maven-source-plugin + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + rat-check + validate + + check + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.codehaus.mojo + versions-maven-plugin + + + org.cyclonedx + cyclonedx-maven-plugin + + + org.spdx + spdx-maven-plugin + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + team + scm + issue-management + mailing-lists + dependency-info + dependency-management + dependencies + dependency-convergence + ci-management + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + + + + + svn + + + .svn + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + + create + + + + + + true + + ?????? + + + javasvn + + + + + + + + + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + report + + + + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + japicmp + + [1.8,) + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + + + + + + + + + release + + + + maven-install-plugin + + true + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + ${commons.compiler.javadoc} + + + + maven-assembly-plugin + ${commons.assembly-plugin.version} + true + + + + single + + + verify + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + + + clean-staging + clean + + clean-staging + + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/javadoc + ${JAVA_1_7_HOME}/bin/java + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/javadoc + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.9 + + true + 1.9 + ${JAVA_1_9_HOME}/bin/javac + ${JAVA_1_9_HOME}/bin/javadoc + ${JAVA_1_9_HOME}/bin/java + + + + + + java-1.10 + + true + 1.10 + ${JAVA_1_10_HOME}/bin/javac + ${JAVA_1_10_HOME}/bin/javadoc + ${JAVA_1_10_HOME}/bin/java + + + + + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/javadoc + ${JAVA_1_11_HOME}/bin/java + + + + + + java-1.12 + + true + 1.12 + ${JAVA_1_12_HOME}/bin/javac + ${JAVA_1_12_HOME}/bin/javadoc + ${JAVA_1_12_HOME}/bin/java + + + + + + java-1.13 + + true + 1.13 + ${JAVA_1_13_HOME}/bin/javac + ${JAVA_1_13_HOME}/bin/javadoc + ${JAVA_1_13_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + true + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + ${changes.announcementDirectory} + ${changes.announcementFile} + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + jdk7-plugin-fix-version + + [1.7,1.8) + + + 3.5.1 + 1.17 + 3.5.0 + + + + + jdk8-plugin-fix-version + + [1.8,1.9) + + + 0.6.3 + + + + + jdk9-compiler + + [9 + + + + ${commons.compiler.release} + + + + + + site-basic + + true + true + true + true + true + true + true + true + + + + + travis-cobertura + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + xml + + + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + travis-jacoco + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom.sha1 new file mode 100644 index 000000000..f277a5560 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom.sha1 @@ -0,0 +1 @@ +26758faad5d4d692a3cee724c42605d2ee9d5284 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/61/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/61/_remote.repositories new file mode 100644 index 000000000..3bfd4df1d --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/61/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:12 EDT 2024 +commons-parent-61.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom b/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom new file mode 100644 index 000000000..d2a3da9eb --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom @@ -0,0 +1,1953 @@ + + + + 4.0.0 + + org.apache + apache + 30 + + org.apache.commons + commons-parent + 61 + pom + Apache Commons Parent + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + 2006 + https://commons.apache.org/proper/commons-parent/ + + + + + + 3.6.3 + + 8 + + + 2023-08-26T12:41:06Z + ${project.version} + RC1 + COMMONSSITE + + 60 + true + Gary Gregory + 86fdc7e2a11262cb + + + + + 1.3 + 1.3 + + + 8 + + + false + + + + + + 3.2.1 + + + 1.23 + + 1.0 + 3.6.0 + 3.4.0 + 1.13 + 2.12.1 + 3.3.0 + 9.3 + 2.7 + 3.11.0 + 4.3.0 + EpochMillis + 2.7.9 + 0.7.0 + 3.1.2 + 5.1.9 + 0.8.10 + 0.17.2 + 3.3.0 + 3.5.0 + 3.3.0 + 3.21.0 + 6.55.0 + 3.4.5 + 0.15 + 1.8.1 + 1.1 + 3.2.0 + 1.0.0.Final + 6.4.1 + 5.10.0 + + + + 3.12.1 + 4.7.3.5 + 4.7.3 + 3.1.2 + 3.1.2 + 3.5.3 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + https://docs.oracle.com/javase/6/docs/api/ + https://docs.oracle.com/javase/7/docs/api/ + https://docs.oracle.com/javase/8/docs/api/ + https://docs.oracle.com/javase/9/docs/api/ + https://docs.oracle.com/javase/10/docs/api/ + https://docs.oracle.com/en/java/javase/11/docs/api/ + https://docs.oracle.com/en/java/javase/12/docs/api/ + https://docs.oracle.com/en/java/javase/13/docs/api/ + https://docs.oracle.com/en/java/javase/14/docs/api/ + https://docs.oracle.com/en/java/javase/15/docs/api/ + https://docs.oracle.com/en/java/javase/16/docs/api/ + https://docs.oracle.com/en/java/javase/17/docs/api/ + https://docs.oracle.com/en/java/javase/18/docs/api/ + https://docs.oracle.com/en/java/javase/19/docs/api/ + https://docs.oracle.com/en/java/javase/20/docs/api/ + + ${commons.javadoc8.java.link} + + https://docs.oracle.com/javaee/5/api/ + https://docs.oracle.com/javaee/6/api/ + https://docs.oracle.com/javaee/7/api/ + https://jakarta.ee/specifications/platform/8/apidocs/ + https://jakarta.ee/specifications/platform/9/apidocs/ + https://jakarta.ee/specifications/platform/9.1/apidocs/ + https://jakarta.ee/specifications/platform/10/apidocs/ + + ${commons.javadoc.javaee6.link} + + + info + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + + ${user.name} + DEADBEEF + + https://analysis.apache.org/ + + + . + RELEASE-NOTES.txt + + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-user/ + + https://markmail.org/list/org.apache.commons.users/ + https://www.mail-archive.com/user@commons.apache.org/ + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-dev/ + + https://markmail.org/list/org.apache.commons.dev/ + https://www.mail-archive.com/dev@commons.apache.org/ + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-issues/ + + https://markmail.org/list/org.apache.commons.issues/ + https://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-commits/ + + https://markmail.org/list/org.apache.commons.commits/ + https://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + https://markmail.org/list/org.apache.announce/ + https://www.mail-archive.com/announce@apache.org/ + + + + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git + scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git + https://gitbox.apache.org/repos/asf?p=commons-parent.git + + + + jira + https://issues.apache.org/jira/browse/COMMONSSITE + + + + GitHub + https://github.com/apache/commons-parent/actions + + + + + + org.junit + junit-bom + ${commons.junit.version} + pom + import + + + + + + + clean apache-rat:check package site + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.compiler.javadoc} + ${commons.encoding} + ${commons.docEncoding} + + true + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + ${project.groupId} + ${project.artifactId} + ${commons.bc.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.jar + + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + METHOD_ADDED_TO_INTERFACE + false + false + PATCH + + + + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + + biz.aQute.bnd + biz.aQute.bndlib + ${commons.biz.aQute.bndlib.version} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + ${commons.buildnumber-plugin.version} + + + org.codehaus.mojo + versions-maven-plugin + + 2.16.0 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + org.apache.bcel + bcel + 6.7.0 + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${commons.checkstyle-plugin.version} + + + com.puppycrawl.tools + checkstyle + ${commons.checkstyle.version} + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${commons.spotbugs.plugin.version} + + + com.github.spotbugs + spotbugs + ${commons.spotbugs.impl.version} + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd.version} + + + net.sourceforge.pmd + pmd-core + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-java + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-javascript + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-jsp + ${commons.pmd-impl.version} + + + + + org.cyclonedx + cyclonedx-maven-plugin + ${commons.cyclonedx.version} + + + build-sbom-cyclonedx + package + + makeAggregateBom + + + + + ${project.artifactId}-${project.version}-bom + + + + org.spdx + spdx-maven-plugin + ${commons.spdx.version} + + + build-sbom-spdx + package + + createSPDX + + + + + + org.codehaus.mojo + javancss-maven-plugin + + + + + + + **/*.java + + + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + maven-source-plugin + + + + true + true + + + + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire-report.version} + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + rat-check + validate + + check + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.codehaus.mojo + versions-maven-plugin + + + org.cyclonedx + cyclonedx-maven-plugin + + + org.spdx + spdx-maven-plugin + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + team + scm + issue-management + mailing-lists + dependency-info + dependency-management + dependencies + dependency-convergence + ci-management + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + + + + + svn + + + .svn + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + + create + + + + + + true + + ?????? + + + javasvn + + + + + + + + + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + (,9) + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + report + + + + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + japicmp + + [1.8,) + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + + + + + + + + + release + + + + maven-install-plugin + + true + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + ${commons.compiler.javadoc} + + + + maven-assembly-plugin + ${commons.assembly-plugin.version} + true + + + + single + + + verify + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + + + clean-staging + clean + + clean-staging + + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/javadoc + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/javadoc + ${JAVA_1_11_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + true + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + ${changes.announcementDirectory} + ${changes.announcementFile} + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + jdk7-plugin-fix-version + + [1.7,1.8) + + + 3.5.1 + 1.17 + 3.5.0 + + + + + jdk8-plugin-fix-version + + [1.8,1.9) + + + 0.6.3 + + + + + jdk9-compiler + + [9 + + + + ${commons.compiler.release} + + + + + + site-basic + + true + true + true + true + true + true + true + true + + + + + travis-cobertura + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + xml + + + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + travis-jacoco + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + moditect + + [9,) + + + 9 + + + + + org.moditect + moditect-maven-plugin + ${commons.moditect-maven-plugin.version} + + + add-module-infos + package + + add-module-info + + + ${moditect.java.version} + + --multi-release=${moditect.java.version} + + ${project.build.directory} + true + false + + + ${commons.module.name} + + + + + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom.sha1 new file mode 100644 index 000000000..7910ac1ab --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom.sha1 @@ -0,0 +1 @@ +018672c655ff005d7962a59c74f93b2f31f27386 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/64/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/64/_remote.repositories new file mode 100644 index 000000000..cd433d548 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/64/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:25 EDT 2024 +commons-parent-64.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom b/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom new file mode 100644 index 000000000..e455c1fb8 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom @@ -0,0 +1,1876 @@ + + + + 4.0.0 + + org.apache + apache + 30 + + org.apache.commons + commons-parent + 64 + pom + Apache Commons Parent + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + 2006 + https://commons.apache.org/proper/commons-parent/ + + + + + + 3.6.3 + + 8 + + + 2023-10-06T14:12:42Z + 64 + 65 + RC1 + COMMONSSITE + + + 63 + true + + + + + + 1.3 + 1.3 + + + 8 + + + false + + + + + + 3.2.1 + + + 1.23 + + 1.0 + 3.6.0 + 3.4.0 + 1.13 + 2.12.1 + 3.3.0 + 9.3 + 2.7 + 3.11.0 + 2.7.9 + 0.7.0 + 3.1.2 + 5.1.9 + 0.8.10 + 0.18.1 + 3.3.0 + 3.6.0 + 3.3.0 + 3.21.0 + 6.55.0 + 3.4.5 + 0.15 + 1.8.1 + 1.1 + 3.2.0 + 1.0.0.Final + true + 6.4.1 + 5.10.0 + + + + 3.12.1 + 4.7.3.6 + 4.7.3 + 3.1.2 + 3.1.2 + 3.5.3 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + parent + + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + https://docs.oracle.com/javase/6/docs/api/ + https://docs.oracle.com/javase/7/docs/api/ + https://docs.oracle.com/javase/8/docs/api/ + https://docs.oracle.com/javase/9/docs/api/ + https://docs.oracle.com/javase/10/docs/api/ + https://docs.oracle.com/en/java/javase/11/docs/api/ + https://docs.oracle.com/en/java/javase/12/docs/api/ + https://docs.oracle.com/en/java/javase/13/docs/api/ + https://docs.oracle.com/en/java/javase/14/docs/api/ + https://docs.oracle.com/en/java/javase/15/docs/api/ + https://docs.oracle.com/en/java/javase/16/docs/api/ + https://docs.oracle.com/en/java/javase/17/docs/api/ + https://docs.oracle.com/en/java/javase/18/docs/api/ + https://docs.oracle.com/en/java/javase/19/docs/api/ + https://docs.oracle.com/en/java/javase/20/docs/api/ + + ${commons.javadoc8.java.link} + + https://docs.oracle.com/javaee/5/api/ + https://docs.oracle.com/javaee/6/api/ + https://docs.oracle.com/javaee/7/api/ + https://jakarta.ee/specifications/platform/8/apidocs/ + https://jakarta.ee/specifications/platform/9/apidocs/ + https://jakarta.ee/specifications/platform/9.1/apidocs/ + https://jakarta.ee/specifications/platform/10/apidocs/ + + ${commons.javadoc.javaee6.link} + + + info + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + src/conf + + https://analysis.apache.org/ + + + . + RELEASE-NOTES.txt + + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-user/ + + https://markmail.org/list/org.apache.commons.users/ + https://www.mail-archive.com/user@commons.apache.org/ + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-dev/ + + https://markmail.org/list/org.apache.commons.dev/ + https://www.mail-archive.com/dev@commons.apache.org/ + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-issues/ + + https://markmail.org/list/org.apache.commons.issues/ + https://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-commits/ + + https://markmail.org/list/org.apache.commons.commits/ + https://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + https://markmail.org/list/org.apache.announce/ + https://www.mail-archive.com/announce@apache.org/ + + + + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git + scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git + https://gitbox.apache.org/repos/asf?p=commons-parent.git + + + + jira + https://issues.apache.org/jira/browse/COMMONSSITE + + + + GitHub + https://github.com/apache/commons-parent/actions + + + + + + org.junit + junit-bom + ${commons.junit.version} + pom + import + + + + + + + clean apache-rat:check package site + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.compiler.javadoc} + ${commons.encoding} + ${commons.docEncoding} + + true + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + ${project.groupId} + ${project.artifactId} + ${commons.bc.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.jar + + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + METHOD_ADDED_TO_INTERFACE + false + false + PATCH + + + + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + + biz.aQute.bnd + biz.aQute.bndlib + ${commons.biz.aQute.bndlib.version} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + ${commons.buildnumber-plugin.version} + + + org.codehaus.mojo + versions-maven-plugin + + 2.16.1 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + org.apache.bcel + bcel + 6.7.0 + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${commons.checkstyle-plugin.version} + + + com.puppycrawl.tools + checkstyle + ${commons.checkstyle.version} + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${commons.spotbugs.plugin.version} + + + com.github.spotbugs + spotbugs + ${commons.spotbugs.impl.version} + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd.version} + + + net.sourceforge.pmd + pmd-core + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-java + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-javascript + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-jsp + ${commons.pmd-impl.version} + + + + + org.cyclonedx + cyclonedx-maven-plugin + ${commons.cyclonedx.version} + + + build-sbom-cyclonedx + package + + makeAggregateBom + + + + + ${project.artifactId}-${project.version}-bom + + + + org.spdx + spdx-maven-plugin + ${commons.spdx.version} + + + build-sbom-spdx + package + + createSPDX + + + + + + org.codehaus.mojo + javancss-maven-plugin + + + + + + + **/*.java + + + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + maven-source-plugin + + + + true + true + + + + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire-report.version} + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + rat-check + validate + + check + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.codehaus.mojo + versions-maven-plugin + + + org.cyclonedx + cyclonedx-maven-plugin + + + org.spdx + spdx-maven-plugin + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + team + scm + issue-management + mailing-lists + dependency-info + dependency-management + dependencies + dependency-convergence + ci-management + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + + + + + + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + (,9) + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + report + + + + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + japicmp + + [1.8,) + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + + + + + + + + + release + + + + maven-install-plugin + + true + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + ${commons.compiler.javadoc} + + + + maven-assembly-plugin + ${commons.assembly-plugin.version} + true + + + + single + + + verify + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + + + clean-staging + clean + + clean-staging + + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/javadoc + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/javadoc + ${JAVA_1_11_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + true + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + ${changes.announcementDirectory} + ${changes.announcementFile} + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + jdk7-plugin-fix-version + + [1.7,1.8) + + + 3.5.1 + 1.17 + 3.5.0 + + + + + jdk8-plugin-fix-version + + [1.8,1.9) + + + 0.6.3 + + + + + + site-basic + + true + true + true + true + true + true + true + true + + + + + java-9-up + + [9,) + + + 9 + true + + ${commons.compiler.release} + + + + + org.moditect + moditect-maven-plugin + ${commons.moditect-maven-plugin.version} + + + add-module-infos + package + + add-module-info + + + ${moditect.java.version} + + --multi-release=${moditect.java.version} + + ${project.build.directory} + true + false + + + ${commons.module.name} + ${commons.moditect-maven-plugin.addServiceUses} + + + + + + + + + + + + + java-11-up + + [11,) + + + 10.12.4 + + + + + + java-17-up + + [17,) + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom.sha1 new file mode 100644 index 000000000..1a8f79584 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom.sha1 @@ -0,0 +1 @@ +aec2c7e06fc7ab9271cd4d076e8251df6a0d55da \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/65/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/65/_remote.repositories new file mode 100644 index 000000000..c2f6523e0 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/65/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:14 EDT 2024 +commons-parent-65.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom b/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom new file mode 100644 index 000000000..91c892ea3 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom @@ -0,0 +1,1876 @@ + + + + 4.0.0 + + org.apache + apache + 31 + + org.apache.commons + commons-parent + 65 + pom + Apache Commons Parent + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + 2006 + https://commons.apache.org/proper/commons-parent/ + + + + + + 3.6.3 + + 8 + + + 2023-11-18T01:56:28Z + 65 + 66 + RC1 + COMMONSSITE + + + 64 + true + + + + + + 1.3 + 1.3 + + + 8 + + + false + + + + + + 3.2.1 + + + 1.23 + + 1.0 + 3.6.0 + 3.4.0 + 1.13 + 2.12.1 + 3.3.1 + 9.3 + 2.7 + 3.11.0 + 2.7.10 + 0.7.0 + 3.2.2 + 5.1.9 + 0.8.11 + 0.18.3 + 3.3.0 + 3.6.2 + 3.3.1 + 3.21.2 + 6.55.0 + 3.4.5 + 0.15 + 1.8.1 + 1.1 + 3.2.0 + 1.1.0 + true + 6.4.1 + 5.10.1 + + + + 3.12.1 + 4.8.1.0 + 4.8.1 + 3.2.2 + 3.2.2 + 3.5.3 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + parent + + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + https://docs.oracle.com/javase/6/docs/api/ + https://docs.oracle.com/javase/7/docs/api/ + https://docs.oracle.com/javase/8/docs/api/ + https://docs.oracle.com/javase/9/docs/api/ + https://docs.oracle.com/javase/10/docs/api/ + https://docs.oracle.com/en/java/javase/11/docs/api/ + https://docs.oracle.com/en/java/javase/12/docs/api/ + https://docs.oracle.com/en/java/javase/13/docs/api/ + https://docs.oracle.com/en/java/javase/14/docs/api/ + https://docs.oracle.com/en/java/javase/15/docs/api/ + https://docs.oracle.com/en/java/javase/16/docs/api/ + https://docs.oracle.com/en/java/javase/17/docs/api/ + https://docs.oracle.com/en/java/javase/18/docs/api/ + https://docs.oracle.com/en/java/javase/19/docs/api/ + https://docs.oracle.com/en/java/javase/20/docs/api/ + + ${commons.javadoc8.java.link} + + https://docs.oracle.com/javaee/5/api/ + https://docs.oracle.com/javaee/6/api/ + https://docs.oracle.com/javaee/7/api/ + https://jakarta.ee/specifications/platform/8/apidocs/ + https://jakarta.ee/specifications/platform/9/apidocs/ + https://jakarta.ee/specifications/platform/9.1/apidocs/ + https://jakarta.ee/specifications/platform/10/apidocs/ + + ${commons.javadoc.javaee6.link} + + + info + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + src/conf + + https://analysis.apache.org/ + + + . + RELEASE-NOTES.txt + + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-user/ + + https://markmail.org/list/org.apache.commons.users/ + https://www.mail-archive.com/user@commons.apache.org/ + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-dev/ + + https://markmail.org/list/org.apache.commons.dev/ + https://www.mail-archive.com/dev@commons.apache.org/ + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-issues/ + + https://markmail.org/list/org.apache.commons.issues/ + https://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-commits/ + + https://markmail.org/list/org.apache.commons.commits/ + https://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + https://markmail.org/list/org.apache.announce/ + https://www.mail-archive.com/announce@apache.org/ + + + + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git + scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git + https://gitbox.apache.org/repos/asf?p=commons-parent.git + + + + jira + https://issues.apache.org/jira/browse/COMMONSSITE + + + + GitHub + https://github.com/apache/commons-parent/actions + + + + + + org.junit + junit-bom + ${commons.junit.version} + pom + import + + + + + + + clean apache-rat:check verify site + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.compiler.javadoc} + ${commons.encoding} + ${commons.docEncoding} + + true + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + ${project.groupId} + ${project.artifactId} + ${commons.bc.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.jar + + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + METHOD_ADDED_TO_INTERFACE + false + false + PATCH + + + + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + + biz.aQute.bnd + biz.aQute.bndlib + ${commons.biz.aQute.bndlib.version} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + ${commons.buildnumber-plugin.version} + + + org.codehaus.mojo + versions-maven-plugin + + 2.16.2 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + org.apache.bcel + bcel + 6.7.0 + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${commons.checkstyle-plugin.version} + + + com.puppycrawl.tools + checkstyle + ${commons.checkstyle.version} + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${commons.spotbugs.plugin.version} + + + com.github.spotbugs + spotbugs + ${commons.spotbugs.impl.version} + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd.version} + + + net.sourceforge.pmd + pmd-core + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-java + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-javascript + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-jsp + ${commons.pmd-impl.version} + + + + + org.cyclonedx + cyclonedx-maven-plugin + ${commons.cyclonedx.version} + + + build-sbom-cyclonedx + package + + makeAggregateBom + + + + + ${project.artifactId}-${project.version}-bom + + + + org.spdx + spdx-maven-plugin + ${commons.spdx.version} + + + build-sbom-spdx + package + + createSPDX + + + + + + org.codehaus.mojo + javancss-maven-plugin + 2.1 + + + + + + + **/*.java + + + + + org.codehaus.mojo + exec-maven-plugin + 3.1.1 + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + maven-source-plugin + + + + true + true + + + + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + rat-check + validate + + check + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.codehaus.mojo + versions-maven-plugin + + + org.cyclonedx + cyclonedx-maven-plugin + + + org.spdx + spdx-maven-plugin + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + team + scm + issue-management + mailing-lists + dependency-info + dependency-management + dependencies + dependency-convergence + ci-management + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + + + + + + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + (,9) + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + report + + + + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + japicmp + + [1.8,) + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + + + + + + + + + release + + + + maven-install-plugin + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + ${commons.compiler.javadoc} + + + + maven-assembly-plugin + ${commons.assembly-plugin.version} + true + + + + single + + + verify + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + + + clean-staging + clean + + clean-staging + + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/javadoc + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/javadoc + ${JAVA_1_11_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + true + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + ${changes.announcementDirectory} + ${changes.announcementFile} + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + jdk7-plugin-fix-version + + [1.7,1.8) + + + 3.5.1 + 1.17 + 3.5.0 + + + + + jdk8-plugin-fix-version + + [1.8,1.9) + + + 0.6.3 + + + + + + site-basic + + true + true + true + true + true + true + true + true + + + + + java-9-up + + [9,) + + + 9 + true + + ${commons.compiler.release} + + + + + org.moditect + moditect-maven-plugin + ${commons.moditect-maven-plugin.version} + + + add-module-infos + package + + add-module-info + + + ${moditect.java.version} + + --multi-release=${moditect.java.version} + + ${project.build.directory} + true + false + + + ${commons.module.name} + ${commons.moditect-maven-plugin.addServiceUses} + + + + + + + + + + + + + java-11-up + + [11,) + + + 10.12.5 + + + + + + java-17-up + + [17,) + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom.sha1 new file mode 100644 index 000000000..3f9947d24 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom.sha1 @@ -0,0 +1 @@ +a5e6a3fd684242815f2ffd77ed8b316d549ed01b \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/66/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/66/_remote.repositories new file mode 100644 index 000000000..e95a92a7a --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/66/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:23 EDT 2024 +commons-parent-66.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom b/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom new file mode 100644 index 000000000..0d4d5cbd5 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom @@ -0,0 +1,1880 @@ + + + + 4.0.0 + + org.apache + apache + 31 + + org.apache.commons + commons-parent + 66 + pom + Apache Commons Parent + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + 2006 + https://commons.apache.org/proper/commons-parent/ + + + + + + 3.6.3 + + 8 + + + 2024-01-29T13:15:17Z + 66 + 67 + RC1 + COMMONSSITE + + + 65 + true + + + + + + 1.3 + 1.3 + + + 8 + + + false + + + + + + 3.2.1 + + + 1.23 + + 1.0 + 3.6.0 + 3.5.0 + 1.13 + 2.12.1 + 3.3.1 + + 9.3 + 2.7 + 3.12.1 + 2.7.11 + 0.7.2 + 3.2.5 + 5.1.9 + 0.8.11 + 0.18.3 + 3.3.0 + 3.6.3 + 3.3.2 + 3.21.2 + 6.55.0 + 3.5.0 + 0.16.1 + 1.8.1 + 1.1 + 3.2.0 + 1.1.0 + true + + 6.4.1 + 5.10.1 + + + + 3.12.1 + 4.8.3.0 + 4.8.3 + 3.2.5 + 3.2.5 + 3.5.3 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + parent + + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + https://docs.oracle.com/javase/8/docs/api/ + https://docs.oracle.com/en/java/javase/11/docs/api/ + https://docs.oracle.com/en/java/javase/17/docs/api/ + https://docs.oracle.com/en/java/javase/21/docs/api/ + + ${commons.javadoc8.java.link} + + https://docs.oracle.com/javaee/5/api/ + https://docs.oracle.com/javaee/6/api/ + https://docs.oracle.com/javaee/7/api/ + https://jakarta.ee/specifications/platform/8/apidocs/ + https://jakarta.ee/specifications/platform/9/apidocs/ + https://jakarta.ee/specifications/platform/9.1/apidocs/ + https://jakarta.ee/specifications/platform/10/apidocs/ + + ${commons.javadoc.javaee6.link} + + + info + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + src/conf + + https://analysis.apache.org/ + + + . + RELEASE-NOTES.txt + + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-user/ + + https://www.mail-archive.com/user@commons.apache.org/ + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-dev/ + + https://www.mail-archive.com/dev@commons.apache.org/ + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-issues/ + + https://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-commits/ + + https://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + https://www.mail-archive.com/announce@apache.org/ + + + + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git + scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git + https://gitbox.apache.org/repos/asf?p=commons-parent.git + + + + jira + https://issues.apache.org/jira/browse/COMMONSSITE + + + + GitHub + https://github.com/apache/commons-parent/actions + + + + + + org.junit + junit-bom + ${commons.junit.version} + pom + import + + + + + + + clean apache-rat:check verify site + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.compiler.javadoc} + ${commons.encoding} + ${commons.docEncoding} + + true + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + ${project.groupId} + ${project.artifactId} + ${commons.bc.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.jar + + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + METHOD_ADDED_TO_INTERFACE + false + false + PATCH + + + + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + + biz.aQute.bnd + biz.aQute.bndlib + ${commons.biz.aQute.bndlib.version} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.apache.maven.plugins + maven-artifact-plugin + 3.5.0 + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + ${commons.buildnumber-plugin.version} + + + org.codehaus.mojo + versions-maven-plugin + + 2.16.2 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + org.apache.bcel + bcel + 6.8.1 + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${commons.checkstyle-plugin.version} + + + com.puppycrawl.tools + checkstyle + ${commons.checkstyle.version} + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${commons.spotbugs.plugin.version} + + + com.github.spotbugs + spotbugs + ${commons.spotbugs.impl.version} + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd.version} + + + net.sourceforge.pmd + pmd-core + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-java + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-javascript + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-jsp + ${commons.pmd-impl.version} + + + + + org.cyclonedx + cyclonedx-maven-plugin + ${commons.cyclonedx.version} + + + build-sbom-cyclonedx + package + + makeAggregateBom + + + + + ${project.artifactId}-${project.version}-bom + + + + org.spdx + spdx-maven-plugin + ${commons.spdx.version} + + + build-sbom-spdx + package + + createSPDX + + + + + + org.codehaus.mojo + javancss-maven-plugin + 2.1 + + + + + + + **/*.java + + + + + org.codehaus.mojo + exec-maven-plugin + 3.1.1 + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + maven-source-plugin + + + + true + true + + + + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + rat-check + validate + + check + + + + + + org.apache.maven.plugins + maven-artifact-plugin + + + check-buildplan + validate + + check-buildplan + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.codehaus.mojo + versions-maven-plugin + + + org.cyclonedx + cyclonedx-maven-plugin + + + org.spdx + spdx-maven-plugin + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + team + scm + issue-management + mailing-lists + dependency-info + dependency-management + dependencies + dependency-convergence + ci-management + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + + + + + + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + (,9) + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + report + + + + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + japicmp + + [1.8,) + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + + + + + + + + + release + + + + maven-install-plugin + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + ${commons.compiler.javadoc} + + + + maven-assembly-plugin + ${commons.assembly-plugin.version} + true + + + + single + + + verify + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + + + clean-staging + clean + + clean-staging + + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/javadoc + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/javadoc + ${JAVA_1_11_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + true + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + ${changes.announcementDirectory} + ${changes.announcementFile} + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + jdk7-plugin-fix-version + + [1.7,1.8) + + + 3.5.1 + 1.17 + 3.5.0 + + + + + jdk8-plugin-fix-version + + [1.8,1.9) + + + 0.6.3 + + + + + + site-basic + + true + true + true + true + true + true + true + true + + + + + java-9-up + + [9,) + + + 9 + true + + ${commons.compiler.release} + + + + + org.moditect + moditect-maven-plugin + ${commons.moditect-maven-plugin.version} + + + add-module-infos + package + + add-module-info + + + ${moditect.java.version} + + --multi-release=${moditect.java.version} + + ${project.build.directory} + true + false + + + ${commons.module.name} + ${commons.moditect-maven-plugin.addServiceUses} + + + + + + + + + + + + + java-11-up + + [11,) + + + 10.13.0 + + + + + + java-17-up + + [17,) + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom.sha1 new file mode 100644 index 000000000..5d6e3303f --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom.sha1 @@ -0,0 +1 @@ +24cf85c9d30c5ca5a2f48d806e93d8328b622a8c \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/69/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/69/_remote.repositories new file mode 100644 index 000000000..8b150faab --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/69/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:25 EDT 2024 +commons-parent-69.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom b/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom new file mode 100644 index 000000000..28ce320da --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom @@ -0,0 +1,1880 @@ + + + + 4.0.0 + + org.apache + apache + 31 + + org.apache.commons + commons-parent + 69 + pom + Apache Commons Parent + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + 2006 + https://commons.apache.org/proper/commons-parent/ + + + + + + 3.6.3 + + 8 + + + 2024-03-29T12:56:59Z + 69 + 70 + RC1 + COMMONSSITE + + + 68 + true + + + + + + 1.3 + 1.3 + + + 8 + + + false + + + + + + 3.2.1 + + + 1.23 + + 1.0 + 3.7.1 + 3.5.0 + 1.13 + 2.12.1 + 3.3.1 + + 9.3 + 2.7 + 3.13.0 + 2.8.0 + 0.7.3 + 3.2.5 + 5.1.9 + 0.8.11 + 0.20.0 + 3.3.0 + 3.6.3 + 3.3.2 + 3.21.2 + 6.55.0 + 3.5.0 + 0.16.1 + 1.8.1 + 1.1 + 3.2.0 + 1.2.1.Final + true + + 6.4.1 + 5.10.2 + + + + 3.12.1 + 4.8.3.1 + 4.8.3 + 3.2.5 + 3.2.5 + 3.5.3 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + parent + + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + https://docs.oracle.com/javase/8/docs/api/ + https://docs.oracle.com/en/java/javase/11/docs/api/ + https://docs.oracle.com/en/java/javase/17/docs/api/ + https://docs.oracle.com/en/java/javase/21/docs/api/ + + ${commons.javadoc8.java.link} + + https://docs.oracle.com/javaee/5/api/ + https://docs.oracle.com/javaee/6/api/ + https://docs.oracle.com/javaee/7/api/ + https://jakarta.ee/specifications/platform/8/apidocs/ + https://jakarta.ee/specifications/platform/9/apidocs/ + https://jakarta.ee/specifications/platform/9.1/apidocs/ + https://jakarta.ee/specifications/platform/10/apidocs/ + + ${commons.javadoc.javaee6.link} + + + info + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + src/conf + + https://analysis.apache.org/ + + + . + RELEASE-NOTES.txt + + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-user/ + + https://www.mail-archive.com/user@commons.apache.org/ + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-dev/ + + https://www.mail-archive.com/dev@commons.apache.org/ + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-issues/ + + https://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + https://mail-archives.apache.org/mod_mbox/commons-commits/ + + https://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + https://www.mail-archive.com/announce@apache.org/ + + + + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git + scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git + https://gitbox.apache.org/repos/asf?p=commons-parent.git + + + + jira + https://issues.apache.org/jira/browse/COMMONSSITE + + + + GitHub + https://github.com/apache/commons-parent/actions + + + + + + org.junit + junit-bom + ${commons.junit.version} + pom + import + + + + + + + clean apache-rat:check verify site + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + NOTICE + LICENSE + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.compiler.javadoc} + ${commons.encoding} + ${commons.docEncoding} + + true + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + ${project.groupId} + ${project.artifactId} + ${commons.bc.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.jar + + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + METHOD_ADDED_TO_INTERFACE + false + false + PATCH + + + + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + + biz.aQute.bnd + biz.aQute.bndlib + ${commons.biz.aQute.bndlib.version} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.apache.maven.plugins + maven-artifact-plugin + 3.5.0 + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + ${commons.buildnumber-plugin.version} + + + org.codehaus.mojo + versions-maven-plugin + + 2.16.2 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + org.apache.bcel + bcel + 6.8.2 + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${commons.checkstyle-plugin.version} + + + com.puppycrawl.tools + checkstyle + ${commons.checkstyle.version} + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${commons.spotbugs.plugin.version} + + + com.github.spotbugs + spotbugs + ${commons.spotbugs.impl.version} + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd.version} + + + net.sourceforge.pmd + pmd-core + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-java + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-javascript + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-jsp + ${commons.pmd-impl.version} + + + + + org.cyclonedx + cyclonedx-maven-plugin + ${commons.cyclonedx.version} + + + build-sbom-cyclonedx + package + + makeAggregateBom + + + + + ${project.artifactId}-${project.version}-bom + + + + org.spdx + spdx-maven-plugin + ${commons.spdx.version} + + + build-sbom-spdx + package + + createSPDX + + + + + + org.codehaus.mojo + javancss-maven-plugin + 2.1 + + + + + + + **/*.java + + + + + org.codehaus.mojo + exec-maven-plugin + 3.2.0 + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + maven-source-plugin + + + + true + true + + + + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + rat-check + validate + + check + + + + + + org.apache.maven.plugins + maven-artifact-plugin + + + check-buildplan + validate + + check-buildplan + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.codehaus.mojo + versions-maven-plugin + + + org.cyclonedx + cyclonedx-maven-plugin + + + org.spdx + spdx-maven-plugin + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + team + scm + issue-management + mailing-lists + dependency-info + dependency-management + dependencies + dependency-convergence + ci-management + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + .asf.yaml + .gitattributes + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + .vscode/** + + + + + + + + + + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + (,9) + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + report + + + + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + japicmp + + [1.8,) + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + + + + + + + + + release + + + + maven-install-plugin + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + ${commons.compiler.javadoc} + + + + maven-assembly-plugin + ${commons.assembly-plugin.version} + true + + + + single + + + verify + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + + + clean-staging + clean + + clean-staging + + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/javadoc + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/javadoc + ${JAVA_1_11_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + true + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + ${changes.announcementDirectory} + ${changes.announcementFile} + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + jdk7-plugin-fix-version + + [1.7,1.8) + + + 3.5.1 + 1.17 + 3.5.0 + + + + + jdk8-plugin-fix-version + + [1.8,1.9) + + + 0.6.3 + + + + + + site-basic + + true + true + true + true + true + true + true + true + + + + + java-9-up + + [9,) + + + 9 + true + + ${commons.compiler.release} + + + + + org.moditect + moditect-maven-plugin + ${commons.moditect-maven-plugin.version} + + + add-module-infos + package + + add-module-info + + + ${moditect.java.version} + + --multi-release=${moditect.java.version} + + ${project.build.directory} + true + false + + + ${commons.module.name} + ${commons.moditect-maven-plugin.addServiceUses} + + + + + + + + + + + + + java-11-up + + [11,) + + + 10.14.2 + + + + + + java-17-up + + [17,) + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom.sha1 new file mode 100644 index 000000000..f50667da1 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom.sha1 @@ -0,0 +1 @@ +6ebeacd37818d945d96c06b44af10e050d2ef7c4 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-text/1.11.0/_remote.repositories b/code/arachne/org/apache/commons/commons-text/1.11.0/_remote.repositories new file mode 100644 index 000000000..dcc69b095 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-text/1.11.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:25 EDT 2024 +commons-text-1.11.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom b/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom new file mode 100644 index 000000000..4d560227a --- /dev/null +++ b/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom @@ -0,0 +1,528 @@ + + + + 4.0.0 + + org.apache.commons + commons-parent + 64 + + commons-text + 1.11.0 + Apache Commons Text + Apache Commons Text is a library focused on algorithms working on strings. + https://commons.apache.org/proper/commons-text + + + ISO-8859-1 + UTF-8 + 1.8 + 1.8 + + text + text + org.apache.commons.text + + 1.11.0 + 1.11.1 + (Java 8+) + + TEXT + 12318221 + + text + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-text + site-content + + 1.14.9 + 4.11.0 + + + 22.0.0.2 + 1.5 + + false + + 1.37 + + + + 1.10.0 + RC1 + true + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + + + + + org.apache.commons + commons-lang3 + 3.13.0 + + + + org.junit.jupiter + junit-jupiter + test + + + + net.bytebuddy + byte-buddy + ${commons.bytebuddy.version} + test + + + + net.bytebuddy + byte-buddy-agent + ${commons.bytebuddy.version} + test + + + org.assertj + assertj-core + 3.24.2 + test + + + commons-io + commons-io + 2.14.0 + test + + + org.mockito + + mockito-inline + ${commons.mockito.version} + test + + + org.graalvm.js + js + ${graalvm.version} + test + + + org.graalvm.js + js-scriptengine + ${graalvm.version} + test + + + org.apache.commons + commons-rng-simple + ${commons.rng.version} + test + + + org.openjdk.jmh + jmh-core + ${jmh.version} + test + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh.version} + test + + + + + clean verify apache-rat:check japicmp:cmp checkstyle:check spotbugs:check javadoc:javadoc + + + + org.apache.rat + apache-rat-plugin + + + site-content/** + src/site/resources/download_lang.cgi + src/test/resources/org/apache/commons/text/stringEscapeUtilsTestData.txt + src/test/resources/org/apache/commons/text/lcs-perf-analysis-inputs.csv + src/site/resources/release-notes/RELEASE-NOTES-*.txt + + + + + maven-pmd-plugin + ${commons.pmd.version} + + ${maven.compiler.target} + + + + + + + maven-checkstyle-plugin + + false + src/conf/checkstyle.xml + src/conf/checkstyle-header.txt + src/conf/checkstyle-suppressions.xml + src/conf/checkstyle-suppressions.xml + true + **/generated/**.java,**/jmh_generated/**.java + + + + com.github.spotbugs + spotbugs-maven-plugin + + src/conf/spotbugs-exclude-filter.xml + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + ${commons.module.name} + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + ${maven.compiler.source} + + + + + + + + + maven-checkstyle-plugin + + false + src/conf/checkstyle.xml + src/conf/checkstyle-header.txt + src/conf/checkstyle-suppressions.xml + src/conf/checkstyle-suppressions.xml + true + **/generated/**.java,**/jmh_generated/**.java + + + + + checkstyle + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + src/conf/spotbugs-exclude-filter.xml + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + maven-pmd-plugin + + ${maven.compiler.target} + + + + + pmd + cpd + + + + + + org.codehaus.mojo + taglist-maven-plugin + 3.0.0 + + + + + Needs Work + + + TODO + exact + + + FIXME + exact + + + XXX + exact + + + + + Noteable Markers + + + NOTE + exact + + + NOPMD + exact + + + NOSONAR + exact + + + + + + + + + + + 2014 + + + + kinow + Bruno P. Kinoshita + kinow@apache.org + + + britter + Benedikt Ritter + britter@apache.org + + + chtompki + Rob Tompkins + chtompki@apache.org + + + ggregory + Gary Gregory + ggregory at apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + https://people.apache.org/~ggregory/img/garydgregory80.png + + + + djones + Duncan Jones + djones@apache.org + + + + + + Don Jeba + donjeba@yahoo.com + + + Sampanna Kahu + + + Jarek Strzelecki + + + Lee Adcock + + + Amey Jadiye + ameyjadiye@gmail.com + + + Arun Vinud S S + + + Ioannis Sermetziadis + + + Jostein Tveit + + + Luciano Medallia + + + Jan Martin Keil + + + Nandor Kollar + + + Nick Wong + + + Ali Ghanbari + https://ali-ghanbari.github.io/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/commons-text + scm:git:https://gitbox.apache.org/repos/asf/commons-text + https://gitbox.apache.org/repos/asf?p=commons-text.git + + + + jira + https://issues.apache.org/jira/browse/TEXT + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-text/ + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + prepare-checkout + + run + + pre-site + + + + + + + + + + + + + + + + + + + + + + + + benchmark + + true + org.apache + + + + + org.codehaus.mojo + exec-maven-plugin + 3.1.0 + + + benchmark + test + + exec + + + test + java + + -classpath + + org.openjdk.jmh.Main + -rf + json + -rff + target/jmh-result.${benchmark}.json + ${benchmark} + + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom.sha1 b/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom.sha1 new file mode 100644 index 000000000..225994481 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom.sha1 @@ -0,0 +1 @@ +6ad811c49af218e6f184c3b487f195e6f9f61e1f \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-text/1.12.0/_remote.repositories b/code/arachne/org/apache/commons/commons-text/1.12.0/_remote.repositories new file mode 100644 index 000000000..4cc3b40c3 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-text/1.12.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:25 EDT 2024 +commons-text-1.12.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom b/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom new file mode 100644 index 000000000..5ac1b7226 --- /dev/null +++ b/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom @@ -0,0 +1,558 @@ + + + + 4.0.0 + + org.apache.commons + commons-parent + 69 + + commons-text + 1.12.0 + Apache Commons Text + Apache Commons Text is a set of utility functions and reusable components for the purpose of processing + and manipulating text that should be of use in a Java environment. + + https://commons.apache.org/proper/commons-text + + + ISO-8859-1 + UTF-8 + 2024-04-13T13:15:17Z + 1.8 + 1.8 + + text + text + org.apache.commons.text + + 1.12.0 + 1.12.1 + (Java 8+) + + TEXT + 12318221 + + text + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-text + site-content + + 1.14.13 + 4.11.0 + + + 22.0.0.2 + 1.5 + + false + + 1.37 + + + + 1.11.0 + RC1 + true + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + + true + 1.00 + 0.97 + 0.98 + 0.95 + 0.94 + 0.98 + + + + + org.apache.commons + commons-lang3 + 3.14.0 + + + + org.junit.jupiter + junit-jupiter + test + + + + net.bytebuddy + byte-buddy + ${commons.bytebuddy.version} + test + + + + net.bytebuddy + byte-buddy-agent + ${commons.bytebuddy.version} + test + + + org.assertj + assertj-core + 3.25.3 + test + + + commons-io + commons-io + 2.16.1 + test + + + org.mockito + + mockito-inline + ${commons.mockito.version} + test + + + org.graalvm.js + js + ${graalvm.version} + test + + + org.graalvm.js + js-scriptengine + ${graalvm.version} + test + + + org.apache.commons + commons-rng-simple + ${commons.rng.version} + test + + + org.openjdk.jmh + jmh-core + ${jmh.version} + test + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh.version} + test + + + + + clean verify apache-rat:check japicmp:cmp checkstyle:check spotbugs:check javadoc:javadoc + + + + org.apache.rat + apache-rat-plugin + + + site-content/** + src/site/resources/download_lang.cgi + src/test/resources/org/apache/commons/text/stringEscapeUtilsTestData.txt + src/test/resources/org/apache/commons/text/lcs-perf-analysis-inputs.csv + src/site/resources/release-notes/RELEASE-NOTES-*.txt + + + + + maven-pmd-plugin + ${commons.pmd.version} + + ${maven.compiler.target} + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + false + + + + + maven-checkstyle-plugin + + false + src/conf/checkstyle.xml + src/conf/checkstyle-header.txt + src/conf/checkstyle-suppressions.xml + src/conf/checkstyle-suppressions.xml + true + **/generated/**.java,**/jmh_generated/**.java + + + + com.github.spotbugs + spotbugs-maven-plugin + + src/conf/spotbugs-exclude-filter.xml + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + ${commons.module.name} + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + ${maven.compiler.source} + + + + + + + + + maven-checkstyle-plugin + + false + src/conf/checkstyle.xml + src/conf/checkstyle-header.txt + src/conf/checkstyle-suppressions.xml + src/conf/checkstyle-suppressions.xml + true + **/generated/**.java,**/jmh_generated/**.java + + + + + checkstyle + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + src/conf/spotbugs-exclude-filter.xml + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + maven-pmd-plugin + + ${maven.compiler.target} + + + + + pmd + cpd + + + + + + org.codehaus.mojo + taglist-maven-plugin + 3.0.0 + + + + + Needs Work + + + TODO + exact + + + FIXME + exact + + + XXX + exact + + + + + Noteable Markers + + + NOTE + exact + + + NOPMD + exact + + + NOSONAR + exact + + + + + + + + + + + 2014 + + + + kinow + Bruno P. Kinoshita + kinow@apache.org + + + britter + Benedikt Ritter + britter@apache.org + + + chtompki + Rob Tompkins + chtompki@apache.org + + + ggregory + Gary Gregory + ggregory at apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + https://people.apache.org/~ggregory/img/garydgregory80.png + + + + djones + Duncan Jones + djones@apache.org + + + + + + Don Jeba + donjeba@yahoo.com + + + Sampanna Kahu + + + Jarek Strzelecki + + + Lee Adcock + + + Amey Jadiye + ameyjadiye@gmail.com + + + Arun Vinud S S + + + Ioannis Sermetziadis + + + Jostein Tveit + + + Luciano Medallia + + + Jan Martin Keil + + + Nandor Kollar + + + Nick Wong + + + Ali Ghanbari + https://ali-ghanbari.github.io/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/commons-text + scm:git:https://gitbox.apache.org/repos/asf/commons-text + https://gitbox.apache.org/repos/asf?p=commons-text.git + + + + jira + https://issues.apache.org/jira/browse/TEXT + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-text/ + + + + + + + java-11-up + + [11,) + + + 22.3.5 + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + prepare-checkout + + run + + pre-site + + + + + + + + + + + + + + + + + + + + + + + + benchmark + + true + org.apache + + + + + org.codehaus.mojo + exec-maven-plugin + 3.2.0 + + + benchmark + test + + exec + + + test + java + + -classpath + + org.openjdk.jmh.Main + -rf + json + -rff + target/jmh-result.${benchmark}.json + ${benchmark} + + + + + + + + + + diff --git a/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom.sha1 b/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom.sha1 new file mode 100644 index 000000000..375fa15ee --- /dev/null +++ b/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom.sha1 @@ -0,0 +1 @@ +99e12cd75786b7bf7d26b68e41783b89d346bd8c \ No newline at end of file diff --git a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/_remote.repositories b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/_remote.repositories new file mode 100644 index 000000000..4e696c236 --- /dev/null +++ b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:26 EDT 2024 +groovy-bom-4.0.21.pom>ohdsi= diff --git a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom new file mode 100644 index 000000000..0c8b4a874 --- /dev/null +++ b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom @@ -0,0 +1,996 @@ + + + + + + + + 4.0.0 + org.apache.groovy + groovy-bom + 4.0.21 + pom + Apache Groovy + Groovy: A powerful multi-faceted language for the JVM + https://groovy-lang.org + 2003 + + Apache Software Foundation + https://apache.org + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + glaforge + Guillaume Laforge + Google + + Developer + + + + bob + bob mcwhirter + bob@werken.com + The Werken Company + + Founder + + + + jstrachan + James Strachan + james@coredevelopers.com + Core Developers Network + + Founder + + + + joe + Joe Walnes + ThoughtWorks + + Developer Emeritus + + + + skizz + Chris Stevenson + ThoughtWorks + + Developer Emeritus + + + + jamiemc + Jamie McCrindle + Three + + Developer Emeritus + + + + mattf + Matt Foemmel + ThoughtWorks + + Developer Emeritus + + + + alextkachman + Alex Tkachman + + Developer Emeritus + + + + roshandawrani + Roshan Dawrani + + Developer Emeritus + + + + spullara + Sam Pullara + sam@sampullara.com + + Developer Emeritus + + + + kasper + Kasper Nielsen + + Developer Emeritus + + + + travis + Travis Kay + + Developer Emeritus + + + + zohar + Zohar Melamed + + Developer Emeritus + + + + jwilson + John Wilson + tug@wilson.co.uk + The Wilson Partnership + + Developer Emeritus + + + + cpoirier + Chris Poirier + cpoirier@dreaming.org + + Developer Emeritus + + + + ckl + Christiaan ten Klooster + ckl@dacelo.nl + Dacelo WebDevelopment + + Developer Emeritus + + + + goetze + Steve Goetze + goetze@dovetail.com + Dovetailed Technologies, LLC + + Developer Emeritus + + + + bran + Bing Ran + b55r@sina.com + Leadingcare + + Developer Emeritus + + + + jez + Jeremy Rayner + jeremy.rayner@gmail.com + javanicus + + Developer Emeritus + + + + jstump + John Stump + johnstump2@yahoo.com + + Developer Emeritus + + + + blackdrag + Jochen Theodorou + blackdrag@gmx.org + + Developer + + + + russel + Russel Winder + russel@winder.org.uk + Concertant LLP & It'z Interactive Ltd + + Developer + Founder of Gant + + + + phk + Pilho Kim + phkim@cluecom.co.kr + + Developer Emeritus + + + + cstein + Christian Stein + sormuras@gmx.de + CTSR.de + + Developer Emeritus + + + + mittie + Dierk Koenig + Karakun AG + + Developer + + + + paulk + Paul King + paulk@asert.com.au + OCI, Australia + + Project Manager + Developer + + + + galleon + Guillaume Alleon + guillaume.alleon@gmail.com + + Developer Emeritus + + + + user57 + Jason Dillon + jason@planet57.com + + Developer Emeritus + + + + shemnon + Danno Ferrin + + Developer Emeritus + + + + jwill + James Williams + + Developer Emeritus + + + + timyates + Tim Yates + + Developer + + + + aalmiray + Andres Almiray + aalmiray@users.sourceforge.net + + Developer + + + + mguillem + Marc Guillemot + mguillemot@yahoo.fr + + Developer Emeritus + + + + jimwhite + Jim White + jim@pagesmiths.com + IFCX.org + + Developer + + + + pniederw + Peter Niederwieser + pniederw@gmail.com + + Developer Emeritus + + + + andresteingress + Andre Steingress + + Developer + + + + hamletdrc + Hamlet D'Arcy + hamletdrc@gmail.com + + Developer Emeritus + + + + melix + Cedric Champeau + cedric.champeau@gmail.com + + Developer + + + + pascalschumacher + Pascal Schumacher + + Developer + + + + sunlan + Daniel Sun + + Developer + + + + rpopma + Remko Popma + + Developer + + + + grocher + Graeme Rocher + + Developer + + + + emilles + Eric Milles + Thomson Reuters + + Developer + + + + + + Joern Eyrich + + + Robert Kuzelj + + + Rod Cope + + + Yuri Schimke + + + James Birchfield + + + Robert Fuller + + + Sergey Udovenko + + + Hallvard Traetteberg + + + Peter Reilly + + + Brian McCallister + + + Richard Monson-Haefel + + + Brian Larson + + + Artur Biesiadowski + abies@pg.gda.pl + + + Ivan Z. Ganza + + + Larry Jacobson + + + Jake Gage + + + Arjun Nayyar + + + Masato Nagai + + + Mark Chu-Carroll + + + Mark Turansky + + + Jean-Louis Berliet + + + Graham Miller + + + Marc Palmer + + + Tugdual Grall + + + Edwin Tellman + + + Evan "Hippy" Slatis + + + Mike Dillon + + + Bernhard Huber + + + Yasuharu Nakano + + + Marc DeXeT + + + Dejan Bosanac + dejan@nighttale.net + + + Denver Dino + + + Ted Naleid + + + Ted Leung + + + Merrick Schincariol + + + Chanwit Kaewkasi + + + Stefan Matthias Aust + + + Andy Dwelly + + + Philip Milne + + + Tiago Fernandez + + + Steve Button + + + Joachim Baumann + + + Jochen Eddel+ + + + Ilinca V. Hallberg + + + Björn Westlin + + + Andrew Glover + + + Brad Long + + + John Bito + + + Jim Jagielski + + + Rodolfo Velasco + + + John Hurst + + + Merlyn Albery-Speyer + + + jeremi Joslin + + + UEHARA Junji + + + NAKANO Yasuharu + + + Dinko Srkoc + + + Raffaele Cigni + + + Alberto Vilches Raton + + + Paulo Poiati + + + Alexander Klein + + + Adam Murdoch + + + David Durham + + + Daniel Henrique Alves Lima + + + John Wagenleitner + + + Colin Harrington + + + Brian Alexander + + + Jan Weitz + + + Chris K Wensel + + + David Sutherland + + + Mattias Reichel + + + David Lee + + + Sergei Egorov + + + Hein Meling + + + Michael Baehr + + + Craig Andrews + + + Peter Ledbrook + + + Scott Stirling + + + Thibault Kruse + + + Tim Tiemens + + + Mike Spille + + + Nikolay Chugunov + + + Francesco Durbin + + + Paolo Di Tommaso + + + Rene Scheibe + + + Matias Bjarland + + + Tomasz Bujok + + + Richard Hightower + + + Andrey Bloschetsov + + + Yu Kobayashi + + + Nick Grealy + + + Vaclav Pech + + + Chuck Tassoni + + + Steven Devijver + + + Ben Manes + + + Troy Heninger + + + Andrew Eisenberg + + + Eric Milles + + + Kohsuke Kawaguchi + + + Scott Vlaminck + + + Hjalmar Ekengren + + + Rafael Luque + + + Joachim Heldmann + + + dgouyette + + + Marcin Grzejszczak + + + Pap Lőrinc + + + Guillaume Balaine + + + Santhosh Kumar T + + + Alan Green + + + Marty Saxton + + + Marcel Overdijk + + + Jonathan Carlson + + + Thomas Heller + + + John Stump + + + Ivan Ganza + + + Alex Popescu + + + Martin Kempf + + + Martin Ghados + + + Martin Stockhammer + + + Martin C. Martin + + + Alexey Verkhovsky + + + Alberto Mijares + + + Matthias Cullmann + + + Tomek Bujok + + + Stephane Landelle + + + Stephane Maldini + + + Mark Volkmann + + + Andrew Taylor + + + Vladimir Vivien + + + Vladimir Orany + + + Joe Wolf + + + Kent Inge Fagerland Simonsen + + + Tom Nichols + + + Ingo Hoffmann + + + Sergii Bondarenko + + + mgroovy + + + Dominik Przybysz + + + Jason Thomas + + + Trygve Amundsens + + + Morgan Hankins + + + Shruti Gupta + + + Ben Yu + + + Dejan Bosanac + + + Lidia Donajczyk-Lipinska + + + Peter Gromov + + + Johannes Link + + + Chris Reeves + + + Sean Timm + + + Dmitry Vyazelenko + + + + + Groovy Developer List + https://mail-archives.apache.org/mod_mbox/groovy-dev/ + + + Groovy User List + https://mail-archives.apache.org/mod_mbox/groovy-users/ + + + + scm:git:https://github.com/apache/groovy.git + scm:git:https://github.com/apache/groovy.git + https://github.com/apache/groovy.git + + + jira + https://issues.apache.org/jira/browse/GROOVY + + + + + org.apache.groovy + groovy + 4.0.21 + + + org.apache.groovy + groovy-ant + 4.0.21 + + + org.apache.groovy + groovy-astbuilder + 4.0.21 + + + org.apache.groovy + groovy-cli-commons + 4.0.21 + + + org.apache.groovy + groovy-cli-picocli + 4.0.21 + + + org.apache.groovy + groovy-console + 4.0.21 + + + org.apache.groovy + groovy-contracts + 4.0.21 + + + org.apache.groovy + groovy-datetime + 4.0.21 + + + org.apache.groovy + groovy-dateutil + 4.0.21 + + + org.apache.groovy + groovy-docgenerator + 4.0.21 + + + org.apache.groovy + groovy-ginq + 4.0.21 + + + org.apache.groovy + groovy-groovydoc + 4.0.21 + + + org.apache.groovy + groovy-groovysh + 4.0.21 + + + org.apache.groovy + groovy-jmx + 4.0.21 + + + org.apache.groovy + groovy-json + 4.0.21 + + + org.apache.groovy + groovy-jsr223 + 4.0.21 + + + org.apache.groovy + groovy-macro + 4.0.21 + + + org.apache.groovy + groovy-macro-library + 4.0.21 + + + org.apache.groovy + groovy-nio + 4.0.21 + + + org.apache.groovy + groovy-servlet + 4.0.21 + + + org.apache.groovy + groovy-sql + 4.0.21 + + + org.apache.groovy + groovy-swing + 4.0.21 + + + org.apache.groovy + groovy-templates + 4.0.21 + + + org.apache.groovy + groovy-test + 4.0.21 + + + org.apache.groovy + groovy-test-junit5 + 4.0.21 + + + org.apache.groovy + groovy-testng + 4.0.21 + + + org.apache.groovy + groovy-toml + 4.0.21 + + + org.apache.groovy + groovy-typecheckers + 4.0.21 + + + org.apache.groovy + groovy-xml + 4.0.21 + + + org.apache.groovy + groovy-yaml + 4.0.21 + + + + diff --git a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.lastUpdated b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.lastUpdated new file mode 100644 index 000000000..298c24c5c --- /dev/null +++ b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:26 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.apache.groovy\:groovy-bom\:pom\:4.0.21 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139805487 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139805611 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139805837 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139806035 diff --git a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.sha1 b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.sha1 new file mode 100644 index 000000000..b171919e6 --- /dev/null +++ b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.sha1 @@ -0,0 +1 @@ +cb48cf8a18df884da05138c687dbd86e6696b4e4 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/_remote.repositories b/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/_remote.repositories new file mode 100644 index 000000000..38eeddd5b --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:35 EDT 2024 +httpclient5-cache-5.2.3.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom b/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom new file mode 100644 index 000000000..56ed44581 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom @@ -0,0 +1,131 @@ + + + 4.0.0 + + org.apache.httpcomponents.client5 + httpclient5-parent + 5.2.3 + + httpclient5-cache + Apache HttpClient Cache + 2010 + Apache HttpComponents HttpClient Cache + jar + + + org.apache.httpcomponents.client5.httpclient5.cache + + + + + org.apache.httpcomponents.client5 + httpclient5 + + + org.slf4j + slf4j-api + + + org.ehcache.modules + ehcache-api + true + + + org.apache.logging.log4j + log4j-slf4j-impl + true + + + org.apache.logging.log4j + log4j-core + test + + + net.spy + spymemcached + true + + + org.hamcrest + hamcrest + test + + + org.mockito + mockito-core + test + + + org.apache.httpcomponents.client5 + httpclient5 + ${project.version} + test-jar + test + + + org.junit.jupiter + junit-jupiter + test + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + maven-project-info-reports-plugin + false + + + + index + dependencies + dependency-info + summary + + + + + + + + \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom.sha1 b/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom.sha1 new file mode 100644 index 000000000..e98b9fe70 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom.sha1 @@ -0,0 +1 @@ +83b333c3b86e3d57572400a4e2c134f90d33a374 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/_remote.repositories b/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/_remote.repositories new file mode 100644 index 000000000..2db028000 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:11 EDT 2024 +httpclient5-parent-5.2.3.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom b/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom new file mode 100644 index 000000000..0fc2baaf2 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom @@ -0,0 +1,448 @@ + + + + org.apache.httpcomponents + httpcomponents-parent + 13 + + 4.0.0 + org.apache.httpcomponents.client5 + httpclient5-parent + Apache HttpComponents Client Parent + 5.2.3 + Apache HttpComponents Client is a library of components for building client side HTTP services + https://hc.apache.org/httpcomponents-client-5.0.x/${project.version}/ + 1999 + pom + + + Jira + https://issues.apache.org/jira/browse/HTTPCLIENT + + + + scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-client.git + scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-client.git + https://github.com/apache/httpcomponents-client/tree/${project.scm.tag} + 5.2.3 + + + + + apache.website + Apache HttpComponents Website + scm:svn:https://svn.apache.org/repos/asf/httpcomponents/site/components/httpcomponents-client-5.2.x/LATEST/ + + + + + 1.8 + 1.8 + 5.2.4 + 2.20.0 + 0.1.2 + 2.5.2 + 3.10.8 + 2.12.3 + 1.7.36 + 5.9.3 + 2.2 + 4.11.0 + 5.13.0 + 1 + 2.2.21 + 5.2 + javax.net.ssl.SSLEngine,javax.net.ssl.SSLParameters,java.nio.ByteBuffer,java.nio.CharBuffer + 0.15.4 + + + + + + org.apache.httpcomponents.core5 + httpcore5 + ${httpcore.version} + + + org.apache.httpcomponents.core5 + httpcore5-h2 + ${httpcore.version} + + + org.apache.httpcomponents.core5 + httpcore5-testing + ${httpcore.version} + + + org.apache.httpcomponents.core5 + httpcore5-reactive + ${httpcore.version} + + + org.apache.httpcomponents.client5 + httpclient5 + ${project.version} + + + org.apache.httpcomponents.client5 + httpclient5 + ${project.version} + tests + + + org.apache.httpcomponents.client5 + httpclient5-cache + ${project.version} + + + org.apache.httpcomponents.client5 + httpclient5-fluent + ${project.version} + + + org.apache.httpcomponents.client5 + httpclient5-win + ${project.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j.version} + + + org.apache.logging.log4j + log4j-core + ${log4j.version} + + + org.brotli + dec + ${brotli.version} + + + org.conscrypt + conscrypt-openjdk-uber + ${conscrypt.version} + + + org.ehcache.modules + ehcache-api + ${ehcache.version} + + + net.spy + spymemcached + ${memcached.version} + + + net.java.dev.jna + jna + ${jna.version} + + + net.java.dev.jna + jna-platform + ${jna.version} + + + io.reactivex.rxjava2 + rxjava + ${rxjava.version} + test + + + org.junit + junit-bom + ${junit.version} + pom + import + + + org.mockito + mockito-core + ${mockito.version} + test + + + org.hamcrest + hamcrest + ${hamcrest.version} + test + + + + + + httpclient5 + httpclient5-fluent + httpclient5-cache + httpclient5-win + httpclient5-testing + + + + clean verify + + + maven-jar-plugin + + + + ${Automatic-Module-Name} + ${project.url} + + + + + + maven-javadoc-plugin + + + https://hc.apache.org/httpcomponents-core-5.2.x/current/httpcore5/apidocs/ + https://hc.apache.org/httpcomponents-core-5.2.x/current/httpcore5-h2/apidocs/ + ${project.url}/httpclient5/apidocs/ + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + validate-main + validate + + hc-stylecheck/default.xml + hc-stylecheck/asl2.header + true + true + false + + ${basedir}/src/main + + + + checkstyle + + + + validate-test + validate + + hc-stylecheck/default.xml + hc-stylecheck/asl2.header + true + true + false + + ${basedir}/src/test + + + + checkstyle + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + ${project.groupId} + ${project.artifactId} + ${api.comparison.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} + + + + true + true + + + METHOD_NEW_DEFAULT + true + true + + + + @org.apache.hc.core5.annotation.Internal + + true + + + + + verify + + cmp + + + + + + org.apache.rat + apache-rat-plugin + + + verify + + check + + + + + + src/docbkx/resources/** + src/test/resources/*.truststore + src/test/resources/*.serialized + .checkstyle + .externalToolBuilders/** + maven-eclipse.xml + **/serial + **/index.txt + + + + + + + + + + maven-project-info-reports-plugin + false + + + + index + dependency-info + dependency-management + issue-management + licenses + mailing-lists + scm + summary + + + + + + maven-javadoc-plugin + + true + true + + https://hc.apache.org/httpcomponents-core-5.0.x/httpcore5/apidocs/ + https://hc.apache.org/httpcomponents-core-5.0.x/httpcore5-h2/apidocs/ + ${project.url}/httpclient5/apidocs/ + + + + Apache HttpClient + org.apache.hc.client5.http* + + + Apache HttpClient Cache + org.apache.hc.client5.http.cache*:org.apache.hc.client5.http.impl.cache*:org.apache.hc.client5.http.schedule:org.apache.hc.client5.http.impl.schedule* + + + Apache HttpClient Fluent + org.apache.hc.client5.http.fluent* + + + Apache HttpClient Testing + org.apache.hc.client5.testing* + + + Apache HttpClient Windows features + org.apache.hc.client5.http.impl.win* + + + + + + + javadoc + aggregate + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + cmp-report + + + + + + + ${project.groupId} + ${project.artifactId} + ${api.comparison.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} + + + + + @org.apache.hc.core5.annotation.Internal + + true + + + + + maven-jxr-plugin + + + maven-surefire-report-plugin + + + + + \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom.sha1 b/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom.sha1 new file mode 100644 index 000000000..71483e65f --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom.sha1 @@ -0,0 +1 @@ +80f190a8b2d811f8413a4ed9c7f5cf3d42ab1060 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/_remote.repositories b/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/_remote.repositories new file mode 100644 index 000000000..dc754acf1 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:11 EDT 2024 +httpclient5-5.2.3.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom b/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom new file mode 100644 index 000000000..d680d7705 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom @@ -0,0 +1,183 @@ + + + 4.0.0 + + org.apache.httpcomponents.client5 + httpclient5-parent + 5.2.3 + + httpclient5 + Apache HttpClient + Apache HttpComponents Client + jar + + + org.apache.httpcomponents.client5.httpclient5 + + + + + org.apache.httpcomponents.core5 + httpcore5 + + + org.apache.httpcomponents.core5 + httpcore5-h2 + + + org.slf4j + slf4j-api + + + org.conscrypt + conscrypt-openjdk-uber + true + + + org.apache.httpcomponents.core5 + httpcore5-reactive + test + + + io.reactivex.rxjava2 + rxjava + test + + + org.apache.logging.log4j + log4j-slf4j-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + org.brotli + dec + true + + + org.junit.jupiter + junit-jupiter + test + + + org.hamcrest + hamcrest + test + + + org.mockito + mockito-core + test + + + + + + + src/main/resources + true + + **/*.properties + + + + + + com.googlecode.maven-download-plugin + download-maven-plugin + 1.6.8 + + + download-public-suffix-list + generate-resources + + wget + + + https://publicsuffix.org/list/effective_tld_names.dat + ${project.build.outputDirectory}/mozilla + public-suffix-list.txt + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + maven-project-info-reports-plugin + false + + + + index + dependencies + dependency-info + summary + + + + + + + + + + apache-release + + + + com.googlecode.maven-download-plugin + download-maven-plugin + + true + true + + + + + + + + \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom.sha1 b/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom.sha1 new file mode 100644 index 000000000..b59d38287 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom.sha1 @@ -0,0 +1 @@ +3ccbf26e1df288fed1d9885db42f6d2022606172 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/_remote.repositories b/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/_remote.repositories new file mode 100644 index 000000000..e19f6ddcd --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:12 EDT 2024 +httpcore5-h2-5.2.4.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom b/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom new file mode 100644 index 000000000..b44c91fc2 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom @@ -0,0 +1,102 @@ + + + 4.0.0 + + org.apache.httpcomponents.core5 + httpcore5-parent + 5.2.4 + + httpcore5-h2 + Apache HttpComponents Core HTTP/2 + Apache HttpComponents HTTP/2 Core Components + + + org.apache.httpcomponents.core5.httpcore5.h2 + + + + + org.apache.httpcomponents.core5 + httpcore5 + + + org.conscrypt + conscrypt-openjdk-uber + true + + + org.junit.jupiter + junit-jupiter + test + + + org.hamcrest + hamcrest + test + + + org.mockito + mockito-core + test + + + org.slf4j + slf4j-api + test + + + org.apache.logging.log4j + log4j-slf4j-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + + + + + maven-project-info-reports-plugin + false + + + + index + dependencies + dependency-info + summary + + + + + + + + \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom.sha1 b/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom.sha1 new file mode 100644 index 000000000..e0006f57d --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom.sha1 @@ -0,0 +1 @@ +61f988b1d97de455635f8075fa026f927133730d \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/_remote.repositories b/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/_remote.repositories new file mode 100644 index 000000000..336a25763 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:12 EDT 2024 +httpcore5-parent-5.2.4.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom b/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom new file mode 100644 index 000000000..cb82f29bd --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom @@ -0,0 +1,368 @@ + + + + org.apache.httpcomponents + httpcomponents-parent + 13 + + 4.0.0 + org.apache.httpcomponents.core5 + httpcore5-parent + Apache HttpComponents Core Parent + 5.2.4 + Apache HttpComponents Core is a library of components for building HTTP enabled services + https://hc.apache.org/httpcomponents-core-5.2.x/${project.version}/ + 2005 + pom + + + Jira + https://issues.apache.org/jira/browse/HTTPCORE + + + + scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-core.git + scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-core.git + https://github.com/apache/httpcomponents-core/tree/${project.scm.tag} + 5.2.4 + + + + + apache.website + Apache HttpComponents Website + scm:svn:https://svn.apache.org/repos/asf/httpcomponents/site/components/httpcomponents-core-5.2.x/LATEST/ + + + + + httpcore5 + httpcore5-h2 + httpcore5-reactive + httpcore5-testing + + + + + 1.8 + 1.8 + true + 2.5.2 + 5.9.3 + 2.2 + 5.0.0 + 4.11.0 + 1.7.36 + 2.19.0 + 2.2.21 + 3.1.6 + 5.2 + javax.net.ssl.SSLEngine,javax.net.ssl.SSLParameters,java.nio.ByteBuffer,java.nio.CharBuffer + + + + + + org.apache.httpcomponents.core5 + httpcore5 + ${project.version} + + + org.apache.httpcomponents.core5 + httpcore5-h2 + ${project.version} + + + org.apache.httpcomponents.core5 + httpcore5-reactive + ${project.version} + + + org.apache.httpcomponents.core5 + httpcore5-testing + ${project.version} + + + org.conscrypt + conscrypt-openjdk-uber + ${conscrypt.version} + + + org.junit + junit-bom + ${junit.version} + pom + import + + + org.hamcrest + hamcrest + ${hamcrest.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j.version} + + + org.apache.logging.log4j + log4j-core + ${log4j.version} + + + + + + clean verify + + + maven-jar-plugin + + + + ${Automatic-Module-Name} + ${project.url} + + + + + + maven-javadoc-plugin + + + ${project.url}/httpcore5/apidocs/ + ${project.url}/httpcore5-h2/apidocs/ + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + validate-main + validate + + hc-stylecheck/default.xml + hc-stylecheck/asl2.header + true + true + false + + ${basedir}/src/main + ${basedir}/src/test + + + + checkstyle + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + ${project.groupId} + ${project.artifactId} + ${api.comparison.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} + + + + true + true + + + METHOD_NEW_DEFAULT + true + true + + + + @org.apache.hc.core5.annotation.Internal + + + + + + verify + + cmp + + + + + + org.apache.rat + apache-rat-plugin + + + verify + + check + + + + + + **/.checkstyle + **/.pmd + **/*.iml + **/.externalToolBuilders/** + maven-eclipse.xml + src/docbkx/resources/** + src/test/resources/*.truststore + src/test/resources/*.p12 + **/.dockerignore + + bin/** + + + + + + + + + + + maven-project-info-reports-plugin + false + + + + index + dependency-info + dependency-management + issue-management + licenses + mailing-lists + scm + summary + + + + + + maven-javadoc-plugin + + true + + ${project.url}/httpcore5/apidocs/ + ${project.url}/httpcore5-h2/apidocs/ + + true + + + Apache HttpCore HTTP/1.1 + org.apache.hc.core5* + + + Apache HttpCore HTTP/2 + org.apache.hc.core5.http2* + + + Apache HttpCore Reactive Streams Bindings + org.apache.hc.core5.reactive* + + + Apache HttpCore Testing + org.apache.hc.core5.testing*:org.apache.hc.core5.benchmark* + + + + + + + javadoc + aggregate + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + cmp-report + + + + + + + ${project.groupId} + ${project.artifactId} + ${api.comparison.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} + + + + + @org.apache.hc.core5.annotation.Internal + + true + + + + + maven-jxr-plugin + + + maven-surefire-report-plugin + + + + + \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom.sha1 b/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom.sha1 new file mode 100644 index 000000000..3fb0f644c --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom.sha1 @@ -0,0 +1 @@ +2f8026ed7977c055d789acb6c7c402f533597d85 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/_remote.repositories b/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/_remote.repositories new file mode 100644 index 000000000..a5767c63a --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:12 EDT 2024 +httpcore5-5.2.4.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom b/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom new file mode 100644 index 000000000..1974ff076 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom @@ -0,0 +1,119 @@ + + + 4.0.0 + + org.apache.httpcomponents.core5 + httpcore5-parent + 5.2.4 + + httpcore5 + Apache HttpComponents Core HTTP/1.1 + 2005 + Apache HttpComponents HTTP/1.1 core components + + + org.apache.httpcomponents.core5.httpcore5 + + + + + org.junit.jupiter + junit-jupiter + test + + + org.hamcrest + hamcrest + test + + + org.mockito + mockito-core + test + + + org.slf4j + slf4j-api + test + + + org.apache.logging.log4j + log4j-slf4j-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + + + + + src/main/resources + true + + **/*.properties + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + maven-project-info-reports-plugin + false + + + + index + dependencies + dependency-info + summary + + + + + + + + \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom.sha1 b/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom.sha1 new file mode 100644 index 000000000..18bc78406 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom.sha1 @@ -0,0 +1 @@ +dea1344613c8df982593ebed215591037631ca96 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/_remote.repositories b/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/_remote.repositories new file mode 100644 index 000000000..7bb89550d --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:12 EDT 2024 +httpcomponents-parent-13.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom b/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom new file mode 100644 index 000000000..5715f1ce6 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom @@ -0,0 +1,917 @@ + + + + 4.0.0 + + org.apache + apache + 27 + + org.apache.httpcomponents + httpcomponents-parent + 13 + pom + Apache HttpComponents Parent + https://hc.apache.org/ + Apache components to build HTTP enabled services + 2005 + + + + + + Jira + + https://issues.apache.org/jira/secure/BrowseProjects.jspa?selectedCategory=10280 + + + + scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-parent.git + scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-parent.git + https://github.com/apache/httpcomponents-parent/tree/${project.scm.tag} + master + + + + + Michael Osipov + michaelo + michaelo -at- apache.org + + Committer + PMC Chair + PMC + + Europe/Berlin + + + Ortwin Glueck + oglueck + oglueck -at- apache.org + + + Emeritus PMC + + http://www.odi.ch/ + +1 + + + Oleg Kalnichevski + olegk + olegk -at- apache.org + + Committer + PMC + + +1 + + + Asankha C. Perera + asankha + asankha -at- apache.org + + Committer + PMC + + https://www.adroitlogic.com/ + +5.5 + + + Sebastian Bazley + sebb + sebb -at- apache.org + + Committer + PMC + + + + + Erik Abele + erikabele + erikabele -at- apache.org + + Committer + PMC + + http://www.codefaktor.de/ + +1 + + + Ant Elder + antelder + antelder -at- apache.org + + Committer + PMC + + + + + Paul Fremantle + pzf + pzf -at- apache.org + + Committer + PMC + + + + + Roland Weber + rolandw + rolandw -at- apache.org + + Emeritus PMC + + +1 + + + Sam Berlin + sberlin + sberlin -at- apache.org + + Committer + + -4 + + + Sean C. Sullivan + sullis + sullis -at- apache.org + + Committer + + -8 + + + Jonathan Moore + jonm + jonm -at- apache.org + + Committer + PMC + + -5 + + + Gary Gregory + ggregory + ggregory -at- apache.org + -8 + + Committer + PMC + + + + William Speirs + wspeirs + wspeirs at apache.org + + Committer + + -5 + + + Karl Wright + kwright + kwright -at- apache.org + + Committer + + -5 + + + Francois-Xavier Bonnet + fx + fx -at- apache.org + + Committer + + +1 + + + Ryan Schmitt + rschmitt + rschmitt@apache.org + + Committer + + America/Los_Angeles + + + + + + Julius Davies + juliusdavies -at- cucbc.com + + + Andrea Selva + selva.andre -at- gmail.com + + + Steffen Pingel + spingel -at- limewire.com + + + Quintin Beukes + quintin -at- last.za.net + + + Marc Beyerle + marc.beyerle -at- de.ibm.com + + + James Abley + james.abley -at- gmail.com + + + Michajlo Matijkiw + michajlo_matijkiw -at- comcast.com + + + Arturo Bernal + arturobernalg -at- gmail.com + + + + + HttpClient User List + mailto:httpclient-users-subscribe@hc.apache.org + mailto:httpclient-users-unsubscribe@hc.apache.org + mailto:httpclient-users@hc.apache.org + https://lists.apache.org/list.html?httpclient-users@hc.apache.org + + https://marc.info/?l=httpclient-users + https://httpclient-users.markmail.org/search/ + + + + HttpComponents Dev List + mailto:dev-subscribe@hc.apache.org + mailto:dev-unsubscribe@hc.apache.org + mailto:dev@hc.apache.org + https://lists.apache.org/list.html?dev@hc.apache.org + + https://marc.info/?l=httpclient-commons-dev + https://apache-hc-dev.markmail.org/search/ + + + + HttpComponents Commits List + mailto:commits-subscribe@hc.apache.org + mailto:commits-unsubscribe@hc.apache.org + https://lists.apache.org/list.html?commits@hc.apache.org + + https://marc.info/?l=httpcomponents-commits + https://hc-commits.markmail.org/search/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + https://org-apache-announce.markmail.org/search/ + + + + + + + apache.website + Apache HttpComponents Website + ${hc.site.url} + + + + + + + org.apache.rat + apache-rat-plugin + + + + + .pmd + + + + + maven-jar-plugin + + + + org.apache + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${maven.compiler.source} + ${maven.compiler.target} + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${hc.javadoc.version} + + + true + + + true + true + + + org.apache + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${hc.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${hc.project-info.version} + + + org.apache.maven.plugins + maven-resources-plugin + + + copy-resources + pre-site + + copy-resources + + + ${basedir}/target/site/examples + + + src/examples + false + + + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.12.1 + + + org.apache.maven.wagon + wagon-ssh + 3.4.1 + + + + + org.apache.maven.plugins + maven-source-plugin + + + + true + true + + + org.apache + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${hc.surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${hc.surefire.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${hc.japicmp.version} + + + + ${project.groupId} + ${project.artifactId} + ${api.comparison.version} + jar + + + + + ${project.build.directory}/${project.build.finalName}.${project.packaging} + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${hc.checkstyle.version} + + + org.apache.httpcomponents + hc-stylecheck + 2 + + + + + validate + validate + + hc-stylecheck/default.xml + hc-stylecheck/asl2.header + true + true + false + + + checkstyle + + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${hc.project-info.version} + + false + + + + team + issue-management + scm + mailing-lists + + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.22 + + + checkAPIcompatibility + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${hc.animal-sniffer.signature.version} + + ${hc.animal-sniffer.signature.ignores} + + + + + + + + release + + + + org.apache.maven.plugins + maven-gpg-plugin + + + + + + + test-deploy + + id::default::file:target/deploy + + + + + nodoclint + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -Xdoclint:none + + + + + + + + lax-doclint + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -Xdoclint:-missing + + + + + + + + + use-toolchains + + + ${user.home}/.m2/toolchains.xml + + + + + + org.apache.maven.plugins + maven-toolchains-plugin + 3.1.0 + + + + ${maven.compiler.source} + + + + + + + toolchain + + + + + + + + + owasp + + + + org.owasp + dependency-check-maven + 3.3.4 + + + + aggregate + + + + + + + + + + + + true + UTF-8 + UTF-8 + 2021-01-10T15:31:00Z + scp://people.apache.org/www/hc.apache.org/ + + + 0.16.0 + 3.4.1 + 3.0.0-M7 + 3.4.1 + 3.2.0 + 3.3.0 + 1.0 + + + + diff --git a/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom.sha1 b/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom.sha1 new file mode 100644 index 000000000..d7e6c6033 --- /dev/null +++ b/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom.sha1 @@ -0,0 +1 @@ +283fba4052e1a2b4162c0cce3a76473c89a50ab8 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/_remote.repositories new file mode 100644 index 000000000..6e2ec4db5 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:50 EDT 2024 +log4j-api-2.23.0.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom b/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom new file mode 100644 index 000000000..eebd3d894 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom @@ -0,0 +1,104 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j + 2.23.0 + ../log4j-parent + + org.apache.logging.log4j + log4j-api + 2.23.0 + Apache Log4j API + The Apache Log4j API + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + false + true + java.sql;static=true, + + java.management;static=true + org.apache.logging.log4j + + + + org.osgi + org.osgi.core + provided + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-source + generate-sources + + add-source + + + + ${project.build.directory}/log4j-api-java9 + + + + + + + maven-dependency-plugin + + + unpack-classes + prepare-package + + unpack + + + + + org.apache.logging.log4j + log4j-api-java9 + ${project.version} + zip + false + + + **/*.class + **/*.java + ${project.build.directory} + false + true + + + + + + + diff --git a/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom.sha1 new file mode 100644 index 000000000..8b94387a2 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom.sha1 @@ -0,0 +1 @@ +de661ee3bd37c422e5911cb5ade487bcb327a70d \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/_remote.repositories new file mode 100644 index 000000000..a8cc7e163 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:50 EDT 2024 +log4j-bom-2.13.2.pom>local-repo= diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom new file mode 100644 index 000000000..31a5a3886 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom @@ -0,0 +1,210 @@ + + + + + org.apache.logging + logging-parent + 1 + + 4.0.0 + Apache Log4j BOM + Apache Log4j Bill of Materials + org.apache.logging.log4j + log4j-bom + 2.13.2 + pom + + + + + org.apache.logging.log4j + log4j-api + ${project.version} + + + + org.apache.logging.log4j + log4j-core + ${project.version} + + + + org.apache.logging.log4j + log4j-1.2-api + ${project.version} + + + + org.apache.logging.log4j + log4j-jcl + ${project.version} + + + + org.apache.logging.log4j + log4j-flume-ng + ${project.version} + + + + org.apache.logging.log4j + log4j-taglib + ${project.version} + + + + org.apache.logging.log4j + log4j-jmx-gui + ${project.version} + + + + org.apache.logging.log4j + log4j-slf4j-impl + ${project.version} + + + + org.apache.logging.log4j + log4j-slf4j18-impl + ${project.version} + + + + org.apache.logging.log4j + log4j-to-slf4j + ${project.version} + + + + org.apache.logging.log4j + log4j-appserver + ${project.version} + + + + org.apache.logging.log4j + log4j-web + ${project.version} + + + + org.apache.logging.log4j + log4j-couchdb + ${project.version} + + + + org.apache.logging.log4j + log4j-mongodb2 + ${project.version} + + + + org.apache.logging.log4j + log4j-mongodb3 + ${project.version} + + + + org.apache.logging.log4j + log4j-cassandra + ${project.version} + + + + org.apache.logging.log4j + log4j-jpa + ${project.version} + + + + org.apache.logging.log4j + log4j-iostreams + ${project.version} + + + + org.apache.logging.log4j + log4j-jul + ${project.version} + + + + org.apache.logging.log4j + log4j-jpl + ${project.version} + + + + org.apache.logging.log4j + log4j-liquibase + ${project.version} + + + + org.apache.logging.log4j + log4j-docker + ${project.version} + + + + org.apache.logging.log4j + log4j-kubernetes + ${project.version} + + + + org.apache.logging.log4j + log4j-spring-cloud-config-client + ${project.version} + + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + true + true + + + + + org.apache.rat + apache-rat-plugin + 0.12 + + + org.apache.maven.plugins + maven-doap-plugin + 1.2 + + true + + + + + + + log4j-2.13.2-rc1 + + diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.lastUpdated b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.lastUpdated new file mode 100644 index 000000000..49dce96b7 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:50 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139890457 +http\://0.0.0.0/.error=Could not transfer artifact org.apache.logging.log4j\:log4j-bom\:pom\:2.13.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139890169 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139890179 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139890312 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139890412 diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.sha1 new file mode 100644 index 000000000..9f52f20a2 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.sha1 @@ -0,0 +1 @@ +d697a1279e7f28a0ac5741ec647f8b75ec5c3d63 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/_remote.repositories new file mode 100644 index 000000000..74b94aa9f --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:32 EDT 2024 +log4j-bom-2.21.1.pom>ohdsi= diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom new file mode 100644 index 000000000..714f264fa --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom @@ -0,0 +1,372 @@ + + + + 4.0.0 + + org.apache.logging + logging-parent + 10.1.1 + + + org.apache.logging.log4j + log4j-bom + 2.21.1 + pom + Apache Log4j BOM + Apache Log4j Bill-of-Materials + https://logging.apache.org/log4j/2.x/ + 1999 + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + rgoers + Ralph Goers + rgoers@apache.org + Nextiva + + PMC Member + + America/Phoenix + + + ggregory + Gary Gregory + ggregory@apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + + sdeboy + Scott Deboy + sdeboy@apache.org + + PMC Member + + America/Los_Angeles + + + rpopma + Remko Popma + rpopma@apache.org + + PMC Member + + Asia/Tokyo + + + nickwilliams + Nick Williams + nickwilliams@apache.org + + PMC Member + + America/Chicago + + + mattsicker + Matt Sicker + mattsicker@apache.org + Apple + + PMC Member + + America/Chicago + + + bbrouwer + Bruce Brouwer + bruce.brouwer@gmail.com + + Committer + + America/Detroit + + + rgupta + Raman Gupta + rgupta@apache.org + + Committer + + Asia/Kolkata + + + mikes + Mikael Ståldal + mikes@apache.org + Spotify + + PMC Member + + Europe/Stockholm + + + ckozak + Carter Kozak + ckozak@apache.org + https://github.com/carterkozak + + PMC Member + + America/New York + + + vy + Volkan Yazıcı + vy@apache.org + + PMC Chair + + Europe/Amsterdam + + + rgrabowski + Ron Grabowski + rgrabowski@apache.org + + PMC Member + + America/New_York + + + pkarwasz + Piotr P. Karwasz + pkarwasz@apache.org + + PMC Member + + Europe/Warsaw + + + grobmeier + Christian Grobmeier + grobmeier@apache.org + + PMC Member + + Europe/Berlin + + + + + log4j-user + log4j-user-subscribe@logging.apache.org + log4j-user-unsubscribe@logging.apache.org + log4j-user@logging.apache.org + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + + dev + dev-subscribe@logging.apache.org + dev-unsubscribe@logging.apache.org + dev@logging.apache.org + https://lists.apache.org/list.html?dev@logging.apache.org + + + security + security-subscribe@logging.apache.org + security-unsubscribe@logging.apache.org + security@logging.apache.org + https://lists.apache.org/list.html?security@logging.apache.org + + + + scm:git:https://github.com/apache/logging-log4j2.git + scm:git:https://github.com/apache/logging-log4j2.git + 2.x + https://github.com/apache/logging-log4j2 + + + GitHub Issues + https://github.com/apache/logging-log4j2/issues + + + GitHub Actions + https://github.com/apache/logging-log4j2/actions + + + + + org.apache.logging.log4j + log4j-1.2-api + 2.21.1 + + + org.apache.logging.log4j + log4j-api + 2.21.1 + + + org.apache.logging.log4j + log4j-api-test + 2.21.1 + + + org.apache.logging.log4j + log4j-appserver + 2.21.1 + + + org.apache.logging.log4j + log4j-cassandra + 2.21.1 + + + org.apache.logging.log4j + log4j-core + 2.21.1 + + + org.apache.logging.log4j + log4j-core-test + 2.21.1 + + + org.apache.logging.log4j + log4j-couchdb + 2.21.1 + + + org.apache.logging.log4j + log4j-docker + 2.21.1 + + + org.apache.logging.log4j + log4j-flume-ng + 2.21.1 + + + org.apache.logging.log4j + log4j-iostreams + 2.21.1 + + + org.apache.logging.log4j + log4j-jakarta-smtp + 2.21.1 + + + org.apache.logging.log4j + log4j-jakarta-web + 2.21.1 + + + org.apache.logging.log4j + log4j-jcl + 2.21.1 + + + org.apache.logging.log4j + log4j-jmx-gui + 2.21.1 + + + org.apache.logging.log4j + log4j-jpa + 2.21.1 + + + org.apache.logging.log4j + log4j-jpl + 2.21.1 + + + org.apache.logging.log4j + log4j-jul + 2.21.1 + + + org.apache.logging.log4j + log4j-kubernetes + 2.21.1 + + + org.apache.logging.log4j + log4j-layout-template-json + 2.21.1 + + + org.apache.logging.log4j + log4j-mongodb3 + 2.21.1 + + + org.apache.logging.log4j + log4j-mongodb4 + 2.21.1 + + + org.apache.logging.log4j + log4j-slf4j2-impl + 2.21.1 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.21.1 + + + org.apache.logging.log4j + log4j-spring-boot + 2.21.1 + + + org.apache.logging.log4j + log4j-spring-cloud-config-client + 2.21.1 + + + org.apache.logging.log4j + log4j-taglib + 2.21.1 + + + org.apache.logging.log4j + log4j-to-jul + 2.21.1 + + + org.apache.logging.log4j + log4j-to-slf4j + 2.21.1 + + + org.apache.logging.log4j + log4j-web + 2.21.1 + + + + diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.lastUpdated b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.lastUpdated new file mode 100644 index 000000000..44c4806bf --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:32 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.apache.logging.log4j\:log4j-bom\:pom\:2.21.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139812225 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139812329 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139812550 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139812725 diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.sha1 new file mode 100644 index 000000000..719206870 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.sha1 @@ -0,0 +1 @@ +4cc0e3782fb62b2c59b114276f15785e03b9c731 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/_remote.repositories new file mode 100644 index 000000000..479d784a0 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:50 EDT 2024 +log4j-bom-2.23.0.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom b/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom new file mode 100644 index 000000000..c10c61d5a --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom @@ -0,0 +1,367 @@ + + + + 4.0.0 + + org.apache.logging + logging-parent + 10.6.0 + + + org.apache.logging.log4j + log4j-bom + 2.23.0 + pom + Apache Log4j BOM + Apache Log4j Bill-of-Materials + https://logging.apache.org/log4j/2.x/ + 1999 + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + rgoers + Ralph Goers + rgoers@apache.org + Nextiva + + PMC Member + + America/Phoenix + + + ggregory + Gary Gregory + ggregory@apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + + sdeboy + Scott Deboy + sdeboy@apache.org + + PMC Member + + America/Los_Angeles + + + rpopma + Remko Popma + rpopma@apache.org + + PMC Member + + Asia/Tokyo + + + nickwilliams + Nick Williams + nickwilliams@apache.org + + PMC Member + + America/Chicago + + + mattsicker + Matt Sicker + mattsicker@apache.org + Apple + + PMC Member + + America/Chicago + + + bbrouwer + Bruce Brouwer + bruce.brouwer@gmail.com + + Committer + + America/Detroit + + + rgupta + Raman Gupta + rgupta@apache.org + + Committer + + Asia/Kolkata + + + mikes + Mikael Ståldal + mikes@apache.org + Spotify + + PMC Member + + Europe/Stockholm + + + ckozak + Carter Kozak + ckozak@apache.org + https://github.com/carterkozak + + PMC Member + + America/New York + + + vy + Volkan Yazıcı + vy@apache.org + + PMC Chair + + Europe/Amsterdam + + + rgrabowski + Ron Grabowski + rgrabowski@apache.org + + PMC Member + + America/New_York + + + pkarwasz + Piotr P. Karwasz + pkarwasz@apache.org + + PMC Member + + Europe/Warsaw + + + grobmeier + Christian Grobmeier + grobmeier@apache.org + + PMC Member + + Europe/Berlin + + + + + log4j-user + log4j-user-subscribe@logging.apache.org + log4j-user-unsubscribe@logging.apache.org + log4j-user@logging.apache.org + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + + dev + dev-subscribe@logging.apache.org + dev-unsubscribe@logging.apache.org + dev@logging.apache.org + https://lists.apache.org/list.html?dev@logging.apache.org + + + security + security-subscribe@logging.apache.org + security-unsubscribe@logging.apache.org + security@logging.apache.org + https://lists.apache.org/list.html?security@logging.apache.org + + + + scm:git:https://github.com/apache/logging-log4j2.git + scm:git:https://github.com/apache/logging-log4j2.git + 2.x + https://github.com/apache/logging-log4j2 + + + GitHub Issues + https://github.com/apache/logging-log4j2/issues + + + GitHub Actions + https://github.com/apache/logging-log4j2/actions + + + + + org.apache.logging.log4j + log4j-1.2-api + 2.23.0 + + + org.apache.logging.log4j + log4j-api + 2.23.0 + + + org.apache.logging.log4j + log4j-api-test + 2.23.0 + + + org.apache.logging.log4j + log4j-appserver + 2.23.0 + + + org.apache.logging.log4j + log4j-cassandra + 2.23.0 + + + org.apache.logging.log4j + log4j-core + 2.23.0 + + + org.apache.logging.log4j + log4j-core-test + 2.23.0 + + + org.apache.logging.log4j + log4j-couchdb + 2.23.0 + + + org.apache.logging.log4j + log4j-docker + 2.23.0 + + + org.apache.logging.log4j + log4j-flume-ng + 2.23.0 + + + org.apache.logging.log4j + log4j-iostreams + 2.23.0 + + + org.apache.logging.log4j + log4j-jakarta-smtp + 2.23.0 + + + org.apache.logging.log4j + log4j-jakarta-web + 2.23.0 + + + org.apache.logging.log4j + log4j-jcl + 2.23.0 + + + org.apache.logging.log4j + log4j-jpa + 2.23.0 + + + org.apache.logging.log4j + log4j-jpl + 2.23.0 + + + org.apache.logging.log4j + log4j-jul + 2.23.0 + + + org.apache.logging.log4j + log4j-kubernetes + 2.23.0 + + + org.apache.logging.log4j + log4j-layout-template-json + 2.23.0 + + + org.apache.logging.log4j + log4j-mongodb3 + 2.23.0 + + + org.apache.logging.log4j + log4j-mongodb4 + 2.23.0 + + + org.apache.logging.log4j + log4j-slf4j2-impl + 2.23.0 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.23.0 + + + org.apache.logging.log4j + log4j-spring-boot + 2.23.0 + + + org.apache.logging.log4j + log4j-spring-cloud-config-client + 2.23.0 + + + org.apache.logging.log4j + log4j-taglib + 2.23.0 + + + org.apache.logging.log4j + log4j-to-jul + 2.23.0 + + + org.apache.logging.log4j + log4j-to-slf4j + 2.23.0 + + + org.apache.logging.log4j + log4j-web + 2.23.0 + + + + diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom.sha1 new file mode 100644 index 000000000..0782b8474 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom.sha1 @@ -0,0 +1 @@ +34baf05741503d1136f56ef775ade773f0228b00 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/_remote.repositories new file mode 100644 index 000000000..711e4aa20 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +log4j-core-2.23.0.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom b/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom new file mode 100644 index 000000000..b6b556f30 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom @@ -0,0 +1,269 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j + 2.23.0 + ../log4j-parent + + org.apache.logging.log4j + log4j-core + 2.23.0 + Apache Log4j Core + The Apache Log4j Implementation + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + false + true + org.osgi.core;static=true;transitive=false, + + java.logging;static=true, + java.sql;static=true, + + com.fasterxml.jackson.annotation;transitive=false, + com.lmax.disruptor;transitive=false, + com.fasterxml.jackson.core;transitive=false, + com.fasterxml.jackson.databind;transitive=false, + com.fasterxml.jackson.dataformat.xml;transitive=false, + com.fasterxml.jackson.dataformat.yaml;transitive=false, + java.naming;transitive=false, + org.apache.commons.csv;transitive=false, + org.fusesource.jansi;transitive=false, + org.zeromq.jeromq;transitive=false, + + com.conversantmedia.disruptor;substitute="disruptor";transitive=false;static=true, + + kafka.clients;substitute="kafka-clients";transitive=false;static=true, + javax.jms.api;substitute="javax.jms-api";transitive=false;static=true, + javax.mail.api;substitute="javax.mail-api";transitive=false;static=true + com.conversantmedia.util.concurrent;resolution:=optional; + com.fasterxml.jackson.*;resolution:=optional, + com.lmax.disruptor.*;resolution:=optional, + javax.activation;resolution:=optional, + javax.jms;version="[1.1,3)";resolution:=optional, + javax.mail.*;version="[1.6,2)";resolution:=optional, + org.apache.commons.compress.*;resolution:=optional, + org.apache.commons.csv;resolution:=optional, + org.apache.kafka.*;resolution:=optional, + org.codehaus.stax2;resolution:=optional, + org.fusesource.jansi;resolution:=optional, + org.jctools.*;resolution:=optional, + org.zeromq;resolution:=optional, + javax.lang.model.*;resolution:=optional, + javax.tools;resolution:=optional, + + javax.sql;resolution:=optional, + java.util.logging;resolution:=optional, + + javax.naming;resolution:=optional + + + + javax.activation + javax.activation-api + provided + true + + + javax.jms + javax.jms-api + provided + true + + + javax.mail + javax.mail-api + provided + true + + + org.osgi + org.osgi.core + provided + + + org.apache.logging.log4j + log4j-api + + + org.apache.commons + commons-compress + true + + + org.apache.commons + commons-csv + true + + + com.conversantmedia + disruptor + true + + + com.lmax + disruptor + true + + + com.fasterxml.jackson.core + jackson-core + true + + + com.fasterxml.jackson.core + jackson-databind + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + true + + + org.fusesource.jansi + jansi + true + + + org.jctools + jctools-core + true + + + org.zeromq + jeromq + true + + + org.apache.kafka + kafka-clients + true + + + com.sun.mail + javax.mail + runtime + true + + + org.slf4j + slf4j-api + runtime + true + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-source + generate-sources + + add-source + + + + ${project.build.directory}/log4j-core-java9 + + + + + + + maven-compiler-plugin + + + default-compile + + + + com.google.errorprone + error_prone_core + ${error-prone.version} + + + + + + process-plugins + process-classes + + compile + + + + org.apache.logging.log4j.core.config.plugins.processor.PluginProcessor + + + only + + + + + + + + + maven-dependency-plugin + + + unpack-classes + prepare-package + + unpack + + + + + org.apache.logging.log4j + log4j-core-java9 + ${project.version} + zip + false + + + **/*.class + **/*.java + ${project.build.directory} + false + true + + + + + + + diff --git a/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom.sha1 new file mode 100644 index 000000000..5a17b7731 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom.sha1 @@ -0,0 +1 @@ +453b1774d533b7fd6d3d42f413c0162b533461fa \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/_remote.repositories new file mode 100644 index 000000000..6ea4a3e3c --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +log4j-jul-2.21.1.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom b/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom new file mode 100644 index 000000000..f8b21570a --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom @@ -0,0 +1,130 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j + 2.21.1 + ../log4j-parent + + org.apache.logging.log4j + log4j-jul + 2.21.1 + Apache Log4j JUL Adapter + The Apache Log4j implementation of java.util.logging + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + org.apache.logging.log4j.core.*;resolution:=optional + + + + org.apache.logging.log4j + log4j-api + + + org.apache.logging.log4j + log4j-core + true + + + org.apache.logging.log4j + log4j-core-test + test + + + org.assertj + assertj-core + test + + + com.lmax + disruptor + test + + + org.hamcrest + hamcrest + test + + + junit + junit + test + + + + + + maven-surefire-plugin + + + default-test + test + + test + + + + Log4jBridgeHandlerTest.java + + + + + bridgeHandler-test + test + + test + + + + Log4jBridgeHandlerTest.java + + + src/test/resources/logging-test.properties + log4j2-julBridge-test.xml + + + + + + + org.apache.maven.surefire + surefire-junit47 + ${surefire.version} + + + + + true + + -Xms256m -Xmx1024m + 1 + false + + + + + diff --git a/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom.sha1 new file mode 100644 index 000000000..8d24f37e2 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom.sha1 @@ -0,0 +1 @@ +bbdc4b64fe6745a40a401279c3d0e055e6f3b5b9 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/_remote.repositories new file mode 100644 index 000000000..f42553d5f --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +log4j-slf4j2-impl-2.21.1.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom b/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom new file mode 100644 index 000000000..b137f0181 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom @@ -0,0 +1,155 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j + 2.21.1 + ../log4j-parent + + org.apache.logging.log4j + log4j-slf4j2-impl + 2.21.1 + Apache Log4j SLF4J 2.0 Binding + The Apache Log4j SLF4J 2.0 API binding to Log4j 2 Core + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + /slf4j2-impl + 2.0.6 + SLF4J Documentation + org.slf4j;substitute="slf4j-api" + + + + org.osgi + org.osgi.core + provided + + + org.apache.logging.log4j + log4j-api + + + org.slf4j + slf4j-api + + + org.apache.logging.log4j + log4j-core + runtime + + + org.apache.logging.log4j + log4j-api-test + test + + + org.apache.logging.log4j + log4j-core-test + test + + + org.apache.logging.log4j + log4j-to-slf4j + test + + + org.slf4j + slf4j-ext + test + + + org.assertj + assertj-core + test + + + org.apache.commons + commons-csv + test + + + org.apache.commons + commons-lang3 + test + + + org.junit.jupiter + junit-jupiter-engine + test + + + org.junit.jupiter + junit-jupiter-params + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + maven-surefire-plugin + + + loop-test + test + + test + + + + **/OverflowTest.java + + junit-vintage + + + + default-test + test + + test + + + + **/*Test.java + + + **/OverflowTest.java + + + org.apache.logging.log4j:log4j-to-slf4j + + + + + + + + diff --git a/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom.sha1 new file mode 100644 index 000000000..d941a7c00 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom.sha1 @@ -0,0 +1 @@ +b64646ededa50599e6e63b51cf134c2a975d3bef \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/_remote.repositories new file mode 100644 index 000000000..d77edfc95 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:49 EDT 2024 +log4j-to-slf4j-2.21.1.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom b/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom new file mode 100644 index 000000000..5a2dfefb2 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom @@ -0,0 +1,122 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j + 2.21.1 + ../log4j-parent + + org.apache.logging.log4j + log4j-to-slf4j + 2.21.1 + Apache Log4j to SLF4J Adapter + The Apache Log4j binding between Log4j 2 API and SLF4J. + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + /log4j-to-slf4j + 3 + SLF4J Documentation + org.slf4j.*;version="${range;[==,${slf4j.support.bound})}" + + + + org.osgi + org.osgi.core + provided + + + org.apache.logging.log4j + log4j-api + + + org.slf4j + slf4j-api + + + org.assertj + assertj-core + test + + + org.hamcrest + hamcrest + test + + + org.junit.jupiter + junit-jupiter-engine + test + + + org.junit.jupiter + junit-jupiter-params + test + + + org.junit.vintage + junit-vintage-engine + test + + + ch.qos.logback + logback-classic + test + + + ch.qos.logback + logback-core + test + + + ch.qos.logback + logback-core + test-jar + test + + + + + + maven-enforcer-plugin + + + ban-logging-dependencies + + + + + ch.qos.logback:*:*:*:test + + + + + + + + + + diff --git a/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom.sha1 new file mode 100644 index 000000000..486672a14 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom.sha1 @@ -0,0 +1 @@ +3817e377d0657ce3ce833e57bacc5e8444aef40a \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.21.1/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j/2.21.1/_remote.repositories new file mode 100644 index 000000000..cd5b81e65 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j/2.21.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:49 EDT 2024 +log4j-2.21.1.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom b/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom new file mode 100644 index 000000000..18cc8cbcf --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom @@ -0,0 +1,957 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j-bom + 2.21.1 + + org.apache.logging.log4j + log4j + 2.21.1 + pom + Apache Log4j Parent + Apache Log4j Parent + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + 2.15.2 + 3.5.8 + 1.5.5-6 + 7.0.5 + 2.35.1 + 1.7.0 + 2.9.0 + 0.43.4 + 2.3.3 + 4.10.2 + 2.0.2 + 9.1.0 + 3.3.3 + 1.2.1 + 1 + 4.0.1 + 2.1.2 + 1.7.36 + 2.9.1 + 1.2 + 3.13.0 + 1.2.17 + 1.9 + 1.15 + 4.13.2 + 3.0.19 + 1.2.12 + 5.13.0 + 0.2.0 + 2.0.8 + 1.2.15 + 8.10.3 + 3.9.0 + 6.0.0 + 1.2.0 + 2.2.222 + 1.24.0 + 2.1.12 + 3.4.0 + 6.5.1 + 1.6.2 + 10.0.27 + 3.11.16 + 3.5.0 + 1.37 + 5.12.4 + 1.14.8 + 4.1.97.Final + 5.17.4 + 9.4.53.v20231009 + 32.1.2-jre + 2.0.2 + 2.2 + 3.1.2 + 2.15.0 + 2.7.15 + 2.0.1 + 4.5.14 + 3.1 + 2.2.4 + 9.5 + 3.24.2 + 2.4.0 + 3.4.4 + 4.13.5 + 2.0.1 + 2.11.0 + 5.3.29 + 2.0b6 + 0.9.0 + 2.38.0 + 2.7.2 + 2.2 + 4.11.0 + 4.7.1 + 1.11.0 + 1.9.1 + 2.7.11 + 4.4.16 + 2.4 + 4.13.5 + 5.10.0 + 1.10.0 + 18.3.12 + 0.5.3 + 3.11.5 + 4.2.0 + 2.1.2 + 3.13.0.v20180226-1711 + 1.5.0 + 1.6.0 + 4.0.1 + 1.7 + 2.11.1 + + + + + org.apache.logging.log4j + log4j-osgi-test + ${project.version} + + + org.apache.logging.log4j + log4j-layout-template-json-test + ${project.version} + + + org.ow2.asm + asm-bom + ${asm.version} + pom + import + + + org.codehaus.groovy + groovy-bom + ${groovy.version} + pom + import + + + com.fasterxml.jackson + jackson-bom + ${jackson-bom.version} + pom + import + + + jakarta.platform + jakarta.jakartaee-bom + ${jakartaee-bom.version} + pom + import + + + org.eclipse.jetty + jetty-bom + ${jetty.version} + pom + import + + + org.junit + junit-bom + ${junit-jupiter.version} + pom + import + + + io.fabric8 + kubernetes-client-bom + ${kubernetes-client.version} + pom + import + + + org.mockito + mockito-bom + ${mockito.version} + pom + import + + + io.netty + netty-bom + ${netty.version} + pom + import + + + org.springframework + spring-framework-bom + ${spring-framework.version} + pom + import + + + org.apache.logging.log4j + log4j-api-java9 + ${project.version} + zip + + + org.apache.logging.log4j + log4j-core-java9 + ${project.version} + zip + + + org.apache.activemq + activemq-broker + ${activemq.version} + + + org.eclipse.angus + angus-activation + ${angus-activation.version} + + + org.assertj + assertj-core + ${assertj.version} + + + org.awaitility + awaitility + ${awaitility.version} + + + org.apache-extras.beanshell + bsh + ${bsh.version} + + + org.mongodb + bson + ${mongodb.version} + + + net.bytebuddy + byte-buddy + ${byte-buddy.version} + + + org.apache.cassandra + cassandra-all + ${cassandra.version} + + + org.slf4j + jcl-over-slf4j + + + org.slf4j + log4j-over-slf4j + + + ch.qos.logback + logback-classic + + + ch.qos.logback + logback-core + + + + + com.datastax.cassandra + cassandra-driver-core + ${cassandra-driver.version} + + + org.apache.cassandra + cassandra-thrift + ${cassandra.version} + + + org.slf4j + jcl-over-slf4j + + + org.slf4j + log4j-over-slf4j + + + + + commons-codec + commons-codec + ${commons-codec.version} + + + org.apache.commons + commons-compress + ${commons-compress.version} + + + org.apache.commons + commons-csv + ${commons-csv.version} + + + org.apache.commons + commons-dbcp2 + ${commons-dbcp2.version} + + + commons-httpclient + commons-httpclient + ${commons-httpclient.version} + + + commons-io + commons-io + ${commons-io.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + commons-logging + commons-logging + ${commons-logging.version} + + + org.apache.commons + commons-pool2 + ${commons-pool2.version} + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + ${flapdoodle-embed.version} + + + de.flapdoodle.embed + de.flapdoodle.embed.process + ${flapdoodle-embed.version} + + + de.flapdoodle.reverse + de.flapdoodle.reverse + ${flapdoodle-reverse.version} + + + com.conversantmedia + disruptor + ${conversant.disruptor.version} + + + com.lmax + disruptor + ${disruptor.version} + + + co.elastic.clients + elasticsearch-java + ${elasticsearch-java.version} + + + org.zapodot + embedded-ldap-junit + ${embedded-ldap.version} + + + org.apache.flume.flume-ng-channels + flume-file-channel + ${flume.version} + + + junit + junit + + + log4j + log4j + + + org.mortbay.jetty + servlet-api + + + org.mortbay.jetty + servlet-api-2.5 + + + org.slf4j + slf4j-log4j12 + + + + + org.apache.flume + flume-ng-core + ${flume.version} + + + log4j + log4j + + + org.slf4j + slf4j-log4j12 + + + + + org.apache.flume + flume-ng-embedded-agent + ${flume.version} + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + log4j + log4j + + + org.slf4j + slf4j-log4j12 + + + + + org.apache.flume + flume-ng-node + ${flume.version} + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + log4j + log4j + + + org.slf4j + slf4j-log4j12 + + + + + org.apache.flume + flume-ng-sdk + ${flume.version} + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + + + com.google.guava + guava + ${guava.version} + + + com.google.guava + guava-testlib + ${guava.version} + + + com.h2database + h2 + ${h2.version} + + + org.apache.hadoop + hadoop-core + ${hadoop.version} + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + junit + junit + + + org.mortbay.jetty + servlet-api + + + + + org.hamcrest + hamcrest + ${hamcrest.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + org.hamcrest + hamcrest-library + ${hamcrest.version} + + + org.hdrhistogram + HdrHistogram + ${HdrHistogram.version} + + + org.hsqldb + hsqldb + ${hsqldb.version} + jdk8 + + + org.apache.httpcomponents + httpclient + ${httpclient.version} + + + org.apache.httpcomponents + httpcore + ${httpcore.version} + + + jakarta.activation + jakarta.activation-api + ${jakarta-activation.version} + + + org.eclipse.angus + jakarta.mail + ${angus-mail.version} + + + jakarta.mail + jakarta.mail-api + ${jakarta-mail.version} + + + org.fusesource.jansi + jansi + ${jansi.version} + + + com.google.code.java-allocation-instrumenter + java-allocation-instrumenter + ${java-allocation-instrumenter.version} + + + javax.activation + javax.activation-api + ${javax-activation.version} + + + javax.inject + javax.inject + ${javax-inject.version} + + + javax.jms + javax.jms-api + ${javax-jms.version} + + + com.sun.mail + javax.mail + ${javax-mail.version} + + + javax.mail + javax.mail-api + ${javax-mail.version} + + + javax.persistence + javax.persistence-api + ${javax-persistence.version} + + + javax.servlet.jsp + javax.servlet.jsp-api + ${javax-servlet-jsp.version} + + + javax.servlet + javax.servlet-api + ${javax-servlet.version} + + + com.sun + jconsole + ${jconsole.version} + + + org.jctools + jctools-core + ${jctools.version} + + + com.sleepycat + je + ${je.version} + + + org.zeromq + jeromq + ${jeromq.version} + + + org.jmdns + jmdns + ${jmdns.version} + + + org.openjdk.jmh + jmh-core + ${jmh.version} + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh.version} + + + net.java.dev.jna + jna + ${jna.version} + + + net.javacrumbs.json-unit + json-unit + ${json-unit.version} + + + junit + junit + ${junit.version} + + + org.junit-pioneer + junit-pioneer + ${junit-pioneer.version} + + + org.apache.kafka + kafka-clients + ${kafka.version} + + + org.lightcouch + lightcouch + ${lightcouch.version} + + + log4j + log4j + ${log4j.version} + + + co.elastic.logging + log4j2-ecs-layout + ${log4j2-ecs-layout.version} + + + ch.qos.logback + logback-classic + ${logback.version} + + + ch.qos.logback + logback-classic + ${logback.version} + test-jar + + + ch.qos.logback + logback-core + ${logback.version} + + + ch.qos.logback + logback-core + ${logback.version} + test-jar + + + org.apache.maven + maven-core + ${maven.version} + + + org.mongodb + mongodb-driver-core + ${mongodb.version} + + + org.mongodb + mongodb-driver-legacy + ${mongodb.version} + + + org.mongodb + mongodb-driver-sync + ${mongodb.version} + + + org.apache.felix + org.apache.felix.framework + ${felix.version} + + + org.eclipse.tycho + org.eclipse.osgi + ${org.eclipse.osgi.version} + + + org.eclipse.persistence + org.eclipse.persistence.jpa + ${org.eclipse.persistence.version} + + + org.eclipse.persistence + jakarta.persistence + + + + + org.osgi + org.osgi.core + ${osgi.api.version} + + + oro + oro + ${oro.version} + + + org.ops4j.pax.exam + pax-exam + ${pax-exam.version} + + + org.ops4j.pax.exam + pax-exam-container-native + ${pax-exam.version} + + + org.ops4j.pax.exam + pax-exam-junit4 + ${pax-exam.version} + + + org.ops4j.pax.exam + pax-exam-link-assembly + ${pax-exam.version} + + + org.ops4j.pax.exam + pax-exam-spi + ${pax-exam.version} + + + org.codehaus.plexus + plexus-utils + ${plexus-utils.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + slf4j-ext + ${slf4j.version} + + + org.springframework.boot + spring-boot + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-test + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-logging + + + + + uk.org.webcompere + system-stubs-core + ${system-stubs.version} + + + uk.org.webcompere + system-stubs-jupiter + ${system-stubs.version} + + + org.apache.tomcat + tomcat-juli + ${tomcat-juli.version} + + + org.apache.velocity + velocity + ${velocity.version} + + + com.github.tomakehurst + wiremock-jre8 + ${wiremock.version} + + + com.fasterxml.woodstox + woodstox-core + ${woodstox.version} + + + org.xmlunit + xmlunit-core + ${xmlunit.version} + + + org.xmlunit + xmlunit-matchers + ${xmlunit.version} + + + org.tukaani + xz + ${xz.version} + + + com.github.luben + zstd-jni + ${zstd.version} + + + + + + biz.aQute.bnd + biz.aQute.bnd.annotation + provided + + + org.osgi + osgi.annotation + provided + + + org.osgi + org.osgi.annotation.bundle + provided + + + com.github.spotbugs + spotbugs-annotations + provided + + + + + + + io.fabric8 + docker-maven-plugin + ${docker-maven-plugin.version} + + + org.ops4j.pax.exam + exam-maven-plugin + ${exam-maven-plugin.version} + + + net.sourceforge.maven-taglib + maven-taglib-plugin + ${maven-taglib-plugin.version} + + + + + + maven-enforcer-plugin + + + ban-logging-dependencies + + enforce + + + + + + org.slf4j:jcl-over-slf4j + org.springframework:spring-jcl + org.slf4j:log4j-over-slf4j + ch.qos.reload4j:reload4j + org.slf4j:slf4j-log4j12 + org.slf4j:slf4j-reload4j + org.ops4j.pax.logging:* + ch.qos.logback:* + + + + + + + + + + diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom.sha1 new file mode 100644 index 000000000..e443d8b67 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom.sha1 @@ -0,0 +1 @@ +f30e56720f3788e4499420e826e971b1c2c4b1d8 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.23.0/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j/2.23.0/_remote.repositories new file mode 100644 index 000000000..13970621e --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j/2.23.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:50 EDT 2024 +log4j-2.23.0.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom b/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom new file mode 100644 index 000000000..cee8d1e56 --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom @@ -0,0 +1,996 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j-bom + 2.23.0 + + org.apache.logging.log4j + log4j + 2.23.0 + pom + Apache Log4j Parent + Apache Log4j Parent + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + 2.16.1 + 3.5.9 + 1.5.5-11 + 7.0.5 + 2.35.1 + 1.7.0 + 2.11.0 + 15.4 + 0.43.4 + 2.3.3 + 4.11.1 + 2.0.3 + 9.1.0 + 3.3.4 + 1.2.1 + 1 + 4.0.1 + 2.1.2 + 2.0.9 + 2.9.1 + 1.3.0 + 3.14.0 + 1.2.17 + 1.9 + 1.16.1 + 4.13.2 + 3.0.20 + 1.3.14 + 5.14.0 + 0.2.0 + 2.0.8 + 1.2.15 + 8.12.1 + 3.9.6 + 6.0.0 + 1.2.0 + 2.2.224 + 1.25.0 + 2.1.12 + 3.6.1 + 1.6.2 + 10.0.27 + 3.11.16 + 3.5.1 + 1.37 + 5.12.4 + 1.14.9 + 4.1.107.Final + 6.0.1 + 9.4.54.v20240208 + 33.0.0-jre + 2.0.2 + 2.2 + 3.2.5 + 2.15.0 + 2.7.18 + 2.0.1 + 4.5.14 + 3.1 + 2.2.4 + 9.6 + 3.25.3 + 2.4.1 + 3.4.4 + 4.13.5 + 2.0.1 + 2.15.1 + 5.3.32 + 2.0b6 + 0.9.0 + 2.38.0 + 2.7.2 + 2.2 + 4.11.0 + 4.9.0 + 1.11.0 + 1.9.1 + 2.7.14 + 4.4.16 + 2.4 + 4.13.5 + 5.10.2 + 1.10.0 + 18.3.12 + 0.6.0 + 3.11.5 + 4.2.0 + 2.1.2 + 3.13.0.v20180226-1711 + 1.5.0 + 1.7.2 + 4.0.3 + 1.7 + 2.12.0 + + + + + org.apache.logging.log4j + log4j-osgi-test + ${project.version} + + + org.apache.logging.log4j + log4j-layout-template-json-test + ${project.version} + + + org.codehaus.groovy + groovy-bom + ${groovy.version} + pom + import + + + com.fasterxml.jackson + jackson-bom + ${jackson-bom.version} + pom + import + + + jakarta.platform + jakarta.jakartaee-bom + ${jakartaee-bom.version} + pom + import + + + org.eclipse.jetty + jetty-bom + ${jetty.version} + pom + import + + + org.junit + junit-bom + ${junit-jupiter.version} + pom + import + + + io.fabric8 + kubernetes-client-bom + ${kubernetes-client.version} + pom + import + + + org.mockito + mockito-bom + ${mockito.version} + pom + import + + + io.netty + netty-bom + ${netty.version} + pom + import + + + org.springframework + spring-framework-bom + ${spring-framework.version} + pom + import + + + org.apache.logging.log4j + log4j-api-java9 + ${project.version} + zip + + + org.apache.logging.log4j + log4j-core-java9 + ${project.version} + zip + + + org.apache.activemq + activemq-broker + ${activemq.version} + + + org.eclipse.angus + angus-activation + ${angus-activation.version} + + + org.assertj + assertj-core + ${assertj.version} + + + org.awaitility + awaitility + ${awaitility.version} + + + org.apache-extras.beanshell + bsh + ${bsh.version} + + + org.mongodb + bson + ${mongodb.version} + + + org.apache.cassandra + cassandra-all + ${cassandra.version} + + + org.slf4j + jcl-over-slf4j + + + org.slf4j + log4j-over-slf4j + + + ch.qos.logback + logback-classic + + + ch.qos.logback + logback-core + + + + + com.datastax.cassandra + cassandra-driver-core + ${cassandra-driver.version} + + + org.apache.cassandra + cassandra-thrift + ${cassandra.version} + + + org.slf4j + jcl-over-slf4j + + + org.slf4j + log4j-over-slf4j + + + + + commons-codec + commons-codec + ${commons-codec.version} + + + org.apache.commons + commons-compress + ${commons-compress.version} + + + org.apache.commons + commons-csv + ${commons-csv.version} + + + org.apache.commons + commons-dbcp2 + ${commons-dbcp2.version} + + + commons-httpclient + commons-httpclient + ${commons-httpclient.version} + + + commons-io + commons-io + ${commons-io.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + commons-logging + commons-logging + ${commons-logging.version} + + + org.apache.commons + commons-pool2 + ${commons-pool2.version} + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + ${flapdoodle-embed.version} + + + de.flapdoodle.embed + de.flapdoodle.embed.process + ${flapdoodle-embed.version} + + + de.flapdoodle.reverse + de.flapdoodle.reverse + ${flapdoodle-reverse.version} + + + com.conversantmedia + disruptor + ${conversant.disruptor.version} + + + com.lmax + disruptor + ${disruptor.version} + + + co.elastic.clients + elasticsearch-java + ${elasticsearch-java.version} + + + org.zapodot + embedded-ldap-junit + ${embedded-ldap.version} + + + org.apache.flume.flume-ng-channels + flume-file-channel + ${flume.version} + + + junit + junit + + + log4j + log4j + + + org.mortbay.jetty + servlet-api + + + org.mortbay.jetty + servlet-api-2.5 + + + org.slf4j + slf4j-log4j12 + + + + + org.apache.flume + flume-ng-core + ${flume.version} + + + log4j + log4j + + + org.slf4j + slf4j-log4j12 + + + + + org.apache.flume + flume-ng-embedded-agent + ${flume.version} + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + log4j + log4j + + + org.slf4j + slf4j-log4j12 + + + + + org.apache.flume + flume-ng-node + ${flume.version} + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + log4j + log4j + + + org.slf4j + slf4j-log4j12 + + + + + org.apache.flume + flume-ng-sdk + ${flume.version} + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + + + com.google.guava + guava + ${guava.version} + + + com.google.guava + guava-testlib + ${guava.version} + + + com.h2database + h2 + ${h2.version} + + + org.apache.hadoop + hadoop-core + ${hadoop.version} + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + junit + junit + + + org.mortbay.jetty + servlet-api + + + + + org.hamcrest + hamcrest + ${hamcrest.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + org.hamcrest + hamcrest-library + ${hamcrest.version} + + + org.hdrhistogram + HdrHistogram + ${HdrHistogram.version} + + + org.hsqldb + hsqldb + ${hsqldb.version} + jdk8 + + + org.apache.httpcomponents + httpclient + ${httpclient.version} + + + org.apache.httpcomponents + httpcore + ${httpcore.version} + + + jakarta.activation + jakarta.activation-api + ${jakarta-activation.version} + + + org.eclipse.angus + jakarta.mail + ${angus-mail.version} + + + jakarta.mail + jakarta.mail-api + ${jakarta-mail.version} + + + org.fusesource.jansi + jansi + ${jansi.version} + + + com.google.code.java-allocation-instrumenter + java-allocation-instrumenter + ${java-allocation-instrumenter.version} + + + javax.activation + javax.activation-api + ${javax-activation.version} + + + javax.inject + javax.inject + ${javax-inject.version} + + + javax.jms + javax.jms-api + ${javax-jms.version} + + + com.sun.mail + javax.mail + ${javax-mail.version} + + + javax.mail + javax.mail-api + ${javax-mail.version} + + + javax.persistence + javax.persistence-api + ${javax-persistence.version} + + + javax.servlet.jsp + javax.servlet.jsp-api + ${javax-servlet-jsp.version} + + + javax.servlet + javax.servlet-api + ${javax-servlet.version} + + + com.sun + jconsole + ${jconsole.version} + + + org.jctools + jctools-core + ${jctools.version} + + + com.sleepycat + je + ${je.version} + + + org.zeromq + jeromq + ${jeromq.version} + + + org.jmdns + jmdns + ${jmdns.version} + + + org.openjdk.jmh + jmh-core + ${jmh.version} + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh.version} + + + net.java.dev.jna + jna + ${jna.version} + + + net.javacrumbs.json-unit + json-unit + ${json-unit.version} + + + junit + junit + ${junit.version} + + + org.junit-pioneer + junit-pioneer + ${junit-pioneer.version} + + + org.apache.kafka + kafka-clients + ${kafka.version} + + + org.lightcouch + lightcouch + ${lightcouch.version} + + + log4j + log4j + ${log4j.version} + + + co.elastic.logging + log4j2-ecs-layout + ${log4j2-ecs-layout.version} + + + ch.qos.logback + logback-classic + ${logback.version} + + + ch.qos.logback + logback-classic + ${logback.version} + test-jar + + + ch.qos.logback + logback-core + ${logback.version} + + + ch.qos.logback + logback-core + ${logback.version} + test-jar + + + org.apache.maven + maven-core + ${maven.version} + + + org.apache.maven + maven-model + ${maven.version} + + + org.mongodb + mongodb-driver-core + ${mongodb.version} + + + org.mongodb + mongodb-driver-legacy + ${mongodb.version} + + + org.mongodb + mongodb-driver-sync + ${mongodb.version} + + + org.openjdk.nashorn + nashorn-core + ${nashorn.version} + + + org.apache.felix + org.apache.felix.framework + ${felix.version} + + + org.eclipse.tycho + org.eclipse.osgi + ${org.eclipse.osgi.version} + + + org.eclipse.persistence + org.eclipse.persistence.jpa + ${org.eclipse.persistence.version} + + + org.eclipse.persistence + jakarta.persistence + + + + + org.osgi + org.osgi.core + ${osgi.api.version} + + + oro + oro + ${oro.version} + + + org.ops4j.pax.exam + pax-exam + ${pax-exam.version} + + + org.ops4j.pax.exam + pax-exam-container-native + ${pax-exam.version} + + + org.ops4j.pax.exam + pax-exam-junit4 + ${pax-exam.version} + + + org.ops4j.pax.exam + pax-exam-link-assembly + ${pax-exam.version} + + + org.ops4j.pax.exam + pax-exam-spi + ${pax-exam.version} + + + org.codehaus.plexus + plexus-utils + ${plexus-utils.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.springframework.boot + spring-boot + ${spring-boot.version} + + + org.springframework.boot + spring-boot-autoconfigure + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-log4j2 + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-test + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-logging + + + + + org.springframework + spring-core + ${spring-framework.version} + + + org.springframework + spring-jcl + + + + + uk.org.webcompere + system-stubs-core + ${system-stubs.version} + + + uk.org.webcompere + system-stubs-jupiter + ${system-stubs.version} + + + org.apache.tomcat + tomcat-juli + ${tomcat-juli.version} + + + org.apache.velocity + velocity + ${velocity.version} + + + com.github.tomakehurst + wiremock-jre8 + ${wiremock.version} + + + org.xmlunit + xmlunit-core + ${xmlunit.version} + + + org.xmlunit + xmlunit-matchers + ${xmlunit.version} + + + org.tukaani + xz + ${xz.version} + + + com.github.luben + zstd-jni + ${zstd.version} + + + + + + biz.aQute.bnd + biz.aQute.bnd.annotation + provided + + + com.google.errorprone + error_prone_annotations + ${error-prone.version} + provided + + + org.osgi + osgi.annotation + provided + + + org.osgi + org.osgi.annotation.bundle + provided + + + com.github.spotbugs + spotbugs-annotations + provided + + + + + + + io.fabric8 + docker-maven-plugin + ${docker-maven-plugin.version} + + + org.ops4j.pax.exam + exam-maven-plugin + ${exam-maven-plugin.version} + + + net.sourceforge.maven-taglib + maven-taglib-plugin + ${maven-taglib-plugin.version} + + + + + + maven-clean-plugin + + + delete-module-descriptors + process-sources + + clean + + + true + + + ${project.build.outputDirectory} + + module-info.class + META-INF/versions/** + + + + + + + + + maven-enforcer-plugin + + + ban-logging-dependencies + + enforce + + + + + + org.slf4j:jcl-over-slf4j + org.springframework:spring-jcl + org.slf4j:log4j-over-slf4j + ch.qos.reload4j:reload4j + org.slf4j:slf4j-log4j12 + org.slf4j:slf4j-reload4j + org.ops4j.pax.logging:* + ch.qos.logback:* + + + + + + + + + + diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom.sha1 new file mode 100644 index 000000000..b983b6c3e --- /dev/null +++ b/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom.sha1 @@ -0,0 +1 @@ +360fc8cd321b6f8000c65a4f09e220d7511ab5da \ No newline at end of file diff --git a/code/arachne/org/apache/logging/logging-parent/1/_remote.repositories b/code/arachne/org/apache/logging/logging-parent/1/_remote.repositories new file mode 100644 index 000000000..86b0481a8 --- /dev/null +++ b/code/arachne/org/apache/logging/logging-parent/1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:50 EDT 2024 +logging-parent-1.pom>local-repo= diff --git a/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom b/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom new file mode 100644 index 000000000..3b8e311e3 --- /dev/null +++ b/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom @@ -0,0 +1,84 @@ + + + + + 4.0.0 + + + org.apache + apache + 18 + + + org.apache.logging + logging-parent + pom + 1 + + Apache Logging Services + + Parent pom for Apache Logging Services projects. + + https://logging.apache.org/ + 1999 + + + + 1.7 + 1.7 + + + + scm:git:git://git.apache.org/logging-parent.git + scm:git:https://git-wip-us.apache.org/repos/asf/logging-parent.git + https://git-wip-us.apache.org/repos/asf?p=logging-parent.git + logging-parent-1 + + + + + log4j-user + log4j-user-subscribe@logging.apache.org + log4j-user-unsubscribe@logging.apache.org + log4j-user@logging.apache.org + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + + log4j-dev + log4j-dev-subscribe@logging.apache.org + log4j-dev-unsubscribe@logging.apache.org + log4j-dev@logging.apache.org + https://lists.apache.org/list.html?log4j-dev@logging.apache.org + + + + + JIRA + https://issues.apache.org/jira/browse/LOG4J2 + + + + + diff --git a/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.lastUpdated b/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.lastUpdated new file mode 100644 index 000000000..18330e6bb --- /dev/null +++ b/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:50 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139890773 +http\://0.0.0.0/.error=Could not transfer artifact org.apache.logging\:logging-parent\:pom\:1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139890570 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139890578 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139890674 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139890728 diff --git a/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.sha1 b/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.sha1 new file mode 100644 index 000000000..8c39e9198 --- /dev/null +++ b/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.sha1 @@ -0,0 +1 @@ +11a10ffb21434b96c37f7ca22982d9e20ffb1ee7 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/logging-parent/10.1.1/_remote.repositories b/code/arachne/org/apache/logging/logging-parent/10.1.1/_remote.repositories new file mode 100644 index 000000000..e13a5dbc1 --- /dev/null +++ b/code/arachne/org/apache/logging/logging-parent/10.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:33 EDT 2024 +logging-parent-10.1.1.pom>ohdsi= diff --git a/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom b/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom new file mode 100644 index 000000000..d45ea94e8 --- /dev/null +++ b/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom @@ -0,0 +1,973 @@ + + + + 4.0.0 + + org.apache + apache + 30 + + org.apache.logging + logging-parent + 10.1.1 + pom + Apache Logging Parent + Parent project internally used in Maven-based projects of the Apache Logging Services + https://logging.apache.org/logging-parent + 1999 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + ggregory + Gary Gregory + ggregory@apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + + grobmeier + Christian Grobmeier + grobmeier@apache.org + + PMC Member + + Europe/Berlin + + + mattsicker + Matt Sicker + mattsicker@apache.org + Apple + + PMC Member + + America/Chicago + + + pkarwasz + Piotr P. Karwasz + pkarwasz@apache.org + + PMC Member + + Europe/Warsaw + + + vy + Volkan Yazıcı + vy@apache.org + + PMC Chair + + Europe/Amsterdam + + + + + log4j-user + log4j-user-subscribe@logging.apache.org + log4j-user-unsubscribe@logging.apache.org + log4j-user@logging.apache.org + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + + dev + dev-subscribe@logging.apache.org + dev-unsubscribe@logging.apache.org + dev@logging.apache.org + https://lists.apache.org/list.html?dev@logging.apache.org + + + + scm:git:git@github.com:apache/logging-parent.git + scm:git:git@github.com:apache/logging-parent.git + https://github.com/apache/logging-parent + + + GitHub Issues + https://github.com/apache/logging-parent/issues + + + GitHub Actions + https://github.com/apache/logging-parent/actions + + + 8 + 1.1.0 + 4.7.3 + 6.4.0 + + 1.12.0 + 1.5.0 + 8.1.0 + 2.2.4 + 2.0.0 + 0.4.0 + 6.4.1 + 2.22.0 + [17,18) + 1.4 + 8 + 3.4.0 + 3.4.1 + 6.7.0.202309050840-r + $[Bundle-SymbolicName] + 10.1.1 + 4.7.3.6 + 2.40.0 + 8 + false + + 1.0.1 + + + + + biz.aQute.bnd + biz.aQute.bnd.annotation + ${bnd.annotation.version} + + + com.github.spotbugs + spotbugs-annotations + ${spotbugs-annotations.version} + + + org.osgi + osgi.annotation + ${osgi.annotation.version} + + + org.osgi + org.osgi.annotation.bundle + ${osgi.annotation.bundle.version} + + + + + + + + org.asciidoctor + asciidoctor-maven-plugin + ${asciidoctor-maven-plugin.version} + + + maven-artifact-plugin + ${maven-artifact-plugin.version} + + + org.codehaus.mojo + flatten-maven-plugin + ${flatten-maven-plugin.version} + + ${project.build.directory} + + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs-maven-plugin.version} + + + org.codehaus.mojo + xml-maven-plugin + ${xml-maven-plugin.version} + + + com.diffplug.spotless + spotless-maven-plugin + ${spotless-maven-plugin.version} + + + com.github.genthaler + beanshell-maven-plugin + ${beanshell-maven-plugin.version} + + + org.apache.logging.log4j + log4j-changelog-maven-plugin + ${log4j-changelog-maven-plugin.version} + + + biz.aQute.bnd + bnd-maven-plugin + ${bnd-maven-plugin.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${build-helper-maven-plugin.version} + + + + + + org.codehaus.mojo + flatten-maven-plugin + ${flatten-maven-plugin.version} + + + flatten-revision + process-resources + + flatten + + + true + resolveCiFriendliesOnly + + + + flatten-bom + none + + flatten + + + bom + + remove + remove + remove + interpolate + + + + + + + maven-compiler-plugin + + ${maven.compiler.source} + ${maven.compiler.release} + ${maven.compiler.target} + ${project.build.sourceEncoding} + true + + -Xlint:all + -XDcompilePolicy=simple + -Xplugin:ErrorProne + + + + com.google.errorprone + error_prone_core + ${error-prone.version} + + + + + + maven-enforcer-plugin + + + enforce-upper-bound-deps + + enforce + + + + + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + + default-spotbugs + verify + + check + + + + + + + com.h3xstream.findsecbugs + findsecbugs-plugin + ${findsecbugs-plugin.version} + + + + + + org.apache.rat + apache-rat-plugin + + + verify + + check + + + + + true + + .java-version + .mvn/jvm.config + **/*.txt + src/changelog/**/*.xml + .github/ISSUE_TEMPLATE/*.md + .github/pull_request_template.md + + + + + com.diffplug.spotless + spotless-maven-plugin + + + default-spotless + verify + + check + + + + + + + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to you 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. + */ + + + + + + true + 4 + + + java,javax,jakarta,,\#java,\#javax,\#jakarta,\# + + + + + <?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one or more + ~ contributor license agreements. See the NOTICE file distributed with + ~ this work for additional information regarding copyright ownership. + ~ The ASF licenses this file to you 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 + + + false + true + + + + + + src/**/*.xml + + + src/changelog/**/*.xml + + + <?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one or more + ~ contributor license agreements. See the NOTICE file distributed with + ~ this work for additional information regarding copyright ownership. + ~ The ASF licenses this file to you 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. + --> + <(!DOCTYPE|\w) + + + + + + + src/**/*.properties + + + # +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to you 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. +# + (##|[^#]) + + + + + + + .asf.yaml + .github/**/*.yaml + .github/**/*.yml + src/**/*.yaml + src/**/*.yml + + + # +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to you 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. +# + (##|[^#]) + + + + + UNIX + + + + biz.aQute.bnd + bnd-maven-plugin + true + + + default-jar + + jar + + + # `Bundle-DocURL` uses `project.url`. + # This is set to `${project.parent.url}${project.artifactId}` through Maven's inheritance assembly[1]. + # This eventually produces incorrect values. + # Hence, we remove them from the produced descriptor. + # + # `Bundle-SCM` uses `project.scm.url` and suffers from the same inheritance problem `Bundle-DocURL` has. + # + # [1] https://maven.apache.org/ref/3.9.4/maven-model-builder/#inheritance-assembly + # Inheritance assembly can be disabled for certain properties, e.g., `project.url`. + # Though this would necessitate changes in the root `pom.xml`s of parented projects. + # + # `Bundle-Developers` is removed, since it is nothing but noise and occupies quite some real estate. + -removeheaders: Bundle-DocURL,Bundle-SCM,Bundle-Developers + + # Create OSGi and JPMS module names based on the `groupId` and `artifactId`. + # This almost agrees with `maven-bundle-plugin`, but replaces non-alphanumeric characters + # with full stops `.`. + Bundle-SymbolicName: $[project.groupId].$[subst;$[subst;$[project.artifactId];log4j-];[^A-Za-z0-9];.] + -jpms-module-info: $[bnd-module-name];access=0 + + # Prevents an execution error in multi-release jars: + -fixupmessages: "Classes found in the wrong directory";restrict:=error;is:=warning + + # 1. OSGI modules do not make sense in JPMS + # 2. BND has a problem detecting the name of multi-release JPMS modules + -jpms-module-info-options: org.osgi.core;static=true;transitive=false,\ + org.osgi.framework;static=true;transitive=false,\ + org.apache.logging.log4j;substitute="log4j-api",\ + org.apache.logging.log4j.core;substitute="log4j-core",\ + $[bnd-extra-module-options] + + # Import all packages by default: + Import-Package: $[bnd-extra-package-options],* + + # Allow each project to override the `Multi-Release` header: + Multi-Release: $[bnd-multi-release] + + # Add manifests and modules for each multi-release version: + -jpms-multi-release: $[bnd-multi-release] + + + + + + + + + changelog-validate + + + src/changelog + + + + + + org.codehaus.mojo + xml-maven-plugin + + + validate-changelog + + validate + + + true + + + src/changelog + **/*.xml + http://logging.apache.org/log4j/changelog + https://logging.apache.org/log4j/changelog-0.1.1.xsd + true + + + + + + + + + + + changelog-export + + + src/changelog + + + + + + org.apache.logging.log4j + log4j-changelog-maven-plugin + + + export-changelog + generate-sources + + export + + + src/site + + + + + + + + + + + + + + + changelog-release + + log4j-changelog:release generate-sources + + + org.apache.logging.log4j + log4j-changelog-maven-plugin + ${log4j-changelog-maven-plugin.version} + + ${project.version} + + + + + + + distribution + + enforcer:enforce bsh:run + + + maven-enforcer-plugin + + + + attachmentFilepathPattern + You must set an `attachmentFilepathPattern` property for the regex pattern matched against the full filepath for determining attachments to be included in the distribution! + + + attachmentCount + You must set an `attachmentCount` property for the number of attachments expected to be found! + + + true + + + + com.github.genthaler + beanshell-maven-plugin + + + org.eclipse.jgit + org.eclipse.jgit + ${org.eclipse.jgit.version} + + + + + + + + + + + deploy + + deploy + + + org.simplify4u.plugins + sign-maven-plugin + ${sign-maven-plugin.version} + + + + sign + + + + + + + + true + true + true + true + true + + + + release + + + + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + maven-enforcer-plugin + + + enforce-no-snapshots + + enforce + + + + + SNAPSHOT dependencies are not allowed for releases + true + + + A release cannot be a SNAPSHOT version + + + true + + + + + + + + + constants-tmpl-adoc + + + src/site/_constants.tmpl.adoc + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + validate + + parse-version + + + + + + maven-antrun-plugin + + + copy-constants-adoc + generate-sources + + run + + + + + + + + + + + + + maven-resources-plugin + + + filter-constants-adoc + process-sources + + copy-resources + + + src/site + + + ${project.build.directory}/constants-adoc + true + + + + + + + + + + + asciidoc + + + src/site + + + + + + org.asciidoctor + asciidoctor-maven-plugin + + + export-asciidoc-to-html + site + + process-asciidoc + + + src/site + ${project.build.directory}/site + true + + coderay + left + font + + + + + + + + + 2.2.4 + true + true + + + + diff --git a/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.lastUpdated b/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.lastUpdated new file mode 100644 index 000000000..46366f3e9 --- /dev/null +++ b/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:33 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.apache.logging\:logging-parent\:pom\:10.1.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139812732 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139812828 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139812956 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139813131 diff --git a/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.sha1 b/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.sha1 new file mode 100644 index 000000000..3c626a3a8 --- /dev/null +++ b/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.sha1 @@ -0,0 +1 @@ +514dc1058ea45db53db6cf7e32e7cbdbe6c66b22 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/logging-parent/10.6.0/_remote.repositories b/code/arachne/org/apache/logging/logging-parent/10.6.0/_remote.repositories new file mode 100644 index 000000000..223a955f0 --- /dev/null +++ b/code/arachne/org/apache/logging/logging-parent/10.6.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:50 EDT 2024 +logging-parent-10.6.0.pom>central= diff --git a/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom b/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom new file mode 100644 index 000000000..be8ddc825 --- /dev/null +++ b/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom @@ -0,0 +1,1337 @@ + + + + 4.0.0 + + org.apache + apache + 31 + + org.apache.logging + logging-parent + 10.6.0 + pom + Apache Logging Parent + Parent project internally used in Maven-based projects of the Apache Logging Services + https://logging.apache.org/logging-parent + 1999 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + ggregory + Gary Gregory + ggregory@apache.org + https://www.garygregory.com + The Apache Software Foundation + https://www.apache.org/ + + PMC Member + + America/New_York + + + grobmeier + Christian Grobmeier + grobmeier@apache.org + + PMC Member + + Europe/Berlin + + + mattsicker + Matt Sicker + mattsicker@apache.org + Apple + + PMC Member + + America/Chicago + + + pkarwasz + Piotr P. Karwasz + pkarwasz@apache.org + + PMC Member + + Europe/Warsaw + + + vy + Volkan Yazıcı + vy@apache.org + + PMC Chair + + Europe/Amsterdam + + + + + log4j-user + log4j-user-subscribe@logging.apache.org + log4j-user-unsubscribe@logging.apache.org + log4j-user@logging.apache.org + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + + dev + dev-subscribe@logging.apache.org + dev-unsubscribe@logging.apache.org + dev@logging.apache.org + https://lists.apache.org/list.html?dev@logging.apache.org + + + + scm:git:git@github.com:apache/logging-parent.git + scm:git:git@github.com:apache/logging-parent.git + https://github.com/apache/logging-parent + + + GitHub Issues + https://github.com/apache/logging-parent/issues + + + GitHub Actions + https://github.com/apache/logging-parent/actions + + + https://logging.apache.org/logging-parent/latest/#distribution + + + 8 + 0.16 + 1.1.0 + 4.8.3 + 7.0.0 + 7.0.0 + + 1.12.0 + $[bnd-module-name];access=0 + 1.5.0 + 8.1.0 + 2.2.4 + 0.3.0 + 2.0.0 + 1.1.2 + 0.7.0 + 7.0.0 + 2.24.1 + <xsl:stylesheet version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns="http://cyclonedx.org/schema/bom/1.5" + xmlns:xalan="http://xml.apache.org/xalan" + xmlns:cdx14="http://cyclonedx.org/schema/bom/1.4" + xmlns:cdx15="http://cyclonedx.org/schema/bom/1.5" + exclude-result-prefixes="xalan cdx14 cdx15"> + + <xsl:param name="sbom.serialNumber"/> + <xsl:param name="vdr.url"/> + <xsl:output method="xml" + version="1.0" + encoding="UTF-8" + indent="yes" + xalan:indent-amount="2" + xalan:line-separator="&#10;"/> + + <!-- Fixes the license formatting --> + <xsl:template match="/"> + <xsl:text>&#10;</xsl:text> + <xsl:apply-templates /> + </xsl:template> + + <!-- Standard copy template --> + <xsl:template match="@*|node()"> + <xsl:copy> + <xsl:apply-templates select="@*" /> + <xsl:apply-templates /> + </xsl:copy> + </xsl:template> + + <!-- Bump the SBOM schema version from `1.4` to `1.5` --> + <xsl:template match="cdx14:*"> + <xsl:element name="{local-name()}" namespace="http://cyclonedx.org/schema/bom/1.5"> + <xsl:apply-templates select="@*" /> + <xsl:apply-templates /> + </xsl:element> + </xsl:template> + + <!-- Add the SBOM `serialNumber` --> + <xsl:template match="cdx14:bom"> + <bom> + <xsl:attribute name="version"> + <xsl:value-of select="1"/> + </xsl:attribute> + <xsl:attribute name="serialNumber"> + <xsl:text>urn:uuid:</xsl:text> + <xsl:value-of select="$sbom.serialNumber"/> + </xsl:attribute> + <xsl:apply-templates /> + </bom> + </xsl:template> + + <!-- Add the link to the VDR --> + <xsl:template match="cdx14:externalReferences[starts-with(preceding-sibling::cdx14:group, 'org.apache.logging')]"> + <externalReferences> + <xsl:apply-templates/> + <reference> + <xsl:attribute name="type">vulnerability-assertion</xsl:attribute> + <url> + <xsl:value-of select="$vdr.url"/> + </url> + </reference> + </externalReferences> + </xsl:template> + +</xsl:stylesheet> + [17,18) + $[project.groupId].$[subst;$[subst;$[project.artifactId];log4j-];[^A-Za-z0-9];.] + 2.39.0 + 1.4 + https://logging.apache.org/cyclonedx/vdr.xml + 8 + + 3.5.0 + 3.5.0 + 3.8.1 + 6.8.0.202311291450-r + $[Bundle-SymbolicName] + 10.6.0 + 4.8.2.0 + 2.41.1 + 8 + false + 2024-01-11T10:10:48Z + + 2.7.10 + 1.0.1 + 2.4.0 + + + + + biz.aQute.bnd + biz.aQute.bnd.annotation + ${bnd.annotation.version} + + + com.github.spotbugs + spotbugs-annotations + ${spotbugs-annotations.version} + + + org.jspecify + jspecify + ${jspecify.version} + + + org.osgi + osgi.annotation + ${osgi.annotation.version} + + + org.osgi + org.osgi.annotation.bundle + ${osgi.annotation.bundle.version} + + + org.osgi + org.osgi.annotation.versioning + ${osgi.annotation.versioning.version} + + + + + + + + org.asciidoctor + asciidoctor-maven-plugin + ${asciidoctor-maven-plugin.version} + + + maven-artifact-plugin + ${maven-artifact-plugin.version} + + + org.codehaus.mojo + flatten-maven-plugin + ${flatten-maven-plugin.version} + + + org.simplify4u.plugins + sign-maven-plugin + ${sign-maven-plugin.version} + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs-maven-plugin.version} + + + org.codehaus.mojo + xml-maven-plugin + ${xml-maven-plugin.version} + + + com.diffplug.spotless + spotless-maven-plugin + ${spotless-maven-plugin.version} + + + com.github.genthaler + beanshell-maven-plugin + ${beanshell-maven-plugin.version} + + + org.apache.logging.log4j + log4j-changelog-maven-plugin + ${log4j-changelog-maven-plugin.version} + + + biz.aQute.bnd + bnd-baseline-maven-plugin + ${bnd-baseline-maven-plugin.version} + + + biz.aQute.bnd + bnd-maven-plugin + ${bnd-maven-plugin.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${build-helper-maven-plugin.version} + + + org.cyclonedx + cyclonedx-maven-plugin + ${cyclonedx-maven-plugin.version} + + + + + + org.codehaus.mojo + flatten-maven-plugin + + + flatten-revision + process-resources + + flatten + + + true + resolveCiFriendliesOnly + + + + clean-flattened-pom + clean + + clean + + + + flatten-bom + none + + flatten + + + bom + + remove + remove + remove + remove + interpolate + keep + + + + + + + maven-clean-plugin + + + delete-module-descriptor + process-resources + + clean + + + true + + + ${project.build.outputDirectory} + + module-info.class + + + + + + + + + maven-compiler-plugin + + + default-testCompile + + false + + + + + ${maven.compiler.source} + ${maven.compiler.release} + ${maven.compiler.target} + ${project.build.sourceEncoding} + true + + -Xlint:all + -XDcompilePolicy=simple + -Xplugin:ErrorProne + + + + com.google.errorprone + error_prone_core + ${error-prone.version} + + + + + + maven-failsafe-plugin + + false + + + + maven-surefire-plugin + + false + + + + org.cyclonedx + cyclonedx-maven-plugin + + + generate-sbom + package + + makeAggregateBom + + + xml + + + + + + com.github.genthaler + beanshell-maven-plugin + + + process-sbom + package + + run + + + + + + + + + commons-codec + commons-codec + 1.16.0 + + + xalan + serializer + 2.7.3 + + + xalan + xalan + 2.7.3 + + + + + maven-enforcer-plugin + + + enforce-upper-bound-deps + + enforce + + + + + + + + + ban-wildcard-imports + + enforce + + + + + Expand all wildcard imports + **.'*' + + + + + + + + de.skuzzle.enforcer + restrict-imports-enforcer-rule + ${restrict-imports-enforcer-rule.version} + + + + + com.github.spotbugs + spotbugs-maven-plugin + + + default-spotbugs + verify + + check + + + + + false + + + com.h3xstream.findsecbugs + findsecbugs-plugin + ${findsecbugs-plugin.version} + + + + + + org.apache.rat + apache-rat-plugin + + + verify + + check + + + + + true + + .java-version + .mvn/jvm.config + **/*.txt + src/changelog/**/*.xml + .github/ISSUE_TEMPLATE/*.md + .github/pull_request_template.md + + + + + com.diffplug.spotless + spotless-maven-plugin + + + default-spotless + verify + + check + + + + + + com.palantir.javaformat + palantir-java-format + ${palantir-java-format.version} + + + + + + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to you 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. + */ + + + ${palantir-java-format.version} + + + + + <?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one or more + ~ contributor license agreements. See the NOTICE file distributed with + ~ this work for additional information regarding copyright ownership. + ~ The ASF licenses this file to you 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 + + + false + true + + + + + + src/**/*.xml + + + src/changelog/**/*.xml + + + <?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one or more + ~ contributor license agreements. See the NOTICE file distributed with + ~ this work for additional information regarding copyright ownership. + ~ The ASF licenses this file to you 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. + --> + <(!DOCTYPE|\w) + + + + + + + src/**/*.properties + + + # +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to you 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. +# + (##|[^#]) + + + + + + + .asf.yaml + .github/**/*.yaml + .github/**/*.yml + src/**/*.yaml + src/**/*.yml + + + # +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to you 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. +# + (##|[^#]) + + + + + UNIX + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + validate + + parse-version + + + + + + biz.aQute.bnd + bnd-maven-plugin + + + generate-module-descriptors + + bnd-process + + + + + # `Bundle-DocURL` uses `project.url`. + # This is set to `${project.parent.url}${project.artifactId}` through Maven's inheritance assembly[1]. + # This eventually produces incorrect values. + # Hence, we remove them from the produced descriptor. + # + # `Bundle-SCM` uses `project.scm.url` and suffers from the same inheritance problem `Bundle-DocURL` has. + # + # [1] https://maven.apache.org/ref/3.9.4/maven-model-builder/#inheritance-assembly + # Inheritance assembly can be disabled for certain properties, e.g., `project.url`. + # Though this would necessitate changes in the root `pom.xml`s of parented projects. + # + # `Bundle-Developers` is removed, since it is nothing but noise and occupies quite some real estate. + -removeheaders: Bundle-DocURL,Bundle-SCM,Bundle-Developers + + # Create OSGi and JPMS module names based on the `groupId` and `artifactId`. + # This almost agrees with `maven-bundle-plugin`, but replaces non-alphanumeric characters + # with full stops `.`. + Bundle-SymbolicName: $[bnd-bundle-symbolicname] + -jpms-module-info: $[bnd-jpms-module-info] + + # Prevents an execution error in multi-release jars: + -fixupmessages.classes_in_wrong_dir: "Classes found in the wrong directory";restrict:=error;is:=warning + + # Convert API leakage warnings to errors + -fixupmessages.priv_refs: "private references";restrict:=warning;is:=error + + # 1. OSGI modules do not make sense in JPMS + # 2. BND has a problem detecting the name of multi-release JPMS modules + -jpms-module-info-options: \ + $[bnd-extra-module-options],\ + org.osgi.core;static=true;transitive=false,\ + org.osgi.framework;static=true;transitive=false,\ + org.apache.logging.log4j;substitute="log4j-api",\ + org.apache.logging.log4j.core;substitute="log4j-core" + + # Import all packages by default: + Import-Package: \ + $[bnd-extra-package-options],\ + * + + # Allow each project to override the `Multi-Release` header: + Multi-Release: $[bnd-multi-release] + +# Skipping to set `-jpms-multi-release` to `bnd-multi-release`. +# This would generate descriptors in `META-INF/versions/<version>` directories needed for MRJs. +# Though we decided to skip it due to following reasons: +# 1. It is only needed by a handful of files in `-java9`-suffixed modules of `logging-log4j2`. +# Hence, it is effectively insignificant. +# 2. `dependency:unpack` and `bnd:bnd-process` executions must be aligned correctly. +# See this issue for details: https://github.com/apache/logging-parent/issues/93 + # Adds certain `Implementation-*` and `Specification-*` entries to the generated `MANIFEST.MF`. + # Using these properties is known to be a bad practice: https://github.com/apache/logging-log4j2/issues/1923#issuecomment-1786818254 + # Users should use `META-INF/maven/<groupId>/<artifactId>/pom.properties` instead. + # Yet we support it due to backward compatibility reasons. + # The issue was reported to `bnd-maven-plugin` too: https://github.com/bndtools/bnd/issues/5855 + # We set these values to their Maven Archiver defaults: https://maven.apache.org/shared/maven-archiver/#class_manifest + Implementation-Title: ${project.name} + Implementation-Vendor: ${project.organization.name} + Implementation-Version: ${project.version} + Specification-Title: ${project.name} + Specification-Vendor: ${project.organization.name} + Specification-Version: ${parsedVersion.majorVersion}.${parsedVersion.minorVersion} + + # Extra configuration provided by the consumer: + ${bnd-extra-config} + + + + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + biz.aQute.bnd + bnd-baseline-maven-plugin + + + check-api-compat + + baseline + + + + + false + true + + + + + + + changelog-validate + + + src/changelog + + + + + + org.codehaus.mojo + xml-maven-plugin + + + validate-changelog + validate + + validate + + + + + src/changelog + + **/*.xml + + http://logging.apache.org/log4j/changelog + https://logging.apache.org/log4j/changelog-0.1.3.xsd + true + + + + + + + + + + + changelog-export + + + src/changelog + + + + + + org.apache.logging.log4j + log4j-changelog-maven-plugin + + + export-changelog + generate-sources + + export + + + src/site + + + + + + + + + + + + + + + changelog-release + + log4j-changelog:release@release-changelog generate-sources + + + org.apache.logging.log4j + log4j-changelog-maven-plugin + + + release-changelog + + ${project.version} + + + + + + + + + distribution + + enforcer:enforce@enforce-distribution-arguments bsh:run@create-distribution + + + maven-enforcer-plugin + + + enforce-distribution-arguments + + enforce + + + + + attachmentFilepathPattern + You must set an `attachmentFilepathPattern` property for the regex pattern matched against the full filepath for determining attachments to be included in the distribution! + + + attachmentCount + You must set an `attachmentCount` property for the number of attachments expected to be found! + + + true + + + + + + com.github.genthaler + beanshell-maven-plugin + + + create-distribution + + run + + + + + + + + + org.eclipse.jgit + org.eclipse.jgit + ${org.eclipse.jgit.version} + + + + + + + + deploy + + deploy + + + org.simplify4u.plugins + sign-maven-plugin + + + + sign + + + + + + + + true + true + true + true + true + + + + release + + + + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + maven-enforcer-plugin + + + enforce-no-snapshots + + enforce + + + + + SNAPSHOT dependencies are not allowed for releases + true + + + A release cannot be a SNAPSHOT version + + + true + + + + + + + + + constants-tmpl-adoc + + + src/site/_constants.tmpl.adoc + + + + + + maven-antrun-plugin + + + copy-constants-adoc + generate-sources + + run + + + + + + + + + + + + + maven-resources-plugin + + + filter-constants-adoc + process-sources + + copy-resources + + + src/site + + + ${project.build.directory}/constants-adoc + true + + + + + + + + + + + asciidoc + + + src/site + + + + + + org.asciidoctor + asciidoctor-maven-plugin + + + export-asciidoc-to-html + site + + process-asciidoc + + + src/site + ${project.build.directory}/site + true + + coderay + left + font + + + + + + + + + true + true + + + + spotbugs-exclude + + + ${maven.multiModuleProjectDirectory}/spotbugs-exclude.xml + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + ${maven.multiModuleProjectDirectory}/spotbugs-exclude.xml + + + + + + + diff --git a/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom.sha1 b/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom.sha1 new file mode 100644 index 000000000..d9c2e7b0f --- /dev/null +++ b/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom.sha1 @@ -0,0 +1 @@ +95a0a7ac9287a65d508ab8cc880cd90f9ef93047 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/maven-parent/33/_remote.repositories b/code/arachne/org/apache/maven/maven-parent/33/_remote.repositories new file mode 100644 index 000000000..dad023f66 --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/33/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:56 EDT 2024 +maven-parent-33.pom>ohdsi= diff --git a/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom b/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom new file mode 100644 index 000000000..b70190bc3 --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom @@ -0,0 +1,1388 @@ + + + + + + 4.0.0 + + + + org.apache + apache + 21 + ../asf/pom.xml + + + org.apache.maven + maven-parent + 33 + pom + + Apache Maven + Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. + https://maven.apache.org/ + 2002 + + + + + rfscholte + Robert Scholte + rfscholte@apache.org + + PMC Chair + + Europe/Amsterdam + + + aheritier + Arnaud Héritier + aheritier@apache.org + + PMC Member + + +1 + + + andham + Anders Hammar + andham@apache.org + + PMC Member + + +1 + + + baerrach + Barrie Treloar + baerrach@apache.org + + PMC Member + + Australia/Adelaide + + + bimargulies + Benson Margulies + bimargulies@apache.org + + PMC Member + + America/New_York + + + brianf + Brian Fox + brianf@apache.org + Sonatype + + PMC Member + + -5 + + + cstamas + Tamas Cservenak + cstamas@apache.org + +1 + + PMC Member + + + + dennisl + Dennis Lundberg + dennisl@apache.org + ASF + + PMC Member + + +1 + + + dkulp + Daniel Kulp + dkulp@apache.org + ASF + + PMC Member + + -5 + + + evenisse + Emmanuel Venisse + evenisse@apache.org + ASF + + PMC Member + + +1 + + + gboue + Guillaume Boué + gboue@apache.org + + PMC Member + + Europe/Paris + + + hboutemy + Hervé Boutemy + hboutemy@apache.org + ASF + + PMC Member + + Europe/Paris + + + ifedorenko + Igor Fedorenko + igor@ifedorenko.com + Sonatype + + PMC Member + + -5 + + + jvanzyl + Jason van Zyl + jason@maven.org + + PMC Member + + -5 + + + khmarbaise + Karl Heinz Marbaise + khmarbaise@apache.org + + PMC Member + + +1 + + + krosenvold + Kristian Rosenvold + krosenvold@apache.org + + PMC Member + + +1 + + + mkleint + Milos Kleint + + PMC Member + + + + olamy + Olivier Lamy + olamy@apache.org + + PMC Member + + Australia/Melbourne + + + michaelo + Michael Osipov + michaelo@apache.org + + PMC Member + + Europe/Berlin + + + rgoers + Ralph Goers + rgoers@apache.org + Intuit + -8 + + PMC Member + + + + snicoll + Stephane Nicoll + snicoll@apache.org + ASF + + PMC Member + + +1 + + + stephenc + Stephen Connolly + stephenc@apache.org + + PMC Member + + 0 + + + tibordigana + Tibor Digaňa + tibordigana@apache.org + + PMC Member + + Europe/Bratislava + + + vsiveton + Vincent Siveton + vsiveton@apache.org + ASF + + PMC Member + + -5 + + + wfay + Wayne Fay + wfay@apache.org + ASF + + PMC Member + + -6 + + + + + adangel + Andreas Dangel + adangel@apache.org + Europe/Berlin + + Committer + + + + bdemers + Brian Demers + Sonatype + bdemers@apache.org + -5 + + Committer + + + + bellingard + Fabrice Bellingard + + Committer + + + + bentmann + Benjamin Bentmann + bentmann@apache.org + Sonatype + + Committer + + +1 + + + chrisgwarp + Chris Graham + chrisgwarp@apache.org + + Committer + + Australia/Melbourne + + + dantran + Dan Tran + dantran@apache.org + -8 + + Committer + + + + dbradicich + Damian Bradicich + Sonatype + dbradicich@apache.org + -5 + + Committer + + + + brett + Brett Porter + brett@apache.org + ASF + + Committer + + +10 + + + dfabulich + Daniel Fabulich + dfabulich@apache.org + + Committer + + -8 + + + fgiust + Fabrizio Giustina + fgiust@apache.org + openmind + + Committer + + +1 + + + godin + Evgeny Mandrikov + SonarSource + godin@apache.org + + Committer + + +3 + + + handyande + Andrew Williams + handyande@apache.org + + Committer + + 0 + + + imod + Dominik Bartholdi + imod@apache.org + + Committer + + Europe/Zurich + + + jjensen + Jeff Jensen + + Committer + + + + ltheussl + Lukas Theussl + ltheussl@apache.org + + Committer + + +1 + + + markh + Mark Hobson + markh@apache.org + + Committer + + 0 + + + mauro + Mauro Talevi + + Committer + + + + mfriedenhagen + Mirko Friedenhagen + mfriedenhagen@apache.org + + Committer + + +1 + + + mmoser + Manfred Moser + mmoser@apache.org + + Committer + + -8 + + + nicolas + Nicolas de Loof + + Committer + + + + oching + Maria Odea B. Ching + + Committer + + + + pgier + Paul Gier + pgier@apache.org + Red Hat + + Committer + + -6 + + + ptahchiev + Petar Tahchiev + ptahchiev@apache.org + + Committer + + +2 + + + rafale + Raphaël Piéroni + rafale@apache.org + Dexem + + Committer + + +1 + + + schulte + Christian Schulte + schulte@apache.org + + Committer + + Europe/Berlin + + + simonetripodi + Simone Tripodi + simonetripodi@apache.org + + Committer + + +1 + + + sor + Christian Stein + sor@apache.org + + Committer + + Europe/Berlin + + + struberg + Mark Struberg + struberg@apache.org + + Committer + + + + tchemit + Tony Chemit + tchemit@apache.org + CodeLutin + + Committer + + Europe/Paris + + + vmassol + Vincent Massol + vmassol@apache.org + ASF + + Committer + + +1 + + + + + agudian + Andreas Gudian + agudian@apache.org + + Emeritus + + Europe/Berlin + + + aramirez + Allan Q. Ramirez + + Emeritus + + + + bayard + Henri Yandell + + Emeritus + + + + carlos + Carlos Sanchez + carlos@apache.org + ASF + + Emeritus + + +1 + + + chrisjs + Chris Stevenson + + Emeritus + + + + dblevins + David Blevins + + Emeritus + + + + dlr + Daniel Rall + + Emeritus + + + + epunzalan + Edwin Punzalan + epunzalan@apache.org + + Emeritus + + -8 + + + felipeal + Felipe Leme + + Emeritus + + + + jdcasey + John Casey + jdcasey@apache.org + ASF + + Emeritus + + -6 + + + jmcconnell + Jesse McConnell + jmcconnell@apache.org + ASF + + Emeritus + + -6 + + + joakime + Joakim Erdfelt + joakime@apache.org + ASF + + Emeritus + + -5 + + + jruiz + Johnny Ruiz III + jruiz@apache.org + + Emeritus + + + + jstrachan + James Strachan + + Emeritus + + + + jtolentino + Ernesto Tolentino Jr. + jtolentino@apache.org + ASF + + Emeritus + + +8 + + + kenney + Kenney Westerhof + kenney@apache.org + Neonics + + Emeritus + + +1 + + + mperham + Mike Perham + mperham@gmail.com + IBM + + Emeritus + + -6 + + + ogusakov + Oleg Gusakov + + Emeritus + + + + pschneider + Patrick Schneider + pschneider@gmail.com + + Emeritus + + -6 + + + rinku + Rahul Thakur + + Emeritus + + + + shinobu + Shinobu Kuwai + + Emeritus + + + + smorgrav + Torbjorn Eikli Smorgrav + + Emeritus + + + + trygvis + Trygve Laugstol + trygvis@apache.org + ASF + + Emeritus + + +1 + + + wsmoak + Wendy Smoak + wsmoak@apache.org + + Emeritus + + -7 + + + + + + Maven User List + mailto:users-subscribe@maven.apache.org + mailto:users-unsubscribe@maven.apache.org + mailto:users@maven.apache.org + https://lists.apache.org/list.html?users@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-users + https://www.mail-archive.com/users@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Users-f40176.html + https://maven-users.markmail.org/ + + + + Maven Developer List + mailto:dev-subscribe@maven.apache.org + mailto:dev-unsubscribe@maven.apache.org + mailto:dev@maven.apache.org + https://lists.apache.org/list.html?dev@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-dev + https://www.mail-archive.com/dev@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Developers-f142166.html + https://maven-dev.markmail.org/ + + + + Maven Issues List + mailto:issues-subscribe@maven.apache.org + mailto:issues-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?issues@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-issues/ + https://www.mail-archive.com/issues@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Issues-f219593.html + https://maven-issues.markmail.org/ + + + + Maven Commits List + mailto:commits-subscribe@maven.apache.org + mailto:commits-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?commits@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-commits/ + https://www.mail-archive.com/commits@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Commits-f277168.html + https://maven-commits.markmail.org/ + + + + Maven Announcements List + announce@maven.apache.org + mailto:announce-subscribe@maven.apache.org + mailto:announce-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?announce@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-announce/ + https://www.mail-archive.com/announce@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Announcements-f326045.html + https://maven-announce.markmail.org/ + + + + Maven Notifications List + mailto:notifications-subscribe@maven.apache.org + mailto:notifications-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?notifications@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-notifications/ + https://www.mail-archive.com/notifications@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Notifications-f301718.html + https://maven-notifications.markmail.org/ + + + + + + maven-plugins + maven-shared-components + maven-skins + doxia-tools + apache-resource-bundles + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + https://github.com/apache/maven-parent/tree/${project.scm.tag} + maven-parent-33 + + + + Jenkins + https://builds.apache.org/view/M-R/view/Maven/job/maven-box/ + + + mail + +
notifications@maven.apache.org
+
+
+
+
+ + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 6 + 1.${javaVersion} + 1.${javaVersion} + https://builds.apache.org/analysis/ + ${user.home}/maven-sites + ../.. + 3.5.2 + + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength + + + + + + org.codehaus.plexus + plexus-component-annotations + 1.7.1 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${mavenPluginToolsVersion} + provided + + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + ${mavenPluginToolsVersion} + + + org.codehaus.modello + modello-maven-plugin + 1.9.1 + + true + + + + + org.apache.maven.plugins + maven-site-plugin + + + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${maven.site.cache}/${maven.site.path} + apache.releases.https + true + + + + org.codehaus.plexus + plexus-component-metadata + 1.7.1 + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.0.0 + + config/maven_checks.xml + config/maven-header.txt + + + src/main/java + + + src/test/java + + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.8 + + ${maven.compiler.target} + + rulesets/maven.xml + + + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.apache.maven.plugins + maven-release-plugin + + apache-release + deploy + ${arguments} + true + + + + org.apache.maven.plugins + maven-toolchains-plugin + 1.1 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.5 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-changes-plugin + 2.12.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + true + true + en + + + org.codehaus.plexus + plexus-javadoc + 1.0 + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + true + + + + + org.apache.maven.plugins + maven-invoker-plugin + + + true + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.rat + apache-rat-plugin + [0.10,) + + check + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + checkstyle-check + + check + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-bytecode-version + + enforce + + + + + ${maven.compiler.target} + + + true + + + + ban-known-bad-maven-versions + + enforce + + + + + [3.0.4,) + Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin. + + + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.0-beta-9 + + + + + org.apache.rat + apache-rat-plugin + + + .repository/** + .maven/spy.log + dependency-reduced-pom.xml + .java-version + + + + + rat-check + + check + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + false + + + + + index + summary + dependency-info + modules + team + scm + issue-management + mailing-lists + dependency-management + dependencies + dependency-convergence + ci-management + plugin-management + plugins + distribution-management + + + + + + + + + + jdk-toolchain + + + + org.apache.maven.plugins + maven-toolchains-plugin + + + + ${maven.compiler.target} + + + + + + + toolchain + + + + + + + + + quality-checks + + + quality-checks + true + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + cpd-check + verify + + cpd-check + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + default + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + + + default + + jxr + test-jxr + + + + + + + org.codehaus.mojo + taglist-maven-plugin + + + + + FIXME Work + + + fixme + ignoreCase + + + @fixme + ignoreCase + + + + + Todo Work + + + todo + ignoreCase + + + @todo + ignoreCase + + + + + Deprecated Work + + + @deprecated + ignoreCase + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + default + + javadoc + test-javadoc + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + + org.codehaus.sonar-plugins + maven-report + 0.1 + + + + + +
diff --git a/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.lastUpdated b/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.lastUpdated new file mode 100644 index 000000000..88a8909f7 --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:56 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.apache.maven\:maven-parent\:pom\:33 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139835808 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139835816 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139836009 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139836202 diff --git a/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 b/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 new file mode 100644 index 000000000..18459ab69 --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 @@ -0,0 +1 @@ +9dd736089b07fa56da1259c87a825a097ba0278c \ No newline at end of file diff --git a/code/arachne/org/apache/maven/maven-parent/34/_remote.repositories b/code/arachne/org/apache/maven/maven-parent/34/_remote.repositories new file mode 100644 index 000000000..59781c884 --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/34/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:45 EDT 2024 +maven-parent-34.pom>central= diff --git a/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom b/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom new file mode 100644 index 000000000..1cd73a67a --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom @@ -0,0 +1,1362 @@ + + + + + + 4.0.0 + + + + org.apache + apache + 23 + ../asf/pom.xml + + + org.apache.maven + maven-parent + 34 + pom + + Apache Maven + Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. + https://maven.apache.org/ + 2002 + + + + + rfscholte + Robert Scholte + rfscholte@apache.org + + PMC Chair + + Europe/Amsterdam + + + aheritier + Arnaud Héritier + aheritier@apache.org + + PMC Member + + +1 + + + andham + Anders Hammar + andham@apache.org + + PMC Member + + +1 + + + baerrach + Barrie Treloar + baerrach@apache.org + + PMC Member + + Australia/Adelaide + + + bimargulies + Benson Margulies + bimargulies@apache.org + + PMC Member + + America/New_York + + + brianf + Brian Fox + brianf@apache.org + Sonatype + + PMC Member + + -5 + + + cstamas + Tamas Cservenak + cstamas@apache.org + +1 + + PMC Member + + + + dennisl + Dennis Lundberg + dennisl@apache.org + ASF + + PMC Member + + +1 + + + dkulp + Daniel Kulp + dkulp@apache.org + ASF + + PMC Member + + -5 + + + evenisse + Emmanuel Venisse + evenisse@apache.org + ASF + + PMC Member + + +1 + + + gboue + Guillaume Boué + gboue@apache.org + + PMC Member + + Europe/Paris + + + hboutemy + Hervé Boutemy + hboutemy@apache.org + ASF + + PMC Member + + Europe/Paris + + + ifedorenko + Igor Fedorenko + igor@ifedorenko.com + Sonatype + + PMC Member + + -5 + + + jvanzyl + Jason van Zyl + jason@maven.org + + PMC Member + + -5 + + + khmarbaise + Karl Heinz Marbaise + khmarbaise@apache.org + + PMC Member + + +1 + + + krosenvold + Kristian Rosenvold + krosenvold@apache.org + + PMC Member + + +1 + + + mkleint + Milos Kleint + + PMC Member + + + + olamy + Olivier Lamy + olamy@apache.org + + PMC Member + + Australia/Melbourne + + + michaelo + Michael Osipov + michaelo@apache.org + + PMC Member + + Europe/Berlin + + + rgoers + Ralph Goers + rgoers@apache.org + Intuit + -8 + + PMC Member + + + + stephenc + Stephen Connolly + stephenc@apache.org + + PMC Member + + 0 + + + struberg + Mark Struberg + struberg@apache.org + + PMC Member + + + + tibordigana + Tibor Digaňa + tibordigana@apache.org + + PMC Member + + Europe/Bratislava + + + vsiveton + Vincent Siveton + vsiveton@apache.org + ASF + + PMC Member + + -5 + + + wfay + Wayne Fay + wfay@apache.org + ASF + + PMC Member + + -6 + + + + + adangel + Andreas Dangel + adangel@apache.org + Europe/Berlin + + Committer + + + + bdemers + Brian Demers + Sonatype + bdemers@apache.org + -5 + + Committer + + + + bellingard + Fabrice Bellingard + + Committer + + + + bentmann + Benjamin Bentmann + bentmann@apache.org + Sonatype + + Committer + + +1 + + + chrisgwarp + Chris Graham + chrisgwarp@apache.org + + Committer + + Australia/Melbourne + + + dantran + Dan Tran + dantran@apache.org + -8 + + Committer + + + + dbradicich + Damian Bradicich + Sonatype + dbradicich@apache.org + -5 + + Committer + + + + brett + Brett Porter + brett@apache.org + ASF + + Committer + + +10 + + + dfabulich + Daniel Fabulich + dfabulich@apache.org + + Committer + + -8 + + + eolivelli + Enrico Olivelli + eolivelli@apache.org + Diennea + + Committer + + Europe/Rome + + + fgiust + Fabrizio Giustina + fgiust@apache.org + openmind + + Committer + + +1 + + + godin + Evgeny Mandrikov + SonarSource + godin@apache.org + + Committer + + +3 + + + handyande + Andrew Williams + handyande@apache.org + + Committer + + 0 + + + imod + Dominik Bartholdi + imod@apache.org + + Committer + + Europe/Zurich + + + jjensen + Jeff Jensen + + Committer + + + + ltheussl + Lukas Theussl + ltheussl@apache.org + + Committer + + +1 + + + markh + Mark Hobson + markh@apache.org + + Committer + + 0 + + + mauro + Mauro Talevi + + Committer + + + + mfriedenhagen + Mirko Friedenhagen + mfriedenhagen@apache.org + + Committer + + +1 + + + mmoser + Manfred Moser + mmoser@apache.org + + Committer + + -8 + + + nicolas + Nicolas de Loof + + Committer + + + + oching + Maria Odea B. Ching + + Committer + + + + pgier + Paul Gier + pgier@apache.org + Red Hat + + Committer + + -6 + + + ptahchiev + Petar Tahchiev + ptahchiev@apache.org + + Committer + + +2 + + + rafale + Raphaël Piéroni + rafale@apache.org + Dexem + + Committer + + +1 + + + schulte + Christian Schulte + schulte@apache.org + + Committer + + Europe/Berlin + + + snicoll + Stephane Nicoll + snicoll@apache.org + + Committer + + +1 + + + simonetripodi + Simone Tripodi + simonetripodi@apache.org + + Committer + + +1 + + + sor + Christian Stein + sor@apache.org + + Committer + + Europe/Berlin + + + tchemit + Tony Chemit + tchemit@apache.org + CodeLutin + + Committer + + Europe/Paris + + + vmassol + Vincent Massol + vmassol@apache.org + ASF + + Committer + + +1 + + + slachiewicz + Sylwester Lachiewicz + slachiewicz@apache.org + + Committer + + Europe/Warsaw + + + elharo + Elliotte Rusty Harold + elharo@apache.org + + Committer + + America/New_York + + + + + agudian + Andreas Gudian + agudian@apache.org + + Emeritus + + Europe/Berlin + + + aramirez + Allan Q. Ramirez + + Emeritus + + + + bayard + Henri Yandell + + Emeritus + + + + carlos + Carlos Sanchez + carlos@apache.org + ASF + + Emeritus + + +1 + + + chrisjs + Chris Stevenson + + Emeritus + + + + dblevins + David Blevins + + Emeritus + + + + dlr + Daniel Rall + + Emeritus + + + + epunzalan + Edwin Punzalan + epunzalan@apache.org + + Emeritus + + -8 + + + felipeal + Felipe Leme + + Emeritus + + + + jdcasey + John Casey + jdcasey@apache.org + ASF + + Emeritus + + -6 + + + jmcconnell + Jesse McConnell + jmcconnell@apache.org + ASF + + Emeritus + + -6 + + + joakime + Joakim Erdfelt + joakime@apache.org + ASF + + Emeritus + + -5 + + + jruiz + Johnny Ruiz III + jruiz@apache.org + + Emeritus + + + + jstrachan + James Strachan + + Emeritus + + + + jtolentino + Ernesto Tolentino Jr. + jtolentino@apache.org + ASF + + Emeritus + + +8 + + + kenney + Kenney Westerhof + kenney@apache.org + Neonics + + Emeritus + + +1 + + + mperham + Mike Perham + mperham@gmail.com + IBM + + Emeritus + + -6 + + + ogusakov + Oleg Gusakov + + Emeritus + + + + pschneider + Patrick Schneider + pschneider@gmail.com + + Emeritus + + -6 + + + rinku + Rahul Thakur + + Emeritus + + + + shinobu + Shinobu Kuwai + + Emeritus + + + + smorgrav + Torbjorn Eikli Smorgrav + + Emeritus + + + + trygvis + Trygve Laugstol + trygvis@apache.org + ASF + + Emeritus + + +1 + + + wsmoak + Wendy Smoak + wsmoak@apache.org + + Emeritus + + -7 + + + + + + Maven User List + mailto:users-subscribe@maven.apache.org + mailto:users-unsubscribe@maven.apache.org + mailto:users@maven.apache.org + https://lists.apache.org/list.html?users@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-users + https://www.mail-archive.com/users@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Users-f40176.html + https://maven-users.markmail.org/ + + + + Maven Developer List + mailto:dev-subscribe@maven.apache.org + mailto:dev-unsubscribe@maven.apache.org + mailto:dev@maven.apache.org + https://lists.apache.org/list.html?dev@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-dev + https://www.mail-archive.com/dev@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Developers-f142166.html + https://maven-dev.markmail.org/ + + + + Maven Issues List + mailto:issues-subscribe@maven.apache.org + mailto:issues-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?issues@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-issues/ + https://www.mail-archive.com/issues@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Issues-f219593.html + https://maven-issues.markmail.org/ + + + + Maven Commits List + mailto:commits-subscribe@maven.apache.org + mailto:commits-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?commits@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-commits/ + https://www.mail-archive.com/commits@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Commits-f277168.html + https://maven-commits.markmail.org/ + + + + Maven Announcements List + announce@maven.apache.org + mailto:announce-subscribe@maven.apache.org + mailto:announce-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?announce@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-announce/ + https://www.mail-archive.com/announce@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Announcements-f326045.html + https://maven-announce.markmail.org/ + + + + Maven Notifications List + mailto:notifications-subscribe@maven.apache.org + mailto:notifications-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?notifications@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-notifications/ + https://www.mail-archive.com/notifications@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Notifications-f301718.html + https://maven-notifications.markmail.org/ + + + + + + maven-extensions + maven-plugins + maven-shared-components + maven-skins + doxia-tools + apache-resource-bundles + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + https://github.com/apache/maven-parent/tree/${project.scm.tag} + maven-parent-34 + + + + Jenkins + https://builds.apache.org/view/M-R/view/Maven/job/maven-box/ + + + mail + +
notifications@maven.apache.org
+
+
+
+
+ + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 7 + 1.${javaVersion} + 1.${javaVersion} + https://builds.apache.org/analysis/ + ${user.home}/maven-sites + ../.. + 3.5.2 + + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength + 2020-01-26T09:03:59Z + + + + + + org.codehaus.plexus + plexus-component-annotations + 2.0.0 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${mavenPluginToolsVersion} + provided + + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + ${mavenPluginToolsVersion} + + + org.codehaus.modello + modello-maven-plugin + 1.9.1 + + true + + + + + org.apache.maven.plugins + maven-site-plugin + + + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${maven.site.cache}/${maven.site.path} + apache.releases.https + true + + + + org.codehaus.plexus + plexus-component-metadata + 2.0.0 + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.0.0 + + config/maven_checks.xml + config/maven-header.txt + + + src/main/java + + + src/test/java + + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.8 + + ${maven.compiler.target} + + rulesets/maven.xml + + + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.apache.maven.plugins + maven-release-plugin + + apache-release + deploy + ${arguments} + true + + + + org.apache.maven.plugins + maven-toolchains-plugin + 1.1 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.5 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-changes-plugin + 2.12.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + true + true + en + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + true + + + + + org.apache.maven.plugins + maven-invoker-plugin + + + true + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + checkstyle-check + + check + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-bytecode-version + + enforce + + + + + ${maven.compiler.target} + + + true + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.2 + + + + + org.apache.rat + apache-rat-plugin + + + .repository/** + .maven/spy.log + dependency-reduced-pom.xml + .asf.yaml + .java-version + + + + + rat-check + + check + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + false + + + + + index + summary + dependency-info + modules + team + scm + issue-management + mailing-lists + dependency-management + dependencies + dependency-convergence + ci-management + plugin-management + plugins + distribution-management + + + + + + + + + + jdk-toolchain + + + + org.apache.maven.plugins + maven-toolchains-plugin + + + + ${maven.compiler.target} + + + + + + + toolchain + + + + + + + + + quality-checks + + + quality-checks + true + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + cpd-check + verify + + cpd-check + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + default + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + + + default + + jxr + test-jxr + + + + + + + org.codehaus.mojo + taglist-maven-plugin + + + + + FIXME Work + + + fixme + ignoreCase + + + @fixme + ignoreCase + + + + + Todo Work + + + todo + ignoreCase + + + @todo + ignoreCase + + + + + Deprecated Work + + + @deprecated + ignoreCase + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + default + + javadoc + test-javadoc + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + + + + +
diff --git a/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom.sha1 b/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom.sha1 new file mode 100644 index 000000000..e0694b04c --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom.sha1 @@ -0,0 +1 @@ +d03d96b2f4ee06300faa9731b0fa71feeec5a8ef \ No newline at end of file diff --git a/code/arachne/org/apache/maven/maven-parent/35/_remote.repositories b/code/arachne/org/apache/maven/maven-parent/35/_remote.repositories new file mode 100644 index 000000000..1891345b5 --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/35/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:44 EDT 2024 +maven-parent-35.pom>central= diff --git a/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom b/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom new file mode 100644 index 000000000..6fb6ba027 --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom @@ -0,0 +1,1446 @@ + + + + + + 4.0.0 + + + + org.apache + apache + 25 + ../asf/pom.xml + + + org.apache.maven + maven-parent + 35 + pom + + Apache Maven + Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. + https://maven.apache.org/ + 2002 + + + + + rfscholte + Robert Scholte + rfscholte@apache.org + + PMC Chair + + Europe/Amsterdam + + @rfscholte + + + + aheritier + Arnaud Héritier + aheritier@apache.org + + PMC Member + + +1 + + + andham + Anders Hammar + andham@apache.org + + PMC Member + + +1 + + + baerrach + Barrie Treloar + baerrach@apache.org + + PMC Member + + Australia/Adelaide + + + bimargulies + Benson Margulies + bimargulies@apache.org + + PMC Member + + America/New_York + + + brianf + Brian Fox + brianf@apache.org + Sonatype + + PMC Member + + -5 + + + cstamas + Tamas Cservenak + cstamas@apache.org + +1 + + PMC Member + + + + dennisl + Dennis Lundberg + dennisl@apache.org + ASF + + PMC Member + + +1 + + + dkulp + Daniel Kulp + dkulp@apache.org + ASF + + PMC Member + + -5 + + + evenisse + Emmanuel Venisse + evenisse@apache.org + ASF + + PMC Member + + +1 + + + gboue + Guillaume Boué + gboue@apache.org + + PMC Member + + Europe/Paris + + + hboutemy + Hervé Boutemy + hboutemy@apache.org + ASF + + PMC Member + + Europe/Paris + + + ifedorenko + Igor Fedorenko + igor@ifedorenko.com + Sonatype + + PMC Member + + -5 + + + jvanzyl + Jason van Zyl + jason@maven.org + + PMC Member + + -5 + + + khmarbaise + Karl Heinz Marbaise + khmarbaise@apache.org + + PMC Member + + +1 + + @khmarbaise + + + + krosenvold + Kristian Rosenvold + krosenvold@apache.org + + PMC Member + + +1 + + + mkleint + Milos Kleint + + PMC Member + + + + olamy + Olivier Lamy + olamy@apache.org + + PMC Member + + Australia/Brisbane + + + michaelo + Michael Osipov + michaelo@apache.org + + PMC Member + + Europe/Berlin + + + rgoers + Ralph Goers + rgoers@apache.org + Intuit + -8 + + PMC Member + + + + stephenc + Stephen Connolly + stephenc@apache.org + + PMC Member + + 0 + + + struberg + Mark Struberg + struberg@apache.org + + PMC Member + + + + tibordigana + Tibor Digaňa + tibordigana@apache.org + + PMC Member + + Europe/Bratislava + + + vsiveton + Vincent Siveton + vsiveton@apache.org + ASF + + PMC Member + + -5 + + + wfay + Wayne Fay + wfay@apache.org + ASF + + PMC Member + + -6 + + + + + adangel + Andreas Dangel + adangel@apache.org + Europe/Berlin + + Committer + + + + bdemers + Brian Demers + Sonatype + bdemers@apache.org + -5 + + Committer + + + + bellingard + Fabrice Bellingard + + Committer + + + + bentmann + Benjamin Bentmann + bentmann@apache.org + Sonatype + + Committer + + +1 + + + chrisgwarp + Chris Graham + chrisgwarp@apache.org + + Committer + + Australia/Melbourne + + + dantran + Dan Tran + dantran@apache.org + -8 + + Committer + + + + dbradicich + Damian Bradicich + Sonatype + dbradicich@apache.org + -5 + + Committer + + + + brett + Brett Porter + brett@apache.org + ASF + + Committer + + +10 + + + dfabulich + Daniel Fabulich + dfabulich@apache.org + + Committer + + -8 + + + eolivelli + Enrico Olivelli + eolivelli@apache.org + Diennea + + Committer + + Europe/Rome + + + fgiust + Fabrizio Giustina + fgiust@apache.org + openmind + + Committer + + +1 + + + gnodet + Guillaume Nodet + gnodet@apache.org + Red Hat + + Committer + + Europe/Paris + + + godin + Evgeny Mandrikov + SonarSource + godin@apache.org + + Committer + + +3 + + + handyande + Andrew Williams + handyande@apache.org + + Committer + + 0 + + + imod + Dominik Bartholdi + imod@apache.org + + Committer + + Europe/Zurich + + + jjensen + Jeff Jensen + + Committer + + + + ltheussl + Lukas Theussl + ltheussl@apache.org + + Committer + + +1 + + + markh + Mark Hobson + markh@apache.org + + Committer + + 0 + + + martinkanters + Martin Kanters + martinkanters@apache.org + JPoint + + Committer + + Europe/Amsterdam + + + mthmulders + Maarten Mulders + mthmulders@apache.org + Info Support + + Committer + + Europe/Amsterdam + + + mauro + Mauro Talevi + + Committer + + + + mfriedenhagen + Mirko Friedenhagen + mfriedenhagen@apache.org + + Committer + + +1 + + + mmoser + Manfred Moser + mmoser@apache.org + + Committer + + -8 + + + nicolas + Nicolas de Loof + + Committer + + + + oching + Maria Odea B. Ching + + Committer + + + + pgier + Paul Gier + pgier@apache.org + Red Hat + + Committer + + -6 + + + ptahchiev + Petar Tahchiev + ptahchiev@apache.org + + Committer + + +2 + + + rafale + Raphaël Piéroni + rafale@apache.org + Dexem + + Committer + + +1 + + + schulte + Christian Schulte + schulte@apache.org + + Committer + + Europe/Berlin + + + snicoll + Stephane Nicoll + snicoll@apache.org + + Committer + + +1 + + + simonetripodi + Simone Tripodi + simonetripodi@apache.org + + Committer + + +1 + + + sjaranowski + Slawomir Jaranowski + sjaranowski@apache.org + + Committer + + Europe/Warsaw + + + sor + Christian Stein + sor@apache.org + + Committer + + Europe/Berlin + + + tchemit + Tony Chemit + tchemit@apache.org + CodeLutin + + Committer + + Europe/Paris + + + vmassol + Vincent Massol + vmassol@apache.org + ASF + + Committer + + +1 + + + slachiewicz + Sylwester Lachiewicz + slachiewicz@apache.org + + Committer + + Europe/Warsaw + + + elharo + Elliotte Rusty Harold + elharo@apache.org + + Committer + + America/New_York + + + + + agudian + Andreas Gudian + agudian@apache.org + + Emeritus + + Europe/Berlin + + + aramirez + Allan Q. Ramirez + + Emeritus + + + + bayard + Henri Yandell + + Emeritus + + + + carlos + Carlos Sanchez + carlos@apache.org + ASF + + Emeritus + + +1 + + + chrisjs + Chris Stevenson + + Emeritus + + + + dblevins + David Blevins + + Emeritus + + + + dlr + Daniel Rall + + Emeritus + + + + epunzalan + Edwin Punzalan + epunzalan@apache.org + + Emeritus + + -8 + + + felipeal + Felipe Leme + + Emeritus + + + + jdcasey + John Casey + jdcasey@apache.org + ASF + + Emeritus + + -6 + + + jmcconnell + Jesse McConnell + jmcconnell@apache.org + ASF + + Emeritus + + -6 + + + joakime + Joakim Erdfelt + joakime@apache.org + ASF + + Emeritus + + -5 + + + jruiz + Johnny Ruiz III + jruiz@apache.org + + Emeritus + + + + jstrachan + James Strachan + + Emeritus + + + + jtolentino + Ernesto Tolentino Jr. + jtolentino@apache.org + ASF + + Emeritus + + +8 + + + kenney + Kenney Westerhof + kenney@apache.org + Neonics + + Emeritus + + +1 + + + mperham + Mike Perham + mperham@gmail.com + IBM + + Emeritus + + -6 + + + ogusakov + Oleg Gusakov + + Emeritus + + + + pschneider + Patrick Schneider + pschneider@gmail.com + + Emeritus + + -6 + + + rinku + Rahul Thakur + + Emeritus + + + + shinobu + Shinobu Kuwai + + Emeritus + + + + smorgrav + Torbjorn Eikli Smorgrav + + Emeritus + + + + trygvis + Trygve Laugstol + trygvis@apache.org + ASF + + Emeritus + + +1 + + + wsmoak + Wendy Smoak + wsmoak@apache.org + + Emeritus + + -7 + + + + + + Maven User List + mailto:users-subscribe@maven.apache.org + mailto:users-unsubscribe@maven.apache.org + mailto:users@maven.apache.org + https://lists.apache.org/list.html?users@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-users + https://www.mail-archive.com/users@maven.apache.org/ + + + + Maven Developer List + mailto:dev-subscribe@maven.apache.org + mailto:dev-unsubscribe@maven.apache.org + mailto:dev@maven.apache.org + https://lists.apache.org/list.html?dev@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-dev + https://www.mail-archive.com/dev@maven.apache.org/ + + + + Maven Issues List + mailto:issues-subscribe@maven.apache.org + mailto:issues-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?issues@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-issues/ + https://www.mail-archive.com/issues@maven.apache.org + + + + Maven Commits List + mailto:commits-subscribe@maven.apache.org + mailto:commits-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?commits@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-commits/ + https://www.mail-archive.com/commits@maven.apache.org + + + + Maven Announcements List + announce@maven.apache.org + mailto:announce-subscribe@maven.apache.org + mailto:announce-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?announce@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-announce/ + https://www.mail-archive.com/announce@maven.apache.org + + + + Maven Notifications List + mailto:notifications-subscribe@maven.apache.org + mailto:notifications-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?notifications@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-notifications/ + https://www.mail-archive.com/notifications@maven.apache.org + + + + + + maven-extensions + maven-plugins + maven-shared-components + maven-skins + doxia-tools + apache-resource-bundles + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + https://github.com/apache/maven-parent/tree/${project.scm.tag} + maven-parent-35 + + + + Jenkins + https://ci-maven.apache.org/job/Maven/job/maven-box/ + + + mail + +
notifications@maven.apache.org
+
+
+
+
+ + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 7 + 1.${javaVersion} + 1.${javaVersion} + https://builds.apache.org/analysis/ + ${user.home}/maven-sites + ../.. + 0.3.5 + + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength + 2022-02-27T18:03:24Z + + + + + + + org.eclipse.sisu + org.eclipse.sisu.inject + ${sisuVersion} + + + org.eclipse.sisu + org.eclipse.sisu.plexus + ${sisuVersion} + + + + org.codehaus.plexus + plexus-utils + 3.3.0 + + + org.codehaus.plexus + plexus-component-annotations + 2.1.1 + + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + org.eclipse.sisu + sisu-maven-plugin + ${sisuVersion} + + + index-project + + main-index + test-index + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + java-annotations + + + + + org.codehaus.modello + modello-maven-plugin + 1.11 + + true + + + + + org.apache.maven.plugins + maven-site-plugin + + + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${maven.site.cache}/${maven.site.path} + apache.releases.https + true + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.0.0 + + config/maven_checks.xml + config/maven-header.txt + + + src/main/java + + + src/test/java + + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + org.apache.maven.plugins + maven-jxr-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.15.0 + + ${maven.compiler.target} + + rulesets/maven.xml + + + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.apache.maven.plugins + maven-release-plugin + + true + + + + org.apache.maven.plugins + maven-toolchains-plugin + 3.0.0 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-changes-plugin + 2.12.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + true + en + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + true + + + + + org.apache.maven.plugins + maven-invoker-plugin + + true + + true + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + org.codehaus.mojo + extra-enforcer-rules + 1.5.1 + + + + + enforce-bytecode-version + + enforce + + + + + ${maven.compiler.target} + + + true + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + checkstyle-check + + check + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + org.apache.rat + apache-rat-plugin + + + .repository/** + .maven/spy.log + dependency-reduced-pom.xml + .asf.yaml + .java-version + + + + + rat-check + + check + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + index + summary + dependency-info + modules + team + scm + issue-management + mailing-lists + dependency-management + dependencies + dependency-convergence + ci-management + plugin-management + plugins + distribution-management + + + + + + + + + + + drop-legacy-dependencies + + + true + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + drop-legacy-dependencies + + enforce + + + + + + + org.codehaus.plexus:plexus-container-default + + org.sonatype.sisu:sisu-inject-bean + org.sonatype.sisu:sisu-inject-plexus + + org.sonatype.aether:* + + org.sonatype.plexus:* + + org.apache.maven:maven-plugin-api:[,3.2.5) + org.apache.maven:maven-core:[,3.2.5) + org.apache.maven:maven-compat:[,3.2.5) + + + + org.sonatype.plexus:plexus-build-api + + org.sonatype.plexus:plexus-sec-dispatcher + org.sonatype.plexus:plexus-cipher + + + + ${drop-legacy-dependencies.include} + + + + + + + + + jdk-toolchain + + + + org.apache.maven.plugins + maven-toolchains-plugin + + + + ${maven.compiler.target} + + + + + + + toolchain + + + + + + + + + quality-checks + + + quality-checks + true + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + cpd-check + verify + + cpd-check + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + default + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + + + default + + jxr + test-jxr + + + + + + + org.codehaus.mojo + taglist-maven-plugin + + + + + FIXME Work + + + fixme + ignoreCase + + + @fixme + ignoreCase + + + + + Todo Work + + + todo + ignoreCase + + + @todo + ignoreCase + + + + + Deprecated Work + + + @deprecated + ignoreCase + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + default + + javadoc + test-javadoc + + + + + + + + +
diff --git a/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom.sha1 b/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom.sha1 new file mode 100644 index 000000000..84b47bcb4 --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom.sha1 @@ -0,0 +1 @@ +2f65ed06ef7e7380517578cbc7a2b2f6b7cc4989 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/maven-parent/39/_remote.repositories b/code/arachne/org/apache/maven/maven-parent/39/_remote.repositories new file mode 100644 index 000000000..c1dea66d6 --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/39/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:45 EDT 2024 +maven-parent-39.pom>central= diff --git a/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom b/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom new file mode 100644 index 000000000..028b8fa67 --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom @@ -0,0 +1,1531 @@ + + + + 4.0.0 + + + + org.apache + apache + 29 + ../asf/pom.xml + + + org.apache.maven + maven-parent + 39 + pom + + Apache Maven + Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. + https://maven.apache.org/ + 2002 + + + + + khmarbaise + Karl Heinz Marbaise + khmarbaise@apache.org + + PMC Chair + + +1 + + @khmarbaise + + + + aheritier + Arnaud Héritier + aheritier@apache.org + + PMC Member + + +1 + + + andham + Anders Hammar + andham@apache.org + + PMC Member + + +1 + + + baerrach + Barrie Treloar + baerrach@apache.org + + PMC Member + + Australia/Adelaide + + + bimargulies + Benson Margulies + bimargulies@apache.org + + PMC Member + + America/New_York + + + brianf + Brian Fox + brianf@apache.org + Sonatype + + PMC Member + + -5 + + + cstamas + Tamas Cservenak + cstamas@apache.org + + PMC Member + + +1 + + + dennisl + Dennis Lundberg + dennisl@apache.org + ASF + + PMC Member + + +1 + + + dkulp + Daniel Kulp + dkulp@apache.org + ASF + + PMC Member + + -5 + + + evenisse + Emmanuel Venisse + evenisse@apache.org + ASF + + PMC Member + + +1 + + + gboue + Guillaume Boué + gboue@apache.org + + PMC Member + + Europe/Paris + + + gnodet + Guillaume Nodet + gnodet@apache.org + Red Hat + + PMC Member + + Europe/Paris + + + hboutemy + Hervé Boutemy + hboutemy@apache.org + ASF + + PMC Member + + Europe/Paris + + + ifedorenko + Igor Fedorenko + igor@ifedorenko.com + Sonatype + + PMC Member + + -5 + + + jvanzyl + Jason van Zyl + jason@maven.org + + PMC Member + + -5 + + + krosenvold + Kristian Rosenvold + krosenvold@apache.org + + PMC Member + + +1 + + + mkleint + Milos Kleint + + PMC Member + + + + olamy + Olivier Lamy + olamy@apache.org + + PMC Member + + Australia/Brisbane + + + michaelo + Michael Osipov + michaelo@apache.org + + PMC Member + + Europe/Berlin + + + rfscholte + Robert Scholte + rfscholte@apache.org + + PMC Member + + Europe/Amsterdam + + @rfscholte + + + + rgoers + Ralph Goers + rgoers@apache.org + Intuit + + PMC Member + + -8 + + + sjaranowski + Slawomir Jaranowski + sjaranowski@apache.org + + PMC Member + + Europe/Warsaw + + + stephenc + Stephen Connolly + stephenc@apache.org + + PMC Member + + 0 + + + struberg + Mark Struberg + struberg@apache.org + + PMC Member + + + + tibordigana + Tibor Digaňa + tibordigana@apache.org + + PMC Member + + Europe/Bratislava + + + vsiveton + Vincent Siveton + vsiveton@apache.org + ASF + + PMC Member + + -5 + + + wfay + Wayne Fay + wfay@apache.org + ASF + + PMC Member + + -6 + + + + + adangel + Andreas Dangel + adangel@apache.org + + Committer + + Europe/Berlin + + + bdemers + Brian Demers + bdemers@apache.org + Sonatype + + Committer + + -5 + + + bellingard + Fabrice Bellingard + + Committer + + + + bentmann + Benjamin Bentmann + bentmann@apache.org + Sonatype + + Committer + + +1 + + + chrisgwarp + Chris Graham + chrisgwarp@apache.org + + Committer + + Australia/Melbourne + + + dantran + Dan Tran + dantran@apache.org + + Committer + + -8 + + + dbradicich + Damian Bradicich + dbradicich@apache.org + Sonatype + + Committer + + -5 + + + brett + Brett Porter + brett@apache.org + ASF + + Committer + + +10 + + + dfabulich + Daniel Fabulich + dfabulich@apache.org + + Committer + + -8 + + + eolivelli + Enrico Olivelli + eolivelli@apache.org + Diennea + + Committer + + Europe/Rome + + + fgiust + Fabrizio Giustina + fgiust@apache.org + openmind + + Committer + + +1 + + + godin + Evgeny Mandrikov + godin@apache.org + SonarSource + + Committer + + +3 + + + handyande + Andrew Williams + handyande@apache.org + + Committer + + 0 + + + imod + Dominik Bartholdi + imod@apache.org + + Committer + + Europe/Zurich + + + jjensen + Jeff Jensen + + Committer + + + + kwin + Konrad Windszus + kwin@apache.org + Cognizant Netcentric + + Committer + + Europe/Berlin + + + ltheussl + Lukas Theussl + ltheussl@apache.org + + Committer + + +1 + + + markh + Mark Hobson + markh@apache.org + + Committer + + 0 + + + martinkanters + Martin Kanters + martinkanters@apache.org + JPoint + + Committer + + Europe/Amsterdam + + + mthmulders + Maarten Mulders + mthmulders@apache.org + Info Support + + Committer + + Europe/Amsterdam + + + mauro + Mauro Talevi + + Committer + + + + mfriedenhagen + Mirko Friedenhagen + mfriedenhagen@apache.org + + Committer + + +1 + + + mmoser + Manfred Moser + mmoser@apache.org + + Committer + + -8 + + + nicolas + Nicolas de Loof + + Committer + + + + oching + Maria Odea B. Ching + + Committer + + + + pgier + Paul Gier + pgier@apache.org + Red Hat + + Committer + + -6 + + + ptahchiev + Petar Tahchiev + ptahchiev@apache.org + + Committer + + +2 + + + rafale + Raphaël Piéroni + rafale@apache.org + Dexem + + Committer + + +1 + + + schulte + Christian Schulte + schulte@apache.org + + Committer + + Europe/Berlin + + + snicoll + Stephane Nicoll + snicoll@apache.org + + Committer + + +1 + + + simonetripodi + Simone Tripodi + simonetripodi@apache.org + + Committer + + +1 + + + sor + Christian Stein + sor@apache.org + + Committer + + Europe/Berlin + + + tchemit + Tony Chemit + tchemit@apache.org + CodeLutin + + Committer + + Europe/Paris + + + vmassol + Vincent Massol + vmassol@apache.org + ASF + + Committer + + +1 + + + slachiewicz + Sylwester Lachiewicz + slachiewicz@apache.org + + Committer + + Europe/Warsaw + + + elharo + Elliotte Rusty Harold + elharo@apache.org + + Committer + + America/New_York + + + + + agudian + Andreas Gudian + agudian@apache.org + + Emeritus + + Europe/Berlin + + + aramirez + Allan Q. Ramirez + + Emeritus + + + + bayard + Henri Yandell + + Emeritus + + + + carlos + Carlos Sanchez + carlos@apache.org + ASF + + Emeritus + + +1 + + + chrisjs + Chris Stevenson + + Emeritus + + + + dblevins + David Blevins + + Emeritus + + + + dlr + Daniel Rall + + Emeritus + + + + epunzalan + Edwin Punzalan + epunzalan@apache.org + + Emeritus + + -8 + + + felipeal + Felipe Leme + + Emeritus + + + + jdcasey + John Casey + jdcasey@apache.org + ASF + + Emeritus + + -6 + + + jmcconnell + Jesse McConnell + jmcconnell@apache.org + ASF + + Emeritus + + -6 + + + joakime + Joakim Erdfelt + joakime@apache.org + ASF + + Emeritus + + -5 + + + jruiz + Johnny Ruiz III + jruiz@apache.org + + Emeritus + + + + jstrachan + James Strachan + + Emeritus + + + + jtolentino + Ernesto Tolentino Jr. + jtolentino@apache.org + ASF + + Emeritus + + +8 + + + kenney + Kenney Westerhof + kenney@apache.org + Neonics + + Emeritus + + +1 + + + mperham + Mike Perham + mperham@gmail.com + IBM + + Emeritus + + -6 + + + ogusakov + Oleg Gusakov + + Emeritus + + + + pschneider + Patrick Schneider + pschneider@gmail.com + + Emeritus + + -6 + + + rinku + Rahul Thakur + + Emeritus + + + + shinobu + Shinobu Kuwai + + Emeritus + + + + smorgrav + Torbjorn Eikli Smorgrav + + Emeritus + + + + trygvis + Trygve Laugstol + trygvis@apache.org + ASF + + Emeritus + + +1 + + + wsmoak + Wendy Smoak + wsmoak@apache.org + + Emeritus + + -7 + + + + + + Maven User List + mailto:users-subscribe@maven.apache.org + mailto:users-unsubscribe@maven.apache.org + mailto:users@maven.apache.org + https://lists.apache.org/list.html?users@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-users + https://www.mail-archive.com/users@maven.apache.org/ + + + + Maven Developer List + mailto:dev-subscribe@maven.apache.org + mailto:dev-unsubscribe@maven.apache.org + mailto:dev@maven.apache.org + https://lists.apache.org/list.html?dev@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-dev + https://www.mail-archive.com/dev@maven.apache.org/ + + + + Maven Issues List + mailto:issues-subscribe@maven.apache.org + mailto:issues-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?issues@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-issues/ + https://www.mail-archive.com/issues@maven.apache.org + + + + Maven Commits List + mailto:commits-subscribe@maven.apache.org + mailto:commits-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?commits@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-commits/ + https://www.mail-archive.com/commits@maven.apache.org + + + + Maven Announcements List + mailto:announce-subscribe@maven.apache.org + mailto:announce-unsubscribe@maven.apache.org + announce@maven.apache.org + https://lists.apache.org/list.html?announce@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-announce/ + https://www.mail-archive.com/announce@maven.apache.org + + + + Maven Notifications List + mailto:notifications-subscribe@maven.apache.org + mailto:notifications-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?notifications@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-notifications/ + https://www.mail-archive.com/notifications@maven.apache.org + + + + + + maven-extensions + maven-plugins + maven-shared-components + maven-skins + doxia-tools + apache-resource-bundles + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + maven-parent-39 + https://github.com/apache/maven-parent/tree/${project.scm.tag} + + + + Jenkins + https://ci-maven.apache.org/job/Maven/job/maven-box/ + + + mail + +
notifications@maven.apache.org
+
+
+
+
+ + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 8 + 1.${javaVersion} + 1.${javaVersion} + https://builds.apache.org/analysis/ + ${user.home}/maven-sites + + ../.. + true + 0.3.5 + 1.11.1 + + 3.0.0-M7 + + ParameterNumber,MethodLength,FileLength + 2022-12-11T20:07:23Z + + + + + + + org.eclipse.sisu + org.eclipse.sisu.inject + ${sisuVersion} + + + org.eclipse.sisu + org.eclipse.sisu.plexus + ${sisuVersion} + + + org.codehaus.plexus + plexus-utils + 3.5.0 + + + + + + + + + false + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + + + + + + + org.eclipse.sisu + sisu-maven-plugin + ${sisuVersion} + + + index-project + + main-index + test-index + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + java-annotations + + + + + org.codehaus.modello + modello-maven-plugin + 2.0.0 + + + + org.apache.maven.plugins + maven-site-plugin + + + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${maven.site.cache}/${maven.site.path} + apache.releases.https + true + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.2.0 + + config/maven_checks_nocodestyle.xml + + + src/main/java + + + src/test/java + + + + + + org.apache.maven.shared + maven-shared-resources + 5 + + + + + org.apache.maven.plugins + maven-jxr-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.19.0 + + ${maven.compiler.target} + + rulesets/maven.xml + + + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.apache.maven.plugins + maven-release-plugin + + true + + + + org.apache.maven.plugins + maven-toolchains-plugin + 3.1.0 + + + org.codehaus.mojo + taglist-maven-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + true + en + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + true + + + + + org.apache.maven.plugins + maven-invoker-plugin + + ${invoker.streamLogsOnFailures} + + true + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + org.codehaus.mojo + extra-enforcer-rules + 1.6.1 + + + + + enforce-bytecode-version + + enforce + + + + + ${maven.compiler.target} + + + true + + + + + + com.diffplug.spotless + spotless-maven-plugin + 2.28.0 + + + + + + + + config/maven-eclipse-importorder.txt + + + config/maven-header-plain.txt + + + + + false + + true + + + + true + + + + + org.apache.maven.shared + maven-shared-resources + 5 + + + + + + ${spotless.action} + + process-sources + + + + + + + + com.diffplug.spotless + spotless-maven-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + checkstyle-check + + check + + process-sources + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + org.apache.rat + apache-rat-plugin + + + .java-version + + .repository/** + + .maven/spy.log + + dependency-reduced-pom.xml + + .asf.yaml + + + + + rat-check + + check + + + process-resources + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + index + summary + dependency-info + modules + team + scm + issue-management + mailing-lists + dependency-management + dependencies + dependency-convergence + ci-management + plugin-management + plugins + distribution-management + + + + + + + + + + format-check + + + !format + + + + check + + + + format + + + format + + + + apply + + + + + drop-legacy-dependencies + + + true + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + drop-legacy-dependencies + + enforce + + + + + + + org.codehaus.plexus:plexus-container-default + + org.sonatype.sisu:sisu-inject-bean + org.sonatype.sisu:sisu-inject-plexus + + org.sonatype.aether:* + + org.sonatype.plexus:* + + org.apache.maven:maven-plugin-api:[,3.2.5) + org.apache.maven:maven-core:[,3.2.5) + org.apache.maven:maven-compat:[,3.2.5) + + + + org.sonatype.plexus:plexus-build-api + + org.sonatype.plexus:plexus-sec-dispatcher + org.sonatype.plexus:plexus-cipher + + + + ${drop-legacy-dependencies.include} + + + + + + + + + jdk-toolchain + + + + org.apache.maven.plugins + maven-toolchains-plugin + + + + ${maven.compiler.target} + + + + + + + toolchain + + + + + + + + + quality-checks + + + quality-checks + true + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + cpd-check + + cpd-check + + verify + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + default + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + default + + cpd + pmd + + + + + + org.apache.maven.plugins + maven-jxr-plugin + + + default + + jxr + test-jxr + + + + + + + org.codehaus.mojo + taglist-maven-plugin + + + + + FIXME Work + + + fixme + ignoreCase + + + @fixme + ignoreCase + + + + + Todo Work + + + todo + ignoreCase + + + @todo + ignoreCase + + + + + Deprecated Work + + + @deprecated + ignoreCase + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + default + + javadoc + + + + + + + + +
diff --git a/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom.sha1 b/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom.sha1 new file mode 100644 index 000000000..11b27ff60 --- /dev/null +++ b/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom.sha1 @@ -0,0 +1 @@ +9b763d93ee3622181d8d39f62e8e995266c12362 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/maven/3.6.3/_remote.repositories b/code/arachne/org/apache/maven/maven/3.6.3/_remote.repositories new file mode 100644 index 000000000..28a2960a2 --- /dev/null +++ b/code/arachne/org/apache/maven/maven/3.6.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:55 EDT 2024 +maven-3.6.3.pom>ohdsi= diff --git a/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom b/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom new file mode 100644 index 000000000..c770f0d33 --- /dev/null +++ b/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom @@ -0,0 +1,736 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven-parent + 33 + ../pom/maven/pom.xml + + + maven + 3.6.3 + pom + + Apache Maven + Maven is a software build management and + comprehension tool. Based on the concept of a project object model: + builds, dependency management, documentation creation, site + publication, and distribution publication are all controlled from + the declarative file. Maven can be extended by plugins to utilise a + number of other development tools for reporting or the build + process. + + https://maven.apache.org/ref/${project.version}/ + 2001 + + + 3.0.5 + 1.7 + 1.7 + 2.6.0 + 1.4 + 3.8.1 + 4.12 + 2.21.0 + 2.1.0 + 1.25 + 3.2.1 + 4.2.1 + 0.3.4 + 3.3.4 + 1.12.1 + 1.4 + 1.7 + 1.11 + 1.3 + 1.4.1 + 1.7.29 + 2.2.1 + 1.7.4 + true + + apache-maven + Maven + Apache Maven + ref/3-LATEST + None + **/package-info.java + 2019-11-07T12:32:18Z + + + + maven-plugin-api + maven-builder-support + maven-model + maven-model-builder + maven-core + maven-settings + maven-settings-builder + maven-artifact + maven-resolver-provider + maven-repository-metadata + maven-slf4j-provider + maven-embedder + maven-compat + apache-maven + + + + scm:git:https://gitbox.apache.org/repos/asf/maven.git + scm:git:https://gitbox.apache.org/repos/asf/maven.git + https://github.com/apache/maven/tree/${project.scm.tag} + maven-3.6.3 + + + jira + https://issues.apache.org/jira/browse/MNG + + + Jenkins + https://builds.apache.org/job/maven-box/job/maven/ + + + https://maven.apache.org/download.html + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + + Stuart McCulloch + + + Christian Schulte (MNG-2199) + + + Christopher Tubbs (MNG-4226) + + + Konstantin Perikov (MNG-4565) + + + Sébastian Le Merdy (MNG-5613) + + + Mark Ingram (MNG-5639) + + + Phil Pratt-Szeliga (MNG-5645) + + + Florencia Tarditti (PR 41) + + + Anton Tanasenko + + + Joseph Walton (MNG-5297) + + + Fabiano Cipriano de Oliveira (MNG-6261) + + + Mike Mol (MNG-6665) + + + Martin Kanters (MNG-6665) + + + + + + + + + + + org.apache.maven + maven-model + ${project.version} + + + org.apache.maven + maven-settings + ${project.version} + + + org.apache.maven + maven-settings-builder + ${project.version} + + + org.apache.maven + maven-plugin-api + ${project.version} + + + org.apache.maven + maven-embedder + ${project.version} + + + org.apache.maven + maven-core + ${project.version} + + + org.apache.maven + maven-model-builder + ${project.version} + + + org.apache.maven + maven-compat + ${project.version} + + + org.apache.maven + maven-artifact + ${project.version} + + + org.apache.maven + maven-resolver-provider + ${project.version} + + + org.apache.maven + maven-repository-metadata + ${project.version} + + + org.apache.maven + maven-builder-support + ${project.version} + + + org.apache.maven + maven-slf4j-provider + ${project.version} + + + + + org.codehaus.plexus + plexus-utils + ${plexusUtilsVersion} + + + com.google.inject + guice + ${guiceVersion} + no_aop + + + org.eclipse.sisu + org.eclipse.sisu.plexus + ${sisuInjectVersion} + + + org.eclipse.sisu + org.eclipse.sisu.inject + ${sisuInjectVersion} + + + javax.inject + javax.inject + 1 + + + javax.annotation + jsr250-api + 1.0 + + + org.codehaus.plexus + plexus-component-annotations + ${plexusVersion} + + + junit + junit + + + + + org.codehaus.plexus + plexus-classworlds + ${classWorldsVersion} + + + org.codehaus.plexus + plexus-interpolation + ${plexusInterpolationVersion} + + + org.apache.maven.shared + maven-shared-utils + 3.2.1 + + + org.fusesource.jansi + jansi + 1.17.1 + + + org.slf4j + slf4j-api + ${slf4jVersion} + + + org.slf4j + slf4j-simple + ${slf4jVersion} + true + + + ch.qos.logback + logback-classic + 1.2.1 + true + + + + org.apache.maven.wagon + wagon-provider-api + ${wagonVersion} + + + org.apache.maven.wagon + wagon-file + ${wagonVersion} + + + org.apache.maven.wagon + wagon-http + ${wagonVersion} + shaded + + + commons-logging + commons-logging + + + + + + org.jsoup + jsoup + ${jsoupVersion} + + + + org.apache.maven.resolver + maven-resolver-api + ${resolverVersion} + + + org.apache.maven.resolver + maven-resolver-spi + ${resolverVersion} + + + org.apache.maven.resolver + maven-resolver-impl + ${resolverVersion} + + + org.apache.maven.resolver + maven-resolver-util + ${resolverVersion} + + + org.apache.maven.resolver + maven-resolver-connector-basic + ${resolverVersion} + + + org.apache.maven.resolver + maven-resolver-transport-wagon + ${resolverVersion} + + + + commons-cli + commons-cli + ${commonsCliVersion} + + + commons-lang + commons-lang + + + commons-logging + commons-logging + + + + + commons-jxpath + commons-jxpath + ${jxpathVersion} + + + org.apache.commons + commons-lang3 + ${commonsLangVersion} + + + org.sonatype.plexus + plexus-sec-dispatcher + ${securityDispatcherVersion} + + + org.sonatype.plexus + plexus-cipher + ${cipherVersion} + + + org.mockito + mockito-core + ${mockitoVersion} + test + + + org.xmlunit + xmlunit-core + ${xmlunitVersion} + test + + + org.xmlunit + xmlunit-matchers + ${xmlunitVersion} + test + + + org.powermock + powermock-reflect + ${powermockVersion} + + + org.hamcrest + hamcrest-core + 1.3 + test + + + org.hamcrest + hamcrest-library + 1.3 + test + + + + + + + + + junit + junit + ${junitVersion} + test + + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.2.0 + + + org.codehaus.plexus + plexus-component-metadata + ${plexusVersion} + + + + generate-metadata + generate-test-metadata + + + + + + org.eclipse.sisu + sisu-maven-plugin + ${sisuInjectVersion} + + + + main-index + test-index + + + + + + org.apache.maven.plugins + maven-release-plugin + + true + + + + org.apache.maven.plugins + maven-surefire-plugin + + -Xmx256m + + true + + + + + org.codehaus.modello + modello-maven-plugin + ${modelloVersion} + + + modello-site-docs + pre-site + + xdoc + xsd + + + + modello + + java + xpp3-reader + xpp3-writer + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + + org.apache.rat + apache-rat-plugin + + + src/test/resources*/** + src/test/projects/** + src/test/remote-repo/** + **/*.odg + + src/main/appended-resources/licenses/CDDL-1.0.txt + src/main/appended-resources/licenses/EPL-1.0.txt + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.rat + apache-rat-plugin + [0.10,) + + check + + + + + + + + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.17 + + + org.codehaus.mojo.signature + java17 + 1.0 + + + + + check-java-compat + process-classes + + check + + + + + + org.apache.maven.plugins + maven-doap-plugin + 1.2 + + + The mission of the Apache Maven project is to create and maintain software + libraries that provide a widely-used project build tool, targeting mainly Java + development. Apache Maven promotes the use of dependencies via a + standardized coordinate system, binary plugins, and a standard build + lifecycle. + + + + + org.apache.rat + apache-rat-plugin + + + bootstrap/** + README.bootstrap.txt + README.md + + + + + + + + + apache-release + + + + maven-assembly-plugin + + + source-release-assembly + + + true + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + provisional + tf + Provisional: + + + + + + aggregate + false + + aggregate + + + + + + org.apache.maven.plugins + maven-jxr-plugin + + + aggregate + false + + aggregate + + + + + + + + + maven-repo-local + + + maven.repo.local + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + + maven.repo.local + ${maven.repo.local} + + + + + + + + + diff --git a/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.lastUpdated b/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.lastUpdated new file mode 100644 index 000000000..4ed5adf4b --- /dev/null +++ b/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:55 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.apache.maven\:maven\:pom\:3.6.3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139835428 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139835437 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139835524 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139835704 diff --git a/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.sha1 b/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.sha1 new file mode 100644 index 000000000..7f69a13b2 --- /dev/null +++ b/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.sha1 @@ -0,0 +1 @@ +e3e8e83914f00e2f6e88b76d600fc7ea7456f6e0 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/_remote.repositories new file mode 100644 index 000000000..d24719720 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:44 EDT 2024 +maven-clean-plugin-3.2.0.jar>central= +maven-clean-plugin-3.2.0.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..4ab4510f42500cf3e09c5247fb4e53bd610346e9 GIT binary patch literal 35678 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 T7(hT+A1~&QSrU@ZAOHP7hJBVm literal 0 HcmV?d00001 diff --git a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar.sha1 b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar.sha1 new file mode 100644 index 000000000..779bf7b84 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar.sha1 @@ -0,0 +1 @@ +556f5c71be8788c70a94a43d66af7fe35acee21f \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom new file mode 100644 index 000000000..a1c52cf12 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom @@ -0,0 +1,153 @@ + + + + + + 4.0.0 + + + org.apache.maven.plugins + maven-plugins + 35 + + + + maven-clean-plugin + 3.2.0 + maven-plugin + + Apache Maven Clean Plugin + + The Maven Clean Plugin is a plugin that removes files generated at build-time in a project's directory. + + 2001 + + + ${mavenVersion} + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-clean-plugin.git + scm:git:https://gitbox.apache.org/repos/asf/maven-clean-plugin.git + https://github.com/apache/maven-clean-plugin/tree/${project.scm.tag} + maven-clean-plugin-3.2.0 + + + JIRA + https://issues.apache.org/jira/browse/MCLEAN + + + Jenkins + https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-clean-plugin/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 3.2.5 + 8 + 2.22.2 + 3.6.4 + 2022-04-01T21:20:29Z + + + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + provided + + + org.apache.maven.shared + maven-shared-utils + 3.3.4 + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + provided + + + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 3.3.0 + test + + + org.apache.maven + maven-compat + ${mavenVersion} + test + + + org.apache.maven + maven-core + ${mavenVersion} + provided + + + junit + junit + 4.13.2 + test + + + + + + run-its + + + + + org.apache.maven.plugins + maven-invoker-plugin + + true + true + src/it + ${project.build.directory}/it + + */pom.xml + + setup + verify + ${project.build.directory}/local-repo + src/it/settings.xml + + clean + + + + + + + + + diff --git a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom.sha1 new file mode 100644 index 000000000..83c15b348 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom.sha1 @@ -0,0 +1 @@ +f6f7ce25e8d638408c20f1888b2664f49df9f5a1 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/_remote.repositories new file mode 100644 index 000000000..8c4442c26 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:45 EDT 2024 +maven-compiler-plugin-3.10.1.pom>central= +maven-compiler-plugin-3.10.1.jar>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.jar b/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.jar new file mode 100644 index 0000000000000000000000000000000000000000..5d1212c0bf8491b04df51a982da08f0f2db1b284 GIT binary patch literal 61899 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
${root.dir}/src/license/header.txt
+ + ${root.dir}/src/license/header_format.xml + + + **/*.txt + + + + + org.eclipse.jetty + jetty-maven-plugin + ${jetty.version} + + / + + 9080 + 60000 + + + ./target/yyyy_mm_dd.request.log + 90 + true + false + GMT + + + + + org.owasp + dependency-check-maven + 8.4.2 + + + com.github.siom79.japicmp + japicmp-maven-plugin + 0.18.2 + + + + ${project.groupId} + ${project.artifactId} + ${shiro.previousVersion} + jar + + + + true + true + true + ${root.dir}/src/japicmp/postAnalysisScript.groovy + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.4.1 + + + org.codehaus.mojo + aspectj-maven-plugin + 1.14.0 + + ${maven.compiler.source} + ${maven.compiler.target} + ${maven.compiler.target} + true + + + + org.apache.maven.plugins + maven-shade-plugin + 3.5.1 + + + jakarta + package + + shade + + + false + true + jakarta + false + + + + + + ${project.groupId}:${project.artifactId} + + + + + javax.annotation + jakarta.annotation + + javax.annotation.processing.** + + + + javax.enterprise + jakarta.enterprise + + javax.enterprise.deploy.** + + + + javax.inject + jakarta.inject + + + javax.json + jakarta.json + + + javax.servlet.http.HttpSessionContext + org.apache.shiro.web.servlet.HttpSessionContext + + + javax.servlet + jakarta.servlet + + + javax.websocket + jakarta.websocket + + + javax.ws.rs + jakarta.ws.rs + + + + + + + + + + + org.apache.rat + apache-rat-plugin + + + rat-chec + + check + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + integration-test + verify + + + + + + org.jacoco + jacoco-maven-plugin + + + prepare-agent + process-test-classes + + prepare-agent + + + + prepare-agent-integration + pre-integration-test + + prepare-agent-integration + + + + **/main/**/samples/** + + + + + + + + org.codehaus.gmavenplus + gmavenplus-plugin + ${gmaven.version} + + + + addTestSources + generateTestStubs + compileTests + removeTestStubs + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.2.0 + + + validate + + create + + + + + false + false + ${project.version} + true + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + true + true + + + + + + + org.apache.maven.plugins + maven-doap-plugin + 1.2 + false + + + + + + + Java + + library, web-framework + + ${project.issueManagement.url} + ${project.inceptionYear}-01-01 + ${project.description} + ${project.distributionManagement.downloadUrl} + ${project.url} + ${project.url}/mail-lists.html + ${project.name} + A simple to use Java Security Framework. + ${project.organization.name} + + + + The mission of the Apache Shiro project is to create and maintain an easy to use authentication and authorization framework. + + + ${project.url} + ${project.name} + + + + + + site + pre-site + + generate + + + + + + com.ibm.icu + icu4j + 74.1 + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.1 + + + false + true + true + + false + deploy site site:stage + -Pdocs,apache-release -DskipITs -DskipTests + forked-path + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + https://repository.apache.org + apache.releases.https + ${nexus.deploy.skip} + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [3.5.0,4) + + + [1.8,) + + + + + + + + + + + + + junit + junit + test + + + org.hamcrest + hamcrest-core + 2.2 + test + + + org.easymock + easymock + ${easymock.version} + test + + + + org.codehaus.groovy + groovy + ${groovy.version} + test + + + org.powermock + powermock-module-junit4 + ${powermock.version} + test + + + org.powermock + powermock-api-easymock + ${powermock.version} + test + + + + + + + + org.apache.shiro + shiro-lang + ${project.version} + + + org.apache.shiro + shiro-cache + ${project.version} + + + org.apache.shiro + shiro-core + ${project.version} + + + org.apache.shiro + shiro-config-core + ${project.version} + + + org.apache.shiro + shiro-config-ogdl + ${project.version} + + + org.apache.shiro + shiro-crypto-core + ${project.version} + + + org.apache.shiro + shiro-crypto-hash + ${project.version} + + + org.apache.shiro + shiro-crypto-cipher + ${project.version} + + + org.apache.shiro + shiro-event + ${project.version} + + + org.apache.shiro + shiro-web + ${project.version} + + + org.apache.shiro + shiro-servlet-plugin + ${project.version} + + + + + org.apache.shiro + shiro-aspectj + ${project.version} + + + org.apache.shiro + shiro-cas + ${project.version} + + + org.apache.shiro + shiro-ehcache + ${project.version} + + + org.apache.shiro + shiro-quartz + ${project.version} + + + org.apache.shiro + shiro-spring + ${project.version} + + + org.apache.shiro + shiro-guice + ${project.version} + + + org.apache.shiro + shiro-hazelcast + ${project.version} + + + org.apache.shiro + shiro-jaxrs + ${project.version} + + + org.apache.shiro + shiro-all + ${project.version} + + + + + org.apache.shiro.samples + samples-spring-client + ${project.version} + + + org.apache.shiro + shiro-spring-boot-starter + ${project.version} + + + org.apache.shiro + shiro-spring-boot-web-starter + ${project.version} + + + + + + org.apache.shiro + shiro-core + ${project.version} + tests + test-jar + test + + + org.apache.shiro + shiro-config-ogdl + ${project.version} + tests + test-jar + test + + + org.apache.shiro.integrationtests + shiro-its-support + ${project.version} + + + + + + junit + junit + ${junit.version} + + + + commons-cli + commons-cli + ${commons.cli.version} + + + javax.annotation + javax.annotation-api + ${javax.annotation.api.version} + + + + commons-codec + commons-codec + ${commons.codec.version} + runtime + + + org.aspectj + aspectjrt + ${aspectj.version} + + + org.aspectj + aspectjweaver + ${aspectj.version} + + + + + org.apache.commons + commons-configuration2 + ${commons.configuration2.version} + + + commons-logging + commons-logging + + + + + + org.apache.commons + commons-text + 1.10.0 + + + + org.owasp.encoder + encoder + ${owasp.java.encoder.version} + + + + ch.qos.logback + logback-classic + ${logback.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + slf4j-simple + ${slf4j.version} + test + + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j.version} + test + + + org.apache.logging.log4j + log4j-core + ${log4j.version} + tests + test + + + + org.apache.logging.log4j + log4j-api + ${log4j.version} + test + + + org.apache.logging.log4j + log4j-core + ${log4j.version} + test + + + org.apache.logging.log4j + log4j-jul + ${log4j.version} + test + + + org.apache.logging.log4j + log4j-to-slf4j + ${log4j.version} + test + + + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + test + + + commons-beanutils + commons-beanutils + ${commons.beanutils.version} + + + commons-logging + commons-logging + + + + + org.hsqldb + hsqldb + ${hsqldb.version} + jdk8 + runtime + true + + + javax.servlet.jsp + jsp-api + 2.2 + provided + + + org.apache.taglibs + taglibs-standard-spec + ${taglibs.standard.version} + provided + + + org.apache.taglibs + taglibs-standard-impl + ${taglibs.standard.version} + provided + + + javax.servlet + javax.servlet-api + 3.1.0 + provided + + + org.codehaus.groovy + groovy + ${groovy.version} + + + net.sf.ehcache + ehcache-core + ${ehcache.version} + true + + + commons-logging + commons-logging + + + + + com.hazelcast + hazelcast + ${hazelcast.version} + + + net.sourceforge.htmlunit + htmlunit + ${htmlunit.version} + + + + org.hibernate + hibernate-core + ${hibernate.version} + true + + + commons-logging + commons-logging + + + ant + ant + + + + ant-launcher + + ant-launcher + + + c3p0 + c3p0 + + + + javax.security + + jacc + + + javax.servlet + javax.servlet-api + + + jboss + + jboss-cache + + + net.sf.ehcache + ehcache + + + asm + + asm-attrs + + + javax.transaction + jta + + + + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + 1.1.1 + runtime + true + + + org.springframework + spring-context + ${spring.version} + true + + + commons-logging + commons-logging + + + + + org.springframework + spring-web + ${spring.version} + + + commons-logging + commons-logging + + + + + org.springframework + spring-jdbc + ${spring.version} + true + + + commons-logging + commons-logging + + + + + org.springframework + spring-orm + ${spring.version} + true + + + commons-logging + commons-logging + + + + + org.springframework + spring-webmvc + ${spring.version} + true + + + commons-logging + commons-logging + + + + + org.springframework + spring-test + ${spring.version} + test + true + + + commons-logging + commons-logging + + + + + + + org.springframework.boot + spring-boot-starter + ${spring-boot.version} + + + org.springframework.boot + spring-boot-autoconfigure + ${spring-boot.version} + + + org.springframework.boot + spring-boot-configuration-processor + ${spring-boot.version} + + + org.springframework.boot + spring-boot-test + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-web + ${spring-boot.version} + + + + + com.google.inject + guice + ${guice.version} + + + com.google.guava + guava + 32.1.3-jre + + + com.google.inject.extensions + guice-multibindings + ${guice.version} + + + com.google.inject.extensions + guice-servlet + ${guice.version} + + + org.quartz-scheduler + quartz + ${quartz.version} + true + + + com.github.mjeanroy + junit-servers-jetty + ${junit.server.jetty.version} + + + + + + + + + maven-javadoc-plugin + + true + + https://docs.oracle.com/javase/6/docs/api/ + https://docs.oracle.com/javaee/5/api// + https://www.slf4j.org/api/ + https://docs.spring.io/spring/docs/2.5.x/javadoc-api/ + https://junit.org/junit4/javadoc/4.12/ + http://easymock.org/api/easymock/2.4 + https://www.quartz-scheduler.org/api/1.8.6/ + + + org.apache.shiro.samples.* + + + + ]]> + + + + javadoc-aggregate + + aggregate-no-fork + + + + + + maven-jxr-plugin + 3.3.1 + + true + + + + + jxr-no-fork + + + + + + maven-pmd-plugin + 3.21.0 + + + maven-project-info-reports-plugin + 3.4.5 + + + + ci-management + dependencies + + + dependency-info + dependency-management + distribution-management + index + issue-management + licenses + mailing-lists + modules + plugin-management + plugins + scm + summary + team + + + + + + org.apache.rat + apache-rat-plugin + 0.15 + + false + + + + /**/src/it/projects/*/build.log + /**/src/it/projects/*/target/** + **/.externalToolBuilders/* + **/infinitest.filters + + velocity.log + CONTRIBUTING.md + README.md + **/*.json + **/spring.factories + **/spring.provides + **/*.iml + + + + + maven-surefire-report-plugin + + + + report-only + + + + + + org.codehaus.mojo + taglist-maven-plugin + 3.0.0 + + + + + Todo Work + + + todo + ignoreCase + + + FIXME + exact + + + + + Deprecated + + + @Deprecated + exact + + + + + + + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0 + + + + generate-no-fork + + + + + + org.jacoco + jacoco-maven-plugin + + + jacoco-aggregate + + report-integration + report + + + + + + + + + + fast + + true + true + + + install + + + + jdk8 + + [1.8,) + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + -Xdoclint:none + --allow-script-in-comments + + + + + + + + + docs + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-api-docs + + jar + + + + true + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + true + + + + + + apache-release + + + shiro.website + Apache Shiro Site + scm:svn:https://svn.apache.org/repos/asf/shiro/site/publish/static/${project.version} + + + + + + owasp + + + + org.owasp + dependency-check-maven + false + + false + ${root.dir}/src/owasp-suppression.xml + + + + + aggregate + + false + + + + + + + + + org.owasp + dependency-check-maven + false + + ${root.dir}/src/owasp-suppression.xml + OWASP Dependency Check + + + + + aggregate + + + + + + + + + ci + + false + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + japicmp + + cmp + + + + + + + + + run-its + + + + org.codehaus.mojo + mrm-maven-plugin + 1.5.0 + + + + start + stop + + + + + mrm.repository.url + + + src/it/mrm/repository + + + + + + + org.apache.maven.plugins + maven-invoker-plugin + 3.6.0 + + ${project.build.directory}/local-repo + + + 1 + + ${project.build.directory}/local-repo + src/it/projects + + */pom.xml + + src/it/mrm/settings.xml + + ${mrm.repository.url} + + + clean + package + + + + + integration-test + + install + integration-test + verify + + + + + + + + + diff --git a/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom.sha1 new file mode 100644 index 000000000..b61175551 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom.sha1 @@ -0,0 +1 @@ +eb3861df01f9aa2792580e942625ca3bd9cd13db \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-root/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-root/2.0.1/_remote.repositories new file mode 100644 index 000000000..6ed5d025a --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-root/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:19 EDT 2024 +shiro-root-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom new file mode 100644 index 000000000..58a7f32c1 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom @@ -0,0 +1,1848 @@ + + + + 4.0.0 + + + + org.apache + apache + 32 + + + org.apache.shiro + shiro-root + pom + 2.0.1 + + Apache Shiro + https://shiro.apache.org/ + + Apache Shiro is a powerful and flexible open-source security framework that cleanly handles + authentication, authorization, enterprise session management, single sign-on and cryptography services. + + 2004 + + + scm:git:https://gitbox.apache.org/repos/asf/shiro.git + scm:git:https://gitbox.apache.org/repos/asf/shiro.git + https://github.com/apache/shiro/tree/${project.scm.tag} + shiro-root-2.0.1 + + + Jira + https://issues.apache.org/jira/browse/SHIRO + + + Jenkins + https://builds.apache.org/job/Shiro/ + + + + + shiro.website + Apache Shiro Site + scp://people.apache.org/www/shiro.apache.org/static/latest + + https://shiro.apache.org/download.html + + + + 1.13.0 + + ${user.name}-${maven.build.timestamp} + 2024-05-25T17:49:17Z + true + + + + + false + nexus-staging + + + [2, 3) + [1.1,2) + + + + 1.9.20.1 + 1.9.4 + 1.8.0 + 3.2.2 + 2.10.1 + 3.14.0 + 1.3.2 + 1.8 + + 2.6.11 + + 5.3.7 + 2.7.2 + 1.3.2 + 1.1.1 + 11 + 9.4.54.v20240208 + 1.2.3 + + 2.3.2 + 2.3.0 + 2.0.13 + 2.23.1 + 5.3.36 + 2.7.18 + 4.2.3 + 2.1.6 + 4.1.0 + 1.78.1 + + + 5.2.0 + 5.12.0 + 1.14.16 + 3.0.2 + 4.0.21 + 5.10.2 + 3.1.1 + 5.6.15.Final + 1.2.5 + 1.3.5 + 1.18.32 + + ${jdk.version} + + + ${root.dir}/src/checkstyle.xml + ${root.dir}/src/suppressions.xml + + + + lang + crypto + event + cache + config + core + web + support + tools + bom + integration-tests + samples + test-coverage + + + + + Apache Shiro Users Mailing List + user-subscribe@shiro.apache.org + user-unsubscribe@shiro.apache.org + user@shiro.apache.org + + + + + Apache Shiro Developers Mailing List + dev-subscribe@shiro.apache.org + dev-unsubscribe@shiro.apache.org + dev@shiro.apache.org + + + + + + + + + aditzel + Allan Ditzel + aditzel@apache.org + http://www.allanditzel.com + Apache Software Foundation + -5 + + + jhaile + Jeremy Haile + jhaile@apache.org + http://www.jeremyhaile.com + Mobilization Labs + http://www.mobilizationlabs.com + -5 + + + lhazlewood + Les Hazlewood + lhazlewood@apache.org + http://www.leshazlewood.com + Stormpath + https://www.stormpath.com + -8 + + + kaosko + Kalle Korhonen + kaosko@apache.org + https://www.tynamo.org + Apache Software Foundation + -8 + + + pledbrook + Peter Ledbrook + p.ledbrook@cacoethes.co.uk + https://www.cacoethes.co.uk/ + SpringSource + https://spring.io/ + 0 + + + tveil + Tim Veil + tveil@apache.org + + + bdemers + Brian Demers + bdemers@apache.org + https://stormpath.com/blog/author/bdemers + Stormpath + https://stormpath.com/ + -5 + + PMC Chair + + + + jbunting + Jared Bunting + jbunting@apache.org + Apache Software Foundation + -6 + + + fpapon + Francois Papon + fpapon@apache.org + Yupiik + https://www.yupiik.com/ + +4 + + + bmarwell + Benjamin Marwell + bmarwell@apache.org + Europe/Berlin + + + lprimak + Lenny Primak + lprimak@apache.org + US/Central + https://hope.nyc.ny.us + Flow Logix + https://www.flowlogix.com/ + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + @{jacocoAgent} @{surefire.argLine} + kill + native + false + true + + + junit.jupiter.execution.parallel.enabled = true + junit.jupiter.execution.parallel.mode.default = concurrent + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + @{jacocoAgent} @{failsafe.argLine} + false + true + + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-javadoc-plugin + + org.apache.shiro.samples.* + true + + https://docs.oracle.com/javase/${jdk.version}/docs/api/ + https://www.slf4j.org/api/ + https://docs.spring.io/spring/docs/${spring.version}/javadoc-api/ + https://docs.spring.io/spring-boot/docs/${spring-boot.version}/api/ + https://junit.org/junit5/docs/${junit.version}/api/ + https://www.quartz-scheduler.org/api/${quartz.docs.version}/ + + + + + org.apache.maven.plugins + maven-war-plugin + 3.4.0 + + + org.apache.maven.plugins + maven-help-plugin + 3.4.0 + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + + + org.apache.maven.plugins + maven-site-plugin + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.2.1 + + + org.apache.rat + apache-rat-plugin + + + + **/.externalToolBuilders/* + **/infinitest.filters + + velocity.log + CONTRIBUTING.md + **/README.md + **/*.json + **/spring.factories + **/org.springframework.boot.autoconfigure.AutoConfiguration.imports + **/spring.provides + **/*.iml + **/target/** + **/nb-configuration.xml + **/faces-config.NavData + **/org.mockito.plugins.MockMaker + .mvn/* + + + + + org.codehaus.mojo + versions-maven-plugin + 2.16.2 + + + + org.codehaus.gmavenplus + gmavenplus-plugin + ${gmaven.version} + + + org.apache.groovy + groovy-all + ${groovy.version} + runtime + pom + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.6.0 + + + org.jacoco + jacoco-maven-plugin + 0.8.12 + + + com.mycila + license-maven-plugin + 4.5 + + true +
${root.dir}/src/license/header.txt
+ + ${root.dir}/src/license/header_format.xml + + + **/*.txt + +
+
+ + org.eclipse.jetty + jetty-maven-plugin + ${jetty.version} + + / + + 9080 + 60000 + + + ./target/yyyy_mm_dd.request.log + 90 + true + false + GMT + + + + + org.owasp + dependency-check-maven + 9.2.0 + + + com.github.siom79.japicmp + japicmp-maven-plugin + 0.21.2 + + + + ${project.groupId} + ${project.artifactId} + ${shiro.previousVersion} + jar + + + + true + true + true + ${root.dir}/src/japicmp/postAnalysisScript.groovy + + + + + org.codehaus.mojo + aspectj-maven-plugin + 1.15.0 + + ${maven.compiler.release} + ${maven.compiler.release} + ${maven.compiler.release} + true + + true + + + + aspectj-compile + + compile + test-compile + + + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + + + org.apache.maven.plugins + maven-shade-plugin + + + jakarta + package + + shade + + + false + true + jakarta + false + + + + + + + ${project.groupId}:${project.artifactId} + + + + + javax.annotation + jakarta.annotation + + javax.annotation.processing.** + + + + javax.enterprise + jakarta.enterprise + + javax.enterprise.deploy.** + + + + javax.inject + jakarta.inject + + + javax.json + jakarta.json + + + javax.servlet.http.HttpSessionContext + org.apache.shiro.web.servlet.HttpSessionContext + + + javax.servlet + jakarta.servlet + + + javax.websocket + jakarta.websocket + + + javax.ws.rs + jakarta.ws.rs + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.3.1 + + ${checkstyle.configLocation} + ${checkstyle.supressionsLocation} + true + true + true + true + true + true + test-keystore.jks,test-keystore.pem + root.dir=${root.dir} + + + + validate + + checkstyle + + + + + + com.puppycrawl.tools + checkstyle + 10.16.0 + + + +
+
+ + + org.apache.rat + apache-rat-plugin + + + rat-check + + check + + + + + + org.commonjava.maven.plugins + directory-maven-plugin + 1.0 + + + directories + + directory-of + + validate + + root.dir + + org.apache.shiro + shiro-root + + + + + + + maven-checkstyle-plugin + + + org.apache.maven.plugins + maven-compiler-plugin + + true + + -Xlint:deprecation + -Xlint:unchecked + + + + org.aspectj + aspectjweaver + ${aspectj.version} + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + integration-test + verify + + + + + + org.jacoco + jacoco-maven-plugin + + + org/apache/shiro/** + + + **/*$$FastClassBy*$$* + **/*$$EnhancerBy*CGLIB$$* + **/*$MockitoMock$* + **/*$HibernateProxy$* + org/apache/shiro/samples/guice/SampleShiroGuiceBootstrap + org/apache/shiro/samples/guice/SampleShiroServletModule + org/apache/shiro/**/*Test + org/apache/shiro/**/*Test$* + org/apache/shiro/**/*IT + org/apache/shiro/**/*IT$* + org/apache/shiro/**/__EJB31_Generated* + + org/apache/shiro/**/Deployments + + jacocoAgent + ${project.build.directory}/classes-jacoco + + + + prepare-agent + + prepare-agent + + + + prepare-agent-integration + pre-integration-test + + prepare-agent-integration + + + + + + + org.codehaus.gmavenplus + gmavenplus-plugin + + + + addTestSources + generateTestStubs + compileTests + removeTestStubs + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.2.0 + + + validate + + create + + + + + false + false + ${project.version} + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + true + true + + + org.apache.shiro.${module.name} + + + + + + + org.apache.maven.plugins + maven-doap-plugin + 1.2 + false + + + + + + + Java + + library, web-framework + + ${project.issueManagement.url} + ${project.inceptionYear}-01-01 + ${project.description} + ${project.distributionManagement.downloadUrl} + ${project.url} + ${project.url}/mail-lists.html + ${project.name} + A simple to use Java Security Framework. + ${project.organization.name} + + + + The mission of the Apache Shiro project is to create and maintain an easy to use authentication and authorization framework. + + + ${project.url} + ${project.name} + + + + + + site + pre-site + + generate + + + + + + + org.apache.maven.plugins + maven-release-plugin + + + false + true + true + validate + skip-checkstyle + deploy + docs,apache-release,${nexus-staging-profile} + forked-path + + + + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [3.5.0,4) + + + [11,) + + + + + + enforce-forbidden-dependencies + + enforce + + + true + + + + *:powermock-api-easymock + *:powermock-module-junit4 + + + + + + + + +
+ + + + + + org.junit.jupiter + junit-jupiter-api + test + + + org.junit.jupiter + junit-jupiter-engine + test + + + org.hamcrest + hamcrest-core + 2.2 + test + + + org.assertj + assertj-core + 3.25.3 + test + + + org.easymock + easymock + ${easymock.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + + org.apache.groovy + groovy + test + + + + + + + + org.apache.shiro + shiro-lang + ${project.version} + + + org.apache.shiro + shiro-cache + ${project.version} + + + org.apache.shiro + shiro-core + ${project.version} + + + org.apache.shiro + shiro-config-core + ${project.version} + + + org.apache.shiro + shiro-config-ogdl + ${project.version} + + + org.apache.shiro + shiro-crypto-core + ${project.version} + + + org.apache.shiro + shiro-crypto-hash + ${project.version} + + + org.apache.shiro.crypto + shiro-hashes-argon2 + ${project.version} + + + org.apache.shiro.crypto + shiro-hashes-bcrypt + ${project.version} + + + org.apache.shiro + shiro-crypto-cipher + ${project.version} + + + org.apache.shiro + shiro-event + ${project.version} + + + org.apache.shiro + shiro-web + ${project.version} + + + org.apache.shiro + shiro-servlet-plugin + ${project.version} + + + + + org.apache.shiro + shiro-aspectj + ${project.version} + + + org.apache.shiro + shiro-ehcache + ${project.version} + + + org.apache.shiro + shiro-quartz + ${project.version} + + + org.apache.shiro + shiro-spring + ${project.version} + + + org.apache.shiro + shiro-guice + ${project.version} + + + org.apache.shiro + shiro-hazelcast + ${project.version} + + + org.apache.shiro + shiro-jaxrs + ${project.version} + + + org.apache.shiro + shiro-all + ${project.version} + + + + + org.apache.shiro + shiro-core + ${project.version} + tests + test-jar + test + + + org.apache.shiro + shiro-config-ogdl + ${project.version} + tests + test-jar + test + + + org.apache.shiro.integrationtests + shiro-its-support + ${project.version} + + + org.apache.shiro.integrationtests + shiro-its-meecrowave-support + ${project.version} + + + org.apache.shiro.integrationtests.jaxrs + shiro-its-jaxrs + ${project.version} + pom + + + org.apache.shiro.integrationtests.jaxrs + shiro-its-jaxrs-app + ${project.version} + war + + + org.apache.shiro.integrationtests.jaxrs + shiro-its-jaxrs-app + ${project.version} + classes + jar + + + org.apache.shiro.integrationtests.jaxrs + shiro-its-jaxrs-tests + ${project.version} + jar + + + + + + + org.junit + junit-bom + ${junit.version} + import + pom + + + org.junit-pioneer + junit-pioneer + 2.2.0 + test + + + net.bytebuddy + byte-buddy + ${bytebuddy.version} + + + net.bytebuddy + byte-buddy-agent + ${bytebuddy.version} + + + + commons-cli + commons-cli + ${commons.cli.version} + + + javax.annotation + javax.annotation-api + ${javax.annotation.api.version} + + + org.aspectj + aspectjrt + ${aspectj.version} + + + org.aspectj + aspectjweaver + ${aspectj.version} + + + + + org.apache.commons + commons-configuration2 + ${commons.configuration2.version} + + + commons-logging + commons-logging + + + + + + org.owasp.encoder + encoder + ${owasp.java.encoder.version} + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + slf4j-simple + ${slf4j.version} + test + + + org.apache.logging.log4j + log4j-slf4j2-impl + ${log4j.version} + test + + + org.apache.logging.log4j + log4j-core-test + ${log4j.version} + test + + + + org.apache.logging.log4j + log4j-api + ${log4j.version} + test + + + org.apache.logging.log4j + log4j-core + ${log4j.version} + test + + + org.apache.logging.log4j + log4j-jul + ${log4j.version} + test + + + org.apache.logging.log4j + log4j-to-slf4j + ${log4j.version} + test + + + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + test + + + commons-beanutils + commons-beanutils + ${commons.beanutils.version} + + + commons-logging + commons-logging + + + + + org.hsqldb + hsqldb + ${hsqldb.version} + runtime + true + + + javax.servlet.jsp + jsp-api + 2.2 + provided + + + org.apache.taglibs + taglibs-standard-spec + ${taglibs.standard.version} + provided + + + org.apache.taglibs + taglibs-standard-impl + ${taglibs.standard.version} + provided + + + javax.servlet + javax.servlet-api + 4.0.1 + provided + + + org.apache.groovy + groovy + ${groovy.version} + + + net.sf.ehcache + ehcache-core + ${ehcache.version} + true + + + commons-logging + commons-logging + + + net.sf.ehcache + sizeof-agent + + + + + com.hazelcast + hazelcast + ${hazelcast.version} + + + org.htmlunit + htmlunit + ${htmlunit.version} + + + + org.hibernate + hibernate-core + ${hibernate.version} + true + + + commons-logging + commons-logging + + + ant + ant + + + + ant-launcher + + ant-launcher + + + c3p0 + c3p0 + + + + javax.security + + jacc + + + javax.servlet + javax.servlet-api + + + jboss + + jboss-cache + + + net.sf.ehcache + ehcache + + + asm + + asm-attrs + + + javax.transaction + jta + + + + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + 1.1.1 + runtime + true + + + org.springframework + spring-context + ${spring.version} + true + + + commons-logging + commons-logging + + + + + org.springframework + spring-web + ${spring.version} + + + commons-logging + commons-logging + + + + + org.springframework + spring-jdbc + ${spring.version} + true + + + commons-logging + commons-logging + + + + + org.springframework + spring-orm + ${spring.version} + true + + + commons-logging + commons-logging + + + + + org.springframework + spring-webmvc + ${spring.version} + true + + + commons-logging + commons-logging + + + + + org.springframework + spring-test + ${spring.version} + test + true + + + commons-logging + commons-logging + + + + + + + com.google.inject + guice + ${guice.version} + + + com.google.inject.extensions + guice-multibindings + ${guice.version} + + + com.google.inject.extensions + guice-servlet + ${guice.version} + + + org.quartz-scheduler + quartz + ${quartz.version} + true + + + com.github.mjeanroy + junit-servers-jetty-9 + ${junit.server.jetty.version} + + + + org.bouncycastle + bcprov-jdk18on + ${bouncycastle.version} + + + + + + + + + maven-javadoc-plugin + false + + + + + ]]> + + + + javadoc-aggregate + + aggregate-no-fork + + + + + + maven-jxr-plugin + 3.3.2 + + true + + + + + jxr-no-fork + + + + + + maven-pmd-plugin + 3.22.0 + + + maven-project-info-reports-plugin + + + false + + + + org.apache.rat + apache-rat-plugin + 0.16.1 + + false + + + + **/.externalToolBuilders/* + **/infinitest.filters + + velocity.log + CONTRIBUTING.md + **/README.md + **/*.json + **/spring.factories + **/org.springframework.boot.autoconfigure.AutoConfiguration.imports + **/spring.provides + **/*.iml + **/target/** + **/nb-configuration.xml + **/faces-config.NavData + **/org.mockito.plugins.MockMaker + .mvn/* + + + + + maven-surefire-report-plugin + + + + report-only + + + + + + org.codehaus.mojo + taglist-maven-plugin + 3.0.0 + + + + + Todo Work + + + todo + ignoreCase + + + FIXME + exact + + + + + Deprecated + + + @Deprecated + exact + + + + + + + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0 + + + + generate-no-fork + + + + + + org.jacoco + jacoco-maven-plugin + + + jacoco-aggregate + + report-integration + report + + + + + + + + + + fast + + true + true + + + install + + + + jdk8 + + [1.8,) + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + ${project.build.sourceDirectory} + none + + --allow-script-in-comments + + + + + + + + + jdk11plus + + [11,) + + + + -XX:+IgnoreUnrecognizedVMOptions -Xshare:off + + + + docs + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-api-docs + + jar + + + + true + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + true + + + + + + apache-release + + + shiro.website + Apache Shiro Site + scm:svn:https://svn.apache.org/repos/asf/shiro/site/publish/static/${project.version} + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + 1.11 + + + source-release-checksum + + artifacts + + + + + + SHA-512 + SHA3-512 + + false + + + + + + + nexus-staging + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + https://repository.apache.org + apache.releases.https + ${nexus.deploy.skip} + + + + + + + + owasp + + + + org.owasp + dependency-check-maven + false + + ${root.dir}/src/owasp-suppression.xml + + + + + aggregate + + false + + + + + + + + + org.owasp + dependency-check-maven + false + + ${root.dir}/src/owasp-suppression.xml + OWASP Dependency Check + + + + + aggregate + + + + + + + + + ci + + false + + + + + + + + + + + + + + + + + + + + + + skip-checkstyle + + + checkstyle.skip + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + none + + + + + + + + + + + apache.snapshots + https://repository.apache.org/snapshots + + false + + + false + + + + + + apache.snapshots + https://repository.apache.org/snapshots + + false + + + false + + + +
diff --git a/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom.sha1 new file mode 100644 index 000000000..72cf5306a --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom.sha1 @@ -0,0 +1 @@ +e8545ea3a8c6ce1d3a8e881d238c7b825e4537e7 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-spring/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-spring/2.0.1/_remote.repositories new file mode 100644 index 000000000..477c2c494 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-spring/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:21 EDT 2024 +shiro-spring-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom new file mode 100644 index 000000000..488791c1d --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom @@ -0,0 +1,121 @@ + + + + + + org.apache.shiro + shiro-support + 2.0.1 + + + 4.0.0 + shiro-spring + Apache Shiro :: Support :: Spring + bundle + + spring + + + + + org.apache.shiro + shiro-core + + + org.apache.shiro + shiro-web + + + javax.servlet + javax.servlet-api + provided + + + org.springframework + spring-context + provided + + + org.springframework + spring-web + true + + + org.springframework + spring-webmvc + true + + + + org.slf4j + jcl-over-slf4j + test + + + org.apache.logging.log4j + log4j-slf4j2-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + org.springframework + spring-test + test + + + org.apache.shiro + shiro-aspectj + test + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.spring + org.apache.shiro.spring*;version=${project.version} + + org.apache.shiro*;version="${shiro.osgi.importRange}", + org.aopalliance*;version="[1.0.0, 2.0.0)", + org.springframework*;version="[4.0.0, 6.0.0)", + * + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + org.apache.maven.plugins + maven-shade-plugin + + + + + diff --git a/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom.sha1 new file mode 100644 index 000000000..b30cf8c53 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom.sha1 @@ -0,0 +1 @@ +37b23606fb1079377fb7e077546ac25353ecb851 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-support/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-support/2.0.1/_remote.repositories new file mode 100644 index 000000000..27a50d38c --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-support/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:21 EDT 2024 +shiro-support-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom new file mode 100644 index 000000000..5a05f6820 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom @@ -0,0 +1,48 @@ + + + + + + org.apache.shiro + shiro-root + 2.0.1 + + + 4.0.0 + shiro-support + Apache Shiro :: Support + pom + + + aspectj + jcache + ehcache + hazelcast + quartz + spring + guice + spring-boot + servlet-plugin + jaxrs + features + cdi + jakarta-ee + + diff --git a/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom.sha1 new file mode 100644 index 000000000..6cc4f255d --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom.sha1 @@ -0,0 +1 @@ +33aec83a1c16a8a2fbcac2f17a92929fea372a86 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-web/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-web/1.13.0/_remote.repositories new file mode 100644 index 000000000..256f29813 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-web/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:23 EDT 2024 +shiro-web-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom new file mode 100644 index 000000000..7744f7b6e --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom @@ -0,0 +1,116 @@ + + + + + + + org.apache.shiro + shiro-root + 1.13.0 + + + 4.0.0 + shiro-web + Apache Shiro :: Web + bundle + + + + org.apache.shiro + shiro-core + + + javax.servlet.jsp + jsp-api + + + org.apache.taglibs + taglibs-standard-spec + + + org.apache.taglibs + taglibs-standard-impl + + + javax.servlet + javax.servlet-api + + + org.owasp.encoder + encoder + + + + org.apache.shiro + shiro-config-ogdl + tests + test-jar + test + + + org.apache.shiro + shiro-core + tests + test-jar + test + + + org.slf4j + jcl-over-slf4j + + + org.apache.logging.log4j + log4j-slf4j-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.web + org.apache.shiro.web*;version=${project.version} + + + org.apache.shiro*;version="${shiro.osgi.importRange}", + javax.servlet.jsp*;resolution:=optional, + * + + + + + + org.apache.maven.plugins + maven-shade-plugin + + + + + diff --git a/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom.sha1 new file mode 100644 index 000000000..f151a1743 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom.sha1 @@ -0,0 +1 @@ +7cb89a4e3ed028eee8de5eb1f1fcc2f177422f3f \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-web/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-web/2.0.1/_remote.repositories new file mode 100644 index 000000000..93017a9c2 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-web/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:21 EDT 2024 +shiro-web-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom new file mode 100644 index 000000000..6f5f5abe7 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom @@ -0,0 +1,126 @@ + + + + + + + org.apache.shiro + shiro-root + 2.0.1 + + + 4.0.0 + shiro-web + Apache Shiro :: Web + bundle + + web + + + + + org.apache.shiro + shiro-core + + + javax.servlet.jsp + jsp-api + + + org.apache.taglibs + taglibs-standard-spec + + + org.apache.taglibs + taglibs-standard-impl + + + javax.servlet + javax.servlet-api + + + org.owasp.encoder + encoder + + + + org.apache.shiro + shiro-config-ogdl + tests + test-jar + test + + + org.apache.shiro + shiro-core + tests + test-jar + test + + + org.slf4j + jcl-over-slf4j + + + org.apache.logging.log4j + log4j-slf4j2-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + org.junit.jupiter + junit-jupiter-params + test + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.web + org.apache.shiro.web*;version=${project.version} + + + org.apache.shiro*;version="${shiro.osgi.importRange}", + javax.servlet.jsp*;resolution:=optional, + * + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + org.apache.maven.plugins + maven-shade-plugin + + + + + diff --git a/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom.sha1 new file mode 100644 index 000000000..82f9ce3da --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom.sha1 @@ -0,0 +1 @@ +51501b418e408a00b990f5e6de5c14611b620cfb \ No newline at end of file diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/_remote.repositories b/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/_remote.repositories new file mode 100644 index 000000000..fbf4399f3 --- /dev/null +++ b/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +tomcat-embed-core-10.1.20.pom>central= diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom b/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom new file mode 100644 index 000000000..2f3838cb4 --- /dev/null +++ b/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom @@ -0,0 +1,43 @@ + + + + 4.0.0 + org.apache.tomcat.embed + tomcat-embed-core + 10.1.20 + Core Tomcat implementation + https://tomcat.apache.org/ + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + org.apache.tomcat + tomcat-annotations-api + 10.1.20 + compile + + + diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom.sha1 b/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom.sha1 new file mode 100644 index 000000000..f28122475 --- /dev/null +++ b/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom.sha1 @@ -0,0 +1 @@ +1db714fe01b57f462728aa3556cc620e39fccf59 \ No newline at end of file diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/_remote.repositories b/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/_remote.repositories new file mode 100644 index 000000000..0cf743fd1 --- /dev/null +++ b/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +tomcat-embed-el-10.1.20.pom>central= diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom b/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom new file mode 100644 index 000000000..87ccba6e7 --- /dev/null +++ b/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom @@ -0,0 +1,35 @@ + + + + 4.0.0 + org.apache.tomcat.embed + tomcat-embed-el + 10.1.20 + Core Tomcat implementation + https://tomcat.apache.org/ + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom.sha1 b/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom.sha1 new file mode 100644 index 000000000..de1d11472 --- /dev/null +++ b/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom.sha1 @@ -0,0 +1 @@ +974d438046df1e175440be5cf47b83acfcc06ee0 \ No newline at end of file diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/_remote.repositories b/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/_remote.repositories new file mode 100644 index 000000000..9203388ad --- /dev/null +++ b/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +tomcat-embed-websocket-10.1.20.pom>central= diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom b/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom new file mode 100644 index 000000000..f4320763c --- /dev/null +++ b/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom @@ -0,0 +1,43 @@ + + + + 4.0.0 + org.apache.tomcat.embed + tomcat-embed-websocket + 10.1.20 + Core Tomcat implementation + https://tomcat.apache.org/ + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + org.apache.tomcat.embed + tomcat-embed-core + 10.1.20 + compile + + + diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom.sha1 b/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom.sha1 new file mode 100644 index 000000000..8ef758f9e --- /dev/null +++ b/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom.sha1 @@ -0,0 +1 @@ +493cc7e556bc2be3fbe6e867e0b0c51faf247b3d \ No newline at end of file diff --git a/code/arachne/org/apache/velocity/velocity-engine-core/2.3/_remote.repositories b/code/arachne/org/apache/velocity/velocity-engine-core/2.3/_remote.repositories new file mode 100644 index 000000000..316c585d5 --- /dev/null +++ b/code/arachne/org/apache/velocity/velocity-engine-core/2.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:41 EDT 2024 +velocity-engine-core-2.3.pom>central= diff --git a/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom b/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom new file mode 100644 index 000000000..5bf4f7611 --- /dev/null +++ b/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom @@ -0,0 +1,293 @@ + + + + velocity-engine-parent + org.apache.velocity + 2.3 + + 4.0.0 + velocity-engine-core + Apache Velocity - Engine + + + + maven-source-plugin + + + maven-resources-plugin + + + generate-parser-grammar + generate-sources + + copy-resources + + + false + + ${*} + + + + src/main/parser + true + + + ${project.build.directory}/parser + + + + expose-parser-grammar + process-resources + + copy-resources + + + + + src/main/parser + false + + + ${project.build.outputDirectory}/org/apache/velocity/runtime/parser + + + + + + maven-shade-plugin + 3.2.1 + + + shade + package + + shade + + + + + commons-io:commons-io + + + org.slf4j:slf4j-api + + + + + org.apache.commons.io + org.apache.velocity.shaded.commons.io + + + true + + + + + + org.codehaus.mojo + javacc-maven-plugin + 2.6 + + + jjtree-javacc + + jjtree-javacc + + + + Parser.jjt + + + + + + false + true + false + true + ${parser.debug} + ${parser.debug} + ${parser.debug} + ${maven.compiler.target} + true + org.apache.velocity.runtime.parser.node + ${project.build.directory}/parser + true + + + + com.google.code.maven-replacer-plugin + replacer + + + patch-parser-files + process-sources + + replace + + + ${project.build.directory}/generated-sources/javacc/org/apache/velocity/runtime/parser/TokenMgrError.java + + + static final int + public static final int + + + + + + + + org.codehaus.mojo + templating-maven-plugin + 1.0.0 + + + filter-src + + filter-sources + + + + + + org.apache.felix + maven-bundle-plugin + + + org.apache.velocity.* + !org.apache.commons.io, + * + + + + + maven-surefire-plugin + ${surefire.plugin.version} + + + integration-test + integration-test + + test + + + false + + + + + ${maven.test.skip} + + + test + ${test} + + + test.compare.dir + ${project.build.testOutputDirectory} + + + test.result.dir + ${project.build.directory}/results + + + org.slf4j.simpleLogger.defaultLogLevel + warn + + + org.slf4j.simpleLogger.logFile + ${project.build.directory}/velocity.log + + + test.jdbc.driver.className + ${test.jdbc.driver.className} + + + test.jdbc.uri + ${test.jdbc.uri} + + + test.jdbc.login + ${test.jdbc.login} + + + test.jdbc.password + ${test.jdbc.password} + + + + + + + + + org.apache.commons + commons-lang3 + 3.11 + compile + + + org.slf4j + slf4j-api + 1.7.30 + compile + + + junit + junit + 4.13.2 + test + + + hamcrest-core + org.hamcrest + + + + + org.hsqldb + hsqldb + 2.5.1 + test + + + org.slf4j + slf4j-simple + 1.7.30 + test + + + + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.5 + + true + Low + Max + src/etc/build/findbugs-exclude.xml + target/site + + + + + + 2.5.1 + Standard + jdbc:hsqldb:. + # + hsqldb + false + $ + sa + * + @ + org.hsqldb.jdbcDriver + org.hsqldb + org.apache.velocity.runtime.parser + + diff --git a/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom.sha1 b/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom.sha1 new file mode 100644 index 000000000..e58f43443 --- /dev/null +++ b/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom.sha1 @@ -0,0 +1 @@ +108b42b3bd541f982b696293015ae192a3acb2a1 \ No newline at end of file diff --git a/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/_remote.repositories b/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/_remote.repositories new file mode 100644 index 000000000..f81982007 --- /dev/null +++ b/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:42 EDT 2024 +velocity-engine-parent-2.3.pom>central= diff --git a/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom b/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom new file mode 100644 index 000000000..edab8b660 --- /dev/null +++ b/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom @@ -0,0 +1,371 @@ + + + + + 4.0.0 + + + org.apache.velocity + velocity-master + 4 + + + + velocity-engine-parent + 2.3 + + Apache Velocity + http://velocity.apache.org/engine/devel/ + Apache Velocity is a general purpose template engine. + 2000 + pom + + + UTF-8 + 4.13.2 + 1.7.30 + 2.22.1 + https://issues.apache.org/jira/browse + 1.8 + 1.8 + + + + install + + + + maven-release-plugin + 3.0.0-M1 + + false + true + deploy + -Papache-release + + + + maven-jar-plugin + 3.1.2 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.felix + maven-bundle-plugin + 3.5.1 + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-resources-plugin + 3.1.0 + + + com.google.code.maven-replacer-plugin + replacer + 1.5.3 + + + org.apache.maven.plugins + maven-clean-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.1.0 + + false + + + + attach-sources + + jar-no-fork + + + + + + org.codehaus.mojo + extra-enforcer-rules + + + org.apache.maven.plugins + maven-assembly-plugin + 3.2.0 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + true + true + ${maven.compiler.source} + ${maven.compiler.target} + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.1.1 + + + none + + + + aggregate + + aggregate + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-bytecode-version + + enforce + + + + + ${maven.compiler.target} + + + [1.8,) + + + true + + + + ban-known-bad-maven-versions + + enforce + + + + + [3.0.5,) + Maven minimal expected version is 3.0.5. + + + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.3 + + + + + + + + + velocity.apache.org + scpexe://people.apache.org/www/velocity.apache.org/engine/devel/ + + + + + + scm:git:https://gitbox.apache.org/repos/asf/velocity-engine.git + scm:git:https://gitbox.apache.org/repos/asf/velocity-engine.git + https://gitbox.apache.org/repos/asf?p=velocity-engine.git + 2.3-RC2 + + + + JIRA + ${jira.browse.url}/VELOCITY + + + velocity-engine-core + velocity-engine-examples + velocity-engine-scripting + velocity-custom-parser-example + spring-velocity-support + + + + + + Adrian Tarau + + + Aki Nieminen + + + Alexey Pachenko + + + Anil K. Vijendran + + + Attila Szegedi + + + Bob McWhirter + + + Byron Foster + + + Candid Dauth + + + Christoph Reck + + + Darren Cruse + + + Dave Bryson + + + David Kinnvall + + + Dawid Weiss + + + Dishara Wijewardana + + + Eelco Hillenius + + + Fedor Karpelevitch + + + Felipe Maschio + + + Gal Shachor + + + Hervé Boutemy + + + Jarkko Viinamäki + + + Jeff Bowden + + + Jorgen Rydenius + + + Jose Alberto Fernandez + + + Kasper Nielsen + + + Kent Johnson + + + Kyle F. Downey + + + Leon Messerschmidt + + + Llewellyn Falco + + + Matt Raible + + + Matt Ryall + + + Matthijs Lambooy + + + Oswaldo Hernandez + + + Paulo Gaspar + + + Peter Romianowski + + + Robert Burrell Donkin + + + Robert Fuller + + + Sam Ruby + + + Sean Legassick + + + Serge Knystautas + + + Stephane Bailliez + + + Stephen Habermann + + + Sylwester Lachiewicz + + + diff --git a/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom.sha1 b/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom.sha1 new file mode 100644 index 000000000..0337c559d --- /dev/null +++ b/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom.sha1 @@ -0,0 +1 @@ +a19e108639e1a877dfd8cd204756957638b817a7 \ No newline at end of file diff --git a/code/arachne/org/apache/velocity/velocity-master/4/_remote.repositories b/code/arachne/org/apache/velocity/velocity-master/4/_remote.repositories new file mode 100644 index 000000000..dfbb0ae2f --- /dev/null +++ b/code/arachne/org/apache/velocity/velocity-master/4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:42 EDT 2024 +velocity-master-4.pom>central= diff --git a/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom b/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom new file mode 100644 index 000000000..e2de7f8a3 --- /dev/null +++ b/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom @@ -0,0 +1,246 @@ + + + + 4.0.0 + + + org.apache + apache + 23 + + + org.apache.velocity + velocity-master + 4 + pom + + Velocity - Master POM + Master POM for Velocity + https://velocity.apache.org/ + 2000 + + + + Claude Brisson + cbrisson + http://claude.brisson.info + + Java developer + PMC Member + + + + Nathan Bubna + nbubna + nathan@esha.com + ESHA Research + + Java developer + PMC Chair + + + + Will Glass-Husain + wglass + wglass@forio.com + Forio Business Simulations + + Java developer + PMC Member + + + + Marinó A. Jónsson + marino + marinoj@centrum.is + + Java developer + PMC Member + + + + Geir Magnusson Jr. + geirm + geirm@optonline.net + Independent (DVSL Maven) + + Java developer + PMC Member + + + + Daniel Rall + dlr + dlr@finemaltcoding.com + CollabNet, Inc. + + Java developer + PMC Member + + + + Henning P. Schmiedehausen + henning + The Henning Schmiedehausen Organization + + Java developer + PMC Member + + -7 + + + Jon S. Stevens + jons + + Emeritus + + + + Jason van Zyl + jvanzyl + + Emeritus + + + + Christopher Schultz + schultz + + Java developer + + -5 + + + Sergiu Dumitriu + sdumitriu + http://purl.org/net/sergiu + -4 + + PMC Member + + + + Dishara Wijewardana + dishara + + Java developer + + + + Mike Kienenberger + mkienenb + + Java developer + + + + Michael Osipov + michaelo + michaelo@apache.org + + Java developer + PMC Member + + Europe/Berlin + + + + + + general + general-subscribe@velocity.apache.org + general-unsubscribe@velocity.apache.org + general@velocity.apache.org + https://lists.apache.org/list.html?general@velocity.apache.org + + + user + user-subscribe@velocity.apache.org + user-unsubscribe@velocity.apache.org + user@velocity.apache.org + https://lists.apache.org/list.html?user@velocity.apache.org + + + dev + dev-subscribe@velocity.apache.org + dev-unsubscribe@velocity.apache.org + dev@velocity.apache.org + https://lists.apache.org/list.html?dev@velocity.apache.org + + + commits + commits-subscribe@velocity.apache.org + commits-unsubscribe@velocity.apache.org + https://lists.apache.org/list.html?commits@velocity.apache.org + + + + + scm:git:https://gitbox.apache.org/repos/asf/velocity-master.git + scm:git:https://gitbox.apache.org/repos/asf/velocity-master.git + https://gitbox.apache.org/repos/asf?p=velocity-master.git + velocity-master-4 + + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M1 + + true + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + enforce-bytecode-version + + enforce + + + + + ${maven.compiler.target} + + + true + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.3 + + + + + + + diff --git a/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom.sha1 b/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom.sha1 new file mode 100644 index 000000000..f94791010 --- /dev/null +++ b/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom.sha1 @@ -0,0 +1 @@ +d1cafcce1773b4e8762a527bf0a9afb52b1b687b \ No newline at end of file diff --git a/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/_remote.repositories b/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/_remote.repositories new file mode 100644 index 000000000..c66a84bc5 --- /dev/null +++ b/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:59 EDT 2024 +xmlbeans-2.6.0.pom>central= diff --git a/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom b/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom new file mode 100644 index 000000000..516f6dc90 --- /dev/null +++ b/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom @@ -0,0 +1,99 @@ + + 4.0.0 + org.apache.xmlbeans + xmlbeans + 2.6.0 + + XmlBeans + XmlBeans main jar + http://xmlbeans.apache.org + + + jira + http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10436 + + + + + XmlBeans User List + user-subscribe@xmlbeans.apache.org + users-unsubscribe@xmlbeans.apache.org + http://mail-archives.apache.org/mod_mbox/xmlbeans-user/ + + + XmlBeans Developer List + dev-subscribe@xmlbeans.apache.org + dev-unsubscribe@xmlbeans.apache.org + http://mail-archives.apache.org/mod_mbox/xmlbeans-dev/ + + + Source Control List + commits-subscribe@xmlbeans.apache.org + commits-unsubscribe@xmlbeans.apache.org + http://mail-archives.apache.org/mod_mbox/xmlbeans-commits/ + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:svn:https://svn.apache.org/repos/asf/xmlbeans/ + scm:svn:https://${maven.username}@svn.apache.org/repos/asf/xmlbeans/ + https://svn.apache.org/repos/asf/xmlbeans/ + + + + XmlBeans + http://xmlbeans.apache.org/ + + + + + Cezar Andrei + cezar + cezar.andrei@no#spam#!gma|l.com + + + + + Radu Preotiuc + radup + radupr@nos#pam.gm@il.com + + + + Radu Preotiuc + radup + radu.preotiuc-pietro@nos#pam.bea.com + + + + Wing Yew Poon + wpoon + wing-yew.poon@nos#pam.oracle.com + + + + Jacob Danner + jdanner + jacob.danner@nos#pam.oracle.com + + + + + + + + stax + stax-api + 1.0.1 + + + + diff --git a/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom.sha1 b/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom.sha1 new file mode 100644 index 000000000..26b60c5a4 --- /dev/null +++ b/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom.sha1 @@ -0,0 +1 @@ +f1d5251b50228c13f6ee0ee9a45f9cac71d3f2cf \ No newline at end of file diff --git a/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/_remote.repositories b/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/_remote.repositories new file mode 100644 index 000000000..66cb33017 --- /dev/null +++ b/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:10 EDT 2024 +cas-client-core-4.0.4.pom>central= diff --git a/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom b/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom new file mode 100644 index 000000000..ec06f2930 --- /dev/null +++ b/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom @@ -0,0 +1,106 @@ + + + + org.apereo.cas.client + 4.0.4 + cas-client + + 4.0.0 + cas-client-core + jar + Apereo CAS Client for Java - Core + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + test-jar + + + + + + + + + + xml-security + xmlsec + ${xmlsec.version} + runtime + true + + + + com.nimbusds + nimbus-jose-jwt + + + + com.fasterxml.jackson.core + jackson-databind + + + + org.springframework + spring-beans + ${spring.version} + provided + + + + org.springframework + spring-web + provided + + + + org.springframework + spring-test + test + + + + org.springframework + spring-core + test + + + + org.springframework + spring-context + test + + + + log4j + log4j + test + + + + diff --git a/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom.sha1 b/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom.sha1 new file mode 100644 index 000000000..7c129e0a3 --- /dev/null +++ b/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom.sha1 @@ -0,0 +1 @@ +c9737e420f307d060e061531623be7f9bd64408d \ No newline at end of file diff --git a/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/_remote.repositories b/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/_remote.repositories new file mode 100644 index 000000000..455100e4e --- /dev/null +++ b/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:10 EDT 2024 +cas-client-support-saml-4.0.4.pom>central= diff --git a/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom b/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom new file mode 100644 index 000000000..68b0c04f2 --- /dev/null +++ b/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom @@ -0,0 +1,58 @@ + + + + org.apereo.cas.client + 4.0.4 + cas-client + + 4.0.0 + cas-client-support-saml + jar + Apereo CAS Client for Java - SAML Protocol Support + + + + org.apereo.cas.client + cas-client-core + ${project.version} + + + + + org.apereo.cas.client + cas-client-core + ${project.version} + test-jar + test + + + org.springframework + spring-test + test + + + org.springframework + spring-core + test + + + diff --git a/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom.sha1 b/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom.sha1 new file mode 100644 index 000000000..a7107f683 --- /dev/null +++ b/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom.sha1 @@ -0,0 +1 @@ +d1469f59f6c3f672ead7c9b810fb417401bf4506 \ No newline at end of file diff --git a/code/arachne/org/apereo/cas/client/cas-client/4.0.4/_remote.repositories b/code/arachne/org/apereo/cas/client/cas-client/4.0.4/_remote.repositories new file mode 100644 index 000000000..b961331da --- /dev/null +++ b/code/arachne/org/apereo/cas/client/cas-client/4.0.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:10 EDT 2024 +cas-client-4.0.4.pom>central= diff --git a/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom b/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom new file mode 100644 index 000000000..b391a7070 --- /dev/null +++ b/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom @@ -0,0 +1,273 @@ + + + + org.sonatype.oss + oss-parent + 9 + + 4.0.0 + org.apereo.cas.client + 4.0.4 + cas-client + pom + + Apereo CAS Client for Java + + Apereo CAS Client for Java is the integration point for applications that want to speak with a CAS + server, either via the CAS 1.0 or CAS 2.0/3.0 protocol. + + https://www.apereo.org/cas + + + scm:git:git@github.com:apereo/java-cas-client.git + scm:git:git@github.com:apereo/java-cas-client.git + https://github.com/apereo/java-cas-client + + + + + sonatype-releases + https://oss.sonatype.org/content/repositories/releases/ + + + spring-milestones + https://repo.spring.io/milestone + + + snapshots-snapshots + https://oss.sonatype.org/content/repositories/snapshots + false + true + + + + 2006 + + + Apereo + https://www.apereo.org + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven.assembly.plugin.version} + + + ${basedir}/assembly.xml + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven.compiler.plugin.version} + + ${project.build.sourceVersion} + ${project.build.targetVersion} + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven.surefire.plugin.version} + + + **/*Tests* + + false + 1 + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${maven.enforcer.plugin.version} + + + enforce-banned-dependencies + + enforce + + + + + + commons-logging + javax.servlet-api + javax.xml.bind + + + + true + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven.javadoc.plugin.version} + + none + + + + + + + + + + org.springframework + spring-core + ${spring.version} + + + commons-logging + commons-logging + + + + + + org.springframework + spring-context + ${spring.version} + + + + org.springframework + spring-web + ${spring.version} + + + + org.springframework + spring-test + ${spring.version} + test + + + + log4j + log4j + test + ${log4j.version} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version} + + + com.nimbusds + nimbus-jose-jwt + ${nimbus.jose.jwt.version} + true + + + + + + + junit + junit + ${junit4.version} + test + + + org.slf4j + slf4j-api + ${slf4j.version} + compile + + + commons-codec + commons-codec + ${commons.codec.version} + compile + + + org.bouncycastle + bcpkix-jdk15on + ${bouncycastle.version} + compile + + + jakarta.servlet + jakarta.servlet-api + ${javax.servlet.version} + jar + provided + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + test + + + org.slf4j + slf4j-simple + ${slf4j.version} + test + + + + + cas-client-core + cas-client-support-distributed-ehcache + cas-client-support-distributed-memcached + cas-client-support-saml + cas-client-support-springboot + + + + 4.13.2 + 6.1.2 + 3.10.8 + 2.0.11 + 2.16.1 + 6.0.0 + 1.16.0 + 1.2.17 + 1.3.0 + 1.70 + 3.2.1 + 6.2.1 + 9.37.3 + 3.12.1 + 3.4.1 + 3.2.5 + 3.6.0 + 3.6.3 + 3.3.0 + + 17 + 17 + UTF-8 + + diff --git a/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom.sha1 b/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom.sha1 new file mode 100644 index 000000000..9ddd38961 --- /dev/null +++ b/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom.sha1 @@ -0,0 +1 @@ +65b023fe37dfb7b918da1218a67b40c6b6f74e1c \ No newline at end of file diff --git a/code/arachne/org/apiguardian/apiguardian-api/1.1.2/_remote.repositories b/code/arachne/org/apiguardian/apiguardian-api/1.1.2/_remote.repositories new file mode 100644 index 000000000..e34f3a8f8 --- /dev/null +++ b/code/arachne/org/apiguardian/apiguardian-api/1.1.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:09 EDT 2024 +apiguardian-api-1.1.2.pom>central= diff --git a/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom b/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom new file mode 100644 index 000000000..d0c8ac109 --- /dev/null +++ b/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom @@ -0,0 +1,34 @@ + + + + + + + + 4.0.0 + org.apiguardian + apiguardian-api + 1.1.2 + org.apiguardian:apiguardian-api + @API Guardian + https://github.com/apiguardian-team/apiguardian + + + The Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + apiguardian + @API Guardian Team + team@apiguardian.org + + + + scm:git:git://github.com/apiguardian-team/apiguardian.git + scm:git:git://github.com/apiguardian-team/apiguardian.git + https://github.com/apiguardian-team/apiguardian + + diff --git a/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom.sha1 b/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom.sha1 new file mode 100644 index 000000000..0a0ab24fc --- /dev/null +++ b/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom.sha1 @@ -0,0 +1 @@ +ce9568cec632f7c99fb26d13c4d5c89517349f6b \ No newline at end of file diff --git a/code/arachne/org/aspectj/aspectjrt/1.9.22/_remote.repositories b/code/arachne/org/aspectj/aspectjrt/1.9.22/_remote.repositories new file mode 100644 index 000000000..728a65cd8 --- /dev/null +++ b/code/arachne/org/aspectj/aspectjrt/1.9.22/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:13 EDT 2024 +aspectjrt-1.9.22.pom>central= diff --git a/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom b/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom new file mode 100644 index 000000000..11c3647f6 --- /dev/null +++ b/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom @@ -0,0 +1,60 @@ + + + 4.0.0 + org.aspectj + aspectjrt + 1.9.22 + AspectJ Runtime + The AspectJ runtime is a small library necessary to run Java programs enhanced by AspectJ aspects during a previous + compile-time or post-compile-time (binary weaving) build step. + https://www.eclipse.org/aspectj/ + + + Eclipse Public License - v 2.0 + https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + repo + + + + + aclement + Andy Clement + aclement@vmware.com + + + kriegaex + Alexander Kriegisch + kriegaex@aspectj.dev + + + + scm:git:https://github.com/eclipse/org.aspectj.git + scm:git:ssh://git@github.com:eclipse/org.aspectj.git + https://github.com/eclipse/org.aspectj + + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + aspectj-site-local + file://C:\Users\alexa\Documents\java-src\AspectJ/aj-build/dist/site/aspectjrt + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + + + diff --git a/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom.sha1 b/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom.sha1 new file mode 100644 index 000000000..524e372fc --- /dev/null +++ b/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom.sha1 @@ -0,0 +1 @@ +ac8c7b3b5b91b334deada1a6c7d4b114f9fd9d41 \ No newline at end of file diff --git a/code/arachne/org/aspectj/aspectjweaver/1.9.22/_remote.repositories b/code/arachne/org/aspectj/aspectjweaver/1.9.22/_remote.repositories new file mode 100644 index 000000000..26d24b0ea --- /dev/null +++ b/code/arachne/org/aspectj/aspectjweaver/1.9.22/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:01 EDT 2024 +aspectjweaver-1.9.22.pom>central= diff --git a/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom b/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom new file mode 100644 index 000000000..8d7b558f6 --- /dev/null +++ b/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom @@ -0,0 +1,60 @@ + + + 4.0.0 + org.aspectj + aspectjweaver + 1.9.22 + AspectJ Weaver + The AspectJ weaver applies aspects to Java classes. It can be used as a Java agent in order to apply load-time + weaving (LTW) during class-loading and also contains the AspectJ runtime classes. + https://www.eclipse.org/aspectj/ + + + Eclipse Public License - v 2.0 + https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + repo + + + + + aclement + Andy Clement + aclement@vmware.com + + + kriegaex + Alexander Kriegisch + kriegaex@aspectj.dev + + + + scm:git:https://github.com/eclipse/org.aspectj.git + scm:git:ssh://git@github.com:eclipse/org.aspectj.git + https://github.com/eclipse/org.aspectj + + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + aspectj-site-local + file://C:\Users\alexa\Documents\java-src\AspectJ/aj-build/dist/site/aspectjweaver + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + + + diff --git a/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom.sha1 b/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom.sha1 new file mode 100644 index 000000000..8e0dd9c20 --- /dev/null +++ b/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom.sha1 @@ -0,0 +1 @@ +e65018322401e49f2ab948ff270f243d0a0d91d8 \ No newline at end of file diff --git a/code/arachne/org/assertj/assertj-bom/3.24.2/_remote.repositories b/code/arachne/org/assertj/assertj-bom/3.24.2/_remote.repositories new file mode 100644 index 000000000..779b59b39 --- /dev/null +++ b/code/arachne/org/assertj/assertj-bom/3.24.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:21 EDT 2024 +assertj-bom-3.24.2.pom>ohdsi= diff --git a/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom b/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom new file mode 100644 index 000000000..152bba5ab --- /dev/null +++ b/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom @@ -0,0 +1,124 @@ + + + 4.0.0 + org.assertj + assertj-bom + 3.24.2 + pom + AssertJ (Bill of Materials) + This Bill of Materials POM can be used to ease dependency management when referencing multiple AssertJ artifacts using Gradle or Maven. + https://assertj.github.io/doc/ + + AssertJ + https://assertj.github.io/doc/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + joel-costigliola + Joel Costigliola + joel.costigliola at gmail.com + + Owner + Developer + + + + scordio + Stefano Cordio + + Developer + + + + PascalSchumacher + Pascal Schumacher + + Developer + + + + epeee + Erhard Pointl + + Developer + + + + croesch + Christian Rösch + + Developer + + + + VanRoy + Julien Roy + + Developer + + + + regis1512 + Régis Pouiller + + Developer + + + + fbiville + Florent Biville + + Developer + + + + Patouche + Patrick Allain + + Developer + + + + + scm:git:https://github.com/assertj/assertj.git/assertj-bom + scm:git:https://github.com/assertj/assertj.git/assertj-bom + assertj-build-3.24.2 + https://github.com/assertj/assertj/assertj-bom + + + GitHub + https://github.com/assertj/assertj/issues + + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + + + + org.assertj + assertj-core + 3.24.2 + + + org.assertj + assertj-guava + 3.24.2 + + + + diff --git a/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.lastUpdated b/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.lastUpdated new file mode 100644 index 000000000..8b0f5aab4 --- /dev/null +++ b/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:21 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.assertj\:assertj-bom\:pom\:3.24.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139800192 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139800575 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139801183 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139801523 diff --git a/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.sha1 b/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.sha1 new file mode 100644 index 000000000..ff4270bd6 --- /dev/null +++ b/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.sha1 @@ -0,0 +1 @@ +d59e450a34f2dfdca03d035dbe1cb5fb132819de \ No newline at end of file diff --git a/code/arachne/org/assertj/assertj-build/3.24.2/_remote.repositories b/code/arachne/org/assertj/assertj-build/3.24.2/_remote.repositories new file mode 100644 index 000000000..7ef98afc0 --- /dev/null +++ b/code/arachne/org/assertj/assertj-build/3.24.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:08 EDT 2024 +assertj-build-3.24.2.pom>central= diff --git a/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom b/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom new file mode 100644 index 000000000..81af8ae25 --- /dev/null +++ b/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom @@ -0,0 +1,277 @@ + + + 4.0.0 + + org.assertj + assertj-build + 3.24.2 + pom + + AssertJ Build + AssertJ Build + ${project.organization.url} + + AssertJ + https://assertj.github.io/doc/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + joel-costigliola + Joel Costigliola + joel.costigliola at gmail.com + + Owner + Developer + + + + scordio + Stefano Cordio + + Developer + + + + PascalSchumacher + Pascal Schumacher + + Developer + + + + epeee + Erhard Pointl + + Developer + + + + croesch + Christian Rösch + + Developer + + + + VanRoy + Julien Roy + + Developer + + + + regis1512 + Régis Pouiller + + Developer + + + + fbiville + Florent Biville + + Developer + + + + Patouche + Patrick Allain + + Developer + + + + + + assertj-bom + assertj-parent + assertj-core + assertj-guava + assertj-tests + + + + scm:git:https://github.com/assertj/assertj.git + scm:git:https://github.com/assertj/assertj.git + https://github.com/assertj/assertj + assertj-build-3.24.2 + + + GitHub + https://github.com/assertj/assertj/issues + + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + + + + 4.1 + 3.1.0 + 3.0.1 + 2.5.3 + 1.6.13 + 3.9.1.2184 + + + + + + + com.mycila + license-maven-plugin + ${license-maven-plugin.version} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${maven-enforcer-plugin.version} + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven-gpg-plugin.version} + + + org.apache.maven.plugins + maven-release-plugin + ${maven-release-plugin.version} + + true + false + release + deploy + + + + org.sonarsource.scanner.maven + sonar-maven-plugin + ${sonar-maven-plugin.version} + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${nexus-staging-maven-plugin.version} + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + com.mycila + license-maven-plugin + + + + + 2012 + 2023 + + true + + src/**/*.java + + + src/ide-support/**/*.* + + + SLASHSTAR_STYLE + + Some files do not have the expected license header. Run license:format to update them. + + + + + check + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [3.5.0,) + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + false + + + + + + + release + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + --pinentry-mode + loopback + + + + + + + + + + + diff --git a/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom.sha1 b/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom.sha1 new file mode 100644 index 000000000..5aa2bc3b6 --- /dev/null +++ b/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom.sha1 @@ -0,0 +1 @@ +2f2c94bb193874bb72e7f7f6ed85b3e4bc8fa5dc \ No newline at end of file diff --git a/code/arachne/org/assertj/assertj-core/3.24.2/_remote.repositories b/code/arachne/org/assertj/assertj-core/3.24.2/_remote.repositories new file mode 100644 index 000000000..a6178d211 --- /dev/null +++ b/code/arachne/org/assertj/assertj-core/3.24.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:08 EDT 2024 +assertj-core-3.24.2.pom>central= diff --git a/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom b/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom new file mode 100644 index 000000000..34f34255c --- /dev/null +++ b/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom @@ -0,0 +1,535 @@ + + + 4.0.0 + + + org.assertj + assertj-parent + 3.24.2 + ../assertj-parent + + + assertj-core + + AssertJ Core + Rich and fluent assertions for testing in Java + ${project.organization.url}#${project.artifactId} + + + + -Dfile.encoding=${project.build.sourceEncoding} + -Dnet.bytebuddy.experimental=true + --add-opens=java.base/java.lang=ALL-UNNAMED + --add-opens=java.base/java.math=ALL-UNNAMED + --add-opens=java.base/java.util=ALL-UNNAMED + --add-opens=java.base/sun.nio.fs=ALL-UNNAMED + + -html5 --allow-script-in-comments + + 1.12.21 + 2.2 + + 1.0.3 + + + + + + net.bytebuddy + byte-buddy + ${byte-buddy.version} + + + net.bytebuddy + byte-buddy-agent + ${byte-buddy.version} + + + org.hamcrest + hamcrest + ${hamcrest.version} + + + org.jboss.logging + jboss-logging + 3.5.0.Final + + + + + + + net.bytebuddy + byte-buddy + + + + junit + junit + provided + true + + + + org.hamcrest + hamcrest-core + + + + + org.hamcrest + hamcrest + provided + true + + + org.junit.jupiter + junit-jupiter-api + provided + true + + + org.opentest4j + opentest4j + provided + true + + + + commons-io + commons-io + 2.11.0 + test + + + com.fasterxml.jackson.core + jackson-databind + 2.14.1 + test + + + com.google.guava + guava + 31.1-jre + test + + + jakarta.ws.rs + jakarta.ws.rs-api + 3.1.0 + test + + + nl.jqno.equalsverifier + equalsverifier + 3.12.3 + test + + + org.apache.commons + commons-collections4 + 4.4 + test + + + org.apache.commons + commons-lang3 + 3.12.0 + test + + + org.hibernate.orm + hibernate-core + 6.1.6.Final + test + + + jakarta.inject + jakarta.inject-api + + + + + org.junit-pioneer + junit-pioneer + 1.9.1 + test + + + org.junit.platform + junit-platform-testkit + test + + + org.assertj + assertj-core + + + + + org.junit.jupiter + junit-jupiter + test + + + + org.junit.vintage + junit-vintage-engine + test + + + org.mockito + mockito-core + test + + + org.mockito + mockito-junit-jupiter + test + + + org.springframework + spring-core + 5.3.24 + test + + + + + + + + net.alchim31.maven + yuicompressor-maven-plugin + 1.5.1 + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + com.mycila + license-maven-plugin + [2.6,) + + format + + + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + junit + junit + ${junit.version} + + + org.hamcrest + hamcrest + ${hamcrest.version} + + + org.junit.jupiter + junit-jupiter-api + ${junit-jupiter.version} + + + org.opentest4j + opentest4j + ${opentest4j.version} + + + + + org.assertj.core.internal + + + + + METHOD_NEW_DEFAULT + true + true + + + + true + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java-and-dependencies + + enforce + + + + + + net.bytebuddy:byte-buddy + + + org.assertj:assertj-core + org.hamcrest:hamcrest-core + *:*:*:jar:compile + + + + + [17,) + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + true + true + + + + jdk9 + + compile + + + 9 + + ${project.basedir}/src/main/java9 + + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M7 + + false + + org/assertj/core/internal/objects/Objects_assertHasOnlyFields_Test* + + random + + + + + false + + + + false + false + true + true + + + + false + false + true + true + true + + + + + org.jacoco + jacoco-maven-plugin + + + + BUNDLE + + + CLASS + COVEREDRATIO + 0.98 + + + + + + + + biz.aQute.bnd + bnd-maven-plugin + + + jar + + jar + + + + + + + + + net.alchim31.maven + yuicompressor-maven-plugin + + + generate-sources + + compress + + + + + src/main/javadoc + ${project.build.directory}/javadoc-stylesheet + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + en_US + + 8 + + ${project.build.directory}/javadoc-stylesheet/assertj-javadoc-min.css + + ${javadocAdditionalOptions} + true + + + + ]]> + + + + org.pitest + pitest-maven + 1.10.4 + + + org.pitest + pitest-junit5-plugin + 1.1.1 + + + com.groupcdg + pitest-git-plugin + ${cdg.pitest.version} + + + + 3 + false + false + + + + org.sonatype.plugins + nexus-staging-maven-plugin + + + + + + + pitest + + + + + + com.groupcdg + pitest-git-maven-plugin + ${cdg.pitest.version} + + + + + + org.pitest + pitest-maven + + + pitest + test-compile + + mutationCoverage + + + + + + + + + japicmp-branch + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + + ${japicmp.oldVersion.basedir}/target/${project.build.finalName}.${project.packaging} + + + + + + + + + + + diff --git a/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom.sha1 b/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom.sha1 new file mode 100644 index 000000000..80ae9c5b3 --- /dev/null +++ b/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom.sha1 @@ -0,0 +1 @@ +ce6d61d65a4c201608fbf7e1ded6a6118b13fbf5 \ No newline at end of file diff --git a/code/arachne/org/assertj/assertj-parent/3.24.2/_remote.repositories b/code/arachne/org/assertj/assertj-parent/3.24.2/_remote.repositories new file mode 100644 index 000000000..6c4b641bc --- /dev/null +++ b/code/arachne/org/assertj/assertj-parent/3.24.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:08 EDT 2024 +assertj-parent-3.24.2.pom>central= diff --git a/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom b/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom new file mode 100644 index 000000000..9e2cea5dd --- /dev/null +++ b/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom @@ -0,0 +1,358 @@ + + + 4.0.0 + + + org.assertj + assertj-build + 3.24.2 + + + assertj-parent + pom + + AssertJ Parent + Parent POM for all AssertJ modules + + + -Xdoclint:none + 8 + true + ${java.version} + ${java.version} + ${java.version} + UTF-8 + UTF-8 + + 4.13.2 + 5.9.1 + 4.11.0 + 1.2.0 + + 6.4.0 + 0.8.8 + 0.17.1 + 3.2.0 + 3.10.1 + 3.1.1 + 3.0.0 + 3.1.0 + 3.3.0 + 3.4.1 + 3.4.1 + 3.3.0 + 3.12.1 + 3.2.1 + 2.22.2 + 2.22.2 + 4.7.3.0 + 2.14.2 + + + + + + junit + junit + ${junit.version} + + + org.junit + junit-bom + ${junit-jupiter.version} + pom + import + + + org.mockito + mockito-bom + ${mockito.version} + pom + import + + + org.opentest4j + opentest4j + ${opentest4j.version} + + + + + + clean install + + + + biz.aQute.bnd + bnd-maven-plugin + ${bnd.version} + true + + + biz.aQute.bnd + bnd-resolver-maven-plugin + ${bnd.version} + + + biz.aQute.bnd + bnd-testing-maven-plugin + ${bnd.version} + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${japicmp-maven-plugin.version} + + + true + true + true + + true + + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs-maven-plugin.version} + + + org.jacoco + jacoco-maven-plugin + ${jacoco-maven-plugin.version} + + + + + BUNDLE + + + CLASS + COVEREDRATIO + 1 + + + INSTRUCTION + COVEREDRATIO + 0.80 + + + METHOD + COVEREDRATIO + 0.80 + + + BRANCH + COVEREDRATIO + 0.80 + + + COMPLEXITY + COVEREDRATIO + 0.80 + + + LINE + COVEREDRATIO + 0.80 + + + + + + + + prepare-agent + + prepare-agent + + + + jacoco-report + + report + + + + default-check + + check + + + + + + org.apache.maven.plugins + maven-clean-plugin + ${maven-clean-plugin.version} + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + org.apache.maven.plugins + maven-install-plugin + ${maven-install-plugin.version} + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${maven-project-info-reports-plugin.version} + + + org.apache.maven.plugins + maven-resources-plugin + ${maven-resources-plugin.version} + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${maven-surefire-report-plugin.version} + + + org.codehaus.mojo + versions-maven-plugin + ${versions-maven-plugin.version} + + + + + + org.apache.maven.plugins + maven-clean-plugin + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-deploy-plugin + + + org.apache.maven.plugins + maven-install-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + org.apache.maven.plugins + maven-resources-plugin + + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/*Test.java + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + false + + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + Max + + + + org.apache.maven.plugins + maven-site-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.codehaus.mojo + versions-maven-plugin + + + + + + + release + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + + + + + diff --git a/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom.sha1 b/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom.sha1 new file mode 100644 index 000000000..c0138fceb --- /dev/null +++ b/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom.sha1 @@ -0,0 +1 @@ +cf6a7c3d297703dc37abbb84873638b035d59f64 \ No newline at end of file diff --git a/code/arachne/org/awaitility/awaitility-parent/4.2.1/_remote.repositories b/code/arachne/org/awaitility/awaitility-parent/4.2.1/_remote.repositories new file mode 100644 index 000000000..07d326ab9 --- /dev/null +++ b/code/arachne/org/awaitility/awaitility-parent/4.2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:08 EDT 2024 +awaitility-parent-4.2.1.pom>central= diff --git a/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom b/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom new file mode 100644 index 000000000..e232a723d --- /dev/null +++ b/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom @@ -0,0 +1,297 @@ + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + org.awaitility + awaitility-parent + pom + 4.2.1 + + http://github.com/awaitility/awaitility + Awaitility Parent POM + A Java DSL for synchronizing asynchronous operations + 2010 + + + GitHub Issue Tracking + + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + Johan Haleby + johan.haleby + Parkster + https://www.parkster.se + + Developer + + + + + + http://github.com/awaitility/awaitility/tree/${scm.branch} + scm:git:git://github.com/awaitility/awaitility.git + scm:git:ssh://git@github.com/awaitility/awaitility.git + awaitility-4.2.1 + + + + Awaitility mailing-list + http://groups.google.com/group/awaitility/topics + + + + + ${maven.version} + + + + 2.1 + 1.8 + ${java.version} + ${java.version} + 2.10.4 + 3.5.0 + UTF-8 + master + 1.8.0-beta4 + plain + false + 3.2.5 + + + + awaitility + awaitility-scala + awaitility-groovy + awaitility-test-support + + + + + + + maven-compiler-plugin + 3.8.1 + + + maven-jar-plugin + 2.4 + + + maven-shade-plugin + 2.4.3 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + + + + maven-release-plugin + 2.5 + + true + + + + maven-compiler-plugin + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + ${project.build.sourceEncoding} + false + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.18 + + + org.codehaus.mojo.signature + java18 + 1.0 + + + + + check-java-compatibility + test + + check + + + + + + + maven-dependency-plugin + 3.0.1 + + + maven-help-plugin + 2.2 + + + org.codehaus.mojo + versions-maven-plugin + 2.3 + + + + + + + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + slf4j-jdk14 + ${slf4j.version} + + + + org.hamcrest + hamcrest + ${hamcrest.version} + + + junit + junit + 4.13.2 + + + org.hamcrest + hamcrest-core + + + + + org.awaitility + awaitility-test-support + ${project.version} + + + org.assertj + assertj-core + 3.21.0 + + + + + + + kotlin + + awaitility-kotlin + + + + osgi-tests + + awaitility-osgi-test + + + + modern-jvm + + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + --add-opens java.base/java.lang=ALL-UNNAMED + + + + + + + + + release + + awaitility-kotlin + awaitility-osgi-test + + + + + maven-source-plugin + 2.2.1 + + + attach-sources + + jar + + + + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + ${project.build.sourceEncoding} + false + + + + attach-javadocs + + jar + + + + + + + + + + diff --git a/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom.sha1 b/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom.sha1 new file mode 100644 index 000000000..4be98eadd --- /dev/null +++ b/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom.sha1 @@ -0,0 +1 @@ +32db009c4bec3e85ae20d000799f0028b4519546 \ No newline at end of file diff --git a/code/arachne/org/awaitility/awaitility/4.2.1/_remote.repositories b/code/arachne/org/awaitility/awaitility/4.2.1/_remote.repositories new file mode 100644 index 000000000..b5b08d86d --- /dev/null +++ b/code/arachne/org/awaitility/awaitility/4.2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:08 EDT 2024 +awaitility-4.2.1.pom>central= diff --git a/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom b/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom new file mode 100644 index 000000000..2429f6942 --- /dev/null +++ b/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom @@ -0,0 +1,86 @@ + + + + 4.0.0 + + org.awaitility + awaitility-parent + 4.2.1 + + awaitility + jar + http://awaitility.org + Awaitility + A Java DSL for synchronizing asynchronous operations + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + + NONE + + <_include>-bnd.bnd + + + + + process-classes + + manifest + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + jar + + + + + test-jar + + + + + + + + + org.hamcrest + hamcrest + + + junit + junit + test + + + org.awaitility + awaitility-test-support + test + + + diff --git a/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom.sha1 b/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom.sha1 new file mode 100644 index 000000000..21105ca29 --- /dev/null +++ b/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom.sha1 @@ -0,0 +1 @@ +aba3ab718e1fb74424595150ea467d24ac49afdc \ No newline at end of file diff --git a/code/arachne/org/basepom/basepom-foundation/55/_remote.repositories b/code/arachne/org/basepom/basepom-foundation/55/_remote.repositories new file mode 100644 index 000000000..3d6e84907 --- /dev/null +++ b/code/arachne/org/basepom/basepom-foundation/55/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:11 EDT 2024 +basepom-foundation-55.pom>central= diff --git a/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom b/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom new file mode 100644 index 000000000..a1aa6b6a7 --- /dev/null +++ b/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom @@ -0,0 +1,1181 @@ + + + + 4.0.0 + + org.basepom + basepom-foundation + pom + 55 + + + + + + UTF-8 + + 11 + + 11 + ${project.build.targetJdk} + ${project.build.targetJdk} + + UTF-8 + UTF-8 + + + + + + 1024 + ${basepom.build.maxheap-mb}m + + + + false + + + @{project.artifactId}-@{project.version} + + + true + + + none + + + public + + + + + + + + + ${skipTests} + + + 0.75C + true + 30 + + 256m + + + + + + + + + ${skipITs} + ${basepom.test.memory} + 0.5C + 30 + + + + + + src/it + + + false + + + false + + true + + false + + + 4 + + + + + + + false + + ${basepom.install.skip} + + + + false + + ${basepom.check.skip-all} + + ${basepom.check.skip-all} + + + ${basepom.check.skip-basic} + ${basepom.check.skip-basic} + ${basepom.check.skip-basic} + ${basepom.check.skip-basic} + ${basepom.check.skip-basic} + ${basepom.check.skip-basic} + + + ${basepom.check.skip-extended} + ${basepom.check.skip-extended} + + + true + true + + true + ${basepom.check.fail-all} + ${basepom.check.fail-all} + + + ${basepom.check.fail-basic} + ${basepom.check.fail-basic} + ${basepom.check.fail-basic} + ${basepom.check.fail-basic} + ${basepom.check.fail-basic} + ${basepom.check.fail-basic} + ${basepom.check.fail-basic} + + + ${basepom.check.fail-extended} + ${basepom.check.fail-extended} + + + false + false + + + error + + + false + false + true + false + + false + + + false + false + false + false + + + + ${project.name} + + + verify + verify + verify + verify + verify + + + false + ${basepom.at-end} + ${basepom.at-end} + + + true + + + false + true + true + false + ${java.io.tmpdir}/gh-pages-publish/${project.name} + Site checkin for project ${project.name} (${project.version}) + + + development + + main + + + + + + 3.6.0 + + + 6.55.0 + + + 10.12.2 + + + 4.7.3 + + + 1.13.2 + + + + + 3.3.1 + 3.11.0 + 3.1.1 + 3.1.2 + 3.1.1 + 3.3.1 + 4.0.0-M9 + 3.1.2 + + + 3.3.0 + 3.5.0 + 3.3.0 + + + 3.3.0 + 3.5.0 + 3.21.0 + + + 3.6.0 + 3.6.0 + 3.3.0 + 3.6.0 + 3.0.1 + 2.0.1 + 3.2.1 + + + 3.4.0 + + + 4.0.0 + + + + 2.0.1 + + + 4.7.3.5 + + + 0.8.10 + + + 3.1.1 + 1.0.1 + 1.0.1 + 1.0.0 + + + 6.0.0 + + + 2.1.1 + + + + + + + org.apache.maven.plugins + maven-scm-plugin + ${dep.plugin.scm.version} + + developerConnection + + + + + org.apache.maven.plugins + maven-deploy-plugin + ${dep.plugin.deploy.version} + + ${basepom.at-end.deploy} + ${basepom.deploy.skip} + + + + + org.apache.maven.plugins + maven-clean-plugin + ${dep.plugin.clean.version} + + + + org.apache.maven.plugins + maven-install-plugin + ${dep.plugin.install.version} + + ${basepom.at-end.install} + ${basepom.install.skip} + + + + + org.codehaus.mojo + build-helper-maven-plugin + ${dep.plugin.build-helper.version} + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${dep.plugin.enforcer.version} + + ${basepom.check.skip-enforcer} + ${basepom.check.fail-enforcer} + false + + + [${basepom.maven.version},) + + + ${project.build.systemJdk} + + + + basepom only supports JDK version 11 and above + [11,) + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + ${dep.plugin.dependency.version} + + + org.apache.maven.shared + maven-dependency-analyzer + ${dep.dependency-analyzer.version} + + + + ${basepom.check.skip-dependency} + ${basepom.check.fail-dependency} + true + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${dep.plugin.compiler.version} + + ${basepom.compiler.fail-warnings} + ${project.build.targetJdk} + ${maven.compiler.source} + ${maven.compiler.target} + ${project.build.sourceEncoding} + ${basepom.build.jvmsize} + true + ${basepom.compiler.use-incremental-compilation} + ${basepom.compiler.parameters} + + + + + + org.apache.maven.plugins + maven-resources-plugin + ${dep.plugin.resources.version} + + ${project.build.sourceEncoding} + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${dep.plugin.assembly.version} + + + true + + gnu + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${dep.plugin.surefire.version} + + ${basepom.test.skip} + @{basepom.coverage.test-args} -Xmx${basepom.test.memory} -Dfile.encoding=${project.build.sourceEncoding} ${basepom.test.arguments} + random + ${basepom.test.reuse-vm} + ${basepom.test.fork-count} + ${basepom.test.timeout} + ${basepom.test.groups} + false + + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${dep.plugin.failsafe.version} + + ${basepom.it.skip} + @{basepom.coverage.it-args} -Xmx${basepom.it.memory} -Dfile.encoding=${project.build.sourceEncoding} ${basepom.it.arguments} + random + ${basepom.failsafe.reuse-vm} + ${basepom.it.fork-count} + ${basepom.it.timeout} + ${basepom.it.groups} + false + + + + + org.apache.maven.plugins + maven-release-plugin + ${dep.plugin.release.version} + + true + forked-path + ${basepom.release.push-changes} + true + clean install + false + ${basepom.release.tag-name-format} + deploy + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${dep.plugin.javadoc.version} + + ${basepom.javadoc.skip} + ${basepom.check.fail-javadoc} + ${project.build.targetJdk} + ${maven.compiler.source} + ${project.build.sourceEncoding} + ${basepom.build.jvmsize} + true + ${basepom.javadoc.doclint} + ${basepom.javadoc.show} + ${basepom.javadoc.exclude-package-names} + + + + + org.apache.maven.plugins + maven-jar-plugin + ${dep.plugin.jar.version} + + + true + + + true + true + false + + + ${basepom.build.id} + ${project.name} + ${git.commit.id} + + + + ${project.groupId}:${project.artifactId} + + + ${git.build.time} + + ${git.branch} + ${git.commit.id} + ${git.commit.id.describe} + ${git.remote.origin.url} + + ${project.artifactId} + ${project.groupId} + ${project.name} + ${project.version} + + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + ${dep.plugin.source.version} + + + + org.basepom.maven + dependency-versions-check-maven-plugin + ${dep.plugin.dependency-versions-check.version} + + ${basepom.check.skip-dependency-versions-check} + ${basepom.check.fail-dependency-versions-check} + ${basepom.dvc.direct-only} + + + + + org.basepom.maven + dependency-management-maven-plugin + ${dep.plugin.dependency-management.version} + + ${basepom.check.skip-dependency-management} + ${basepom.check.fail-dependency-management} + + ${basepom.dependency-management.dependencies} + ${basepom.dependency-management.plugins} + ${basepom.dependency-management.allow-versions} + ${basepom.dependency-management.allow-exclusions} + + + + + + org.basepom.maven + dependency-scope-maven-plugin + ${dep.plugin.dependency-scope.version} + + ${basepom.check.skip-dependency-scope} + ${basepom.check.fail-dependency-scope} + + + + + org.basepom.maven + duplicate-finder-maven-plugin + ${dep.plugin.duplicate-finder.version} + + ${basepom.check.skip-duplicate-finder} + ${basepom.check.fail-duplicate-finder} + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${dep.plugin.spotbugs.version} + + + com.github.spotbugs + spotbugs + ${dep.spotbugs.version} + + + + Max + ${basepom.check.skip-spotbugs} + ${basepom.build.maxheap-mb} + ${basepom.check.fail-spotbugs} + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${dep.plugin.pmd.version} + + + net.sourceforge.pmd + pmd-core + ${dep.pmd.version} + + + net.sourceforge.pmd + pmd-java + ${dep.pmd.version} + + + net.sourceforge.pmd + pmd-xml + ${dep.pmd.version} + + + + ${basepom.check.skip-pmd} + ${basepom.check.fail-pmd} + false + true + ${project.build.targetJdk} + 100 + ${basepom.pmd.fail-level} + false + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${dep.plugin.checkstyle.version} + + + com.puppycrawl.tools + checkstyle + ${dep.checkstyle.version} + + + + ${basepom.check.skip-checkstyle} + ${basepom.check.fail-checkstyle} + ${basepom.check.checkstyle-severity} + ${project.build.sourceEncoding} + true + + + + + org.apache.maven.plugins + maven-shade-plugin + ${dep.plugin.shade.version} + + false + true + + + *:* + + META-INF/*.SF + META-INF/*.DSA + META-INF/*.RSA + + + + + + + + + + + org.skife.maven + really-executable-jar-maven-plugin + ${dep.plugin.really-executable.version} + + + + org.basepom.maven + repack-maven-plugin + ${dep.plugin.repack.version} + + + + org.jacoco + jacoco-maven-plugin + ${dep.plugin.jacoco.version} + + ${basepom.check.skip-coverage} + ${basepom.check.fail-coverage} + basepom.coverage.test-args + + + + + org.apache.maven.plugins + maven-site-plugin + ${dep.plugin.site.version} + + ${basepom.site.skip} + ${basepom.site.skip-deploy} + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + ${dep.plugin.scm-publish.version} + + true + ${basepom.site.scm.branch} + ${basepom.site.scm.checkout-directory} + ${basepom.site.scm.try-update} + ${project.reporting.outputDirectory} + ${basepom.site.scm.site-path} + ${basepom.site.scm.skip-deploy} + ${basepom.site.scm.id} + ${basepom.site.scm.url} + ${basepom.site.scm.comment} + + + + + org.basepom.maven + property-helper-maven-plugin + ${dep.plugin.property-helper.version} + + + + io.github.git-commit-id + git-commit-id-maven-plugin + ${dep.plugin.git-commit-id.version} + + + git + yyyy-MM-dd'T'HH:mm:ssZZ + false + true + false + ${basepom.git-id.fail-no-git} + ${basepom.git-id.fail-no-info} + ${basepom.git-id.skip} + 10 + ${basepom.git-id.use-native} + + true + 7 + -dirty + false + true + + ${basepom.git-id.run-only-once} + + + + + org.apache.maven.plugins + maven-invoker-plugin + ${dep.plugin.invoker.version} + + ${basepom.it.skip} + ${basepom.it.skip} + ${basepom.it.fork-count} + ${basepom.invoker.folder} + ${project.build.directory}/it + + */pom.xml + + setup + verify + ${project.build.directory}/local-repo + ${basepom.invoker.folder}/settings.xml + ${basepom.it.timeout} + + clean + package + + + + + + + + + + org.basepom.maven + property-helper-maven-plugin + + + basepom.default + + get + + validate + + + + basepom.build.id + true + + + basepom.shaded.id + true + + + + + + + + + io.github.git-commit-id + git-commit-id-maven-plugin + + + basepom.default + initialize + + revision + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + org.apache.maven.plugins + maven-resources-plugin + + + + org.apache.maven.plugins + maven-jar-plugin + + + + basepom.default + package + + test-jar + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + basepom.default + package + + jar + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + basepom.default + package + + jar-no-fork + test-jar-no-fork + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + basepom.default + validate + + enforce + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + basepom.default + ${basepom.check.phase-dependency} + + analyze-only + analyze-duplicate + analyze-dep-mgt + + + + + + + org.basepom.maven + dependency-versions-check-maven-plugin + + + basepom.default + ${basepom.check.phase-dependency-versions-check} + + check + + + + + + + org.basepom.maven + dependency-management-maven-plugin + + + basepom.default + ${basepom.check.phase-dependency-management} + + analyze + + + + + + + org.basepom.maven + dependency-scope-maven-plugin + + + basepom.default + ${basepom.check.phase-dependency-scope} + + check + + + + + + + org.basepom.maven + duplicate-finder-maven-plugin + + + basepom.default + verify + + check + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + + basepom.default + verify + + check + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + basepom.default + verify + + check + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + basepom.default + ${basepom.check.phase-checkstyle} + + check + + + + + + + org.jacoco + jacoco-maven-plugin + + + basepom.default + process-test-classes + + prepare-agent + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + basepom.default-site + site-deploy + + publish-scm + + + + + + + + + + basepom.invoker-integration-testing + + + + src/it + + + + + + org.jacoco + jacoco-maven-plugin + + + basepom.default-it + pre-integration-test + + prepare-agent-integration + + + basepom.coverage.it-args + + + + + + org.apache.maven.plugins + maven-invoker-plugin + + + basepom.invoker-integration-testing.default + integration-test + + install + integration-test + verify + + + + + + + + + basepom.executable + + + ${basedir}/.build-executable + + + + + + org.apache.maven.plugins + maven-shade-plugin + + + basepom.executable.default + package + + shade + + + + + + org.skife.maven + really-executable-jar-maven-plugin + + + basepom.executable.default + package + + really-executable-jar + + + shaded + ${basepom.executable.flags} + ${basepom.executable.name} + true + + + + + + + + + basepom.repack + + + ${basedir}/.repack-executable + + + + + + org.basepom.maven + repack-maven-plugin + + + basepom.repack.default + package + + repack + + + + + + org.skife.maven + really-executable-jar-maven-plugin + + + basepom.repack.default + package + + really-executable-jar + + + repacked + ${basepom.executable.flags} + ${basepom.executable.name} + true + + + + + + + + + diff --git a/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom.sha1 b/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom.sha1 new file mode 100644 index 000000000..1060e4400 --- /dev/null +++ b/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom.sha1 @@ -0,0 +1 @@ +8f3e206bd2e6778a1cd28a053931e0de2439779a \ No newline at end of file diff --git a/code/arachne/org/basepom/basepom-minimal/55/_remote.repositories b/code/arachne/org/basepom/basepom-minimal/55/_remote.repositories new file mode 100644 index 000000000..957c9ee72 --- /dev/null +++ b/code/arachne/org/basepom/basepom-minimal/55/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:11 EDT 2024 +basepom-minimal-55.pom>central= diff --git a/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom b/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom new file mode 100644 index 000000000..d8f4fc69d --- /dev/null +++ b/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom @@ -0,0 +1,344 @@ + + + + 4.0.0 + + + org.basepom + basepom-foundation + 55 + ../foundation + + + basepom-minimal + pom + + + + + ${basepom.check.skip-extended} + ${basepom.check.skip-extended} + + ${basepom.check.fail-extended} + ${basepom.check.fail-extended} + + + + + + ${basepom.shaded.main-class} + + + 10 + + + + + + jaspersoft.org + dummy-url + + false + + + false + + + + + + + + + org.basepom.maven + duplicate-finder-maven-plugin + + + + + + com.google.code.findbugs + jsr305 + + + com.google.code.findbugs + annotations + + + + javax.annotation + + + + + + com.google.code.findbugs + annotations + + + net.jcip + jcip-annotations + + + + net.jcip.annotations + + + + + + com.google.code.findbugs + annotations + + + com.google.code.findbugs + findbugs-annotations + + + com.github.spotbugs + spotbugs-annotations + + + + edu.umd.cs.findbugs.annotations + + + + + + + javax.inject + javax.inject + + + org.glassfish.hk2.external + javax.inject + + + + jakarta.inject + jakarta.inject-api + + + + org.glassfish.hk2.external + jakarta.inject + + + + javax.inject + + + + + + org.glassfish.hk2.external + jakarta.inject + + + jakarta.inject + jakarta.inject-api + + + + jakarta.inject + + + + + + + aopalliance + aopalliance + + + org.glassfish.hk2.external + aopalliance-repackaged + + + + org.aopalliance.aop + org.aopalliance.intercept + + + + + + .*\.afm$ + .*\.dtd$ + .*\.gif$ + .*\.html + .*\.java$ + .*\.png$ + .*\.properties$ + .*\.txt$ + + ^\..* + about.* + about_files\/.* + license\/.* + .*\/schema$ + + mime\.types$ + plugin\.properties$ + plugin\.xml$ + reference\.conf$ + + + + log4j\.xml$ + log4j\.properties$ + logback\.xml$ + logback\.properties$ + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + target/generated-sources/stubs + target/generated-sources/annotations + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + * + + + + + aopalliance:aopalliance + com.github.spotbugs:spotbugs-annotations + com.google.code.findbugs:annotations + com.google.code.findbugs:jsr305 + com.google.errorprone:error_prone_annotations + jakarta.inject:jakarta.inject-api + javax.inject:javax.inject + net.jcip:jcip-annotations + org.checkerframework:checker-qual + org.glassfish.hk2.external:aopalliance-repackaged + org.glassfish.hk2.external:jakarta.inject + org.glassfish.hk2.external:javax.inject + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + org.basepom + basepom-policy + ${dep.basepom-policy.version} + + + + checkstyle/checkstyle-basepom.xml + + + + + org.apache.maven.plugins + maven-shade-plugin + + + + true + + ${basepom.shaded.id} + ${project.name} + ${git.commit.id} + + ${basepom.main-class} + + + + + + org.basepom + basepom-policy + ${dep.basepom-policy.version} + + + + + + org.basepom.maven + repack-maven-plugin + + ${basepom.main-class} + + + + + com.github.spotbugs + spotbugs-maven-plugin + + + org.basepom + basepom-policy + ${dep.basepom-policy.version} + + + + + spotbugs/spotbugs-suppress.xml + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + ${project.build.sourceEncoding} + UTC + true + %1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$s %5$s%6$s%n + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${project.build.sourceEncoding} + UTC + true + %1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$s %5$s%6$s%n + + + + + + + diff --git a/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom.sha1 b/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom.sha1 new file mode 100644 index 000000000..0e1475fec --- /dev/null +++ b/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom.sha1 @@ -0,0 +1 @@ +07040d9abc06337c5c034eb6b092ae7ded4cb90c \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/_remote.repositories b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/_remote.repositories new file mode 100644 index 000000000..c75eba51b --- /dev/null +++ b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:23 EDT 2024 +bcpkix-jdk15on-1.63.pom>central= diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom new file mode 100644 index 000000000..2c940717a --- /dev/null +++ b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom @@ -0,0 +1,40 @@ + + + 4.0.0 + org.bouncycastle + bcpkix-jdk15on + jar + Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs + 1.63 + The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.5 to JDK 1.8. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs. + http://www.bouncycastle.org/java.html + + + Bouncy Castle Licence + http://www.bouncycastle.org/licence.html + repo + + + + https://github.com/bcgit/bc-java + + + GitHub + https://github.com/bcgit/bc-java/issues + + + + feedback-crypto + The Legion of the Bouncy Castle Inc. + feedback-crypto@bouncycastle.org + + + + + org.bouncycastle + bcprov-jdk15on + 1.63 + jar + + + diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom.sha1 b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom.sha1 new file mode 100644 index 000000000..47f10c0bd --- /dev/null +++ b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom.sha1 @@ -0,0 +1 @@ +45f56dffcf9a2753f3f54d4c8ffa18ae0deb6c1e \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/_remote.repositories b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/_remote.repositories new file mode 100644 index 000000000..baf40dca8 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:10 EDT 2024 +bcpkix-jdk15on-1.70.pom>central= diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom new file mode 100644 index 000000000..01353ff14 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom @@ -0,0 +1,46 @@ + + + 4.0.0 + org.bouncycastle + bcpkix-jdk15on + jar + Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs + 1.70 + The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.5 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs. + https://www.bouncycastle.org/java.html + + + Bouncy Castle Licence + https://www.bouncycastle.org/licence.html + repo + + + + https://github.com/bcgit/bc-java + + + GitHub + https://github.com/bcgit/bc-java/issues + + + + feedback-crypto + The Legion of the Bouncy Castle Inc. + feedback-crypto@bouncycastle.org + + + + + org.bouncycastle + bcprov-jdk15on + 1.70 + jar + + + org.bouncycastle + bcutil-jdk15on + 1.70 + jar + + + diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom.sha1 b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom.sha1 new file mode 100644 index 000000000..4897fac8c --- /dev/null +++ b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom.sha1 @@ -0,0 +1 @@ +9eb426bf14cf6f656af149c138e54cfd1c832995 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/_remote.repositories b/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/_remote.repositories new file mode 100644 index 000000000..ee8909dec --- /dev/null +++ b/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:35 EDT 2024 +bcpkix-jdk18on-1.76.pom>central= diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom b/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom new file mode 100644 index 000000000..a25e75dcb --- /dev/null +++ b/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom @@ -0,0 +1,46 @@ + + + 4.0.0 + org.bouncycastle + bcpkix-jdk18on + jar + Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs + 1.76 + The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.8 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs. + https://www.bouncycastle.org/java.html + + + Bouncy Castle Licence + https://www.bouncycastle.org/licence.html + repo + + + + https://github.com/bcgit/bc-java + + + GitHub + https://github.com/bcgit/bc-java/issues + + + + feedback-crypto + The Legion of the Bouncy Castle Inc. + feedback-crypto@bouncycastle.org + + + + + org.bouncycastle + bcprov-jdk18on + 1.76 + jar + + + org.bouncycastle + bcutil-jdk18on + 1.76 + jar + + + diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom.sha1 b/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom.sha1 new file mode 100644 index 000000000..0b62e5667 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom.sha1 @@ -0,0 +1 @@ +d0351cd0820b156ba1f946c83892306827158267 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/_remote.repositories new file mode 100644 index 000000000..415bbc7bc --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:23 EDT 2024 +bcprov-jdk15on-1.63.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom new file mode 100644 index 000000000..e3b436490 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom @@ -0,0 +1,32 @@ + + + 4.0.0 + org.bouncycastle + bcprov-jdk15on + jar + Bouncy Castle Provider + 1.63 + The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 1.8. + http://www.bouncycastle.org/java.html + + + Bouncy Castle Licence + http://www.bouncycastle.org/licence.html + repo + + + + https://github.com/bcgit/bc-java + + + GitHub + https://github.com/bcgit/bc-java/issues + + + + feedback-crypto + The Legion of the Bouncy Castle Inc. + feedback-crypto@bouncycastle.org + + + diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom.sha1 new file mode 100644 index 000000000..5435c25e0 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom.sha1 @@ -0,0 +1 @@ +d3e115074916bfb021a94ff8fb4ae3778ee857fa \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/_remote.repositories new file mode 100644 index 000000000..d7bcd3888 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:59 EDT 2024 +bcprov-jdk15on-1.69.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom new file mode 100644 index 000000000..6c22dbe7f --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom @@ -0,0 +1,32 @@ + + + 4.0.0 + org.bouncycastle + bcprov-jdk15on + jar + Bouncy Castle Provider + 1.69 + The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 and up. + https://www.bouncycastle.org/java.html + + + Bouncy Castle Licence + https://www.bouncycastle.org/licence.html + repo + + + + https://github.com/bcgit/bc-java + + + GitHub + https://github.com/bcgit/bc-java/issues + + + + feedback-crypto + The Legion of the Bouncy Castle Inc. + feedback-crypto@bouncycastle.org + + + diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom.sha1 new file mode 100644 index 000000000..f4f0a7cd3 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom.sha1 @@ -0,0 +1 @@ +c9f3e7d46996214727e0df730b2a6214b49a0ac0 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/_remote.repositories new file mode 100644 index 000000000..ff227dad2 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:10 EDT 2024 +bcprov-jdk15on-1.70.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom new file mode 100644 index 000000000..ea5148262 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom @@ -0,0 +1,32 @@ + + + 4.0.0 + org.bouncycastle + bcprov-jdk15on + jar + Bouncy Castle Provider + 1.70 + The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 and up. + https://www.bouncycastle.org/java.html + + + Bouncy Castle Licence + https://www.bouncycastle.org/licence.html + repo + + + + https://github.com/bcgit/bc-java + + + GitHub + https://github.com/bcgit/bc-java/issues + + + + feedback-crypto + The Legion of the Bouncy Castle Inc. + feedback-crypto@bouncycastle.org + + + diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom.sha1 new file mode 100644 index 000000000..31ac933ee --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom.sha1 @@ -0,0 +1 @@ +696dce53f1cd6ea922402e76a6adce522cedda05 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/_remote.repositories new file mode 100644 index 000000000..e734e9c06 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:44 EDT 2024 +bcprov-jdk18on-1.71.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom new file mode 100644 index 000000000..71f3796eb --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom @@ -0,0 +1,32 @@ + + + 4.0.0 + org.bouncycastle + bcprov-jdk18on + jar + Bouncy Castle Provider + 1.71 + The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up. + https://www.bouncycastle.org/java.html + + + Bouncy Castle Licence + https://www.bouncycastle.org/licence.html + repo + + + + https://github.com/bcgit/bc-java + + + GitHub + https://github.com/bcgit/bc-java/issues + + + + feedback-crypto + The Legion of the Bouncy Castle Inc. + feedback-crypto@bouncycastle.org + + + diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom.sha1 new file mode 100644 index 000000000..6e3bce4bb --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom.sha1 @@ -0,0 +1 @@ +555f754405d768abc51892e07ec947c42dbab44e \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/_remote.repositories new file mode 100644 index 000000000..3cb1b62fd --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:35 EDT 2024 +bcprov-jdk18on-1.76.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom new file mode 100644 index 000000000..c1597c447 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom @@ -0,0 +1,32 @@ + + + 4.0.0 + org.bouncycastle + bcprov-jdk18on + jar + Bouncy Castle Provider + 1.76 + The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up. + https://www.bouncycastle.org/java.html + + + Bouncy Castle Licence + https://www.bouncycastle.org/licence.html + repo + + + + https://github.com/bcgit/bc-java + + + GitHub + https://github.com/bcgit/bc-java/issues + + + + feedback-crypto + The Legion of the Bouncy Castle Inc. + feedback-crypto@bouncycastle.org + + + diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom.sha1 new file mode 100644 index 000000000..943249a61 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom.sha1 @@ -0,0 +1 @@ +49609f19dc2e4decc3dee4d4e79833b87b4a4ddc \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/_remote.repositories new file mode 100644 index 000000000..4d6278be8 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:19 EDT 2024 +bcprov-jdk18on-1.78.1.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom new file mode 100644 index 000000000..4164f5db7 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom @@ -0,0 +1,32 @@ + + + 4.0.0 + org.bouncycastle + bcprov-jdk18on + jar + Bouncy Castle Provider + 1.78.1 + The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up. + https://www.bouncycastle.org/java.html + + + Bouncy Castle Licence + https://www.bouncycastle.org/licence.html + repo + + + + https://github.com/bcgit/bc-java + + + GitHub + https://github.com/bcgit/bc-java/issues + + + + feedback-crypto + The Legion of the Bouncy Castle Inc. + feedback-crypto@bouncycastle.org + + + diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom.sha1 new file mode 100644 index 000000000..a3d182456 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom.sha1 @@ -0,0 +1 @@ +1593f57faf9f3f527b295ea954f1e510b945f7d5 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/_remote.repositories b/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/_remote.repositories new file mode 100644 index 000000000..bc20aa53d --- /dev/null +++ b/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:10 EDT 2024 +bcutil-jdk15on-1.70.pom>central= diff --git a/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom b/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom new file mode 100644 index 000000000..994c93540 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom @@ -0,0 +1,40 @@ + + + 4.0.0 + org.bouncycastle + bcutil-jdk15on + jar + Bouncy Castle ASN.1 Extension and Utility APIs + 1.70 + The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.5 and up. + https://www.bouncycastle.org/java.html + + + Bouncy Castle Licence + https://www.bouncycastle.org/licence.html + repo + + + + https://github.com/bcgit/bc-java + + + GitHub + https://github.com/bcgit/bc-java/issues + + + + feedback-crypto + The Legion of the Bouncy Castle Inc. + feedback-crypto@bouncycastle.org + + + + + org.bouncycastle + bcprov-jdk15on + 1.70 + jar + + + diff --git a/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom.sha1 b/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom.sha1 new file mode 100644 index 000000000..a6e58b8c9 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom.sha1 @@ -0,0 +1 @@ +cbadbbefdd5486aa68e58e03d73037e9a4b7acc5 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/_remote.repositories b/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/_remote.repositories new file mode 100644 index 000000000..49fa486ce --- /dev/null +++ b/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:35 EDT 2024 +bcutil-jdk18on-1.76.pom>central= diff --git a/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom b/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom new file mode 100644 index 000000000..9c068d792 --- /dev/null +++ b/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom @@ -0,0 +1,40 @@ + + + 4.0.0 + org.bouncycastle + bcutil-jdk18on + jar + Bouncy Castle ASN.1 Extension and Utility APIs + 1.76 + The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.8 and up. + https://www.bouncycastle.org/java.html + + + Bouncy Castle Licence + https://www.bouncycastle.org/licence.html + repo + + + + https://github.com/bcgit/bc-java + + + GitHub + https://github.com/bcgit/bc-java/issues + + + + feedback-crypto + The Legion of the Bouncy Castle Inc. + feedback-crypto@bouncycastle.org + + + + + org.bouncycastle + bcprov-jdk18on + 1.76 + jar + + + diff --git a/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom.sha1 b/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom.sha1 new file mode 100644 index 000000000..458f2140e --- /dev/null +++ b/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom.sha1 @@ -0,0 +1 @@ +7e7e5a2291a39036e1dfb2bfd86b2f971b1c0cb0 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/2.0.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/2.0.0/_remote.repositories new file mode 100644 index 000000000..0a23cbc17 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/2.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:05 EDT 2024 +checker-qual-2.0.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom b/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom new file mode 100644 index 000000000..8303eb6cc --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom @@ -0,0 +1,103 @@ + + + 4.0.0 + jar + + Checker Qual + http://checkerframework.org + + Checker Qual is the set of annotations (qualifiers) and supporting classes + used by the Checker Framework to type check Java source code. Please + see artifact: + org.checkerframework:checker + + + org.checkerframework + checker-qual + + + + GNU General Public License, version 2 (GPL2), with the classpath exception + http://www.gnu.org/software/classpath/license.html + repo + + + + The MIT License + http://opensource.org/licenses/MIT + repo + + + + + 2.0.0 + + + https://github.com/typetools/checker-framework.git + https://github.com/typetools/checker-framework.git + + + + + + Michael Ernst <mernst@cs.washington.edu> + Michael Ernst + mernst@cs.washington.edu + http://homes.cs.washington.edu/~mernst/ + University of Washington + https://www.cs.washington.edu/ + + + + wmdietl + Werner M. Dietl + wdietl@uwaterloo.ca + University of Waterloo + http://uwaterloo.ca/ + + + + Suzanne Millstein <smillst@cs.washington.edu> + Suzanne Millstein + smillst@cs.washington.edu + University of Washington PLSE Group + https://www.cs.washington.edu/research/plse/ + + + + David McArthur <mcarthur@cs.washington.edu< + David McArthur + mcarthur@cs.washington.edu + University of Washington PLSE Group + https://www.cs.washington.edu/research/plse/ + + + + Javier Thaine <jthaine@cs.washington.edu< + David McArthur + jthaine@cs.washington.edu + University of Washington PLSE Group + https://www.cs.washington.edu/research/plse/ + + + + Dan Brown <dbro@cs.washington.edu< + Dan Brown + dbro@cs.washington.edu + University of Washington PLSE Group + https://www.cs.washington.edu/research/plse/ + + + + jonathangburke@gmail.com + Jonathan G. Burke + jburke@cs.washington.edu + University of Washington PLSE Group + https://www.cs.washington.edu/research/plse/ + + + + + diff --git a/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom.sha1 new file mode 100644 index 000000000..a09dbce98 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom.sha1 @@ -0,0 +1 @@ +17ab37f0fb0338647a70ab40f15c2c685e4185e3 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/2.11.1/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/2.11.1/_remote.repositories new file mode 100644 index 000000000..bce3b58a9 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/2.11.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:03 EDT 2024 +checker-qual-2.11.1.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom b/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom new file mode 100644 index 000000000..2cfb92199 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom @@ -0,0 +1,65 @@ + + + 4.0.0 + jar + + Checker Qual + https://checkerframework.org + + Checker Qual is the set of annotations (qualifiers) and supporting classes + used by the Checker Framework to type check Java source code. Please + see artifact: + org.checkerframework:checker + + + org.checkerframework + checker-qual + + + + The MIT License + http://opensource.org/licenses/MIT + repo + + + + + 2.11.1 + + + https://github.com/typetools/checker-framework.git + https://github.com/typetools/checker-framework.git + + + + + + mernst + Michael Ernst + mernst@cs.washington.edu + https://homes.cs.washington.edu/~mernst/ + University of Washington + https://www.cs.washington.edu/ + + + + wmdietl + Werner M. Dietl + wdietl@uwaterloo.ca + University of Waterloo + http://uwaterloo.ca/ + + + + smillst + Suzanne Millstein + smillst@cs.washington.edu + University of Washington PLSE Group + https://www.cs.washington.edu/research/plse/ + + + + + diff --git a/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom.sha1 new file mode 100644 index 000000000..aa990af11 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom.sha1 @@ -0,0 +1 @@ +ebc1b44da8503640e2ed42627b299272c8c72824 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/3.12.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/3.12.0/_remote.repositories new file mode 100644 index 000000000..3e0b37f41 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.12.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:43 EDT 2024 +checker-qual-3.12.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom b/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom new file mode 100644 index 000000000..baf6fcc9c --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom @@ -0,0 +1,47 @@ + + + + + + + + 4.0.0 + org.checkerframework + checker-qual + 3.12.0 + Checker Qual + checker-qual contains annotations (type qualifiers) that a programmer +writes to specify Java code for type-checking by the Checker Framework. + + https://checkerframework.org + + + The MIT License + http://opensource.org/licenses/MIT + repo + + + + + mernst + Michael Ernst + mernst@cs.washington.edu + https://homes.cs.washington.edu/~mernst/ + University of Washington + https://www.cs.washington.edu/ + + + smillst + Suzanne Millstein + smillst@cs.washington.edu + University of Washington + https://www.cs.washington.edu/ + + + + scm:git:git://github.com/typetools/checker-framework.git + scm:git:ssh://git@github.com/typetools/checker-framework.git + https://github.com/typetools/checker-framework.git + + diff --git a/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom.sha1 new file mode 100644 index 000000000..51415b905 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom.sha1 @@ -0,0 +1 @@ +fb8dca6f40fcb30f7b89de269940bf3316fb9845 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/3.31.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/3.31.0/_remote.repositories new file mode 100644 index 000000000..3681f7d46 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.31.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +checker-qual-3.31.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom b/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom new file mode 100644 index 000000000..b62f4baee --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom @@ -0,0 +1,47 @@ + + + + + + + + 4.0.0 + org.checkerframework + checker-qual + 3.31.0 + Checker Qual + checker-qual contains annotations (type qualifiers) that a programmer +writes to specify Java code for type-checking by the Checker Framework. + + https://checkerframework.org + + + The MIT License + http://opensource.org/licenses/MIT + repo + + + + + mernst + Michael Ernst + mernst@cs.washington.edu + https://homes.cs.washington.edu/~mernst/ + University of Washington + https://www.cs.washington.edu/ + + + smillst + Suzanne Millstein + smillst@cs.washington.edu + University of Washington + https://www.cs.washington.edu/ + + + + scm:git:git://github.com/typetools/checker-framework.git + scm:git:ssh://git@github.com/typetools/checker-framework.git + https://github.com/typetools/checker-framework.git + + diff --git a/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom.sha1 new file mode 100644 index 000000000..e2f08d085 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom.sha1 @@ -0,0 +1 @@ +a600a4210e8c3db6ea45ea0989920b0255dbb6f6 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/3.33.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/3.33.0/_remote.repositories new file mode 100644 index 000000000..2e3ab23fb --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.33.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:32 EDT 2024 +checker-qual-3.33.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom b/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom new file mode 100644 index 000000000..960d8cfdc --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom @@ -0,0 +1,47 @@ + + + + + + + + 4.0.0 + org.checkerframework + checker-qual + 3.33.0 + Checker Qual + checker-qual contains annotations (type qualifiers) that a programmer +writes to specify Java code for type-checking by the Checker Framework. + + https://checkerframework.org/ + + + The MIT License + http://opensource.org/licenses/MIT + repo + + + + + mernst + Michael Ernst + mernst@cs.washington.edu + https://homes.cs.washington.edu/~mernst/ + University of Washington + https://www.cs.washington.edu/ + + + smillst + Suzanne Millstein + smillst@cs.washington.edu + University of Washington + https://www.cs.washington.edu/ + + + + scm:git:https://github.com/typetools/checker-framework.git + scm:git:ssh://git@github.com/typetools/checker-framework.git + https://github.com/typetools/checker-framework.git + + diff --git a/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom.sha1 new file mode 100644 index 000000000..41137c89d --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom.sha1 @@ -0,0 +1 @@ +6d43e2eacef053cffd73da56734e9a8a138b52be \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/3.37.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/3.37.0/_remote.repositories new file mode 100644 index 000000000..7dddd2e98 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.37.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:22 EDT 2024 +checker-qual-3.37.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom b/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom new file mode 100644 index 000000000..e423d3cc1 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom @@ -0,0 +1,47 @@ + + + + + + + + 4.0.0 + org.checkerframework + checker-qual + 3.37.0 + Checker Qual + checker-qual contains annotations (type qualifiers) that a programmer +writes to specify Java code for type-checking by the Checker Framework. + + https://checkerframework.org/ + + + The MIT License + http://opensource.org/licenses/MIT + repo + + + + + mernst + Michael Ernst + mernst@cs.washington.edu + https://homes.cs.washington.edu/~mernst/ + University of Washington + https://www.cs.washington.edu/ + + + smillst + Suzanne Millstein + smillst@cs.washington.edu + University of Washington + https://www.cs.washington.edu/ + + + + scm:git:https://github.com/typetools/checker-framework.git + scm:git:ssh://git@github.com/typetools/checker-framework.git + https://github.com/typetools/checker-framework.git + + diff --git a/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom.sha1 new file mode 100644 index 000000000..e9950dbdc --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom.sha1 @@ -0,0 +1 @@ +2b5c81b974afb0dad5a99ee7d2540a0bbb0c3555 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/3.42.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/3.42.0/_remote.repositories new file mode 100644 index 000000000..4e0a49181 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.42.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:27 EDT 2024 +checker-qual-3.42.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom b/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom new file mode 100644 index 000000000..091599497 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom @@ -0,0 +1,47 @@ + + + + + + + + 4.0.0 + org.checkerframework + checker-qual + 3.42.0 + Checker Qual + checker-qual contains annotations (type qualifiers) that a programmer +writes to specify Java code for type-checking by the Checker Framework. + + https://checkerframework.org/ + + + The MIT License + http://opensource.org/licenses/MIT + repo + + + + + mernst + Michael Ernst + mernst@cs.washington.edu + https://homes.cs.washington.edu/~mernst/ + University of Washington + https://www.cs.washington.edu/ + + + smillst + Suzanne Millstein + smillst@cs.washington.edu + University of Washington + https://www.cs.washington.edu/ + + + + scm:git:https://github.com/typetools/checker-framework.git + scm:git:ssh://git@github.com/typetools/checker-framework.git + https://github.com/typetools/checker-framework.git + + diff --git a/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom.sha1 new file mode 100644 index 000000000..45fc87568 --- /dev/null +++ b/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom.sha1 @@ -0,0 +1 @@ +49d71d964f0ac5505caa5f996c8497c9462e9eeb \ No newline at end of file diff --git a/code/arachne/org/codehaus/codehaus-parent/4/_remote.repositories b/code/arachne/org/codehaus/codehaus-parent/4/_remote.repositories new file mode 100644 index 000000000..41566d892 --- /dev/null +++ b/code/arachne/org/codehaus/codehaus-parent/4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:06 EDT 2024 +codehaus-parent-4.pom>central= diff --git a/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom b/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom new file mode 100644 index 000000000..2e10afb5d --- /dev/null +++ b/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom @@ -0,0 +1,155 @@ + + + + 4.0.0 + + org.codehaus + codehaus-parent + 4 + pom + + Codehaus Parent + http://codehaus.org/ + The Codehaus is a collaborative environment for building open source projects with a strong emphasis on modern languages, focussed on quality components that meet real world needs. + + + scm:git:git@github.com:sonatype/codehaus-parent.git + scm:git:git@github.com:sonatype/codehaus-parent.git + https://github.com/sonatype/codehaus-parent + + + + + codehaus-snapshots + Codehaus Snapshots + http://nexus.codehaus.org/snapshots/ + + false + + + true + + + + + + + + codehaus-nexus-snapshots + Codehaus Nexus Snapshots + ${codehausDistMgmtSnapshotsUrl} + + + codehaus-nexus-staging + Codehaus Release Repository + https://nexus.codehaus.org/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. + + + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + forked-path + false + -Pcodehaus-release + + + + + + + + UTF-8 + https://nexus.codehaus.org/content/repositories/snapshots/ + + + + + codehaus-release + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 b/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 new file mode 100644 index 000000000..6aa79eb80 --- /dev/null +++ b/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 @@ -0,0 +1 @@ +8b133202d50bec1e59bddc9392cb44d1fe5facc8 \ No newline at end of file diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/_remote.repositories b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/_remote.repositories new file mode 100644 index 000000000..84c8bcff6 --- /dev/null +++ b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:49 EDT 2024 +groovy-bom-3.0.19.pom>central= diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom new file mode 100644 index 000000000..5db18f799 --- /dev/null +++ b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom @@ -0,0 +1,975 @@ + + + 4.0.0 + org.codehaus.groovy + groovy-bom + 3.0.19 + pom + Apache Groovy + Groovy: A powerful, dynamic language for the JVM + https://groovy-lang.org + 2003 + + Apache Software Foundation + https://apache.org + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + glaforge + Guillaume Laforge + Google + + Developer + + + + bob + bob mcwhirter + bob@werken.com + The Werken Company + + Founder + + + + jstrachan + James Strachan + james@coredevelopers.com + Core Developers Network + + Founder + + + + joe + Joe Walnes + ThoughtWorks + + Developer Emeritus + + + + skizz + Chris Stevenson + ThoughtWorks + + Developer Emeritus + + + + jamiemc + Jamie McCrindle + Three + + Developer Emeritus + + + + mattf + Matt Foemmel + ThoughtWorks + + Developer Emeritus + + + + alextkachman + Alex Tkachman + + Developer Emeritus + + + + roshandawrani + Roshan Dawrani + + Developer Emeritus + + + + spullara + Sam Pullara + sam@sampullara.com + + Developer Emeritus + + + + kasper + Kasper Nielsen + + Developer Emeritus + + + + travis + Travis Kay + + Developer Emeritus + + + + zohar + Zohar Melamed + + Developer Emeritus + + + + jwilson + John Wilson + tug@wilson.co.uk + The Wilson Partnership + + Developer Emeritus + + + + cpoirier + Chris Poirier + cpoirier@dreaming.org + + Developer Emeritus + + + + ckl + Christiaan ten Klooster + ckl@dacelo.nl + Dacelo WebDevelopment + + Developer Emeritus + + + + goetze + Steve Goetze + goetze@dovetail.com + Dovetailed Technologies, LLC + + Developer Emeritus + + + + bran + Bing Ran + b55r@sina.com + Leadingcare + + Developer Emeritus + + + + jez + Jeremy Rayner + jeremy.rayner@gmail.com + javanicus + + Developer Emeritus + + + + jstump + John Stump + johnstump2@yahoo.com + + Developer Emeritus + + + + blackdrag + Jochen Theodorou + blackdrag@gmx.org + + Developer + + + + russel + Russel Winder + russel@winder.org.uk + Concertant LLP & It'z Interactive Ltd + + Developer + Founder of Gant + + + + phk + Pilho Kim + phkim@cluecom.co.kr + + Developer Emeritus + + + + cstein + Christian Stein + sormuras@gmx.de + CTSR.de + + Developer Emeritus + + + + mittie + Dierk Koenig + Karakun AG + + Developer + + + + paulk + Paul King + paulk@asert.com.au + OCI, Australia + + Project Manager + Developer + + + + galleon + Guillaume Alleon + guillaume.alleon@gmail.com + + Developer Emeritus + + + + user57 + Jason Dillon + jason@planet57.com + + Developer Emeritus + + + + shemnon + Danno Ferrin + + Developer Emeritus + + + + jwill + James Williams + + Developer Emeritus + + + + timyates + Tim Yates + + Developer + + + + aalmiray + Andres Almiray + aalmiray@users.sourceforge.net + + Developer + + + + mguillem + Marc Guillemot + mguillemot@yahoo.fr + + Developer Emeritus + + + + jimwhite + Jim White + jim@pagesmiths.com + IFCX.org + + Developer + + + + pniederw + Peter Niederwieser + pniederw@gmail.com + + Developer Emeritus + + + + andresteingress + Andre Steingress + + Developer + + + + hamletdrc + Hamlet D'Arcy + hamletdrc@gmail.com + + Developer Emeritus + + + + melix + Cedric Champeau + cedric.champeau@gmail.com + + Developer + + + + pascalschumacher + Pascal Schumacher + + Developer + + + + sunlan + Daniel Sun + + Developer + + + + rpopma + Remko Popma + + Developer + + + + grocher + Graeme Rocher + + Developer + + + + emilles + Eric Milles + Thomson Reuters + + Developer + + + + + + Joern Eyrich + + + Robert Kuzelj + + + Rod Cope + + + Yuri Schimke + + + James Birchfield + + + Robert Fuller + + + Sergey Udovenko + + + Hallvard Traetteberg + + + Peter Reilly + + + Brian McCallister + + + Richard Monson-Haefel + + + Brian Larson + + + Artur Biesiadowski + abies@pg.gda.pl + + + Ivan Z. Ganza + + + Larry Jacobson + + + Jake Gage + + + Arjun Nayyar + + + Masato Nagai + + + Mark Chu-Carroll + + + Mark Turansky + + + Jean-Louis Berliet + + + Graham Miller + + + Marc Palmer + + + Tugdual Grall + + + Edwin Tellman + + + Evan "Hippy" Slatis + + + Mike Dillon + + + Bernhard Huber + + + Yasuharu Nakano + + + Marc DeXeT + + + Dejan Bosanac + dejan@nighttale.net + + + Denver Dino + + + Ted Naleid + + + Ted Leung + + + Merrick Schincariol + + + Chanwit Kaewkasi + + + Stefan Matthias Aust + + + Andy Dwelly + + + Philip Milne + + + Tiago Fernandez + + + Steve Button + + + Joachim Baumann + + + Jochen Eddel+ + + + Ilinca V. Hallberg + + + Björn Westlin + + + Andrew Glover + + + Brad Long + + + John Bito + + + Jim Jagielski + + + Rodolfo Velasco + + + John Hurst + + + Merlyn Albery-Speyer + + + jeremi Joslin + + + UEHARA Junji + + + NAKANO Yasuharu + + + Dinko Srkoc + + + Raffaele Cigni + + + Alberto Vilches Raton + + + Paulo Poiati + + + Alexander Klein + + + Adam Murdoch + + + David Durham + + + Daniel Henrique Alves Lima + + + John Wagenleitner + + + Colin Harrington + + + Brian Alexander + + + Jan Weitz + + + Chris K Wensel + + + David Sutherland + + + Mattias Reichel + + + David Lee + + + Sergei Egorov + + + Hein Meling + + + Michael Baehr + + + Craig Andrews + + + Peter Ledbrook + + + Scott Stirling + + + Thibault Kruse + + + Tim Tiemens + + + Mike Spille + + + Nikolay Chugunov + + + Francesco Durbin + + + Paolo Di Tommaso + + + Rene Scheibe + + + Matias Bjarland + + + Tomasz Bujok + + + Richard Hightower + + + Andrey Bloschetsov + + + Yu Kobayashi + + + Nick Grealy + + + Vaclav Pech + + + Chuck Tassoni + + + Steven Devijver + + + Ben Manes + + + Troy Heninger + + + Andrew Eisenberg + + + Eric Milles + + + Kohsuke Kawaguchi + + + Scott Vlaminck + + + Hjalmar Ekengren + + + Rafael Luque + + + Joachim Heldmann + + + dgouyette + + + Marcin Grzejszczak + + + Pap LÅ‘rinc + + + Guillaume Balaine + + + Santhosh Kumar T + + + Alan Green + + + Marty Saxton + + + Marcel Overdijk + + + Jonathan Carlson + + + Thomas Heller + + + John Stump + + + Ivan Ganza + + + Alex Popescu + + + Martin Kempf + + + Martin Ghados + + + Martin Stockhammer + + + Martin C. Martin + + + Alexey Verkhovsky + + + Alberto Mijares + + + Matthias Cullmann + + + Tomek Bujok + + + Stephane Landelle + + + Stephane Maldini + + + Mark Volkmann + + + Andrew Taylor + + + Vladimir Vivien + + + Vladimir Orany + + + Joe Wolf + + + Kent Inge Fagerland Simonsen + + + Tom Nichols + + + Ingo Hoffmann + + + Sergii Bondarenko + + + mgroovy + + + Dominik Przybysz + + + Jason Thomas + + + Trygve Amundsens + + + Morgan Hankins + + + Shruti Gupta + + + Ben Yu + + + Dejan Bosanac + + + Lidia Donajczyk-Lipinska + + + Peter Gromov + + + Johannes Link + + + Chris Reeves + + + Sean Timm + + + Dmitry Vyazelenko + + + + + Groovy Developer List + https://mail-archives.apache.org/mod_mbox/groovy-dev/ + + + Groovy User List + https://mail-archives.apache.org/mod_mbox/groovy-users/ + + + + scm:git:https://github.com/apache/groovy.git + scm:git:https://github.com/apache/groovy.git + https://github.com/apache/groovy.git + + + jira + https://issues.apache.org/jira/browse/GROOVY + + + + + org.codehaus.groovy + groovy + 3.0.19 + + + org.codehaus.groovy + groovy-ant + 3.0.19 + + + org.codehaus.groovy + groovy-astbuilder + 3.0.19 + + + org.codehaus.groovy + groovy-bsf + 3.0.19 + + + org.codehaus.groovy + groovy-cli-commons + 3.0.19 + + + org.codehaus.groovy + groovy-cli-picocli + 3.0.19 + + + org.codehaus.groovy + groovy-console + 3.0.19 + + + org.codehaus.groovy + groovy-datetime + 3.0.19 + + + org.codehaus.groovy + groovy-dateutil + 3.0.19 + + + org.codehaus.groovy + groovy-docgenerator + 3.0.19 + + + org.codehaus.groovy + groovy-groovydoc + 3.0.19 + + + org.codehaus.groovy + groovy-groovysh + 3.0.19 + + + org.codehaus.groovy + groovy-jaxb + 3.0.19 + + + org.codehaus.groovy + groovy-jmx + 3.0.19 + + + org.codehaus.groovy + groovy-json + 3.0.19 + + + org.codehaus.groovy + groovy-jsr223 + 3.0.19 + + + org.codehaus.groovy + groovy-macro + 3.0.19 + + + org.codehaus.groovy + groovy-nio + 3.0.19 + + + org.codehaus.groovy + groovy-servlet + 3.0.19 + + + org.codehaus.groovy + groovy-sql + 3.0.19 + + + org.codehaus.groovy + groovy-swing + 3.0.19 + + + org.codehaus.groovy + groovy-templates + 3.0.19 + + + org.codehaus.groovy + groovy-test + 3.0.19 + + + org.codehaus.groovy + groovy-test-junit5 + 3.0.19 + + + org.codehaus.groovy + groovy-testng + 3.0.19 + + + org.codehaus.groovy + groovy-xml + 3.0.19 + + + org.codehaus.groovy + groovy-yaml + 3.0.19 + + + + diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom.sha1 b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom.sha1 new file mode 100644 index 000000000..7d34d0814 --- /dev/null +++ b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom.sha1 @@ -0,0 +1 @@ +206e6428672da27eb124ec3bdd7920830b9f6e58 \ No newline at end of file diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/_remote.repositories b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/_remote.repositories new file mode 100644 index 000000000..01eb04b90 --- /dev/null +++ b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:50 EDT 2024 +groovy-bom-3.0.20.pom>central= diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom new file mode 100644 index 000000000..359503c5b --- /dev/null +++ b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom @@ -0,0 +1,975 @@ + + + 4.0.0 + org.codehaus.groovy + groovy-bom + 3.0.20 + pom + Apache Groovy + Groovy: A powerful, dynamic language for the JVM + https://groovy-lang.org + 2003 + + Apache Software Foundation + https://apache.org + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + glaforge + Guillaume Laforge + Google + + Developer + + + + bob + bob mcwhirter + bob@werken.com + The Werken Company + + Founder + + + + jstrachan + James Strachan + james@coredevelopers.com + Core Developers Network + + Founder + + + + joe + Joe Walnes + ThoughtWorks + + Developer Emeritus + + + + skizz + Chris Stevenson + ThoughtWorks + + Developer Emeritus + + + + jamiemc + Jamie McCrindle + Three + + Developer Emeritus + + + + mattf + Matt Foemmel + ThoughtWorks + + Developer Emeritus + + + + alextkachman + Alex Tkachman + + Developer Emeritus + + + + roshandawrani + Roshan Dawrani + + Developer Emeritus + + + + spullara + Sam Pullara + sam@sampullara.com + + Developer Emeritus + + + + kasper + Kasper Nielsen + + Developer Emeritus + + + + travis + Travis Kay + + Developer Emeritus + + + + zohar + Zohar Melamed + + Developer Emeritus + + + + jwilson + John Wilson + tug@wilson.co.uk + The Wilson Partnership + + Developer Emeritus + + + + cpoirier + Chris Poirier + cpoirier@dreaming.org + + Developer Emeritus + + + + ckl + Christiaan ten Klooster + ckl@dacelo.nl + Dacelo WebDevelopment + + Developer Emeritus + + + + goetze + Steve Goetze + goetze@dovetail.com + Dovetailed Technologies, LLC + + Developer Emeritus + + + + bran + Bing Ran + b55r@sina.com + Leadingcare + + Developer Emeritus + + + + jez + Jeremy Rayner + jeremy.rayner@gmail.com + javanicus + + Developer Emeritus + + + + jstump + John Stump + johnstump2@yahoo.com + + Developer Emeritus + + + + blackdrag + Jochen Theodorou + blackdrag@gmx.org + + Developer + + + + russel + Russel Winder + russel@winder.org.uk + Concertant LLP & It'z Interactive Ltd + + Developer + Founder of Gant + + + + phk + Pilho Kim + phkim@cluecom.co.kr + + Developer Emeritus + + + + cstein + Christian Stein + sormuras@gmx.de + CTSR.de + + Developer Emeritus + + + + mittie + Dierk Koenig + Karakun AG + + Developer + + + + paulk + Paul King + paulk@asert.com.au + OCI, Australia + + Project Manager + Developer + + + + galleon + Guillaume Alleon + guillaume.alleon@gmail.com + + Developer Emeritus + + + + user57 + Jason Dillon + jason@planet57.com + + Developer Emeritus + + + + shemnon + Danno Ferrin + + Developer Emeritus + + + + jwill + James Williams + + Developer Emeritus + + + + timyates + Tim Yates + + Developer + + + + aalmiray + Andres Almiray + aalmiray@users.sourceforge.net + + Developer + + + + mguillem + Marc Guillemot + mguillemot@yahoo.fr + + Developer Emeritus + + + + jimwhite + Jim White + jim@pagesmiths.com + IFCX.org + + Developer + + + + pniederw + Peter Niederwieser + pniederw@gmail.com + + Developer Emeritus + + + + andresteingress + Andre Steingress + + Developer + + + + hamletdrc + Hamlet D'Arcy + hamletdrc@gmail.com + + Developer Emeritus + + + + melix + Cedric Champeau + cedric.champeau@gmail.com + + Developer + + + + pascalschumacher + Pascal Schumacher + + Developer + + + + sunlan + Daniel Sun + + Developer + + + + rpopma + Remko Popma + + Developer + + + + grocher + Graeme Rocher + + Developer + + + + emilles + Eric Milles + Thomson Reuters + + Developer + + + + + + Joern Eyrich + + + Robert Kuzelj + + + Rod Cope + + + Yuri Schimke + + + James Birchfield + + + Robert Fuller + + + Sergey Udovenko + + + Hallvard Traetteberg + + + Peter Reilly + + + Brian McCallister + + + Richard Monson-Haefel + + + Brian Larson + + + Artur Biesiadowski + abies@pg.gda.pl + + + Ivan Z. Ganza + + + Larry Jacobson + + + Jake Gage + + + Arjun Nayyar + + + Masato Nagai + + + Mark Chu-Carroll + + + Mark Turansky + + + Jean-Louis Berliet + + + Graham Miller + + + Marc Palmer + + + Tugdual Grall + + + Edwin Tellman + + + Evan "Hippy" Slatis + + + Mike Dillon + + + Bernhard Huber + + + Yasuharu Nakano + + + Marc DeXeT + + + Dejan Bosanac + dejan@nighttale.net + + + Denver Dino + + + Ted Naleid + + + Ted Leung + + + Merrick Schincariol + + + Chanwit Kaewkasi + + + Stefan Matthias Aust + + + Andy Dwelly + + + Philip Milne + + + Tiago Fernandez + + + Steve Button + + + Joachim Baumann + + + Jochen Eddel+ + + + Ilinca V. Hallberg + + + Björn Westlin + + + Andrew Glover + + + Brad Long + + + John Bito + + + Jim Jagielski + + + Rodolfo Velasco + + + John Hurst + + + Merlyn Albery-Speyer + + + jeremi Joslin + + + UEHARA Junji + + + NAKANO Yasuharu + + + Dinko Srkoc + + + Raffaele Cigni + + + Alberto Vilches Raton + + + Paulo Poiati + + + Alexander Klein + + + Adam Murdoch + + + David Durham + + + Daniel Henrique Alves Lima + + + John Wagenleitner + + + Colin Harrington + + + Brian Alexander + + + Jan Weitz + + + Chris K Wensel + + + David Sutherland + + + Mattias Reichel + + + David Lee + + + Sergei Egorov + + + Hein Meling + + + Michael Baehr + + + Craig Andrews + + + Peter Ledbrook + + + Scott Stirling + + + Thibault Kruse + + + Tim Tiemens + + + Mike Spille + + + Nikolay Chugunov + + + Francesco Durbin + + + Paolo Di Tommaso + + + Rene Scheibe + + + Matias Bjarland + + + Tomasz Bujok + + + Richard Hightower + + + Andrey Bloschetsov + + + Yu Kobayashi + + + Nick Grealy + + + Vaclav Pech + + + Chuck Tassoni + + + Steven Devijver + + + Ben Manes + + + Troy Heninger + + + Andrew Eisenberg + + + Eric Milles + + + Kohsuke Kawaguchi + + + Scott Vlaminck + + + Hjalmar Ekengren + + + Rafael Luque + + + Joachim Heldmann + + + dgouyette + + + Marcin Grzejszczak + + + Pap LÅ‘rinc + + + Guillaume Balaine + + + Santhosh Kumar T + + + Alan Green + + + Marty Saxton + + + Marcel Overdijk + + + Jonathan Carlson + + + Thomas Heller + + + John Stump + + + Ivan Ganza + + + Alex Popescu + + + Martin Kempf + + + Martin Ghados + + + Martin Stockhammer + + + Martin C. Martin + + + Alexey Verkhovsky + + + Alberto Mijares + + + Matthias Cullmann + + + Tomek Bujok + + + Stephane Landelle + + + Stephane Maldini + + + Mark Volkmann + + + Andrew Taylor + + + Vladimir Vivien + + + Vladimir Orany + + + Joe Wolf + + + Kent Inge Fagerland Simonsen + + + Tom Nichols + + + Ingo Hoffmann + + + Sergii Bondarenko + + + mgroovy + + + Dominik Przybysz + + + Jason Thomas + + + Trygve Amundsens + + + Morgan Hankins + + + Shruti Gupta + + + Ben Yu + + + Dejan Bosanac + + + Lidia Donajczyk-Lipinska + + + Peter Gromov + + + Johannes Link + + + Chris Reeves + + + Sean Timm + + + Dmitry Vyazelenko + + + + + Groovy Developer List + https://mail-archives.apache.org/mod_mbox/groovy-dev/ + + + Groovy User List + https://mail-archives.apache.org/mod_mbox/groovy-users/ + + + + scm:git:https://github.com/apache/groovy.git + scm:git:https://github.com/apache/groovy.git + https://github.com/apache/groovy.git + + + jira + https://issues.apache.org/jira/browse/GROOVY + + + + + org.codehaus.groovy + groovy + 3.0.20 + + + org.codehaus.groovy + groovy-ant + 3.0.20 + + + org.codehaus.groovy + groovy-astbuilder + 3.0.20 + + + org.codehaus.groovy + groovy-bsf + 3.0.20 + + + org.codehaus.groovy + groovy-cli-commons + 3.0.20 + + + org.codehaus.groovy + groovy-cli-picocli + 3.0.20 + + + org.codehaus.groovy + groovy-console + 3.0.20 + + + org.codehaus.groovy + groovy-datetime + 3.0.20 + + + org.codehaus.groovy + groovy-dateutil + 3.0.20 + + + org.codehaus.groovy + groovy-docgenerator + 3.0.20 + + + org.codehaus.groovy + groovy-groovydoc + 3.0.20 + + + org.codehaus.groovy + groovy-groovysh + 3.0.20 + + + org.codehaus.groovy + groovy-jaxb + 3.0.20 + + + org.codehaus.groovy + groovy-jmx + 3.0.20 + + + org.codehaus.groovy + groovy-json + 3.0.20 + + + org.codehaus.groovy + groovy-jsr223 + 3.0.20 + + + org.codehaus.groovy + groovy-macro + 3.0.20 + + + org.codehaus.groovy + groovy-nio + 3.0.20 + + + org.codehaus.groovy + groovy-servlet + 3.0.20 + + + org.codehaus.groovy + groovy-sql + 3.0.20 + + + org.codehaus.groovy + groovy-swing + 3.0.20 + + + org.codehaus.groovy + groovy-templates + 3.0.20 + + + org.codehaus.groovy + groovy-test + 3.0.20 + + + org.codehaus.groovy + groovy-test-junit5 + 3.0.20 + + + org.codehaus.groovy + groovy-testng + 3.0.20 + + + org.codehaus.groovy + groovy-xml + 3.0.20 + + + org.codehaus.groovy + groovy-yaml + 3.0.20 + + + + diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom.sha1 b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom.sha1 new file mode 100644 index 000000000..71806f055 --- /dev/null +++ b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom.sha1 @@ -0,0 +1 @@ +6a43cbb2a5354e80f0acefa6b0977752a4147d9b \ No newline at end of file diff --git a/code/arachne/org/codehaus/jettison/jettison/1.5.4/_remote.repositories b/code/arachne/org/codehaus/jettison/jettison/1.5.4/_remote.repositories new file mode 100644 index 000000000..2fc4a3105 --- /dev/null +++ b/code/arachne/org/codehaus/jettison/jettison/1.5.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:46 EDT 2024 +jettison-1.5.4.pom>central= diff --git a/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom b/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom new file mode 100644 index 000000000..11fb257d3 --- /dev/null +++ b/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom @@ -0,0 +1,209 @@ + + 4.0.0 + org.codehaus.jettison + jettison + 1.5.4 + bundle + Jettison + A StAX implementation for JSON. + https://github.com/jettison-json/jettison + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + + + junit + junit + 4.13.2 + test + + + com.fasterxml.woodstox + woodstox-core + 6.4.0 + test + + + + scm:git:http://github.com/jettison-json/jettison.git + scm:git:https://github.com/jettison-json/jettison.git + https://github.com/jettison-json/jettison + jettison-1.5.4 + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.2.5 + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + 1.8 + 1.8 + true + true + true + true + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + ossrh + https://oss.sonatype.org/ + true + + + + org.apache.felix + maven-bundle-plugin + true + 5.1.6 + + + ${project.artifactId} + ${project.groupId}.${project.artifactId} + org.codehaus.jettison*;version=${project.version} + javax.xml,* + ${project.name} + ${project.version} + <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@))) + <_nouses>true + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + clean install + deploy + -Prelease + true + + + + + + + + release + + + + + true + maven-deploy-plugin + 2.8.2 + + ${deploy.altRepository} + true + + + + + maven-gpg-plugin + 3.0.1 + + + + sign + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-javadoc-plugin + + + org.apache.maven.plugins + maven-surefire-plugin + + pertest + + + + + + + The Jettison Team + https://github.com/jettison-json/jettison + + + diff --git a/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom.sha1 b/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom.sha1 new file mode 100644 index 000000000..c82ae2bca --- /dev/null +++ b/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom.sha1 @@ -0,0 +1 @@ +0bff475742af13b074e15bfc4b765c02a86863fd \ No newline at end of file diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/_remote.repositories b/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/_remote.repositories new file mode 100644 index 000000000..0ae297ac8 --- /dev/null +++ b/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:06 EDT 2024 +animal-sniffer-annotations-1.14.pom>central= diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom b/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom new file mode 100644 index 000000000..4310d2fc8 --- /dev/null +++ b/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom @@ -0,0 +1,70 @@ + + + + 4.0.0 + + + org.codehaus.mojo + animal-sniffer-parent + 1.14 + + + animal-sniffer-annotations + + Animal Sniffer Annotations + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + + enforce + + + + + Annotations require Java 1.5+ to compile + [1.5,) + + + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + + + diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom.sha1 b/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom.sha1 new file mode 100644 index 000000000..42fb037be --- /dev/null +++ b/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom.sha1 @@ -0,0 +1 @@ +99a56e3312f8ece1d457c8ca0a3c4b69d173d000 \ No newline at end of file diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/_remote.repositories b/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/_remote.repositories new file mode 100644 index 000000000..177c29e9c --- /dev/null +++ b/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:06 EDT 2024 +animal-sniffer-parent-1.14.pom>central= diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom b/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom new file mode 100644 index 000000000..a4bd75032 --- /dev/null +++ b/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom @@ -0,0 +1,123 @@ + + + + 4.0.0 + + + org.codehaus.mojo + mojo-parent + 34 + + + org.codehaus.mojo + animal-sniffer-parent + 1.14 + pom + + Animal Sniffer + + Animal Sniffer Parent project. + + http://mojo.codehaus.org/animal-sniffer + 2008 + + + MIT license + http://www.opensource.org/licenses/mit-license.php + repo + + + + + + Kohsuke Kaw + kohsuke (dot) kawaguchi (at) sun (dot) com + + Lead Developer + + -8 + + + Stephen Connolly + stephen (dot) alan (dot) connolly (at) gmail (dot) com + + Developer + + 0 + + + + + java-boot-classpath-detector + animal-sniffer-annotations + animal-sniffer + animal-sniffer-maven-plugin + animal-sniffer-enforcer-rule + animal-sniffer-ant-tasks + + + + scm:svn:https://svn.codehaus.org/mojo/tags/animal-sniffer-parent-1.14 + scm:svn:https://svn.codehaus.org/mojo/tags/animal-sniffer-parent-1.14 + http://fisheye.codehaus.org/browse/mojo/tags/animal-sniffer-parent-1.14 + + + jira + http://jira.codehaus.org/browse/MANIMALSNIFFER + + + + codehaus.org + Mojo Website + dav:https://dav.codehaus.org/mojo/animal-sniffer + + + + + 3.3 + + + + + + + org.apache.maven.plugins + maven-invoker-plugin + 1.9 + + src/it + ${project.build.directory}/it + ${project.build.directory}/local-repo + src/it/settings.xml + true + true + verify + + + + + + + diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom.sha1 b/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom.sha1 new file mode 100644 index 000000000..be9e9b242 --- /dev/null +++ b/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom.sha1 @@ -0,0 +1 @@ +c1e91a9c2f36d9e6d3c7087242d8d9ec56052e5d \ No newline at end of file diff --git a/code/arachne/org/codehaus/mojo/mojo-parent/34/_remote.repositories b/code/arachne/org/codehaus/mojo/mojo-parent/34/_remote.repositories new file mode 100644 index 000000000..0b1164acb --- /dev/null +++ b/code/arachne/org/codehaus/mojo/mojo-parent/34/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:06 EDT 2024 +mojo-parent-34.pom>central= diff --git a/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom b/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom new file mode 100644 index 000000000..9f95a812e --- /dev/null +++ b/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom @@ -0,0 +1,667 @@ + + + + + + 4.0.0 + + + org.codehaus + codehaus-parent + 4 + + + org.codehaus.mojo + mojo-parent + 34 + pom + + Codehaus Mojo Parent + http://mojo.codehaus.org + + Codehaus + http://codehaus.org + + + + + Development List + dev-subscribe@mojo.codehaus.org + dev-unsubscribe@mojo.codehaus.org + dev@mojo.codehaus.org + http://markmail.org/list/org.codehaus.mojo.dev + + http://mojo.10943.n7.nabble.com/Developer-f3.html + + + + User List + user-subscribe@mojo.codehaus.org + user-unsubscribe@mojo.codehaus.org + user@mojo.codehaus.org + http://markmail.org/list/org.codehaus.mojo.user + + http://mojo.10943.n7.nabble.com/User-f34162.html + + + + Commits List + scm-subscribe@mojo.codehaus.org + scm-unsubscribe@mojo.codehaus.org + http://markmail.org/list/org.codehaus.mojo.scm + + + Announcements List + announce-subscribe@mojo.codehaus.org + announce-unsubscribe@mojo.codehaus.org + announce@mojo.codehaus.org + http://markmail.org/list/org.codehaus.mojo.announce + + http://mojo.10943.n7.nabble.com/Announce-f38303.html + + + + + + + 2.2.1 + + + + scm:svn:http://svn.codehaus.org/mojo/tags/mojo-parent-34 + scm:svn:https://svn.codehaus.org/mojo/tags/mojo-parent-34 + http://fisheye.codehaus.org/browse/mojo/tags/mojo-parent-34 + + + jira + http://jira.codehaus.org/browse/MOJO + + + bamboo + http://bamboo.ci.codehaus.org/browse/MOJO + + + + codehaus.org + Mojo Website + dav:https://dav.codehaus.org/mojo/ + + + + + UTF-8 + ${project.prerequisites.maven} + 1.5 + UTF-8 + + true + + true + + + + + codehaus-snapshots + Codehaus Snapshots + http://nexus.codehaus.org/snapshots/ + + false + + + + + + + + org.apache.maven + maven-plugin-api + 2.2.1 + + + junit + junit + 4.11 + test + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.7 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.4.1 + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.13 + + + org.apache.maven.plugins + maven-clean-plugin + 2.5 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + ${mojo.java.target} + ${mojo.java.target} + + + + org.apache.maven.plugins + maven-dependency-plugin + 2.9 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.3.1 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 1.9 + + + org.apache.maven.plugins + maven-jar-plugin + 2.5 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + org.apache.maven.plugins + maven-jxr-plugin + 2.4 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.3 + + + help-mojo + + helpmojo + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.2 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.7 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.1 + + https://svn.codehaus.org/mojo/tags + false + -Pmojo-release + + + + org.apache.maven.plugins + maven-resources-plugin + 2.6 + + + org.apache.maven.plugins + maven-site-plugin + 3.4 + + + org.apache.maven.plugins + maven-source-plugin + 2.3 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.17 + + ${surefire.redirectTestOutputToFile} + + + + org.apache.maven.plugins + maven-surefire-report-plugin + 2.17 + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.11 + + + org.codehaus.mojo + cobertura-maven-plugin + 2.6 + + + org.codehaus.mojo + l10n-maven-plugin + 1.0-alpha-2 + + + org.codehaus.mojo + license-maven-plugin + 1.7 + + + org.codehaus.plexus + plexus-maven-plugin + 1.3.8 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + org.codehaus.mojo + versions-maven-plugin + 2.1 + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + mojo-enforcer-rules + validate + + enforce + + + + + + org.codehaus.plexus:plexus-component-api + + The plexus-component-api conflicts with the plexus-container-default used by Maven. You probably added a dependency that is missing the exclusions. + + + Mojo is synchronized with repo1.maven.org. The rules for repo1.maven.org are that pom.xml files should not include repository definitions. If repository definitions are included, they must be limited to SNAPSHOT only repositories. + true + true + true + + codehaus-snapshots + apache.snapshots + + + + Best Practice is to always define plugin versions! + true + true + + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + + + + clean + + + + + + + + org.apache.maven.wagon + wagon-webdav-jackrabbit + 2.7 + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + 3.3 + + + + ${mojo.java.target} + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.7 + + + + cim + dependency-info + index + issue-tracking + mailing-list + project-team + scm + summary + + + + + + + + + + mojo-release + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.4 + + + + + attach-source-release-distro + package + + single + + + true + + source-release + + gnu + + + + + + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + reporting + + + skipReports + !true + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.13 + + config/maven_checks.xml + config/maven-header.txt + + + + + checkstyle + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + true + + http://junit.sourceforge.net/javadoc/ + + + + org.apache.maven.plugin-tools + maven-plugin-tools-javadoc + 3.3 + + + org.codehaus.plexus + plexus-component-javadoc + 1.5.5 + + + + + + + javadoc + test-javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.4 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.2 + + ${mojo.java.target} + + http://svn.codehaus.org/mojo/tags/mojo-parent-34/src/main/config/pmd/mojo_rules.xml + + + ${project.build.directory}/generated-sources/antlr + ${project.build.directory}/generated-sources/javacc + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.7 + + + + cim + dependencies + dependency-convergence + dependency-info + dependency-management + index + issue-tracking + license + mailing-list + plugin-management + project-team + scm + summary + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + 2.17 + + + + report + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.6 + + + + **/HelpMojo.class + + + + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + + + + maven-3 + + + + ${basedir} + + + + + + + org.apache.maven.plugins + maven-site-plugin + false + + + attach-descriptor + + attach-descriptor + + + + + + + + + diff --git a/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom.sha1 b/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom.sha1 new file mode 100644 index 000000000..c5f6133ea --- /dev/null +++ b/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom.sha1 @@ -0,0 +1 @@ +803dc5cf36e504c5a48aa9a321f7fba1d6396733 \ No newline at end of file diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.5/_remote.repositories b/code/arachne/org/cryptacular/cryptacular/1.2.5/_remote.repositories new file mode 100644 index 000000000..86ff2b7a4 --- /dev/null +++ b/code/arachne/org/cryptacular/cryptacular/1.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:44 EDT 2024 +cryptacular-1.2.5.pom>central= diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom b/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom new file mode 100644 index 000000000..a2be1b00e --- /dev/null +++ b/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom @@ -0,0 +1,399 @@ + + + 4.0.0 + org.cryptacular + cryptacular + jar + 1.2.5 + Cryptacular Library + The spectacular complement to the Bouncy Castle crypto API for Java. + http://www.cryptacular.org + + GitHub + https://github.com/vt-middleware/cryptacular/issues + + + + cryptacular + cryptacular+subscribe@googlegroups.com + cryptacular+unsubscribe@googlegroups.com + cryptacular@googlegroups.com + http://groups.google.com/group/cryptacular + + + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + GNU Lesser General Public License + http://www.gnu.org/licenses/lgpl-3.0.txt + + + + scm:git:git@github.com:vt-middleware/cryptacular.git + scm:git:git@github.com:vt-middleware/cryptacular.git + HEAD + + + + dfisher + Daniel Fisher + dfisher@vt.edu + Virginia Tech + http://www.vt.edu + + developer + + + + serac + Marvin S. Addison + serac@vt.edu + Virginia Tech + http://www.vt.edu + + developer + + + + + + UTF-8 + UTF-8 + ${basedir}/src/main/checkstyle + ${basedir}/src/main/assembly + 0 + true + 1.2.0 + + + + + org.bouncycastle + bcprov-jdk18on + 1.71 + + + org.testng + testng + 7.5 + test + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + [3.8.0,) + + + + + + + + org.apache.maven.plugins + maven-resources-plugin + 3.2.0 + + + copy-info + validate + + copy-resources + + + ${basedir}/target/package-info + + + ${basedir} + false + + README* + LICENSE* + NOTICE* + pom.xml + + + + + + + copy-scripts + validate + + copy-resources + + + ${basedir}/target/bin + + + bin + true + + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-deploy-plugin + 3.0.0-M2 + + + org.apache.maven.plugins + maven-install-plugin + 3.0.0-M1 + + + org.apache.maven.plugins + maven-site-plugin + 3.11.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + true + true + true + true + -Xlint:unchecked + 1.8 + 1.8 + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.1.2 + + + com.puppycrawl.tools + checkstyle + + 9.3 + + + + ${checkstyle.dir}/checks.xml + ${checkstyle.dir}/header.txt + ${checkstyle.dir}/suppressions.xml + true + true + plain + ${project.build.directory}/checkstyle-result.txt + + + + checkstyle + compile + + checkstyle + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + 10 + + + surefire.testng.verbose + ${testng.verbosity} + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + 0.15.7 + + + + ${project.groupId} + ${project.artifactId} + ${japicmp.oldVersion} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} + + + + false + true + ${japicmp.enabled} + + jar + + + + + + verify + + cmp + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.2 + + 8 + + http://download.oracle.com/javase/8/docs/api + + Copyright © 2003-2022 Virginia Tech. All Rights Reserved.
]]> + + + + javadoc + package + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + source + package + + jar + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + jar + package + + test-jar + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.4 + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 3.3.0 + + true + false + + ${assembly.dir}/cryptacular.xml + + + 0755 + + + + + assembly + package + + single + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M5 + + v@{project.version} + + + + + + + sign-artifacts + + + sign + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + package + + sign + + + + + + + + + diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom.sha1 b/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom.sha1 new file mode 100644 index 000000000..4cc77d93b --- /dev/null +++ b/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom.sha1 @@ -0,0 +1 @@ +e30142e5695e57a00e584257533b734439cee779 \ No newline at end of file diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.6/_remote.repositories b/code/arachne/org/cryptacular/cryptacular/1.2.6/_remote.repositories new file mode 100644 index 000000000..56a791e4c --- /dev/null +++ b/code/arachne/org/cryptacular/cryptacular/1.2.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:36 EDT 2024 +cryptacular-1.2.6.pom>central= diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom b/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom new file mode 100644 index 000000000..fa2b8861a --- /dev/null +++ b/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom @@ -0,0 +1,400 @@ + + + 4.0.0 + org.cryptacular + cryptacular + jar + 1.2.6 + Cryptacular Library + The spectacular complement to the Bouncy Castle crypto API for Java. + http://www.cryptacular.org + + GitHub + https://github.com/vt-middleware/cryptacular/issues + + + + cryptacular + cryptacular+subscribe@googlegroups.com + cryptacular+unsubscribe@googlegroups.com + cryptacular@googlegroups.com + http://groups.google.com/group/cryptacular + + + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + GNU Lesser General Public License + http://www.gnu.org/licenses/lgpl-3.0.txt + + + + scm:git:git@github.com:vt-middleware/cryptacular.git + scm:git:git@github.com:vt-middleware/cryptacular.git + HEAD + + + + dfisher + Daniel Fisher + dfisher@vt.edu + Virginia Tech + http://www.vt.edu + + developer + + + + serac + Marvin S. Addison + serac@vt.edu + Virginia Tech + http://www.vt.edu + + developer + + + + + + UTF-8 + UTF-8 + ${basedir}/src/main/checkstyle + ${basedir}/src/main/assembly + 0 + true + 1.2.0 + + + + + org.bouncycastle + bcprov-jdk18on + 1.76 + + + + org.testng + testng + 7.5.1 + test + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.3.0 + + + enforce-maven + + enforce + + + + + [3.8.0,) + + + + + + + + org.apache.maven.plugins + maven-resources-plugin + 3.3.1 + + + copy-info + validate + + copy-resources + + + ${basedir}/target/package-info + + + ${basedir} + false + + README* + LICENSE* + NOTICE* + pom.xml + + + + + + + copy-scripts + validate + + copy-resources + + + ${basedir}/target/bin + + + bin + true + + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.3.1 + + + org.apache.maven.plugins + maven-deploy-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-install-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-site-plugin + 3.11.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + true + true + true + true + -Xlint:unchecked + 1.8 + 1.8 + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.3.0 + + + com.puppycrawl.tools + checkstyle + + 9.3 + + + + ${checkstyle.dir}/checks.xml + ${checkstyle.dir}/header.txt + ${checkstyle.dir}/suppressions.xml + true + true + plain + ${project.build.directory}/checkstyle-result.txt + + + + checkstyle + compile + + checkstyle + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.1.2 + + 10 + + + surefire.testng.verbose + ${testng.verbosity} + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + 0.17.2 + + + + ${project.groupId} + ${project.artifactId} + ${japicmp.oldVersion} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} + + + + false + true + ${japicmp.enabled} + + jar + + + + + + verify + + cmp + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.5.0 + + 8 + + http://download.oracle.com/javase/8/docs/api + + Copyright © 2003-2023 Virginia Tech. All Rights Reserved.

&G#1r`Wjc)yL_9ChoWE$| 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 + + + + + 4.0.0 + + + org.apache.maven.plugins + maven-plugins + 34 + + + + maven-compiler-plugin + 3.10.1 + maven-plugin + + Apache Maven Compiler Plugin + The Compiler Plugin is used to compile the sources of your project. + 2001 + + + ${mavenVersion} + + + + scm:git:https://github.com/apache/maven-compiler-plugin.git + scm:git:https://github.com/apache/maven-compiler-plugin.git + https://github.com/apache/maven-compiler-plugin/tree/${project.scm.tag} + maven-compiler-plugin-3.10.1 + + + JIRA + https://issues.apache.org/jira/browse/MCOMPILER + + + Jenkins + https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-compiler-plugin/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 3.2.5 + + 3.5 + 2.11.1 + + 2.4.21 + 3.7.0 + 2.5.14-02 + 1.1.1 + 8 + false + 2.22.2 + 3.6.2 + 2022-03-08T01:03:47Z + + + + + Jan Sievers + + + + + + plexus.snapshots + https://oss.sonatype.org/content/repositories/plexus-snapshots + + false + + + true + + + + + + + + + com.thoughtworks.qdox + qdox + 2.0.1 + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + provided + + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + provided + + + org.apache.maven + maven-artifact + ${mavenVersion} + provided + + + org.apache.maven + maven-core + ${mavenVersion} + provided + + + org.apache.maven.shared + maven-shared-utils + 3.3.4 + + + org.apache.maven.shared + maven-shared-incremental + 1.1 + + + maven-core + org.apache.maven + + + maven-plugin-api + org.apache.maven + + + maven-shared-utils + org.apache.maven.shared + + + + + + org.codehaus.plexus + plexus-java + ${plexus-java.version} + + + + org.codehaus.plexus + plexus-compiler-api + ${plexusCompilerVersion} + + + org.codehaus.plexus + plexus-component-api + + + + + org.codehaus.plexus + plexus-compiler-manager + ${plexusCompilerVersion} + + + org.codehaus.plexus + plexus-component-api + + + + + org.codehaus.plexus + plexus-compiler-javac + ${plexusCompilerVersion} + runtime + + + org.codehaus.plexus + plexus-component-api + + + + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 3.3.0 + test + + + org.apache.maven + maven-compat + ${mavenVersion} + test + + + org.mockito + mockito-core + 4.3.1 + test + + + junit + junit + 4.13.2 + test + + + + + + + + org.apache.rat + apache-rat-plugin + + + .java-version + + + + + maven-enforcer-plugin + 3.0.0-M3 + + + enforce-bytecode-version + + + + ${javaVersion} + + org.ow2.asm:asm + + + + + + + + + + org.apache.maven.plugins + maven-invoker-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-jxr-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.2 + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M5 + + + + + + org.codehaus.plexus + plexus-component-metadata + 2.1.1 + + + descriptors + + generate-metadata + + + + + + + + + + run-its + + + + + org.apache.maven.plugins + maven-invoker-plugin + + + integration-test + + + true + + true + src/it + ${project.build.directory}/it + + */pom.xml + extras/*/pom.xml + multirelease-patterns/*/pom.xml + + + + setup_jar_module/pom.xml + setup_jar_automodule/pom.xml + setup_x/pom.xml + + + setup_x/** + + verify + ${project.build.directory}/local-repo + src/it/settings.xml + ${maven.it.failure.ignore} + true + + + ${https.protocols} + + + clean + test-compile + + + + + + + + + + + diff --git a/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.pom.sha1 new file mode 100644 index 000000000..4f6527f57 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.pom.sha1 @@ -0,0 +1 @@ +9b0eb257801d7fc360fa7808542941f33f168563 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/_remote.repositories new file mode 100644 index 000000000..5424e711a --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:46 EDT 2024 +maven-failsafe-plugin-3.1.2.jar>central= +maven-failsafe-plugin-3.1.2.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar new file mode 100644 index 0000000000000000000000000000000000000000..f2afa6c89491e5995f5ccd4decb49adada35d438 GIT binary patch literal 53828 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 literal 0 HcmV?d00001 diff --git a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar.sha1 b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar.sha1 new file mode 100644 index 000000000..a978ce8bd --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar.sha1 @@ -0,0 +1 @@ +219ab3830d587d257103c6232ca3b89917436711 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom new file mode 100644 index 000000000..3e04a38a3 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom @@ -0,0 +1,296 @@ + + + + 4.0.0 + + + org.apache.maven.surefire + surefire + 3.1.2 + + + org.apache.maven.plugins + maven-failsafe-plugin + maven-plugin + + Maven Failsafe Plugin + Maven Failsafe MOJO in maven-failsafe-plugin. + + + ${mavenVersion} + + + + Failsafe + Surefire + 8184 + 8185 + + + + + org.apache.maven.surefire + maven-surefire-common + ${project.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${project.version} + site-source + zip + provided + + + org.apache.maven + maven-plugin-api + provided + + + org.apache.maven + maven-core + provided + + + org.apache.maven.plugin-tools + maven-plugin-annotations + provided + + + org.mockito + mockito-core + test + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + org.jacoco + jacoco-maven-plugin + + jacoco.agent + + + + jacoco-agent + + prepare-agent + + + + + + maven-surefire-plugin + + ${jvm.args.tests} ${jacoco.agent} + + **/JUnit4SuiteTest.java + + + + + org.apache.maven.surefire + surefire-shadefire + 3.1.0 + + + + + + maven-dependency-plugin + + + site-site + + unpack-dependencies + + pre-site + + maven-surefire-plugin + provided + zip + site-source + ${project.build.directory}/source-site + true + + + + + + maven-resources-plugin + + + copy-resources + + copy-resources + + pre-site + + ${basedir}/../target/source-site + + + ${basedir}/../src/site + false + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + generate-test-report + + run + + pre-site + + + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + ${project.build.directory}/source-site + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + + + + + ci + + + enableCiProfile + true + + + + + + maven-docck-plugin + 1.1 + + + + check + + + + + + + + + run-its + + verify + + + org.apache.maven.plugins + maven-invoker-plugin + + + pre-its + + install + + pre-integration-test + + ${skipTests} + + + + integration-test + + run + + + src/it + ${project.build.directory}/it + + verify + -nsu + + + */pom.xml + + verify + src/it/settings.xml + ${skipTests} + true + + ${failsafe-integration-test-port} + ${failsafe-integration-test-stop-port} + + true + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-changes-plugin + + false + + + + + jira-report + + + + + + + + + diff --git a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom.sha1 new file mode 100644 index 000000000..f80aa7639 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom.sha1 @@ -0,0 +1 @@ +e9cb1f6249e7f8b35864b8b54072c7c2fba07cfd \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/34/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-plugins/34/_remote.repositories new file mode 100644 index 000000000..203fb56d7 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-plugins/34/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:45 EDT 2024 +maven-plugins-34.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom b/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom new file mode 100644 index 000000000..d07bdaa29 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom @@ -0,0 +1,289 @@ + + + + + 4.0.0 + + + org.apache.maven + maven-parent + 34 + ../pom.xml + + + org.apache.maven.plugins + maven-plugins + pom + + Apache Maven Plugins + Maven Plugins + https://maven.apache.org/plugins/ + + + Jenkins + https://builds.apache.org/job/maven-plugins/ + + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/plugins-archives/ + + + + + plugins-archives/${project.artifactId}-LATEST + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + + + JIRA + + 1000 + true + + org/apache/maven/plugins + + [ANN] ${project.name} ${project.version} Released + + announce@maven.apache.org + users@maven.apache.org + + + dev@maven.apache.org + + + ${apache.availid} + ${smtp.host} + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + org.apache.maven.plugin-tools + maven-plugin-tools-javadoc + ${mavenPluginToolsVersion} + + + + + + org.apache.maven.plugins + maven-release-plugin + + https://svn.apache.org/repos/asf/maven/plugins/tags + apache-release,run-its + + + + org.apache.maven.plugins + maven-plugin-plugin + ${mavenPluginToolsVersion} + + + default-descriptor + process-classes + + + generate-helpmojo + + helpmojo + + + + + + + org.apache.maven.plugins + maven-site-plugin + + true + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + org.apache.maven.plugins + maven-enforcer-plugin + + + + enforce + + ensure-no-container-api + + + + + org.codehaus.plexus:plexus-component-api + + The new containers are not supported. You probably added a dependency that is missing the exclusions. + + + true + + + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + ${mavenPluginToolsVersion} + + + + + + + quality-checks + + + quality-checks + true + + + + + + org.apache.maven.plugins + maven-docck-plugin + + + docck-check + verify + + check + + + + + + + + + run-its + + + ${maven.compiler.source} + ${maven.compiler.target} + false + + + + + org.apache.maven.plugins + maven-invoker-plugin + + true + src/it + ${project.build.directory}/it + setup + verify + ${project.build.directory}/local-repo + src/it/settings.xml + + */pom.xml + + + ${invoker.maven.compiler.source} + ${invoker.maven.compiler.target} + + ${https.protocols} + + ${maven.it.failure.ignore} + + + + integration-test + + install + integration-test + verify + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-invoker-plugin + + + + + + diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom.sha1 new file mode 100644 index 000000000..9cd080e26 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom.sha1 @@ -0,0 +1 @@ +039027f0abac25deccfc21486550731fa5f55858 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/35/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-plugins/35/_remote.repositories new file mode 100644 index 000000000..d44caf87b --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-plugins/35/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:44 EDT 2024 +maven-plugins-35.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom b/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom new file mode 100644 index 000000000..da0ba4608 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom @@ -0,0 +1,273 @@ + + + + + 4.0.0 + + + org.apache.maven + maven-parent + 35 + ../pom.xml + + + org.apache.maven.plugins + maven-plugins + pom + + Apache Maven Plugins + Maven Plugins + https://maven.apache.org/plugins/ + + + Jenkins + https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-plugins/ + + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/plugins-archives/ + + + + + plugins-archives/${project.artifactId}-LATEST + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + + + JIRA + + 1000 + true + + org/apache/maven/plugins + + [ANN] ${project.name} ${project.version} Released + + announce@maven.apache.org + users@maven.apache.org + + + dev@maven.apache.org + + + ${apache.availid} + ${smtp.host} + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + org.apache.maven.plugins + maven-release-plugin + + apache-release,run-its + + + + org.apache.maven.plugins + maven-plugin-plugin + + + default-descriptor + process-classes + + + generate-helpmojo + + helpmojo + + + + + + + org.apache.maven.plugins + maven-site-plugin + + true + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + + enforce + + ensure-no-container-api + + + + + org.codehaus.plexus:plexus-component-api + + The new containers are not supported. You probably added a dependency that is missing the exclusions. + + + true + + + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + + + + + quality-checks + + + quality-checks + true + + + + + + org.apache.maven.plugins + maven-docck-plugin + + + docck-check + verify + + check + + + + + + + + + run-its + + + ${maven.compiler.source} + ${maven.compiler.target} + false + + + + + org.apache.maven.plugins + maven-invoker-plugin + + true + src/it + ${project.build.directory}/it + setup + verify + ${project.build.directory}/local-repo + src/it/settings.xml + + */pom.xml + + + ${invoker.maven.compiler.source} + ${invoker.maven.compiler.target} + + ${https.protocols} + + ${maven.it.failure.ignore} + + + + integration-test + + install + integration-test + verify + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-invoker-plugin + + + + + + diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom.sha1 new file mode 100644 index 000000000..43ac39a44 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom.sha1 @@ -0,0 +1 @@ +819905e407cb91f2dbddc84b85b992f67a711b6d \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/39/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-plugins/39/_remote.repositories new file mode 100644 index 000000000..02fe3f56e --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-plugins/39/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:45 EDT 2024 +maven-plugins-39.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom b/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom new file mode 100644 index 000000000..32cacdb97 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom @@ -0,0 +1,236 @@ + + + + 4.0.0 + + + org.apache.maven + maven-parent + 39 + ../pom.xml + + + org.apache.maven.plugins + maven-plugins + pom + + Apache Maven Plugins + Maven Plugins + https://maven.apache.org/plugins/ + + + Jenkins + https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-plugins/ + + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/plugins-archives/ + + + + + plugins-archives/${project.artifactId}-LATEST + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + + + + + + + + org.apache.maven.plugins + maven-release-plugin + + apache-release,run-its + + + + org.apache.maven.plugins + maven-plugin-plugin + + + default-descriptor + process-classes + + ./apidocs/ + + + + generate-helpmojo + + helpmojo + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + true + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + ${project.reporting.outputDirectory} + + + + + scm-publish + + publish-scm + + site-deploy + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + ensure-no-container-api + + enforce + + + + + + org.codehaus.plexus:plexus-component-api + + The new containers are not supported. You probably added a dependency that is missing the exclusions. + + + true + + + + + + + + + + quality-checks + + + quality-checks + true + + + + + + org.apache.maven.plugins + maven-docck-plugin + + + docck-check + + check + + verify + + + + + + + + run-its + + + ${maven.compiler.source} + ${maven.compiler.target} + + + + + org.apache.maven.plugins + maven-invoker-plugin + + true + src/it + ${project.build.directory}/it + setup + verify + ${project.build.directory}/local-repo + src/it/settings.xml + + */pom.xml + + + ${invoker.maven.compiler.source} + ${invoker.maven.compiler.target} + + + + + integration-test + + install + integration-test + verify + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-plugin-report-plugin + + + org.apache.maven.plugins + maven-invoker-plugin + + + + + + diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom.sha1 new file mode 100644 index 000000000..acf6c3732 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom.sha1 @@ -0,0 +1 @@ +0cc43509e437079ac1255236ccdcbef302daa93d \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/_remote.repositories new file mode 100644 index 000000000..82423c4f6 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:45 EDT 2024 +maven-resources-plugin-3.3.1.pom>central= +maven-resources-plugin-3.3.1.jar>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar new file mode 100644 index 0000000000000000000000000000000000000000..6a792bc2ed685356d8894bc797926e615ccd57ba GIT binary patch literal 30951 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 literal 0 HcmV?d00001 diff --git a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar.sha1 b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar.sha1 new file mode 100644 index 000000000..f0a819209 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar.sha1 @@ -0,0 +1 @@ +5a0e59faaaec9485868660696dd0808f483917d0 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom new file mode 100644 index 000000000..3cf203c96 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom @@ -0,0 +1,237 @@ + + + + 4.0.0 + + + org.apache.maven.plugins + maven-plugins + 39 + + + maven-resources-plugin + 3.3.1 + maven-plugin + + Apache Maven Resources Plugin + The Resources Plugin handles the copying of project resources to the output + directory. There are two different kinds of resources: main resources and test resources. The + difference is that the main resources are the resources associated with the main + source code while the test resources are associated with the test source code. + Thus, this allows the separation of resources for the main source code and its + unit tests. + 2001 + + + + Graham Leggett + + + + + ${mavenVersion} + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-resources-plugin.git + scm:git:https://gitbox.apache.org/repos/asf/maven-resources-plugin.git + maven-resources-plugin-3.3.1 + https://github.com/apache/maven-resources-plugin/tree/${project.scm.tag} + + + JIRA + https://issues.apache.org/jira/browse/MRESOURCES + + + Jenkins + https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-resources-plugin/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 3.3.1 + 3.2.5 + 8 + 2023-03-21T12:00:59Z + + + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + provided + + + org.apache.maven + maven-core + ${mavenVersion} + provided + + + org.apache.maven + maven-model + ${mavenVersion} + provided + + + org.apache.maven + maven-settings + ${mavenVersion} + provided + + + org.apache.maven.plugin-tools + maven-plugin-annotations + provided + + + org.codehaus.plexus + plexus-interpolation + 1.26 + runtime + + + org.eclipse.sisu + org.eclipse.sisu.plexus + 0.3.5 + provided + + + org.codehaus.plexus + plexus-utils + 3.5.1 + + + org.apache.maven.shared + maven-filtering + ${mavenFilteringVersion} + + + + commons-io + commons-io + 2.11.0 + compile + + + org.apache.commons + commons-lang3 + 3.12.0 + compile + + + + org.apache.maven + maven-compat + ${mavenVersion} + test + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 3.3.0 + test + + + junit + junit + 4.13.2 + test + + + org.apache.maven.resolver + maven-resolver-api + 1.6.3 + test + + + + + + + org.apache.rat + apache-rat-plugin + + + + src/it/** + + + + + + + + + run-its + + + + + org.apache.maven.plugins + maven-invoker-plugin + + true + verify + setup + ${project.build.directory}/local-repo + + clean + process-test-resources + + src/it/settings.xml + ${project.build.directory}/it + + fromExecProps + + + + + + + + org.eclipse.sisu + sisu-maven-plugin + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + diff --git a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom.sha1 new file mode 100644 index 000000000..5e266d5a4 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom.sha1 @@ -0,0 +1 @@ +9966f75b0f17184e0a3b7716adcb2f6b753e3088 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/_remote.repositories new file mode 100644 index 000000000..9c2de8bc1 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:46 EDT 2024 +maven-surefire-plugin-3.1.2.pom>central= +maven-surefire-plugin-3.1.2.jar>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar new file mode 100644 index 0000000000000000000000000000000000000000..6515aef80281c3451c152ae9254f816bfb2ae7c7 GIT binary patch literal 43294 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 oJIk+TjMfZFpP!vqhI3_Wws{p0HY0gH7Tf&c&j literal 0 HcmV?d00001 diff --git a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar.sha1 b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar.sha1 new file mode 100644 index 000000000..3a82d73ca --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar.sha1 @@ -0,0 +1 @@ +2b72515424da4d48017cdcfa3ea87378cefe8824 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom new file mode 100644 index 000000000..69c33c65c --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom @@ -0,0 +1,174 @@ + + + + 4.0.0 + + + org.apache.maven.surefire + surefire + 3.1.2 + + + org.apache.maven.plugins + maven-surefire-plugin + maven-plugin + + Maven Surefire Plugin + Maven Surefire MOJO in maven-surefire-plugin. + + + ${mavenVersion} + + + + Surefire + Failsafe + + + + + org.apache.maven.surefire + maven-surefire-common + ${project.version} + + + org.apache.maven + maven-core + provided + + + org.apache.maven.plugin-tools + maven-plugin-annotations + provided + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + org.jacoco + jacoco-maven-plugin + + jacoco.agent + + + + jacoco-agent + + prepare-agent + + + + + + maven-surefire-plugin + + ${jvm.args.tests} ${jacoco.agent} + + + + org.apache.maven.surefire + surefire-shadefire + 3.1.0 + + + + + + maven-assembly-plugin + + + build-site + + single + + package + + + src/assembly/site-source.xml + + + + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + + + + + ci + + + enableCiProfile + true + + + + + + maven-docck-plugin + 1.1 + + + + check + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-changes-plugin + + false + + + + + jira-report + + + + + + + + + diff --git a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom.sha1 new file mode 100644 index 000000000..a83c6dbe2 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom.sha1 @@ -0,0 +1 @@ +f8202d51279854dd7a956e8578dcefb4c02ac5aa \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/_remote.repositories new file mode 100644 index 000000000..5a47d0068 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:46 EDT 2024 +maven-war-plugin-3.3.1.jar>central= +maven-war-plugin-3.3.1.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar new file mode 100644 index 0000000000000000000000000000000000000000..44f30313d83e136016413f5bb063e1afe8ffdab9 GIT binary patch literal 82457 zcmb4q1GFW}w&k&H+qPN9wr$(CZQFHh+g2Ubv2DBS-S__Qf4lp?KYEYM5s^FQnz>eF z?j4ykR>(^MgP;HaKtKSHF`mgQaE6!u1ONa~0|Ws0^DTgkh_WE9gsdpNjG(N9sECp> zos4M8Y(LZh0}R-XSHblh`iZ<7g6BF&f4{)SoRbDKtn1|o*KliVQpE|}9wq7Yw)b>N zKNi>Q^A1;&Xq^X3k?~>^78Zl<+Z;@qs0O*Z2T*EL15`;}bFU=0wT)L1o>7u|gl>>K znWG2bAl!JYjf>yV=}Q!Xm;*~0$)y5yZUr;FW;xheV&ZN%tLk^ZDqJ!6@M0DQZiaIa zag`Q~-$nI{h0K&i@aVzc^{#3><0y$@_0;5&kQ!y|szE z%fE91H!Hzj2WCe=@amHF2~y z@c1_r zc@bG*5m_M#5vA#L8K-qNgwX3R)HcpsNC^$cbr`#!$ZpvYT5&19(sl@t8usDB!Jg}?=-G}2!aA#=zg++{@&B&a~n5eqK2jE;Tho^i^6o_8jdo` zWccdF`HOWlhk?V!3F9bS8V0!wVr1cgU>TcA{dom`J#^plgC#f6o75a$Oe!pzOpZqQ zug4Fu8)UD%=;Y+&YC8(zvK0jFFJuRjO*kC9ghRxd@+Hd$n+q7IVEw%8lipWiOt6L% zB0C+kP(pd%_XY=@p$NTr=4i1W&=?W%^gMv@?uuVY&zx;8^>FzJ97M%*YeRIUruXOr1emUqiED+!{0StL6~nRI*tCxOwi4|7kQU;x3eNI~r_Z zS&*{(DIOKwkZyfG!*m{rt;FW>7cY>gf1!ZMr%i}C>@a|23vmV4{@Vb z%5H9bl8}H6;IK0^oVlV$e_)S>X%J?xmQY~Oea*i1ALB!OxzcvEZgD_%nNN)^#k)M{ z4g>jhqx^W0cdeci&*{g76rT0PIkk`^*9Aw=42l@XZiC1itPQ;SjtrRM64ZjldD$=3EwD5 zN~!yC^EuQXlu#pyjiz0*2zXfp-%gMpwl&XpDJ9GC%jI!GAmWl&272Us-g!E+q(zNq zcA905CC8_-m&{D(T3#6*70RyAHBRn+QgHV`+opZ70IR0B(EnC#cJg#28_K|GD6tY}YI%iLfPGH@vF zEHO~U^rXacEwV+#Pw*It-rduMC$#+K;*=8k4LlV~s@B1y?UFT7B+ycGVpp!XqrhIM zJFvg+=-_Zh>)*2&LaP(umfkv)BTL?K?jD$WwX~)S_KSYHrNRPe6bAG@n)eDS{|lMT zx1%z%yOyD)t$ndL^$Hyw6LYZx&nBJdN7mDYp(OjSu^?&n$fNw&tV)ik4S>fHCmj)*fd z>&Qy0mevp&zHgv^49NfcAF-)vFVyDGu&ql20PwdlPg+7qL{>>;Q&Y=neFW9_xpvjD zRLKIYG>63k`#7ThAhcS@Lb%2t2kF|Sf~!oI=l*~{+2yzM-udhKj}IBwq9*X$$McnKo_2F~n9nS= z+NbwV?FBX`qt;rit%+{W0O;%5YhTT%;WNpuZVesU>ooStW_LFya=xlsXa_eRFE^*h zU0PqAIVH8p$Is2XF!&c($QMhx8s%zkUVlg1uK_FOd-6=k)+8BXO;T>gJ_&FWEplVE zhy`cVTBPQBL+76es*lUcMiF}Gx+r{F7VPTXn73YpIpy|JDiPCyRVw2@dVpS+qt|m@ zWYe+u%-v^_jVe2K)#;7oP^e}6>O4EKgV)?9pyVOZ&UOh7I4+`>zDqy5vYn_yb8tYc zJDQQuT(vyM)(MpaY)pu2BpxD=jKaW4E>q%3B_K8ZF?TfRNBV$u1*>uFV8L*!ET9Oh zq42R3JNg!PT8-5D8y1?XPrFFI^HAJv z{m{EpY*cFjc-FWl9(Yd3kqDuOK5HlGXL*mvy^lW4B#&+Kj>jqG`Odc3B$;08W27z7vG-vO)RdIQ)n zPJu=eJP>u!4^|AKCSPFYO`7y$+n3hv)BH%w(K*r$`<^3%@4!+>MfLD@2RuV;T7p9b z?AE%(0p%ISBnNCiB>A;mrv*s~ak_*jrfH{AT@`ZpU?qe09jw(&Az};4&fa$$q{RLWJ z|Fh!)?gO{Y$eM!R(n|BCeq$W22@VoSVV=`lG1R}%4(q!fO|i~HT$_Q(e z)c~U*P~GWAy`~0WJdgP1m<;kA|6mEwJPL4KGGDUsP>8>+KA1bl0Jats-mwTUzEy1gJIa|CwoSb&ZF zF4&LLZju&3d2eD|uG%8yDtq{7-*CJUs*T8vkoLOmQ^&LbKn^Q^EPxD)r64jjLzEy3 z?_3B_G&VMGAjGX{4>k`2^~2;Kal&({)hU)_lsaiU7x2#Pw-1y!VA-Xl2l}D<*RDr~ z%cvR1Y}fUlizszK1F@$ ztm%6ecXuXBx>I`@rn+b=?+}x9;;ixh%K#YYCm}J`6tPceD=xx(BQsih`e+BDYUA?e zW&I__gzueuYlWe zCAOwKA^*sexuB4zJA7y%z6g^S#!oPq6(tH>vIc!hC7NA&y<7TT%9k(Jo@% zl)CE*Lf#)u>+`%o!zOo%pSE|`&;re4LFfcmB8tybcG~{l4J}v?M2$D%9l3>EAmz9o zg{=am{*nI_6D$z7?LVV!iR-f;A+pta$ii>Pm~fbcJDcn@faW@f&kVjP39|VOe68Kb zv;?27Kj#P&Kok%di(M!+f3LxO4X6Wd!2OyZeh3;;9>?Yq!vi1bZwcW0>IbM0jl0T- z2+pJMR28pJmJK7*#|PCp(PLM)$%4y~Qx&~>s6vfh(ZBU!?aEO{1UX)f?a&x>;UcRk zv!pGUPHaPd$^TwEq|TB?G!q+ikm$JozN%5_AoEhFt|#tb~77NQ4oADBG!BE-+O zzkug1|0pn5W*xKrdpkD6Sl;UU*z6(H>8 z!EKrQi_FyV+CeOct=WLa6mSTO0>0VniR9Kz>2~D^G!irknZ%*0RVkkwZLm%v+Iqk* zJdw{XLb?u;Vi7E~exWbz`vPzL+zp4&c+3QC9TfxFYE(W5RmcF!s9JAycrp zD5~>2E{GjQ2z(NB!yw<_?XdO=Zo^ohK-PMu#T2T~KAkaXX;c9wQAc!lS{_hx1Hi(? zr(5T+O$RFMgOOUQznRw|pizbLP)bOEgqkNT$>PV3BbYgHf~j~(OUEuUix-?w35B3l z#^fQ(Ok$patFXV7kd=D;WxhljsQS=r_c6EBxHSEFclijDc`I;0eTV+A1ru)7F65rDQ)C z6Ba3Mi_&ZI7QMt8)DQ%l5Av^M!BOLL;{plgb~Be3KJa^q_(Km~TmeWO^6dV^b{W(g z<(~TCiWHL_&$Z;qXE3uWWqcDTM2HiBH4TC}Rr=fbu#+sfW2ZR=;(B?c%(-`5H-m7! zGSit4nS%hWQ;vfmJR;WGG5ON7mkpvJE@{*Idh4;D1AbZ;Zg=5R#UM-FAw49>P%S;c zVh3i0zEGpsDkUA3*1$G7!qNa}SKoo$af~rAIH4H&p^f9hi&Q5W>ENrk9AB#pa+_M& ztO{pT;VlbwxsZMHJJe2~P`AfpDkBNmqRU(c?PeI>SeH5NOoohWItdlC=1Rp)6%`sh zJoAwUi|y%>B=D^>r5+LiN$Wo)P-CmG&BldG7-PwdGFB^aT!4_nyrrgNdm(ppS?dMZ z(eb&;3uCiO@eGO-jozh@8le+8wmEPb$E?#+V(N2obVy6%xbff})6Z<~PVfB|Gd(gz zEKLCiiPAe%cb^hgYN!08_AX(U(qeW?VHRDbE^$*46{ln5;j(|C=z$nu8PnZjGj{F( zQmQky2y303Qry7v36&Eo#r>Qj$n|H(8v0q?gbBPELO;@%^RC9o>kmcjsFH?`qnK+^A|SL?CT9d?OJxS4jvMej>nJ_~xeOQdJ49vj$Lvo=IMF-Q zfX4G{RSi4xBJrcHOe!iarRrPqbYj<~Q)qHt= zE_n#ZR_mT&~s`& zTps|lLlgMMV_R}Q7hq@JK$RT?7d!Oabv_h92uWA+y4xV0GfHg?k4;pHeus{hj>jp zkP6%ruyf-2;qA-dDLVlUXA(GxC4>DQ0no16;>ew|yMJ~gDd5T3_Xu^p+_-KgPC?M( zo#GD?YS!UScpL&2Jd%NZ60>hP>2{<(Y*am>wZAW#R>dhAjroeb>0xHtmMI5Am)ngD zuen=~JqXyzTKfB(EDzT=u+aKVcP|-%vp+m?MUlPe(2^v}^8%^8fXMww2B8bIZ)f_l zADbFHAjlyccF+vI^2X#J{WUo(T1f zhLZ0pzC&*D@ulHr?YyP$$7Bv84`_+R@j*k5X-(g{rHDI_ycpI*jk0%m?r1*VCmf2~ z&&!*oL>2_2Mm9k=1GbpFABc7yA$37hX|m zGh%j4&N8mpNSv*`Xa$5d-&g@G{S>EC(&U?kB*Jn@g)}f9(imQ3I?Q}V15Q0jHfQEp zl1pdGF~z6a-j z9Cu5Uoaw0wU=M`G21j51V!=-iOCdY!xFL{CXmr>TWp0We>CmRRS^h8qwHXg4gF}}c z;Kix#fha=(*=_p)si2R5GK`mR z@m}Ctvc~F^%yNXlY;)Kl7@X?$SOj|k$b1^-QM;#C3yHn+s|W3S^l!kwznXJDJ}~(I z5hC2E6Igq|VfOcEFmIat`)rY@{} z-|tV3fel7)R2X|zwBja%JO+5+9SCzzXT7XJp|9HdZFV6bmew3P>Fb1g)S#L;p zk%<~TUNfyQ{8kjprpcKkM11o-po1_z>TuBwe>4b2=eq$9aPxoY2%)Q8oEU$!>xC8o z0P+8-to~EL{%?i-|4Wkpr*=(iZendu=Wb(t$!q1b!IqdO*9&w$QDU4IYBbuaMk%JM znmS@tLZd}GPQGo^qKJXS3>-z`4nk>>xZt;a1=cq@b;9|eK0%m51uvKn$nqBAE1$)$ zN5aUB+@4D1^LZe0^8tx$QBIT*tH=N9{L%8fpOn|Syv+8!a9-aVrF_tZfQT)tF)%Cq zdvec_W>L35xoT~4r?zTkaI4hADyDuqncUEddw*BB&Ie~uwgr9-&}H>vQR@N?68DIS zS|3x(P7+fr)4`P})S7$J5Yy4SzvbSZXcj~Z96@ePd?YZ&F{KVj->m(OXdtknVQeDs zmc_7Pjs_`1oOm@6g=_VKy{zA2w4JK4+g$2!-+z$^__w;gYd-sX4fxZM2cZ}b&Ca~_ zclI$FXx8V5)P>0A=B^Qx=#7#6WtHe8O)nlx9aQxQ$2a0_WCm(m1C153@cpg@AAe} z^bZ#_HES-%`wny?IP$xmY?`J9zS2e+ks9$WOD?IW!Ust1httk#(e9X?sPyi;BgV)z z!)Wrml=wn&_v(Ps4eBIBv@n`AM5_Q4R2;jneYqce2nf=@@h^V%ZT$Bl}{sfhE6qqB{dt)OPSR2Jv8He;9y^)M z20J;BAS0hjQizEZp_wC00?ik_x%G3@G>=RUFDSaP(!jt8uu8t_7m>c$fP{MIOg3(0 z!dL+Dupw9&VeuEjlZv1F#rSw$5_|K&EWCpvswahWSYRw9oh@~l#j$)!vToi%R#2pAYMn>yGC`C zs^7AGeC0rLap=DSJoiU-l*_`;#bd*(p#l~7rv(=P8&hZNB?a;b^Uj7V1z!+jP|!sH zL^b+iH#bo0f5J4gSwo~X^K)#C1a(V9ZSNZsBTfnzDtA8#3tEr%du8NCp5U$|5i4kq z-_Qr_=G8{;8jwoIsCUD1Q80u$7P*8&12%{11XRPe4r-|!5n@D!d(mbBxYJ>UCgB3e zBR}!ZCVyE_2)yG}Dkbm%6NmezqXVvE*DJ5t&Q9^efQ)0j@NW`uEb*+uX={=lrH6@z zniunK0G|BbNN-^ft7~yB-f(9kxk!~)W>w7{yDb)wf4pn=ZEkt;(f&|&d-v7;06DQ{ zHC%V|&! z1E@97k}frqqe$S5gs#prD5nT70%ZZN3_BC(o$zSUUxOMI{;*4FAwf{Kh zInNbbOb@u)>(ofJQaVlGd@Ia$9!kI+3>~gb-JAhPpy{%tJQ7}jcWXP)Ykr?mTfvjR zO1cUkxP3u&&JxL^)NtSnGfqmrl45KvLYmm6CguoU?~_aMY=v-^8Z|SD=7>-?yyR4X zw@%7zVv%MZ@vu9hRrFpSrK^?8%0s?F0*oI(4NlAWEAz48UK0X-eH5`yulF4|-qQng zW_og_j(3mgEB#6;2JI~Z!&i1ME8*)15UI7Z*gsQFMGy?iI_6;q;nP4mHd`a^sGyrR z-?OZG|8X`pkk#P0f@+O(WBOK1wgG$>#Tg2U*O*q`{EmRdXg4s2i^>Qb)COM@IHLa7 zID-+PT$|{9DX7&Y1T1PHGS6LFf7H%vXh9y0n*Aqz>5S=oH7h%=hbX2w3qalL7}kou zM8jne??4gXrVZvUqQEW&v5m0V#r z8VRNCv$K5kO^hBW$*oM0`o~Cs1jWb2(uUZH4ek3ZB-q3JhU5yQjtrL&3hrxy@yOGf z?xAs$Y^v{eCa7~L&f@m*10P{eIrKcI;;Ib9W;8r#b>pmk9 z@ln#E9HvBcXOWt#8?e)qbCA|B_H9P7G}b?}ns{kV+`DE2a^jQtI}Ukf8fvEbgvUz; zPwpd+BHZ;erb1-}6Q!$YlLj*ij))O>z1vGOr-J*N@^fEUC@&pL>~hq{nYT6S*Qud^G&{7J52~|!OMIrsGZspn1#OHvpX0U@Gsau!h9_@L}+WwdIMC2MB! z))*~|*j!+WWtV>OAAklEHt{Kfo*5C{xnNAJnW3JjV6z&vymc32{ zWmieQ!I?X{kn4xTjFZ_Tj0_3P^L3MbpQ|-A>=4<*LLnG=ulj`Zz&^<7^W*Yv-ze zmbqY$Q@ z^9aR;OuDAcugjzwVuhF&u;{5qiL&-fU9tBw>-bfT4K& z-qpv3?4$}&w={-Sd%J#B1wU0vD5kZ-S$~1wnK&kNg<&hqNMK<__k-O8XabC{V6LeMj|^ z*ozJQdy++7vTxz}Ub|q424j38C1NOS3F)E27;jR2tw<&3h=_?W*Yhs^_zohtjW)jz zr<8}olZwL+ZgjHrpi-9^C0?XW5t>;$xGbN+gX;GDv}v~s>*suRe4;#Mt3ueabTn;~ zM)dOICJ8){bI5yrVQ27YmdrDf6IE4BBX{n@q-LiGJ^uQZU&v zc@9=n1kh9dR@-%HdOp~?Ubkwx5@{U2MV?#U_lq3D+WF%>?hP3=tF^WK7YJ7f%I+q6 zW(Iu+On$R#dfu|kn0LPK@_H?YuCnP~b)2ygDz}W7_&qI&m-38o$Yk+oVih!w1IqXW zYs)pS=@B@xzq?G&2HxdGgg07A`ni_OFt7r526!^i`9T?!S+^Kds;}>+|MX2QBz%hu zeQ+gKu*d8bH4G%rK4JANxfO$VA$~0pycBjV<+|OB?%LB_@&TNiYU39Hozsc*-s<;w zJ;PhEycbIVy1sgN<%)G`+ZUXTiByVTYoahuo(%fo6qt>L@hOORK2;^64}be4J#Xyw zJP%~BYy7So&muAUocQ%U1=UdBu@*(k zglVX_4{?zI++UqZI<8Cws~s#(^?wa`@+$C;nF`!)4zf4txx`8 z!Tek@{V&|#+yBED+m->M(LAw z=x00S{W!2S^E3tWK3)npo6#q~H|VU;*J4Od&1mym2cF)_{<$Yt)%mUnV0Hrwsdp!e zWY~g>W6^KJK+Kg%m?z5zew*Mb7_u|}ROr}D^R|0S;ORDf^SY#XN;-^C zD;5K{P8>C^JN}==>FOMSh;YKn%BP4ZR4v_ZKP4E$|B{@Tw|jc)8y0AP7ydj20**TGyv-Y4Go!uWJOdg_o~7~0V80Qjii`9x%uWi zv8P*%aBbLpS}&Ph?0TDsFSZleHow>T^snD4u5ely_TdVC=sb>~HZ`?0ENjHOUuAPi z<7gT@S!7+=jMWqQjVi_3Q*E81L`@c6SL&OVg`gsU$ks(y@?*)}Lhp=-x~P+qW;+V4 z38@!vAh0a;c{4o*!geXyW!Z#tlEp0aOHx<3PPo9QbLDpEuILe6IWhF;|3Z&`3slf! zID;0&x3gaS$I<+#BjE#RQIEbe+WNl$^B#hy(4s#5Cu+iF^cXp#5%d_3phYcMx2}-p ztzF&T&BijvfL5K>x4AGWe;vo^}4cyJMME|-8(Oi$s!WOm6AyTM;%U`oYW_&ngu6K1|O?r zjsw41QO+Eyt-g%}e$4@+t#+UQDuviVm7{UJVD&So$qBdT+Mg@Tya#!RvYFyk#*dn} z?c{~$Tbn1@?C{{kW-3c2gCFZ0`nan5T=VDb@aNoo-z`Gw$MVMh_Dd@l2P;OLiOtTY zPrh5p!Dt9@Z@UOYjW7qbc-q}(C&Su6>@ z%`3n8Yiq-@`9eljbISV`4*3=yCLSvOXXP_tpI>2@U*WdwLs+Ep$p(_cDTT+aHlmf_ z1D!?n12hJk>ihZ*HnQXG8{40-7bz}cUs?ENiU#9#^ zi0ID-|7Sl!H&>XeI0#vPL;t%}G=3OvvHB;WP3{Q*;2#-*|C!hJPxa-Wn#zBXQ?`%Q z2>9|QpDZ|hji0q!s)SPyniW$o8x9(;6P2Na3{CYDK!hAgWVFAoS2h7&($kIvV~S~7 z6e|fKS+HV6d*{sUzMT<6E~JYyly4`wN@cg9pdp68$$tuw|A&Dain2Iz~ehWTuL zj`7I{UBdYcn+A-1D3fvK*WX)G3=$Y+`=IHxWRVm+aQfu z9LajC74sW~zNe67GTgqlC__wpHJQMCeAsQqLY3h-+xVQp(ZV z3&m5j&CL6!@&jl5Kuc8@X4oqqoC(c{U}kH}ZDN$HPa@##5FEoZ<+YI1r#e7%qP#HC z46BCeB``e3()-jRaO0g=p8$h-cVh_VT^oOJy=%`MbI&Fv-lT*vXP8Qg_f(=@K4lzT+ZcX~m@`Io`x@(W=XeHuCquWHMNDgIOwyL8N|+D3E4R zqIk~hP*>Ywqh=Wwxm^DfmQ{w{NPtOHY|{aw(I0hQ248{9`AXM^-TYxxevD)H2Oecc zrbT67jTgqia2Ti0Hr!I`GXmP~K|D|{*Iu6=pwnF@rMV4ph2)B>2S8zG_STF#o&aAt zl+^Wof96$rfWOk4#dYQk0_BLk$pC9}$hU}54&HVrRu1n4{8gm{YrcTa5|uaGVT6`L zOo%vf>T)F|?q5B1DMD@)CXM5KfTZ7VL`|g;rSW2`?FAdq0%Bh(<^WWZ`}_p~G1UvS z>L5>+Fm#m>f&v_t`YaLJY;$J8Yk!Ab>$?3|yPR|UO<$ZsP0y729GhiY3_(t0wOBQ33LBv zT&=#-uQ{V|W#~$JF}sx#vBd$J-B*7^zvT=attit;V8`l#s|B!&u2 z214QUlO1Dpk1r-SP?!YeLm2DS92pEWH-M+ z?p{z1#wDY}VDq(pQ<-K5fjgLRm^}X}0)pm^;9AS{w>k}bR3-&b0Lf~@?MyfTR?E%( zhzVV1Pz(w3Gvy)pe$^8Ex1dotFB(;8e%@bx7~uze;tTFkJ1F}*UaK`i2T-(*5o!t0 z4q*C7CBN$f7`xCSxOw*{Hc~<)*zz;TB7-NaiPrEBAbPTqW^>g5EyFA3<~)+S{Ev}< zy8Gp#WxSiVuYA2;HhnLoy>nLXk2yEV_*2HrKWG<7CE~xsDKg*qvqZ`hx(Qe=rfYy8 zfk!qE0Uz4Jpq0iW(XKJq(+r!N&RVGfO>l2WsK_2yrm z`oO@@R*O-LZ{hdXrM)rrSa0FCS*5)J29OOR z+L`97X}{YxQ914GX7c$d9^ixUd-880gtb6vonz>^=|g1DFD>(h3-|eSr=LDAuUc~z zx6enKSuqt8f;ZTAw3cj@JXuZoPaYw49llwBi;!7P45C}M!Rtm<-P-Y5JwgZ$B_EK*W-m5S!SK2$(_Io0q4@lX2Ojh ztwNdJ$!h}V7ARN%SgET-fy0U*kuNZqqi^#+;(5hEKznX1B$7+05G{Bc%ZykvA}I@9 zY0{gTbMKxTT_QF2eVKLQ!&wvzalWX>)HkqNJ{#~?Ac7G*!|JoH`?MDfjBpSMGNPg- zJKat!t*2oI7B-?cD(kkVPbaz(qBCS2z3M=w=vo!8eg>)~>^Fj|NReTba&4%jte0D- z?5dz9gl(b}Otpb4B*s}=i`O7)e>fOPub@C0qMoN90#dyNMd4IQJ=Cfl<({vHcZMWL zYYL(`%@Y>D3~`yG{bJWKXsK!*H~;ow!@>)8&#yjPxCdkWoF74(^RdI!$kplp0=-1e z?`~j6_&ViTv@%dy%ht0s$3-w{iu1Y)G{h5;7p)aSL>)XeSS_5rEe~I_IM>(AW^b8( zv|ws@=62`VlUPW8FW~fcO6J9kvRsg!B8)py*CQqNMxU^qP)Jv(Iz71bH7!#Awe1SJ zP6!-y+M^%}AK6A3GO5XBZ=r)jNa>3T&I1b(bo67vGeVZ6Z^|Q?W#A?YS_{n`+Z7xY z9mWSzCsG>Bi3{91CaPgLnB*OOFpg)I(tQ*zZoAR!+xwyINI81P@3N@K6~VmhPWap7 z{>TG`cea6Eujkh^mw^9%VG$UqvM^ZCo~9WP8=AVi2BH*l#2xsBFNK_l)!C{3Q`cgJ zY?;imwP;yzz+GeP)~d}$t4-iCB|LcCw%=Qu+s)|L)p$QXIR4gkH>DgXKFcVFC=7dP z4O?dh?VIyz0?F=}5jf8BP^kE{8#bQF5B#O1P6JtL=P5S~G{i;uJvmI2&W;S20EUq9TDFZ&)0pnkW2?*ADcLUjergUPePESg`yUphG zIzj-)45~SzU>0)Q7+wZ*k~iRNxedc@J*6YyaVB#0r_?dZQ%J?3rvWCs#p`VM{}dIe1BB8*SGqbw4FsUc27saa8;K@&Wto zM}?rcrWe8pdU5>by0MMg0z>_Zc)%;!T~bLyep>r`CYofH{aK7)v71Su0eMJgo#J1G zSYY=4`Swm$VOgObC74GXW5{(LEQ4>>4K{l;L(i|#Gg2&{B&nU9`J3cV1`|Booeav` zqp|_*0CmI?!SX3YC#R&pVRwWxg?(X3+^wp#gBXn%Z`$dDYh5nGrW}ZreDU4SE@0)! z_iE=_JxTq?N*4NS46U=+=Fi{B{&#n9m(kogQ2DnYkC5^zRC0Zt@6(~w6ny8W`A&cr zUN+?(oP1VO`d=PjSpH@>3pIcad)_u&&D31ZK<1CGLmU@pf+KhFWwj=Nbv>yf!7kRx zA%T{SVKwkftj^60uMSdi0hQoN%j62Uy0{+5K5f}Q76;*!M%WNWLo*J?Yx_$VH#V2X zbsauc!I>;lXsOFPcz|zneXorxwjy3WSXla~7D-F6OfC?*)LI2DZLrCO}|BGABupi%FV(8Wn3W*Ctto ze44KG7&Ynqi!xhDvoJ3n7%Pdgd5vh_4=12sTkyg&CND@SP&~Ug^p}k6d~?Q^f^NKJ zfYPsh1S%NE(m`2>KP`Jo`_y}TMHB)|&cM0?M4Ul^FSMLeAUN$`1>Tmj7oRM>;JudE z=2h!M?6XXX$nDvjaB!(235@O_uSP};As{ZuLa8W&W8hDG!i0d(PX(#fMoQIW z58jgw)=Js`5;kE1e=lOp%y06d-ut?6UWHvG*+XZ-5@m1^hO!up;td_Ek%%b)QqV-9 zJ+;2t_$+;&|K$5n2oU$$Q*4D6&>y^ZaSAN%KHPyMsFOy9;1v`%$-7?9xhnu_J_rcO z=kp5IpOgh?@lHQy)-e3sh$?4K&^zR6#(KNe)> zyAu@E9b|uzvE(%T2k8>V=-(LsA}_(@x%?N0Vv6D)B3gY$HBpPFE2n>)x z^Xbdvh6^rqMqENeGzwq2v4Oc{GA9;Wpa5qOtrr%gwyOGE3O8kKq!u(Ou>6)v|A-O* zK?|4JJb@{_%6Bc6;Q;tOc)pfD;62f7Qz}42uiuM{o!_(ZvzljZ!9|LMUOG_;5o0PC zTl401uU0%MKe{*bKG#!$gf}%c$KIX|U^hy23@PD^h#27|DOM+v&MH>^EF~l|!ZbLS z(6cfRerGW++fsgA>Q%=1vOz+;mWZ8N5M~|7yo)7w5RiJ*TOXx)+Br-Bf*C3oYA8w@SY$lx+(I6srrrLUWmXv~ z?eJ=?BQn?{+DXMC6ts|^dJNV<$}nOrOWxOxDIpFbHrfiFGN9NSRbquY9(fkZPKQ3) z9{6foW%@X3Tcat@4u?Lrjvn}uBA^2-2oJqSBvB!9V3E;mP<0UTckUflC;EouTspN# zKMH^|iPl;~j=9R1V#Po}S-WN#RT_D&a5F$CKSasT1q7cI9>NIa)&viK$qzBqm2>4d zqm|X$WHhpDJJR(v!dZAcjD0bq`Z(O4U*mZJ|2*Uzbk@uvoEz?&|IG7!$?s$*-+)eJ zwKsOKnZG}bWu^K~+#=alUN{F4pG}xS9`uCmaNB7{GoW22uxdVPK+{TW&ZMR!BhE#G zv|&HMZ)o1#-bh{@JI(t&ghkIbD!MYZ;MSBDd8#_=d0FizSqomKw1%J~b;Q<5rpyOF z&okuLom7*3%7cgP)L>m|Xegl{eD_vV`F?cP)81iMbCp&3&L+4pA`Xo9eMzBh>hv%! zHgCCk#p2~HSb?T0mmy3Nha0FChy(6y_^!@qP@^#W!xY^NUi*o1GF6Quos%rh#gOu$tjQO1d*C z*^1Dwzsf9X#`Xu8GE4?L;dJd5uO!b!>?YC~^xsIw)HV^Xs63DKp4~bq3PAXMP1NU9 zs5{b<$3qR)>sSgRlT6S`P7+%9N6j8Yt<>!Vdd2KP9 zIY~2G`jxqoR>EBf_gMIx5ZNh;7JXZi-X|JXxWLiCIR5OzY7NA-vREGxOaW_-5{A&EmRfjwF~e zugf#ZCW~In0XZakD00FUvV;L;Bn=6cQGZrO zt2eZJF_N(8yoR_qC>AKuV&WxK3;;baPy}fS<#dx{f6*^6J-d&kX&|DJ7`HLy(~t|V zQe+kbsHY#kVGzIx491~p_WGDW6)FL~i6g?9&hhO0;%MYpLwtkL$f=z>Su|ZHw8AL{ z)Us1|1d&t`vOOx8bUS$s_V$;$1K2DAc?K?=-tT2Dvg3eE1qJd=F|ZGR(%(cY%BiL~ zi8b`ID~GVa(0fz}hh&kP$k?C}6jq?Z@$#JtUHI@~p5D8qs$|v1+?C1MI))8vxVFH_%d*0Y<6&XP7t$8ba0g)z41pA1IefXNXdv zVC>NpORv8woUBPr;&Q}#AeB0CtYx^OEGacvBbvlQB-euRe`j6%tQ}e3Vmms-M5N@% zFZA(^ucJmW~YssiFmIUXN-a|z;r9IRU{ysP0^1}oKms$avI-N{-E zN6~&Zj{{n|y$ukfp*tW(aqtYPeUe)_agpkIyGRu4Cp71bf;H4yg+2g_~6EvIVk7+m+-6 z!8u+an0D@-y2!XOc|chdz`U}F@umw%%kAMaV)gaeGn>&vZf6$MX^X-t*lqgB#uOr! zrml1Iv9=6u*Zp>9vKt3@?~XsW^cXqZ#;B)bJor0#gS`dC0SHGO|6ZHZ2vT| z@t@|cU#8b4L3%!ll=_L8xAJHQQ<2coN?OCN-K^l>q@p?|_3V-$`S`b3&XKUymrQ)( zDiO`!4xaD52^X^LfBh{<)z7}N=YT+6C-x6AL0Zg-9%}BCZcqE*RZ7>0e@6jEI~+b} z_%v_K%WwC+3vcW@TwzqRJ^>86!q%*cL zbat*)(^ke2Mfvg4%wUj#*f)zA78#jr(g71PQb9PzlGNy@p#!r&&$Ue>8=B@?>O$}j zjOVjRrKI&2u7M(XGkCw!Z<>5~x(aHrL28c*Kc6~x?){lPzi~dP_xJk+?x%3eS_pl0 zWiHEhMBaWY0L9Hiwt-*Lp8K7}&SGOH+aL+Kb7=V9ZqjxYDUf1p>;py5#dt8LRw#8dd{;L4G zrC7})@t*yIAspVegQlrRF+DE8F$s^y)Iw+TfYe@UKPRc4przb05D^G7G=kYU8(jyc zc`^$uclK_%t866BsPULb9%PvwUI>ACa(S@y>0>fusN5Fg5un}Fii>q{- zVhNXL=e=~OYiQlVx3h!_w0pg+qQtshtTRBX*fHg!;X}P{fRwc>=idfHX?lE^{}+P zV&uAGtLOcpQ`{w`jjxfDMkk+cixUmuWhclDGOvD- zae=+he7=GbGE!^d8Y_D6&UgE{75$NK#jJTf;Omzva!q)jsC^?p>LN&fK>u3~Gs;A* zBw+yn{Qfa)WdHBU;s1!?j25I1jw$MI-(Qks8!}6YMdM8&;p|11r6yjAQgYj+;N=oZ z*^POnxO1~4nXXJ-GxyCDVG)G^C=GcKQIUp%0v$+5} z7aK~y2>kc=A?J}dM@qk-Q`N8K_(&peP(QK|{?|i}FCnu&mHQz4?CZmJ=C)3;<8|FnI2rZ3g7HIuh&82|Kre5S8vl=?&1 z%pT1s|NUJip2`DS{pwku z@VE0_GS$_DR-`dIAcEE{G(&a~XZIb5nCme_@vGX2`5=p9Y;jb636_^aggs$HU0Qsn8Hzh80^N`HNgsW#F5>mw7vD`#< zw`;V$(hZSMaP^e3c$SmEk;QV&NDSAn*`Qf$+O$QbQi`>bG36O#C9D6Mo)_gvm4-B} zbRq~PLpORfP~F>YvvJ`hd6=PNAD6PluN9Tj&>D!=E>|rOx>S21hoQ0;qfx7KODq={ zBcPF&u#MDH$7+!L=^AT5qK@@gXEU~uKM~f3D4pnNbTgM1c9(AnR#>UbPDHEz8#9JE zYVM>aAENI3Rv#fo9A?M(c~~?d5}wDv#a8ki#2GiSP(z3nc{kBGDTDL$#Sn5(oZ(E9 zX~FCr;~{h#i5P{nZT2sNx_>l;fA?T}A2NeCrC!YWhj+3&3N1S=Q$vcS{bs!2y_XFL z9xsvl&-UzhuPKPSdqZNo2hN#6)p<4qDC`1U??7>u%#=p@)nBu9+mE&gLUn$uRpM-y z&6L+CBS|my*ej_hP3el+g}y{zMf1=%g$PS=bJ(r*rYd%u;l(^90&!Ujo}#5HTrLti zr26S4S9h9Xdrj-0%IxQi$D0t1SmAmpQ>xTz7O7GwId&@CawXDJu%cMkUvxW1l}1yJ zfkXdmvmZL*#+^93(*}VIJ@)M(iOTvyGf(N{hXpmJhV5K(s*FHtWfewUF3J-Gw0kS% z6y(1w@`2>;S}VxXSF;i}XGcM^+B*F8L=wr0&XmKMXA;oHTkB7 zIj>o0cTeS-sV5joP$?!eXSB9w@5raUxKrC6L8k;uR3*3J*#u2bzMPtWB!khyCH^%~ zGnC(_u{Y}Bv_DfOEw2uQ>KcjjjIK3=bm&TN5Nehb39{dW=`u>LuhPJ)a$WJVd8#f< zV=(pE75Yr9(eJI}0s4P5wlaHVL$H{8KWw4WQ^fyNX~_q}6xX5RTd*EbeqZ!tVDyM_ zQ0k>KnP+j}s($G~u5mU#(rQ4Oms{&E=(2VCt$sKUxFzDLIqm_g) zaIv@)Y6nMtve*bzhdpyB3uCict%tb5%37>C(9J4WN)=me6&P02)C)tC+r^3yA2y~#1IEhrd$VSVuu|n#ESO{! z?Mvy1YRngCFCnqw+B`TEktu_&namRFHCJyoSY4HvGX7#MMTtH&C@!I{5L2yKv82iw z&0#VuI&H4HPvtIIV69lP{(F`GJRV|z|(Imr9S%!+iwkQ>=wrCZz zx`c_vwx|`m|7$GGVAT?vb>_{gSO$yLvV?wb_-armnUx3!?ShOQj&ujJ)GSoQvRSo2 zdUs&Y(gL$|hr_4D&ettyu1jk;$H-)#s?lyLsZI|LF~yr|gz&sowqzn-NdPk#jwW73 zGkiucqqIK}R~T`co|0qIFW93ua0bFgW#a6EwPWIN_5dM*k01$06{P@~0-MGsTSd>% z_{iufO`q#6+wu0!a=rjfc^;wrQGy$A$s$b!Ovt@L9Sv2$tzJgns0m}BVfNItsDvw7 zpS=`#HBlg6CO?)r>n)Ej6pYgtNsj3ap8BgNylF$cxKx+G^(w5dde;toRKlxO`2j1PC;pq zOG7;r@(`N${G0u}NqXU4fhdzVt?Ll_MC=-L*c^??P!^e9O!V9maL(LklkYIqlS@Uf zJOt0;^2D}SX9{@?b$CgJu?D`=dG%B3}mE#~hrd=AvC zlq2=NY23crOJk&-bzCqde$3s1W1gCK9KBo6w#AS&P%ArZ;{MTQYR;8tD>VKKEe3M} zvU2{M%wbq1Zs)4a^*YG`_vihro!7)%<670*p{zAFuj1=Uk)$+hWM*GxuF4={FdY+} zyr`0NcJc1Xj%$7Q(y$CUwyk@ayPh($k6ggr}3)Id3bSQ{HX{ z!x?Q3HD|_O+j(bhpWkjh=ly-QSt*P5bOKgCZFcWfE>T&Lke8rd_JALG^L-PJ%mY9a z0~7)D^0NTsbqGCYAv|brnhymG7}S>n3JmJA01SA28A~+3Ha_-*s!1i zzH~r962C=2kbe@cD98G_2|!*9kuNY{nhFB`up{)C8Tk0S!e;k%6?$Odhff6*xYV~I zZy|nRt(ayU=2PI)VC~gdhJW9K41X8|RP#^kfN(~KCx6^&dsOY~ zUP!irs=hx!GL;aj_NSsV0C^j9yl_T0rv|?lXXhcJzjf@Gft$1V;@Uaw#suVm>RH&pBigGH(MJjZIMx=3Q6Edz8y&FZB zAtgFdp-u>Ns}=CM|H#a2{$YW97U6SSWC zi=((dwwK0@s}BLLg5iB*YIE{3K@C&45 zmj3t~5c}H>j)NiES1-*vDbLv`{u7EHY2Cx%Yw=F3|2Xom-_?B@|4^*|GV*U=;Zy$k zDF1n6AJ&@3rGFFlZwmR(M&TVH`;Vsl7kJ~E_OGUU$K9Ow0Y3|hUmNys5c$uL@L&5l z?ca2sd;9_Mo_pu*H+9~7{GqX)`|^(ade4LULyXJF{L|6C{m4E%_L7H4Z2v0gTVi;h z3nc%fHNH@6UOL0V?8pmGNdD_e5kzuQ_TH-osjZMX4{YP!Z28o3M!VUI#4gAcSU3+G zqS9e=&ug@;EHxwMa2L2vjC`eo7B9avykQ`GZC%>+aG?CR3i|LzlJLh26slwjj~7n3 zgCmd&A&SGaNW0IbxcqAC$f-+TWnNf6Y`a$g^e%R-TgV@t-aXsnP`fW1dFtInSkKNu zR(6lx@;h$ccHQHh7bN*R^m|fxhgNN;VDdM*tz0m6$DlOiDl>)^^^lH${i0(6G)jv; z?x`tymR>QH_tldeE7up5YR7ozst|8S{j5ja>C7nr7Ul3)a-X}V02mP&&DX~Hu0NTuD=))pS@@}x7^7+4!~Hx zwH6PpoEIw$Gxr($6r}<`zl@c-!yq%3sUzP~h24;S$&=}iV|;VPHO|;Bj|RbND8=}n zy!}UU+R+dF;5e!%I4+}~jjNsbe07WYV#M__Vi$cgM`LM0NxuO9U9&+ZXafnO0|1PR z0RS-lAJ%ODQ<$}Cc^lxUuJE6lCI7W4v&`yUZ%YwaVw2sl!+%Om5y~n_NGfTi^aVjA z>q<7+oVjUg-ef}oK@?QD3#2G02pU&DUTG<6vX}n-mI^>K_KE645CDH545$$b z5AJ{u_fYWd$J0Lp{{05Q%y%>;dbwY#^WtiwIs zO046Pte<~!fa&L(X1#l`(VjWxt}*Eh_(kUzznOQsbL)H!{*Q|S;~&DWc1P~_WeKno zOV1F7j{1d}{F5{G6BMoQbWcsEcW_`z=Z6~reaFsogUU8)KXvE+Mupy|e%H!$Hn#Tt z2CjA;@Ark={M{Vn4;e6^ycpxJdIy`A)kpc}e)3`l@Uq8`@?{S2a?satysLwwddCmd z8_H0tdAq>W_@qYLstA3%>{WcfQzpVwdn-v?QG4H!XBA}`R)`Jp^O80bd)n?+BV1v# zS$MrD#7Mh?eIZjGQ2}U(gNS8Go3~Rm!t@9KH@d*aR&xr)&j;JkC>|}=Hlke|HW;Gq zVtez$c=^Jhl`S#iTr0;zb~h!my!hM8+DCmk!fotn)PpB+bx{#1u%UuB@dDOTl6I>+ z{G(OZizg+<6ru}pF>ExH&5E*CU;dKPsDeZ}64xuEC5xJ{?L+ALt8KxH5R26ab8H!$ zP@!iH&jS*ZxYRmPgojN*1R81P6`FY=1y8U7LL1GxY|Viy5leugJtc-r=(310S3~{S zgZ64x#5gfDQidy2@>D`Xs51@fRn+~Q^V1kz$T1#`8A4iAiXACaMZ-Qa92t>`d{ELZ zZ3rA;tO@tuucuL#kcP!ZAlEY=t#Jb2Gw)MFXqgZTTZ^BCkMMw+z0?yqvLo*-+Eb~8 zP&3&p%5lQ}W%Q_JT$BXY;M=xWdzuW_RmXI#F^PFYLRU38)|wIS5kQIOu^sJ-W!BJu zjn?yy-OPOC2q_^kDp_jLeFACHNgh?U4R-RiJSV&UyWb)?+9aG2{$=Fo_@;$NDC=&f z3k#Z6G?q=&;;e&4e`OPB=EF#iUAs|Hy3zxMn^Vlzu|y|VcZboU1j zhWsSPpPsvHTq2)yluyqIJ8w(1FiNBZMG7#I1Kx!l+iTmFNq2H3Zd|n-*Bna1>hOR3 zKa;7xzn`8`8xx~tOL1#T=N9p3a`j6#e$tPyxwyy|jbMpGFvM02?;3o|btA2MZnwu{ zubqC@Ih&)3&4g|lF5%{u9`$4VM3gz z$jKp)ob`6G;l`N|+*K8|u5K+?6K*n5XOg^lg|3o~eimO1Cxr_?Ab&~9U=>_V^P0WF z0P}8P(F)Ja2Rw-E09T1^veS4idF?b9bqX^^RYN@AVV-%tIEMCz7kihmHVj4$vg6dA zr*jgso=s>N=jF9nF2y)dWs|fMVlbbINT0{GHa1|OihchqSjjDl(Qb=dZ(X#ZfxT0_ z(~i(Z)rhIHWVR3>r&lUYY0-X9JPE8m7H=W5Fin^crP`HS#w`vm;VNs3S=)Tq{gm-R zA(zx%d!P)O{Md4rR@Pi6t|m>DOjk_WS=JWJv`{XRZRS612|E#w3n5of7L`6rDCgtt zSX#?^KLBkc3pZN0N3_71D^W7#^j!a43TG&9uq<MEGjMfvSa^P^i?G8LidESzG7RX)Ve$>x{kz!MDh}<&$CMc zuCGkwNWt;Kbi{mkpJ08QP0h8Qbg_ou<{wPiw}K&Qu8O&oNzPU@VctdMF}ugtvQj>; z)%>%u#VgE$Jdl3Y7sTq&0LDD~=A?6MS5{h05xrQ@J)W%*KE;(cZNjJvFSvktsf< z1U?zo)4OuyFOOh4mayx|5(%dQGrlIby(9Kf`H7?^ZMeM(IYu5zvh@SxdQ`Wt?Kti; zl{E>RM*bQ{6tY3){tA&+S^V)M6GOS_PWjPv4s88;E!l0r>Im@Ip&%D3drjPBNIUGx{a~RqF9CL)6 zVP!+1yPYdg9Ya$SEZa_}zv(jP*LwXMi5T# zc;I){_X&8428SGiq4I;URXyUOx!+t7>J;{ob-K{%l=rjmTA=t3+R*nzRVh5sO%onb z_tix!Au8@%FOW<<(xG+(sLue{S*T+xQ`q{IiwBh*;7#j{@1#^K?wX+Z1M{oyNTjjI zCsi5sR49yssHjFnK;tWok}_%rgB^fN^{X<1Tw9V?R>PXwHM*W}LcKqXt1_tM6!r-_ z0$!_^$PLrOhiXMKUp*)41QX2JA zp+$r?P2h1JtL(eJ#X{9P-UmSt)?hu7CP3|)9nueiQu(CoXw!_UR%rw=tG*%mXoh}v z+E#L?h7z~XH~`ZrI&#e_j4(CoAX2O7NVoNyS%ul(&!@`tN-a|t38GeyScV!;^+^eF zWcE3$l_I}v9aB`fZK|vO``(b8J6HC@^g>9A)$Lp>mD?Q%{}i<^|34Ivncm9o;ac@R z7OI~Cos(l&RI+0f71oHBXi7ynmFG#b}o+&z#0>g8}|ilG*tda343iMUg*Gg^?+ ziv5}4A&+WH(=04#l$8_-_$=deE%Qb(wxu!-orqK3h0p_!YRwp`3kPPX+3LMnN00;g z)<_$7m%|Yo0D3;UNH$cv^W8VxRs@4Ti}G!)lU)hxbUv)Z>ZyCR8lMmMbDHgFiR)26 z3Y!yOZG>A$s&P+jF-mg*Gij*#X(2+P-<5h?i};a#k5Y)eo#vW{+~&!nHh0#>tfk$# zNQS#lYmI}wRp{PkV#FelzUtu?0-Fo>O`rHQgA;^Sn<-*SxbmO0GLh6@9>f!VERona zk&Wp99y`0Yd;l>fG+E}1FF(l8rzx>eYi@E>X_g_UguhIrq+?A;v`CgQBNXn=WUsQ3 z8Zi)WM-v99vq7xAd2~hlbfrz*T^X85eL(~?36{BQCbyR%gZXkM{DR)0d=z zmLQdxe`rXS#23RDW`FtX~_#kcGE6QwNvNe_X;(N)OV^_5Ky0Ws9CsbZz>NETF+4l zz{rZQ>Xv<4V#yE_tw@^5b%ivK+siIFd?wCG8M=M$porpcpmf4YV=y8wTucGspbdmgVAphmqi$7tTr5w8P#@%H~<(oNUVAs*# z@`3qfON_2WWjW=IRPnbf7US>@k>vbg7X{-eHv7IGRB;r!oqft;{~r3K4w%>OFKwTK z6x&Cd?Px0Omq!Y9uA%)RIN`>m3!MTe04p2#+=mi)1L%S5NZP4)>h?$Q$swEn3_t4$ z$-`&ctPj1sYMU_AM)VmDh#wsLvv=sgiylOe{1EQ5c=4UVdZg@7%v&;z6U1{wcG2-S zWbfjQ#nlJQu92JS%#*s+hYcn_cn;eEd&Pb(vW8&-B-xh``V3C<7QMO0C2el$!LB2G z(tGB^w~kMW!r52f@p+qm=@Rh5g8|&o;!ZfJE!6?2&W(} z_)fxajCk1*0&j->xY%a0Ug?|BgQxHH-sTp$>HQtcm4`C$#Z_{Xoy1n2v&MIQ#r=qb z`Cit8Yj+_J^CWuCi*uv>2$!!{VjTDlx8BlsHu~GWhpYE=ir}JYpx*dpNdoYi`kYY2o`eF{yCR@#i}by-ev6g;!dDWWf3(83#AeL& z1d#g!S+?w$%38?EPKqH_90u3(|fj(IDDH~AJPq{}9S_i_f2b$`^Iz4J_i0TKj zdhpx;Y9FBMQCzu&A`Pg`$=?mHNBAoCR$JS#;)K8ACr%4U;RS6*eRmO4N^<(jDO>|! zh-HaWsN(~WmJ!ue>zO^2b?CI}BRgplg`WIbBJ;1Cl6f>@qA&=u4}T|)H6p_&K=aQ3 z$ULzs-M)%c?Wn^2EQhh{2a#r9ufyoiU*q!ySVS4-lmReh!Qz}R_667nHu8p&a>&d8 z7@u&TABKFdsceKATV3*ePyW_y`I6aYQ};ar(`;h`I^2cwW{ufx2!z&v^CPC~PyWlc zkD4neq>A+PSGd878?bs89u^ne;28>^bJ9|?TvNDCD7Sp6_yLCM1YXGac%$Z*#c|$t zN3II=GNLNf@6rSEDxCRJ8g4*yxTtjp|4DiCLy%*$rUh2WdtUwt_v8}n!xksReZhFi zP+_J`Hh5k#zKEEiFipb_FT@$laEgzD$vYa%uv+sk8^q>})H{L8F?3-##0UIfC(uPI z_x`e1pK{})M0kNe!cOwavCpdMyIV8u*=Z#w2)a#uZXbaLl1hXUvETL+^b)-gf36?z z)8#h2?=Y7}6MoTi>A+%e18^Z90t`+_u0)|D*P4+8bah`ZjmBuiK?^6o_e3O_AjSBL zvd;$r2{rw+krbrC@48s@sj5eN4+VXZCzubS$`|PSD7_(UFUaPd>ipd+$p8yZjeZ)pA=qlaipf3;A*^epkHYBy?)C&s#Y-J!-T(bLxdnD zPHBf)m^MX7x9C1ge_YzLa#fFQUR%c~9<@aJ0N}|{rVG)6D`+lZI2p`1&LGFPJ z<~oqBMhq!QF)mx7kZq}1!al1Z(Eva!(^xjEGfLV5g&y*?f>R8fjUT8g=oqC&-JVB& z5GsoUP=ASW1D4doM?~)ft%k_{g{?;Io=6o1$2mogO&twC% z+L|a@F}EQV?0Ofkh7GH}4Lknl;#VO7Uw8|+BCH=Hcv%Ei2HnX*ni_bl5ui&nX@hhQ z6tGbyXS+4T3l#@!`J$UPOtV2Wr#GJ(DZ1%PR`a0XHiNl9ze@*ze1TRXCwez#hOf!1 z&933aXD;TZkNpr0TcPDhy8-OXs$zymide59kr-3CC)J>3z!$A>(@30i=s}U)1X{EQ z(QHfP+Pno^Dru|hr@_{I9sb^G5w3zx%Ti-}>X8a<;}Xzta)T6*h%2z9WMGbrcMwR# z1(*{e;NMHYVJSWY`9z@3Vb~)l$^=a(g7l6+9bo~!Bfuj!Y>8GBiGJ9lLnVUdV*wyL z0(RsCd2fKuAuuL!D3dhoaa$z<=VJl0&cH2UftzQ5hXU9VF({Kd?D1eFg2y9)lRtqx zLIQA}0G{JuO3|)J1g3Tb@=}4*W1vj`S~iV5A#K z;E$UAW}1jS&LZDuLqs;?)JNm=UV4iH#4-guzwPPg*`7(JsiY+_$&~_%Is)6OX4TAm zEGX)@X#**!a{+j7$X$^`3QHBeEpSmPpmi*0+K4@_1+@6@ydk+OYSMu+&%v7XppI-f z6Ef`xvLPhO!4t@B32a@ur@@u3z!phC7YSVlWbKUpPMD2@vXARJByWPAha5g~?c+>1 z4-nI#Z$;cDong8Or{?>z8J17)8MY6cU;W$v)KCxP+lo1r2uSG)9G~Um+aiJ;yLAmU z-epxfs8u>pVsAWZP~IQ2?bs%>YpC~1+4xiE%di8Alap6(kY3vtblNn8SnPi2iG+e@ zV}pW*P2>lkryp?76G1N^D|E#d?v3DXtnqKb?TsK_!qqj$gg5+0rRg)~LU1d%2Xwj< z+%Z38z32VkZfV0d<8H7A_)Q8zI*J(1&<~JM7Puo0GLq3N=TI<5B)U|@wssS^BNQxT zBSj2HEG8r)nt;r`W4h)|*wneEeOde*Xf%SZ)zTWEid>{-V{O?E-{ou5W!p~M*0tU1-hOST z9cA`=>bJ|2Btx;iOU3Nm=l#!%=lMBx?DIL^R@WmhihgsJfkvv_33FiD+Ae2*3U9x> z4>PeTVE;Eddj(OBwR+xYVtw!tA~wz9kMz%tt#ctmy_v;GQ7fbT>-)SG-X5L_M4Oz4 z6gP&P=|Gm%ui-{x-ZV1w&E@yeA7ZH`)#pf%wYYR$IsEM9J_)=M-7Ou=eU0m)^L!2o^@~mQpo=jcz8Uk*V8N0s@K+^acVr-dM z!Hx*#?;dTjf&e|{jm^bWY0-_|mD^~cW500NlgTH6VAMp@1<<_UArf!SRn*m(i_VMq4{;bJeX58M<{yh`Q+B!VERJ)oeiwJy)8K{I3Na z%G8tSk_5-`3^4u zoyE@IT5{8Z1)=de7;IUVkUBaI4G^=YhGsx6Hj<&rmOQ1pA$w(_9pr0ViO?}dXaP1v z0k@LI=HmOTpcSt5BK5fz60gFRN+Cu?<4C=)C$<2G&SGMrYT2kpi!JbvsT_hze zNN+;~vW*T{92EhQP#hB^%leYlIW0kS!V+=X%N2;(4gNiOaxf)-o<~^@gy3J9X{$0Z zXvmx$oq0GD7$qD9kZau*QJ1Gxm>0G+O>_zSmz1p&?2syTv1(1JqA$6H?p?@WR5Pt) z_vg&G;b0e1<+Q}r32O$-a4;7S|2hC?t63qlsWZ=fXCGnpfXgXI%eblx%Y)7#8yKyE?e+UEZA#Rn1-;@DKv~NEP$AS*V+Omkjg08+);P%!I4Xjl2Nw;4=agV>%Ft|`OEX0r_7Ay1 zN^>8Q-28XD&XVBkK_Po8hC~<<+y}-oBzdwIPg49Iv-3=O)aN;1<9IND@4O&9A=pr* zObd7g>g;EsFqz?%gM(k z9KQ)aqGx^~D0&uWCmD7rN%;h_w-SQGtyQ9SAKrV5N+HEn1olhvBb@w0p+s45Bi=|e zj+7XP=-=59Jt=;0jl~)63-mE8uhQqU9r?l^5`2M z(dX3Q_Bb7onn(tnb0%bF5EZTtJIB#{@N7`xM09xaPorqj2$IDbabGnskiyRC6kNp| zMfXMTw==lT=}rc;%FfA%7S*pVU|yq^;i>`@yP!YO!1ebI0;tlR&|SrzOr&n%%%38H z)Av@pxL$SO+38&uP_m+O#-{|btbZ8Fx+PB4dHr>=pUB@L*Xn=3czzJr4u zS=|Y>*~|!x(w{7SNO|?d$T8hRne=C@g1I21TZ521CKQ=+{ndB@5!_kZp`~>oJQ9Ps zkErsJh8A|Yr_u2p;Icj_FK5aN?3>~6ZARH9AoOsy?0P#ilBJ&5Z$sdh7MnWWdba4y zyzm2B0C{WZKZAr#cA(NYH!(d+m|nZN^s^j=~O4~h8?6UgTZw=@}3~daqnDaP)>`ot;_ZfL#F0q|1M2vxFG4G>uOJ5vfs}n zk-QL)qiL?at@1Q?bB&~=8ARM)6K&{0PGV$rp_K;E=19$;yFPV%nW#9nkHJ98(I_E% zNGCRlmG-%wbd<$zpeU7DF0@}ZN=k{3kGS7&6Rq%8#P+{@X_wtcYFY9 zbYa6<7>@!7CP%;C3mfH!8~UY~*$tk0N#sjz6^zZO+Y&DQ3w8s;EGucTunad%_e~6( zdE}nM{JDH8tH60{X&D25$86X<+!KaiWVt)pa30+t7ab0)v!Q%JvEJP4KYd>k^40Ka zoHrp64;9hU;zdtB>so^!W?t|c@8iviBQj(=(HAEoK{R_HBE}YPBTHSLUvddI#vZDy zC|Q?#7m|sV-T?dPdP?DBE+t03=`CcSf%3ePGJ8*P6Y)OWpB8{Rr2dun zeIntVeQ1telI(By@c}?7rN%>1=n?LT&_a$qXF=yJiH(rDi;fbTrr)p3F%X(gDQD#5 zm9>j;1ZPm6TBe$^0!4EW&hMBZ-kcrqFl$`NY`Q4beACb9jZuYGJ+y2qV#__@f}GI@nx@}!4={6}6gm09G;k{=#Rp<_~pMe7I(hRS|#pI;388~+||(daz^ z0ZKbe>(Q~L%PV576{jd|eT~rCz5*I%VLXq>m5NA{GwiI*1X0iVp#8+K{VFW zR$R*j`r%M3W0L>GD9?LAsi8D3rCh^eSW2lzIwn~R;G!+#x9&w)%jnNtsrK!r*z+MP z^mg5n{bJw?Te{q=in-ULA|-9`mqHhwStW227A5$Bk78Hev1w7uAwd<|R-qU~Y}+a& z1s&x?Pj=ck1JOFzg;>tebe{GOYQc)57nAyOZw+C#6Ny|0bfRt~QoB$Pge!zllKsef zBvV~D{B>^_?yLc@Ion~Qb>5J=B|;#cLGI=R(eqm_PSK{#+GODjD|XegMX&f3(fWuU zKQsc(SX8#fN+nvJm(REOuGg$?pMM&|`wf-nFF-Js&tigdVE-S`7e_#t_&5EcKwy>1 zh6dvhH|>Vv`L3Av_9@K^I?liW|zMA;z&2qkb_zxp9x zn+!eZG@-w1^7AO~m_>8=1yfFAUGn1-rNmG0GQv-+&L-YjI5+KZiQC`to|#SHkTdQX zL2~uZA%6WW_)SJn#%1hh4hkX5-KO^Q6NVpa!o~b(!142a(3+hwh_v8hXXfq}#ukc>Ydd&zKF=+4UvI+1_G^9r*s7WP5s9s4|2rc%NqTbsr# zHZUvr@x{7cIcpFDkM$R^yVkW*fzR-DM%h27k;)_{tkxPk*in36+TSf`JFZ}4|7PK2 z`M9CX;%_E6$a$!mnf_}%ox{8B4^#j;jYmA=7Gbk`>U=&mzPohpzZW<7<*PzzLq63q zwa_$fElwPj=w3tO-{SlZ{BL+KZeBkl?qo7>PJ@||s95=qu6jY=F{E@aq7bN(_MvW> zXa6)Kxd=m*yn9uRUFa4{4PD}e&A3EJ$QVDMt3HTUj0dLq+e4R4WpvR>)UuXX$1D+m zGb^}fmxF`ckA>WC83F(9(g@waYG!ab=bhM0q*YTP?u>QX4-NE*@!VLF^OJYh?Kc{sN(BzM9ANkwM-XI)sw4$uglfos@!=UI#+6*hh{&Ng4T_brreRD z+;Mz)T`*RM7)v-`+7od|jB`7-wdUru66+V$#~-ytU)ZBJ^s!fP>MVOX;4=@ z`Um0S3j*_;+`@CGO!cX`J9`^>>x=Dsd44u&I0t1Ypsy|nds<3u03Gg8RIrPR6e9&g zbkG_ta?B!Yt!(t*jQMJwTg=qfTx)2J7%?Lqadq*sdleG1=)pP|AaJSX?R^T z-k1b6dgV;?*bx)fnc3jxsIyyarA~@3e9fpn*X&V+i^wo}DA-Y`jY~JYE=EB)=ZX62 zilkNR0gbS?S*lW8(i9QZh_?wS3N9;&?^Fsqd%BK&>{Uxnu>!(h&GLbhAf0d{Wo6=C;&~6hZ@2L1J%Xgnf^;8yA-ys~^ z*19a+XB64$k>Ot1U^SJzU1@Dk7IWr_&SMtcRGf3f+0)C?V+CT}o7|3{*(2_flDG9O5`lt6=K&7a^ls2x4m822J7mAf0l zUQqRPB*}|@)4yXI@)Z;1(RDY11$4+I%``iR!8y4|nGhB#U(81z_Gq67xV3uRIVscd8`*4KBrd`2UyJ7wkIZx(Q?Aj4)sf_mQ$=UGb@&jKJ{fxctl}$4)k*^fpdIR{`!x?jC zv6lD;pLoTp7wR_e@3zhPC82(e*MP+%4;!_@Uj=J7ezV5aH^J#3-yNu4*T;MV$*z`} z6W6(ijQP^KHpqV!CtM-BU_QCnDgLAWi=Rj`xMA!5tzs_~{JaEffBktLpN3@S&&ZVxQuBNT}oc3XTSarzl zonV>Zw0HgVRW_SyYU-AoaEm(0li9^opeuwv(EIV#4{Nl2lX`I{QcUv}JZ(4u5jmNF0LbL||}m4&<-OLos-{hx0e&n}Pce5i`@(iI#v~08pAm z!`_(1IrFDrBh!zX_K^G(dn8dJ%cHK}U`?Lc36IlLRMZYe5DsBW^K^USo&fMjHRc!l z_0Q2NG}}UTexd){FeYV1$HsvK06_j{8dLrM8OHK%rcO47p8w+)$EsU9D3783sHM4t z`q^ z1QvUc*?@fXDk)}lj@6`}fZx;yF_RWO0 z(YH6Seep$5=#vhZx94uF8+&GJx%_E}omEG@`n~!65kS&r8Os!!s!Cd{+CUOQIGL1`AxH!i5*Cou(8GgRfDI)AbmML%7OSa0EGkc%4k61K^dPMM6~lVm!(L< zGa)tyGuB0^2>=a5jToCCHXX}#iskKEktT<2fxLJL7~Jl-HJR8=DpE+h3{jBLsz`k5QjUaMjBc%gO1W>xfUMHGL`c(V0^hMCk;(DoSsTj9 z{&O%q9iLrnACQ(5g?+~>ww_Qo@Mtl)5S<5~&E436dNNy@&1mSTxP_8zu*A3 za#rMu_hI6!AR#sSo2RT0CDX+kiEg`C&AKcmoB0XJ*8H_NCh=7Rk}bR6LJxEy=0d6@ zx?!J}OKLSG&`RvRfp%)bU12{Ly3x|Z{5mC8jui%M#ANiGn<2Tl0CJ_+4RwvjB1_kpvMVy z({EXKLvfL{sK#zllR~m4J0C((Voq&qa%3v0O_4??MjL9!>BRW81=cuj|?YD}|ilj3W+pkG63<8>T?S1}uNd zn3L=qhiO=VfCk*fv?6ZW%%Jq{=^e zJW%uwt-9Pgx$Mf#7+;+}+CIv^1$$Ju0HX%9l;%4!mUM9r(!npN#%@rj9;f`KE~cPY za+S{_CHF}|blezqW#-_21b*Z$HCA?j$aq2SG)Wy}Xn48bU@ioYJK=u+czftmZV*Kp z1p0;7q>VSDx+QSri(SjB!s3Rknor~Ln#?{)`juq(W31=m@5ha6S4)WJW9OJ0X2Wo& zy3+^1Da~K^_}ZH#J(e$M2E+t^d9r)0(YHpQ-=aDNOu@<*7=SDl>`HCdlFdrwlKNy^ zdxRnkn;{LKr18$MkmxlkE;*dEO%~`zrLQh(|MC3I<5nj)aO+nlG}do-=+k697|iykLC|`+y|Ck@S9QmHaOFu z!TBp4^INH(@i(n#>Yim<&uVQ?J2t!0I-?&`TF*kQUlL>G7L)bhR;_0HwZE*dsKm!A1@r#f`#&ooGV9EBfK+>gT)1)2Zo6A2E13pg?*NP%~?fY??5*kAur z=vNgJD8fu!LZez8e_C4Trg9f>N7#`qp@v$_Q9}?-C6I8P-g<}4rg984P>)%(QK*-4 zJr&rZXaTikp!%V)mVZC{hbfM&S|H(CAaLm4WtfB+6rnDBoC>}~s#Ekb_lxe-{$_M@ zFkDT8q4^g0?D@m&Yxq=|k=oHV>WT1P%kG07{LXO*e}tG`bTq~uO$Tmw$T)D>>&A0X z@6PxR8?6tT69dtzmfsyY5H(pvt`eF{|+sZbHp6Q*n{6Ds60;7CtGg#SjHA7hRfld1U%1Q zJP7S-W!HxBp$!RXPdr+Fzs#USYn%J@yF|By>3Bq>(=G?jypq;g zoFqg)|2lx+982J5)!~>M=J0SLb_caDFJEZnyXRMR#+V}5<{wG5hCYWtY^-;|ZD(5f zm{@%^eQWLDXe{nlJ=NH*XyG(U+G}P)c6*-z$|*m? zvR62*PCqj}CD}aEkK350ABwVknv@&CD-Pgd5JM-fE*1|&77Bun?vlouM z<7?6$-nxUy-!59CM^l+9ju%YEdC(DU>e~n+Ho;0M2G;w5e#^p4W&VW?*i>Dd+3}%tJ8KF+lt*eqVrld+OSK``_ zfFGFO^?oIrzNSc2>y(anEFcK&vy5Pm?J}|ENlVG^k_fMp4I#hefb&g{o1CrfhbW)Qj>5{opr@+4xQf)oFcocwy}fY{(> zgW-s4xrIdwz0(6Ob~KY0P5kghZw@(eH`pUnqwVac9=QK$yw$(8WQhW~77@AVqXFHO zM6euVoF(&}>HqT;Tsu^Z0kIFwbMUvcS~qma&_dzNTE3&Pl^wWD31-EA&R${(@L3Y+ z!s6aMa`vZiAm~?9YzF!AR3VkZV_{K!=AshCeBW=?Y-UMLr47>*szYOz6uk>|A}`p` zi2dBwd7|UfkmEnysA*@UYe?&Bjm%nM6S;kSWFzQnGW%I0vh`{R{)$oQk^`La%1|CO zNT7gm3<*bMEv#)z|#@46#;iai`zQFL>mI-;Y1g%&jSuFWdgW0V`aed9^m4}9ub6RyaMqh z)p@!m(;#LM=x!}NE#0X;eZGHvQTQ`W8qY=rz|tR72lT<7GtP!*rFc})o^C0Sgf`(? z^i$GSb(`&W2SC7{NtPKu2IkYJ>YJ42-cbkU7n3GyM74|)YwVe%vR;wR9A8r-6!EPj zJHJ=HM3p#_8JVvN_cyq0QXnRL86Ue2 zXMXvrR9RyrqS4L|z8Zyjt|yS?8Ad^ozmvJ4Wc)BTM4o}`WV}PJk&!XT(0GqcVS>%I z;#Gw&^xr_rFF!6cOQR^lNIXVi`SJ8?{sChgDaL`=5BFF{QXF#%Pty6W^wp?7iL<9= zCPkkY!E8zlWmD%GyA%0NDi`Ah?w~|RQ_CJ->)~N(Jhr4f)AZD!kZbi--X>je(&Z4- zQyrR3=eChR_raiyG1Vw{G3+`qe@%xQPbW`5R+l+V-BMh3i0tT=X6UR>kwFyJzII1? zQ{4pY2(vtgU>0G$7sD11c)%9gldek8X}Bdw zL907NFJC~_Lv)S74Z!v9z&gNa3O;QK?m#^LS3%F-Pm+B>1_DB-|9_D*|A%Mae>hQT zdU)e3-Q~uc)X>`Pi@3s5kcMYeAyRh-{7H<;;hqFl6E&cVN;K$_*w%PLbjqf)PD^+Ew|M zd)RlTJy?fjaCZO%he>iy1U2xwbILzDIRpngbu!|0g)F8`G-SmOu>x@=8(o?(F zCRnNBR~}oi=~WH^J?I_w4Z)sDAm9&?h|tL%?w)<}28~TW_BQG9z;HMmToS9)Mn)nIz&-eD1#hjA z7%=#;L2*2cqSF)WT@I86GcgR`;nE}Pal*LhE#3Y}==s9mJRbtaO|s8~n0XSS@C}H3 z;CU7O&bjG>NxK%Jr{CX~*3p?X@4g(W*;VIthw^K2nkmNr#P(x2*mtC_-rbiX6Yi7;OkRkWLh{NUUz3YiLOWRm#=$Xd zxk@w{GB$l7$(|NFpVvbeNpz*jR#ui!hCE9fRcK{_6Y($UKzYvA3aac2+8py!ghI{o zOoQbRzHnXbdIhP=dM=j$!4NhAqD`JraJTKIkVW{@kdY#r86Ijw$)+CXy3 zP{Al{jTqXjPg}AA<)6d2wS_pcKU7Ho#|!O7PK&_hVm8?MK@s4h6rhz1Bk+l)Qq#&j z*(7!AJS@0In||cQ0!!)o8fn=|<#r9q?mx6eBJ7k<(Hm+d8>dU=>EK3@>+{l1)=p8) zlx3inloqoxMLS8f(iF-H2bJ+$3*Bl~lYRw~`9mO^fPAPc(h#~SDIFlhF!QqDm4pxz z%u{4v6a(a|7VeZ&E7=XSh;p7(96PuAd{R%90pyCd(ve2dltV>`ZH@U^Vqh!V3bqIV zx%$Igmr`CSv9brT2N{H4^W`-tEb{>UJ=OtcF#}0W^s}vU*X(7Cy=;ZSxLa+=2DUBc zrYA0_f^Eq1zqXAP5#QmKxJ?q~Ik0eS?`*|%)YX_>(MV0P@V}_s6R3XI?c@O>8xmwh z%!^)~ohZw(1D~|oZOsc6PzK-RJ!)}3~H0QI2~my?%a2#XfAFi@qkZ_*GLfN zoxdVEZz=?-y`DW|GclH$sW4+B&mbX*w^Z~P${#L|XpbJ*zZW*@12HyfJ`T+jXbZaG z{DYWL6l+*t`WfdA*)mQ)f8{twk6jEp0Q28U(~{zA``5#@MuC)v{Y|EtP;(zR2!JbO?^q8 z9nh5Ukblf{aDcSfzBK!Xvf!_UcenNhj$9dkSv(?kSC&H)&DP*GBaPXDdYJO-Xu{;Lz16!acIIMU5iBr*j?kv5D%rka*{Z&$tIYM~mP#v2+av>sP3i$(ca`Cb zTTjO?+6K;uIlISlUzSspL@lTuk^?yRLRg00NajtL7osdiS5D{tZPTLytQx7Zz1DfQ z53sN)7&tb-oT+S@sha@J?+p`{%=I*hL1bU{p6+VMo7Tc^n{@r*%v)0_8RJfHy%Yxs zv|3O*QOIR(yO@4Wz(k=E;?BXii4BSBpAxO)~FpagM$~1RhW@< z$x(YU9kPQL2MQ)slF7{->cL>f?A65#Ys;zN`Fi{U^eb#f1vb;%sFpnh<4(Nm#Je#2 z_^6IscouyUib+ZncR0P&TRAMh;0{fDH=@ZWHwr_aeoxQE(hLPyHfx&^JEH33JKN59 z&h+ce!$=gyAlXv9)5zLoCFW~`3H*Om z*Q52X+wQ23)@LJk{eB2zZ$yHGJr?R)18zIDT%7p5?2S*Y^&K z-#vhj4;eS%Opm1WZ!kaVgPB_NkwC?)ZHm5waEnIuUy@NVut+kmx6l9ce38n z{VgV+Fx`oK&dY<9pVIw3wTcrWi9$QngQ-5fxulqK)k@O|Cb-yvhn z^gA)@OdEbG499{gHboH}P%!HNV-U4c)0niz$w6D6?0aG+?ET{7%&oWPANXS41WWpy z#+fOOoV@ine$s7^C)Cd*VsL0pjGhv4mw_)C3(gSbJK0somGX3S@@X$MM%}IydA$dO zN!%%`k4xduD%rez5A&DCDS~mj|7rC>!;ToeRG?{Z;`IyQL?^KYkQ>`kzGTraT^PSmOKj|EMvr;81- zkMx()zzH)y+^NK&BmviHc~wa=-HBR?eAK17$RviFakh?u1ZVPbXA(e%V8!QNweU_k z{Lfd$O^OozYT0u%a9w4bW?(GNRPWaadIMvIDp(Eum9&Vw4{<*1c_r0WW9i$`np;?t zZWiG9wwAu(H}({n)1tYr#+B5w#)x63Bv*tgR9Hh}%b@FlQ|k$*bDhEo{$n*ItQub4 zRs26pq5(H()~wvZBRd=FMWnKAshd&?AT&M1)^wOe_{pH261yaTS+=EGCfdirh_MSa znj-lhsFINXBzjj9D^gS?1m5oZ{Qb{A&jzwS#h_110SeiO)8-2UEi~sYdO*nNY}vo^ z^P5H!iqal-c@~cl`5kK_PUI?A{Bjj|zF}u7sZ~L-{PK>wz9}{>jC!S+KNOKeD{~gT zL#tsluy2;ak9_YST|%|tvc~)V5XUB4nDao>M^aEWDh_WOqn0DuZ^#9+Nrw#DX@=OE z66pNLSvZr~BL2-gcjKN9RlNS_6tF*h-7&${EW;jTe8J*b*3M)k99y(*OdH?67Jen^ z=Da$ls4wrpNA~8_pMC~;)4sOft!k{%mLg#=S@JihsTz{<{Bx4&Bkja=+AJ)Z`iC4A zr3Q}&Wi^{b`>ifEnbbLYnWaTu6HXC(BIynRB(Y;H_B9*V6`Z=2Y$}|2Q-yfHRKp924wEaAtw3gvkaxN}?w6-0XpJj+V-4W6T-E>M6cmcR5K zh7GpXs4U(P0~QR>_Z~HNgzk8eyq8;o(M{r-8g2Z!1p*1?R&CFF!YH2+rv_N97}omv z3Veai_lO|-Neo$%2frXWac#p0=E=_^f;0u|qHgF>QZ#ECqmgSCi>f8d zibXO3;hV})m2N|@;j~StcR+y9u~BKTf{DtAFAbr8#Zz&Pm*Zy#8eNAPl{JxqOV3HFq#?Rq$kYb*^rI;*_OAG3eTPVcn(5PV$G6-C=S0>Exuxd;|0!7Z+v9!zfaU9lx}{3#_sxn8S3T_~OA8ZpKF~_KWqteu z3F82RZooh8PA500s}cCJi|UO$af_7|Fmqt=`fGYve(uKcK*xb|y*EhJnMcX^+m;7z zdCmYEpaq!$If54#JJV~}nj4dx3Af3`sKbIVDdP>{D+4hN-g0nuOZapYAL$9yJvDQNzcc{a~$9ahTqgVDeatP&O4v2Fc3-@ z(F|&lzL4>tHd*d#4>4JlGxSTB&5FU=d2a7!6SSmcHwrat&DR0{`tx(h$9{SE++Z~+ zu;ImjUWo-(wr&OT+!3ZP&fh13n zF+o=kb%qv6W5i+`+SDF{sM0>T&E9(64A>G@@*$R?%0@8iQIAcF=%|(Qccps7r zWj0L0;9m8nd-at8)D=4`;-b-#0x{NZVuZ>TSiLM`t{h0_;HL3#48zwlkc2?D;`Q=~ zO()>S)eeJh5$n07rdl;PI@{nX-9QXlndW)u3#pp6tWwWnxtL%3-OC1?W^T5GL*^-_ zB8`~sm$xrxOVKtGHVOF(r34sf2~i@HQJfZ+BQBiX6`=0G@@(Sy3V5({mhh)!8hDf)2T{F_Bn}}vz`6l6T}%KF3w-Da zGb$c4>{%_#Ry}|h;C*Rbd9ofrOG&l@XA zk|&I`!O^4v=MA5RVORqgPj#`TJv56wG*v9?QT>jhpnju~<~1P(hW9j?%bkrAy8^qE z;EHIA&ZIIG-qZ+4yL4fZl9bjf|9|c|;qe2w(f%tad;Pl)`TgG&lc|gFV;K>okoL`zVKO59+_EQCFT#%q4h)+DP6m0l`!(A; zzYxI}h(GDz_Z~5|6c1NGVm;Gk89op$Oo~GR9SvGhl zoDL)27A?oCQ9AKQ|N6&)(3q{I_fD{=-U6Q0o{P>TT1>9NbFP{Ja1Pl{&Dw75aFMRL z>4ro>Prk+qFYCHBw!AHEhm$j^NgidPs50PgY?}k+VsxD~2H9u83&H?#nOFzGfnO8Q z6Q~oiDs0yI)V0q9VG{qUhN?!|DktR)KYYT}EhgX$ovtkn8;EHu4-0bQPZT^b?~g2U z3I&Q<&t#watW!6f^DkEb8;_tjNxa-!7|O$K{xby_R6mi+RXh$y#UJ5@wP)*9Iobt+ z1TcOi$ZOys)-r@5l1Du@Iije33K6jPaOR;j(=^j`)WX>j+zBVzrC5V%*da1X)Q9lC z-CU$p1rc%L{FeXB}RbiUq_S4f8nvv4y*gSnS&r;kmi z8QJr*qdlZvV!-{V;be#d0t!Ak);ozsGGxWP*!XGT{V&iB(^E|juD>BM6~r>eA5GnD zc%JmLv76=d)OtpkIaOH^p}YCB!2ID=^L^tw$wVEta-_ogq84qbSp?Evlrh5Ruxe5A zkziFMo0g^r8GkWdsfT~*EQaVOe(JCm9X~NbCB?jk)NZmC!407?T!ca{jrpP^3@M|L zstq1`Kg_4Ps8_~~P&OT?`8JFyeD=MDO&d&Qz?ji@0a$#4obO_3Lq7u~D;ZjnNT$Aq z4gyim#qf3MQ8CAVT=@q28MM4tveKud&nR+#F$S@FA_5J7t;ZK$B8}$-@g4IhT>_@D z_h657>YNc=Qyo1ij~8qsOi$*dmn0HH_#Qzm*!%_O?X^Nu)Y4s>6`%hWzj+yV|D~Io zb);tBD(Z^#pkq>pGvI9EOpuH12Kmq8Bj0mMkqiw4WQzI!L45vW%ViC04a`g&|JNQ5 zsY5yIn4o=c8=Gz$-_JK%V5bR5L+j2LEdWbfNn&6ppa&*`$x2($>|RVt-~Zu4F{Ns> z4piz3B!pxmgbqgqucMX4rjGPCK|&hBix(Zz6%_ba(s$eOY9J$t5}&!t`u(%%_4Bdw zbN%8c-|2Pp1$0cM$G=`DI%M`~Zy-&!Zts9b-)9ECetzOuCXfpC_@9HsfyKJ{~lZi1KZGUaxmu*0^gN0M z(;9rql6EI-`qw{b^(8`8@PDXwb*+b|9+kkgvBhyT0YVp-PE5Sp80V4{Q||gyN*?s- zJ_R6d+Qd>N%fVBvbIEJ9+Y;4_D zW$hGI;&L~O5VV_8BNVFM`a{$yMIihxjKAhhiRI|7G4Yz}oo;?mx61iQvgJ3{hu4gx zD@$Xb_DMvX$ z(MjJj>nZ&K;InYBG;c-!ScSdUyU>lNDn80|N)T^bJ=eL2s$Yynj0-$B?pEH=m1pDT0NdAsxhu=Amn!-Pc zAcKmjjY3C~qtJ1vagzLA953siXBpZ_93>_BMaFVKf&Q}DMyxDM;X7K@`MGSYv_qO| zt`UP~?T+mmY{u%m>kfB9RIo>)k#7LHkL??kTMNSWiORol>+~5Ip&!%0_K7@W`HGga zaBIb5cVsB8sa#0X9e;%5a@hELsZbhb`pJ+ycwie*(%5h=)SY;%cH8`)0N1q{-oRk% zp@!)9+p&J4SFnDyy#MpT#K{_D71vz8eLEir5La@0i;|C+c}fgVe8Rs&vwET`t_lC{!M8ZPx3j zw4iFl1(N-!HapRhvfMSc_0^ITQo0K(>%hh;<+q}#%&M2~Q>|nUVNEY5x~ac-ezUk@k zVZZ`4>C3xdnXLtS4CA%LwbS|qj2%ALTDXXa+nwa7pe_Dg$aA<UNT zBhOyrBqWboF+3k# z2t){Jv>oSeSQNnVD(!5E4zISmq{IVBcfM*%QDi(LM>X;1?e2Q_x2J|o8TV%*EwQ4* z9?I?d@_F?+3zprtFAN+ZM@a{kyn^zGwx*(*=rJ-*jcM*wZ9xCan%wFQvC3`3#GB0Q zC3{B6GBKa}*Akpq`TkkPMf*U~?5P5f&1q87yI!DXy3;pv#NG&6Do_<=Ny(X#1~YRWLqf0EhXwFJi7I=bWON`nGRyZK@Xb5XKy{0ZmfLlQkfSK^uJd|sc>>p6esX6?8 z;!e)YtxY<77{2qDbLS-v9{fgRLOMY*a?^k{j9nqFZgg(GdEn&Q5Gp9b`c35auroh@ zr>_wl-77CXgC&?8D2OW}pnOYM-jNX`jL8v*-R|=7otoixn58iz?XP?~uFMqVi7&@{ za)+!~5W&Nu5Te&EXvhoabLzHfLUSyP2soOoOtc=ih)EpodxE#5`^oCYfQunws`egU z3vFFqu>Yl$euz20-%N)!Gb141%Mu7>II#w@q&3{=4!SL_*oA|#vbYRqG!F`VgLn?1 zh;kT1v5VISOurcd8iKnTG8UBPhyjm$`3I%~$~`lTk!&}cCAdshh`&e_uGC9m1XbCF z0=yI01rl!KMPI<=pCk8?)=1q0SUnGSG)0wgSi3zPJnEF&K`k3_lgBh8zzpx(ot_Ead_#4=c!ir_JXFre7Bcw{H^quz`0v3Y59@FtZlkjQNS3Ngy*_=46*LD^^XX zce5wX#1#qDo(Z`%cr$fhM@Q`ZD7d;;wH0|~*AmtU2Y=Yb`?r3qnFHwa9{EsECK`jS zB6Xc^*+7*Vh_$IiCZ#NLue9V-5?8MwzA5$UY_xe@LccVYZ>0RtM5RFHaGq&JOq@!Z zp`elhJ&cx3v08D#9xNap$HhC0EZ(uaI!EVOkFzE9IHyRBrO{2ntXR#I0MKwvKD{1E zMStFBtX+!%?+lqA=o!pYb~UN&DUo=&vu=G9E4~&F^Sp|kvAnd1i#tqv5AIeQIyydS zahcTs;WWmgEvP>Gn}scH0^Uv8sn;g^{?{hYbEol@Ei2Pprd7J1pdN1vyT~8NFlqXe z{Vt#-9k;pM7v|#^1M;JgTf~@Nl1uAYLneHq8848FThfkx<;Rx=PP`cn2kw{>(|UU{ zF*H^#?bZuQWpi8fedkDWJUgpu7TYG`QUzCzX+z&OM-v-m_C(_DT-YW@0_w9ZDz9v4 z{!9tsx(eNUBtePxC3Ztc^|WVvK{p?Xe2a%)b-}OkgD2druSURk2;8rz`!H^MlnGkF z&Pk%GTN|20E!rfMJHPcCt?g=W#@0|>t&t_HTj&(_JaI-Cl*4mUZOZ=QCM(YM;6yGj z(&G;&)Z!f#XUo~0*OP4R!?$K@Fd&UWH7`}gsI5W*I3_B!h9App(1@q7`k8`e0|VD& z_X7TO!)z2@qNU7MTsG9q_0<>=@fR)c%UZUil6Pj~n82jJ8-|CKtXC0^W1hOfJ~yQ1 z#>&s{YNf1!t07W2-AkobkD?`awft_uIL>J`p{9OTt{lO(#L!YqUWU`_kqNYVxsg|V zFQGdvc=;~|{Y$PJg^&M|Y>|JwTJirb(YF8JB+37qHu?YHB~=WZto{#Ma?43s6!m9| zl$8js7_~^DTTQDN&PI5s+*=!DZeA!J1g-Y`*fdkevjOLMdt+Yw2TK2O3}S>r+-#kB zGzy`c^ZhvUfZ)LW`M5Bj3cECY?0?RA_?@`9&g69U{Cq9U0Lcko4Fc;hPkjK=8K;g& z;fXT`!FA3CRS)-H2_wMjp}fuC$H1z|7?XP&v2sh0F$Y~lPa5erxFYelP;l;ky&CxlejA! z7eUr8PrqTHK$~}4`-N5>g}Vn?V#W{6Wt?|A{_y&{9R9k%0R{O0;sf;Pl9rtx_Qo*oMGJJ1a^Rr6NeNXU{}8cJ70+s>dgTzxx^@V{N6i7qnkcz)7#b-xIGHp|E*!PkFRYk( zR?3-}2A7x}(rGd0>3%uS;)Kz9q!&o&`B+E(y`elCx{Cp$+MWQBdU!`zIIOaOr?p$yNnz!aJ)7uYDs zXcyOOtSSse$GcIr=olwCa@k8&A&PlJaov>T&N z(^-wYgphKs^iEDU93>c~Y6wEbN*=M?rA=o#v?-}&xJwU z;Kt5LmN{yU3N5veq%IcZ$RcBJjqd(hJZEM#MC$dCm z8t=`sALLugMl>kNo{DShw*R!j+ICmY2`-E`Up!5uY^c?|gq`+rf1F>RS}GW1s);Jo zh3O4)ACw!03xpn<6aqT%ffmGCr%n|thA#Wp;nSiK{e61x>^O~?`U4&o@24RIup zBZPYp%NbpRkM*!|pRb z1z=z$5Oaz;MzI<_`c=S%)m7p8%ESA)gNK#exlZk2G}4QGwK_bbI>5}twZ4FHdnH_) z;sX5S$5}f{v6zG~*e+JTP`8k*0S$7sGeTTv)aF6c?*CSFO#HCqUq126>|b>Z78I~z z)gh}nTy;5IC0#CZAH=UUiRaK9=NN`}G(KP7%Y*DIe=@CVr`T4HZ*5^VUa+lu%ImT% zgRZOqYx*Ud8}vu~qieaXp*JQ|<l-rT@PNxPa1^l~ha|+G28nt$OYDuVkctB8( za)1~My~86SFSq1Y34!hIjai2fhaMF@1q#*i!7)VLy);>UyjCi73A*M^fqUg|r4?HB z!z{Yu9l9Qca2G5bvyKW_a3r{;$}93)7wYpqc|ZoZB~tUUmpiEb@lo{VIUovhn|y$r z!_L*IBaZ^_Bn?nmVOP4fxag{CB(1vuaCxed zS!iarS#h=KOGCebZw4gJxxYAGTGi;o6opo>FE;B=sw5zkw9+HV7dN?kHlR~@Jbn{;By`_3$m;Sv%`%!i}Mkraa-hN!;p!{>>+=&?i5vkb{H+Hmz3Vy z&5>cFYcm5YWs*zsF<(`+q+Ku0;3T_fxPW4a@LyN@nC$utsx0hhE1$4p3hYbLuk(uD z18TP^{sv{+{rni34U}J3LNH%_x?^!iG$VQF0uItV(FR-3)JR|?2+?Ch%YS0sLp-)T zd9uR){IUuP;W;VxWVOd+?GlQyOgRd@Tzn2Z66=O7JoL9Dt)rr!WU_(#tP>rb7Fo)X z>14;cj<}vjf;bwML=^vrwxP-@K-d*;=!W1}E46Od#>7g0<}m|S5XDLjsR-BsT6nw8qhSHETLKsUZoq2W6)u| zl3ye%#y$=}K3C9$wiqiq(O!XeeND;DevS}-J~CBzSW(w%Sbw=pHowQ3^hd0sBE zHAHCww?WYs{;sQN7ck++m=G(iH!|TKmwkJrjLXxo(PXdT-o&g!bUX#nuD<2FuR40l zBx#77eX&zh(3I7Z!znheM!8@IguSM9YMI9t zQ)kSk(JKl|kWk6CMVTt3r}QBms@Hpz&~@V*9%185*P?7#G_d2I*K35mknJqP1yxfb zM)n@bD4Qksa=(%cC6LvAPhlnF=L;s|=Rv5x!){gI(_gE52*_kHchEMHxiuSMI zhw$g$H+ct*=c3N%ChUoIM_8B!{n{q^cJ3z-^9H#1kzOeJCiBxpZCBpYc~^|L+?fRr zUr~Q$`R30{Kh}@uqB-zU(C+l*s=vW_m-M>{;(ik^)FbGg#F396aj#~r=9Ci54q){) zaFlv;U)bC) zQX==eh%wjyH_qB6A1j{MzV&Ru=jX?|1)7C-C*rpm+n6_^yn4A)exK()S@@Y&+5}>m zeHjb*Oy}F917Qf7?in-JJsz*G8m=}jSjoMf`!eNya3h->^~lOqc$G}2SuD*97zJB-&91kPo?}7|}w-7i=JuJG1QpZZxKUNP`R(QuJ z{O%SIC+*c&eS`SS=&z~x3>~#s2_?9Xovo-|OPm^wj<;G-saYdga%{*!Wx;uf-}Ju9 z$YArbCTK-x>pEZT7%AYkoRus6Bsbd~L__QQ3oUXWF5_1?|NK6E)xMYw!zZ%E5-R6P7xn6y2}L5MZj|m{z8A z{85`i;Pis4GW79tZPAe!Y1)8Pd!) z`b9%b#4*QCzV>8HlkN?e-S3uYsx>3AZDyUhq&2@NYoKHq&TL6T2a7+%+52fWd7eAL z9W4&I@qE+L2L%f$P=bkz9fee-`lXbgMwm8*bqTCGt#Xk=T+tu4#5-i)tTj(>8fmFF zoC}~&z}^D0t)6aq{K!DV)>6H7=uvjPe`x1y%n`#KIgILbjmJfC7aH2vTM z&a4qiGV54kq+>VUH8=8d%Z||y6Q7GjI!oJ(RdOr>ky1{asu2pN8`IJ%ANH3|7y3TdA$Wwyoyu|So*4<3z$iOq+*BAICZ#u&-G7|8wIJ?0Y zi)!GT$rl$j9D?80pAO8TDfQ}NErv=mpdHD!{WZedKmCKIy--!U)jGFMFbV?V6;mNUHIpNIg3ADgmFe|0nqdMk)mA2F=AMITJb z4QrVaY)Yg4p9fYo$7tQ%AFp}+ja8X6xofynWk`AO$SFJ`XGMs`hCU~zy752G0y~XI*BPO=i~lB>Cx(^m5Q~VieRgU;Q54KQ?)q-< zJt9_f_75x0!Dw2M3f~w*j?SOfdLb4s`W=@WZK8AS z@&a7wM|I}|02X|1ogwF1XfauM$}o!geWlRy?J}JF$f2TV70Qpnf!#!^0Bs-@GZ!_b zKe6PZhu}6}A)M+Va(^ZPTm%!KX;kV8CoufLCH@vLpYeM8>B5xOpFx-ON_{Ai6B zFKU$7<_dSU2jd-_KS9jpuf0nT;po_lM>L8Rn4;H|bf7K6ZpJOJ?@s{=7gv1fG|zuP z&1{14SYqFm+w>Q;0>){Ap)}DFo;r{aLXv<6I0FG*DV{kHx99dZVwwy?@p@#J>c8MA z?wS95qw$(#sE0!l#|c)L;TDSsHFF%5F%q8vh3TZU)m6`jL?yjIwfj>8%?07g1Q!I*c0VXg>YyWKQ>P}+xN zIAxJG+7yu{cE!9> z67%4sU$-U2t{jUj{LCo{DjS4YOlRFWemZD?F6GY(r$}}*dDBDErFM~KxcE$o)R%^K z;9m+Cv3U}|b(-2kd(HQ15U-`@6VIj$eJSLu@#(&8je|NqKjDgUmt|nI)S6X+k{M9a z9^>7O*=ij|+ZK3f)11R9=|~Q1pI&x#&M8`VC+iuc z^u$(nuCr?rW{Z^Jke(|-a#i%Me~SfjC9wSO^vuJ3tfqPU4l*LisFfV2iFY5PN8e+R zk;@wNiji6$)N`Sn;Q(3JvD!BbYY&im7CXgBuP}}Fam}#nXxk>Nyrt*?poP^5y19+= zsGLi%sWMKU(liUa0t8h&@!~kBcsz2hf&b`^Q`0+kh;U6^xkPiZGUkHInnkN=ujqQu zg35603wD3c#hFnj^8J@_nwEi1mcY4_IXcd=p!zEq1sHZmjrHpc79Vtm`hk~k3az*| zV)Nv~WoT}iRnunkMCCjj%C|Z010c*{4{SF6&$wDI*pJ*i@~AhP zKKb9(uM@`l+Bs|$Y&T4I1aD+<0R>KB?7t!{f!-~I(m~+zJHwb_Ie?$ap6~Qel=E`$E5M181KW)6S<7PwN2&oRjESTUIS$tsPnJ6 zm7V2HgV{lG#uCHNZ<$OwaETS<0ldzgm8t$b#jhjuO(DFuU*Hr-kjcBmd%hG^3ukEN z7d9qd%P+(dM(zZ4&s%xZMqu+7X%YD%6ZM7A9odk)=MfD2pwzxK;Y`ssjcA&JpD}$n zeLyoXA@7{&5z#<5UC%uovPgZ=UNZ6nFU~DkWZ*f0nifWBq==nOOBU^9h2|Y34kJ8Y zla4To!#yEud`r`R)C@>vbS#{hq$8fMoWuc)!#w2q8qv6IdvGA6}mE_U@`Y{cpt7n#SEC;x9J?`fK4Ctm_IXDre=*9PwRN?jrQ#Upe1J#8QQBY8dOUDa{6aYJv1X1q*Q0F4ScMBEm5bpCqq59anvTkf! zS>=D$*>8PrKYL$u`d(iq{=xGD?FnDO8^N}!6hfx`?)z(#ncgbh`J$$UDFna=ck~uQ zsT~BVydl&g4Xr@&(Tw9)46?SX4u}nGk@c=c?0-;s zZ&w}gp}tnR{}~Aqv=@fqR^cf&R2~@`4A-IREk2l{!c({}j~qks78y`e@urP7dFu=u z8{&YKqj(d=pl*=C_>=+tt9Vxo(o$veeBwggxhfgn{B)`H)LydHb1yr`dc8}ERH?@4 zy18Uy*JEn}Q_G#jwaQ*+c`*%XQFC22XNjpLYs=MDRZ-K_(L*a&v8*$9wScUf*|mYp zlxs1<4I6hs%{`;5^~yx2LQl1;vw6_ofY8Y22NeoN~^3?ffOU6VqnLs4exkv)HvKc#n$Q0)kp*%X|vP8QV5(*9Mb_ zNmj6J^|F?7mD6zklKFh8B5YOed= zkGb(BOSZeC$AZD2m}jZs{GLS4%?s8p#sbsk0|0ZS8z0G3ZdgKrwTV=kK3uNJtiAKJ zeH;2Y9Zk(7iMw=)buo5CeYk1*el|FX=>fd@-a;8w)>JVyW1cstg{fq(9gUfG+WbjQ zy#DUvNjfuu3GAH_6PEp0z4MNJSG%1GCMa<{R7NmkT9)UG$aEx>78f40aH*1;ce3?@ zvac5+2dcMbj~he+^zXC4se>nvDIss}veD+m3Mk>av-+{Z;%3X?p+?61b#ca#0aE2O z$=2i*BWxPE-4A~*&wwaZ%PoNctQ!|5yFs{Rs=cvCb~-%?tMi^0mgYj~-Y1r?{|?qH zh=A*cK?)`G#0-Nxa45%K7#3KA%7D@@M1#-VgXJ5TXX%c`pJe~_^P)90cMlEPw|qza zr8$ULLRUAPuBwPriFk)3$|a*|Bt2wzrv*Ew-xm1S;*Iyae{=DU=0!Z6OZ86!9=Q=Y z=qr9h7Q(_GTHH_>2=P%KvH721e(JZV(7ppZtZ%w2U${A|w=jKpch$s@%6-tQg*&-! z@pD)iYV2P_i{TE`wLAK+EbC6$%hD6K#n7&i;v9z?nD89R_Z&d-jD|++AVVWf-yl$< zb&CZ+!#cey(CBYl(@Z0wK_-pVVH&pJwY}TW&hymq?{wbO4O(NR&Z>R>x4O`@`m}it z{;DfMM!F*m>@FQnW<#G&`K0Lc^Yo;U^QUeMJ9RM-KG#}^2fk1nWEE}W((=GVY^8xI zhP<=%C1hlI+VC;!$c*#!Yxf3cvJ^+{IdL>88EW7oq!avN;=>x*z9klO5+;%Ou@9}H ztkk?Kj7xW`Xc5}TgFiUINx1GAxBl!=Ram-+BTUzSE^F;|e5%g$VCy11asJxa9gUvW zFe$v>G@mN=BE&Ufk)a+!B{6;D85N|q;w|YC+pcdQckGcW-$mM-Y*~8B*mRWbM`zwE z7xZ*OP-&c=q>C_HSx)_Jm(0txeY9iJbcci9c|ji`Z*z-!MeHbBss~0ey;OZc+{48i zlml3t8ZEe=!JnKhqo##pW=^ZctH!1&TU+}hde60>L^))ti#18Ak3$*OCIzy`@y?ab z8c?JTAW_6Ubej+YUURXuBYPMaZ9opg|F_aT}OzSZgin89f|Ry`3@Gk0ZOMRO@}!5b);@wX%c1rjfg_;*?@WH<}l2* zAzOyqz+^Ztq61lx(y(|wneOKp+tAsCI)~Im4^-(P<_`#JGO6#nl2%g}dNO73kl)o& z9M!E|N=aFdDYpeo>ubH9Ri;(e`-h|%i0L~iTT^LAhjkxIGIgR*vW*VsEu1_YPxwC; z2ICrU<+Gm9_K743oUxxZD}Z2xk#luu$QkVkj@(N(lxn%XkLbW>?OH9U)t2z^H1xIW zZ%^DcZ*K=Yf*RnQViyOKN9;Xz#WrL`oqs{`mnSgJPWW7b@B=(?10}8>UFcb8V8Y#hJ`K+qTD`M25@;exn_#-5cT?`(FveFUK zxB?_t2MmE0Md@@!gjiT3FqlHWDz;{+jwft|s6`xtKbAZOZ)-%Q%Ypt;+fy#k1(^0UzQ%wyxU7y0)&u#f0otvD5s;2ksGuJlGoX z$Q;CZvGN31nM{5l&|-IN3CYNh@9F8Imqd1RS@PNaB7sRAoRp4^0%&0ixEk8Jd&xl% zG&H7GDAtkn&JzM4mRKn|>aC3Q_1(#|l~=z=q{N#Q9 zCDz&IzrfAt3(8C?Bd^sblLQ8JiLQ81=gA(0Vj^{vjnvJ$R3MF1ObL z{fNGVOMMA*LgH))wGNnECze+6CnE)KRFny9+BkEA3?F9Np;FR!hXN;=7v~Z890@GAwHmGP3hHpF(TIk!EiwB~d@Lv*&=K}j+P6|I{sjO;X#8YqP{pq6^+X~%L@BFhjEOUea( z<%#{pBQQoCTB9L`$|h&O`^_TQ*SD~!uUSG6V7I$@ZpdLb!q~0`j8}cu8{+<01Xp~+ zRIz{RZt+%(b+J*x)e{=GV=CITRsY&mA%@2GyqxG94axkqOP@lmt34F4=}u_Q##o`h zvV6qnoHmTK**b))<3#QG3w`sO8u%!&FMG>XL;cxh$Y9Ul0Scb6P$)H-5_C@b_&LbAKcY)~r#zE-hTG5x7)Mp|Ul{&Q#QTExGyZ{o2Fd7kgLl zd+lMLAi>o4htJz~o9j5u_Da3weTAd{ciVvuU_HuzxDHkY)@GhI2a@Wa%yr3qN)zPK!6vmD2KR?rsNDW_i!YgE92E@=C}me+Df1+Q7jV4qvem z#_CNH`&^H5ufWPv8|uKCtqP5=)D$;%Ck&HUK0;uF1()@*~9Co4ewWS%i7Oo3c7gsjs|giIwLA+|tf@X;`(wN&YH~ z>CQ>Gp6K6Ro5dF0xe}#q;$!e6)8nvd!Q6mxMqe7P%M+X}<<*#2#Y&d6PMha6kbKyz zT1OoMG!lVMpe*X~2N-K{H4|?1KYIE)nE&)=&J>m1MU!X!F}V~?<(8glT5N*_M`z;~ z@aC7}P)$Ho^+x|FBw)GZp2JDXjbxidvUdoI{6{jyM!ql&G^@ca`kcGWmS)QNSvM&Z83Y~jPjHTV9;_9gkt=X%NaeC{Fv7>B6 zvEj-cV!|SG%^qstCb`S%J7fqE*6$;cGIeGfnEkqoqnj%0>c3l)TvMsLil%s(WGU4% zPgEb0F3H{)GXZ!pIdgB69RlU9-OKPy8F?y?K~J`*c9$P&y|u>P?sZKU#@vp9DOI~Q#(|d9RkDo` zA-vG^%iSr#@-N*xeF=`y-%|%@)nZ+6`NsS`d!zL&JA8c$isi3N|IH*X-=M!IzjZDw z?faAV3vwsV0TL3gklXjo9ml81WwugGPmCM&CaWt0NSU!&zGTM!-opp1UYf62&!Ae~ zUd?&YC8=!!0z+3=-R4Y-j=*Z^%ZS(%Y0uOyQ-Rp_I=by8h}peHke% za-*}c%-a4`VVOFfwAz`_QjJx2r@hAD6LLDz7zi>vSxbomv_zY9!PVnbPNtDt(fjRC5fYY>!M$|I#T-SO&%2H{4jbav*Si z@=vvwW5)DUf**BBjNa=#zAn&-^G6B~NJ_FuO-IRufMNlHaFzNIFfw!MSQPCqFW|D!zP!stgpZX+c-ZGhW&zCm4L*sQlEUu=L?VctQ`tT7MjR;TV5 zW$wy1_;B`|Fmp>^FqKnr6$9`wuF1-us&IX1%X-wdBuzB&!@{aeduz2Z@j3>G--VchcJ`uHTqMA z05uY#(**Z>oSo|sP;6+-LMRtx=h&L!HX}|>YK&b~ux4Pd^g=jEH^tsGEZ*@0I-b}d zU#?b$d78}nEJwsz>hm7o&CxPNme{ogpgaM05Vt*9vWlebEX0m*RIE-cy-_S-7H6w7 z!U_ZY;Lxt`Ak%G`4hUBC_tv2&RhvK27GdH{{n#L#ZygHxT_NvU1AS@_w<^!n zG2ID44!8(T1F6a~g=7?(M5DK0Y;_VC zAYlC1J_l&WGo{SxWACN`g~VFP#0tl!tNmFL-JMXClT{0WG1D&c$F8PG?#TNd@B=oE zF8-Hnq@lk8c+mzRWqW(SdA-KbJrB<}0rj2RG{tvJ(i{B^GPOgW-n&;sI@;z=9Pn^I z+2*c{v~WceZkW1BOeUD_oJRDAl>>&Dd$@WF5giA#eL)1s#~qkzo9yx-#jbc&l|zE> z?oemkeuaIUl6y2C{vI9_KWuon^jK9?|M^<{YP`aF0(yhmP`?OIzk>>7Bna5QA>Jpy z|76CZ*4X5(fB^vVep8zNN;+d_@1f#k;`qCJW?^dLY0Xw60~PpTpdMCl(}+!u9jtex<`p|wkzMrn3FjyD zN2sSsV^Ljz^LVOzoBOq6uE*(i`quCJiP>MnyTk~E9n1lboz=UVI1(GuJCGCiQGH&b z8)HlnsLftWNY~J6}b z7lqGld!{SaSUffF!N!&=SHlr2(44u@vzJ`kSADxdWXg>v%{g-?#6X<`780yzDeWMi zib`2nnP#~5w7zDa@VZJ@Y*Vno2!sE^(=oC-z@ghjAI6R;{U>er!gdRNrjj1iPO);L zD?sc`ddLV^Wf?|#k7$VVI6792MaZl}TXqN;m|DFA;p5SC&uJOsK(!$?Pop*&C5tsQ zIHiszEpkP3mWnYN$8v_RA;863pf^^WL+Gac56x|b+BTxASk5JLyL|Fu60)nfwn@jB zuER&7!8c0GpA|R3%P-NbwC$JAy1poe*N>1PhJSjHln!MJ35E2yTrM`cn_9DME3-32 zTxo7Ci_ObyJW@AoIi6w<^;c$kL(zB?j=t&Lw$E_LL28}Xi;%iNp2Ou@yq!DFYuy7Y z|EwJ}Q2#myTSev9C>`0USl_8eVQH=RlDk3j|C5XJ0Z{%vB4CKA3OsjomV55TIlgjV zyUcJ2wf^`U$u}`|O5PM0^;8nQcsh)rkRw}#QB!em(fx-z$yD?)1z@4YXV_O*SfZC)g~eZL5k^{I2*$_K z6#q&cf*Uj2gc3=2@RRTxsUd=bZG$q0X*>PQ{A}PYktWAJp;x7;1jDNSvg&_Pj-!QS!s$nSxT{vB}Hr4{>m+b zGUp#lS{GYWeBwSHa&!rr1GZfV;+{YOtkeA7FOrF|1TiqTvuU4AR0}tF6CMcjDgY*o z0hQtjt~ikEMuF05T?#Z4o6PPr3i+Ewlxbu3y*>!K%79!or6F*AEI#SIB7!%FWA{|+ zT2RQYZ}$HTC1{YWPRPGuMBx`f{V#-)|Gvfg|I&${QTy~lF+=qw-!Nv&f=v69A0Qcq zWZ>qsvAMV!3LprTo(Y}#2ZnOe_*II@xUnfGgA~xFCau*{%Zj=csC8FBf!aJPxp1$= zyhrT^9RCM6Ppr82@AQo+y9UD~Jzv1BWA9_mt@f_d$yL^xZXd`V-4|=%r@eRx;;8uV z)JilyP@WNMR2^hRe06UJqb?+3h>DD;e58PZhEq;*wpn|lWqgmY!)4H(bOf51IzntP zJyO2EnTLle%*gQ*vE!p02QPI?Z17DTB<|qQ@evX=Px-!r0WV4)7%#1uoal{(k9dP$ zD~kMH8N|k26VID2+HCNxJJPHqa84qYethWA@vRUiH?0}{=&po8R(w(dwM^MtBft_L zG1de}rM_XybreZ-R6I6nxY$9s7#WkA+q86NIC-Ds1E`l4s*-!U`P@cn9$jZUWyE3R zg&M+Tld?eHqAdfhXJZ0!9|nUMjq-WNb+P^hJC^d5({LP{T?bUljwbI3GN`NJOUmmp z7;q>jpBMHw?+$NnTWf%iDqc%-6W8ezo5dqOsfl6QT z2DL9u4NWh<)@iM|OY6SXK}k-BWccXQmMJ@j3kUIc0L1@VK4(1L$c$Ns^6#lj#g{-G zqePtw_u!1CvuyF-SuP2}5=wKLusXK)!caJGm4VKV_7_uHt2!G+kFq@!P%FoYa`Nly zl*OgivN#A{nO!!@11pgH(7HoxDBCRL6%!4^>3RrNIh2XbZH;(F+hV2E`5uRY)BIX9 zpz2GdQuf*@mPOu*>QGk(^S{e?wArOzC%_J7tIdjmcpIv-sy@D!XPjP}XD0zbgGG!w zLzv!LLvHq}Lv9YLBd;vp`1Dq9fU}H%ALP^0rDwf-H1yfz#_*PJgu1Hri4&P9wcK&% zK^Tj7#NCDaDxA~$szX)}3D6v6`!3qW;UN3v`(tkrB-)Dgh0hjYuJ*B#fd>)hbPCbr6aqNY_W_U7C4aPKVq;=$Ity(rxD({IDK@rWpC>il0jI|YK z40^m{$9R+r>G{Y}INebyKGfW-m+24@i=uoA60ydtRn+r24tut5r)+T&(VJ_>VdLU> z_Op(!elDO#+-|>rdhfY>?ci87Ar>~BS?H1B?s5A?N79=c_*F-hXmj&?T7puj z^A1PKKTlN&6U^%H^9R^fhm1s4re_})6dnz-NcQIlYR2=v`Dg!V#q@DUa2d$BM#zEk zp0}UEJ3&@&!hjUrUY);qxaS$mUc$;&uScRjlM$YPUIOT?Yc49jG|Hybf>7z zV5JwnALM-fw-e3M#k=H88TehMHSCU{R%V4o97sF4dHjY{;VB7Cb(=DowW7HyGIB*< zIh7+7O3@o`i+bvsV~>`(Q$t?A{p~S)3u%{)YD$CiVE~G8a+MvmX6r?SLQC#nR*rFZVU%7gBT zcOW7tx;qeP00>5ly+-m3ns1s$_>} z7mULhz~|Ilcd2?ym{L||^{uKS7S5QKdwq{za}cX~&oP+Q909Y~BHm?;%03&g4+)l& zUF%0#@0Y%3;q#ZW2B^~y$DL#N4h?D#B_YL8q+%$v4!%3=h~Yo2V`$as z#y+^F?1tZgS)?SPtUymWvK7Q9RUNlKKAc_od=ESj`&3o_K@R#EERXa>1y(~;X}HB# zZ&4cgCbLA-cLo+?D+UBuKM#2WhZ!TKVSj1u4V7UXlhbE)TYwIyyiz@^`SSZBWqIQP zOesELURTG`%cZkO;IpC?l)3Bxs#lY!9w0s`HJ@f2d`F~uD8Kc0&ld%pAL1N3s@wr* zk$K2bJjccsI96djUfoVSNQT+0FrvOBPy}|Kp`%ltN!9I{OO8raFU(S!UUY zIv;%~-F0d)4DBBOY!KWqBbF{AR%Y{P`yv zlP0RC8q1IQuGE&^KQ5iiy8OPrUT^_!2B)xiDh8GSz>HX^skVmaLFDtQ>5ZvOc}@+0 zH72ttG<0(tMLv%!jyNP^FW)jw-=pP?Czn+L!o>BH*g26gvydT?Zr!umGEu39;a(bQ zi##yNM1r~e?)bE^HeEBLo6pT^FNx%M@S zZrbM{)C`1J7V<#m<(fli;Px!%21!I{NTeFm2~35b&gs|{NWG=%%r2zDx@*>}m;yDA z635Dc+>cU*Xa>RPSt<;p`t?K`ptDGPV&M3fd7fNHP!; zJ%&_D@cV1}bS#pnSN9c6bke&SURKiFBcqgEDkTBLDpS|L6JH*NS!cl|z29Abs~NT7Tfj#KE>thYB%F*C<=c&ded! zPX~{zcIq{Sf;1+LO~yBFP8f)q_m6xNkD^*msHa6nhS)uLP?i2rk=7HWP?C33lbvR z`fGXH(pQt1Ne>Tl#pTd4&SOnm%1>Pug-h+4yF2K%t`N~x{i*Hd1|au`G2K~e@>QV# zwx`=qI=|McZZLXt=zn(Tp!U~)bv}V1^x@b4X7EvgJ^>=!1o?)s#(f&}?-Rgq^6d46 z{d*5@!w(jMgZKKRi00%0I)sZGWDFbI4<1Ugk37gLJ@eB3YOXAkqmlr(bBd zhyI^$)5`dgY5n(2Is*a#@c#dMoByk+kR#V6JM;%38+HJEpD^nTAW^rmbzvh+jTpf(%k&8Y$S<3sY#MI>#c@~g_U)F zKFc~YPCymJ_+jC5XvsM4HX1zUzj1Z-DT1yCrS|BX99aq8pf`A#J@wsQ5t-r z9|~+Lj98pP1~TxsH5XqWlE3dQ6mElzE(8_<#_|2%MoY`5ot#pL004v(zsu48wJUS9 zvotYs{-06pf8AV<2DG>Gamr7gvFVMmqX!8FBaq3T;CM3;ftYYXq-04TEQSZguxS}4 zh73$oGK_N7l6=)Fn-PoW2D!ei&~h_&*iNKP6tiB{P0jkNjM(eSj#3Yhb>IV_AUHgIZL> zw!3V1vH(u^oryiz{dV`caB|80DD~upGKjBIjOQcB{mS==4R0`vUk9&JkerhKpC!ta z(tXiOx9)w?^Ai!9$rehrTVxhap?Xv>oJj}9jsP=`scb2s*|_~FOd?s5CXB2EOGiSa zOge#pY`Q|GZziRBvyl3ryAM+|L`0`lmm8bY_fjdor#`j-Z z7i&~#N}5z?7tEw=(lFme*7^jGrdB2Ecfe`2SS*=_uu;QyY{pxGoXD(>T2(7|({EUm zfH1Go#*uen3r5JB#jVU^Z(5FEc^(>2Z^jdL3hy1}UV0V<-cPZIw1#34-G`PWl-DM^ zjT)WHlbDib9W>O6zq-^+fr=zBsNpP{Q>^aH=gNv2?vT`-T}hGEsC$|)^-f$!*R5NU z78Te8Zje(agul3m8CHa52~L2e$+Bu-M2IX#f$XT<*1d_FJc=42alC2-t)LXaB`HDDNsDPIewp&&be1m9(J) zsln3M_R2J_DF~*OwTZ-qu@Kq>MMhR_q|UvXVM5YYeHM5choPXic`nOYA{RWzV?C!C zz=R9-ITvp>(Abm=UA!kjW#z*492i_mAfqVA5;4@7NgzoQs4EF`0}G{EuvHM8sUTgi ztZ@#fXEaVBtb*OA1fut3AokSkAv)50Y>95C;Ss)4T2O4JqL`JP0Vqd$sK zID#xm7LiJBIr6sf_Jx;}rZ1^_b0A!}Q+jf4{_dVgsBf&2u{TdETS}}`FzYOt6GUKwDtOlZQEn%CRZ zPpy^PLZ@I^JCRVlAvZpti@SwtSNIwf8j2!^zMa5`cm*?(G0G&cEh)=W(1#LlMluOG}m3l`L;?i0q{yq5cGWsU}qFgJ_|iP^Z)x+Q~-8NzaZ5;})vat2$o_X}g?7 zfE^y}I(llOvs0v0_{j5wQ;BWDl#E-caM41tZde`hVTO>RstQ`Op}rBmD!r3S=^&AT zF<6KUt}+l@d4M)pDX~#ho%~IgpK0&k38D+CnnVn)QfG>El>bsdd6ti7%47#jT05 zZ9ejW(ZsRp#Wrb6raRhh{ur9XRlr24J1&3p0Lt7@i=jw1{v-{yau!aBuh!AEQuefo zCj==XAA4-z3NmP)BW!Z?BCgmxMc>kiBq4wGx%5gAW^NUuk$1u%At4#6miZX2;M>jO z5wc}_$1#pFFWKvS+~ebTqAWEnS5<)FnD0Fq?{SF?Z*WLDx=aBidCp9_LvI!1!JjfO z1swK0n-YGXRN%To+njRALT_=hVM^I0UwQB%+F7K!98iX%*ymmJyS@~21X0`|QzbZV*lY=u4j0d?dW(?j0oqnc7LuGbejvZ{I4OQSaJe#J#}Wm}MSeeC$yq4bAS z8=n@V=-yUK4#{zf(}>`3CRy!?qs~u-Q!xtz;CeNckNQMcbds`X=w&n;`*b+EbSQ4Z zsZz9OyMtW8ws&_XIyl+qp`~M5VrebIlnQYg|6e+1|A|cz*s0H+O!a{>ftkC83SbL= ze^p2;j28B1cnyCd>q7=+y{xC#bFiXKE3t>+i&-&n^?G?g0sO7FrA2|2)d3TVSh$YL51KqGF8G znD7~dI+CP@fe-D6IliugdqO1_W@OUPP>;qLDu)TFAl-or=nTh)t{+!!hhatqA_S(V z`zPYHk$iAr1rf&$vpcyQ;@3+>XnHq?XWFnanm{{0^M_1|ySCNmw zlxpSOKVCoZ7JIjBYzb8TmBlP^yD17}h0cflw&D8r7>@znKdu24E%-FalFgl)g`lq} zK(9YH8eFa|tCi0z(T=)rCd5G73g3m5-4zW#rmU|%y6GLw7kRTo_N(P9I{{X#U6kC- z9u5sNJd$5aDO0kORMHAnwHiBuZsM9d&T`Zh{j@PlPJ^21vgaS1+3(5Yx}~D;Jp#CN zPM3{12MU&hlgKcDr(f zrkT-l(5Wai=@|=~-l))K7yRRK%o}$lfHT^kOVkv>vy8E4HI07F_DCul^$)V4(#M<; zS?thei;Fnq2JgyoE_HjV?In43r^!CR_(f}oB@uKNY~W(|v_E~2CHap(116S~a>poY zE)V-8e7?nDj2Xg;wuX1bL|e3!}vD z8lCRX4=U_5R#uw5ogF1RF~imwihM&w5Aqz_S6^HlJm(94%f~I>>|0}$(gU;{umR{N zpT|gFCZE@cKf9*>?FMka(=Pr^e4`E6v)vwgNy71oderqjRe=|8)9uTAXCeS zq;SBi9r7va?1>MR-C6YCRID1lD&G=yy<)yZUgut14g9-OD?9_y@Pg&h-)jQHYyRpM@EVhSCR4dNqdvQ?wN-Va?3|XBBbAMbw$wZrvZ!4hW4n zXc#PEm(9Zdp95KF9KrFAeRxI7QXZHd`?T^#ymfVkBp z)`ZpxCU2}L*cGdT$5hJ{@A*B@CWFm-0R6t*D&w4jPk@YXi^+>Q)nl+fseg;Zjjvaj z2p@C0klFo7Omt0EA$D2yv#Kw)aCNgNDiYnDif8G?(9R~rEEk9;+(~z+ojARv^lO`N zny-|s$t;Y)3_-<9UhAAUu)``e{K{aNB9z5u2XGm_aDeQ{4FMl-*yDu)_^DeUyAS-a z%F6jA5OA60Lpgk^(pzBm<^dWPEv1)G+u6EI3`|zLFR%TH`N37c*Q&&WVPiLTV%U#M zA!iDsD>w`WdB%71K$WOF$hI>n-7m!XGu&nri96y4pjSGa>=2M=#)bZeXNaF0A~}zG z?w~4JNs{2T{#0SS(RK57Q-YQewD(nh@(#fReF=tVt$m>X(avZ#%eY+iF5Vt(%SQuS zTcqLlcR`1GfyK5_SMSFaX)OF2 zQ%t5$aaQq8bP1>M`96Qb&Nm;np0K|it&outE#dKew&aCE8u9SQ{@M`-733JoBba`E zK!!y;ZXm~!kdEXjrnvoeL>V}AC7C8PJN2^cH<+~;1|Kz9gS1ZO;WoZ zXS8+?@OTIbkEN^J=@jVMoKH!Woe_#%)gw=bq<2ivn)q+=KrL$ISokg#B@1$h)#zPAJ^U54_n?$pjT?)CKSKm zjSYQF_}j;En?J!ZPiK1vWjSR#tDJ?mHg`(ijuU%^#i?82Glo?o*uBnY{tmJY0&`63 z)?(0cvHxfkvAY@ei3an~$uZ47eNs)uA=~LhL+qh*0QU*=`i=CrxtB^_cNfXa$dL%ZAv>ZNo%WG;`x z7tg*-KX+SpPg{)|kjd0d8*BOmOsrDNF)p(D_B>$qIQvshRQaag>%ZW@ujVREH=m*~ zU-yKkZ5y&-oBo@2n^%5^Q|*f?4k)rKvV=VR)Jfh@(48D;aM;Lf4P?wu`N6h@dBX(m zhMUNi9xWVWkDX3pUqooJb$~oRZH>uj-p~k6*c#;As#Z`eOtP^Gn_p2~JF9rY(b=Qb z-K)A&aeqB1kdzCt(=Af4VELFR`{babyIq(i6nZ zQ^N{Fq&1YtyeYQl#wgb>VGPzKja!&2jc!Eydu~K}joEw3!h|Y-WiTnoGGS<)Mz&2h zvra2@U#=ZMUV=(LDcMbU{nk;9)>oZCfNS1bJ=Zx})Gg$j1h?O2$M*MtKZseb9-&+C zaaUx?iuC#6mQ?f@>nXI%&G0${x{f71%w+E6QfAJSZ;KA&_00IO!vg**@DZ zB+EC7jSKo`wI^gE!?OyHDGyJv_$O;$x5Mwy^jJqMo?uezDq6aV>{rvP+wnP!W(O?v<5d#BQZb)6Sn%A|f5i(l=v4Fs^!eLP;l6TQP7z;%mNi*WhdSCLM zT09s}lbtqSzhl2+v!`o8I7TH34&?xh)+2~RBw+JK7D6RB zdE$qXW5c*gU8cq9=)*KPr$-p$=18B#hXO-IVB=U(SWsMOMiPb_Lw`}t;e|LASSzem zOfGVpF*rPiX0t|Yn1*gGB$yr0Ekvo7e>VFykJnHViJ)r-DX=#iiE+UV`fD$kqfoVK zY#u3EU4z@F;Dd}+DViIu-j9&4)0+Bf)7~MUy?1Ku&&c%9c7gkrti?sBp?*vuyuST1 zTdb$ok?H0KN0?|HZBtf!8|Yyy4s)9=@WEy`3!G8gS+Q>sk9ZM61_|V~MrfpcWZrq{ zXpt&&JIJaCl{LZA&@D?vDZ0+~yDqL*jx&b=jWs~!_GQ0}Lhf}kImz(Hgly;)=!|4L z#{SMP`_-3mjWsXHv)*VtA)Y;54Uj}5@v9tzk@zm0R+vou!ZoHq zH2|3|B4bQ2x^ONbd^)_)4obG-a!S&K~+N|64T^ojfTdp*77vEgDBEDyLYz zByY0!rIOdA1dpc#eH+Ss8z(5v{D@oKnl|f5dQMikq=Usztk2@Iw(NIgyF|lu>J(sX z^%i^7)(R@+DNiR)mYyOl#6z%5NzgM#$r;+q<;68`h?eUK@}_%M-bQ;`-e!AVU-|oD zz&Ki9tp*A+-L1y5+nk^=`!{{7>IvL0aK|MEO1F@K&{MFB6=?b(FK}fK8K^4z$-zdv zI;g!`3NGzbzO{%)C1B7UYTD|i3p-AyvQX^?LR`12R3*)aU=~xzJP7CI$BPOOOmd`P zMU2NF7bn}(*PZ|B!5f;F~_7a&mY=oVR+nV$J97EIavF>2$j z&oOMY#LV&6ls?398SM`&W+OuYM6}@Y+yvidiPT?T2@R8t`N|=T6#XTGy(lDhDQTQmy z957n&7p{n)D9A5d5y*ZRwTEow$1z6U0DFt0h#-nkQ~)*(prnvi$|wY36grWzMk5{{ zB6;W|F(q~ik-Jh|&}ppQAueET`YzblLE|GM69-9r_yx)lUzLfI$&kk`^sy#)`v$Z7 z+D-O{KD>LDyI$x4y{7oV97_5ffc|H+GQgz@ocwha$oX|kX8S*iR>CIsCbq^VwniQj zwx)LfZ9eut4ZpW;1Zhi3_CQgTK|BG`?gJr%%?U_`0~tl6!{Ons|F71*0xYhiSsM@T zZh_$LL4&&o2=4Cg7ThhkySuw9*}eDvhneS@8J>FIKGj`) zTB@rSXaVcREqzx{+)s@P>9~xujos-9urYf~_M_%Z zeoEv+6B!M-Rg0ycpq)aGmWp4Oy*;$}q-y&VtVgrYlzt?`QnMk&VAv$FqRH&}ixNDe z6_=MpmL7ty>!dCPIqXP3h!rpIBl3vWX}l-HDUc7GDqza9)@U`gZJB&?Z0sb1+SWG$ z4_cDO%+4l9Y8`oo%BAVv)OFy^`T}jW@XFG3Z-j%eF?+I>BBpGbGgFOjCfV|(s3~kw z%>9UXD&}TlBw>ghL+=Dej*>%)&ZpOH&#lPbI61}JEH<3gcVIQ6_PWV4du5s^P1Z<)SRHNJrT_9gQyevp0#!CBF)v{D!N zEa^5Gm<1;7x^9AQS0@d5c~ z8z+iZXW1B@j}on72UGpGXc#2%$R#3=cg zMcuf2{sfM&onlJ`Yb`{VW(?}Yg0P*aHUnjoA9D?De8=CJF9-wt?WNyUJ0ga@dYCTg zmLEpI2N3(6n%Xqem!px?E)nEqr%T!B@g`0b zz}6`LJM0=(A*!6kaC)vr|ZCayhl!{X6afnOhIIcEcDLc<@nVZ9P(1}SU4(+Jk7RbGTaBLLkbV+{$XVNCSS<5!@f4%3q`oX ze6a=)mC^BUgI!3qf&D}T+N74kn-qsvOsINRNqwdHOiRDuUN2_(Zn`78tu38?2 zk#g}c8yB~j#+o(P7jzXsh$1<@rFE7u{+R<+bZvuAk4c5f0W@WSt@V>e#Neo89K))d`B&g{pWL zU1jGCu0)zBr88OuMQiSJDrdY7g<~rHzWsUVfJ(LQC2=@53>mW|ojQUjG%i0HX#75I z!V9Y1f#;;^UBK$`Cph3H`fn-0L!E`X&|13|Tc?f~U1#UYqti!?^L>z6mXGNvlZwY?1-fVYPFRFl&puw_= zd2T>uH8H{245yopqEW>z$omcwt^% zw;JkGCXAK!*d+@`6(v$NDALp(*wkjCITeA2D;VySX11{;f=8;%P?WLh=GNqe#aC_n zL)I_rwQgzN%bfG^LwlC?+&Oz4NZlTtsvHr=*O96MGp_w6~`)!N?0g{$=YOGiF zBIkxelA@z9XpMCE@lqSV5RQq>VkOYxmuIZ>I|cz6oXjmtQ*jU7F!OmjCA zqW{c2H;nm?LQg3-bQu>-n!3d}%)YO9~tzZJ?ZJYh*M7Z=DUif@C_!S{JE5PU_I$;x?Wa>G( zJ293f!Zcf7(zNkg{7+uR1(|P=;cZcd%RFc17B&_GM0xfLk~gj+Ezc&oey&JIwB7Rt z+Ii;2J=tVf(YwAmvrI7@jQmM%Os&(NQ`ETkd&W6Y%mWSK6u;2j57`>sR+CjUoz`=V zsV%PY6BNm%H8J6{O@0m%yQ+=XA{)G!l+7ykIuT;YM$@TvxQmh~8jUG5r$8+FjyF0~ zI?M+gtn0aIrKE*BCE~YUG0u~6QparwD*bOBqBtB$@Ee|S?927apzyx7ExqiI_j)Z+ z`CqeX3l77c`s(bWOv3|&f^s@;zr_3`hy*?&MP&{caLXJvsnMzg9 za@GyZh*JeWT%M6QQHu^7y$<Z^NGv^}~aNK>&Zh2T+ zQW*G*3w6U~atos8GFc`?rnjgwORD@TMYZE{?%Lwjvt0##XARO#!a$e}K}N@MWNrnU z?oSg5iR}`v@UR`>{14bL%D3L-(C#?SEnOdrleP+TRv1096K5CY^R7jHKmLlK3ps*3s!8}o;>^jqKX zbD0EC9Gl14xQc#5^1ms-90sntOz1RbYOrh{#T zrg%ta(T=t7#S-X2d-%vFsJgbw4}zG0SM=H>`Ldm$#0XtoO_e7Iym0#@K!a6?C!;+ zPxB1A&bS!~zy{b!;(uB_O5tR>^t3bjyf)qO089^s)uWRdwgD>He?rI|vZd$Vy)6$~ zu({j2hnc^S+GPaG1k3a>&ESaIZD)bV4nKn_)sSs;71oXEqlWg8kGBda1~|t!TRMt9 z*pfU^3CNp0IXwxoJL8mI~i`-nV0DSD;xCJZ$cY&!=EiVHQ4GDD^5 zCS^PG30l0Ay51>EqIw>%~Ms=}5`4cY8ptXYX{T6uVRY-LZ zd091x5f^Z3GP?n)_`>;Vxy`FidS19 zRqs;mF2A`)*+j5iI)1(=E!7@Mq(4dzbc6_z?Hq{?L-rsuiFC6nb(Cp=aR|~>r6CAb zZxfRW@BMm`ou?f}K->O_24|3^uZ`qZV?S1Rem_(=8Ke^omyejjIFWrAkM<7X%{2=A zJ}>sw-QtTA-uYfJgzV6dkR&g}=SR97Qgd7AgK2KG8pGwUkP005OvG;>S5o+JbCMX| zbt6W|Qz$@6Yb%%7V^F9DTOwY21aa|=bnc?Go9ac{TrmiVFhm5)Lh2xIUw7m_?Z(VY zT|O!}c=g~f&@q>&x&kLD$JEwqKA)J34ky`Q=!%^<&pbWfd1hv~&KmIMi-VZq8)8m@ z?h&~xJNu7HLE}1Ms~J$Po{VResXfr>d)La@A_n356j9c|Pz~V08QNP$rDlr|-N<$3 z6RR-6n?a7jx%Unz27AJ;59~ir)%)v}GDrbVbK-#My5zs>5)5>8tgYqkZ5{ON9c&GV z`Qz{fM0<_eu#LHw(U zW2<3U{NgK7EBA*-hV|DC3^`5%5K9!z(9BAv=4c$&l8dV#D4-}DZKzaBo|V%$2&i3t z@XbIB-D$nt9*sU3$mQXF-|jZvc4>Z@`oJDzq~&re1~hyugP^!k=y&P7-uaSMaT6Z_ z?&!l}8}g@9UdF+rm}5@_E;iL*gmq<-PXnM_T;v(4e8*wNnug@E59HfK8GYm*vH-xWIGa%4}^9-&v-i-MdUdmQUm z0B-nEfoL)|UE$1_tN!I=Ek238DDNtIXwhJJa% zM+oW_)dQ25Xtt_MerbNyrbok20aXIUg085SRhYbleh`jAAtFphAyV)hEov^7z(79W zgrJ7S?^P5IHIuLWgnXvE6f^qlJhbE`8s*L!(fSf5LdnNwW64AD%ge$+4e?0f*yb^3 z(a8()LGlWkY>A`LXoz9)3GIrd9Af16i}pcxGRbe7?vV?}G3XQDLN?tG;UAFY*{$d| z8o$c&&ePDRlZ-69$rr0o**TT*9H)s1s`xBa0;3PD;D0I&rOxUw1`=V6k|!Gxu}m(4 z`Xc?kwrFutZ9a_T!5l>aIUH<;#8rTw6?7?eUww9aLQYYdBM0=znba8VgJ(zvSRcv2 zT&{-hn?WOZJ8vN&WmKd6py=M_cgt#x=Hh zxul7S(Z@8={8=@6UY)X;O^F4eP4j6(qDbVSDG4iB+^Ft#E>>2$1Ks?pNE6IaQCH?- zW~xq#f>au5(2|3_&vtIYg+`O11t@f+ixQFN^t1I6qV+W>gqveMqidE}lZv8ea@xd2 zt<*1=~*R~@=Z(yvxo~OYJkPG6*uzW z_6pIry(~X|3N5IsWJRBE^Eg8_E$tgt*?U2-#ig0cz4_dV`NQFCtf(NITU=~|NZyxK zbG@BIv4d6MC2jP!6MO1b<^GCeGf!d06V|J;u(b^zzqR2jP|fHQ#xe1$oG_jZbZ-}> zFq!RBBP>ADK$2Uj{;yFf^5g>!xdxKDL_NA^`CfyB-`-})u{PBjWz%6>E!Pw6Sfp}; z7G_^m-Eawx@4@DBlg#GfPlj`<7wPrus#?Y{8Y}wAb#@o|!7Kw&NhG-lk>gLJefFPx zb2h-97g`US+ZwCjHce5!T_RDkE!5;3&AuYma;$uJ3=+ne zc6&>AeOEH~+&m_=Md_I@FBDQ4vD0*d`oVU9EKx4Ov=wF9TTS+IHb+zWVol{fBg3{1 z25E9MMpY6y{zI8vU&A?OjF-CAK+tiYdqU#39a{it1ca5EFgr=n?^emb5a-`;cQjg^Z!Sl{< z9=N}BdP0wL)ZivLmR79>kGTb_LHVY3GGsg!9ADtN(8dcq9;a6-04PQ*iKJ7%I>vbA zc?{E;!^x_Nv*_iJw4oz}LD$Q4NnTP5RZ@B>ZAd#~Ig(@M;ufDWy}~5kGElcbIxWa* z`vk%}RZ(WgET7miQi?iaGX}?)4Y#*@Zg6EF_KpmcRiV4mBUyoq0-W#y0`k+)rJZFi z<@6LELp%hF{7;chNj`RfHTZ#IY}AFhy}-*1ks`uz0)3fS#z`O0ypEY4iRxTLwuANV zf~oODxOLFFoS#fmkxJ(Ju_^Rhv8W&NWpz=Wz=j9Vx3Mhf?lO8W(!vTb zurP}n$qKcgByQz~mq7%hdW=R1wFeAJ>}izOVU9QuL}n#m&FRmds=p;g6G1qpU%Z4Q znSorqAb*g7m9X)_zavh=B7-4C>_cIb1WpO&kXxyD=>)v0lZ@JeqG0Pa`Bel2+LVMd zkly(uLVW@*n{VP}9y9m9lc|s=Wz&0yl1L|d?2}rXlp&UqUk;QvTI#5j6Y6UNX;7Ba zlQ5pq-|bN_DY@8CIK~RWb9jC5mg$}Wv9gxSK7*7Yjhg6K!X{N@~n0{ z8kVGklUAKQTRC$q7f~Wq>&YUHvltI)=58aSWZf@(RoQ74=@1D!$i?J&$+S}pU2Uc3 z7l4HGCku+`{A0uHQCow)sbG_ZIrUr#p=#y)qz{xnYCbKWd~%Pgu)CmYIo?)99MTxk z5A(l2?1#U0uR?KC6Nd4+;)z8_cuQ0v8=)>-gUEipUgNP@qni^Voi`Y2$gRMu&R-*l zL_#hXp^TlDsj>a8%j+6eaiMW>))c(cXAah~zQre;mVZp%7{{k&QYfoU|LQZ$V&`*Y zB?Z3h5jFDtN`;Y5@t2W~liECo{Bjvt(?ayStoX5UN0o6$odmO#IwPMdV^r!1PCL6p zAtT^yuXLd?OSS?QqS;Q6}TUBb25@o)G zqBx|Ik4DCM3(Q;g&ztk%^_< zw|~<(>DbbI`-RTh%7WI}!h94<4e(63dC}nm15pc3Iq6t^F*0zzUJtdO_71V-aB9V}rAbq%AAnD{?hDko*Z;=J{3CY7vvU4LzW3e}t=BG~rnV5~<^us6BDtCJH z%^>q83R2O2n#6^CL$9Aq7mO&OP4rw2C_NMASuIB=>k4GOGG(t4lyR$mQDnYq=%5R2 zP%U7=V#2nEsX$On%P3%eHzan!Y&bb0c8mcxuM#Oye%X zk0^MU6le@FOK*_DUUJghl@qt8*OBX279Pr2lcTgSd zVZPD2yYf>6zEQpr0qiC({Nx(o@{fCkSh?%xf+k?fh*=A%V5Ye6G=t1T=mb|l3DVTN z{KwS(XhBgDdO}pPwvaGK;#0@(?Y&OdE(9ka!;X2aAm2kj&)!lm&LPbrkWJHeXsTDg zMd?t}0Ske+1hYm*n`JI>U$d4Fl?*JWRyXCv>)-7MPLYR0m&1aLH{F3-GopqjoSIPL z@D0(m9g7`#0~w!*=?X=xxyZqQ!S%c<;R(*TLNWzPz9gUPWGufsDR9oz({)Ci16n?* z0EzrUdkE$m*w?qyw@zbsX4<~pNi`vPm->jD_T+0&qS-2)hOfI6v<8y>w0+l@+G#~n zGAR-g-?Eo~>3*^fOp8=ABXGk@1dnyS;Z|*uZF+6+3_E_8wk8Py4NGl_bEeYAH3)$1 z((`1{9gwy0h17tY-?{X<3vK6FQdK3>4$u(5&c#5$DOR`R-iZorZB%S6BY7?Ll{Z2t z#gAGKfORo-DMfEeKxXro0$XY`LoR5JF*mV_H6>h+fZ6!7XRy0@+liM%pNoH5#hP(lJa0fOU}?HYO}MJUBt0UO>0M_a_a%Yg&u^jM1L&W>lpWlK4M1zY)B z^D;aA195KjA&a8H2Iz++pOlrJ87yk>7SPug2c^NK98;c*7%GjrFonyZ#4*u4X%l4C zgg)b#&4ioxg9>BFT_6$VM3CO(x@Gp1IAcB^3}s{G8|o;O4-b0l;9EP|+=vZY@Y-jj zoKz+1ytkTV*HngpXt5sjuY)8$3+R`k`5jS}q_lDMxhOpCTzZ$$>CqoC5KbxDm_0$5 zdkG3-Qs|bZ$-}2vIKV)Ef@y_T4m+ninf|c7I0slm(TJAx`LN4j){q3wKC)ckIev7< zldA`H79K0opH}wF@lLbl?w%GYt4?^-TQPl=b3CCe8rv31DdgBIH*u%zGRnUEa__?Z z9w#qiqx>OpgzN(T>IFDgq3Zy>)r%ZY3^d43wEI}IJG2sKvspsgPbQP+S7OLQF3(Ki z?ZeFw%68zpd>6zD&1LE|50h_cwrR^kv&KgP`}#CLOM+d0lv^5P9bw_?R3Gd!Bo_kO zqJBpS4HzD90M~1)%{-G26xXLGG@obZQ8#GR*x8D$Q@(SR!+nd)+ETOP{LZdrwsO%z zp~DKoel17XTXde8{t{VbmG-H^<>Bnm%S%HXA&0t))P~`N(lX&x!Rq#d3p?@5IL+CY zHbmw45j*B@pr(j3;Df2N;c)8|<5%3sobH)n&h`6|_XRK_`1xX-24rstpd(X)5;>=D z=8x|s>SlIXy<>$GIxV!Q3mL~r3>rzjt!o6~#5Z23!fpErxd4s>a0;6sY0wlitL zEpNoHcmh#L(84m+8SgXY;|g@6{IZsqI^e=tgX@eWFCqhTDXZ_IU;Fid!#8&=8Pbd0cAo5MQ|6n><87uIvv% zu1VKcGv=Oy*MCvi%+n>&0gofIW--K{I_G+-=VVq2@3QT)$xCT`kxa2b!7ZI8pNMy zM*m7@u< zpCBm#Tep8v?l&F%d6QpD2bflw=>R5Ezpt@pKY?2P6X<`u$-k-ahmoHO0$HvB8p{$u ze`w$F0I^ZLD*$-kZB0-}R!CYjM%b?`%w$pS!GG8aHVKU(kCA_r3b7wb2yU%{N1 z(itEER4)%mXpjF>;p2J#0`rHl>seV?TUi=d+S~mKt6)#lAsc{|2e4w9pRhIs|Dmn% z>3-ex)3XP72uN9(S`iBx80t8ffBpJBF2oM`FH^sTdp(kSCy(OZ`NC zBKH4{{MXb_QEDIpfFwR|g@J$=f1=J)`kzt%8sB&@nQ|9U)enH&*nrpfE7zON>L2h$ z0j=k&LVpcR!h(T=3wS1?0Kfr_=KGcFZQ}nAz<)$O{59@n@_RBXK#!FKXbe9qWHjO* zZ~-+g*mtd{iHe}?~iT&~yoPSk*6y8+blSr_528^VB+vWdBBWCHSV{W4V2MxgT3{8w2zHQ12IqMl%+nZQf{<`XAI(Et80D~_> zK)?C(J*t-eOY%Qh0pWRdjQ%`o^w`>G9hY;?0BRHjbX#9Xuzy~;-og$4K=b3V_LolQ zdoS}f`pn;TF^_Z9{~*n1{XdibTAhz`g#Dn59{=~0zsVT(Sh0^&MEoEGTl&|8Kb;l> z3?P1l^m$D8IE3>Ly6Me-PxrS0ogdRZ4)gkh4u9ug)BVvte`+$nuD!=G-hR+U9sO&% zUpxbU&GtBI)eko6)BhFQ-&fn?Xiq<=w9fuVRDT=$>2b|HKC<|O5f%dY_nq3`A7Fe; z^7y3D50Yl+e?#)Cb4QOk9-r6v!Lb1MZ#aHBz3~|Qu}kI;a5?mU0}g0we{s-!jQ-fW z>j%04_P;{^*|+F7zFv=+ANw)=U_QtBUoijLejaZ%{UB)o__Y1+$MN4bo*v)Q<29Hc iY_Nbeg8viSj};kN32=z7!1RDWX}}bv?(6ac(EkH=P@RGR literal 0 HcmV?d00001 diff --git a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar.sha1 b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar.sha1 new file mode 100644 index 000000000..b88fa8464 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar.sha1 @@ -0,0 +1 @@ +51f2461f29ef77ff8b6cb675372ec9edd9507a40 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom new file mode 100644 index 000000000..35d02dc33 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom @@ -0,0 +1,263 @@ + + + + + + 4.0.0 + + + maven-plugins + org.apache.maven.plugins + 34 + + + + maven-war-plugin + 3.3.1 + maven-plugin + + Apache Maven WAR Plugin + Builds a Web Application Archive (WAR) file from the project output and its dependencies. + + + ${mavenVersion} + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-war-plugin.git + scm:git:https://gitbox.apache.org/repos/asf/maven-war-plugin.git + https://github.com/apache/maven-war-plugin/tree/${project.scm.tag} + maven-war-plugin-3.3.1 + + + JIRA + https://issues.apache.org/jira/browse/MWAR + + + Jenkins + https://builds.apache.org/job/maven-box/job/maven-war-plugin/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 3.5.0 + 3.1.1 + 3.0 + 7 + 2020-07-10T06:09:12Z + + + + + Auke Schrijnen + + + Ludwig Magnusson + + + Hayarobi Park + + + Enrico Olivelli + + + + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + + + org.apache.maven + maven-core + ${mavenVersion} + + + org.apache.maven + maven-archiver + ${mavenArchiverVersion} + + + org.apache.maven.plugin-tools + maven-plugin-annotations + provided + + + commons-io + commons-io + 2.6 + + + org.codehaus.plexus + plexus-archiver + 4.2.2 + + + org.codehaus.plexus + plexus-interpolation + 1.26 + + + + org.codehaus.plexus + plexus-utils + 3.3.0 + + + + org.apache.maven.shared + maven-filtering + ${mavenFilteringVersion} + + + + org.apache.maven.shared + maven-mapping + 3.0.0 + + + + org.apache.maven + maven-compat + ${mavenVersion} + test + + + junit + junit + 4.13 + test + + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 2.1 + test + + + + + + + src/main/resources-filtered + true + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-bytecode-version + + enforce + + + + + ${maven.compiler.target} + + + true + + + + + + org.apache.rat + apache-rat-plugin + + + + src/it/MWAR-167/src/main/resources/MANIFEST.MF + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${project.build.directory} + ${project.build.outputDirectory} + + + + + + + + + run-its + + + + org.apache.maven.plugins + maven-invoker-plugin + + + clean + package + + src/it + verify + prebuild + ${project.build.directory}/local-repo + src/it/settings.xml + ${project.build.directory}/it + + + + install + pre-integration-tests + + install + + + + javax.servlet:servlet-api:2.4:jar + javax.servlet:javax.servlet-api:3.0.1:jar + org.apache.struts:struts-core:1.3.9:jar + org.codehaus.plexus:plexus-utils:1.4.7:jar:sources + + + + + + + + + + + diff --git a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom.sha1 new file mode 100644 index 000000000..d34542261 --- /dev/null +++ b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom.sha1 @@ -0,0 +1 @@ +215beea5878c7c7bf3991bb99218b8d063de317d \ No newline at end of file diff --git a/code/arachne/org/apache/maven/surefire/surefire/3.1.2/_remote.repositories b/code/arachne/org/apache/maven/surefire/surefire/3.1.2/_remote.repositories new file mode 100644 index 000000000..e24c7b169 --- /dev/null +++ b/code/arachne/org/apache/maven/surefire/surefire/3.1.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:46 EDT 2024 +surefire-3.1.2.pom>central= diff --git a/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom b/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom new file mode 100644 index 000000000..0e4c95f61 --- /dev/null +++ b/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom @@ -0,0 +1,569 @@ + + + + 4.0.0 + + + org.apache.maven + maven-parent + 39 + + + org.apache.maven.surefire + surefire + 3.1.2 + pom + + Apache Maven Surefire + Surefire is a test framework project. + This is the aggregator POM in Apache Maven Surefire project. + https://maven.apache.org/surefire/ + 2004 + + + + Jesse Kuhnert + + + Marvin Froeder + marvin@marvinformatics.com + + + + + surefire-shared-utils + surefire-logger-api + surefire-api + surefire-extensions-api + surefire-extensions-spi + surefire-booter + surefire-grouper + surefire-providers + surefire-shadefire + maven-surefire-common + surefire-report-parser + maven-surefire-plugin + maven-failsafe-plugin + maven-surefire-report-plugin + surefire-its + + + + ${maven.surefire.scm.devConnection} + ${maven.surefire.scm.devConnection} + surefire-3.1.2 + https://github.com/apache/maven-surefire/tree/${project.scm.tag} + + + jira + https://issues.apache.org/jira/browse/SUREFIRE + + + Jenkins + https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-surefire/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 8 + 3.2.5 + 3.12.0 + 1.23.0 + 2.12.0 + 1.1.2 + 5.9.3 + + 3.3.4 + 2.0.9 + 0.8.8 + ${project.version} + scm:git:https://gitbox.apache.org/repos/asf/maven-surefire.git + surefire-archives/surefire-LATEST + 1.${javaVersion} + 1.${javaVersion} + + ${jvm9ArgsTests} -Xms32m -Xmx144m -XX:SoftRefLRUPolicyMSPerMB=50 -Djava.awt.headless=true -Djdk.net.URLClassPath.disableClassPathURLCheck=true + 2023-06-03T18:02:05Z + + + + + + org.apache.commons + commons-compress + ${commonsCompress} + + + org.apache.commons + commons-lang3 + ${commonsLang3Version} + + + commons-io + commons-io + ${commonsIoVersion} + + + org.apache.maven.reporting + maven-reporting-api + 3.1.1 + + + org.apache.maven + maven-core + ${mavenVersion} + provided + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + provided + + + org.apache.maven + maven-artifact + ${mavenVersion} + provided + + + org.apache.maven + maven-model + ${mavenVersion} + + + org.apache.maven + maven-compat + ${mavenVersion} + + + org.apache.maven + maven-settings + ${mavenVersion} + + + org.apache.maven.shared + maven-shared-utils + ${mavenSharedUtilsVersion} + + + org.apache.maven.reporting + maven-reporting-impl + 3.2.0 + + + org.apache.maven + maven-core + + + org.apache.maven + maven-plugin-api + + + + + org.apache.maven.shared + maven-common-artifact-filters + 3.1.1 + + + org.apache.maven.shared + maven-shared-utils + + + org.apache.maven + maven-model + + + org.sonatype.sisu + sisu-inject-plexus + + + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 3.3.0 + + + org.xmlunit + xmlunit-core + 2.9.1 + + + net.sourceforge.htmlunit + htmlunit + 2.70.0 + + + + org.fusesource.jansi + jansi + 2.4.0 + + + org.apache.maven.shared + maven-verifier + 1.8.0 + + + org.codehaus.plexus + plexus-java + ${plexus-java-version} + + + org.junit.platform + junit-platform-launcher + 1.9.2 + + + org.junit.jupiter + junit-jupiter-engine + ${junit5Version} + + + org.junit.jupiter + junit-jupiter-params + ${junit5Version} + + + org.mockito + mockito-core + 2.28.2 + + + org.hamcrest + hamcrest-core + + + + + + org.powermock + powermock-core + ${powermockVersion} + + + org.powermock + powermock-module-junit4 + ${powermockVersion} + + + org.powermock + powermock-api-mockito2 + ${powermockVersion} + + + org.powermock + powermock-reflect + ${powermockVersion} + + + org.objenesis + objenesis + + + + + org.javassist + javassist + 3.29.0-GA + + + + junit + junit + 4.13.2 + + + org.hamcrest + hamcrest-library + 1.3 + + + org.assertj + assertj-core + 3.24.2 + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + org.jacoco + org.jacoco.agent + ${jacocoVersion} + runtime + + + + + + junit + junit + test + + + org.hamcrest + hamcrest-core + + + + + org.hamcrest + hamcrest-library + test + + + org.assertj + assertj-core + test + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + true + + -Xdoclint:all + + UTF-8 + + + none + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.23 + + + maven-surefire-plugin + 3.1.0 + + + + false + ${jvm.args.tests} + + false + false + + + + maven-release-plugin + + clean install + false + + + + maven-plugin-plugin + + + help-mojo + + helpmojo + + + + + + org.jacoco + jacoco-maven-plugin + ${jacocoVersion} + + ${skipTests} + + + HTML + + + **/failsafe/* + **/failsafe/**/* + **/surefire/* + **/surefire/**/* + + + **/HelpMojo.class + **/shadefire/**/* + org/jacoco/**/* + com/vladium/emma/rt/* + + + + + + + + org.apache.rat + apache-rat-plugin + + + rat-check + + check + + + + Jenkinsfile + README.md + .editorconfig + .gitignore + .git/**/* + **/.github/** + **/.idea + **/.svn/**/* + **/*.iml + **/*.ipr + **/*.iws + **/*.versionsBackup + **/dependency-reduced-pom.xml + .repository/** + + src/test/resources/**/* + src/test/resources/**/*.css + **/*.jj + src/main/resources/META-INF/services/org.apache.maven.surefire.api.provider.SurefireProvider + DEPENDENCIES + .m2/** + .m2 + .travis.yml + .mvn/wrapper/maven-wrapper.properties + **/.gitattributes + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + signature-check + + check + + + verify + + true + + org.codehaus.mojo.signature + java18 + 1.0 + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + true + + + + org.jacoco + jacoco-maven-plugin + + + maven-deploy-plugin + + true + + + + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + 3.1.0 + + + + + + + + + ide-development + + 3-SNAPSHOT + + + + jdk9+ + + [9,) + + + --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.math=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.text=ALL-UNNAMED --add-opens java.base/java.util.regex=ALL-UNNAMED --add-opens java.base/java.nio.channels.spi=ALL-UNNAMED --add-opens java.base/sun.nio.ch=ALL-UNNAMED --add-opens java.base/java.net=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED --add-opens java.base/sun.nio.fs=ALL-UNNAMED --add-opens java.base/sun.nio.cs=ALL-UNNAMED --add-opens java.base/java.nio.file=ALL-UNNAMED --add-opens java.base/java.nio.charset=ALL-UNNAMED + + + + reporting + + + + org.apache.maven.plugins + maven-changes-plugin + + + Type,Priority,Key,Summary,Resolution + true + Fixed + type DESC,Priority DESC,Key + 1000 + true + + + + + + + diff --git a/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom.sha1 b/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom.sha1 new file mode 100644 index 000000000..c968d719a --- /dev/null +++ b/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom.sha1 @@ -0,0 +1 @@ +f5ce8f7960db895ae7a47594a363e2758743f209 \ No newline at end of file diff --git a/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/_remote.repositories b/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/_remote.repositories new file mode 100644 index 000000000..bc7276e56 --- /dev/null +++ b/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:59 EDT 2024 +poi-ooxml-schemas-3.17.pom>central= diff --git a/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom b/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom new file mode 100644 index 000000000..fc58ca8c4 --- /dev/null +++ b/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom @@ -0,0 +1,68 @@ + + + + + + 4.0.0 + org.apache.poi + poi-ooxml-schemas + 3.17 + jar + Apache POI + http://poi.apache.org/ + Apache POI - Java API To Access Microsoft Format Files + + + + POI Users List + user-subscribe@poi.apache.org + user-unsubscribe@poi.apache.org + http://mail-archives.apache.org/mod_mbox/poi-user/ + + + POI Developer List + dev-subscribe@poi.apache.org + dev-unsubscribe@poi.apache.org + http://mail-archives.apache.org/mod_mbox/poi-dev/ + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + Apache Software Foundation + http://www.apache.org/ + + + + + org.apache.xmlbeans + xmlbeans + 2.6.0 + + + diff --git a/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom.sha1 b/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom.sha1 new file mode 100644 index 000000000..a57e00136 --- /dev/null +++ b/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom.sha1 @@ -0,0 +1 @@ +3a1a70901234441e9eff24d820ba4e3fe1b5bf02 \ No newline at end of file diff --git a/code/arachne/org/apache/poi/poi-ooxml/3.17/_remote.repositories b/code/arachne/org/apache/poi/poi-ooxml/3.17/_remote.repositories new file mode 100644 index 000000000..563f939f3 --- /dev/null +++ b/code/arachne/org/apache/poi/poi-ooxml/3.17/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:58 EDT 2024 +poi-ooxml-3.17.pom>central= diff --git a/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom b/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom new file mode 100644 index 000000000..599357fc1 --- /dev/null +++ b/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom @@ -0,0 +1,78 @@ + + + + + + 4.0.0 + org.apache.poi + poi-ooxml + 3.17 + jar + Apache POI + http://poi.apache.org/ + Apache POI - Java API To Access Microsoft Format Files + + + + POI Users List + user-subscribe@poi.apache.org + user-unsubscribe@poi.apache.org + http://mail-archives.apache.org/mod_mbox/poi-user/ + + + POI Developer List + dev-subscribe@poi.apache.org + dev-unsubscribe@poi.apache.org + http://mail-archives.apache.org/mod_mbox/poi-dev/ + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + Apache Software Foundation + http://www.apache.org/ + + + + + org.apache.poi + poi + 3.17 + + + org.apache.poi + poi-ooxml-schemas + 3.17 + + + com.github.virtuald + curvesapi + 1.04 + + + diff --git a/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom.sha1 b/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom.sha1 new file mode 100644 index 000000000..3ad56846f --- /dev/null +++ b/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom.sha1 @@ -0,0 +1 @@ +aa3a9605ef9f3dd1027bd9996cde39aed5686e72 \ No newline at end of file diff --git a/code/arachne/org/apache/poi/poi/3.17/_remote.repositories b/code/arachne/org/apache/poi/poi/3.17/_remote.repositories new file mode 100644 index 000000000..a8d7449bc --- /dev/null +++ b/code/arachne/org/apache/poi/poi/3.17/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:58 EDT 2024 +poi-3.17.pom>central= diff --git a/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom b/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom new file mode 100644 index 000000000..8640cb6d2 --- /dev/null +++ b/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom @@ -0,0 +1,101 @@ + + + + + + 4.0.0 + org.apache.poi + poi + 3.17 + jar + Apache POI + http://poi.apache.org/ + Apache POI - Java API To Access Microsoft Format Files + + + + POI Users List + user-subscribe@poi.apache.org + user-unsubscribe@poi.apache.org + http://mail-archives.apache.org/mod_mbox/poi-user/ + + + POI Developer List + dev-subscribe@poi.apache.org + dev-unsubscribe@poi.apache.org + http://mail-archives.apache.org/mod_mbox/poi-dev/ + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + Apache Software Foundation + http://www.apache.org/ + + + + + commons-logging + commons-logging + 1.2 + runtime + true + + + log4j + log4j + 1.2.17 + runtime + true + + + commons-codec + commons-codec + 1.10 + + + + org.hamcrest + hamcrest-core + test + 1.3 + + + junit + junit + test + 4.12 + + + org.apache.commons + commons-collections4 + 4.1 + + + + diff --git a/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom.sha1 b/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom.sha1 new file mode 100644 index 000000000..f9162700d --- /dev/null +++ b/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom.sha1 @@ -0,0 +1 @@ +d60d5bd6c6c52bfa4c855fd92f5ee66a837c5d4a \ No newline at end of file diff --git a/code/arachne/org/apache/santuario/xmlsec/3.0.2/_remote.repositories b/code/arachne/org/apache/santuario/xmlsec/3.0.2/_remote.repositories new file mode 100644 index 000000000..ed142b557 --- /dev/null +++ b/code/arachne/org/apache/santuario/xmlsec/3.0.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:37 EDT 2024 +xmlsec-3.0.2.pom>central= diff --git a/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom b/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom new file mode 100644 index 000000000..41ac90556 --- /dev/null +++ b/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom @@ -0,0 +1,666 @@ + + + 4.0.0 + org.apache.santuario + xmlsec + bundle + Apache XML Security for Java + 3.0.2 + + Apache XML Security for Java supports XML-Signature Syntax and Processing, + W3C Recommendation 12 February 2002, and XML Encryption Syntax and + Processing, W3C Recommendation 10 December 2002. As of version 1.4, + the library supports the standard Java API JSR-105: XML Digital Signature APIs. + + https://santuario.apache.org/ + + JIRA + https://issues.apache.org/jira/browse/SANTUARIO + + + + Apache Santuario Developer List + dev-subscribe@santuario.apache.org + + dev-unsubscribe@santuario.apache.org + + dev@santuario.apache.org + + http://news.gmane.org/gmane.text.xml.security.devel + + + + 2000 + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:https://gitbox.apache.org/repos/asf/santuario-xml-security-java.git + scm:git:https://gitbox.apache.org/repos/asf/santuario-xml-security-java.git + https://gitbox.apache.org/repos/asf?p=santuario-xml-security-java.git;a=summary + xmlsec-3.0.2 + + + + The Apache Software Foundation + https://www.apache.org/ + + + + org.apache + apache + 24 + + + + ${basedir}/src/main/java + ${basedir}/src/test/java + + + src/main/java + + **/*.java + + + + src/main/resources + + **/*.java + + + + + + src/test/java + + **/*.java + + + + src/test/resources + + **/*.java + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.15.0 + + + ${basedir}/etc/santuario-pmd-ruleset.xml + + false + UTF-8 + true + true + false + ${targetJdk} + + + + validate + validate + + check + + + + + + org.gaul + modernizer-maven-plugin + 2.6.0 + + ${targetJdk} + + + + modernizer-check + verify + + modernizer + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + ${targetJdk} + ${targetJdk} + + -XDcompilePolicy=simple + + + + + com.google.errorprone + error_prone_core + 2.18.0 + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + test-compile + + jar + test-jar + + + ${project.build.directory} + ${project.build.directory}/test-classes + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.8 + true + + + Apache XML Security + The Apache Software Foundation + org.apache + ${project.version} + Apache XML Security + The Apache Software Foundation + ${project.version} + + org.apache.xml.security.*;version="${project.version}", + org.apache.jcp.xml.dsig.internal.*;version="${project.version}", + + + !org.apache.xml.security.*, + !org.apache.jcp.xml.dsig.internal.*, + org.slf4j.*;version="[1.7,3)", + org.apache.commons.codec.*;version="[1.6,2)", + org.apache.xml.dtm*;resolution:=optional;version="[2.7,3)", + org.apache.xml.utils*;resolution:=optional;version="[2.7,3)", + org.apache.xpath*;resolution:=optional;version="[2.7,3)", + * + + org.apache.santuario.xmlsec + + + + + + com.evolvedbinary.maven.jvnet + jaxb30-maven-plugin + 0.15.0 + + + bindings + generate-sources + + generate + + + + ${basedir}/src/main/resources/ + + + schemas/security-config.xsd + bindings/schemas/exc-c14n.xsd + bindings/schemas/xmldsig-core-schema.xsd + bindings/schemas/xmldsig11-schema.xsd + bindings/schemas/xenc-schema.xsd + bindings/schemas/xenc-schema-11.xsd + bindings/schemas/rsa-pss.xsd + + ${basedir}/src/main/resources/bindings/ + + c14n.xjb + dsig.xjb + dsig11.xjb + xenc.xjb + xenc11.xjb + security-config.xjb + xop.xjb + rsa-pss.xjb + + ${basedir}/src/main/resources/bindings/bindings.cat + false + true + 3.0 + true + + false + + -npa + + + + + + + org.apache.maven.plugins + maven-release-plugin + + false + clean install + deploy + -Papache-release + true + + + + org.apache.maven.plugins + maven-source-plugin + + + + jar + + + + + true + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.5.0 + + + org.jacoco + jacoco-maven-plugin + 0.8.8 + + + + prepare-agent + + + + report + prepare-package + + report + + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.5.0 + + + + jar + + + + + 8 + true + org.apache.xml.security.binding.* + + + + org.codehaus.mojo + clirr-maven-plugin + ${clirr.version} + + ${minSeverity} + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.2.1 + + + + 3.5 + + + + + + + + + install + + + + + release + + + release + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + org.apache.maven.plugins + maven-source-plugin + + + + + + fastinstall + + true + true + + + + nochecks + + true + + + + jdk18 + + 1.8 + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + -Xdoclint:none + + + + + org.apache.maven.plugins + maven-compiler-plugin + + true + + -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/9+181-r4173-1/javac-9+181-r4173-1.jar + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0 + + brief + false + false + false + + **/*Test.java + + + **/PerformanceMemoryTest.java + **/PerformanceTimingTest.java + + + ${project.version} + + src/test/resources/log4j2.xml + file + SHA1PRNG + + + + + + + + + jdk19-plus + + [9,) + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + -Xdoclint:none + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0 + + brief + false + false + false + + **/*Test.java + + + **/PerformanceMemoryTest.java + **/PerformanceTimingTest.java + + -Xmx2000m --add-opens java.base/java.lang.reflect=ALL-UNNAMED + + ${project.version} + src/test/resources/log4j2.xml + + file + SHA1PRNG + + + + + + + + + + + + 2.0.7 + 2.7.2 + 5.9.2 + 2.20.0 + 1.72 + 2.2 + 2.9.1 + 1.15 + 6.5.0 + 9.4.51.v20230217 + 3.0.1 + 3.0.2 + + UTF-8 + 1.8 + 1.8 + 2.8 + + info + 2023-03-27T06:24:31Z + + + + + org.slf4j + slf4j-api + ${slf4j.version} + compile + + + jakarta.xml.bind + jakarta.xml.bind-api + ${xml.bind.api.version} + compile + + + com.sun.activation + jakarta.activation + + + + + commons-codec + commons-codec + ${commons.codec.version} + compile + + + com.fasterxml.woodstox + woodstox-core + ${woodstox.core.version} + runtime + + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j.version} + test + + + org.junit.jupiter + junit-jupiter-engine + ${junit.version} + test + + + org.junit.jupiter + junit-jupiter-params + ${junit.version} + test + + + org.xmlunit + xmlunit-core + ${xmlunit.version} + test + + + org.hamcrest + hamcrest-library + ${hamcrest.version} + test + + + org.xmlunit + xmlunit-matchers + ${xmlunit.version} + test + + + org.eclipse.jetty + jetty-server + ${jetty.version} + test + + + org.eclipse.jetty + jetty-servlet + ${jetty.version} + test + + + org.eclipse.jetty + jetty-servlets + ${jetty.version} + test + + + xalan + xalan + ${xalan.version} + test + + + org.bouncycastle + bcprov-jdk18on + ${bcprov.version} + test + + + org.glassfish.jaxb + jaxb-runtime + ${xml.bind.impl.version} + test + + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + false + + + + + + + org.codehaus.mojo + clirr-maven-plugin + ${clirr.version} + + ${minSeverity} + + + + + diff --git a/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom.sha1 b/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom.sha1 new file mode 100644 index 000000000..59da206ed --- /dev/null +++ b/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom.sha1 @@ -0,0 +1 @@ +b372678d35dab8db580c477158e1656b94043b01 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/_remote.repositories new file mode 100644 index 000000000..a3e3ed502 --- /dev/null +++ b/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:20 EDT 2024 +shiro-crypto-support-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom b/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom new file mode 100644 index 000000000..a1043714e --- /dev/null +++ b/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom @@ -0,0 +1,41 @@ + + + + + 4.0.0 + + + org.apache.shiro + shiro-crypto + 2.0.1 + + + org.apache.shiro.crypto + shiro-crypto-support + Apache Shiro :: Cryptography :: Support + pom + + + hashes/argon2 + hashes/bcrypt + + + + diff --git a/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom.sha1 new file mode 100644 index 000000000..2445de7b9 --- /dev/null +++ b/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom.sha1 @@ -0,0 +1 @@ +dd021926bc337ad7fa644073ebf3be62ac8d9694 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/_remote.repositories new file mode 100644 index 000000000..5e38332c9 --- /dev/null +++ b/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:20 EDT 2024 +shiro-hashes-argon2-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom b/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom new file mode 100644 index 000000000..6f540b913 --- /dev/null +++ b/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom @@ -0,0 +1,99 @@ + + + + + 4.0.0 + + + org.apache.shiro.crypto + shiro-crypto-support + 2.0.1 + ../../pom.xml + + + shiro-hashes-argon2 + Apache Shiro :: Cryptography :: Support :: Argon2 + + bundle + + hashes.argon2 + + + + + org.apache.shiro + shiro-crypto-hash + + + aopalliance + aopalliance + 1.0 + true + + + com.google.inject + guice + true + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.hashes.argon2 + org.apache.shiro.crypto.support.hashes.argon2*;version=${project.version} + + org.apache.shiro*;version="${shiro.osgi.importRange}", + org.aopalliance*;version="[1.0.0, 2.0.0)", + com.google.inject*;version="1.3", + * + + + osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)" + + + osgi.serviceloader; osgi.serviceloader=org.apache.shiro.crypto.hash.HashSpi + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom.sha1 new file mode 100644 index 000000000..7cd64d10c --- /dev/null +++ b/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom.sha1 @@ -0,0 +1 @@ +76374353b9833b07975718cd6d4cc804fc26d6c5 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/_remote.repositories new file mode 100644 index 000000000..af945137c --- /dev/null +++ b/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:20 EDT 2024 +shiro-hashes-bcrypt-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom b/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom new file mode 100644 index 000000000..e1fbdca54 --- /dev/null +++ b/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom @@ -0,0 +1,99 @@ + + + + + 4.0.0 + + + org.apache.shiro.crypto + shiro-crypto-support + 2.0.1 + ../../pom.xml + + + shiro-hashes-bcrypt + Apache Shiro :: Cryptography :: Support :: BCrypt + + bundle + + hashes.bcrypt + + + + + org.apache.shiro + shiro-crypto-hash + + + aopalliance + aopalliance + 1.0 + true + + + com.google.inject + guice + true + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.hashes.bcrypt + org.apache.shiro.crypto.support.hashes.bcrypt*;version=${project.version} + + org.apache.shiro*;version="${shiro.osgi.importRange}", + org.aopalliance*;version="[1.0.0, 2.0.0)", + com.google.inject*;version="1.3", + * + + + osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)" + + + osgi.serviceloader; osgi.serviceloader=org.apache.shiro.crypto.hash.HashSpi + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom.sha1 new file mode 100644 index 000000000..ea534a20d --- /dev/null +++ b/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom.sha1 @@ -0,0 +1 @@ +0d249f3423c0011be0de92b1e9eb20574140b4ab \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-cache/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-cache/1.13.0/_remote.repositories new file mode 100644 index 000000000..2e54143e8 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-cache/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +shiro-cache-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom new file mode 100644 index 000000000..9232a19ff --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom @@ -0,0 +1,60 @@ + + + + + + org.apache.shiro + shiro-root + 1.13.0 + + + 4.0.0 + shiro-cache + Apache Shiro :: Cache + bundle + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.cache + org.apache.shiro.cache*;version=${project.version} + + org.apache.shiro*;version="${shiro.osgi.importRange}", + * + + + + + + + + + + org.apache.shiro + shiro-lang + + + + diff --git a/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom.sha1 new file mode 100644 index 000000000..f6817386b --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom.sha1 @@ -0,0 +1 @@ +ef380e72f3d6da63ffd9d4c3e9ca783a3d888486 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-cache/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-cache/2.0.1/_remote.repositories new file mode 100644 index 000000000..e83e1b4f5 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-cache/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:19 EDT 2024 +shiro-cache-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom new file mode 100644 index 000000000..f3e7203bb --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom @@ -0,0 +1,65 @@ + + + + + + org.apache.shiro + shiro-root + 2.0.1 + + + 4.0.0 + shiro-cache + Apache Shiro :: Cache + bundle + + cache + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.cache + org.apache.shiro.cache*;version=${project.version} + + org.apache.shiro.lang*;version="${shiro.osgi.importRange}", + * + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + + + + + org.apache.shiro + shiro-lang + + + + diff --git a/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom.sha1 new file mode 100644 index 000000000..0602e3582 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom.sha1 @@ -0,0 +1 @@ +68569175cf4056d0b4faaf2875ae5751a7a5d55a \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/_remote.repositories new file mode 100644 index 000000000..e84baf6aa --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +shiro-config-core-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom new file mode 100644 index 000000000..e2bb3c9b4 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom @@ -0,0 +1,60 @@ + + + + + + org.apache.shiro + shiro-config + 1.13.0 + + + 4.0.0 + shiro-config-core + Apache Shiro :: Configuration :: Core + + bundle + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.config.core + org.apache.shiro.config*;version=${project.version} + + org.apache.shiro*;version="${shiro.osgi.importRange}", + * + + + + + + + + + + org.apache.shiro + shiro-lang + + + diff --git a/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom.sha1 new file mode 100644 index 000000000..947d334e6 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom.sha1 @@ -0,0 +1 @@ +78a935bd39f447206724b4695f3d6de102025f88 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/_remote.repositories new file mode 100644 index 000000000..f257b50a6 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:20 EDT 2024 +shiro-config-core-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom new file mode 100644 index 000000000..896fad3e3 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom @@ -0,0 +1,66 @@ + + + + + + org.apache.shiro + shiro-config + 2.0.1 + + + 4.0.0 + shiro-config-core + Apache Shiro :: Configuration :: Core + + bundle + + config.core + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.config.core + org.apache.shiro.config*;version=${project.version} + + org.apache.shiro.lang*;version="${shiro.osgi.importRange}", + * + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + + + + + org.apache.shiro + shiro-lang + + + + diff --git a/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom.sha1 new file mode 100644 index 000000000..06f1ed03f --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom.sha1 @@ -0,0 +1 @@ +3eb531f47aa46a65a2b41255db624a5c6c0cbf60 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/_remote.repositories new file mode 100644 index 000000000..b3bede15f --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +shiro-config-ogdl-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom new file mode 100644 index 000000000..3f77719c3 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom @@ -0,0 +1,105 @@ + + + + + + org.apache.shiro + shiro-config + 1.13.0 + + + 4.0.0 + shiro-config-ogdl + Apache Shiro :: Configuration :: OGDL + Support for Shiro's Object Graph Definition Language (mostly used in Ini configuration) where + declared name/value pairs are interpreted to create an object graph + bundle + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.config.ogdl + org.apache.shiro.config*;version=${project.version} + + org.apache.shiro*;version="${shiro.osgi.importRange}", + * + + + + + + + + + + org.apache.shiro + shiro-lang + + + org.apache.shiro + shiro-config-core + + + org.apache.shiro + shiro-event + + + commons-beanutils + commons-beanutils + + + + org.apache.commons + commons-configuration2 + true + + + + + org.slf4j + slf4j-api + + + org.slf4j + slf4j-simple + + + org.slf4j + jcl-over-slf4j + + + diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom.sha1 new file mode 100644 index 000000000..a08bb367d --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom.sha1 @@ -0,0 +1 @@ +8d3822101be8bde233a0229ea38224c54b652aec \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/_remote.repositories new file mode 100644 index 000000000..0946bc308 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:20 EDT 2024 +shiro-config-ogdl-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom new file mode 100644 index 000000000..a95cc3eae --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom @@ -0,0 +1,114 @@ + + + + + + org.apache.shiro + shiro-config + 2.0.1 + + + 4.0.0 + shiro-config-ogdl + Apache Shiro :: Configuration :: OGDL + Support for Shiro's Object Graph Definition Language (mostly used in Ini configuration) where + declared name/value pairs are interpreted to create an object graph + + bundle + + config.ogdl + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.config.ogdl + org.apache.shiro.config.ogdl.*;version=${project.version} + + org.apache.shiro.lang*;version="${shiro.osgi.importRange}", + org.apache.shiro.config*;version="${shiro.osgi.importRange}", + org.apache.shiro.event*;version="${shiro.osgi.importRange}", + * + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + + + + + org.apache.shiro + shiro-lang + + + org.apache.shiro + shiro-config-core + + + org.apache.shiro + shiro-event + + + commons-beanutils + commons-beanutils + + + + org.apache.commons + commons-configuration2 + true + + + + + org.slf4j + slf4j-api + + + org.slf4j + slf4j-simple + + + org.slf4j + jcl-over-slf4j + + + + diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom.sha1 new file mode 100644 index 000000000..c16501157 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom.sha1 @@ -0,0 +1 @@ +fb8b55f66a5511da90f4a6f5d5774f732116f163 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config/1.13.0/_remote.repositories new file mode 100644 index 000000000..1dfafaf69 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +shiro-config-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom new file mode 100644 index 000000000..b6d807c26 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom @@ -0,0 +1,40 @@ + + + + + 4.0.0 + + + org.apache.shiro + shiro-root + 1.13.0 + + + shiro-config + Apache Shiro :: Configuration + pom + + + core + ogdl + + + + diff --git a/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom.sha1 new file mode 100644 index 000000000..664ab09b3 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom.sha1 @@ -0,0 +1 @@ +f0519dd2fe7cd064ad6d519e28b57f1b60a4c680 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config/2.0.1/_remote.repositories new file mode 100644 index 000000000..79632e973 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:20 EDT 2024 +shiro-config-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom new file mode 100644 index 000000000..0bc7a0650 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom @@ -0,0 +1,40 @@ + + + + + 4.0.0 + + + org.apache.shiro + shiro-root + 2.0.1 + + + shiro-config + Apache Shiro :: Configuration + pom + + + core + ogdl + + + + diff --git a/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom.sha1 new file mode 100644 index 000000000..2715285e6 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom.sha1 @@ -0,0 +1 @@ +00d02189c4ba53342e497b4db8c63c268d5e4530 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-core/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-core/1.13.0/_remote.repositories new file mode 100644 index 000000000..1940a4111 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-core/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:23 EDT 2024 +shiro-core-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom new file mode 100644 index 000000000..fd691602c --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom @@ -0,0 +1,135 @@ + + + + + + org.apache.shiro + shiro-root + 1.13.0 + + + 4.0.0 + shiro-core + Apache Shiro :: Core + bundle + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.core + org.apache.shiro*;version=${project.version} + + org.apache.shiro*;version="${shiro.osgi.importRange}", + org.apache.commons.beanutils*;resolution:=optional, + org.apache.commons.configuration2*;resolution:=optional, + * + + + org.apache.shiro.* + + + + + + org.apache.maven.plugins + maven-shade-plugin + + + + + + + org.apache.shiro + shiro-lang + + + org.apache.shiro + shiro-cache + + + org.apache.shiro + shiro-crypto-hash + + + org.apache.shiro + shiro-crypto-cipher + + + org.apache.shiro + shiro-config-core + + + org.apache.shiro + shiro-config-ogdl + + + org.apache.shiro + shiro-event + + + + + org.slf4j + jcl-over-slf4j + + + org.apache.logging.log4j + log4j-slf4j-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + org.apache.logging.log4j + log4j-core + tests + test + + + + + org.hsqldb + hsqldb + jdk8 + test + + + + diff --git a/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom.sha1 new file mode 100644 index 000000000..1d405c190 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom.sha1 @@ -0,0 +1 @@ +8b6b096bc25e8c670a28845e5b17b7edc3e56845 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-core/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-core/2.0.1/_remote.repositories new file mode 100644 index 000000000..6070a0834 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-core/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:19 EDT 2024 +shiro-core-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom new file mode 100644 index 000000000..79f1dd979 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom @@ -0,0 +1,205 @@ + + + + + + org.apache.shiro + shiro-root + 2.0.1 + + + 4.0.0 + shiro-core + Apache Shiro :: Core + bundle + + core + + + + + + maven-compiler-plugin + + + + org.projectlombok + lombok + ${lombok.version} + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.core + + org.apache.shiro;version=${project.version}, + org.apache.shiro.aop;version=${project.version}, + org.apache.shiro.authc*;version=${project.version}, + org.apache.shiro.authz*;version=${project.version}, + org.apache.shiro.concurrent;version=${project.version}, + org.apache.shiro.dao;version=${project.version}, + org.apache.shiro.env;version=${project.version}, + org.apache.shiro.ini;version=${project.version}, + org.apache.shiro.jndi;version=${project.version}, + org.apache.shiro.ldap;version=${project.version}, + org.apache.shiro.mgt;version=${project.version}, + org.apache.shiro.realm*;version=${project.version}, + org.apache.shiro.session*;version=${project.version}, + org.apache.shiro.subject*;version=${project.version}, + org.apache.shiro.util;version=${project.version}, + + + org.apache.shiro.lang*;version="${shiro.osgi.importRange}", + org.apache.shiro.cache*;version="${shiro.osgi.importRange}", + org.apache.shiro.config*;version="${shiro.osgi.importRange}", + org.apache.shiro.crypto*;version="${shiro.osgi.importRange}", + org.apache.shiro.event*;version="${shiro.osgi.importRange}", + org.apache.commons.beanutils*;resolution:=optional, + org.apache.commons.configuration2*;resolution:=optional, + * + + + org.apache.shiro.* + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + org.apache.maven.plugins + maven-shade-plugin + + + + + + + org.apache.shiro + shiro-lang + + + org.apache.shiro + shiro-cache + + + org.apache.shiro + shiro-crypto-hash + + + org.apache.shiro.crypto + shiro-hashes-argon2 + runtime + + + org.apache.shiro.crypto + shiro-hashes-bcrypt + runtime + + + org.apache.shiro + shiro-crypto-cipher + + + org.apache.shiro + shiro-config-core + + + org.apache.shiro + shiro-config-ogdl + + + org.apache.shiro + shiro-event + + + jakarta.annotation + jakarta.annotation-api + ${jakarta.annotations.version} + provided + true + + + org.apache.commons + commons-configuration2 + true + + + + + org.slf4j + jcl-over-slf4j + + + org.apache.logging.log4j + log4j-slf4j2-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + org.apache.logging.log4j + log4j-core-test + test + + + org.mockito + mockito-junit-jupiter + ${mockito.version} + test + + + org.projectlombok + lombok + ${lombok.version} + provided + true + + + + + org.hsqldb + hsqldb + test + + + + diff --git a/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom.sha1 new file mode 100644 index 000000000..340f17327 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom.sha1 @@ -0,0 +1 @@ +26d854a49739a44d76942db2cbbd810327dc48d5 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/_remote.repositories new file mode 100644 index 000000000..76ac1f1a5 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +shiro-crypto-cipher-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom new file mode 100644 index 000000000..d54490506 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom @@ -0,0 +1,85 @@ + + + + + + org.apache.shiro + shiro-crypto + 1.13.0 + + + 4.0.0 + shiro-crypto-cipher + Apache Shiro :: Cryptography :: Ciphers + bundle + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.crypto.cipher + org.apache.shiro.crypto.*;version=${project.version} + + org.apache.shiro.crypto**;version="${shiro.osgi.importRange}", + * + + + + + + org.apache.maven.plugins + maven-shade-plugin + + + + + + + org.apache.shiro + shiro-lang + + + org.apache.shiro + shiro-crypto-core + + + + org.bouncycastle + bcprov-jdk18on + 1.76 + test + + + + org.apache.logging.log4j + log4j-slf4j-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom.sha1 new file mode 100644 index 000000000..f94ed0e41 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom.sha1 @@ -0,0 +1 @@ +2f089136e6dc484b2c51f527bb148d7d854f6adf \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/_remote.repositories new file mode 100644 index 000000000..b50574fee --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:20 EDT 2024 +shiro-crypto-cipher-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom new file mode 100644 index 000000000..5c5ff508d --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom @@ -0,0 +1,91 @@ + + + + + + org.apache.shiro + shiro-crypto + 2.0.1 + + + 4.0.0 + shiro-crypto-cipher + Apache Shiro :: Cryptography :: Ciphers + bundle + + crypto.cipher + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.crypto.cipher + org.apache.shiro.crypto.cipher.*;version=${project.version} + + org.apache.shiro.crypto*;version="${shiro.osgi.importRange}", + org.apache.shiro.lang*;version="${shiro.osgi.importRange}", + * + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + org.apache.maven.plugins + maven-shade-plugin + + + + + + + org.apache.shiro + shiro-lang + + + org.apache.shiro + shiro-crypto-core + + + + org.bouncycastle + bcprov-jdk18on + test + + + + org.apache.logging.log4j + log4j-slf4j2-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + + diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom.sha1 new file mode 100644 index 000000000..5a44b9c56 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom.sha1 @@ -0,0 +1 @@ +51e0e4efb7036196b3120d4282a1641adafa2a73 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/_remote.repositories new file mode 100644 index 000000000..5286fe9ce --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +shiro-crypto-core-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom new file mode 100644 index 000000000..4319f8a53 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom @@ -0,0 +1,59 @@ + + + + + + org.apache.shiro + shiro-crypto + 1.13.0 + + + 4.0.0 + shiro-crypto-core + Apache Shiro :: Cryptography :: Core + bundle + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.crypto.core + org.apache.shiro.crypto*;version=${project.version} + + org.apache.shiro.crypto*;version="${shiro.osgi.importRange}", + * + + + + + + + + + + org.apache.shiro + shiro-lang + + + diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom.sha1 new file mode 100644 index 000000000..287340b10 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom.sha1 @@ -0,0 +1 @@ +31b0f2fbd43e1c2932f73dc010eb4fbdc43700ff \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/_remote.repositories new file mode 100644 index 000000000..5eae914cc --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:19 EDT 2024 +shiro-crypto-core-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom new file mode 100644 index 000000000..b571254f9 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom @@ -0,0 +1,65 @@ + + + + + + org.apache.shiro + shiro-crypto + 2.0.1 + + + 4.0.0 + shiro-crypto-core + Apache Shiro :: Cryptography :: Core + bundle + + crypto.core + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.crypto.core + org.apache.shiro.crypto*;version=${project.version} + + org.apache.shiro.lang*;version="${shiro.osgi.importRange}", + * + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + + + + + org.apache.shiro + shiro-lang + + + + diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom.sha1 new file mode 100644 index 000000000..2fd62e59d --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom.sha1 @@ -0,0 +1 @@ +fa741bf30dc79ba7ae41c2636cfc5b0ba6811b91 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/_remote.repositories new file mode 100644 index 000000000..2fefecbea --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +shiro-crypto-hash-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom new file mode 100644 index 000000000..7d09c9731 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom @@ -0,0 +1,81 @@ + + + + + + org.apache.shiro + shiro-crypto + 1.13.0 + + + 4.0.0 + shiro-crypto-hash + Apache Shiro :: Cryptography :: Hashing + bundle + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.crypto.hash + org.apache.shiro.crypto.hash*;version=${project.version} + + org.apache.shiro.crypto.core*;version="${shiro.osgi.importRange}", + * + + + + + + + + + + org.apache.shiro + shiro-lang + + + org.apache.shiro + shiro-crypto-core + + + + org.bouncycastle + bcprov-jdk18on + 1.76 + test + + + + org.apache.logging.log4j + log4j-slf4j-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom.sha1 new file mode 100644 index 000000000..28991e4d2 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom.sha1 @@ -0,0 +1 @@ +f1171938bce80409caaa313ca0a0e1e7515b5b5e \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/_remote.repositories new file mode 100644 index 000000000..5b7de9b67 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:19 EDT 2024 +shiro-crypto-hash-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom new file mode 100644 index 000000000..fd38ecbf7 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom @@ -0,0 +1,94 @@ + + + + + + org.apache.shiro + shiro-crypto + 2.0.1 + + + 4.0.0 + shiro-crypto-hash + Apache Shiro :: Cryptography :: Hashing + bundle + + crypto.hash + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.crypto.hash + org.apache.shiro.crypto.hash*;version=${project.version} + + org.apache.shiro.crypto*;version="${shiro.osgi.importRange}", + org.apache.shiro.lang*;version="${shiro.osgi.importRange}", + * + + + osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)", + osgi.extender; filter:="(osgi.extender=osgi.serviceloader.processor)", + osgi.serviceloader; filter:="(osgi.serviceloader=org.apache.shiro.crypto.hash.HashSpi)"; cardinality:=multiple + + + osgi.serviceloader; osgi.serviceloader=org.apache.shiro.crypto.hash.HashSpi + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + + + + + org.apache.shiro + shiro-lang + + + org.apache.shiro + shiro-crypto-core + + + + org.bouncycastle + bcprov-jdk18on + + + + org.apache.logging.log4j + log4j-slf4j2-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + + diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom.sha1 new file mode 100644 index 000000000..6f53d3e9d --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom.sha1 @@ -0,0 +1 @@ +0e719db1f5ae61a6b7e8adb54aa9638ce5bea94d \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/_remote.repositories new file mode 100644 index 000000000..b6a9075e8 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +shiro-crypto-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom new file mode 100644 index 000000000..aeaddd82b --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom @@ -0,0 +1,41 @@ + + + + + 4.0.0 + + + org.apache.shiro + shiro-root + 1.13.0 + + + shiro-crypto + Apache Shiro :: Cryptography + pom + + + core + hash + cipher + + + + diff --git a/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom.sha1 new file mode 100644 index 000000000..6c3c0faf0 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom.sha1 @@ -0,0 +1 @@ +a438d4a409d1475e72cb36dd0c87934093c67e8e \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/_remote.repositories new file mode 100644 index 000000000..a0e52741f --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:19 EDT 2024 +shiro-crypto-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom new file mode 100644 index 000000000..528b9e4c2 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom @@ -0,0 +1,42 @@ + + + + + 4.0.0 + + + org.apache.shiro + shiro-root + 2.0.1 + + + shiro-crypto + Apache Shiro :: Cryptography + pom + + + core + hash + cipher + support + + + + diff --git a/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom.sha1 new file mode 100644 index 000000000..58743aa34 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom.sha1 @@ -0,0 +1 @@ +9078a811a9645545a351415347ac7cd5f6a1eef9 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-event/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-event/1.13.0/_remote.repositories new file mode 100644 index 000000000..b7e6a6096 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-event/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +shiro-event-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom new file mode 100644 index 000000000..7b85290c5 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom @@ -0,0 +1,60 @@ + + + + + + org.apache.shiro + shiro-root + 1.13.0 + + + 4.0.0 + shiro-event + Apache Shiro :: Event + bundle + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.event + org.apache.shiro.event*;version=${project.version} + + org.apache.shiro*;version="${shiro.osgi.importRange}", + * + + + + + + + + + + org.apache.shiro + shiro-lang + + + + diff --git a/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom.sha1 new file mode 100644 index 000000000..2f1973cad --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom.sha1 @@ -0,0 +1 @@ +78fd0b77849e567664a5da4e8c8723bd4ee9b418 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-event/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-event/2.0.1/_remote.repositories new file mode 100644 index 000000000..9a3fb6449 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-event/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:20 EDT 2024 +shiro-event-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom new file mode 100644 index 000000000..4d72823f8 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom @@ -0,0 +1,65 @@ + + + + + + org.apache.shiro + shiro-root + 2.0.1 + + + 4.0.0 + shiro-event + Apache Shiro :: Event + bundle + + event + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.event + org.apache.shiro.event*;version=${project.version} + + org.apache.shiro.lang*;version="${shiro.osgi.importRange}", + * + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + + + + + org.apache.shiro + shiro-lang + + + + diff --git a/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom.sha1 new file mode 100644 index 000000000..2e32f5578 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom.sha1 @@ -0,0 +1 @@ +0a14a4cba70cbf3d983ca9918735425effc9997b \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-lang/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-lang/1.13.0/_remote.repositories new file mode 100644 index 000000000..d8978c984 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-lang/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:23 EDT 2024 +shiro-lang-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom new file mode 100644 index 000000000..eb096758a --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom @@ -0,0 +1,79 @@ + + + + + + + org.apache.shiro + shiro-root + 1.13.0 + + + 4.0.0 + shiro-lang + Apache Shiro :: Lang + + The lang module encapsulates only language-specific utilities that are used by various + other modules. It exists to augment what we would have liked to see in the JDK but does not exist. + + bundle + + + + + + org.slf4j + slf4j-api + + + org.apache.logging.log4j + log4j-slf4j-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.lang + org.apache.shiro.*;version=${project.version} + + + org.apache.shiro*;version="${shiro.osgi.importRange}", + javax.servlet.jsp*;resolution:=optional, + * + + + + + + + + diff --git a/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom.sha1 new file mode 100644 index 000000000..2179ec946 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom.sha1 @@ -0,0 +1 @@ +301ebfcc2c7a641ba33c9b51bb3fb8c5e75a37c1 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-lang/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-lang/2.0.1/_remote.repositories new file mode 100644 index 000000000..d55552697 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-lang/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:19 EDT 2024 +shiro-lang-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom new file mode 100644 index 000000000..650860956 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom @@ -0,0 +1,88 @@ + + + + + + + org.apache.shiro + shiro-root + 2.0.1 + + + 4.0.0 + shiro-lang + Apache Shiro :: Lang + + The lang module encapsulates only language-specific utilities that are used by various + other modules. It exists to augment what we would have liked to see in the JDK but does not exist. + + bundle + + lang + + + + + + + org.slf4j + slf4j-api + + + org.apache.logging.log4j + log4j-slf4j2-impl + test + + + org.apache.logging.log4j + log4j-core + test + + + javax.servlet.jsp + jsp-api + true + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + org.apache.shiro.lang + org.apache.shiro.lang.*;version=${project.version} + + + javax.servlet.jsp*;resolution:=optional, + * + + <_removeheaders>Bnd-LastModified + <_reproducible>true + + + + + + + diff --git a/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom.sha1 new file mode 100644 index 000000000..5322478b9 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom.sha1 @@ -0,0 +1 @@ +e5d73bbce3cd621798adf121f129bb55e5fac74d \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-root/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-root/1.13.0/_remote.repositories new file mode 100644 index 000000000..7f1ba5d33 --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-root/1.13.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:23 EDT 2024 +shiro-root-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom new file mode 100644 index 000000000..ef426d9cf --- /dev/null +++ b/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom @@ -0,0 +1,1710 @@ + + + + 4.0.0 + + + + org.apache + apache + 30 + + + org.apache.shiro + shiro-root + pom + 1.13.0 + + Apache Shiro + https://shiro.apache.org/ + + Apache Shiro is a powerful and flexible open-source security framework that cleanly handles + authentication, authorization, enterprise session management, single sign-on and cryptography services. + + 2004 + + + scm:git:https://gitbox.apache.org/repos/asf/shiro.git + scm:git:https://gitbox.apache.org/repos/asf/shiro.git + https://github.com/apache/shiro/tree/${project.scm.tag} + shiro-root-1.13.0 + + + Jira + https://issues.apache.org/jira/browse/SHIRO + + + Jenkins + https://builds.apache.org/job/Shiro/ + + + + + shiro.website + Apache Shiro Site + scp://people.apache.org/www/shiro.apache.org/static/latest + + https://shiro.apache.org/download.html + + + + + 1.11.0 + + ${user.name}-${maven.build.timestamp} + 2023-10-31T08:22:45Z + true + false + + + [1.2, 2) + [1.1,2) + + + + 1.9.7 + 3.2.2 + 1.9.4 + 1.6.0 + 1.16.0 + 3.2.2 + 2.9.0 + 3.12.0 + 1.2 + + 2.6.11 + + 3.12.13 + 2.7.2 + 1.3.2 + 1.1.1 + 1.8 + 9.4.53.v20231009 + 1.2.3 + + 2.3.2 + 1.7.36 + 1.2.12 + 2.19.0 + 5.3.30 + 2.7.17 + 4.2.3 + 2.1.1 + 2.70.0 + + + 5.2.0 + 3.0.2 + 2.5.23 + 4.13.2 + 0.11.0 + 5.6.15.Final + 1.2.5 + + 2.0.9 + + ${jdk.version} + ${jdk.version} + + ${session.executionRootDirectory} + + + + + 3.5.0 + + + + lang + crypto + event + cache + config + core + web + support + tools + all + integration-tests + samples + test-coverage + bom + + + + + Apache Shiro Users Mailing List + user-subscribe@shiro.apache.org + user-unsubscribe@shiro.apache.org + user@shiro.apache.org + + + + + Apache Shiro Developers Mailing List + dev-subscribe@shiro.apache.org + dev-unsubscribe@shiro.apache.org + dev@shiro.apache.org + + + + + + + + + aditzel + Allan Ditzel + aditzel@apache.org + http://www.allanditzel.com + Apache Software Foundation + -5 + + + jhaile + Jeremy Haile + jhaile@apache.org + http://www.jeremyhaile.com + Mobilization Labs + http://www.mobilizationlabs.com + -5 + + + lhazlewood + Les Hazlewood + lhazlewood@apache.org + http://www.leshazlewood.com + Stormpath + https://www.stormpath.com + -8 + + + kaosko + Kalle Korhonen + kaosko@apache.org + https://www.tynamo.org + Apache Software Foundation + -8 + + + pledbrook + Peter Ledbrook + p.ledbrook@cacoethes.co.uk + https://www.cacoethes.co.uk/ + SpringSource + https://spring.io/ + 0 + + + tveil + Tim Veil + tveil@apache.org + + + bdemers + Brian Demers + bdemers@apache.org + https://stormpath.com/blog/author/bdemers + Stormpath + https://stormpath.com/ + -5 + + PMC Chair + + + + jbunting + Jared Bunting + jbunting@apache.org + Apache Software Foundation + -6 + + + fpapon + Francois Papon + fpapon@apache.org + Yupiik + https://www.yupiik.com/ + +4 + + + bmarwell + Benjamin Marwell + bmarwell@apache.org + Europe/Berlin + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.1 + + ${surefire.argLine} + kill + native + false + + + + org.apache.maven.plugins + maven-failsafe-plugin + 3.2.1 + + ${failsafe.argLine} + + + + org.apache.maven.plugins + maven-surefire-report-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.0 + + org.apache.shiro.samples.* + + + + org.apache.maven.plugins + maven-war-plugin + 3.4.0 + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + + + org.apache.maven.plugins + maven-site-plugin + 3.12.1 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.2.1 + + + org.apache.rat + apache-rat-plugin + 0.15 + + + + /**/src/it/projects/*/build.log + /**/src/it/projects/*/target/** + **/.externalToolBuilders/* + **/infinitest.filters + + velocity.log + CONTRIBUTING.md + README.md + **/*.json + **/spring.factories + **/spring.provides + **/*.iml + + + + + org.codehaus.mojo + versions-maven-plugin + 2.16.1 + + + + org.codehaus.gmavenplus + gmavenplus-plugin + ${gmaven.version} + + + org.codehaus.groovy + groovy + ${groovy.version} + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.4.0 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.6.1 + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + com.mycila + license-maven-plugin + 4.3 + + true +

]]> + + + + javadoc + package + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + source + package + + jar + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + jar + package + + test-jar + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 3.6.0 + + true + false + + ${assembly.dir}/cryptacular.xml + + + 0755 + + + + + assembly + package + + single + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.1 + + v@{project.version} + + + + + + + sign-artifacts + + + sign + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.1.0 + + + sign-artifacts + package + + sign + + + + + + + + + diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom.sha1 b/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom.sha1 new file mode 100644 index 000000000..0e9cda439 --- /dev/null +++ b/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom.sha1 @@ -0,0 +1 @@ +a6f81e6aa05c8a1057385af70fb55af8a8ab7301 \ No newline at end of file diff --git a/code/arachne/org/dbunit/dbunit/2.7.0/_remote.repositories b/code/arachne/org/dbunit/dbunit/2.7.0/_remote.repositories new file mode 100644 index 000000000..3353f260b --- /dev/null +++ b/code/arachne/org/dbunit/dbunit/2.7.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:58 EDT 2024 +dbunit-2.7.0.pom>central= diff --git a/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom b/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom new file mode 100644 index 000000000..68f82417a --- /dev/null +++ b/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom @@ -0,0 +1,1460 @@ + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + org.dbunit + dbunit + 2.7.0 + jar + dbUnit Extension + http://dbunit.sourceforge.net + 2002 + + dbUnit is a JUnit extension (also usable from Ant and Maven) targeted for database-driven projects that, among other things, puts your database into a known state between test runs. This is an excellent way to avoid the myriad of problems that can occur when one test case corrupts the database and causes subsequent tests to fail or exacerbate the damage. + + + + GNU Lesser General Public License, Version 2.1 + http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt + repo + + + + + + UTF-8 + UTF-8 + sourceforge + + + 1.8 + org/dbunit/util/concurrent/*.java + 3.0.4 + + + 3.1.0 + 2.3 + 2.12.1 + 2.17 + 3.0.0 + 3.7.0 + 2.8.2 + 1.4.1 + 2.21.0 + 1.6 + 2.5.2 + 0.8.3 + 0.14.3 + 3.0.2 + 2.0 + 3.0.0 + 2.5 + 3.8 + 2.9 + 1.0.0 + 2.5.3 + 3.0.2 + 3.7.1 + 3.0.1 + 2.21.0 + + + 1.7.0 + 1.6.5 + 3.2.2 + 2.5 + 2.0.1 + 1.3 + 1.4 + 4.12 + 1.2.3 + 1.12.0 + 0.09 + 3.17 + 1.7.25 + 2.6.2 + + + 10.4.1.3 + 1.1.118 + 1.8.0.1 + 5.1.6 + 19.3.0.0 + 42.2.5 + 7.2.1.jre8 + + + 2.10 + + + + scm:git:http://git.code.sf.net/p/dbunit/code.git + scm:git:https://git.code.sf.net/p/dbunit/code.git + http://sourceforge.net/p/dbunit/code.git/ci/master/tree/ + HEAD + + + SourceForge2 + http://sourceforge.net/p/dbunit/bugs/ + + + travisci + https://travis-ci.com/dbunit/dbunit-mirror + + + + + dbUnit User List + http://lists.sourceforge.net/lists/listinfo/dbunit-user + http://lists.sourceforge.net/lists/listinfo/dbunit-user + http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-user + + + dbUnit Developer List + http://lists.sourceforge.net/lists/listinfo/dbunit-developer + http://lists.sourceforge.net/lists/listinfo/dbunit-developer + http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-developer + + + dbUnit Commit List + http://lists.sourceforge.net/lists/listinfo/dbunit-commit + http://lists.sourceforge.net/lists/listinfo/dbunit-commit + http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-commit + + + + + + + + Jeff Jensen + jeffjensen + jeffjensen@users.sourceforge.net + + Java Developer (active) + + + + Andrew Landsverk + quantas + quantas@users.sourceforge.net + + Java Developer (active) + + + + Matthias Gommeringer + gommma + gommma@users.sourceforge.net + + Java Developer (inactive) + + + + John Hurst + jbhurst + jbhurst@users.sourceforge.net + + Java Developer (inactive) + + + + Roberto Lo Giacco + rlogiacco + rlogiacco@users.sourceforge.net + SmartLab + + Java Developer (inactive) + + + + Felipe Leme + felipeal + dbunit@felipeal.net + GoldenGate Software + -8 + + Java Developer (mostly inactive :-) + + + + David Eric Pugh + dep4b + epugh@opensourceconnections.com + OpenSource Connections + + Java Developer (inactive) + + + + Sebastien Le Callonnec + slecallonnec + slecallonnec@users.sourceforge.net + + Java Developer (inactive) + + + + Manuel Laflamme + mlaflamm + Oz Communication + + Project Founder (inactive) + + + + Benjamin Cox + bdrum + + Java Developer (inactive) + + + + Federico Spinazzi + fspinazzi + f.spinazzi@masterhouse.it + Master House S.r.l + + Java Developer (inactive) + + + + Timothy J. Ruppert + zieggy + + Java Developer (inactive) + + + + + + + Klas Axel + + HsqldbDataTypeFactory + + + + Erik Price + + DatabaseSequenceOperation + + + + Jeremy Stein + + InsertIndentityOperation + + + + Keven Kizer + + Early guinea pig + + + + Mike Bresnahan + + DbUnit evangelist + + + + Andres Almiray + aalmiray@users.sourceforge.net + + IDatabaseTester creator + + + + Darryl Pierce + mcpierceaim@users.sourceforge.net + + SQLServer uniqueidentifier column type + + + + Lorentz Aberg + lorentzforces@users.sourceforge.net + + Java developer + + + + + + + + + + + + + + + org.slf4j + slf4j-api + ${slf4jVersion} + + + org.slf4j + jcl-over-slf4j + ${slf4jVersion} + test + + + ch.qos.logback + logback-classic + ${logbackVersion} + test + + + + hsqldb + hsqldb + ${hsqldbDriverVersion} + test + + + junit + junit + ${junitVersion} + + + org.hamcrest + hamcrest-library + ${hamcrestVersion} + test + + + commons-collections + commons-collections + ${commonsCollectionsVersion} + + + ant + ant + ${antVersion} + true + + + org.apache.poi + poi + ${poiVersion} + + + log4j + log4j + + + commons-logging + commons-logging + + + true + + + org.apache.poi + poi-ooxml + ${poiVersion} + + + org.postgresql + postgresql + ${postgresqlDriverVersion} + + + + org.apache.ant + ant-testutil + ${antTestUtilVersion} + true + test + + + junit-addons + junit-addons + ${junitAddonsVersion} + test + + + mockobjects + mockobjects-core + ${mockObjectsVersion} + test + + + mockmaker + mmmockobjects + ${mmmockobjectsVersion} + test + + + + mockobjects + mockobjects-jdk1.3 + ${mockObjectsVersion} + test + + + com.h2database + h2 + ${h2DriverVersion} + + test + + + gsbase + gsbase + ${gsbaseVersion} + test + + + commons-io + commons-io + ${commonsIoVersion} + test + + + xerces + xmlParserAPIs + ${xmlParserAPIsVersion} + test + + + + + install + + + + org.apache.maven.plugins + maven-assembly-plugin + ${assemblyPluginVersion} + + + assembly.xml + + + + + org.apache.maven.plugins + maven-changelog-plugin + ${changelogPluginVersion} + + + org.apache.maven.plugins + maven-changes-plugin + ${changesPluginVersion} + + + check-changes + verify + + changes-check + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstylePluginVersion} + + + org.apache.maven.plugins + maven-clean-plugin + ${cleanPluginVersion} + + + org.apache.maven.plugins + maven-compiler-plugin + ${compilerPluginVersion} + + ${compileSource} + ${compileSource} + ${compileSource} + true + true + + + + org.apache.maven.plugins + maven-deploy-plugin + ${deployPluginVersion} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${enforcerPluginVersion} + + + enforce-versions + + enforce + + + + + + + + ${mavenVersion} + + + ${compileSource} + + + compile + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${failsafePluginVersion} + + true + UTF-8 + + + dbunit.profile + ${dbunit.profile} + + + dbunit.profile.driverClass + ${dbunit.profile.driverClass} + + + dbunit.profile.url + ${dbunit.profile.url} + + + dbunit.profile.schema + ${dbunit.profile.schema} + + + dbunit.profile.user + ${dbunit.profile.user} + + + dbunit.profile.password + ${dbunit.profile.password} + + + dbunit.profile.unsupportedFeatures + ${dbunit.profile.unsupportedFeatures} + + + dbunit.profile.ddl + ${dbunit.profile.ddl} + + + dbunit.profile.multiLineSupport + ${dbunit.profile.multiLineSupport} + + + + + + + integration-test + verify + + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${gpgPluginVersion} + + + org.apache.maven.plugins + maven-install-plugin + ${installPluginVersion} + + + org.jacoco + jacoco-maven-plugin + ${jacocoPluginVersion} + + + + prepare-agent + + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${jarPluginVersion} + + + /LICENSE.txt + ** + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadocPluginVersion} + + + -Xdoclint:none + none + + + + org.codehaus.mojo + jdepend-maven-plugin + ${jdependPluginVersion} + + + org.apache.maven.plugins + maven-jxr-plugin + ${jxrPluginVersion} + + + org.apache.maven.plugins + maven-pmd-plugin + ${pmdPluginVersion} + + + org.codehaus.mojo + properties-maven-plugin + ${propertiesPluginVersion} + + + validate + + read-project-properties + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${projectInfoReportsPluginVersion} + + + org.apache.maven.plugins + maven-release-plugin + ${releasePluginVersion} + + + org.apache.maven.plugins + maven-resources-plugin + ${resourcesPluginVersion} + + + org.apache.maven.plugins + maven-site-plugin + ${sitePluginVersion} + + + org.apache.maven.wagon + wagon-ssh + ${wagonSshVersion} + + + + + org.apache.maven.plugins + maven-source-plugin + ${sourcePluginVersion} + + + attach-sources + verify + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefirePluginVersion} + + true + + **/Abstract*.java + + + **/*Test.java + + + + dbunit.profile + ${dbunit.profile} + + + dbunit.profile.driverClass + ${dbunit.profile.driverClass} + + + dbunit.profile.url + ${dbunit.profile.url} + + + dbunit.profile.schema + ${dbunit.profile.schema} + + + dbunit.profile.user + ${dbunit.profile.user} + + + dbunit.profile.password + ${dbunit.profile.password} + + + dbunit.profile.unsupportedFeatures + ${dbunit.profile.unsupportedFeatures} + + + dbunit.profile.ddl + ${dbunit.profile.ddl} + + + dbunit.profile.multiLineSupport + ${dbunit.profile.multiLineSupport} + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + org.apache.maven.plugins + maven-failsafe-plugin + + + org.jacoco + jacoco-maven-plugin + + + org.apache.maven.plugins + maven-source-plugin + + + + + + + + org.jacoco + jacoco-maven-plugin + ${jacocoPluginVersion} + + + + + report + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${japicmpPluginVersion} + + + true + true + true + true + + + + + + 2.6.0-to-2.7.0 + + cmp-report + + + + 2.6.0-to-2.7.0 + + + + ${project.groupId} + ${project.artifactId} + 2.6.0 + jar + + + + + ${project.groupId} + ${project.artifactId} + 2.7.0 + jar + + + + + + 2.5.4-to-2.6.0 + + cmp-report + + + + 2.5.4-to-2.6.0 + + + + ${project.groupId} + ${project.artifactId} + 2.5.4 + jar + + + + + ${project.groupId} + ${project.artifactId} + 2.6.0 + jar + + + + + + 2.5.3-to-2.5.4 + + cmp-report + + + + 2.5.3-to-2.5.4 + + + + ${project.groupId} + ${project.artifactId} + 2.5.3 + jar + + + + + ${project.groupId} + ${project.artifactId} + 2.5.4 + jar + + + + + + 2.5.2-to-2.5.3 + + cmp-report + + + + 2.5.2-to-2.5.3 + + + + ${project.groupId} + ${project.artifactId} + 2.5.2 + jar + + + + + ${project.groupId} + ${project.artifactId} + 2.5.3 + jar + + + + + + 2.5.1-to-2.5.2 + + cmp-report + + + + 2.5.1-to-2.5.2 + + + + ${project.groupId} + ${project.artifactId} + 2.5.1 + jar + + + + + ${project.groupId} + ${project.artifactId} + 2.5.2 + jar + + + + + + 2.5.0-to-2.5.1 + + cmp-report + + + + 2.5.0-to-2.5.1 + + + + ${project.groupId} + ${project.artifactId} + 2.5.0 + jar + + + + + ${project.groupId} + ${project.artifactId} + 2.5.1 + jar + + + + + + 2.4.9-to-2.5.0 + + cmp-report + + + + 2.4.9-to-2.5.0 + + + + ${project.groupId} + ${project.artifactId} + 2.4.9 + jar + + + + + ${project.groupId} + ${project.artifactId} + 2.5.0 + jar + + + + + + 2.4.8-to-2.4.9 + + cmp-report + + + + 2.4.8-to-2.4.9 + + + + ${project.groupId} + ${project.artifactId} + 2.4.8 + jar + + + + + ${project.groupId} + ${project.artifactId} + 2.4.9 + jar + + + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${jxrPluginVersion} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefirePluginVersion} + + + tests + + report-only + + + + integration-tests + + failsafe-report-only + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${projectInfoReportsPluginVersion} + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstylePluginVersion} + + ${basedir}/checkstyle.xml + -Xmx512m -Xms128m + + + + org.apache.maven.plugins + maven-pmd-plugin + ${pmdPluginVersion} + + true + utf-8 + 100 + ${compileSource} + + + + org.codehaus.mojo + jdepend-maven-plugin + ${jdependPluginVersion} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadocPluginVersion} + + true + + + TODO + a + To do: + + + + -Xdoclint:none + none + + + + org.apache.maven.plugins + maven-changes-plugin + ${changesPluginVersion} + + localhost + 25 + If you are reading this, the maintainer forgot to describe what's the purpose of this release!!! + + dbunit-developer@lists.sourceforge.net + dbunit-user@lists.sourceforge.net + + http://dbunit.sourceforge.net/repos.html + + + + + + + + + + changes-report + + + + + + + + + + + sourceforge + scp://shell.sourceforge.net/home/project-web/dbunit/htdocs + + + + + + + it-config + + + + org.apache.maven.plugins + maven-surefire-plugin + + true + + + + + + + derby + + + + org.codehaus.mojo + properties-maven-plugin + + + file:///${basedir}/src/test/resources/derby-dbunit.properties + + + + + + + + org.apache.derby + derby + ${derbyDriverVersion} + test + + + com.oracle.ojdbc + ojdbc8 + ${oracle11DriverVersion} + true + + + + + hsqldb + + true + + + + + org.codehaus.mojo + properties-maven-plugin + + + file:///${basedir}/src/test/resources/hsqldb-dbunit.properties + + + + + + + + com.oracle.ojdbc + ojdbc8 + ${oracle11DriverVersion} + true + + + + + h2 + + + + org.codehaus.mojo + properties-maven-plugin + + + file:///${basedir}/src/test/resources/h2-dbunit.properties + + + + + + + + com.h2database + h2 + ${h2DriverVersion} + + + com.oracle.ojdbc + ojdbc8 + ${oracle11DriverVersion} + true + + + + + + oracle-default + + true + + + + com.oracle.ojdbc + ojdbc8 + ${oracle11DriverVersion} + true + + + + + + oracle-ojdbc8 + + + + org.codehaus.mojo + properties-maven-plugin + + + file:///${basedir}/src/test/resources/oracle-dbunit.properties + + + + + + + + com.oracle.ojdbc + ojdbc8 + ${oracle11DriverVersion} + true + + + com.oracle.ojdbc + xdb + ${oracle11DriverVersion} + true + + + + + + oracle10-ojdbc8 + + + + org.codehaus.mojo + properties-maven-plugin + + + file:///${basedir}/src/test/resources/oracle10-dbunit.properties + + + + + + + + com.oracle.ojdbc + ojdbc8 + ${oracle11DriverVersion} + true + + + com.oracle.ojdbc + xdb + ${oracle11DriverVersion} + true + + + + + postgresql + + + + org.codehaus.mojo + properties-maven-plugin + + + file:///${basedir}/src/test/resources/postgresql-dbunit.properties + + + + + + + + org.postgresql + postgresql + ${postgresqlDriverVersion} + + + com.oracle.ojdbc + ojdbc8 + ${oracle11DriverVersion} + true + + + + + mysql + + + + org.codehaus.mojo + properties-maven-plugin + + + file:///${basedir}/src/test/resources/mysql-dbunit.properties + + + + + + + + mysql + mysql-connector-java + ${mysqlDriverVersion} + + + com.oracle.ojdbc + ojdbc8 + ${oracle11DriverVersion} + true + + + + + mssql41 + + + + org.codehaus.mojo + properties-maven-plugin + + + file:///${basedir}/src/test/resources/mssql41-dbunit.properties + + + + + + + + com.microsoft.sqlserver + mssql-jdbc + ${sqlServer41DriverVersion} + + + com.oracle.ojdbc + ojdbc8 + ${oracle11DriverVersion} + true + + + + + db2 + + + + org.codehaus.mojo + properties-maven-plugin + + + file:///${basedir}/src/test/resources/db2-dbunit.properties + + + + + + + + + com.oracle.ojdbc + ojdbc8 + ${oracle11DriverVersion} + true + + + + + diff --git a/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom.sha1 b/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom.sha1 new file mode 100644 index 000000000..7ab86e194 --- /dev/null +++ b/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom.sha1 @@ -0,0 +1 @@ +15ee8e00f7d5af127c9cc886368473fddc549318 \ No newline at end of file diff --git a/code/arachne/org/dom4j/dom4j/2.1.3/_remote.repositories b/code/arachne/org/dom4j/dom4j/2.1.3/_remote.repositories new file mode 100644 index 000000000..fcd7e4f15 --- /dev/null +++ b/code/arachne/org/dom4j/dom4j/2.1.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:13 EDT 2024 +dom4j-2.1.3.pom>central= diff --git a/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom b/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom new file mode 100644 index 000000000..a7f9a0b54 --- /dev/null +++ b/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom @@ -0,0 +1,77 @@ + + + + + + + + 4.0.0 + org.dom4j + dom4j + 2.1.3 + dom4j + flexible XML framework for Java + http://dom4j.github.io/ + + + BSD 3-clause New License + https://github.com/dom4j/dom4j/blob/master/LICENSE + + + + + Filip Jirsák + filip@jirsak.org + https://github.com/FilipJirsak + + + + scm:git:git@github.com:dom4j/dom4j.git + scm:git:git@github.com:dom4j/dom4j.git + git@github.com:dom4j/dom4j.git + + + + jaxen + jaxen + 1.1.6 + runtime + true + + + javax.xml.stream + stax-api + 1.0-2 + runtime + true + + + net.java.dev.msv + xsdlib + 2013.6.1 + runtime + true + + + javax.xml.bind + jaxb-api + 2.2.12 + runtime + true + + + pull-parser + pull-parser + 2 + runtime + true + + + xpp3 + xpp3 + 1.1.4c + runtime + true + + + diff --git a/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom.sha1 b/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom.sha1 new file mode 100644 index 000000000..4636449ec --- /dev/null +++ b/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom.sha1 @@ -0,0 +1 @@ +012854caa63db09d82bf973bc37d7226aaaef463 \ No newline at end of file diff --git a/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/_remote.repositories b/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/_remote.repositories new file mode 100644 index 000000000..fc5c1f8df --- /dev/null +++ b/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:02 EDT 2024 +angus-activation-project-2.0.2.pom>central= diff --git a/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom b/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom new file mode 100644 index 000000000..4adcd5a50 --- /dev/null +++ b/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom @@ -0,0 +1,496 @@ + + + + + + org.eclipse.ee4j + project + 1.0.9 + + + 4.0.0 + org.eclipse.angus + angus-activation-project + pom + 2.0.2 + Angus Activation Project + ${project.name} + https://github.com/eclipse-ee4j/angus-activation + + + 2.1 + Jakarta Activation Specification + 2.1.3 + ${project.version} + 23.1.2 + + 11 + Angus Activation API documentation + Angus Activation v${angus-activation.version}]]> + angus-dev@eclipse.org.
+Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.]]> + + etc/copyright-exclude + false + true + false + false + Low + etc/spotbugs-exclude.xml + 4.8.3.1 + UTF-8 + 2024-02-14T00:00:00Z + + + + scm:git:ssh://git@github.com/eclipse/angus-activation.git + scm:git:ssh://git@github.com/eclipse/angus-activation.git + https://github.com/eclipse-ee4j/angus-activation + HEAD + + + + github + https://github.com/eclipse-ee4j/angus-activation/issues/ + + + + + EDL 1.0 + http://www.eclipse.org/org/documents/edl-v10.php + repo + + + + + + shannon + Bill Shannon + bill.shannon@oracle.com + Oracle + + lead + + + + + + + + oracle.com + file:/tmp + + + + + activation-registry + + + + + + jakarta.activation + jakarta.activation-api + ${activation-api.version} + + + + org.eclipse.angus + angus-activation + ${project.version} + + + + org.graalvm.sdk + graal-sdk + ${graal.sdk.version} + + + org.graalvm.polyglot + polyglot + ${graal.sdk.version} + + + org.graalvm.sdk + nativeimage + ${graal.sdk.version} + + + org.graalvm.sdk + word + ${graal.sdk.version} + + + org.graalvm.sdk + collections + ${graal.sdk.version} + + + + + + + install + + + + + org.apache.maven.plugins + maven-resources-plugin + 3.3.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.12.1 + + + org.codehaus.mojo + buildnumber-maven-plugin + 3.0.0 + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + + + <_noextraheaders>true + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + org.codehaus.mojo + build-helper-maven-plugin + 3.4.0 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.6.0 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.6.1 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + ${spotbugs.skip} + ${spotbugs.threshold} + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.4.1 + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + + org.apache.maven.plugins + maven-antrun-plugin + 3.1.0 + + + org.apache.ant + ant + 1.10.14 + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.5.0 + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-version + + enforce + + + + + [3.6.3,) + + + [11,) + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 9 + + -Xlint:all + + true + false + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + validate + + create + + + true + 7 + false + + + + + + org.apache.felix + maven-bundle-plugin + + true + + ${project.artifactId} + ${spec.title} + ${spec.version} + ${project.organization.name} + ${project.groupId} + ${project.name} + ${project.organization.name} + ${scmBranch}-${buildNumber} + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + false + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + currentyear-property + + timestamp-property + + validate + + current.year + en,US + yyyy + + + + add-source + generate-sources + + add-source + + + + + ${project.build.directory}/generated-sources/sources + + + + + + add-resource + generate-resources + + add-resource + + + + + ${project.basedir}/../ + META-INF + + LICENSE.md + NOTICE.md + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + ${angus-activation.javadoc.source} + false + ${angus-activation.javadoc.title} + ${angus-activation.javadoc.title} + ${angus-activation.javadoc.title} + true + true + true + true + true +
${angus-activation.javadoc.header}
+ ${angus-activation.javadoc.bottom} + + true + false +
+
+ + org.glassfish.copyright + glassfish-copyright-maven-plugin + + ${copyright.exclude} + + ${copyright.scmonly} + + ${copyright.update} + + ${copyright.ignoreyear} + false + + + + com.github.spotbugs + spotbugs-maven-plugin + + true + ${spotbugs.exclude} + High + + +
+ +
+ + + + + build-only + + demo + docs + + + true + + + + + oss-release + + + + diff --git a/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom.sha1 b/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom.sha1 new file mode 100644 index 000000000..e68fa64b8 --- /dev/null +++ b/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom.sha1 @@ -0,0 +1 @@ +94be80476a7ca9a1b9ca1357be5823829a2bb328 \ No newline at end of file diff --git a/code/arachne/org/eclipse/angus/angus-activation/2.0.2/_remote.repositories b/code/arachne/org/eclipse/angus/angus-activation/2.0.2/_remote.repositories new file mode 100644 index 000000000..da4ea9975 --- /dev/null +++ b/code/arachne/org/eclipse/angus/angus-activation/2.0.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:02 EDT 2024 +angus-activation-2.0.2.pom>central= diff --git a/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom b/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom new file mode 100644 index 000000000..66cec8468 --- /dev/null +++ b/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom @@ -0,0 +1,108 @@ + + + + + + + org.eclipse.angus + angus-activation-project + 2.0.2 + ../pom.xml + + + 4.0.0 + angus-activation + Angus Activation Registries + ${project.name} Implementation + + + + jakarta.activation + jakarta.activation-api + + + org.graalvm.sdk + graal-sdk + true + provided + + + + + + + org.apache.felix + maven-bundle-plugin + + + =1.0.0)(!(version>=2.0.0)))";resolution:=optional + ]]> + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + + + + + coverage + + + + org.jacoco + jacoco-maven-plugin + + + default-prepare-agent + + prepare-agent + + + + default-report + + report + + + + + + + + + + diff --git a/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom.sha1 b/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom.sha1 new file mode 100644 index 000000000..fb5cb2ad2 --- /dev/null +++ b/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom.sha1 @@ -0,0 +1 @@ +7e58bd2f7b207783653d04efc9d2db4cb4ac884c \ No newline at end of file diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/_remote.repositories b/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/_remote.repositories new file mode 100644 index 000000000..6fec6c004 --- /dev/null +++ b/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:18 EDT 2024 +eclipse-collections-api-8.0.0.pom>central= diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom b/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom new file mode 100644 index 000000000..9d4406c70 --- /dev/null +++ b/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom @@ -0,0 +1,171 @@ + + + + + + + 4.0.0 + + + eclipse-collections-parent + org.eclipse.collections + 8.0.0 + + + eclipse-collections-api + bundle + + Eclipse Collections API + + + + + + + net.jcip + jcip-annotations + + + + + + + + + + org.eclipse.collections + eclipse-collections-code-generator-maven-plugin + ${project.version} + + + generate-sources + + generate + + + api + + + + + + + maven-surefire-plugin + + + + maven-source-plugin + + + + org.apache.felix + maven-bundle-plugin + + + org.eclipse.collections.api + JavaSE-1.8 + + net.jcip.annotations;resolution:=optional,* + + ${project.version} + + + + + + org.codehaus.mojo + sonar-maven-plugin + + + + maven-checkstyle-plugin + + + + org.codehaus.mojo + findbugs-maven-plugin + + + + maven-javadoc-plugin + + Eclipse Collections API - ${project.version} + Eclipse Collections API - ${project.version} + public + + https://docs.oracle.com/javase/8/docs/api/ + + ${project.version} + -Xdoclint:none + + + + + maven-enforcer-plugin + + + + org.codehaus.mojo + clirr-maven-plugin + + + + org.eclipse.collections + eclipse-collections-api + ${project.previous.version} + + + ${project.build.directory}/clirr.txt + + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.eclipse.collections + + + eclipse-collections-code-generator-maven-plugin + + + [7.1.0-SNAPSHOT,) + + + generate + + + + + + + + + + + + + + diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom.sha1 b/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom.sha1 new file mode 100644 index 000000000..6d3f6a2ec --- /dev/null +++ b/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom.sha1 @@ -0,0 +1 @@ +e47796ff1f370326a7ceaa1ab17f4dd28596ec3a \ No newline at end of file diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/_remote.repositories b/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/_remote.repositories new file mode 100644 index 000000000..89b3994c0 --- /dev/null +++ b/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:18 EDT 2024 +eclipse-collections-parent-8.0.0.pom>central= diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom b/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom new file mode 100644 index 000000000..d6f9f3a43 --- /dev/null +++ b/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom @@ -0,0 +1,657 @@ + + + + + + 4.0.0 + + org.eclipse.collections + eclipse-collections-parent + 8.0.0 + + pom + + Eclipse Collections Parent Project + + Eclipse Collections is a collections framework for Java. It has JDK-compatible List, Set and Map + implementations with a rich API and set of utility classes that work with any JDK compatible Collections, + Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework. + + + https://github.com/eclipse/eclipse-collections + + 2004 + + + + Eclipse Public License - v 1.0 + https://www.eclipse.org/legal/epl-v10.html + repo + + + Eclipse Distribution License - v 1.0 + https://www.eclipse.org/licenses/edl-v10.html + repo + + + + + https://github.com/eclipse/eclipse-collections + scm:git:https://github.com/eclipse/eclipse-collections.git + scm:git:https://github.com/eclipse/eclipse-collections.git + + + + GitHub + https://github.com/eclipse/eclipse-collections/issues + + + + Travis CI + https://travis-ci.org/eclipse/eclipse-collections + + + + + collections-dev + https://dev.eclipse.org/mailman/listinfo/collections-dev + https://dev.eclipse.org/mailman/listinfo/collections-dev + collections-dev@eclipse.org + https://dev.eclipse.org/mhonarc/lists/collections-dev + + + + + + Craig P. Motlin + craig.motlin@gs.com + + + + Donald Raab + donald.raab@gs.com + + + + Mohammad A. Rezaei + mohammad.rezaei@gs.com + + + + Hiroshi Ito + hiroshi.ito@gs.com + + + + + eclipse-collections-code-generator + eclipse-collections-code-generator-ant + eclipse-collections-code-generator-maven-plugin + eclipse-collections-api + eclipse-collections + eclipse-collections-testutils + eclipse-collections-forkjoin + unit-tests + scala-unit-tests + serialization-tests + jmh-scala-tests + jmh-tests + junit-trait-runner + unit-tests-java8 + + + + UTF-8 + + 1.7.14 + 4.0.6 + 2.11.7 + 19.0 + 3.0.3 + 6.15 + 2.17 + 3.0.3 + + 1.8 + 1.8 + true + true + 2048m + 2048m + + + java + reuseReports + clover + ${clover.version} + 7.0.0 + + + + + + + junit + junit + 4.12 + test + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + + org.slf4j + slf4j-nop + ${slf4j.version} + test + + + + org.slf4j + slf4j-simple + ${slf4j.version} + + + + org.scala-lang + scala-library + ${scala.version} + + + + net.jcip + jcip-annotations + 1.0 + true + + + + + + + + + + + maven-antrun-plugin + 1.8 + + + + maven-assembly-plugin + 2.6 + + + + maven-clean-plugin + 2.6.1 + + + + maven-compiler-plugin + 3.3 + + + + maven-dependency-plugin + 2.10 + + + + maven-deploy-plugin + 2.8.2 + + + + maven-install-plugin + 2.5.2 + + + + maven-jar-plugin + 2.6 + + + + maven-javadoc-plugin + 2.10.3 + + + + maven-release-plugin + 3.0-r1585899 + + + + maven-resources-plugin + 2.7 + + + + maven-site-plugin + 3.4 + + + + maven-source-plugin + 2.4 + + + verify + + jar-no-fork + + + + + + + maven-enforcer-plugin + 1.4.1 + + + enforce + + + + + 1.8.0 + + + 3.1.0 + + + + org.eclipse.collections:eclipse-collections-code-generator-maven-plugin + + + + + + enforce + + + + + + + org.codehaus.mojo + versions-maven-plugin + 2.2 + + + + org.codehaus.mojo + clirr-maven-plugin + 2.7 + + + + org.apache.felix + maven-bundle-plugin + 3.0.1 + true + + + + net.alchim31.maven + scala-maven-plugin + 3.2.2 + + ${scala.version} + + + + + compile + testCompile + + + + + + + maven-surefire-plugin + 2.19 + + + **/*Test.java + + -XX:-OmitStackTraceInFastThrow + random + 0 + + + + + maven-project-info-reports-plugin + 2.8.1 + + + + org.codehaus.mojo + sonar-maven-plugin + 2.7.1 + + + + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + checkstyle-configuration.xml + true + true + ${basedir}/target/checkstyleCache + checkstyle-suppressions.xml + + + + com.puppycrawl.tools + checkstyle + ${checkstyle.version} + + + + + + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.plugin.version} + + Max + Default + true + true + findbugs-exclude.xml + + + + + + + + + org.codehaus.mojo + sonar-maven-plugin + + + + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + checkstyle-configuration.xml + true + true + + + + com.puppycrawl.tools + checkstyle + 6.10.1 + + + + + + maven-javadoc-plugin + + Eclipse Collections - ${project.version} + Eclipse Collections - ${project.version} + public + + https://docs.oracle.com/javase/8/docs/api/ + http://junit.sourceforge.net/javadoc/ + + ${project.version} + -Xdoclint:none + + + + + maven-enforcer-plugin + + + + org.codehaus.mojo + versions-maven-plugin + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + + + + + + + + maven-jxr-plugin + 2.5 + + + + maven-surefire-report-plugin + 2.19 + + + + maven-javadoc-plugin + 2.10.3 + + Eclipse Collections - ${project.version} + Eclipse Collections - ${project.version} + public + + https://docs.oracle.com/javase/8/docs/api/ + http://junit.sourceforge.net/javadoc/ + + -Xdoclint:none + + + + + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + checkstyle-configuration.xml + true + true + + + + + org.codehaus.mojo + versions-maven-plugin + 2.2 + + + + dependency-updates-report + plugin-updates-report + property-updates-report + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.plugin.version} + + Max + Default + true + true + findbugs-exclude.xml + + + + + + + + + + clover-optimize + + + + com.atlassian.maven.plugins + maven-clover2-plugin + ${clover.version} + + + setup + process-sources + + setup + + + + other + + optimize + snapshot + log + + + + + + + + + + all + + + eclipse-collections-code-generator + eclipse-collections-code-generator-ant + eclipse-collections-code-generator-maven-plugin + eclipse-collections-api + eclipse-collections + eclipse-collections-testutils + eclipse-collections-forkjoin + unit-tests + scala-unit-tests + serialization-tests + acceptance-tests + performance-tests + jmh-scala-tests + jmh-tests + + + + + clover + + + eclipse-collections-code-generator + eclipse-collections-code-generator-ant + eclipse-collections-code-generator-maven-plugin + eclipse-collections-api + eclipse-collections + eclipse-collections-testutils + unit-tests + scala-unit-tests + serialization-tests + acceptance-tests + + + + + + com.atlassian.maven.plugins + maven-clover2-plugin + ${clover.version} + + ${clover.license} + @deprecated + true + ${user.home}/clover/${project.artifactId} + true + block + + **/FileUtils.java + **/GenerateMojo.java + **/EclipseCollectionsCodeGenerator.java + **/EclipseCollectionsCodeGeneratorTask.java + **/Primitive.java + **/IntegerOrStringRenderer.java + **/jmh/**/*.java + + + + + setup + process-test-sources + + setup + + + + + + + + + + + release-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom.sha1 b/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom.sha1 new file mode 100644 index 000000000..5d401cee1 --- /dev/null +++ b/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom.sha1 @@ -0,0 +1 @@ +48c16accc9a7a7fcbe925c239b8a096815464834 \ No newline at end of file diff --git a/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/_remote.repositories b/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/_remote.repositories new file mode 100644 index 000000000..acd1e7c20 --- /dev/null +++ b/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:18 EDT 2024 +eclipse-collections-8.0.0.pom>central= diff --git a/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom b/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom new file mode 100644 index 000000000..7169e4cad --- /dev/null +++ b/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom @@ -0,0 +1,177 @@ + + + + + + + + eclipse-collections-parent + org.eclipse.collections + 8.0.0 + + + 4.0.0 + + eclipse-collections + bundle + + Eclipse Collections Main Library + + + + + org.eclipse.collections + eclipse-collections-api + ${project.version} + + + + + + net.jcip + jcip-annotations + + + + + + + + + + org.eclipse.collections + eclipse-collections-code-generator-maven-plugin + ${project.version} + + + generate-sources + + generate + + + impl + + + + + + + maven-surefire-plugin + + + + maven-source-plugin + + + + org.apache.felix + maven-bundle-plugin + + + org.eclipse.collections.impl + JavaSE-1.8 + + net.jcip.annotations;resolution:=optional,* + + ${project.version} + + + + + + org.codehaus.mojo + sonar-maven-plugin + + + + maven-checkstyle-plugin + + + + org.codehaus.mojo + findbugs-maven-plugin + + + + maven-javadoc-plugin + + Eclipse Collections - ${project.version} + Eclipse Collections - ${project.version} + public + + https://docs.oracle.com/javase/8/docs/api/ + + ${project.version} + -Xdoclint:none + + + + + maven-enforcer-plugin + + + + org.codehaus.mojo + clirr-maven-plugin + + + + org.eclipse.collections + eclipse-collections + ${project.previous.version} + + + ${project.build.directory}/clirr.txt + + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.eclipse.collections + + + eclipse-collections-code-generator-maven-plugin + + + [7.1.0-SNAPSHOT,) + + + generate + + + + + + + + + + + + + + diff --git a/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom.sha1 b/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom.sha1 new file mode 100644 index 000000000..338fa6308 --- /dev/null +++ b/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom.sha1 @@ -0,0 +1 @@ +3b47d513e064ec039e7749c7dbe62bbb69ebd2c7 \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.5/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0.5/_remote.repositories new file mode 100644 index 000000000..b8e215191 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:58 EDT 2024 +project-1.0.5.pom>central= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom b/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom new file mode 100644 index 000000000..302d108b4 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom @@ -0,0 +1,311 @@ + + + + + 4.0.0 + org.eclipse.ee4j + project + 1.0.5 + pom + + EE4J Project + https://projects.eclipse.org/projects/ee4j + + Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, + implementations of those APIs, and technology compatibility kits for Java runtimes + that enable development, deployment, and management of server-side and cloud-native applications. + + + + Eclipse Foundation + https://www.eclipse.org + + 2017 + + + + eclipseee4j + Eclipse EE4J Developers + Eclipse Foundation + ee4j-pmc@eclipse.org + + + + + + Eclipse Public License v. 2.0 + https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://www.gnu.org/software/classpath/license.html + repo + + + + + GitHub Issues + https://github.com/eclipse-ee4j/ee4j/issues + + + + scm:git:git@github.com:eclipse-ee4j/ee4j.git + scm:git:git@github.com:eclipse-ee4j/ee4j.git + https://github.com/eclipse-ee4j/ee4j + + + + + Community discussions + jakarta.ee-community@eclipse.org + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ + + http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss + + + + PMC discussions + ee4j-pmc@eclipse.org + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ + + http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss + + + + + + + ossrh + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + ossrh + Sonatype Nexus Releases + ${sonatypeOssDistMgmtReleasesUrl} + + + + + https://oss.sonatype.org/content/repositories/snapshots/ + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + UTF-8 + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + forked-path + false + -Poss-release ${release.arguments} + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + + ossrh + https://oss.sonatype.org/ + false + + ${maven.deploy.skip} + + + + + + + + + + oss-release + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [3.0.4,) + Maven 3.0 through 3.0.3 inclusive does not pass + correct settings.xml to Maven Release Plugin. + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + 1.6 + + + --pinentry-mode + loopback + + + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + true + + + + + + + + snapshots + + false + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + + staging + + false + + + + sonatype-nexus-staging + Sonatype Nexus Staging + https://oss.sonatype.org/content/repositories/staging + + true + + + false + + + + + + sonatype-nexus-staging + Sonatype Nexus Staging + https://oss.sonatype.org/content/repositories/staging + + true + + + false + + + + + + diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom.sha1 new file mode 100644 index 000000000..319faa79e --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom.sha1 @@ -0,0 +1 @@ +d391c5ed15d8fb1dadba9c5d1017006d56c50332 \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.6/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0.6/_remote.repositories new file mode 100644 index 000000000..574695308 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:56 EDT 2024 +project-1.0.6.pom>central= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom b/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom new file mode 100644 index 000000000..eb7064a51 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom @@ -0,0 +1,313 @@ + + + + + 4.0.0 + org.eclipse.ee4j + project + 1.0.6 + pom + + EE4J Project + https://projects.eclipse.org/projects/ee4j + + Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, + implementations of those APIs, and technology compatibility kits for Java runtimes + that enable development, deployment, and management of server-side and cloud-native applications. + + + + Eclipse Foundation + https://www.eclipse.org + + 2017 + + + + eclipseee4j + Eclipse EE4J Developers + Eclipse Foundation + ee4j-pmc@eclipse.org + + + + + + Eclipse Public License v. 2.0 + https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://www.gnu.org/software/classpath/license.html + repo + + + + + GitHub Issues + https://github.com/eclipse-ee4j/ee4j/issues + + + + scm:git:git@github.com:eclipse-ee4j/ee4j.git + scm:git:git@github.com:eclipse-ee4j/ee4j.git + https://github.com/eclipse-ee4j/ee4j + + + + + Community discussions + jakarta.ee-community@eclipse.org + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ + + http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss + + + + PMC discussions + ee4j-pmc@eclipse.org + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ + + http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss + + + + + + https://jakarta.oss.sonatype.org/ + ${sonatypeOssDistMgmtNexusUrl}content/repositories/snapshots/ + ${sonatypeOssDistMgmtNexusUrl}content/repositories/staging/ + ${sonatypeOssDistMgmtNexusUrl}service/local/staging/deploy/maven2/ + UTF-8 + + + + + + + ossrh + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + ossrh + Sonatype Nexus Releases + ${sonatypeOssDistMgmtReleasesUrl} + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + forked-path + false + -Poss-release ${release.arguments} + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + + ossrh + ${sonatypeOssDistMgmtNexusUrl} + false + + ${maven.deploy.skip} + + + + + + + + + + oss-release + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [3.0.4,) + Maven 3.0 through 3.0.3 inclusive does not pass + correct settings.xml to Maven Release Plugin. + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + 1.6 + + + --pinentry-mode + loopback + + + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + true + + + + + + + + snapshots + + false + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + false + + + true + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + false + + + true + + + + + + + + staging + + false + + + + sonatype-nexus-staging + Sonatype Nexus Staging + ${sonatypeOssDistMgmtStagingUrl} + + true + + + false + + + + + + sonatype-nexus-staging + Sonatype Nexus Staging + ${sonatypeOssDistMgmtStagingUrl} + + true + + + false + + + + + + diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom.sha1 new file mode 100644 index 000000000..6df9eed3e --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom.sha1 @@ -0,0 +1 @@ +9adda6d67ddf76eb9ed4e1c331d705d03dc2a94b \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.7/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0.7/_remote.repositories new file mode 100644 index 000000000..f4933a22e --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:48 EDT 2024 +project-1.0.7.pom>central= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom b/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom new file mode 100644 index 000000000..0ecdc4a67 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom @@ -0,0 +1,332 @@ + + + + + 4.0.0 + org.eclipse.ee4j + project + 1.0.7 + pom + + EE4J Project + https://projects.eclipse.org/projects/ee4j + + Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, + implementations of those APIs, and technology compatibility kits for Java runtimes + that enable development, deployment, and management of server-side and cloud-native applications. + + + + Eclipse Foundation + https://www.eclipse.org + + 2017 + + + + eclipseee4j + Eclipse EE4J Developers + Eclipse Foundation + ee4j-pmc@eclipse.org + + + + + + Eclipse Public License v. 2.0 + https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://www.gnu.org/software/classpath/license.html + repo + + + + + GitHub Issues + https://github.com/eclipse-ee4j/ee4j/issues + + + + scm:git:git@github.com:eclipse-ee4j/ee4j.git + scm:git:git@github.com:eclipse-ee4j/ee4j.git + https://github.com/eclipse-ee4j/ee4j + + + + + Community discussions + jakarta.ee-community@eclipse.org + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ + + http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss + + + + PMC discussions + ee4j-pmc@eclipse.org + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ + + http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss + + + + + + https://jakarta.oss.sonatype.org/ + ${sonatypeOssDistMgmtNexusUrl}content/repositories/snapshots/ + ${sonatypeOssDistMgmtNexusUrl}content/repositories/staging/ + ${sonatypeOssDistMgmtNexusUrl}service/local/staging/deploy/maven2/ + UTF-8 + + + + + + + ossrh + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + ossrh + Sonatype Nexus Releases + ${sonatypeOssDistMgmtReleasesUrl} + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + forked-path + false + -Poss-release ${release.arguments} + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + + ossrh + ${sonatypeOssDistMgmtNexusUrl} + false + + ${maven.deploy.skip} + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-gpg-plugin + + 1.6 + + + + + + + + + oss-release + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [3.0.4,) + Maven 3.0 through 3.0.3 inclusive does not pass + correct settings.xml to Maven Release Plugin. + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + --pinentry-mode + loopback + + + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + true + + + + + + + + snapshots + + false + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + false + + + true + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + false + + + true + + + + + + + + staging + + false + + + + sonatype-nexus-staging + Sonatype Nexus Staging + ${sonatypeOssDistMgmtStagingUrl} + + true + + + false + + + + + + sonatype-nexus-staging + Sonatype Nexus Staging + ${sonatypeOssDistMgmtStagingUrl} + + true + + + false + + + + + + diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom.sha1 new file mode 100644 index 000000000..20c2e43c3 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom.sha1 @@ -0,0 +1 @@ +b0f6c4bc691a0b694a377edc9bc4777871647253 \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.8/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0.8/_remote.repositories new file mode 100644 index 000000000..a9414a06b --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.8/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:29 EDT 2024 +project-1.0.8.pom>ohdsi= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom b/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom new file mode 100644 index 000000000..2028be0f5 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom @@ -0,0 +1,339 @@ + + + + + 4.0.0 + org.eclipse.ee4j + project + 1.0.8 + pom + + EE4J Project + https://projects.eclipse.org/projects/ee4j + + Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, + implementations of those APIs, and technology compatibility kits for Java runtimes + that enable development, deployment, and management of server-side and cloud-native applications. + + + + Eclipse Foundation + https://www.eclipse.org + + 2017 + + + + eclipseee4j + Eclipse EE4J Developers + Eclipse Foundation + ee4j-pmc@eclipse.org + + + + + + Eclipse Public License v. 2.0 + https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://www.gnu.org/software/classpath/license.html + repo + + + + + GitHub Issues + https://github.com/eclipse-ee4j/ee4j/issues + + + + scm:git:git@github.com:eclipse-ee4j/ee4j.git + scm:git:git@github.com:eclipse-ee4j/ee4j.git + https://github.com/eclipse-ee4j/ee4j + + + + + Community discussions + jakarta.ee-community@eclipse.org + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ + + http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss + + + + PMC discussions + ee4j-pmc@eclipse.org + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ + + http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss + + + + + + https://jakarta.oss.sonatype.org/ + ${sonatypeOssDistMgmtNexusUrl}content/repositories/snapshots/ + ${sonatypeOssDistMgmtNexusUrl}content/repositories/staging/ + ${sonatypeOssDistMgmtNexusUrl}service/local/staging/deploy/maven2/ + UTF-8 + + + 2020-12-19T17:24:00Z + + + + + ossrh + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + ossrh + Sonatype Nexus Releases + ${sonatypeOssDistMgmtReleasesUrl} + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M7 + + forked-path + false + -Poss-release ${release.arguments} + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + + ossrh + ${sonatypeOssDistMgmtNexusUrl} + false + + ${maven.deploy.skip} + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.4.1 + + + org.apache.maven.plugins + maven-gpg-plugin + + 3.0.1 + + + + + + + + + oss-release + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [3.2.5,) + Maven 3.0 through 3.0.3 inclusive does not pass + correct settings.xml to Maven Release Plugin. + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + --pinentry-mode + loopback + + + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + true + + + + + + + + snapshots + + false + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + false + + + true + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + false + + + true + + + + + + + + staging + + false + + + + sonatype-nexus-staging + Sonatype Nexus Staging + ${sonatypeOssDistMgmtStagingUrl} + + true + + + false + + + + + + sonatype-nexus-staging + Sonatype Nexus Staging + ${sonatypeOssDistMgmtStagingUrl} + + true + + + false + + + + + + diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.lastUpdated b/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.lastUpdated new file mode 100644 index 000000000..73deedeb9 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:29 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.eclipse.ee4j\:project\:pom\:1.0.8 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139809253 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139809376 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139809495 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139809691 diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.sha1 new file mode 100644 index 000000000..6119d2bc4 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.sha1 @@ -0,0 +1 @@ +41a621037931f9f4aa8768694be9f5cb59df83df \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.9/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0.9/_remote.repositories new file mode 100644 index 000000000..cb2f5d84f --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.9/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:25 EDT 2024 +project-1.0.9.pom>ohdsi= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom b/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom new file mode 100644 index 000000000..624d1567a --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom @@ -0,0 +1,381 @@ + + + + + 4.0.0 + org.eclipse.ee4j + project + 1.0.9 + pom + + EE4J Project + https://projects.eclipse.org/projects/ee4j + + Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, + implementations of those APIs, and technology compatibility kits for Java runtimes + that enable development, deployment, and management of server-side and cloud-native applications. + + + + Eclipse Foundation + https://www.eclipse.org + + 2017 + + + + eclipseee4j + Eclipse EE4J Developers + Eclipse Foundation + ee4j-pmc@eclipse.org + + + + + + Eclipse Public License v. 2.0 + https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://www.gnu.org/software/classpath/license.html + repo + + + + + GitHub Issues + https://github.com/eclipse-ee4j/ee4j/issues + + + + scm:git:git@github.com:eclipse-ee4j/ee4j.git + scm:git:git@github.com:eclipse-ee4j/ee4j.git + https://github.com/eclipse-ee4j/ee4j + + + + + Community discussions + jakarta.ee-community@eclipse.org + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ + + http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss + + + + PMC discussions + ee4j-pmc@eclipse.org + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ + + http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss + + + + + + https://jakarta.oss.sonatype.org/ + ${sonatypeOssDistMgmtNexusUrl}content/repositories/snapshots/ + ${sonatypeOssDistMgmtNexusUrl}content/repositories/staging/ + ${sonatypeOssDistMgmtNexusUrl}service/local/staging/deploy/maven2/ + UTF-8 + + + 2020-12-19T17:24:00Z + + + + + ossrh + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + ossrh + Sonatype Nexus Releases + ${sonatypeOssDistMgmtReleasesUrl} + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.1 + + forked-path + false + -Poss-release ${release.arguments} + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + + ossrh + ${sonatypeOssDistMgmtNexusUrl} + false + + ${maven.deploy.skip} + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.4.1 + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.0 + + + org.apache.maven.plugins + maven-gpg-plugin + + 3.1.0 + + + org.cyclonedx + cyclonedx-maven-plugin + 2.7.9 + + + org.asciidoctor + asciidoctor-maven-plugin + 2.2.4 + + + + + + + + + + + sbom + + + !skipSBOM + + + + + + org.cyclonedx + cyclonedx-maven-plugin + + 1.4 + library + + + + package + + makeAggregateBom + + + + + + + + + + + oss-release + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [3.2.5,) + Maven 3.0 through 3.0.3 inclusive does not pass + correct settings.xml to Maven Release Plugin. + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + --pinentry-mode + loopback + + + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + true + + + + + + + + snapshots + + false + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + false + + + true + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + false + + + true + + + + + + + + staging + + false + + + + sonatype-nexus-staging + Sonatype Nexus Staging + ${sonatypeOssDistMgmtStagingUrl} + + true + + + false + + + + + + sonatype-nexus-staging + Sonatype Nexus Staging + ${sonatypeOssDistMgmtStagingUrl} + + true + + + false + + + + + + diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.lastUpdated b/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.lastUpdated new file mode 100644 index 000000000..36656c063 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:25 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.eclipse.ee4j\:project\:pom\:1.0.9 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139804706 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139804831 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139805306 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139805474 diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.sha1 new file mode 100644 index 000000000..15bbeffe8 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.sha1 @@ -0,0 +1 @@ +5c02bae4f34e508f6e22b0f7beb0fef77880ad02 \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0/_remote.repositories new file mode 100644 index 000000000..e30e81a6d --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:04 EDT 2024 +project-1.0.pom>central= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom b/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom new file mode 100644 index 000000000..1c7884b50 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom @@ -0,0 +1,272 @@ + + + + + 4.0.0 + org.eclipse.ee4j + project + 1.0 + pom + + EE4J Project + https://projects.eclipse.org/projects/ee4j + + Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, + implementations of those APIs, and technology compatibility kits for Java runtimes + that enable development, deployment, and management of server-side and cloud-native applications. + + + + Eclipse Foundation + https://www.eclipse.org + + 2018 + + + + lukasj + Lukas Jungmann + Oracle + + + + + + Eclipse Public License v. 2.0 + https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://www.gnu.org/software/classpath/license.html + repo + + + + + GitHub Issues + https://github.com/eclipse-ee4j/ee4j/issues + + + + scm:git:git@github.com:eclipse-ee4j/ee4j.git + scm:git:git@github.com:eclipse-ee4j/ee4j.git + https://github.com/eclipse-ee4j/ee4j + + + + + Community discussions + jakarta.ee-community@eclipse.org + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://accounts.eclipse.org/mailing-list/jakarta.ee-community + https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ + + http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss + + + + PMC discussions + ee4j-pmc@eclipse.org + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://accounts.eclipse.org/mailing-list/ee4j-pmc + https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ + + http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss + + + + + + + ossrh + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + ossrh + Sonatype Nexus Releases + ${sonatypeOssDistMgmtReleasesUrl} + + + + + https://oss.sonatype.org/content/repositories/snapshots/ + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + UTF-8 + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + forked-path + false + -Poss-release ${release.arguments} + + + + + + + + + oss-release + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [3.0.4,) + Maven 3.0 through 3.0.3 inclusive does not pass + correct settings.xml to Maven Release Plugin. + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + + snapshots + + false + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + staging + + false + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/staging + + false + + + true + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/staging + + false + + + true + + + + + + diff --git a/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom.sha1 new file mode 100644 index 000000000..94199f9c9 --- /dev/null +++ b/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom.sha1 @@ -0,0 +1 @@ +3696ad17b9c70280c670470feff541a5e3dc6c74 \ No newline at end of file diff --git a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/_remote.repositories b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/_remote.repositories new file mode 100644 index 000000000..031b0a772 --- /dev/null +++ b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:30 EDT 2024 +jetty-ee10-bom-12.0.8.pom>ohdsi= diff --git a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom new file mode 100644 index 000000000..5798170e0 --- /dev/null +++ b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom @@ -0,0 +1,252 @@ + + + 4.0.0 + org.eclipse.jetty.ee10 + jetty-ee10-bom + 12.0.8 + pom + EE10 :: BOM + Jetty EE10 APIs BOM artifact + https://eclipse.dev/jetty/jetty-ee10/jetty-ee10-bom + 1995 + + Webtide + https://webtide.com + + + + Eclipse Public License - Version 2.0 + https://www.eclipse.org/legal/epl-2.0/ + + + Apache Software License - Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + gregw + Greg Wilkins + gregw@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + janb + Jan Bartel + janb@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + jesse + Jesse McConnell + jesse.mcconnell@gmail.com + Webtide, LLC + https://webtide.com + -6 + + + joakime + Joakim Erdfelt + joakim.erdfelt@gmail.com + Webtide, LLC + https://webtide.com + -6 + + + sbordet + Simone Bordet + simone.bordet@gmail.com + Webtide, LLC + https://webtide.com + 1 + + + djencks + David Jencks + david.a.jencks@gmail.com + IBM + -8 + + + olamy + Olivier Lamy + oliver.lamy@gmail.com + Webtide, LLC + https://webtide.com + Australia/Brisbane + + + lorban + Ludovic Orban + lorban@bitronix.be + Webtide, LLC + https://webtide.com + 1 + + + + + Jetty Developer Mailing List + https://accounts.eclipse.org/mailing-list/jetty-dev + https://www.eclipse.org/lists/jetty-dev/ + + + Jetty Users Mailing List + https://accounts.eclipse.org/mailing-list/jetty-users + https://www.eclipse.org/lists/jetty-users/ + + + Jetty Announce Mailing List + https://accounts.eclipse.org/mailing-list/jetty-announce + https://www.eclipse.org/lists/jetty-announce/ + + + + scm:git:https://github.com/jetty/jetty.project.git/jetty-ee10/jetty-ee10-bom + scm:git:git@github.com:jetty/jetty.project.git/jetty-ee10/jetty-ee10-bom + https://github.com/jetty/jetty.project/jetty-ee10/jetty-ee10-bom + + + github + https://github.com/jetty/jetty.project/issues + + + + + org.eclipse.jetty.ee10 + jetty-ee10-annotations + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-apache-jsp + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-cdi + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-fcgi-proxy + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-glassfish-jstl + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-jaspi + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-jndi + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-jspc-maven-plugin + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-maven-plugin + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-plus + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-proxy + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-quickstart + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-runner + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-servlet + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-servlets + 12.0.8 + + + org.eclipse.jetty.ee10 + jetty-ee10-webapp + 12.0.8 + + + org.eclipse.jetty.ee10.osgi + jetty-ee10-osgi-alpn + 12.0.8 + + + org.eclipse.jetty.ee10.osgi + jetty-ee10-osgi-boot + 12.0.8 + + + org.eclipse.jetty.ee10.osgi + jetty-ee10-osgi-boot-jsp + 12.0.8 + + + org.eclipse.jetty.ee10.websocket + jetty-ee10-websocket-jakarta-client + 12.0.8 + + + org.eclipse.jetty.ee10.websocket + jetty-ee10-websocket-jakarta-client-webapp + 12.0.8 + + + org.eclipse.jetty.ee10.websocket + jetty-ee10-websocket-jakarta-common + 12.0.8 + + + org.eclipse.jetty.ee10.websocket + jetty-ee10-websocket-jakarta-server + 12.0.8 + + + org.eclipse.jetty.ee10.websocket + jetty-ee10-websocket-jetty-client-webapp + 12.0.8 + + + org.eclipse.jetty.ee10.websocket + jetty-ee10-websocket-jetty-server + 12.0.8 + + + org.eclipse.jetty.ee10.websocket + jetty-ee10-websocket-servlet + 12.0.8 + + + + diff --git a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.lastUpdated b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.lastUpdated new file mode 100644 index 000000000..6a02d4e4c --- /dev/null +++ b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:30 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.eclipse.jetty.ee10\:jetty-ee10-bom\:pom\:12.0.8 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139809700 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139809814 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139810027 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139810188 diff --git a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.sha1 b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.sha1 new file mode 100644 index 000000000..7e0941dcc --- /dev/null +++ b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.sha1 @@ -0,0 +1 @@ +b7cfe876c9f075b389f725c27b82b78a84ba37b5 \ No newline at end of file diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/_remote.repositories b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/_remote.repositories new file mode 100644 index 000000000..7a9c82d17 --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:30 EDT 2024 +jetty-bom-12.0.8.pom>ohdsi= diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom new file mode 100644 index 000000000..0ce956f3e --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom @@ -0,0 +1,402 @@ + + + 4.0.0 + org.eclipse.jetty + jetty-bom + 12.0.8 + pom + Core :: BOM + Jetty Core BOM artifact + https://eclipse.dev/jetty/jetty-core/jetty-bom + 1995 + + Webtide + https://webtide.com + + + + Eclipse Public License - Version 2.0 + https://www.eclipse.org/legal/epl-2.0/ + + + Apache Software License - Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + gregw + Greg Wilkins + gregw@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + janb + Jan Bartel + janb@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + jesse + Jesse McConnell + jesse.mcconnell@gmail.com + Webtide, LLC + https://webtide.com + -6 + + + joakime + Joakim Erdfelt + joakim.erdfelt@gmail.com + Webtide, LLC + https://webtide.com + -6 + + + sbordet + Simone Bordet + simone.bordet@gmail.com + Webtide, LLC + https://webtide.com + 1 + + + djencks + David Jencks + david.a.jencks@gmail.com + IBM + -8 + + + olamy + Olivier Lamy + oliver.lamy@gmail.com + Webtide, LLC + https://webtide.com + Australia/Brisbane + + + lorban + Ludovic Orban + lorban@bitronix.be + Webtide, LLC + https://webtide.com + 1 + + + + + Jetty Developer Mailing List + https://accounts.eclipse.org/mailing-list/jetty-dev + https://www.eclipse.org/lists/jetty-dev/ + + + Jetty Users Mailing List + https://accounts.eclipse.org/mailing-list/jetty-users + https://www.eclipse.org/lists/jetty-users/ + + + Jetty Announce Mailing List + https://accounts.eclipse.org/mailing-list/jetty-announce + https://www.eclipse.org/lists/jetty-announce/ + + + + scm:git:https://github.com/jetty/jetty.project.git/jetty-core/jetty-bom + scm:git:git@github.com:jetty/jetty.project.git/jetty-core/jetty-bom + https://github.com/jetty/jetty.project/jetty-core/jetty-bom + + + github + https://github.com/jetty/jetty.project/issues + + + + + org.eclipse.jetty + jetty-alpn-client + 12.0.8 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 12.0.8 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 12.0.8 + + + org.eclipse.jetty + jetty-alpn-java-client + 12.0.8 + + + org.eclipse.jetty + jetty-alpn-java-server + 12.0.8 + + + org.eclipse.jetty + jetty-alpn-server + 12.0.8 + + + org.eclipse.jetty + jetty-client + 12.0.8 + + + org.eclipse.jetty + jetty-deploy + 12.0.8 + + + org.eclipse.jetty + jetty-http + 12.0.8 + + + org.eclipse.jetty + jetty-http-spi + 12.0.8 + + + org.eclipse.jetty + jetty-http-tools + 12.0.8 + + + org.eclipse.jetty + jetty-io + 12.0.8 + + + org.eclipse.jetty + jetty-jmx + 12.0.8 + + + org.eclipse.jetty + jetty-jndi + 12.0.8 + + + org.eclipse.jetty + jetty-keystore + 12.0.8 + + + org.eclipse.jetty + jetty-openid + 12.0.8 + + + org.eclipse.jetty + jetty-osgi + 12.0.8 + + + org.eclipse.jetty + jetty-plus + 12.0.8 + + + org.eclipse.jetty + jetty-proxy + 12.0.8 + + + org.eclipse.jetty + jetty-rewrite + 12.0.8 + + + org.eclipse.jetty + jetty-security + 12.0.8 + + + org.eclipse.jetty + jetty-server + 12.0.8 + + + org.eclipse.jetty + jetty-session + 12.0.8 + + + org.eclipse.jetty + jetty-slf4j-impl + 12.0.8 + + + org.eclipse.jetty + jetty-start + 12.0.8 + + + org.eclipse.jetty + jetty-unixdomain-server + 12.0.8 + + + org.eclipse.jetty + jetty-util + 12.0.8 + + + org.eclipse.jetty + jetty-util-ajax + 12.0.8 + + + org.eclipse.jetty + jetty-xml + 12.0.8 + + + org.eclipse.jetty.demos + jetty-demo-handler + 12.0.8 + + + org.eclipse.jetty.fcgi + jetty-fcgi-client + 12.0.8 + + + org.eclipse.jetty.fcgi + jetty-fcgi-proxy + 12.0.8 + + + org.eclipse.jetty.fcgi + jetty-fcgi-server + 12.0.8 + + + org.eclipse.jetty.http2 + jetty-http2-client + 12.0.8 + + + org.eclipse.jetty.http2 + jetty-http2-client-transport + 12.0.8 + + + org.eclipse.jetty.http2 + jetty-http2-common + 12.0.8 + + + org.eclipse.jetty.http2 + jetty-http2-hpack + 12.0.8 + + + org.eclipse.jetty.http2 + jetty-http2-server + 12.0.8 + + + org.eclipse.jetty.http3 + jetty-http3-client + 12.0.8 + + + org.eclipse.jetty.http3 + jetty-http3-client-transport + 12.0.8 + + + org.eclipse.jetty.http3 + jetty-http3-common + 12.0.8 + + + org.eclipse.jetty.http3 + jetty-http3-qpack + 12.0.8 + + + org.eclipse.jetty.http3 + jetty-http3-server + 12.0.8 + + + org.eclipse.jetty.quic + jetty-quic-client + 12.0.8 + + + org.eclipse.jetty.quic + jetty-quic-common + 12.0.8 + + + org.eclipse.jetty.quic + jetty-quic-quiche-common + 12.0.8 + + + org.eclipse.jetty.quic + jetty-quic-quiche-foreign-incubator + 12.0.8 + + + org.eclipse.jetty.quic + jetty-quic-quiche-jna + 12.0.8 + + + org.eclipse.jetty.quic + jetty-quic-server + 12.0.8 + + + org.eclipse.jetty.websocket + jetty-websocket-core-client + 12.0.8 + + + org.eclipse.jetty.websocket + jetty-websocket-core-common + 12.0.8 + + + org.eclipse.jetty.websocket + jetty-websocket-core-server + 12.0.8 + + + org.eclipse.jetty.websocket + jetty-websocket-jetty-api + 12.0.8 + + + org.eclipse.jetty.websocket + jetty-websocket-jetty-client + 12.0.8 + + + org.eclipse.jetty.websocket + jetty-websocket-jetty-common + 12.0.8 + + + org.eclipse.jetty.websocket + jetty-websocket-jetty-server + 12.0.8 + + + + diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.lastUpdated b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.lastUpdated new file mode 100644 index 000000000..7158b0e0d --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:30 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.eclipse.jetty\:jetty-bom\:pom\:12.0.8 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139810200 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139810289 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139810441 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139810617 diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.sha1 b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.sha1 new file mode 100644 index 000000000..5444323ac --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.sha1 @@ -0,0 +1 @@ +2fbb76c436931201c76ae79ff6ad60cccb59946f \ No newline at end of file diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/_remote.repositories b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/_remote.repositories new file mode 100644 index 000000000..4561e60e6 --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:48 EDT 2024 +jetty-bom-9.4.28.v20200408.pom>local-repo= diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom new file mode 100644 index 000000000..39bba05af --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom @@ -0,0 +1,473 @@ + + + 4.0.0 + org.eclipse.jetty + jetty-bom + 9.4.28.v20200408 + pom + Jetty :: Bom + Jetty BOM artifact + http://www.eclipse.org/jetty + 1995 + + Webtide + https://webtide.com + + + + Apache Software License - Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + Eclipse Public License - Version 1.0 + http://www.eclipse.org/org/documents/epl-v10.php + + + + + gregw + Greg Wilkins + gregw@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + janb + Jan Bartel + janb@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + jesse + Jesse McConnell + jesse.mcconnell@gmail.com + Webtide, LLC + https://webtide.com + -6 + + + joakime + Joakim Erdfelt + joakim.erdfelt@gmail.com + Webtide, LLC + https://webtide.com + -7 + + + sbordet + Simone Bordet + simone.bordet@gmail.com + Webtide, LLC + https://webtide.com + 1 + + + djencks + David Jencks + david.a.jencks@gmail.com + IBM + -8 + + + olamy + Olivier Lamy + oliver.lamy@gmail.com + Webtide, LLC + https://webtide.com + Australia/Brisbane + + + + + Jetty Developer Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-dev + https://dev.eclipse.org/mailman/listinfo/jetty-dev + https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html + + + Jetty Commit Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-commit + https://dev.eclipse.org/mailman/listinfo/jetty-commit + https://dev.eclipse.org/mhonarc/lists/jetty-commit/maillist.html + + + Jetty Users Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-users + https://dev.eclipse.org/mailman/listinfo/jetty-users + https://dev.eclipse.org/mhonarc/lists/jetty-users/maillist.html + + + Jetty Announce Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-announce + https://dev.eclipse.org/mailman/listinfo/jetty-announce + https://dev.eclipse.org/mhonarc/lists/jetty-announce/maillist.html + + + + scm:git:https://github.com/eclipse/jetty.project.git/jetty-bom + scm:git:git@github.com:eclipse/jetty.project.git/jetty-bom + https://github.com/eclipse/jetty.project/jetty-bom + + + github + https://github.com/eclipse/jetty.project/issues + + + + oss.sonatype.org + Jetty Staging Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + oss.sonatype.org + Jetty Snapshot Repository + https://oss.sonatype.org/content/repositories/jetty-snapshots/ + + + jetty.eclipse.website + scp://build.eclipse.org:/home/data/httpd/download.eclipse.org/jetty/9.4.28.v20200408/jetty-bom/ + + + + + + org.eclipse.jetty + apache-jsp + 9.4.28.v20200408 + + + org.eclipse.jetty + apache-jstl + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-alpn-client + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-alpn-java-client + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-alpn-java-server + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-alpn-openjdk8-client + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-alpn-openjdk8-server + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-alpn-server + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-annotations + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-ant + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-client + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-continuation + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-deploy + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-distribution + 9.4.28.v20200408 + zip + + + org.eclipse.jetty + jetty-distribution + 9.4.28.v20200408 + tar.gz + + + org.eclipse.jetty.fcgi + fcgi-client + 9.4.28.v20200408 + + + org.eclipse.jetty.fcgi + fcgi-server + 9.4.28.v20200408 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-home + 9.4.28.v20200408 + zip + + + org.eclipse.jetty + jetty-home + 9.4.28.v20200408 + tar.gz + + + org.eclipse.jetty + jetty-http + 9.4.28.v20200408 + + + org.eclipse.jetty.http2 + http2-client + 9.4.28.v20200408 + + + org.eclipse.jetty.http2 + http2-common + 9.4.28.v20200408 + + + org.eclipse.jetty.http2 + http2-hpack + 9.4.28.v20200408 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 9.4.28.v20200408 + + + org.eclipse.jetty.http2 + http2-server + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-http-spi + 9.4.28.v20200408 + + + org.eclipse.jetty + infinispan-common + 9.4.28.v20200408 + + + org.eclipse.jetty + infinispan-remote-query + 9.4.28.v20200408 + + + org.eclipse.jetty + infinispan-embedded-query + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-hazelcast + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-io + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-jaas + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-jaspi + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-jmx + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-jndi + 9.4.28.v20200408 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-nosql + 9.4.28.v20200408 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 9.4.28.v20200408 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 9.4.28.v20200408 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 9.4.28.v20200408 + + + org.eclipse.jetty.osgi + jetty-httpservice + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-plus + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-proxy + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-quickstart + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-rewrite + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-security + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-openid + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-server + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-servlet + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-servlets + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-spring + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-unixsocket + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-util + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-util-ajax + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-webapp + 9.4.28.v20200408 + + + org.eclipse.jetty.websocket + javax-websocket-client-impl + 9.4.28.v20200408 + + + org.eclipse.jetty.websocket + javax-websocket-server-impl + 9.4.28.v20200408 + + + org.eclipse.jetty.websocket + websocket-api + 9.4.28.v20200408 + + + org.eclipse.jetty.websocket + websocket-client + 9.4.28.v20200408 + + + org.eclipse.jetty.websocket + websocket-common + 9.4.28.v20200408 + + + org.eclipse.jetty.websocket + websocket-server + 9.4.28.v20200408 + + + org.eclipse.jetty.websocket + websocket-servlet + 9.4.28.v20200408 + + + org.eclipse.jetty + jetty-xml + 9.4.28.v20200408 + + + + diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.lastUpdated b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.lastUpdated new file mode 100644 index 000000000..75df243e0 --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:48 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139888796 +http\://0.0.0.0/.error=Could not transfer artifact org.eclipse.jetty\:jetty-bom\:pom\:9.4.28.v20200408 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139888565 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139888572 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139888682 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139888751 diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.sha1 b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.sha1 new file mode 100644 index 000000000..4a3a63dca --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.sha1 @@ -0,0 +1 @@ +74ae3725e592beb06dd21286f38834cd6702b3fc \ No newline at end of file diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/_remote.repositories b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/_remote.repositories new file mode 100644 index 000000000..eff704b11 --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:49 EDT 2024 +jetty-bom-9.4.53.v20231009.pom>central= diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom new file mode 100644 index 000000000..a089f5a8a --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom @@ -0,0 +1,481 @@ + + + 4.0.0 + org.eclipse.jetty + jetty-bom + 9.4.53.v20231009 + pom + Jetty :: Bom + Jetty BOM artifact + https://eclipse.org/jetty + 1995 + + Webtide + https://webtide.com + + + + Apache Software License - Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + Eclipse Public License - Version 1.0 + https://www.eclipse.org/org/documents/epl-v10.php + + + + + gregw + Greg Wilkins + gregw@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + janb + Jan Bartel + janb@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + jesse + Jesse McConnell + jesse.mcconnell@gmail.com + Webtide, LLC + https://webtide.com + -6 + + + joakime + Joakim Erdfelt + joakim.erdfelt@gmail.com + Webtide, LLC + https://webtide.com + -7 + + + sbordet + Simone Bordet + simone.bordet@gmail.com + Webtide, LLC + https://webtide.com + 1 + + + djencks + David Jencks + david.a.jencks@gmail.com + IBM + -8 + + + olamy + Olivier Lamy + oliver.lamy@gmail.com + Webtide, LLC + https://webtide.com + Australia/Brisbane + + + lorban + Ludovic Orban + lorban@bitronix.be + Webtide, LLC + https://webtide.com + 1 + + + + + Jetty Developer Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-dev + https://dev.eclipse.org/mailman/listinfo/jetty-dev + https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html + + + Jetty Commit Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-commit + https://dev.eclipse.org/mailman/listinfo/jetty-commit + https://dev.eclipse.org/mhonarc/lists/jetty-commit/maillist.html + + + Jetty Users Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-users + https://dev.eclipse.org/mailman/listinfo/jetty-users + https://dev.eclipse.org/mhonarc/lists/jetty-users/maillist.html + + + Jetty Announce Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-announce + https://dev.eclipse.org/mailman/listinfo/jetty-announce + https://dev.eclipse.org/mhonarc/lists/jetty-announce/maillist.html + + + + scm:git:https://github.com/eclipse/jetty.project.git/jetty-bom + scm:git:git@github.com:eclipse/jetty.project.git/jetty-bom + https://github.com/eclipse/jetty.project/jetty-bom + + + github + https://github.com/eclipse/jetty.project/issues + + + + oss.sonatype.org + Jetty Staging Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + oss.sonatype.org + Jetty Snapshot Repository + https://oss.sonatype.org/content/repositories/jetty-snapshots/ + + + jetty.eclipse.website + scp://build.eclipse.org:/home/data/httpd/download.eclipse.org/jetty/9.4.53.v20231009/jetty-bom/ + + + + + + org.eclipse.jetty + apache-jsp + 9.4.53.v20231009 + + + org.eclipse.jetty + apache-jstl + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-alpn-client + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-alpn-java-client + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-alpn-java-server + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-alpn-openjdk8-client + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-alpn-openjdk8-server + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-alpn-server + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-annotations + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-ant + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-client + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-continuation + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-deploy + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-distribution + 9.4.53.v20231009 + zip + + + org.eclipse.jetty + jetty-distribution + 9.4.53.v20231009 + tar.gz + + + org.eclipse.jetty.fcgi + fcgi-client + 9.4.53.v20231009 + + + org.eclipse.jetty.fcgi + fcgi-server + 9.4.53.v20231009 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-home + 9.4.53.v20231009 + zip + + + org.eclipse.jetty + jetty-home + 9.4.53.v20231009 + tar.gz + + + org.eclipse.jetty + jetty-http + 9.4.53.v20231009 + + + org.eclipse.jetty.http2 + http2-client + 9.4.53.v20231009 + + + org.eclipse.jetty.http2 + http2-common + 9.4.53.v20231009 + + + org.eclipse.jetty.http2 + http2-hpack + 9.4.53.v20231009 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 9.4.53.v20231009 + + + org.eclipse.jetty.http2 + http2-server + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-http-spi + 9.4.53.v20231009 + + + org.eclipse.jetty + infinispan-common + 9.4.53.v20231009 + + + org.eclipse.jetty + infinispan-remote-query + 9.4.53.v20231009 + + + org.eclipse.jetty + infinispan-embedded-query + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-hazelcast + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-io + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-jaas + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-jaspi + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-jmx + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-jndi + 9.4.53.v20231009 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-nosql + 9.4.53.v20231009 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 9.4.53.v20231009 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 9.4.53.v20231009 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 9.4.53.v20231009 + + + org.eclipse.jetty.osgi + jetty-httpservice + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-plus + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-proxy + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-quickstart + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-rewrite + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-security + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-openid + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-server + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-servlet + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-servlets + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-spring + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-unixsocket + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-util + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-util-ajax + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-webapp + 9.4.53.v20231009 + + + org.eclipse.jetty.websocket + javax-websocket-client-impl + 9.4.53.v20231009 + + + org.eclipse.jetty.websocket + javax-websocket-server-impl + 9.4.53.v20231009 + + + org.eclipse.jetty.websocket + websocket-api + 9.4.53.v20231009 + + + org.eclipse.jetty.websocket + websocket-client + 9.4.53.v20231009 + + + org.eclipse.jetty.websocket + websocket-common + 9.4.53.v20231009 + + + org.eclipse.jetty.websocket + websocket-server + 9.4.53.v20231009 + + + org.eclipse.jetty.websocket + websocket-servlet + 9.4.53.v20231009 + + + org.eclipse.jetty + jetty-xml + 9.4.53.v20231009 + + + + diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom.sha1 b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom.sha1 new file mode 100644 index 000000000..ee571e0cb --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom.sha1 @@ -0,0 +1 @@ +8b328fca26098b482ffa556059cd49d82cfb07e8 \ No newline at end of file diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/_remote.repositories b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/_remote.repositories new file mode 100644 index 000000000..8a4d023eb --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:51 EDT 2024 +jetty-bom-9.4.54.v20240208.pom>central= diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom new file mode 100644 index 000000000..b2092a3ae --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom @@ -0,0 +1,481 @@ + + + 4.0.0 + org.eclipse.jetty + jetty-bom + 9.4.54.v20240208 + pom + Jetty :: Bom + Jetty BOM artifact + https://eclipse.org/jetty + 1995 + + Webtide + https://webtide.com + + + + Apache Software License - Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + Eclipse Public License - Version 1.0 + https://www.eclipse.org/org/documents/epl-v10.php + + + + + gregw + Greg Wilkins + gregw@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + janb + Jan Bartel + janb@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + jesse + Jesse McConnell + jesse.mcconnell@gmail.com + Webtide, LLC + https://webtide.com + -6 + + + joakime + Joakim Erdfelt + joakim.erdfelt@gmail.com + Webtide, LLC + https://webtide.com + -7 + + + sbordet + Simone Bordet + simone.bordet@gmail.com + Webtide, LLC + https://webtide.com + 1 + + + djencks + David Jencks + david.a.jencks@gmail.com + IBM + -8 + + + olamy + Olivier Lamy + oliver.lamy@gmail.com + Webtide, LLC + https://webtide.com + Australia/Brisbane + + + lorban + Ludovic Orban + lorban@bitronix.be + Webtide, LLC + https://webtide.com + 1 + + + + + Jetty Developer Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-dev + https://dev.eclipse.org/mailman/listinfo/jetty-dev + https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html + + + Jetty Commit Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-commit + https://dev.eclipse.org/mailman/listinfo/jetty-commit + https://dev.eclipse.org/mhonarc/lists/jetty-commit/maillist.html + + + Jetty Users Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-users + https://dev.eclipse.org/mailman/listinfo/jetty-users + https://dev.eclipse.org/mhonarc/lists/jetty-users/maillist.html + + + Jetty Announce Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-announce + https://dev.eclipse.org/mailman/listinfo/jetty-announce + https://dev.eclipse.org/mhonarc/lists/jetty-announce/maillist.html + + + + scm:git:https://github.com/eclipse/jetty.project.git/jetty-bom + scm:git:git@github.com:eclipse/jetty.project.git/jetty-bom + https://github.com/eclipse/jetty.project/jetty-bom + + + github + https://github.com/eclipse/jetty.project/issues + + + + oss.sonatype.org + Jetty Staging Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + oss.sonatype.org + Jetty Snapshot Repository + https://oss.sonatype.org/content/repositories/jetty-snapshots/ + + + jetty.eclipse.website + scp://build.eclipse.org:/home/data/httpd/download.eclipse.org/jetty/9.4.54.v20240208/jetty-bom/ + + + + + + org.eclipse.jetty + apache-jsp + 9.4.54.v20240208 + + + org.eclipse.jetty + apache-jstl + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-alpn-client + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-alpn-java-client + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-alpn-java-server + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-alpn-openjdk8-client + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-alpn-openjdk8-server + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-alpn-server + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-annotations + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-ant + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-client + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-continuation + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-deploy + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-distribution + 9.4.54.v20240208 + zip + + + org.eclipse.jetty + jetty-distribution + 9.4.54.v20240208 + tar.gz + + + org.eclipse.jetty.fcgi + fcgi-client + 9.4.54.v20240208 + + + org.eclipse.jetty.fcgi + fcgi-server + 9.4.54.v20240208 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-home + 9.4.54.v20240208 + zip + + + org.eclipse.jetty + jetty-home + 9.4.54.v20240208 + tar.gz + + + org.eclipse.jetty + jetty-http + 9.4.54.v20240208 + + + org.eclipse.jetty.http2 + http2-client + 9.4.54.v20240208 + + + org.eclipse.jetty.http2 + http2-common + 9.4.54.v20240208 + + + org.eclipse.jetty.http2 + http2-hpack + 9.4.54.v20240208 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 9.4.54.v20240208 + + + org.eclipse.jetty.http2 + http2-server + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-http-spi + 9.4.54.v20240208 + + + org.eclipse.jetty + infinispan-common + 9.4.54.v20240208 + + + org.eclipse.jetty + infinispan-remote-query + 9.4.54.v20240208 + + + org.eclipse.jetty + infinispan-embedded-query + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-hazelcast + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-io + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-jaas + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-jaspi + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-jmx + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-jndi + 9.4.54.v20240208 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-nosql + 9.4.54.v20240208 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 9.4.54.v20240208 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 9.4.54.v20240208 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 9.4.54.v20240208 + + + org.eclipse.jetty.osgi + jetty-httpservice + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-plus + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-proxy + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-quickstart + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-rewrite + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-security + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-openid + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-server + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-servlet + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-servlets + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-spring + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-unixsocket + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-util + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-util-ajax + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-webapp + 9.4.54.v20240208 + + + org.eclipse.jetty.websocket + javax-websocket-client-impl + 9.4.54.v20240208 + + + org.eclipse.jetty.websocket + javax-websocket-server-impl + 9.4.54.v20240208 + + + org.eclipse.jetty.websocket + websocket-api + 9.4.54.v20240208 + + + org.eclipse.jetty.websocket + websocket-client + 9.4.54.v20240208 + + + org.eclipse.jetty.websocket + websocket-common + 9.4.54.v20240208 + + + org.eclipse.jetty.websocket + websocket-server + 9.4.54.v20240208 + + + org.eclipse.jetty.websocket + websocket-servlet + 9.4.54.v20240208 + + + org.eclipse.jetty + jetty-xml + 9.4.54.v20240208 + + + + diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom.sha1 b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom.sha1 new file mode 100644 index 000000000..824b73e82 --- /dev/null +++ b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom.sha1 @@ -0,0 +1 @@ +ce7382fb18185685b0787387b61a960bbdcbb730 \ No newline at end of file diff --git a/code/arachne/org/flywaydb/flyway-core/9.22.3/_remote.repositories b/code/arachne/org/flywaydb/flyway-core/9.22.3/_remote.repositories new file mode 100644 index 000000000..5971237e9 --- /dev/null +++ b/code/arachne/org/flywaydb/flyway-core/9.22.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:11 EDT 2024 +flyway-core-9.22.3.pom>central= diff --git a/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom b/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom new file mode 100644 index 000000000..9fbb6b0ad --- /dev/null +++ b/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom @@ -0,0 +1,300 @@ + + + 4.0.0 + + org.flywaydb + flyway-parent + 9.22.3 + + flyway-core + jar + ${project.artifactId} + + + + org.slf4j + slf4j-api + true + + + commons-logging + commons-logging + true + + + org.apache.logging.log4j + log4j-api + true + + + + org.jboss + jboss-vfs + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + + + org.osgi + org.osgi.core + true + provided + + + software.amazon.awssdk + s3 + true + + + com.google.cloud + google-cloud-storage + true + + + com.amazonaws.secretsmanager + aws-secretsmanager-jdbc + true + + + org.postgresql + postgresql + true + + + com.oracle.database.jdbc + ojdbc8 + true + + + org.projectlombok + lombok + + + org.apache.commons + commons-text + compile + true + + + com.google.code.gson + gson + + + + + + + src/main/resources + true + + + + + maven-resources-plugin + + + copy-license + + copy-resources + + generate-resources + + + + .. + + LICENSE.txt + README.txt + + + + ${project.build.outputDirectory}/META-INF + + + + + + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.felix + maven-bundle-plugin + + + org.flywaydb.core + org.flywaydb.core + + org.flywaydb.core;version=${project.version}, + org.flywaydb.core.api.*;version=${project.version} + + + javax.sql, + org.apache.commons.logging;version="[1.1,2)";resolution:=optional, + org.apache.logging.log4j;version="[2.17.1,3)";resolution:=optional, + org.apache.logging.log4j.util;version="[2.17.1,3)";resolution:=optional, + org.jboss.vfs;version="[3.1.0,4)";resolution:=optional, + org.postgresql.copy;version="[9.3.1102,100.0)";resolution:=optional, + org.postgresql.core;version="[9.3.1102,100.0)";resolution:=optional, + org.osgi.framework;version="1.3.0";resolution:=mandatory, + org.slf4j;version="[1.6,2)";resolution:=optional, + org.springframework.*;version="[5.3.19,6.0)";resolution:=optional + + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.projectlombok + lombok-maven-plugin + + + maven-javadoc-plugin + + ${project.basedir}/target/generated-sources/delombok + + **/core/Flyway.java + **/core/api/**/*.java + + + + + + + + + + maven-javadoc-plugin + 3.0.1 + + ${project.basedir}/target/generated-sources/delombok + + **/core/Flyway.java + **/core/api/**/*.java + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom.sha1 b/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom.sha1 new file mode 100644 index 000000000..c54ffb888 --- /dev/null +++ b/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom.sha1 @@ -0,0 +1 @@ +ff386b7ed39747441d908f5c54ea34723b4c6902 \ No newline at end of file diff --git a/code/arachne/org/flywaydb/flyway-parent/9.22.3/_remote.repositories b/code/arachne/org/flywaydb/flyway-parent/9.22.3/_remote.repositories new file mode 100644 index 000000000..391f276f7 --- /dev/null +++ b/code/arachne/org/flywaydb/flyway-parent/9.22.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:11 EDT 2024 +flyway-parent-9.22.3.pom>central= diff --git a/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom b/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom new file mode 100644 index 000000000..54801df6c --- /dev/null +++ b/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom @@ -0,0 +1,1503 @@ + + + + 4.0.0 + org.flywaydb + flyway-parent + 9.22.3 + pom + ${project.artifactId} + Flyway: Database Migrations Made Easy. + https://flywaydb.org + + + Apache License, Version 2.0 + https://flywaydb.org/licenses/flyway-community + repo + + + + + https://github.com/flyway/flyway + scm:git:${env.FLYWAY_REPO_URL} + scm:git:${env.FLYWAY_REPO_URL} + + + + + + + HEAD + + + + flyway + https://flywaydb.org/ + Redgate Software + https://www.red-gate.com/ + + + + + flyway-core + flyway-community-db-support + flyway-gradle-plugin + flyway-maven-plugin + flyway-commandline + flyway-gcp-bigquery + flyway-gcp-spanner + flyway-sqlserver + flyway-mysql + flyway-firebird + flyway-database-oracle + + + + + + + + + + + + + + + + + + + + + + + + + + ${snapshotRepository.id} + ${snapshotRepository.name} + ${snapshotRepository.url} + + + ${releaseRepository.id} + ${releaseRepository.name} + ${releaseRepository.url} + + + + + + + + + + + + + maven-central + https://repo1.maven.org/maven2 + + + + repo.gradle.org + https://repo.gradle.org/gradle/libs-releases-local/ + + + flyway-repo + https://nexus.flywaydb.org/repository/flyway/ + + + + + 1.10.13 + 3.4.7 + [2.20.162,2.21.0) + 2.0.0 + 1.11.18 + 1.2 + 1.10.0 + 11.5.0.0 + 10.15.2.0 + 3.15.200 + 3.10.600 + 2.22.5 + 2.20.0 + 6.1.1 + 2.10.1 + 2.2.220 + 2.2 + 2.7.1 + 2.13.0 + 4.50.3 + 1.18 + 2.15.2 + 2.3.1 + 3.0.10 + 3.2.15.Final + 4.5.2 + 1.3.1 + 5.9.0 + 2.0.1 + 2.17.1 + 1.2.3 + 1.18.20 + 1.18.20.0 + 2.7.10 + 3.9.4 + 4.2.0 + 1.13.8 + 12.2.0 + ${version.mssql}.jre8 + 19.6.0.0 + 4.3.1 + 3.9.1 + 42.4.3 + 1.2.10.1009 + 2.6.30 + 1.1.4 + 1.7.30 + 3.13.30 + 2.11.1 + 5.3.19 + 3.41.2.2 + 1.15.3 + + + + + + commons-logging + commons-logging + ${version.commonslogging} + true + + + org.apache.commons + commons-text + ${version.commonstext} + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + ${version.jackson} + + + com.fasterxml.jackson.core + jackson-annotations + ${version.jackson} + + + com.fasterxml.jackson.core + jackson-core + ${version.jackson} + + + com.fasterxml.jackson.core + jackson-databind + ${version.jackson} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + ${version.jackson} + + + org.slf4j + slf4j-api + ${version.slf4j} + true + + + org.slf4j + slf4j-jdk14 + ${version.slf4j} + true + + + org.slf4j + slf4j-nop + ${version.slf4j} + true + + + org.slf4j + jcl-over-slf4j + ${version.slf4j} + true + + + org.apache.logging.log4j + log4j-core + ${version.log4net2} + true + + + org.apache.logging.log4j + log4j-api + ${version.log4net2} + true + + + org.jboss + jboss-vfs + ${version.jboss} + true + + + org.eclipse.platform + org.eclipse.equinox.common + ${version.equinoxcommon} + true + + + org.eclipse.platform + org.eclipse.osgi + ${version.equinox} + + + org.osgi + org.osgi.core + ${version.osgi} + + + org.postgresql + postgresql + ${version.postgresql} + true + + + org.apache.derby + derby + ${version.derby} + true + + + org.apache.derby + derbytools + ${version.derby} + true + + + org.apache.derby + derbyshared + ${version.derby} + true + + + org.apache.derby + derbyclient + ${version.derby} + true + + + org.hsqldb + hsqldb + ${version.hsqldb} + true + + + com.h2database + h2 + ${version.h2} + true + + + org.firebirdsql.jdbc + jaybird-jdk18 + ${version.jaybird} + true + + + com.google.cloud + google-cloud-spanner-jdbc + ${version.spanner} + true + + + org.apache.ignite + ignite-core + ${version.ignite} + true + + + com.singlestore + singlestore-jdbc-client + ${version.singlestore} + true + + + net.snowflake + snowflake-jdbc + ${version.snowflake} + true + + + org.testcontainers + junit-jupiter + ${version.testcontainers} + true + + + uk.org.webcompere + system-stubs-core + ${version.system-stubs} + true + + + uk.org.webcompere + system-stubs-jupiter + ${version.system-stubs} + true + + + org.testcontainers + postgresql + ${version.testcontainers} + true + + + org.testcontainers + cockroachdb + ${version.testcontainers} + true + + + org.testcontainers + db2 + ${version.testcontainers} + true + + + org.testcontainers + mariadb + ${version.testcontainers} + true + + + p6spy + p6spy + ${version.p6spy} + + + org.xerial + sqlite-jdbc + ${version.sqlite} + true + + + org.mariadb.jdbc + mariadb-java-client + ${version.mariadb} + true + + + net.java.dev.jna + jna + ${version.jna} + true + + + net.java.dev.jna + jna-platform + ${version.jna} + true + + + com.oracle.database.jdbc + ojdbc8 + ${version.oracle} + true + + + net.sourceforge.jtds + jtds + ${version.jtds} + true + + + com.ibm.informix + jdbc + ${version.informix} + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.microsoft.sqlserver + mssql-jdbc + ${version.mssql-jdbc} + true + + + com.microsoft.azure + msal4j + ${version.msal4j} + true + + + javax.xml.bind + jaxb-api + ${version.jaxb} + + + software.amazon.awssdk + s3 + ${version.aws-java-sdk} + true + + + com.google.cloud + google-cloud-storage + ${version.gcs} + true + + + com.google.cloud + google-cloud-secretmanager + ${version.gcsm} + true + + + com.google.api.grpc + proto-google-cloud-secretmanager-v1 + ${version.gcsm} + true + + + com.amazonaws.secretsmanager + aws-secretsmanager-jdbc + ${version.aws-secretsmanager} + true + + + org.apache.maven + maven-plugin-api + ${version.maven} + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${version.maven} + + + org.apache.maven + maven-artifact + ${version.maven} + + + org.apache.maven + maven-model + ${version.maven} + + + org.apache.maven + maven-core + ${version.maven} + + + org.apache.ant + ant + ${version.ant} + + + org.fusesource.jansi + jansi + ${version.jansi} + + + com.google.code.gson + gson + ${version.gson} + + + org.projectlombok + lombok + ${version.lombok} + provided + + + + + + + + com.allogy.maven.wagon + maven-s3-wagon + 1.2.0 + + + org.apache.maven.wagon + wagon-http + 2.12 + + + + + + + maven-assembly-plugin + 3.2.0 + + + maven-compiler-plugin + 3.8.1 + + + maven-install-plugin + 3.0.0-M1 + + + maven-deploy-plugin + 3.0.0-M1 + + + maven-jar-plugin + 3.2.0 + + + org.apache.felix + maven-bundle-plugin + 5.1.8 + + + + + + + + + + + + + maven-dependency-plugin + 3.3.0 + + + maven-plugin-plugin + 3.7.0 + + + org.codehaus.plexus + plexus-maven-plugin + 1.3.8 + + + maven-javadoc-plugin + 3.0.1 + + + org.codehaus.mojo + exec-maven-plugin + 1.6.0 + + + org.codehaus.mojo + build-helper-maven-plugin + 1.12 + + + + + + maven-compiler-plugin + + 1.8 + 1.8 + UTF-8 + + + org.projectlombok + lombok + ${version.lombok} + + + + + + maven-resources-plugin + 2.7 + + UTF-8 + + nofilter + + + + + maven-source-plugin + 3.0.1 + + + attach-sources + verify + + jar + + + + + + org.codehaus.mojo + versions-maven-plugin + 2.7 + + false + + + + com.mycila + license-maven-plugin + 3.0 + false + +
${basedir}/LICENSE.txt
+ true + true + UTF-8 + + LICENSE + **/build/** + **/src/test/** + .idea/** + **/*.sh + **/*.txt + **/*.cnf + **/*.conf + **/*.releaseBackup + **/*.nofilter + **/*.ini + **/*.md + **/*.ids + **/*.ipr + **/*.iws + **/*.bin + **/*.lock + **/*.gradle + **/*.sbt + **/gradlew + .gitignore + .gitattributes + .travis.yml + **/flyway + **/*_BOM.sql + + true + + SLASHSTAR_STYLE + +
+ + + package + + format + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + maven-deploy-plugin + + true + 3 + + + + maven-javadoc-plugin + + false + UTF-8 + none + + + + org.projectlombok + lombok-maven-plugin + ${version.lombok-maven-plugin} + + UTF-8 + ${project.basedir}/src/main/java + ${project.basedir}/target/generated-sources/delombok + false + + +
+
+ + + + + maven-javadoc-plugin + 3.0.1 + + false + UTF-8 + false + + + + + + + + + + + + + + + + + + + + + + + + + jdk17 + + 17 + + + + + maven-compiler-plugin + + + compile-java-17 + compile + + compile + + + 17 + + ${project.basedir}/src/main/java17 + + true + + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.projectlombok + lombok-maven-plugin + + + generate-sources + + delombok + + + + + + maven-javadoc-plugin + + ${project.basedir}/target/generated-sources/delombok + + + + attach-sources + verify + + jar + + + + + + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + + sign + + + + --pinentry-mode=loopback + + flyway-gpg + + + + + + + + +
\ No newline at end of file diff --git a/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom.sha1 b/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom.sha1 new file mode 100644 index 000000000..262a51313 --- /dev/null +++ b/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom.sha1 @@ -0,0 +1 @@ +92b75cbe686f5222757f9f34c80aa963c05a0e12 \ No newline at end of file diff --git a/code/arachne/org/freemarker/freemarker/2.3.32/_remote.repositories b/code/arachne/org/freemarker/freemarker/2.3.32/_remote.repositories new file mode 100644 index 000000000..aa1c1f6ee --- /dev/null +++ b/code/arachne/org/freemarker/freemarker/2.3.32/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:56 EDT 2024 +freemarker-2.3.32.pom>central= diff --git a/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom b/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom new file mode 100644 index 000000000..f31b391d0 --- /dev/null +++ b/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom @@ -0,0 +1,92 @@ + + + + + 4.0.0 + + + org.apache + apache + 17 + + + org.freemarker + freemarker + 2.3.32 + + jar + + Apache FreeMarker + + FreeMarker is a "template engine"; a generic tool to generate text output based on templates. + + https://freemarker.apache.org/ + + Apache Software Foundation + http://apache.org + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git + scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git + https://git-wip-us.apache.org/repos/asf?p=freemarker.git + v2.3.32 + + + + jira + https://issues.apache.org/jira/browse/FREEMARKER/ + + + + + FreeMarker developer list + dev@freemarker.apache.org + dev-subscribe@freemarker.apache.org + dev-unsubscribe@freemarker.apache.org + http://mail-archives.apache.org/mod_mbox/freemarker-dev/ + + + FreeMarker commit and Jira notifications list + notifications@freemarker.apache.org + notifications-subscribe@freemarker.apache.org + notifications-unsubscribe@freemarker.apache.org + http://mail-archives.apache.org/mod_mbox/freemarker-notifications/ + + + FreeMarker management private + private@freemarker.apache.org + + + + + + + diff --git a/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom.sha1 b/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom.sha1 new file mode 100644 index 000000000..f0c4ca6af --- /dev/null +++ b/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom.sha1 @@ -0,0 +1 @@ +e4ec1645ca8294f12c0de9f07f9683ebc0d9a36d \ No newline at end of file diff --git a/code/arachne/org/glassfish/expressly/expressly/5.0.0/_remote.repositories b/code/arachne/org/glassfish/expressly/expressly/5.0.0/_remote.repositories new file mode 100644 index 000000000..f95d03edf --- /dev/null +++ b/code/arachne/org/glassfish/expressly/expressly/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:58 EDT 2024 +expressly-5.0.0.pom>central= diff --git a/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom b/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom new file mode 100644 index 000000000..d2a356521 --- /dev/null +++ b/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom @@ -0,0 +1,244 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.6 + + + + org.glassfish.expressly + expressly + 5.0.0 + + Eclipse Expressly + Jakarta Expression Language Implementation + https://projects.eclipse.org/projects/ee4j.expressly + + + + jakarta-ee4j-expressly + Eclipse Expressly Developers + Eclipse Foundation + expressly-dev@eclipse.org + + + + + Jakarta Expression Language Contributors + el-dev@eclipse.org + https://github.com/eclipse-ee4j/el-ri/graphs/contributors + + + + + + Expressly dev mailing list + expressly-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/expressly-dev + https://dev.eclipse.org/mailman/listinfo/expressly-dev + https://dev.eclipse.org/mhonarc/lists/expressly-dev + + + + + scm:git:https://github.com/eclipse-ee4j/expressly-ri.git + scm:git:ssh://git@github.com/eclipse-ee4j/expressly-ri.git + https://github.com/eclipse-ee4j/expressly-ri + HEAD + + + github + https://github.com/eclipse-ee4j/expressly-ri/issues + + + + + jakarta.el + jakarta.el-api + 5.0.0 + + + junit + junit + 4.13.2 + test + + + + + + + src/main/java + + **/*.properties + **/*.xml + + + + ${project.basedir}/.. + + LICENSE.md + NOTICE.md + + META-INF + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0 + + + enforce-maven + + enforce + + + + + 3.6.0 + + + + + + + + + + org.apache.felix + maven-bundle-plugin + 5.1.4 + + true + + org.glassfish.expressly + <_include>-osgi.bundle + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + org.glassfish.expressly + 5.0 + Eclipse Foundation + ${project.version} + ${vendorName} + org.glassfish.expressly + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + 11 + -Xlint:unchecked + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + + attach-javadocs + + jar + + + 11 + -Xdoclint:none + true + + + Eclipse Expressly ${project.version}, a Jakarta Expression Language Implementation + org.glassfish.expressly + + + el-dev@eclipse.org.
+Copyright © 2018, 2022 Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+
+
+
+
+ + + + + org.apache.maven.plugins + maven-release-plugin + + forked-path + false + ${release.arguments} + + + + + maven-surefire-plugin + 3.0.0-M5 + + never + + +
+
+
diff --git a/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom.sha1 b/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom.sha1 new file mode 100644 index 000000000..24524d1d2 --- /dev/null +++ b/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom.sha1 @@ -0,0 +1 @@ +59c76f82801d823de5e4fade24089d359c152510 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/class-model/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/class-model/3.0.6/_remote.repositories new file mode 100644 index 000000000..5747e3eaf --- /dev/null +++ b/code/arachne/org/glassfish/hk2/class-model/3.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +class-model-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom b/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom new file mode 100644 index 000000000..de463657a --- /dev/null +++ b/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom @@ -0,0 +1,116 @@ + + + + + 4.0.0 + + + org.glassfish.hk2 + hk2-parent + 3.0.6 + + + org.glassfish.hk2 + class-model + + Class Model for Hk2 + + + + org.ow2.asm + asm + ${asm.version} + + + org.ow2.asm + asm-analysis + ${asm.version} + + + org.ow2.asm + asm-commons + ${asm.version} + + + org.ow2.asm + asm-tree + ${asm.version} + + + org.ow2.asm + asm-util + ${asm.version} + + + jakarta.inject + jakarta.inject-api + test + + + jakarta.enterprise + jakarta.enterprise.cdi-api + test + + + org.osgi + osgi.core + provided + + + org.osgi + org.osgi.enterprise + provided + + + + + + + org.glassfish.hk2 + osgiversion-maven-plugin + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${manifest.location} + + org.glassfish.hk2.classmodel + + + + + + + diff --git a/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom.sha1 new file mode 100644 index 000000000..fff433130 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom.sha1 @@ -0,0 +1 @@ +4548b26dcf13d416d377e14f5ba1f530a48331dd \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/external/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/external/3.0.6/_remote.repositories new file mode 100644 index 000000000..d9d910fa8 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/external/3.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:59 EDT 2024 +external-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom b/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom new file mode 100644 index 000000000..687a87c06 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom @@ -0,0 +1,41 @@ + + + + + 4.0.0 + + + org.glassfish.hk2 + hk2-parent + 3.0.6 + + + external + pom + + OSGi repackaging of HK2 dependencies + + + aopalliance + + + + true + + diff --git a/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom.sha1 new file mode 100644 index 000000000..ab9bbc7b8 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom.sha1 @@ -0,0 +1 @@ +b26d9ae83037d1256069acef9c9cd3e641ef314c \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/_remote.repositories new file mode 100644 index 000000000..725023866 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:59 EDT 2024 +aopalliance-repackaged-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom b/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom new file mode 100644 index 000000000..e574d8d18 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom @@ -0,0 +1,136 @@ + + + + + 4.0.0 + + + org.glassfish.hk2 + external + 3.0.6 + + + org.glassfish.hk2.external + aopalliance-repackaged + + aopalliance version ${aopalliance.version} repackaged as a module + + + + aopalliance + aopalliance + ${aopalliance.version} + true + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + step1-unpack-sources + process-sources + + unpack + + + + + aopalliance + aopalliance + ${aopalliance.version} + sources + false + ${project.build.directory}/alternateLocation + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + step2-add-sources + process-sources + + add-source + + + + ${project.build.directory}/alternateLocation + + + + + + + org.apache.felix + maven-bundle-plugin + + + + *;scope=compile;inline=true + + + org.aopalliance.*;version=${aopalliance.version} + !* + + + + + osgi-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${manifest.location} + + org.aopalliance + + + + + + + diff --git a/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom.sha1 new file mode 100644 index 000000000..02efbf22c --- /dev/null +++ b/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom.sha1 @@ -0,0 +1 @@ +03f4046dc09a2d98abc817f6c6c153daa31e653f \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/_remote.repositories new file mode 100644 index 000000000..b40ccf077 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:59 EDT 2024 +hk2-api-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom new file mode 100644 index 000000000..a191fb123 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom @@ -0,0 +1,99 @@ + + + + + 4.0.0 + + + org.glassfish.hk2 + hk2-parent + 3.0.6 + + + org.glassfish.hk2 + hk2-api + + HK2 API module + ${project.name} + + + + org.glassfish.hk2 + osgi-resource-locator + true + + + jakarta.inject + jakarta.inject-api + + + org.glassfish.hk2 + hk2-utils + ${project.version} + + + org.glassfish.hk2.external + aopalliance-repackaged + ${project.version} + + + + + + + org.glassfish.hk2 + osgiversion-maven-plugin + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + -Dlocal.repo=${settings.localRepository} -Dbuild.dir=${project.build.directory} -Djava.security.manager -Djava.security.policy=${project.build.directory}/test-classes/policy.txt @{surefireArgLineExtra} + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${manifest.location} + + org.glassfish.hk2.api + + + + + + + diff --git a/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom.sha1 new file mode 100644 index 000000000..015a2cd66 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom.sha1 @@ -0,0 +1 @@ +62a25ccb588777d97f0e3f898e417d3f1e6bf8a7 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/_remote.repositories new file mode 100644 index 000000000..93f67046d --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:59 EDT 2024 +hk2-core-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom new file mode 100644 index 000000000..69dc4c6db --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom @@ -0,0 +1,108 @@ + + + + + 4.0.0 + + + org.glassfish.hk2 + hk2-parent + 3.0.6 + + + hk2-core + + HK2 core module + + + ${project.basedir}/exclude.xml + + + + + org.glassfish.hk2 + hk2-locator + ${project.version} + + + org.glassfish.hk2 + hk2-utils + ${project.version} + + + + + + + org.glassfish.hk2 + osgiversion-maven-plugin + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${manifest.location} + + org.glassfish.hk2.core + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + -XX:+IgnoreUnrecognizedVMOptions -enableassertions --add-exports="java.base/jdk.internal.loader=ALL-UNNAMED" + + + + + + + + jdk5 + + false + 1.5 + + + + jakarta.xml.stream + stax-api + provided + + + + + diff --git a/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom.sha1 new file mode 100644 index 000000000..7e9f07a7e --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom.sha1 @@ -0,0 +1 @@ +5a707e66eeb8526761fa4af30339117c28300414 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/_remote.repositories new file mode 100644 index 000000000..f306aaf41 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:59 EDT 2024 +hk2-locator-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom new file mode 100644 index 000000000..1bfd5eba4 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom @@ -0,0 +1,110 @@ + + + + + 4.0.0 + + + org.glassfish.hk2 + hk2-parent + 3.0.6 + + + hk2-locator + + ServiceLocator Default Implementation + ${project.name} + + + + jakarta.inject + jakarta.inject-api + + + org.glassfish.hk2.external + aopalliance-repackaged + ${project.version} + + + org.glassfish.hk2 + hk2-api + ${project.version} + + + org.glassfish.hk2 + hk2-utils + ${project.version} + + + jakarta.annotation + jakarta.annotation-api + + + org.javassist + javassist + + + + + + + org.glassfish.hk2 + osgiversion-maven-plugin + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + -Dlocal.repo=${settings.localRepository} -Dbuild.dir=${project.build.directory} -Djava.security.manager -Djava.security.policy=${project.build.directory}/test-classes/policy.txt -Dorg.jvnet.hk2.properties.useSoftReference=false @{surefireArgLineExtra} + false + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${manifest.location} + + org.glassfish.hk2.locator + + + + + + + diff --git a/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom.sha1 new file mode 100644 index 000000000..5063b821d --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom.sha1 @@ -0,0 +1 @@ +d8027db5654fada702a0a723688e4fa3f69b4fb2 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/_remote.repositories new file mode 100644 index 000000000..44d6fc3b2 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:59 EDT 2024 +hk2-parent-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom new file mode 100644 index 000000000..59a74df34 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom @@ -0,0 +1,951 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.9 + + + + org.glassfish.hk2 + hk2-parent + 3.0.6 + pom + + GlassFish HK2 + Dependency Injection Kernel + https://github.com/eclipse-ee4j/glassfish-hk2 + 2009 + + Oracle Corporation + http://www.oracle.com + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + + + jwells + John Wells + Oracle, Inc + + developer + + + + mtaube + Mason Taube + Oracle, Inc + + developer + + + + + + Jerome Dochez + http://blogs.sun.com/dochez + + + Kohsuke Kawaguchi + http://weblogs.java.net/blog/kohsuke + + + Sanjeeb Sahoo + http://weblogs.java.net/ss141213 + + + Andriy Zhdanov + http://avalez.blogspot.com + + + Jeff Trent + + + + + + GlassFish HK2 mailing list + glassfish-hk2-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/glassfish-hk2-dev + https://dev.eclipse.org/mailman/listinfo/glassfish-hk2-dev + https://dev.eclipse.org/mhonarc/lists/glassfish-hk2-dev/ + + + + + maven-plugins + hk2-metadata-generator + hk2-runlevel + hk2-locator + class-model + hk2-core + osgi + examples + hk2-testing + guice-bridge + spring-bridge + hk2-jmx + hk2 + bom + external + hk2-utils + hk2-api + hk2-configuration + hk2-extras + + + + + scm:git:https://github.com/eclipse-ee4j/glassfish-hk2.git + scm:git:git@github.com:eclipse-ee4j/glassfish-hk2.git + https://github.com/eclipse-ee4j/glassfish-hk2 + HEAD + + + Github + https://github.com/eclipse-ee4j/glassfish-hk2/issues + + + + 17 + 3.2.5 + 2023-10-04T08:38:05Z + + 2.1.1 + 2.1.3 + 1.1.5 + 4.0.1 + 4.0.4 + ${user.name} + 4.0.1 + 8.0.1.Final + 3.0.2 + 4.0.2 + 5.0.1 + 0.1.3 + 3.30.2-GA + 4.13.2 + 9.6 + 4.1.2 + 1.0-2 + 1.0 + 7.9.0 + 3.25.2 + 4.13.5 + 2.0.1 + 3.5.3.Final + 3.1.5 + 4.0.2 + 1.3 + 6.0.0 + 3.1.0 + 1.7.0 + 6.0.13 + 7.0.0 + 3.25.2 + + ${maven.multiModuleProjectDirectory}/ + + + High + + + + target/classes/META-INF/MANIFEST.MF + + + + + + jakarta.annotation + jakarta.annotation-api + ${jakarta.annotation.version} + + + jakarta.json + jakarta.json-api + ${jakarta.json.version} + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jaxb-api.version} + + + org.glassfish.jaxb + jaxb-runtime + ${jaxb-runtime.version} + + + org.eclipse.parsson + parsson + ${parsson.version} + + + woodstox + wstx-asl + ${woodstox.version} + + + jakarta.xml.stream + stax-api + ${stax-api.version} + + + org.apache.maven + maven-plugin-api + 3.9.6 + provided + + + org.apache.maven + maven-core + 3.9.6 + provided + + + com.sun.codemodel + codemodel + 2.6 + + + + org.apache.maven.shared + maven-osgi + 0.2.0 + + + * + * + + + + + args4j + args4j + 2.33 + + + jakarta.inject + jakarta.inject-api + ${jakarta-inject.version} + + + com.google.inject + guice + ${guice.version} + + + org.glassfish.hk2 + osgi-resource-locator + 2.4.0 + + + org.apache.ant + ant + 1.10.14 + + + org.apache.maven + maven-artifact + 3.9.6 + + + org.apache.maven + maven-archiver + 3.6.1 + + + org.testng + testng + ${testng.version} + test + + + org.assertj + assertj-core + ${assertj.version} + + + org.osgi + osgi.core + 8.0.0 + + + org.osgi + osgi.cmpn + 7.0.0 + + + org.osgi + osgi.annotation + 8.1.0 + provided + + + jakarta.enterprise + jakarta.enterprise.cdi-api + ${jakarta.enterprise.cdi-api.version} + + + org.osgi + org.osgi.enterprise + 5.0.0 + + + org.apache.felix + org.apache.felix.bundlerepository + 2.0.10 + + + org.ops4j.pax.exam + pax-exam-spi + ${pax-exam-version} + + + org.ops4j.pax.exam + pax-exam-junit4 + ${pax-exam-version} + + + org.ops4j.pax.exam + pax-exam-link-mvn + ${pax-exam-version} + + + org.ops4j.pax.exam + pax-exam-inject + ${pax-exam-version} + + + org.ops4j.pax.exam + pax-exam-invoker-junit + ${pax-exam-version} + + + org.ops4j.pax.exam + pax-exam-extender-service + ${pax-exam-version} + + + org.ops4j.pax.exam + pax-exam-container-native + ${pax-exam-version} + + + org.ops4j.pax.exam + pax-exam-link-assembly + ${pax-exam-version} + + + org.ops4j.pax.url + pax-url-aether + 2.6.14 + + + ch.qos.logback + logback-core + 1.4.14 + + + ch.qos.logback + logback-classic + 1.4.14 + + + org.apache.felix + org.apache.felix.framework + 7.0.5 + + + org.apache.felix + org.apache.felix.configadmin + 1.9.26 + + + org.ops4j.pax.logging + pax-logging-api + 1.11.2 + + + avalon-framework + avalon-framework-api + + + + + org.ops4j.pax.logging + pax-logging-service + 1.11.2 + + + org.springframework + spring-context + ${springcontext.version} + + + org.hibernate.validator + hibernate-validator-cdi + ${hibernate-validator.version} + + + com.googlecode.jtype + jtype + ${jtype.version} + + + org.jboss.logging + jboss-logging + ${org.jboss.logging.version} + + + com.fasterxml + classmate + ${classmate.version} + + + org.ow2.asm + asm + ${asm.version} + true + + + org.ow2.asm + asm-commons + ${asm.version} + true + + + org.ow2.asm + asm-tree + ${asm.version} + true + + + org.ow2.asm + asm-util + ${asm.version} + true + + + aopalliance + aopalliance + ${aopalliance.version} + + + junit + junit + ${junit.version} + + + org.easymock + easymock + 5.2.0 + + + jakarta.validation + jakarta.validation-api + ${jakarta.validation.version} + + + jakarta.el + jakarta.el-api + ${jakarta.el.version} + + + org.javassist + javassist + ${javassist.version} + + + org.hibernate.validator + hibernate-validator + ${hibernate-validator.version} + + + org.apache.commons + commons-lang3 + 3.14.0 + + + org.glassfish.jersey.containers + jersey-container-servlet + ${jersey.version} + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + ${jersey.version} + + + org.glassfish.jersey.inject + jersey-hk2 + ${jersey.version} + + + org.glassfish.jersey.media + jersey-media-json-jackson + ${jersey.version} + + + org.glassfish.grizzly + grizzly-http-servlet + ${grizzly.version} + + + org.hamcrest + hamcrest-all + ${hamcrest.version} + + + jakarta.servlet + jakarta.servlet-api + ${jakarta.servlet.version} + + + jakarta.ws.rs + jakarta.ws.rs-api + ${jakarta.ws.rs.version} + + + com.google.protobuf + protobuf-java + ${protobuf.version} + + + + + + junit + junit + test + + + org.easymock + easymock + test + + + + + + jvnet-nexus-snapshots + Java.net Nexus Snapshots Repository + https://maven.java.net/content/repositories/snapshots + + false + + + true + + + + + + install + ${project.artifactId} + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + none + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.4.1 + + + com.googlecode.maven-download-plugin + maven-download-plugin + 1.1.0 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.5 + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.5 + + + org.apache.maven.plugins + maven-eclipse-plugin + 2.10 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.12.1 + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.10.2 + + + org.codehaus.mojo + build-helper-maven-plugin + 3.5.0 + + + org.glassfish.hk2 + hk2-inhabitant-generator + ${project.version} + + false + + + + org.apache.maven.plugins + maven-antrun-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.6.1 + + + org.glassfish.hk2 + osgiversion-maven-plugin + ${project.version} + + + compute-osgi-version + validate + + compute-osgi-version + + + qualifier + project.osgi.version + + + + + + org.apache.maven.plugins + maven-shade-plugin + 3.5.1 + + + org.apache.maven.plugins + maven-deploy-plugin + 3.1.1 + + 10 + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + true + + + + org.apache.maven.plugins + maven-site-plugin + 3.12.1 + + true + true + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.1 + + forked-path + false + @{project.version} + ${release.arguments} + install + deploy + + + + org.apache.maven.scm + maven-scm-provider-gitexe + 2.0.1 + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + git + true + + LICENSE.md + MANIFEST.MF + README + hk2-locator/ + META-INF/services/ + META-INF/inhabitants/ + resources/gendir + .png + .class + .json + .txt + .pbuf + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.2.1 + + + org.apache.servicemix.tooling + depends-maven-plugin + 1.5.0 + + + maven-install-plugin + 3.1.1 + + + + + + org.apache.maven.plugins + maven-eclipse-plugin + + true + true + + + + org.apache.maven.plugins + maven-compiler-plugin + + 11 + + + + org.apache.maven.plugins + maven-surefire-plugin + + + logging.properties + + + + + org.codehaus.mojo + findbugs-maven-plugin + + ${findbugs.skip} + ${findbugs.threshold} + true + + exclude-common.xml,${findbugs.exclude} + + + + + org.glassfish.findbugs + findbugs + 1.7 + + + + + org.apache.felix + maven-bundle-plugin + + + + + + <_include>-${basedir}/osgi.bundle + <_noimportjava>true + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${manifest.location} + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-versions + + enforce + + + + + [${jdk.version},) + You need JDK ${jdk.version} and above! + + + [${mvn.version},) + You need Maven ${mvn.version} or above! + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-legal-resource + generate-resources + + add-resource + + + + + ${legal.doc.source} + + NOTICE.md + LICENSE.md + + META-INF + + + + + + + + + + + + jacoco + + + + org.apache.maven.plugins + maven-surefire-plugin + + + @{surefireArgLineExtra} + + + java.util.logging.config.file + logging.properties + + + + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + + agent-jacoco-property + + prepare-agent + + + + ${project.build.directory}/jacoco.exec + + surefireArgLineExtra + + + + + post-unit-test + + report + + + + ${project.build.directory}/jacoco.exec + + ${project.reporting.outputDirectory}/jacoco + + + + + + + + + diff --git a/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom.sha1 new file mode 100644 index 000000000..728bcf49d --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom.sha1 @@ -0,0 +1 @@ +c6fd2867a23f4ef1bd1ad23e87b3dc6f3c6c7425 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/_remote.repositories new file mode 100644 index 000000000..4f7f3e9b3 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +hk2-runlevel-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom new file mode 100644 index 000000000..e6eac990d --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom @@ -0,0 +1,110 @@ + + + + + 4.0.0 + + + org.glassfish.hk2 + hk2-parent + 3.0.6 + + + hk2-runlevel + + Run Level Service + ${project.name} + + + + org.glassfish.hk2 + hk2-junitrunner + ${project.version} + test + + + org.glassfish.hk2 + hk2-api + ${project.version} + + + org.glassfish.hk2 + hk2-locator + ${project.version} + + + jakarta.annotation + jakarta.annotation-api + + + + + + + org.glassfish.hk2 + osgiversion-maven-plugin + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + org.glassfish.hk2 + hk2-inhabitant-generator + + + + generate-inhabitants + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + -Dorg.jvnet.hk2.logger.debugToStdout=false -Dorg.jvnet.hk2.properties.debug.runlevel.context=false @{surefireArgLineExtra} + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${manifest.location} + + org.glassfish.hk2.runlevel + + + + + + + diff --git a/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom.sha1 new file mode 100644 index 000000000..ae1a433fa --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom.sha1 @@ -0,0 +1 @@ +d6df7c94634bccdb3e32604b7176f3e7e2ab372d \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/_remote.repositories new file mode 100644 index 000000000..0c72a960a --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:59 EDT 2024 +hk2-utils-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom new file mode 100644 index 000000000..f02587edf --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom @@ -0,0 +1,127 @@ + + + + + 4.0.0 + + + org.glassfish.hk2 + hk2-parent + 3.0.6 + + + org.glassfish.hk2 + hk2-utils + + HK2 Implementation Utilities + ${project.name} + + + + jakarta.annotation + jakarta.annotation-api + + + jakarta.inject + jakarta.inject-api + + + jakarta.validation + jakarta.validation-api + true + + + org.hibernate.validator + hibernate-validator + true + + + org.jboss.logging + jboss-logging + true + + + com.fasterxml + classmate + true + + + + + jakarta.el + jakarta.el-api + test + + + org.apache.commons + commons-lang3 + test + + + org.glassfish + jakarta.el + ${glassfish.jakarta.el.version} + test + + + + + + + org.glassfish.hk2 + osgiversion-maven-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + target/classes/META-INF/MANIFEST.MF + + org.glassfish.hk2.utilities + foo + + + + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + + jakarta.validation.*;resolution:=optional,org.hibernate.validator.*;resolution:=optional,* + + + true + + + + + diff --git a/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom.sha1 new file mode 100644 index 000000000..08e893660 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom.sha1 @@ -0,0 +1 @@ +bed48f27c58063ada94bcf3c38c7c402a192f28f \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2/3.0.6/_remote.repositories new file mode 100644 index 000000000..df043d6fb --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2/3.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:59 EDT 2024 +hk2-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom new file mode 100644 index 000000000..6d91b57d2 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom @@ -0,0 +1,120 @@ + + + + + 4.0.0 + + + org.glassfish.hk2 + hk2-parent + 3.0.6 + + + hk2 + + HK2 module of HK2 itself + This is so that other modules can depend on HK2 as an HK2 module. + + + + org.glassfish.hk2 + hk2-utils + ${project.version} + + + org.glassfish.hk2 + hk2-api + ${project.version} + + + org.glassfish.hk2 + hk2-core + ${project.version} + + + org.glassfish.hk2 + hk2-locator + ${project.version} + + + org.glassfish.hk2 + hk2-runlevel + ${project.version} + + + org.glassfish.hk2 + class-model + ${project.version} + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + create-empty-javadoc-jar + + jar + + + + ${project.build.directory}/javadoc + + javadoc + + + + + + + true + custom + ${artifact.artifactId}.${artifact.extension} + + + + + + org.glassfish.hk2 + osgiversion-maven-plugin + + + org.apache.felix + maven-bundle-plugin + + + org.glassfish.hk2.hk2 + + + + + bundle-manifest + process-classes + + manifest + + + + + + + diff --git a/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom.sha1 new file mode 100644 index 000000000..9fcd141f0 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom.sha1 @@ -0,0 +1 @@ +9a781f9f7d2b84086214cc5b5f9818bfceb32792 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/_remote.repositories b/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/_remote.repositories new file mode 100644 index 000000000..e27e3b918 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:58 EDT 2024 +osgi-resource-locator-1.0.3.pom>central= diff --git a/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom b/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom new file mode 100644 index 000000000..f20d256a3 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom @@ -0,0 +1,193 @@ + + + + + 4.0.0 + + org.eclipse.ee4j + project + 1.0.5 + + + org.glassfish.hk2 + osgi-resource-locator + 1.0.3 + OSGi resource locator + Used by various API providers that rely on META-INF/services mechanism to locate providers. + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + + https://github.com/eclipse-ee4j/glassfish-hk2-extra + scm:git:https://github.com/eclipse-ee4j/glassfish-hk2-extra.git + scm:git:git@github.com:eclipse-ee4j/glassfish-hk2-extra.git + HEAD + + + + ss141213 + Sahoo + Oracle Corporation + + developer + + + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + validate + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + --pinentry-mode + loopback + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.8 + + -Xdoclint:none + + + + attach-javadocs + + jar + + + + javadoc + + javadoc + + + + + + maven-compiler-plugin + + 1.6 + 1.6 + + + + org.apache.maven.plugins + maven-jar-plugin + + true + + + + org.glassfish.hk2 + osgiversion-maven-plugin + + + compute-osgi-version + validate + + compute-osgi-version + + + qualifier + project.osgi.version + + + + + + org.apache.felix + maven-bundle-plugin + + + <_include>osgi.bundle + + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.1 + + + + + + + org.osgi + osgi.core + 6.0.0 + provided + + + org.osgi + osgi.cmpn + 6.0.0 + provided + + + + diff --git a/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom.sha1 b/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom.sha1 new file mode 100644 index 000000000..d5dabef84 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom.sha1 @@ -0,0 +1 @@ +fcc86dd16c8415af038a41f234ed83164cfe2a7d \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/_remote.repositories new file mode 100644 index 000000000..9f4252522 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +spring-bridge-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom b/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom new file mode 100644 index 000000000..e91f8dbcf --- /dev/null +++ b/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom @@ -0,0 +1,97 @@ + + + + + 4.0.0 + + + org.glassfish.hk2 + hk2-parent + 3.0.6 + + + org.glassfish.hk2 + spring-bridge + + HK2 Spring Bridge + ${project.name} + + + + jakarta.inject + jakarta.inject-api + + + org.glassfish.hk2 + hk2-api + ${project.version} + + + * + * + + + + + org.springframework + spring-context + + + org.glassfish.hk2 + hk2-junitrunner + ${project.version} + test + + + + + + + org.glassfish.hk2 + osgiversion-maven-plugin + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${manifest.location} + + org.glassfish.hk2.spring.bridge + + + + + + + diff --git a/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom.sha1 new file mode 100644 index 000000000..13c9711d0 --- /dev/null +++ b/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom.sha1 @@ -0,0 +1 @@ +f1e0e9f8de1dc8f593c37791261585180b50d564 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jakarta.el/3.0.3/_remote.repositories b/code/arachne/org/glassfish/jakarta.el/3.0.3/_remote.repositories new file mode 100644 index 000000000..fd5356571 --- /dev/null +++ b/code/arachne/org/glassfish/jakarta.el/3.0.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:01 EDT 2024 +jakarta.el-3.0.3.pom>central= diff --git a/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom b/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom new file mode 100644 index 000000000..ba86b492c --- /dev/null +++ b/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom @@ -0,0 +1,328 @@ + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.5 + + + org.glassfish + jakarta.el + 3.0.3 + + Jakarta Expression Language 3.0 + + Jakarta Expression Language provides a specification document, API, reference implementation and TCK + that describes an expression language for Java applications. + + https://projects.eclipse.org/projects/ee4j.el + + + + 3.0.3 + + 3.0 + javax.el + com.sun.el.javax.el + Oracle Corporation + 2.5.2 + ${project.basedir}/exclude.xml + High + + + + + yaminikb + Yamini K B + Oracle Corporation + http://www.oracle.com/ + + + + + + Kin-man Chung + + + + + github + https://github.com/eclipse-ee4j/el-ri/issues + + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + + + + + + Jakarta Expression Language mailing list + el-dev@eclipse.org + https://dev.eclipse.org/mailman/listinfo/el-dev + https://dev.eclipse.org/mailman/listinfo/el-dev + https://dev.eclipse.org/mhonarc/lists/el-dev + + + + + scm:git:https://github.com/eclipse-ee4j/el-ri.git + + scm:git:git@github.com:eclipse-ee4j/el-ri.git + + https://github.com/eclipse-ee4j/el-ri + HEAD + + + + + junit + junit + 4.12 + test + + + + + + + api/src/main/java + + **/*.properties + **/*.xml + + + + impl/src/main/java + + **/*.properties + **/*.xml + + + + ${project.basedir} + + LICENSE.md + NOTICE.md + + META-INF + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.1 + + + add-source + generate-sources + + add-source + + + + api/src/main/java + impl/src/main/java + + + + + + + + + org.apache.felix + maven-bundle-plugin + 1.4.3 + + + ${bundle.symbolicName} + + Expression Language ${spec.version} API and Implementation + + + ${bundle.version} + ${extensionName} + ${spec.version} + ${vendorName} + ${project.version} + ${vendorName} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + maven-jar-plugin + 2.4 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.0 + + 1.7 + 1.7 + -Xlint:unchecked + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + true + + + + attach-sources + + jar-no-fork + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.1 + + + attach-javadocs + + jar + + + 1.7 + api/src;impl/src + -Xdoclint:none + + https://javaee.github.io/javaee-spec/javadocs/ + + + + Jakarta Expression Language 3.0 API and Implementation + com.sun.el + + + Copyright (c) 2013 Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms. + + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.version} + + ${findbugs.threshold} + ${findbugs.exclude} + true + true + + + + + maven-surefire-plugin + 2.7.1 + + + org.apache.maven.surefire + surefire-junit47 + 2.7.1 + + + + never + + + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.version} + + ${findbugs.threshold} + ${findbugs.exclude} + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.1 + + com.sun.el.parser + + **/parser/*.java + + + + + + + diff --git a/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom.sha1 b/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom.sha1 new file mode 100644 index 000000000..475ecedcd --- /dev/null +++ b/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom.sha1 @@ -0,0 +1 @@ +a1c4761c322db3c4f99b0be4585f0ba18aa43320 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jakarta.json/2.0.1/_remote.repositories b/code/arachne/org/glassfish/jakarta.json/2.0.1/_remote.repositories new file mode 100644 index 000000000..1c8c9fb1a --- /dev/null +++ b/code/arachne/org/glassfish/jakarta.json/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:43 EDT 2024 +jakarta.json-2.0.1.pom>central= diff --git a/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom b/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom new file mode 100644 index 000000000..3bfd5235b --- /dev/null +++ b/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom @@ -0,0 +1,248 @@ + + + + + 4.0.0 + + + org.glassfish + json + 2.0.1 + ../pom.xml + + + org.glassfish + jakarta.json + bundle + 2.0.1 + JSON-P Default Provider + Default provider for Jakarta JSON Processing + https://github.com/eclipse-ee4j/jsonp + + + org.glassfish.json + jakarta.json.*,org.glassfish.json.api + + + + + + org.glassfish.build + spec-version-maven-plugin + + + ${non.final} + impl + ${spec_version} + ${new_spec_version} + ${new_spec_impl_version} + ${impl_version} + ${new_impl_version} + ${api_package} + ${impl_namespace} + + + + + + set-spec-properties + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + true + + + + org.apache.maven.plugins + maven-resources-plugin + + + sources-as-resources + package + + copy-resources + + + + + src/main/java/org + + + ${project.build.directory}/sources/org + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + unpack-module-info + compile + + unpack-dependencies + + + jakarta.json-api + ${project.build.directory}/binaries + module-info.class + + + + unpack-client-sources + prepare-package + + unpack + + + + + jakarta.json + jakarta.json-api + ${jakarta.json-api.version} + sources + false + ${project.build.directory}/sources + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + attach-source-jar + + jar + + + sources + ${project.build.directory}/sources + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + default-bundle + + bundle + + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + Eclipse Foundation + ${spec.specification.version} + ${packages.export} + ${packages.private} + <_donotcopy>.*services.* + + + {maven-resources},target/binaries/module-info.class + + + + + main-artifact-module + + bundle + + + module + + ${spec.bundle.version} + ${spec.bundle.symbolic-name}.module + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + org.glassfish.json.api + ${packages.private} + {maven-resources},target/classes/module-info.class + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + target/sources + + + false + + + 11 + true + true + JSON Processing API documentation + JSON Processing API documentation + JSON Processing API documentation +
JSON Processing API v${project.version}]]>
+ jsonp-dev@eclipse.org.
+Copyright © 2019, 2020 Eclipse Foundation. All rights reserved.
+Use is subject to license terms.]]> +
+
+
+
+
+ + + jakarta.json + jakarta.json-api + provided + + + junit + junit + test + + + +
diff --git a/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom.sha1 b/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom.sha1 new file mode 100644 index 000000000..1e65fa700 --- /dev/null +++ b/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom.sha1 @@ -0,0 +1 @@ +043d1ab1a680dc9b3b640e518cb2b9fb876fffca \ No newline at end of file diff --git a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/_remote.repositories b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/_remote.repositories new file mode 100644 index 000000000..54be8bc0a --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:24 EDT 2024 +jaxb-bom-4.0.5.pom>ohdsi= diff --git a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom new file mode 100644 index 000000000..69a00c603 --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom @@ -0,0 +1,292 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.9 + + + + org.glassfish.jaxb + jaxb-bom + 4.0.5 + + pom + JAXB BOM + JAXB Bill of Materials (BOM) + https://eclipse-ee4j.github.io/jaxb-ri/ + + + 4.0.2 + + 4.1.2 + 2.1.1 + 2.1.0 + 2.1.3 + 2.0.2 + + + + + + + + org.glassfish.jaxb + jaxb-runtime + ${project.version} + sources + + + org.glassfish.jaxb + jaxb-core + ${project.version} + sources + + + org.glassfish.jaxb + jaxb-xjc + ${project.version} + sources + + + org.glassfish.jaxb + jaxb-jxc + ${project.version} + sources + + + org.glassfish.jaxb + codemodel + ${project.version} + sources + + + org.glassfish.jaxb + txw2 + ${project.version} + sources + + + org.glassfish.jaxb + xsom + ${project.version} + sources + + + + + com.sun.xml.bind + jaxb-impl + ${project.version} + sources + + + com.sun.xml.bind + jaxb-core + ${project.version} + sources + + + com.sun.xml.bind + jaxb-xjc + ${project.version} + sources + + + com.sun.xml.bind + jaxb-jxc + ${project.version} + sources + + + + jakarta.xml.bind + jakarta.xml.bind-api + ${xml.bind-api.version} + sources + + + org.jvnet.staxex + stax-ex + ${stax-ex.version} + sources + + + com.sun.xml.fastinfoset + FastInfoset + ${fastinfoset.version} + sources + + + + + + + org.glassfish.jaxb + jaxb-runtime + ${project.version} + + + org.glassfish.jaxb + jaxb-core + ${project.version} + + + org.glassfish.jaxb + jaxb-xjc + ${project.version} + + + org.glassfish.jaxb + jaxb-jxc + ${project.version} + + + org.glassfish.jaxb + codemodel + ${project.version} + + + org.glassfish.jaxb + txw2 + ${project.version} + + + org.glassfish.jaxb + xsom + ${project.version} + + + + + + com.sun.xml.bind + jaxb-impl + ${project.version} + + + com.sun.xml.bind + jaxb-core + ${project.version} + + + com.sun.xml.bind + jaxb-xjc + ${project.version} + + + com.sun.xml.bind + jaxb-jxc + ${project.version} + + + + + com.sun.xml.bind + jaxb-osgi + ${project.version} + + + + + + jakarta.xml.bind + jakarta.xml.bind-api + ${xml.bind-api.version} + + + com.sun.istack + istack-commons-runtime + ${istack.version} + + + com.sun.xml.fastinfoset + FastInfoset + ${fastinfoset.version} + + + org.jvnet.staxex + stax-ex + ${stax-ex.version} + + + jakarta.activation + jakarta.activation-api + ${activation-api.version} + + + org.eclipse.angus + angus-activation + ${angus-activation.version} + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.4.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + + org.apache.maven.plugins + maven-deploy-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-gpg-plugin + 3.1.0 + + + org.codehaus.mojo + versions-maven-plugin + 2.16.2 + + + + + + com.sun.istack + + + regex + 4.[2-9]+.* + + + + + + + + + + + diff --git a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.lastUpdated b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.lastUpdated new file mode 100644 index 000000000..9810a9f85 --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:24 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.glassfish.jaxb\:jaxb-bom\:pom\:4.0.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139804350 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139804437 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139804555 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139804695 diff --git a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 new file mode 100644 index 000000000..b9e4471ce --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 @@ -0,0 +1 @@ +a86fce599edf93050d83862d319078bcc8298dc2 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/_remote.repositories b/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/_remote.repositories new file mode 100644 index 000000000..d793cc6f5 --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:02 EDT 2024 +jaxb-core-4.0.5.pom>central= diff --git a/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom b/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom new file mode 100644 index 000000000..354dbb071 --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom @@ -0,0 +1,104 @@ + + + + + 4.0.0 + + + com.sun.xml.bind.mvn + jaxb-parent + 4.0.5 + ../pom.xml + + + org.glassfish.jaxb + jaxb-core + + jar + JAXB Core + JAXB Core module. Contains sources required by XJC, JXC and Runtime modules. + https://eclipse-ee4j.github.io/jaxb-ri/ + + + ${project.basedir}/exclude-core.xml + + + + + jakarta.xml.bind + jakarta.xml.bind-api + + + jakarta.activation + jakarta.activation-api + + + org.eclipse.angus + angus-activation + runtime + + + ${project.groupId} + txw2 + + + com.sun.istack + istack-commons-runtime + + + + junit + junit + test + + + + + + + org.apache.felix + maven-bundle-plugin + + + ${vendor.name} + ${project.groupId} + ${project.version} - ${buildNumber} + + org.glassfish.jaxb.core.v2.model.impl, + * + + + + + + bundle-manifest + process-classes + + manifest + + + + + + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + diff --git a/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom.sha1 b/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom.sha1 new file mode 100644 index 000000000..cafb4f742 --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom.sha1 @@ -0,0 +1 @@ +ad142d8f32e7e7cc200363ae469d6df5029ec286 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/_remote.repositories b/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/_remote.repositories new file mode 100644 index 000000000..9708d115f --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:02 EDT 2024 +jaxb-runtime-4.0.5.pom>central= diff --git a/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom b/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom new file mode 100644 index 000000000..b6a5a590e --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom @@ -0,0 +1,228 @@ + + + + + 4.0.0 + + + com.sun.xml.bind.mvn + jaxb-runtime-parent + 4.0.5 + ../pom.xml + + + org.glassfish.jaxb + jaxb-runtime + + jar + JAXB Runtime + JAXB (JSR 222) Reference Implementation + https://eclipse-ee4j.github.io/jaxb-ri/ + + + ${project.basedir}/exclude-runtime.xml + + --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.unmarshaller=jakarta.xml.bind + --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2=jakarta.xml.bind + --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2.runtime=jakarta.xml.bind + --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2=org.glassfish.jaxb.core + --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2.schemagen=org.glassfish.jaxb.core + --add-opens java.base/java.lang=org.glassfish.jaxb.runtime + --add-opens java.base/java.lang.reflect=org.glassfish.jaxb.runtime + --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2.runtime.reflect.opt=org.glassfish.jaxb.core + + ${project.build.directory}/generated-sources/txwc2 + + + + + ${project.groupId} + jaxb-core + + + + org.jvnet.staxex + stax-ex + true + + + com.sun.xml.fastinfoset + FastInfoset + true + + + + junit + junit + test + + + + + + + com.sun.istack + istack-commons-maven-plugin + + + quick-gen + process-resources + + quick-gen + + + org.glassfish.jaxb.runtime.v2.model.annotation + + jakarta.xml.bind.annotation.* + jakarta.xml.bind.annotation.adapters.* + + + + + + + + + + + + + + ${copyright.template} + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + org.glassfish.jaxb + txwc2 + ${project.version} + + + com.github.relaxng + relaxngDatatype + 2011.1 + runtime + + + net.java.dev.msv + xsdlib + 2022.7 + runtime + + + + + process-resources + + run + + + + + + + + + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-sources + generate-sources + + add-source + + + + ${txwc2.sources} + + + + + + + org.apache.felix + maven-bundle-plugin + + + ${vendor.name} + ${project.groupId} + ${project.version} - ${buildNumber} + + sun.misc;resolution:=optional, + jdk.internal.misc;resolution:=optional, + * + + * + =1.0.0)(!(version>=2.0.0)))";resolution:=optional + ]]> + + + + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-surefire-plugin + + target/test-out + 1 + true + + + + + diff --git a/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom.sha1 b/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom.sha1 new file mode 100644 index 000000000..1697bd838 --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom.sha1 @@ -0,0 +1 @@ +80394a0adfafdbde3a42d6486d7d2c95cff92fe0 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jaxb/txw2/4.0.5/_remote.repositories b/code/arachne/org/glassfish/jaxb/txw2/4.0.5/_remote.repositories new file mode 100644 index 000000000..bc35f64b3 --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/txw2/4.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +txw2-4.0.5.pom>central= diff --git a/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom b/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom new file mode 100644 index 000000000..f8ddd06af --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom @@ -0,0 +1,55 @@ + + + + 4.0.0 + + + com.sun.xml.bind.mvn + jaxb-txw-parent + 4.0.5 + ../pom.xml + + + org.glassfish.jaxb + txw2 + jar + TXW2 Runtime + + + TXW is a library that allows you to write XML documents. + + https://eclipse-ee4j.github.io/jaxb-ri/ + + + ${project.basedir}/exclude-txw-runtime.xml + all + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + TXW Runtime + + + + + + + + diff --git a/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom.sha1 b/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom.sha1 new file mode 100644 index 000000000..e600f5cff --- /dev/null +++ b/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom.sha1 @@ -0,0 +1 @@ +d5ec8832a8653dbf2c03ef6baca0337e6978d849 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/_remote.repositories new file mode 100644 index 000000000..977b1809c --- /dev/null +++ b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:57 EDT 2024 +jersey-container-servlet-core-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom new file mode 100644 index 000000000..e6766d178 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom @@ -0,0 +1,86 @@ + + + + + 4.0.0 + + + org.glassfish.jersey.containers + project + 3.1.6 + + + jersey-container-servlet-core + jar + jersey-container-servlet-core + + Jersey core Servlet 3.x implementation + + + + jakarta.servlet + jakarta.servlet-api + ${servlet6.version} + provided + + + jakarta.persistence + jakarta.persistence-api + + + jakarta.inject + jakarta.inject-api + + + + + + + com.sun.istack + istack-commons-maven-plugin + true + + + org.codehaus.mojo + build-helper-maven-plugin + true + + + org.apache.felix + maven-bundle-plugin + true + true + + + + + jakarta.persistence.*;resolution:=optional, + jakarta.servlet.*;version="[5.0,7.0)", + ${jakarta.annotation.osgi.version}, + * + + org.glassfish.jersey.servlet.* + + true + + + + + + diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom.sha1 new file mode 100644 index 000000000..3d9cd3e99 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom.sha1 @@ -0,0 +1 @@ +360244096d55cebf17dec26227207962412556c2 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/_remote.repositories new file mode 100644 index 000000000..4dbd5afbb --- /dev/null +++ b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:58 EDT 2024 +jersey-container-servlet-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom new file mode 100644 index 000000000..83688e22e --- /dev/null +++ b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom @@ -0,0 +1,88 @@ + + + + + 4.0.0 + + + org.glassfish.jersey.containers + project + 3.1.6 + + + jersey-container-servlet + jar + jersey-container-servlet + + Jersey core Servlet 3.x implementation + + + + jakarta.servlet + jakarta.servlet-api + ${servlet6.version} + provided + + + + org.glassfish.jersey.containers + jersey-container-servlet-core + ${project.version} + + + jakarta.servlet + jakarta.servlet-api + + + + + + + + + com.sun.istack + istack-commons-maven-plugin + true + + + org.codehaus.mojo + build-helper-maven-plugin + true + + + org.apache.felix + maven-bundle-plugin + true + true + + + + + jakarta.servlet.*;version="[5.0,7.0)", + ${jakarta.annotation.osgi.version}, + * + + + true + + + + + + diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom.sha1 new file mode 100644 index 000000000..abeaae0b4 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom.sha1 @@ -0,0 +1 @@ +beede1bfa3137bb113282f835af272041d693799 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/containers/project/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/containers/project/3.1.6/_remote.repositories new file mode 100644 index 000000000..0002d5a66 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/containers/project/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:57 EDT 2024 +project-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom b/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom new file mode 100644 index 000000000..7f6fb2196 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom @@ -0,0 +1,87 @@ + + + + + 4.0.0 + + + org.glassfish.jersey + project + 3.1.6 + + + org.glassfish.jersey.containers + project + pom + jersey-containers + + Jersey container providers umbrella project module + + + glassfish + grizzly2-http + grizzly2-servlet + jdk-http + jersey-servlet-core + jersey-servlet + jetty11-http + jetty-http + jetty-http2 + jetty-servlet + netty-http + simple-http + + + + + org.glassfish.jersey.core + jersey-common + ${project.version} + + + org.glassfish.jersey.core + jersey-server + ${project.version} + + + + jakarta.ws.rs + jakarta.ws.rs-api + + + jakarta.activation + jakarta.activation-api + + + + + + org.junit.jupiter + junit-jupiter + test + + + org.glassfish.jersey.inject + jersey-hk2 + ${project.version} + test + + + + diff --git a/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom.sha1 new file mode 100644 index 000000000..707c239d2 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom.sha1 @@ -0,0 +1 @@ +79c949899c9924c8d98a0e85a30138f57b5e9cf2 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/_remote.repositories new file mode 100644 index 000000000..a1e6fcb1b --- /dev/null +++ b/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:58 EDT 2024 +jersey-client-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom b/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom new file mode 100644 index 000000000..1ad3c457e --- /dev/null +++ b/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom @@ -0,0 +1,178 @@ + + + + + 4.0.0 + + + org.glassfish.jersey + project + 3.1.6 + + + org.glassfish.jersey.core + jersey-client + jar + jersey-core-client + + Jersey core client implementation + + + + + com.sun.istack + istack-commons-maven-plugin + true + + + org.codehaus.mojo + build-helper-maven-plugin + true + + + org.apache.maven.plugins + maven-compiler-plugin + false + + ${java.version} + ${java.version} + + + + + false + false + + + + org.apache.maven.plugins + maven-surefire-plugin + + + classesAndMethods + true + 1 + + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + package + + jar + + + + + + org.apache.felix + maven-bundle-plugin + true + + + + ${jakarta.annotation.osgi.version}, + * + + true + + + + + + + + + jakarta.ws.rs + jakarta.ws.rs-api + + + + org.glassfish.jersey.core + jersey-common + ${project.version} + + + + jakarta.inject + jakarta.inject-api + + + + + org.eclipse.angus + angus-activation + test + + + + org.junit.jupiter + junit-jupiter + test + + + + org.hamcrest + hamcrest + test + + + + org.mockito + mockito-core + test + + + + org.glassfish.jersey.inject + jersey-hk2 + ${project.version} + test + + + + + + sonar + + + + org.apache.maven.plugins + maven-surefire-plugin + + + false + + + + + + + + + + + + + diff --git a/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom.sha1 new file mode 100644 index 000000000..fe80701eb --- /dev/null +++ b/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom.sha1 @@ -0,0 +1 @@ +101bd5ce180515cecdb51f5242f10732b9fcdebb \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/_remote.repositories new file mode 100644 index 000000000..24df3c457 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:57 EDT 2024 +jersey-common-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom b/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom new file mode 100644 index 000000000..5977db6bb --- /dev/null +++ b/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom @@ -0,0 +1,298 @@ + + + + + 4.0.0 + + + org.glassfish.jersey + project + 3.1.6 + + + org.glassfish.jersey.core + jersey-common + jar + jersey-core-common + + Jersey core common packages + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + Except for Guava, JSR-166 files, Dropwizard Monitoring inspired classes, ASM and Jackson JAX-RS Providers. + See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md + + + The GNU General Public License (GPL), Version 2, With Classpath Exception + https://www.gnu.org/software/classpath/license.html + repo + Except for Guava, and JSR-166 files. + See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md + + + Apache License, 2.0 + http://www.apache.org/licenses/LICENSE-2.0.html + repo + Google Guava @ org.glassfish.jersey.internal.guava + + + Public Domain + https://creativecommons.org/publicdomain/zero/1.0/ + repo + JSR-166 Extension to JEP 266 @ org.glassfish.jersey.internal.jsr166 + + + + + + + ${basedir}/src/main/resources + true + + + + + + ${basedir}/src/test/resources + true + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${compiler.common.mvn.plugin.version} + false + + ${java.version} + ${java.version} + + + + + false + false + + + + com.sun.istack + istack-commons-maven-plugin + true + + + org.codehaus.mojo + build-helper-maven-plugin + true + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + package + + jar + + + + + + org.apache.felix + maven-bundle-plugin + true + true + + + + + sun.misc.*;resolution:=optional, + jakarta.activation.*;version="!";resolution:=optional, + javax.imageio;resolution:=optional, + javax.imageio.spi;resolution:=optional, + javax.imageio.stream;resolution:=optional, + jakarta.xml.bind;version="!";resolution:=optional, + jakarta.xml.bind.annotation;version="!";resolution:=optional, + jakarta.xml.bind.annotation.adapters;version="!";resolution:=optional, + javax.xml.namespace;resolution:=optional, + javax.xml.parsers;resolution:=optional, + javax.xml.transform;resolution:=optional, + javax.xml.transform.dom;resolution:=optional, + javax.xml.transform.sax;resolution:=optional, + javax.xml.transform.stream;resolution:=optional, + org.w3c.dom;resolution:=optional, + org.xml.sax;resolution:=optional, + ${jakarta.annotation.osgi.version}, + * + + lazy + org.glassfish.jersey.*;version=${project.version} + osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))" + + true + + + + org.codehaus.mojo + buildnumber-maven-plugin + + {0,date,yyyy-MM-dd HH:mm:ss} + + timestamp + + + + + validate + + create + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + default-test + + + **/ByteBufferInputStreamTest.java + + + + + tests-with-additional-permissions + test + + test + + + -Djava.security.policy=${project.build.directory}/test-classes/surefire-jdk17.policy + + **/ByteBufferInputStreamTest.java + + + + + + + classesAndMethods + true + 1 + + + + + + + + jakarta.ws.rs + jakarta.ws.rs-api + + + jakarta.annotation + jakarta.annotation-api + + + org.eclipse.angus + angus-activation + provided + true + + + org.osgi + org.osgi.core + provided + + + jakarta.inject + jakarta.inject-api + + + org.glassfish.hk2 + osgi-resource-locator + + + + org.junit.jupiter + junit-jupiter + test + + + org.mockito + mockito-core + test + + + org.hamcrest + hamcrest + test + + + + + + securityOff + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/SecurityManagerConfiguredTest.java + **/ReflectionHelperTest.java + + + + + + + + sonar + + + + org.apache.maven.plugins + maven-surefire-plugin + + + none + false + + + + + + + + + -Djava.security.manager -Djava.security.policy=${project.build.directory}/test-classes/surefire.policy + + + diff --git a/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom.sha1 new file mode 100644 index 000000000..0eb8939de --- /dev/null +++ b/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom.sha1 @@ -0,0 +1 @@ +ac78442ed2e1907967de44764ad4b329e4d895bd \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/_remote.repositories new file mode 100644 index 000000000..707e85d88 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:58 EDT 2024 +jersey-server-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom b/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom new file mode 100644 index 000000000..3216b0a7a --- /dev/null +++ b/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom @@ -0,0 +1,306 @@ + + + + + 4.0.0 + + + org.glassfish.jersey + project + 3.1.6 + + + org.glassfish.jersey.core + jersey-server + jar + jersey-core-server + + Jersey core server implementation + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + Except for Guava, JSR-166 files, Dropwizard Monitoring inspired classes, ASM and Jackson JAX-RS Providers. + See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md + + + The GNU General Public License (GPL), Version 2, With Classpath Exception + https://www.gnu.org/software/classpath/license.html + repo + Except for Dropwizard Monitoring inspired classes and ASM. + See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md + + + Apache License, 2.0 + http://www.apache.org/licenses/LICENSE-2.0.html + repo + Dropwizard Monitoring inspired classes @ org.glassfish.jersey.server.internal.monitoring.core + + + Modified BSD + https://asm.ow2.io/license.html + repo + ASM @ jersey.repackaged.org.objectweb.asm + + + + + + + ${basedir}/src/test/resources + true + + + + + + com.sun.istack + istack-commons-maven-plugin + true + + + org.codehaus.mojo + build-helper-maven-plugin + true + + + org.apache.felix + maven-bundle-plugin + true + true + + + + + org.glassfish.jersey.server.*;version=${project.version}, + com.sun.research.ws.wadl.*;version=${project.version} + + + ${jakarta.annotation.osgi.version}, + jakarta.xml.bind;version="!";resolution:=optional, + jakarta.xml.bind.annotation;version="!";resolution:=optional, + jakarta.xml.bind.annotation.adapters;version="!";resolution:=optional, + javax.xml.namespace;resolution:=optional, + javax.xml.parsers;resolution:=optional, + javax.xml.transform;resolution:=optional, + javax.xml.transform.sax;resolution:=optional, + javax.xml.transform.stream;resolution:=optional, + jakarta.validation.*;resolution:=optional;version="[3,4)", + * + + + true + + + + + com.sun.tools.xjc.maven2 + maven-jaxb-plugin + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jakarta.jaxb.api.version} + + + com.sun.xml.bind + jaxb-impl + ${jaxb.ri.version} + + + com.sun.xml.bind + jaxb-xjc + ${jaxb.ri.version} + + + + ${basedir}/src/main/java + com.sun.research.ws.wadl + ${basedir}/etc/catalog.xml + ${basedir}/etc + + wadl.xsd + + true + + + + org.apache.maven.plugins + maven-surefire-plugin + + + classes + true + 1 + 1C + true + ${project.basedir}/etc/systemPropertiesFile + + + + + + + + + org.glassfish.jersey.core + jersey-common + ${project.version} + + + + org.glassfish.jersey.core + jersey-client + ${project.version} + + + + jakarta.ws.rs + jakarta.ws.rs-api + + + + jakarta.annotation + jakarta.annotation-api + + + + jakarta.inject + jakarta.inject-api + + + + jakarta.validation + jakarta.validation-api + + + + com.sun.xml.bind + jaxb-osgi + test + + + + org.osgi + org.osgi.core + provided + + + jakarta.xml.bind + jakarta.xml.bind-api + provided + true + + + org.glassfish.jersey.media + jersey-media-jaxb + ${project.version} + test + + + org.junit.jupiter + junit-jupiter + test + + + org.hamcrest + hamcrest + test + + + + org.jboss + jboss-vfs + 3.2.6.Final + test + + + + org.glassfish.jersey.inject + jersey-hk2 + ${project.version} + test + + + + org.assertj + assertj-core + test + + + + + + securityOff + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/SecurityManagerConfiguredTest.java + + + + + + + + sonar + + + + org.apache.maven.plugins + maven-surefire-plugin + + + none + false + 1 + + + + maven-shade-plugin + + + shade-archive + none + + + + + + + + + + -Djava.security.manager -Djava.security.policy=${project.build.directory}/test-classes/server.policy + + + diff --git a/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom.sha1 new file mode 100644 index 000000000..0bd01eddd --- /dev/null +++ b/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom.sha1 @@ -0,0 +1 @@ +5db9ae7043bdc33c453cff2f79caecca47afde28 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/_remote.repositories new file mode 100644 index 000000000..ea03a47e5 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:58 EDT 2024 +jersey-bean-validation-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom b/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom new file mode 100644 index 000000000..863e1e4b1 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom @@ -0,0 +1,156 @@ + + + + + 4.0.0 + + + org.glassfish.jersey.ext + project + 3.1.6 + + + jersey-bean-validation + jersey-ext-bean-validation + + + Jersey extension module providing support for Bean Validation (JSR-349) API. + + + + + + com.sun.istack + istack-commons-maven-plugin + true + + + org.codehaus.mojo + build-helper-maven-plugin + true + + + org.apache.felix + maven-bundle-plugin + true + true + + + + org.glassfish.jersey.server.validation.*;version=${project.version} + + ${jakarta.annotation.osgi.version}, + ${cdi.osgi.version}, + jakarta.validation.*;resolution:=optional;version="${range;[==,4);${jakarta.validation.api.version}}", + jakarta.decorator.*;version="[3.0,5)", + * + + + true + + + + + + + + jakarta.inject + jakarta.inject-api + + + org.glassfish.jersey.core + jersey-common + ${project.version} + + + org.glassfish.jersey.core + jersey-server + ${project.version} + + + + jakarta.validation + jakarta.validation-api + + + org.hibernate.validator + hibernate-validator + + + jakarta.validation + jakarta.validation-api + + + jakarta.el + jakarta.el-api + + + org.jboss.logging + jboss-logging + + + + + org.jboss.logging + jboss-logging + ${jboss.logging.version} + + + jakarta.xml.bind + jakarta.xml.bind-api + true + + + jakarta.enterprise + jakarta.enterprise.cdi-api + true + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + ${project.version} + true + + + + + + jakarta.el + jakarta.el-api + + + org.glassfish.expressly + expressly + + + jakarta.el + jakarta.el-api + + + + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + ${project.version} + test + + + \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom.sha1 new file mode 100644 index 000000000..d7881a617 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom.sha1 @@ -0,0 +1 @@ +5cbd58608690386f0862b34e52f5fe224581899e \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/_remote.repositories new file mode 100644 index 000000000..6ed6104af --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +jersey-entity-filtering-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom b/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom new file mode 100644 index 000000000..e3c9f0556 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom @@ -0,0 +1,90 @@ + + + + + 4.0.0 + + + org.glassfish.jersey.ext + project + 3.1.6 + + + jersey-entity-filtering + jersey-ext-entity-filtering + + + Jersey extension module providing support for Entity Data Filtering. + + + + + jakarta.xml.bind + jakarta.xml.bind-api + provided + + + org.glassfish.jersey.core + jersey-client + ${project.version} + provided + + + org.glassfish.jersey.core + jersey-server + ${project.version} + provided + + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + ${project.version} + test + + + + + + + com.sun.istack + istack-commons-maven-plugin + true + + + org.codehaus.mojo + build-helper-maven-plugin + true + + + org.apache.felix + maven-bundle-plugin + true + true + + + org.glassfish.jersey.message.filtering.*;version=${project.version} + ${jakarta.annotation.osgi.version},* + + true + + + + + diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom.sha1 new file mode 100644 index 000000000..76c5abcd4 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom.sha1 @@ -0,0 +1 @@ +b69ed1030217fd4508d816322f7eb60d37c37be0 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/_remote.repositories new file mode 100644 index 000000000..c951a1427 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:58 EDT 2024 +jersey-spring6-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom b/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom new file mode 100644 index 000000000..8e0583dd4 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom @@ -0,0 +1,391 @@ + + + + + + 4.0.0 + + + org.glassfish.jersey.ext + project + 3.1.6 + + + jersey-spring6 + jersey-spring6 + + jar + + + Jersey extension module providing support for Spring 6 integration. + + + + UTF-8 + ${project.basedir}/target + ${project.basedir}/src/main/javaPre17 + ${project.basedir}/target17 + ${project.basedir}/src/main/java17 + + + + + Spring Repository + spring-repository + https://repo.spring.io/milestone + + + + + + org.glassfish.jersey.core + jersey-server + ${project.version} + + + + org.glassfish.jersey.inject + jersey-hk2 + ${project.version} + + + + org.glassfish.jersey.containers + jersey-container-servlet-core + ${project.version} + + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + ${project.version} + test + + + + commons-logging + commons-logging + test + + + + org.glassfish.hk2 + hk2 + ${hk2.version} + + + org.ow2.asm + asm + + + jakarta.annotation + jakarta.annotation-api + + + + + + org.glassfish.hk2 + spring-bridge + ${hk2.version} + + + jakarta.inject + jakarta.inject + + + org.glassfish.hk2 + hk2-api + + + org.springframework + spring-context + + + jakarta.inject + jakarta.inject-api + + + + + + org.springframework + spring-beans + ${spring6.version} + provided + + + + org.springframework + spring-core + ${spring6.version} + + + commons-logging + commons-logging + + + provided + + + + org.springframework + spring-context + ${spring6.version} + + + commons-logging + commons-logging + + + provided + + + + org.springframework + spring-web + ${spring6.version} + provided + + + + org.springframework + spring-aop + ${spring6.version} + provided + + + + jakarta.servlet + jakarta.servlet-api + ${servlet6.version} + provided + + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + ${project.version} + test + + + + org.aspectj + aspectjrt + 1.6.11 + test + + + org.aspectj + aspectjweaver + 1.6.11 + test + + + + + + + + com.sun.istack + istack-commons-maven-plugin + true + + + org.codehaus.mojo + build-helper-maven-plugin + true + + + + + + + SpringExclude + + [1.8,17) + + + ${java.build.outputDirectory} + + + org.codehaus.mojo + build-helper-maven-plugin + + + generate-sources + + add-source + + + + ${javaPre17.sourceDirectory} + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org/glassfish/jersey/server/spring/**/*.java + + + + + + + + SpringInclude + + [17,) + + + ${java17.build.outputDirectory} + + + org.codehaus.mojo + build-helper-maven-plugin + + + generate-sources + + add-source + + + + ${java17.sourceDirectory} + + + + + + + + + + copyJDK17FilesToMultiReleaseJar + + + + target17/classes/org/glassfish/jersey/server/spring/SpringWebApplicationInitializer.class + + [1.8,17) + + + + + org.apache.felix + maven-bundle-plugin + true + true + + + true + + + + + org.apache.maven.plugins + maven-resources-plugin + true + + + copy-jdk17-classes + prepare-package + + copy-resources + + + ${java.build.outputDirectory}/classes/META-INF/versions/17 + + + ${java17.build.outputDirectory}/classes + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + copy-jdk17-sources + package + + + + sources-jar: ${sources-jar} + + + + + + + run + + + + + + + + + delayed-strategy-skip-test + + + org.glassfish.jersey.injection.manager.strategy + delayed + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + true + + + + + + + HK2_JDK8_dependencyConvergence_skip + + 1.8 + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + dependencyConvergence + + + + + + + diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom.sha1 new file mode 100644 index 000000000..fe45b9285 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom.sha1 @@ -0,0 +1 @@ +e22ab45fdc363fcdeaf55dc69ba2a2562e5821e5 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/ext/project/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/ext/project/3.1.6/_remote.repositories new file mode 100644 index 000000000..e41161d74 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/project/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:58 EDT 2024 +project-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom b/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom new file mode 100644 index 000000000..023185d2a --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom @@ -0,0 +1,79 @@ + + + + + 4.0.0 + + org.glassfish.jersey + project + 3.1.6 + + + org.glassfish.jersey.ext + project + pom + jersey-extensions + + + Jersey extension modules providing utilities, filters as well as integrations + with external frameworks (Guice, Spring, Freemarker, etc.) and languages + (Scala, Groovy, etc.). + + NOTE: Jersey security extensions have their own dedicated security umbrella + project. + + + + bean-validation + cdi + entity-filtering + metainf-services + micrometer + mvc + mvc-bean-validation + mvc-freemarker + mvc-jsp + mvc-mustache + proxy-client + rx + spring6 + wadl-doclet + microprofile + + + + + jakarta.ws.rs + jakarta.ws.rs-api + + + + org.junit.jupiter + junit-jupiter + test + + + + org.glassfish.jersey.inject + jersey-hk2 + ${project.version} + test + + + diff --git a/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom.sha1 new file mode 100644 index 000000000..031beddd4 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom.sha1 @@ -0,0 +1 @@ +75698433a3c06a1a862a267746fd90d3376e543e \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/_remote.repositories new file mode 100644 index 000000000..7dae51e91 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:58 EDT 2024 +jersey-hk2-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom b/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom new file mode 100644 index 000000000..d981a2da5 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom @@ -0,0 +1,133 @@ + + + + + 4.0.0 + + + org.glassfish.jersey.inject + project + 3.1.6 + + + jersey-hk2 + jar + jersey-inject-hk2 + + HK2 InjectionManager implementation + + + + org.glassfish.jersey.core + jersey-common + ${project.version} + + + + org.glassfish.hk2 + hk2-locator + + + jakarta.annotation + jakarta.annotation-api + + + org.javassist + javassist + + + jakarta.inject + jakarta.inject-api + + + + + + org.javassist + javassist + + + + org.junit.jupiter + junit-jupiter + test + + + org.hamcrest + hamcrest + test + + + + + + + ${basedir}/src/main/resources + true + + + + + + com.sun.istack + istack-commons-maven-plugin + true + + + org.codehaus.mojo + build-helper-maven-plugin + true + + + org.apache.felix + maven-bundle-plugin + true + true + + + + org.glassfish.jersey.inject.hk2.*;version=${project.version} + + + sun.misc.*;resolution:=optional, + ${jakarta.annotation.osgi.version}, + ${hk2.jvnet.osgi.version}, + ${hk2.osgi.version}, + * + + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + package + + jar + + + + + + + diff --git a/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom.sha1 new file mode 100644 index 000000000..8316f2817 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom.sha1 @@ -0,0 +1 @@ +4ccf2c98501f331785238091a7c9aa3dbc0cd497 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/inject/project/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/inject/project/3.1.6/_remote.repositories new file mode 100644 index 000000000..93031a85c --- /dev/null +++ b/code/arachne/org/glassfish/jersey/inject/project/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:59 EDT 2024 +project-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom b/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom new file mode 100644 index 000000000..332ed0eea --- /dev/null +++ b/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom @@ -0,0 +1,40 @@ + + + + + 4.0.0 + + + org.glassfish.jersey + project + 3.1.6 + + + org.glassfish.jersey.inject + project + pom + jersey-inject + + Contains InjectionManager implementations + + + cdi2-se + hk2 + + diff --git a/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom.sha1 new file mode 100644 index 000000000..61db7d814 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom.sha1 @@ -0,0 +1 @@ +b5dff8bc0c4f8e7489dd89e301e3f0bd335632d8 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/_remote.repositories b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/_remote.repositories new file mode 100644 index 000000000..0b8ace8a8 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:48 EDT 2024 +jersey-bom-2.30.1.pom>local-repo= diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom new file mode 100644 index 000000000..84da67647 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom @@ -0,0 +1,425 @@ + + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.5 + + + + org.glassfish.jersey + jersey-bom + 2.30.1 + pom + jersey-bom + + Jersey Bill of Materials (BOM) + + + + + org.glassfish.jersey.core + jersey-common + ${project.version} + + + org.glassfish.jersey.core + jersey-client + ${project.version} + + + org.glassfish.jersey.core + jersey-server + ${project.version} + + + org.glassfish.jersey.bundles + jaxrs-ri + ${project.version} + + + org.glassfish.jersey.connectors + jersey-apache-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-jetty-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-jdk-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-netty-connector + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-jetty-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-grizzly2-servlet + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-jetty-servlet + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-jdk-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-netty-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-servlet + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-servlet-core + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-simple-http + ${project.version} + + + org.glassfish.jersey.containers.glassfish + jersey-gf-ejb + ${project.version} + + + org.glassfish.jersey.ext + jersey-bean-validation + ${project.version} + + + org.glassfish.jersey.ext + jersey-entity-filtering + ${project.version} + + + org.glassfish.jersey.ext + jersey-metainf-services + ${project.version} + + + org.glassfish.jersey.ext.microprofile + jersey-mp-config + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-bean-validation + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-freemarker + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-jsp + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-mustache + ${project.version} + + + org.glassfish.jersey.ext + jersey-proxy-client + ${project.version} + + + org.glassfish.jersey.ext + jersey-servlet-portability + ${project.version} + + + org.glassfish.jersey.ext + jersey-spring4 + ${project.version} + + + org.glassfish.jersey.ext + jersey-spring5 + ${project.version} + + + org.glassfish.jersey.ext + jersey-declarative-linking + ${project.version} + + + org.glassfish.jersey.ext + jersey-wadl-doclet + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-weld2-se + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-transaction + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-validation + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-servlet + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-ban-custom-hk2-binding + ${project.version} + + + org.glassfish.jersey.ext.rx + jersey-rx-client-guava + ${project.version} + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava + ${project.version} + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava2 + ${project.version} + + + org.glassfish.jersey.ext.microprofile + jersey-mp-rest-client + ${project.version} + + + org.glassfish.jersey.media + jersey-media-jaxb + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-jackson + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-jackson1 + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-jettison + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-processing + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-binding + ${project.version} + + + org.glassfish.jersey.media + jersey-media-kryo + ${project.version} + + + org.glassfish.jersey.media + jersey-media-moxy + ${project.version} + + + org.glassfish.jersey.media + jersey-media-multipart + ${project.version} + + + org.glassfish.jersey.media + jersey-media-sse + ${project.version} + + + org.glassfish.jersey.security + oauth1-client + ${project.version} + + + org.glassfish.jersey.security + oauth1-server + ${project.version} + + + org.glassfish.jersey.security + oauth1-signature + ${project.version} + + + org.glassfish.jersey.security + oauth2-client + ${project.version} + + + org.glassfish.jersey.inject + jersey-hk2 + ${project.version} + + + org.glassfish.jersey.inject + jersey-cdi2-se + ${project.version} + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + ${project.version} + pom + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-external + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-inmemory + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jdk-http + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-simple + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty + ${project.version} + + + org.glassfish.jersey.test-framework + jersey-test-framework-util + ${project.version} + + + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + true + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + false + true + + + + + + + + project-info + + false + + + + + + localhost + http://localhost + + + + + diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.lastUpdated b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.lastUpdated new file mode 100644 index 000000000..198f410c8 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:48 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139888472 +http\://0.0.0.0/.error=Could not transfer artifact org.glassfish.jersey\:jersey-bom\:pom\:2.30.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139888210 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139888216 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139888374 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139888424 diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.sha1 b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.sha1 new file mode 100644 index 000000000..74ba1930f --- /dev/null +++ b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.sha1 @@ -0,0 +1 @@ +aa4f64d1de70641e2b0919ca115ee44b6259d645 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/_remote.repositories new file mode 100644 index 000000000..3843731d7 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:29 EDT 2024 +jersey-bom-3.1.6.pom>ohdsi= diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom new file mode 100644 index 000000000..9a6268bbe --- /dev/null +++ b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom @@ -0,0 +1,462 @@ + + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.8 + + + + org.glassfish.jersey + jersey-bom + 3.1.6 + pom + jersey-bom + + Jersey Bill of Materials (BOM) + + + + + org.glassfish.jersey.core + jersey-common + ${project.version} + + + org.glassfish.jersey.core + jersey-client + ${project.version} + + + org.glassfish.jersey.core + jersey-server + ${project.version} + + + org.glassfish.jersey.bundles + jaxrs-ri + ${project.version} + + + org.glassfish.jersey.connectors + jersey-apache-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-apache5-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-helidon-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-jnh-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-jetty-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-jetty11-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-jetty-http2-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-jdk-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-netty-connector + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-jetty-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-jetty11-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-jetty-http2 + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-grizzly2-servlet + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-jetty-servlet + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-jdk-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-netty-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-servlet + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-servlet-core + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-simple-http + ${project.version} + + + org.glassfish.jersey.containers.glassfish + jersey-gf-ejb + ${project.version} + + + org.glassfish.jersey.ext + jersey-bean-validation + ${project.version} + + + org.glassfish.jersey.ext + jersey-entity-filtering + ${project.version} + + + org.glassfish.jersey.ext + jersey-micrometer + ${project.version} + + + org.glassfish.jersey.ext + jersey-metainf-services + ${project.version} + + + org.glassfish.jersey.ext.microprofile + jersey-mp-config + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-bean-validation + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-freemarker + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-jsp + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-mustache + ${project.version} + + + org.glassfish.jersey.ext + jersey-proxy-client + ${project.version} + + + org.glassfish.jersey.ext + jersey-spring6 + ${project.version} + + + org.glassfish.jersey.ext + jersey-declarative-linking + ${project.version} + + + org.glassfish.jersey.ext + jersey-wadl-doclet + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-weld2-se + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-transaction + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-validation + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-servlet + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-ban-custom-hk2-binding + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi-rs-inject + ${project.version} + + + org.glassfish.jersey.ext.rx + jersey-rx-client-guava + ${project.version} + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava + ${project.version} + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava2 + ${project.version} + + + org.glassfish.jersey.ext.microprofile + jersey-mp-rest-client + ${project.version} + + + org.glassfish.jersey.media + jersey-media-jaxb + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-jackson + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-jettison + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-processing + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-gson + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-binding + ${project.version} + + + org.glassfish.jersey.media + jersey-media-kryo + ${project.version} + + + org.glassfish.jersey.media + jersey-media-moxy + ${project.version} + + + org.glassfish.jersey.media + jersey-media-multipart + ${project.version} + + + org.glassfish.jersey.media + jersey-media-sse + ${project.version} + + + org.glassfish.jersey.security + oauth1-client + ${project.version} + + + org.glassfish.jersey.security + oauth1-server + ${project.version} + + + org.glassfish.jersey.security + oauth1-signature + ${project.version} + + + org.glassfish.jersey.security + oauth2-client + ${project.version} + + + org.glassfish.jersey.inject + jersey-hk2 + ${project.version} + + + org.glassfish.jersey.inject + jersey-cdi2-se + ${project.version} + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + ${project.version} + pom + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-external + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-inmemory + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jdk-http + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-simple + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty-http2 + ${project.version} + + + org.glassfish.jersey.test-framework + jersey-test-framework-util + ${project.version} + + + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + true + + + org.apache.maven.plugins + maven-site-plugin + 3.9.1 + + + + + + + project-info + + false + + + + + + localhost + http://localhost + + + + + diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.lastUpdated b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.lastUpdated new file mode 100644 index 000000000..8d39050a9 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:29 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.glassfish.jersey\:jersey-bom\:pom\:3.1.6 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139808808 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139808938 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139809104 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139809245 diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.sha1 new file mode 100644 index 000000000..7d1446cf4 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.sha1 @@ -0,0 +1 @@ +fcb234cf2a584fe1e71b5e7abfdfe3eaf7acdf5a \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/_remote.repositories new file mode 100644 index 000000000..b20d1463a --- /dev/null +++ b/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +jersey-media-json-jackson-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom b/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom new file mode 100644 index 000000000..a1724fa3d --- /dev/null +++ b/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom @@ -0,0 +1,187 @@ + + + + + 4.0.0 + + + org.glassfish.jersey.media + project + 3.1.6 + + + jersey-media-json-jackson + jar + jersey-media-json-jackson + + + Jersey JSON Jackson (2.x) entity providers support module. + + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + Except for Guava, JSR-166 files, Dropwizard Monitoring inspired classes, ASM and Jackson JAX-RS Providers. + See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md + + + The GNU General Public License (GPL), Version 2, With Classpath Exception + https://www.gnu.org/software/classpath/license.html + repo + Except for Jackson JAX-RS Providers. + See also https://github.com/jersey/jersey/blob/master/NOTICE.md + + + Apache License, 2.0 + http://www.apache.org/licenses/LICENSE-2.0.html + repo + Jackson JAX-RS Providers @ org.glassfish.jersey.jackson.internal.jackson.jaxrs + + + + + + + com.sun.istack + istack-commons-maven-plugin + true + + + org.codehaus.mojo + build-helper-maven-plugin + true + + + org.apache.felix + maven-bundle-plugin + true + true + + + org.glassfish.jersey.jackson.* + + ${jakarta.annotation.osgi.version}, + + + * + + + true + + + + + + + + org.glassfish.jersey.core + jersey-common + ${project.version} + + + jakarta.activation + jakarta.activation-api + + + + + org.glassfish.jersey.ext + jersey-entity-filtering + ${project.version} + + + + + + + + + + + + com.fasterxml.jackson.core + jackson-annotations + + + com.fasterxml.jackson.core + jackson-databind + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + + + jakarta.xml.bind + jakarta.xml.bind-api + + + jakarta.activation + jakarta.activation-api + + + true + provided + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + + + jakarta.xml.bind + jakarta.xml.bind-api + + + jakarta.activation + jakarta.activation-api + + + + + + + javax.xml.bind + jaxb-api + 2.3.1 + test + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.junit.jupiter + junit-jupiter + test + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + ${project.version} + test + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + ${jackson.version} + test + + + diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom.sha1 new file mode 100644 index 000000000..a14542e5c --- /dev/null +++ b/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom.sha1 @@ -0,0 +1 @@ +9b8556b66ef056b04689e68b5ee41e117214fafc \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/_remote.repositories new file mode 100644 index 000000000..6b40ea65c --- /dev/null +++ b/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:02 EDT 2024 +jersey-media-multipart-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom b/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom new file mode 100644 index 000000000..64fd6078e --- /dev/null +++ b/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom @@ -0,0 +1,139 @@ + + + + + 4.0.0 + + + org.glassfish.jersey.media + project + 3.1.6 + + + jersey-media-multipart + jar + jersey-media-multipart + + + Jersey Multipart entity providers support module. + + + + + + com.sun.istack + istack-commons-maven-plugin + true + + + org.codehaus.mojo + build-helper-maven-plugin + true + + + org.apache.felix + maven-bundle-plugin + true + + + + + + + org.glassfish.jersey.core + jersey-common + ${project.version} + + + org.glassfish.jersey.core + jersey-server + ${project.version} + true + + + + org.jvnet.mimepull + mimepull + ${mimepull.version} + + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + ${project.version} + pom + test + + + org.glassfish.jersey.connectors + jersey-apache-connector + ${project.version} + test + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + ${project.version} + test + + + + org.junit.jupiter + junit-jupiter + test + + + + + + JettyExclude + + [11,17) + + + + + org.apache.maven.plugins + maven-compiler-plugin + true + + + org/glassfish/jersey/media/multipart/internal/MultiPartHeaderModificationTest.java + + + + + + + + Jetty11 + + [17,) + + + + org.glassfish.jersey.connectors + jersey-jetty-connector + ${project.version} + test + + + + + diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom.sha1 new file mode 100644 index 000000000..d1df7ec6f --- /dev/null +++ b/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom.sha1 @@ -0,0 +1 @@ +fd222bc122e0f2eb4a9a5b262ebee18000afa11b \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/media/project/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/media/project/3.1.6/_remote.repositories new file mode 100644 index 000000000..8d7faa20c --- /dev/null +++ b/code/arachne/org/glassfish/jersey/media/project/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +project-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom b/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom new file mode 100644 index 000000000..cf28531dc --- /dev/null +++ b/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom @@ -0,0 +1,58 @@ + + + + + 4.0.0 + + + org.glassfish.jersey + project + 3.1.6 + + + org.glassfish.jersey.media + project + pom + jersey-media + + + Contains entity media type provider modules. + + + + jaxb + json-binding + json-gson + json-jackson + json-jettison + json-processing + moxy + multipart + sse + + + + + org.glassfish.jersey.inject + jersey-hk2 + ${project.version} + test + + + diff --git a/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom.sha1 new file mode 100644 index 000000000..d2c3f0ca5 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom.sha1 @@ -0,0 +1 @@ +24d5bf47372515717ad4e44575cf5c5aeb2c9edd \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/project/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/project/3.1.6/_remote.repositories new file mode 100644 index 000000000..0002d5a66 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/project/3.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:57 EDT 2024 +project-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom b/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom new file mode 100644 index 000000000..ab5409096 --- /dev/null +++ b/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom @@ -0,0 +1,2324 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.9 + + + org.glassfish.jersey + project + pom + 3.1.6 + jersey + + Eclipse Jersey is the open source (under dual EPL+GPL license) Jakarta RESTful WebServices 3.0 + production quality Reference Implementation for building RESTful Web Services. + + + https://projects.eclipse.org/projects/ee4j.jersey + + + + + JIRA + https://github.com/eclipse-ee4j/jersey/issues + + + + Hudson + http://hudson.glassfish.org/job/Jersey-trunk-multiplatform/ + + + 2010 + + + + Users List + jersey-dev@eclipse.org + + + + + + Jorge Bescos Gascon + Oracle Corporation + http://www.oracle.com/ + + + Lukas Jungmann + Oracle Corporation + http://www.oracle.com/ + + + Dmitry Kornilov + Oracle Corporation + http://www.oracle.com/ + https://dmitrykornilov.net + + + David Kral + Oracle Corporation + http://www.oracle.com/ + + + Tomas Kraus + Oracle Corporation + http://www.oracle.com/ + + + Tomas Langer + Oracle Corporation + http://www.oracle.com/ + + + Maxim Nesen + Oracle Corporation + http://www.oracle.com/ + + + Santiago Pericas-Geertsen + Oracle Corporation + http://www.oracle.com/ + + + Jan Supol + Oracle Corporation + http://www.oracle.com/ + http://blog.supol.info + + + + + + Petr Bouda + + + Pavel Bucek + Oracle Corporation + http://u-modreho-kralika.net/ + + + Michal Gajdos + http://blog.dejavu.sk + + + Petr Janouch + + + Libor Kramolis + + + Adam Lindenthal + + + Jakub Podlesak + Oracle Corporation + http://www.oracle.com/ + + + Marek Potociar + + + Stepan Vavra + + + + + + EPL 2.0 + http://www.eclipse.org/legal/epl-2.0 + repo + Except for 3rd content and examples. + See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md + + + GPL2 w/ CPE + https://www.gnu.org/software/classpath/license.html + repo + Except for 3rd content and examples. + See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md + + + EDL 1.0 + http://www.eclipse.org/org/documents/edl-v10.php + repo + The examples except bookstore-webapp example + + + BSD 2-Clause + https://opensource.org/licenses/BSD-2-Clause + repo + The bookstore-webapp example + + + Apache License, 2.0 + http://www.apache.org/licenses/LICENSE-2.0.html + repo + Google Guava @ org.glassfish.jersey.internal.guava, + Dropwizard Monitoring inspired classes @ org.glassfish.jersey.server.internal.monitoring.core, + Hibernate Validation classes @ org.glassfish.jersey.server.validation.internal.hibernate, and + Jackson JAX-RS Providers @ org.glassfish.jersey.jackson.internal.jackson.jaxrs + + + Public Domain + https://creativecommons.org/publicdomain/zero/1.0/ + repo + JSR-166 Extension to JEP 266 @ org.glassfish.jersey.internal.jsr166 + + + Modified BSD + https://asm.ow2.io/license.html + repo + ASM @ jersey.repackaged.org.objectweb.asm + + + jQuery license + jquery.org/license + repo + jQuery v1.12.4 + + + MIT license + http://www.opensource.org/licenses/mit-license.php + repo + AngularJS, Bootstrap v3.3.7, + jQuery Barcode plugin 0.3, KineticJS v4.7.1 + + + W3C license + https://www.w3.org/Consortium/Legal/copyright-documents-19990405 + repo + Content of core-server/etc + + + + + scm:git:git@github.com:jersey/jersey.git + scm:git:git@github.com:eclipse-ee4j/jersey.git + https://github.com/eclipse-ee4j/jersey + HEAD + + + + Eclipse Foundation + https://www.eclipse.org/org/foundation/ + + + + + + + org.glassfish.jersey.tools.plugins + jersey-doc-modulelist-maven-plugin + 1.0.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + ${enforcer.mvn.plugin.version} + + + enforce-versions + + enforce + + + + + ${java.version} + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + ${buildhelper.mvn.plugin.version} + + + generate-sources + + add-source + + + + ${project.build.directory}/generated-sources/rsrc-gen + + + + + initialize + parse-version + + parse-version + + + + + + com.sun.istack + istack-commons-maven-plugin + ${istack.mvn.plugin.version} + + + generate-sources + + rs-gen + + + + ${basedir}/src/main/resources + + **/localization.properties + + + ${project.build.directory}/generated-sources/rsrc-gen + org.glassfish.jersey.internal.l10n + + + + + + org.apache.maven.plugins + maven-clean-plugin + 2.5 + + + org.apache.maven.plugins + maven-compiler-plugin + ${compiler.mvn.plugin.version} + true + + + + + + + false + false + + + + org.apache.maven.plugins + maven-jar-plugin + ${jar.mvn.plugin.version} + + + org.apache.maven.plugins + maven-install-plugin + ${install.mvn.plugin.version} + + + org.apache.maven.plugins + maven-resources-plugin + ${resources.mvn.plugin.version} + true + + + + + copy-legaldocs + + copy-resources + + process-sources + + ${project.build.outputDirectory} + + + ${legal.source.folder} + META-INF/ + + NOTICE.md + LICENSE.md + + + + + + + + copy-legaldocs-to-sources + + copy-resources + + process-sources + + ${project.build.directory}/generated-sources/rsrc-gen + + + ${legal.source.folder} + META-INF/ + + NOTICE.md + LICENSE.md + + + + + + + + copy-legaldocs-to-osgi-bundles + + copy-resources + + process-sources + + ${project.build.directory}/legal + + + ${legal.source.folder} + META-INF/ + + NOTICE.md + LICENSE.md + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.mvn.plugin.version} + + + false + + + -Xmx${surefire.maxmem.argline}m -Dfile.encoding=UTF8 ${surefire.security.argline} ${surefire.coverage.argline} + + ${skip.tests} + + + junit.jupiter.execution.parallel.enabled=true + junit.jupiter.execution.parallel.mode.classes.default=same_thread + junit.jupiter.execution.parallel.mode.default=same_thread + + + + + jersey.config.test.container.port + ${jersey.config.test.container.port} + + + 124 + + + + org.apache.maven.surefire + surefire-logger-api + ${surefire.mvn.plugin.version} + + true + + + org.apache.maven.surefire + surefire-api + ${surefire.mvn.plugin.version} + true + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${assembly.mvn.plugin.version} + + posix + + + + org.apache.maven.plugins + maven-dependency-plugin + ${dependency.mvn.plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.mvn.plugin.version} + + Jersey ${jersey.version} API Documentation + Jersey ${jersey.version} API + + Oracle + and/or its affiliates. + All Rights Reserved. Use is subject to license terms.]]> + + + https://jakartaee.github.io/rest/apidocs/3.0.0/ + https://javaee.github.io/hk2/apidocs/ + https://eclipse-ee4j.github.io/jersey.github.io/apidocs/latest/jersey/ + + + *.internal.*:*.innate.*:*.tests.* + + false + + org.glassfish.jersey.*:* + + + bundles/** + module-info.java + + true + none + 256m + + + + attach-javadocs + package + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + ${source.mvn.plugin.version} + + + attach-sources + package + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-deploy-plugin + ${deploy.mvn.plugin.version} + + 10 + + + + org.ops4j.pax.exam + maven-paxexam-plugin + ${paxexam.mvn.plugin.version} + + + generate-config + + generate-depends-file + + + + + + felix + + + + + org.apache.maven.plugins + maven-site-plugin + ${site.mvn.plugin.version} + + + org.codehaus.mojo + exec-maven-plugin + ${exec.mvn.plugin.version} + + + + java + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${jxr.mvn.plugin.version} + + + + jxr + + validate + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.mvn.plugin.version} + + etc/config/checkstyle.xml + etc/config/checkstyle-suppressions.xml + ${project.build.directory}/checkstyle/checkstyle-result.xml + + + + com.puppycrawl.tools + checkstyle + ${checkstyle.version} + + + + com.sun + tools + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.mvn.plugin.version} + + ${findbugs.skip} + ${findbugs.threshold} + ${findbugs.exclude} + true + true + + -Dfindbugs.glassfish.logging.validLoggerPrefixes=${findbugs.glassfish.logging.validLoggerPrefixes} + + + org.glassfish.findbugs + findbugs-logging-detectors + ${findbugs.glassfish.version} + + + + + + org.glassfish.findbugs + findbugs + ${findbugs.glassfish.version} + + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${failsafe.mvn.plugin.version} + + + false + ${skip.tests} + ${skip.tests} + ${failsafe.coverage.argline} + + + jersey.config.test.container.port + ${jersey.config.test.container.port} + + + + + + + integration-test + verify + + + + + + org.apache.maven.plugins + maven-war-plugin + ${war.mvn.plugin.version} + + false + + + + org.apache.maven.plugins + maven-ear-plugin + ${ear.mvn.plugin.version} + + + org.glassfish.embedded + maven-embedded-glassfish-plugin + ${gfembedded.mvn.plugin.version} + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + etc/config/copyright-exclude + + git + + false + + true + + false + + false + + false + etc/config/copyright.txt + etc/config/edl-copyright.txt + + + + org.apache.felix + maven-bundle-plugin + ${felix.mvn.plugin.version} + true + + + <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@))) + <_nodefaultversion>false + {maven-resources},${project.build.directory}/legal + + + + + osgi-bundle + package + + bundle + + + + + + org.codehaus.mojo + xml-maven-plugin + ${xml.mvn.plugin.version} + + + com.sun.tools.xjc.maven2 + maven-jaxb-plugin + 1.1.1 + + + org.codehaus.mojo + buildnumber-maven-plugin + ${buildnumber.mvn.plugin.version} + + + + org.eclipse.jetty.ee10 + jetty-ee10-maven-plugin + ${jetty.plugin.version} + + + org.glassfish.build + gfnexus-maven-plugin + 0.16 + + + + + org.glassfish.jersey:project:${project.version}:pom + com.sun.jersey + + + + glassfish-integration + JERSEY-${project.version} + + + + org.apache.maven.plugins + maven-shade-plugin + ${shade.mvn.plugin.version} + + + shade-archive + + shade + + + false + + + *:* + + module-info.* + + + + + + + + false + true + true + + false + + + + org.apache.maven.plugins + maven-antrun-plugin + ${antrun.mvn.plugin.version} + + + org.apache.ant + ant + 1.10.12 + + + + + org.fortasoft + gradle-maven-plugin + 1.0.8 + + + com.github.wvengen + proguard-maven-plugin + ${proguard.mvn.plugin.version} + + + net.sf.proguard + proguard-base + 6.2.2 + runtime + + + + + org.apache.maven.plugins + maven-compiler-plugin + true + + ${java.version} + ${java.version} + + + + + base-compile + + compile + + + + + module-info.java + + + + + + + + + + org.commonjava.maven.plugins + directory-maven-plugin + 1.0 + + + directories + + highest-basedir + + initialize + + legal.source.folder + + + + + + org.glassfish.jersey.tools.plugins + jersey-doc-modulelist-maven-plugin + false + + docs/src/main/docbook/modules.xml + docs/src/main/docbook/inc/modules.src + docs/src/main/docbook/inc/modules_table_header.src + docs/src/main/docbook/inc/modules_table_footer.src + docs/src/main/docbook/inc/modules_table_row.src + false + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + org.apache.maven.plugins + maven-source-plugin + + + org.apache.maven.plugins + maven-resources-plugin + + + org.codehaus.mojo + build-helper-maven-plugin + ${buildhelper.mvn.plugin.version} + + + jersey.config.test.container.port + jersey.config.test.container.stop.port + + + + + reserve-port + process-test-classes + + reserve-network-port + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + verify + validate + + + check + + + etc/config/checkstyle-verify.xml + true + true + true + **/module-info.java + + + + + + + + org.glassfish + findbugs + 3.2-b06 + + + + + + + + testsSkip + + false + + + skipTests + true + + + + + true + true + + + + checkstyleSkip + + false + + + true + + + + findbugsSkip + + false + + + true + + + + testsIncluded + + false + + !tests.excluded + + + + tests + + + + examplesIncluded + + false + + !examples.excluded + + + + examples + + + + bundlesIncluded + + false + + !bundles.excluded + + + + bundles + + + + testFrameworkIncluded + + false + + !test-framework.excluded + + + + test-framework + + + + pre-release + + docs + + + false + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + + + + xdk + + + xdk + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + true + + + ${xdk.absolute.path} + + + xerces:xercesImpl + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-property + + enforce + + + + + xdk.absolute.path + Property 'xdk.absolute.path' has to be specified. + .*/xmlparserv2.jar$ + + Property 'xdk.absolute.path' has to point to the xdk parser jar (xmlparserv2.jar). + + + + true + + + + + + + + + moxy + + + moxy + + + + + org.eclipse.persistence + org.eclipse.persistence.moxy + ${moxy.version} + + + + + securityOff + + + + + + project-info + + false + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.4.5 + + + + dependencies + index + + + + + + + + + + localhost + http://localhost + + + + + sonar + + + + + jacoco + + + reuseReports + + ${session.executionRootDirectory}/target + + ${jacoco.outputDir}/jacoco.exec + + ${jacoco.outputDir}/jacoco-it.exec + + + true + + + ${jacoco.agent.ut.arg} + ${jacoco.agent.it.arg} + + + 0.7.4.201502262128 + 3.2 + 2.6 + + + + org.codehaus.sonar-plugins.java + sonar-jacoco-listeners + ${sonar-jacoco-listeners.version} + test + + + + + + org.jacoco + jacoco-maven-plugin + ${jacoco.version} + + + + prepare-ut-agent + process-test-classes + + prepare-agent + + + ${sonar.jacoco.reportPath} + jacoco.agent.ut.arg + true + + + + + prepare-it-agent + pre-integration-test + + prepare-agent + + + ${sonar.jacoco.itReportPath} + jacoco.agent.it.arg + true + + + + + + jacoco-report-unit-tests + test + + report + + + + ${sonar.jacoco.reportPath} + + ${project.build.directory}/jacoco + + + + jacoco-report-integration-tests + post-integration-test + + report-integration + + + + ${sonar.jacoco.itReportPath} + + ${project.build.directory}/jacoco-it + + + + + + + + + org.codehaus.mojo + sonar-maven-plugin + ${sonar.version} + + + org.apache.maven.plugins + maven-surefire-plugin + + + + + listener + org.sonar.java.jacoco.JUnitListener + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + + listener + org.sonar.java.jacoco.JUnitListener + + + + ${project.build.directory}/surefire-reports + + + + + + + + + travis_e2e_skip + + true + + + + + travis_e2e + + false + true + + + + + eclipse_repo + + + + true + + repo.jaxrs-api.eclipse.org + JAX-RS API Repository - Snapshots + https://repo.eclipse.org/content/repositories/jax-rs-api-snapshots + + + + + license_check + + + dash-licenses-snapshots + https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/ + + false + + + + dash-licenses-releases + https://repo.eclipse.org/content/repositories/dash-licenses-releases/ + + true + + + + + + + org.eclipse.dash + license-tool-plugin + 1.0.2 + + + license-check + + license-check + + + DEPENDENCIES + true + REVIEW_SUMMARY + + + + + + + + + + + true + + + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.mvn.plugin.version} + + + + ${findbugs.skip} + ${findbugs.threshold} + ${findbugs.exclude} + true + + -Dfindbugs.glassfish.logging.validLoggerPrefixes=${findbugs.glassfish.logging.validLoggerPrefixes} + + + org.glassfish.findbugs + findbugs-logging-detectors + ${findbugs.glassfish.version} + + + + + findbugs + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.4.1 + + false + + Jersey ${jersey.version} API Documentation + Jersey ${jersey.version} API + + Oracle + and/or its affiliates. + All Rights Reserved. Use is subject to license terms.]]> + + + com.sun.ws.rs.ext:*.examples.*:*.internal.*:*.tests.* + + + https://jax-rs.github.io/apidocs/2.1 + https://javaee.github.io/hk2/apidocs/ + + none + + module-info.java + + + + + + aggregate + + + + + + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.3 + + + + jxr + + + + + false + + aggregate + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.mvn.plugin.version} + + etc/config/checkstyle.xml + etc/config/checkstyle-suppressions.xml + + + + + checkstyle + + + + + + + + + archetypes + bom + connectors + containers + + core-common + core-server + core-client + + ext + incubator + inject + media + security + + + + + + jakarta.ws.rs + jakarta.ws.rs-api + ${jaxrs.api.impl.version} + + + jakarta.annotation + jakarta.annotation-api + ${jakarta.annotation.version} + + + + jakarta.enterprise + jakarta.enterprise.cdi-api + ${cdi.api.version} + + + + jakarta.transaction + jakarta.transaction-api + ${jta.api.version} + + + + jakarta.activation + jakarta.activation-api + ${jakarta.activation-api.version} + + + jakarta.servlet + jakarta.servlet-api + ${servlet6.version} + + + + org.eclipse.angus + angus-activation + ${jakarta.activation.version} + + + + + + org.glassfish.hk2 + hk2-locator + ${hk2.version} + + + org.glassfish.hk2 + hk2-utils + ${hk2.version} + + + + org.glassfish.hk2 + hk2-api + ${hk2.version} + + + jakarta.inject + jakarta.inject-api + + + + + org.glassfish.hk2 + osgi-resource-locator + 1.0.3 + + + org.glassfish.main.hk2 + hk2-config + ${hk2.config.version} + + + jakarta.inject + jakarta.inject-api + ${jakarta.inject.version} + + + org.glassfish.hk2.external + aopalliance-repackaged + ${hk2.version} + + + org.javassist + javassist + ${javassist.version} + + + + org.glassfish.grizzly + grizzly-http-server + ${grizzly2.version} + + + org.glassfish.grizzly + grizzly-http2 + ${grizzly2.version} + + + org.glassfish.grizzly + grizzly-http-servlet + ${grizzly2.version} + + + org.glassfish.grizzly + grizzly-websockets + ${grizzly2.version} + + + org.glassfish.grizzly + connection-pool + ${grizzly2.version} + + + org.glassfish.grizzly + grizzly-http-client + ${grizzly.client.version} + + + org.glassfish.grizzly + grizzly-npn-api + ${grizzly.npn.version} + + + + io.netty + netty-all + ${netty.version} + + + + org.apache.httpcomponents + httpclient + ${httpclient.version} + + + org.apache.httpcomponents.client5 + httpclient5 + ${httpclient5.version} + + + + org.eclipse.jetty + jetty-util + ${jetty.version} + + + org.eclipse.jetty + jetty-client + ${jetty.version} + + + org.eclipse.jetty.http2 + jetty-http2-client + ${jetty.version} + + + org.eclipse.jetty.http2 + jetty-http2-client-transport + ${jetty.version} + + + org.eclipse.jetty + jetty-server + ${jetty.version} + + + org.eclipse.jetty + jetty-security + ${jetty.version} + + + org.eclipse.jetty.http2 + jetty-http2-server + ${jetty.version} + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + ${jetty.version} + + + org.eclipse.jetty.ee10 + jetty-ee10-webapp + ${jetty.version} + + + + org.simpleframework + simple-http + ${simple.version} + + + + org.simpleframework + simple-transport + ${simple.version} + + + + org.simpleframework + simple-common + ${simple.version} + + + + org.codehaus.jettison + jettison + ${jettison.version} + + + stax + stax-api + + + + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jakarta.jaxb.api.version} + + + + com.sun.xml.bind + jaxb-impl + ${jaxb.ri.version} + + + com.sun.xml.bind + jaxb-osgi + ${jaxb.ri.version} + + + + org.eclipse.persistence + org.eclipse.persistence.moxy + ${moxy.version} + + + + jakarta.persistence + jakarta.persistence-api + ${jakarta.persistence.version} + provided + + + + jakarta.ejb + jakarta.ejb-api + ${ejb.version} + provided + + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + ${jackson.version} + + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + ${jackson.version} + + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version} + + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version} + + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version} + + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + ${jackson.version} + + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + ${jackson.version} + + + + xerces + xercesImpl + ${xerces.version} + + + + org.osgi + org.osgi.core + ${osgi.version} + provided + + + + org.osgi + org.osgi.compendium + ${osgi.compendium.version} + provided + + + + org.osgi + org.osgi.service.cm + ${osgi.service.cm.version} + provided + + + + org.glassfish.main.ejb + ejb-container + ${gf.impl.version} + + + org.glassfish.main.common + container-common + ${gf.impl.version} + + + + + com.fasterxml + classmate + ${fasterxml.classmate.version} + + + jakarta.el + jakarta.el-api + ${jakarta.el.version} + + + org.glassfish.expressly + expressly + ${jakarta.el.impl.version} + + + + jakarta.json + jakarta.json-api + ${jakarta.jsonp.version} + + + org.eclipse.parsson + parsson + ${jsonp.ri.version} + + + org.eclipse.parsson + parsson-media + ${jsonp.jaxrs.version} + + + + org.hibernate.validator + hibernate-validator + ${validation.impl.version} + + + + org.hibernate.validator + hibernate-validator-cdi + ${validation.impl.version} + + + + org.ops4j.pax.web + pax-web-jetty-bundle + ${pax.web.version} + + + org.ops4j.pax.web + pax-web-extender-war + ${pax.web.version} + + + org.openjdk.jmh + jmh-core + ${jmh.version} + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh.version} + + + com.esotericsoftware + kryo + ${kryo.version} + + + + commons-logging + commons-logging + ${commons.logging.version} + + + + + org.jboss.weld.se + weld-se-core + ${weld.version} + + + org.jboss.weld.servlet + weld-servlet + ${weld.version} + + + + jakarta.validation + jakarta.validation-api + ${jakarta.validation.api.version} + + + + + + org.ops4j.pax.exam + pax-exam + ${pax.exam.version} + test + + + + org.ops4j.pax.exam + pax-exam-junit4 + ${pax.exam.version} + test + + + + org.ops4j.pax.exam + pax-exam-container-forked + ${pax.exam.version} + test + + + + org.ops4j.pax.exam + pax-exam-junit-extender-impl + 1.2.4 + test + + + + org.ops4j.pax.exam + pax-exam-link-mvn + ${pax.exam.version} + test + + + + org.junit + junit-bom + ${junit5.version} + pom + import + + + org.testng + testng + ${testng.version} + test + + + org.assertj + assertj-core + 3.21.0 + test + + + + org.awaitility + awaitility + 4.1.1 + test + + + + org.hamcrest + hamcrest + ${hamcrest.version} + test + + + org.jmockit + jmockit + ${jmockit.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + org.xmlunit + xmlunit-core + ${xmlunit.version} + test + + + org.bouncycastle + bcprov-jdk15on + ${bouncycastle.version} + test + + + org.bouncycastle + bcmail-jdk15on + ${bouncycastle.version} + test + + + + org.apache.felix + org.apache.felix.framework + ${felix.framework.version} + test + + + + org.apache.felix + org.apache.felix.eventadmin + ${felix.eventadmin.version} + test + + + + org.apache.felix + org.apache.felix.framework.security + ${felix.framework.security.version} + test + + + + jakarta.json.bind + jakarta.json.bind-api + ${jsonb.api.version} + + + + org.eclipse + yasson + ${yasson.version} + + + + com.google.code.gson + gson + ${gson.version} + + + + io.opentracing + opentracing-api + ${opentracing.version} + + + + io.opentracing + opentracing-util + ${opentracing.version} + + + + + + + 3.2.1 + + false + Low + + + + jakarta.enterprise + + 11 + + + UTF-8 + UTF-8 + + + false + false + + + + 1024 + + ${failsafe.coverage.argline} + + + 3.1.0 + 3.7.1 + 3.4.1 + 3.2.0 + 3.5.0 + 3.2.0 + 3.3.1 + 10.14.2 + 3.13.0 + + 3.9.0 + 3.6.1 + 3.1.1 + 3.3.0 + 3.2.5 + 5.1.9 + 3.0.5 + 5.1 + 3.1.1 + 4.2.0 + 3.3.0 + 3.6.3 + 3.3.2 + 1.2.4 + 2.6.1 + 3.3.1 + 3.5.2 + 3.12.1 + 3.3.0 + 3.2.5 + 3.4.0 + 2.11.0 + 1.1.0 + 3.3.0 + + + + ${project.version} + 1.8.0.Final + 3.0.1.Final + + + 9.7 + + 1.9.22 + + 1.70 + 2.15.1 + 1.16.1 + + 1.3.1 + 1.7.0 + 1.6.4 + 2.8.4 + 7.0.5 + 1.7 + 2.3.32 + 2.0.25 + 4.0.20 + 2.10.1 + + + + 0.27.0 + 3.0.2 + + + + 1.12.4 + 1.0.12 + + + 3.0.3 + 3.0.1 + 3.2.6 + 3.2.6 + 1.4.14 + 3.7.1 + + 31.1-jre + 2.2 + 2.9.1 + 4.5.14 + 5.3.1 + 2.17.0 + 3.30.2-GA + 3.5.3.Final + 1.3.7 + 1.37 + 1.49 + 4.13.2 + 5.10.2 + 1.10.2 + 1.10.0 + 4.0.3 + 3.12.4 + 0.9.11 + 4.1.108.Final + 0.33.0 + 6.0.0 + 1.10.0 + 5.0.0 + 1.6.0 + 4.13.4 + 0.7.4 + 1.0.4 + 1.3.8 + 2.2.21 + + 4.0.3 + 6.0.0 + + 6.0.1 + 2.0.12 + 6.0.18 + 7.9.0 + 6.9.13.6 + + 5.1.1.Final + 3.1.9.Final + 8.0.1.Final + + 2.27.2 + 2.12.2 + + + 20.3.13 + + + 7.0.6 + + 4.0.1 + jakarta.enterprise.*;version="[3.0,5)" + 4.0.1 + 4.0.2 + 1.16 + 2.0.0 + 3.0.6 + org.glassfish.hk2.*;version="[3.0,4)" + org.jvnet.hk2.*;version="[3.0,4)" + 7.0.4 + 3.1.1 + 3.0.0 + 2.0.1 + 4.1.2 + 2.1.3 + 2.0.2 + 5.0.1 + 5.0.0 + jakarta.annotation.*;version="[2.0,3)" + 2.1.1 + 2.0.1 + 2.1.0 + 2.1.3 + 3.1.0 + 3.0.2 + 4.0.2 + 4.0.5 + 3.1 + 3.1.0 + org.eclipse.jetty.*;version="[11,15)" + 12.0.7 + 9.4.54.v20240208 + 11.0.20 + 12.0.8 + 3.0.1 + 1.1.5 + 1.1.5 + 4.0.2 + 3.0.3 + + + 1.3.2 + 1.9.15 + + \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom.sha1 new file mode 100644 index 000000000..d50be93bd --- /dev/null +++ b/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom.sha1 @@ -0,0 +1 @@ +b6614699033eb6cb0d51de2fc3e6ddf3a56c72f4 \ No newline at end of file diff --git a/code/arachne/org/glassfish/json/2.0.1/_remote.repositories b/code/arachne/org/glassfish/json/2.0.1/_remote.repositories new file mode 100644 index 000000000..cf79d81d1 --- /dev/null +++ b/code/arachne/org/glassfish/json/2.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:43 EDT 2024 +json-2.0.1.pom>central= diff --git a/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom b/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom new file mode 100644 index 000000000..f22b70979 --- /dev/null +++ b/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom @@ -0,0 +1,464 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.6 + + + org.glassfish + json + pom + 2.0.1 + Jakarta JSON Processing + Jakarta JSON Processing defines a Java(R) based framework for parsing, generating, transforming, and querying JSON documents. + https://github.com/eclipse-ee4j/jsonp + + + scm:git:git://github.com/eclipse-ee4j/jsonp.git + scm:git:git@github.com:eclipse-ee4j/jsonp.git + https://github.com/eclipse-ee4j/jsonp + HEAD + + + + + Eclipse Public License 2.0 + https://projects.eclipse.org/license/epl-2.0 + repo + + + GNU General Public License, version 2 with the GNU Classpath Exception + https://projects.eclipse.org/license/secondary-gpl-2.0-cp + repo + + + + + + m0mus + Dmitry Kornilov + Oracle + + project lead + + + + lukasj + Lukas Jungmann + Oracle + + dev lead + + + + + + jakarta.json + org.glassfish + 2.0 + 2.1 + 2.1.0 + ${project.version} + 2.1.0 + false + ${maven.multiModuleProjectDirectory} + ${project.root.location}/etc/config + ${config.dir}/copyright-exclude + ${config.dir}/copyright.txt + false + true + false + ${config.dir}/exclude.xml + false + Low + 4.2.2 + + 2.0.1 + + 2.0.0 + 3.0.1 + 3.0.0 + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [11,) + + + [3.6.0,) + + + + + + + + org.commonjava.maven.plugins + directory-maven-plugin + + + find-project-root + validate + + highest-basedir + + + project.root.location + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 9 + + -Xlint:all + + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + ${copyright.templatefile} + ${copyright.exclude} + + ${copyright.scmonly} + + ${copyright.update} + + ${copyright.ignoreyear} + false + + + + + check + + verify + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-legal-resource + generate-resources + + add-resource + + + + + ${legal.doc.source} + + NOTICE.md + LICENSE.md + + META-INF + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + + false + true + + + + + + org.apache.maven.plugins + maven-release-plugin + + forked-path + false + ${release.arguments} + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + org.commonjava.maven.plugins + directory-maven-plugin + 0.3.1 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + + org.glassfish.build + spec-version-maven-plugin + 2.1 + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + + org.apache.felix + maven-bundle-plugin + 5.1.1 + + + <_noextraheaders>true + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.2 + + + org.apache.maven.plugins + maven-resources-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-clean-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-site-plugin + 3.9.1 + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M5 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.3.0 + + + + + + + + + jakarta.ws.rs + jakarta.ws.rs-api + ${jakarta.ws.rs-api.version} + + + jakarta.annotation + jakarta.annotation-api + ${jakarta.annotation-api.version} + + + jakarta.json + jakarta.json-api + ${jakarta.json-api.version} + + + org.glassfish + jakarta.json + ${project.version} + + + org.glassfish + jakarta.json + module + ${project.version} + + + org.glassfish + jsonp-jaxrs + ${project.version} + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jakarta.xml.bind-api.version} + + + junit + junit + 4.13.2 + + + org.hamcrest + hamcrest-core + 1.3 + test + + + + + + impl + jaxrs + bundles + + + + + all + + + + + jakarta.servlet + jakarta.servlet-api + 5.0.0 + + + com.sun.xml.bind + jaxb-impl + 3.0.0 + + + + + + gf + demos + + + + + + + org.apache.maven.plugins + maven-war-plugin + 3.3.1 + + false + + + + org.codehaus.mojo + wagon-maven-plugin + 2.0.2 + + + org.codehaus.mojo + exec-maven-plugin + 3.0.0 + + + + + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + ${spotbugs.skip} + ${spotbugs.threshold} + true + + ${spotbugs.exclude} + + true + + + + + + diff --git a/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom.sha1 b/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom.sha1 new file mode 100644 index 000000000..58e05e085 --- /dev/null +++ b/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom.sha1 @@ -0,0 +1 @@ +4a84173c664e552e4cf6906b7a7b971f263f6bcb \ No newline at end of file diff --git a/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/_remote.repositories b/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/_remote.repositories new file mode 100644 index 000000000..b07202f8e --- /dev/null +++ b/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:08 EDT 2024 +js-scriptengine-1.0.0-rc15.pom>central= diff --git a/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom b/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom new file mode 100644 index 000000000..ab0b61f71 --- /dev/null +++ b/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom @@ -0,0 +1,36 @@ + + + 4.0.0 + org.graalvm.js + js-scriptengine + 1.0.0-rc15 + http://www.graalvm.org/ + Graaljs Scriptengine + Graal JavaScript ScriptEngine + + + Truffle and Graal developers + graalvm-users@oss.oracle.com + Graal + http://www.graalvm.org/ + + + + + Universal Permissive License, Version 1.0 + http://opensource.org/licenses/UPL + + + + + org.graalvm.sdk + graal-sdk + 1.0.0-rc15 + + + + scm:git:https://github.com/graalvm/graaljs.git + scm:git:git@github.com:graalvm/graaljs.git + https://github.com/graalvm/graaljs + + diff --git a/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom.sha1 b/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom.sha1 new file mode 100644 index 000000000..d49f87029 --- /dev/null +++ b/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom.sha1 @@ -0,0 +1 @@ +d527593e1d76688d3208b49796721b0ababb496c \ No newline at end of file diff --git a/code/arachne/org/graalvm/js/js/1.0.0-rc15/_remote.repositories b/code/arachne/org/graalvm/js/js/1.0.0-rc15/_remote.repositories new file mode 100644 index 000000000..fca046cbb --- /dev/null +++ b/code/arachne/org/graalvm/js/js/1.0.0-rc15/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +js-1.0.0-rc15.pom>central= diff --git a/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom b/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom new file mode 100644 index 000000000..12183fa3b --- /dev/null +++ b/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom @@ -0,0 +1,80 @@ + + + 4.0.0 + org.graalvm.js + js + 1.0.0-rc15 + http://www.graalvm.org/ + Graaljs + Graal JavaScript engine + + + Truffle and Graal developers + graalvm-users@oss.oracle.com + Graal + http://www.graalvm.org/ + + + + + Universal Permissive License, Version 1.0 + http://opensource.org/licenses/UPL + + + MIT License + http://opensource.org/licenses/MIT + + + + + org.graalvm.regex + regex + 1.0.0-rc15 + + + org.graalvm.truffle + truffle-api + 1.0.0-rc15 + + + org.graalvm.sdk + graal-sdk + 1.0.0-rc15 + + + org.ow2.asm + asm + 6.2.1 + + + org.ow2.asm + asm-tree + 6.2.1 + + + org.ow2.asm + asm-analysis + 6.2.1 + + + org.ow2.asm + asm-commons + 6.2.1 + + + org.ow2.asm + asm-util + 6.2.1 + + + com.ibm.icu + icu4j + 62.1 + + + + scm:git:https://github.com/graalvm/graaljs.git + scm:git:git@github.com:graalvm/graaljs.git + https://github.com/graalvm/graaljs + + diff --git a/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom.sha1 b/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom.sha1 new file mode 100644 index 000000000..b50123cfa --- /dev/null +++ b/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom.sha1 @@ -0,0 +1 @@ +9f31a02b3d388d400ac810251ec99b39da5adfea \ No newline at end of file diff --git a/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/_remote.repositories b/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/_remote.repositories new file mode 100644 index 000000000..c313e18de --- /dev/null +++ b/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +regex-1.0.0-rc15.pom>central= diff --git a/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom b/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom new file mode 100644 index 000000000..a789a822b --- /dev/null +++ b/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom @@ -0,0 +1,36 @@ + + + 4.0.0 + org.graalvm.regex + regex + 1.0.0-rc15 + http://www.graalvm.org/ + Tregex + Truffle regular expressions language. + + + Truffle and Graal developers + graalvm-users@oss.oracle.com + Graal + http://www.graalvm.org/ + + + + + GNU General Public License, version 2, with the Classpath Exception + http://openjdk.java.net/legal/gplv2+ce.html + + + + + org.graalvm.truffle + truffle-api + 1.0.0-rc15 + + + + scm:git:https://github.com/oracle/graal.git + scm:git:git@github.com:oracle/graal.git + https://github.com/oracle/graal + + diff --git a/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom.sha1 b/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom.sha1 new file mode 100644 index 000000000..d34a72820 --- /dev/null +++ b/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom.sha1 @@ -0,0 +1 @@ +ea6c5f60b772e7c11328ca653fadf397459c0a29 \ No newline at end of file diff --git a/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/_remote.repositories b/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/_remote.repositories new file mode 100644 index 000000000..79a19652b --- /dev/null +++ b/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +graal-sdk-1.0.0-rc15.pom>central= diff --git a/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom b/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom new file mode 100644 index 000000000..0e3ea4ab9 --- /dev/null +++ b/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom @@ -0,0 +1,30 @@ + + + 4.0.0 + org.graalvm.sdk + graal-sdk + 1.0.0-rc15 + https://github.com/oracle/graal + Graal Sdk + GraalVM is an ecosystem for compiling and running applications written in multiple languages. +GraalVM removes the isolation between programming languages and enables interoperability in a shared runtime. + + + Graal developers + graal-dev@openjdk.java.net + Graal + https://github.com/oracle/graal + + + + + Universal Permissive License, Version 1.0 + http://opensource.org/licenses/UPL + + + + scm:git:https://github.com/oracle/graal.git + scm:git:git@github.com:oracle/graal.git + https://github.com/oracle/graal + + diff --git a/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom.sha1 b/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom.sha1 new file mode 100644 index 000000000..d701bf341 --- /dev/null +++ b/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom.sha1 @@ -0,0 +1 @@ +34b0518e508e5f49b8f63d9f153af23d02ca6a90 \ No newline at end of file diff --git a/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/_remote.repositories b/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/_remote.repositories new file mode 100644 index 000000000..47a4e208f --- /dev/null +++ b/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +truffle-api-1.0.0-rc15.pom>central= diff --git a/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom b/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom new file mode 100644 index 000000000..5816f1487 --- /dev/null +++ b/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom @@ -0,0 +1,37 @@ + + + 4.0.0 + org.graalvm.truffle + truffle-api + 1.0.0-rc15 + http://openjdk.java.net/projects/graal + Truffle API + Truffle is a multi-language framework for executing dynamic languages +that achieves high performance when combined with Graal. + + + Truffle and Graal developers + graal-dev@openjdk.java.net + Graal + https://github.com/oracle/graal + + + + + Universal Permissive License, Version 1.0 + http://opensource.org/licenses/UPL + + + + + org.graalvm.sdk + graal-sdk + 1.0.0-rc15 + + + + scm:git:https://github.com/oracle/graal.git + scm:git:git@github.com:oracle/graal.git + https://github.com/oracle/graal/tree/master/truffle + + diff --git a/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom.sha1 b/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom.sha1 new file mode 100644 index 000000000..d13eac4fe --- /dev/null +++ b/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom.sha1 @@ -0,0 +1 @@ +45223ab851dcd1545715f7ef6a3fe2150f099ce5 \ No newline at end of file diff --git a/code/arachne/org/hamcrest/hamcrest-core/2.2/_remote.repositories b/code/arachne/org/hamcrest/hamcrest-core/2.2/_remote.repositories new file mode 100644 index 000000000..3b3a5aa16 --- /dev/null +++ b/code/arachne/org/hamcrest/hamcrest-core/2.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:12 EDT 2024 +hamcrest-core-2.2.pom>central= diff --git a/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom b/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom new file mode 100644 index 000000000..de574f4e6 --- /dev/null +++ b/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom @@ -0,0 +1,43 @@ + + + 4.0.0 + org.hamcrest + hamcrest-core + 2.2 + Hamcrest Core + Core Hamcrest API - deprecated, please use "hamcrest" instead + http://hamcrest.org/JavaHamcrest/ + + + BSD License 3 + http://opensource.org/licenses/BSD-3-Clause + + + + + joewalnes + Joe Walnes + + + npryce + Nat Pryce + + + sf105 + Steve Freeman + + + + git@github.com:hamcrest/JavaHamcrest.git + https://github.com/hamcrest/JavaHamcrest + + + + org.hamcrest + hamcrest + 2.2 + compile + + + diff --git a/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom.sha1 b/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom.sha1 new file mode 100644 index 000000000..46f902e7e --- /dev/null +++ b/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom.sha1 @@ -0,0 +1 @@ +399ab31a6a84f36c84a9f50b9ba82fd890436391 \ No newline at end of file diff --git a/code/arachne/org/hamcrest/hamcrest/2.2/_remote.repositories b/code/arachne/org/hamcrest/hamcrest/2.2/_remote.repositories new file mode 100644 index 000000000..8b4a3c553 --- /dev/null +++ b/code/arachne/org/hamcrest/hamcrest/2.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:08 EDT 2024 +hamcrest-2.2.pom>central= diff --git a/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom b/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom new file mode 100644 index 000000000..89489bc7d --- /dev/null +++ b/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom @@ -0,0 +1,35 @@ + + + 4.0.0 + org.hamcrest + hamcrest + 2.2 + Hamcrest + Core API and libraries of hamcrest matcher framework. + http://hamcrest.org/JavaHamcrest/ + + + BSD License 3 + http://opensource.org/licenses/BSD-3-Clause + + + + + joewalnes + Joe Walnes + + + npryce + Nat Pryce + + + sf105 + Steve Freeman + + + + git@github.com:hamcrest/JavaHamcrest.git + https://github.com/hamcrest/JavaHamcrest + + diff --git a/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom.sha1 b/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom.sha1 new file mode 100644 index 000000000..63a50066f --- /dev/null +++ b/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom.sha1 @@ -0,0 +1 @@ +98624f676c4d263b568816b0af5d4f552a2d0501 \ No newline at end of file diff --git a/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom b/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom new file mode 100644 index 000000000..6bb9e4bd0 --- /dev/null +++ b/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom @@ -0,0 +1,268 @@ + + + 4.0.0 + + org.hdrhistogram + HdrHistogram + 2.1.12 + + HdrHistogram + + http://hdrhistogram.github.io/HdrHistogram/ + + + HdrHistogram supports the recording and analyzing sampled data value + counts across a configurable integer value range with configurable value + precision within the range. Value precision is expressed as the number of + significant digits in the value recording, and provides control over value + quantization behavior across the value range and the subsequent value + resolution at any given level. + + + + + + * This code was Written by Gil Tene of Azul Systems, and released to the + * public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/ + + Public Domain, per Creative Commons CC0 + http://creativecommons.org/publicdomain/zero/1.0/ + + + BSD-2-Clause + https://opensource.org/licenses/BSD-2-Clause + + + + + + giltene + Gil Tene + https://github.com/giltene + + + + + scm:git:git://github.com/HdrHistogram/HdrHistogram.git + scm:git:git://github.com/HdrHistogram/HdrHistogram.git + scm:git:git@github.com:HdrHistogram/HdrHistogram.git + HdrHistogram-2.1.12 + + + + + https://github.com/HdrHistogram/HdrHistogram/issues + GitHub Issues + + + bundle + + + UTF-8 + src/main/java/org/HdrHistogram/Version.java.template + src/main/java/org/HdrHistogram/Version.java + + 4.12 + 5.5.2 + 5.5.2 + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + + + + + org.apache.felix + maven-bundle-plugin + 2.5.3 + true + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + true + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.0-M1 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + 1.7 + 1.7 + UTF-8 + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M3 + + false + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + true + false + release + deploy + + + + com.google.code.maven-replacer-plugin + maven-replacer-plugin + 1.4.0 + + + process-sources + + replace + + + + + ${version.template.file} + ${version.file} + + + \$BUILD_TIME\$ + ${maven.build.timestamp} + + + \$VERSION\$ + ${project.version} + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 2.8 + + + copy-installed + package + + copy + + + + + ${project.groupId} + ${project.artifactId} + ${project.version} + ${project.packaging} + HdrHistogram.jar + + + ${project.basedir} + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + org.junit.jupiter + junit-jupiter-api + ${junit.jupiter.version} + test + + + org.junit.jupiter + junit-jupiter-params + ${junit.jupiter.version} + test + + + junit + junit + ${junit.version} + test + + + org.junit.jupiter + junit-jupiter-engine + ${junit.jupiter.version} + test + + + org.junit.vintage + junit-vintage-engine + ${junit.vintage.version} + test + + + + diff --git a/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom.sha1 b/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom.sha1 new file mode 100644 index 000000000..0c5ef577b --- /dev/null +++ b/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom.sha1 @@ -0,0 +1 @@ +9797702ee3e52e4be6bfbbc9fd20ac5447e7a541 \ No newline at end of file diff --git a/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/_remote.repositories b/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/_remote.repositories new file mode 100644 index 000000000..be1e7071a --- /dev/null +++ b/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:53 EDT 2024 +HdrHistogram-2.1.12.pom>central= diff --git a/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/_remote.repositories b/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/_remote.repositories new file mode 100644 index 000000000..51a6775ae --- /dev/null +++ b/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:01 EDT 2024 +hibernate-commons-annotations-6.0.6.Final.pom>central= diff --git a/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom b/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom new file mode 100644 index 000000000..166731324 --- /dev/null +++ b/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom @@ -0,0 +1,45 @@ + + + + + + + + 4.0.0 + org.hibernate.common + hibernate-commons-annotations + 6.0.6.Final + Hibernate Commons Annotations + Common reflection code used in support of annotation processing + http://hibernate.org + + Hibernate.org + http://hibernate.org + + + + GNU Library General Public License v2.1 or later + http://www.opensource.org/licenses/LGPL-2.1 + repo + See discussion at http://hibernate.org/community/license/ for more details. + + + + + hibernate-team + The Hibernate Development Team + Hibernate.org + http://hibernate.org + + + + scm:git:http://github.com/hibernate/hibernate-commons-annotations.git + scm:git:git@github.com:hibernate/hibernate-commons-annotations.git + http://github.com/hibernate/hibernate-commons-annotations + + + jira + https://hibernate.atlassian.net/browse/HCANN + + diff --git a/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom.sha1 b/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom.sha1 new file mode 100644 index 000000000..35d24a503 --- /dev/null +++ b/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom.sha1 @@ -0,0 +1 @@ +dd707f7aeac4e43c47b88ae6a5580bf04871e40f \ No newline at end of file diff --git a/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/_remote.repositories b/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/_remote.repositories new file mode 100644 index 000000000..0e989ceb3 --- /dev/null +++ b/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:04 EDT 2024 +hibernate-validator-8.0.1.Final.pom>central= diff --git a/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom b/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom new file mode 100644 index 000000000..fee19e5d0 --- /dev/null +++ b/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom @@ -0,0 +1,25 @@ + + + + 4.0.0 + + org.hibernate.validator + hibernate-validator-relocation + 8.0.1.Final + + + org.hibernate + hibernate-validator + Hibernate Validator Engine - Relocation Artifact + + + + org.hibernate.validator + + + diff --git a/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 b/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 new file mode 100644 index 000000000..4529ae3e4 --- /dev/null +++ b/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 @@ -0,0 +1 @@ +15eff2861af28fd2edf398bc0752dd47adb4fa70 \ No newline at end of file diff --git a/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/_remote.repositories b/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/_remote.repositories new file mode 100644 index 000000000..0fe23f9a7 --- /dev/null +++ b/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:01 EDT 2024 +hibernate-core-6.4.4.Final.pom>central= diff --git a/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom b/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom new file mode 100644 index 000000000..2a7aa9ebc --- /dev/null +++ b/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom @@ -0,0 +1,183 @@ + + + 4.0.0 + org.hibernate.orm + hibernate-core + 6.4.4.Final + Hibernate ORM - hibernate-core + Hibernate's core ORM functionality + https://hibernate.org/orm + + Hibernate.org + https://hibernate.org + + + + GNU Library General Public License v2.1 or later + https://www.opensource.org/licenses/LGPL-2.1 + repo + See discussion at https://hibernate.org/community/license/ for more details. + + + + + hibernate-team + The Hibernate Development Team + Hibernate.org + https://hibernate.org + + + + scm:git:https://github.com/hibernate/hibernate-orm.git + scm:git:git@github.com:hibernate/hibernate-orm.git + https://github.com/hibernate/hibernate-orm + + + jira + https://hibernate.atlassian.net/browse/HHH + + + + + org.apache.logging.log4j + log4j-core + [2.17.1, 3) + + + + + + jakarta.persistence + jakarta.persistence-api + 3.1.0 + compile + + + xml-apis + xml-apis + + + + + jakarta.transaction + jakarta.transaction-api + 2.0.1 + compile + + + xml-apis + xml-apis + + + + + org.jboss.logging + jboss-logging + 3.5.0.Final + runtime + + + xml-apis + xml-apis + + + + + org.hibernate.common + hibernate-commons-annotations + 6.0.6.Final + runtime + + + xml-apis + xml-apis + + + + + io.smallrye + jandex + 3.1.2 + runtime + + + xml-apis + xml-apis + + + + + com.fasterxml + classmate + 1.5.1 + runtime + + + xml-apis + xml-apis + + + + + net.bytebuddy + byte-buddy + 1.14.11 + runtime + + + xml-apis + xml-apis + + + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + runtime + + + xml-apis + xml-apis + + + + + org.glassfish.jaxb + jaxb-runtime + 4.0.2 + runtime + + + xml-apis + xml-apis + + + + + jakarta.inject + jakarta.inject-api + 2.0.1 + runtime + + + xml-apis + xml-apis + + + + + org.antlr + antlr4-runtime + 4.13.0 + runtime + + + xml-apis + xml-apis + + + + + diff --git a/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom.sha1 b/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom.sha1 new file mode 100644 index 000000000..2f18232ba --- /dev/null +++ b/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom.sha1 @@ -0,0 +1 @@ +328422c000874cac5d5605324c036384c9a2a266 \ No newline at end of file diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/_remote.repositories b/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/_remote.repositories new file mode 100644 index 000000000..4a85081fb --- /dev/null +++ b/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:54 EDT 2024 +hibernate-validator-parent-8.0.1.Final.pom>central= diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom b/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom new file mode 100644 index 000000000..1dfe99d8d --- /dev/null +++ b/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom @@ -0,0 +1,1562 @@ + + + + 4.0.0 + + org.hibernate.validator + hibernate-validator-parent + 8.0.1.Final + pom + + Hibernate Validator Aggregator + http://hibernate.org/validator + Aggregator of the Hibernate Validator modules. + + + + epbernard + Emmanuel Bernard + emmanuel@hibernate.org + Red Hat, Inc. + http://in.relation.to/emmanuel-bernard/ + + + hardy.ferentschik + Hardy Ferentschik + hferents@redhat.com + Red Hat, Inc. + http://in.relation.to/hardy-ferentschik/ + + + gunnar.morling + Gunnar Morling + gunnar@hibernate.org + Red Hat, Inc. + http://in.relation.to/gunnar-morling/ + + + kevinpollet + Kevin Pollet + kevin.pollet@serli.com + SERLI + http://www.serli.com/ + + + davide.dalto + Davide D'Alto + davide@hibernate.org + Red Hat, Inc. + http://in.relation.to/davide-dalto/ + + + guillaume.smet + Guillaume Smet + guillaume.smet@hibernate.org + Red Hat, Inc. + http://in.relation.to/guillaume-smet/ + + + marko.bekhta + Marko Bekhta + marko.prykladna@gmail.com + http://in.relation.to/marko-bekhta/ + + + + + + George Gastaldi + gegastaldi@gmail.com + + + + + + hibernate-dev + hibernate-dev@lists.jboss.org + + + + + test-utils + build-config + engine + tck-runner + annotation-processor + performance + cdi + modules + integration + + + + + + 6.0.10.Final + + + + https://jakarta.ee/specifications/bean-validation/3.0/jakarta-bean-validation-spec-3.0.html + https://docs.oracle.com/en/java/javase/11/docs/api + http://docs.oracle.com/javase/8/docs/technotes + https://jakarta.ee/specifications/platform/9/apidocs + https://openjfx.io/openjfx-docs/ + https://jakarta.ee/specifications/bean-validation/3.0/apidocs + http://javamoney.github.io/apidocs + + + + org.hibernate.validator + org.hibernate.validator.cdi + + + + 3.0.2 + 3.0.1 + + 2.8 + 5.0.1 + 5.0.0 + 3.4.3.Final + 2.2.1.Final + + + 27.0.0.Alpha4 + + + + ${version.wildfly} + + + 1.5.1 + 2.9.7 + 1.7.22 + 2.17.1 + + + 4.0.1 + 5.1.1.Final + 5.0.0.Alpha3 + 4.0.1 + 2.1.0 + 2.1.1 + 2.0.1 + 3.1.0 + 3.1.0 + + + 1.0.1 + 1.1 + 1.3.2 + + + 1.2 + + + 11.0.2 + + + 1.7.0.Alpha10 + 6.14.3 + + 3.8.0 + 4.13.1 + 3.4 + 4.1.2 + 2.4.12 + 31.1-jre + 5.3.22 + 3.0.2.Final + 2.13.2.2 + 2.13.2 + 1.13.0 + + + 4.2.0 + 4.12.0 + 2.5.4 + 6.0.0 + 5.2020.2 + 2.3.1 + + 1 + + + 8.38 + + + + 2.2.2 + 1.0.6.Final + 2.0.0.Final + 9.3.2.0 + 2.5.3 + 1.5.0-alpha.18 + + + + 1.8 + 3.4.2 + 3.0.0 + 5.1.4 + 3.1.1 + 3.0.0 + 3.8.1 + 0.0.6 + 3.0.2 + 1.4.0 + 2.8.2 + 3.0.0 + 3.2 + 1.6 + 3.0.1 + 2.5.2 + 0.11.0 + 3.0.2 + 1.11.1 + 3.0.1 + 3.0 + 2.5.3 + 3.0.2 + 3.1.0 + 1.6 + 3.0.1 + 2.21.0 + 9.2 + ${version.surefire.plugin} + 1.2.1.Final + 14.0.0.Final + 2.1.0.Final + 5.0.3 + 1.6.8 + + + forbidden-junit.txt + + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + https://oss.sonatype.org/ + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + + https://repo.maven.apache.org/maven2/ + + + + . + + UTF-8 + UTF-8 + + + + 11 + ${java.home} + ${java-version.main.compiler.java_home}/bin/javac + + + + ${java.specification.version} + ${java.home} + ${java-version.test.compiler.java_home}/bin/javac + + ${java-version.test.compiler.java_home} + ${java-version.test.launcher.java_home}/bin/java + generate-test-sources + + + true + + + ${java-version.main.release} + ${java-version.main.release} + ${java-version.test.release} + ${java-version.test.release} + ${java-version.main.release} + ${java-version.test.release} + + + + + + + + + + + -Dmaven.repo.local=${settings.localRepository} + + ${surefire.jvm.args.additional} ${surefire.jvm.args.add-opens} ${surefire.jvm.args.illegal-access} ${surefire.jvm.args.shrinkwrap} ${surefire.jvm.args.java-version} ${surefire.jvm.args.commandline} + ${surefire.jvm.args.additional} ${surefire.jvm.args.add-opens} ${surefire.jvm.args.illegal-access} ${surefire.jvm.args.shrinkwrap} ${surefire.jvm.args.java-version} ${surefire.jvm.args.commandline} + + + default + + + + -Duser.language=en ${arquillian.wildfly.jvm.args.add-opens} ${arquillian.wildfly.jvm.args.add-modules} + + + 17 + 3.3.1 + + + + + + ${project.groupId} + hibernate-validator + ${project.version} + + + ${project.groupId} + hibernate-validator-test-utils + ${project.version} + + + ${project.groupId} + hibernate-validator-cdi + ${project.version} + + + ${project.groupId} + hibernate-validator-annotation-processor + ${project.version} + + + ${project.groupId} + hibernate-validator-modules + ${project.version} + wildfly-${version.wildfly}-patch + zip + + + + jakarta.validation + jakarta.validation-api + ${version.jakarta.validation-api} + + + org.jboss.logging + jboss-logging + ${version.org.jboss.logging.jboss-logging} + + + org.jboss.logging + jboss-logging-processor + ${version.org.jboss.logging.jboss-logging-tools} + + + org.jboss.logging + jboss-logging-annotations + ${version.org.jboss.logging.jboss-logging-tools} + + + org.glassfish.expressly + expressly + ${version.org.glassfish.expressly} + + + com.fasterxml + classmate + ${version.com.fasterxml.classmate} + + + joda-time + joda-time + ${version.joda-time} + + + javax.money + money-api + ${version.javax.money} + + + org.javamoney + moneta + ${version.org.javamoney.moneta} + + + org.openjfx + javafx-base + ${version.org.openjfx} + + + net.bytebuddy + byte-buddy + ${version.net.bytebuddy.byte-buddy} + + + org.osgi + org.osgi.core + ${version.org.osgi.core} + + + org.apache.logging.log4j + log4j-core + ${version.org.apache.logging.log4j} + + + org.apache.logging.log4j + log4j-core + test-jar + ${version.org.apache.logging.log4j} + + + org.slf4j + slf4j-api + ${version.org.slf4j} + + + org.apache.logging.log4j + log4j-slf4j-impl + ${version.org.apache.logging.log4j} + + + jakarta.persistence + jakarta.persistence-api + ${version.jakarta.persistence-api} + + + junit + junit + ${version.junit} + + + org.testng + testng + ${version.org.testng} + + + org.codehaus.groovy + groovy-jsr223 + ${version.org.codehaus.groovy} + + + org.easymock + easymock + ${version.org.easymock} + + + org.assertj + assertj-core + ${version.org.assertj.assertj-core} + + + io.rest-assured + rest-assured + ${version.io.rest-assured} + + + org.jboss.arquillian + arquillian-bom + ${version.org.jboss.arquillian} + pom + import + + + jakarta.annotation + jakarta.annotation-api + ${version.jakarta.annotation-api} + + + javax.annotation + javax.annotation-api + ${version.javax.annotation-api} + + + jakarta.inject + jakarta.inject-api + ${version.jakarta.inject-api} + + + jakarta.ws.rs + jakarta.ws.rs-api + ${version.jakarta.ws.rs-api} + + + jakarta.interceptor + jakarta.interceptor-api + ${version.jakarta.interceptor-api} + + + jakarta.ejb + jakarta.ejb-api + ${version.jakarta.ejb-api} + + + jakarta.enterprise + jakarta.enterprise.cdi-api + ${version.jakarta.enterprise.cdi-api} + + + jakarta.interceptor + jakarta.interceptor-api + + + jakarta.el + jakarta.el-api + + + + + org.jboss.weld + weld-core-impl + ${version.org.jboss.weld.weld} + + + org.wildfly.arquillian + wildfly-arquillian-container-managed + ${version.org.wildfly.arquillian} + + + sun.jdk + jconsole + + + + + org.jboss.arquillian.container + arquillian-weld-embedded + ${version.org.jboss.arquillian.container.arquillian-weld-embedded} + test + + + com.thoughtworks.paranamer + paranamer + ${version.com.thoughtworks.paranamer} + + + com.google.guava + guava + ${version.com.google.guava} + test + + + org.springframework + spring-expression + ${version.org.springframework.spring-expression} + test + + + com.fasterxml.jackson.core + jackson-databind + ${version.com.fasterxml.jackson.core.jackson-databind} + test + + + com.fasterxml.jackson.core + jackson-annotations + ${version.com.fasterxml.jackson.core.jackson-annotations} + test + + + javax.inject + javax.inject + ${version.javax.inject} + + + + + + + + maven-enforcer-plugin + ${version.enforcer.plugin} + + + enforce-java + + enforce + + + + + [${jdk.min.version},) + + + ${maven.min.version} + + + + javax.validation:validation-api + org.glassfish:javax.el + javax.annotation:javax.annotation-api + org.jboss.spec.javax.interceptor:jboss-interceptors-api_1.2_spec + javax.enterprise:cdi-api + javax.persistence:javax.persistence-api + + + javax.annotation:javax.annotation-api:*:*:test + + + + + + + + + com.mycila + license-maven-plugin + + + + + + maven-antrun-plugin + ${version.antrun.plugin} + + + maven-clean-plugin + ${version.clean.plugin} + + + maven-jar-plugin + ${version.jar.plugin} + + + + ${project.artifactId} + ${project.version} + ${project.parent.groupId} + ${project.parent.groupId} + http://hibernate.org/validator/ + + + + + + maven-compiler-plugin + ${version.compiler.plugin} + + + -Aorg.jboss.logging.tools.addGeneratedAnnotation=false + + -parameters + + + + default-compile + + true + ${java-version.main.compiler} + + + + default-testCompile + + true + ${java-version.test.compiler} + + + + + + maven-checkstyle-plugin + ${version.checkstyle.plugin} + + + ${project.groupId} + hibernate-validator-build-config + ${project.version} + + + + com.puppycrawl.tools + checkstyle + ${puppycrawl.checkstyle.version} + + + org.slf4j + jcl-over-slf4j + ${version.org.slf4j} + + + org.slf4j + slf4j-jdk14 + ${version.org.slf4j} + + + + checkstyle.xml + true + true + error + true + false + true + **/*.xml,**/*.properties + + + **/org/hibernate/validator/internal/xml/binding/*.java, + **/Log_$logger.java, + **/Messages_$bundle.java, + **/ConcurrentReferenceHashMap.java, + **/TypeHelper*.java, + **/TckRunner.java + + + + + check-style + verify + + check + + + + + + de.thetaphi + forbiddenapis + ${version.forbiddenapis.plugin} + + + false + true + + **.IgnoreForbiddenApisErrors + + + + org.hibernate.validator + hibernate-validator-build-config + ${project.version} + jar + forbidden-common.txt + + + org.hibernate.validator + hibernate-validator-build-config + ${project.version} + jar + ${forbiddenapis-junit.path} + + + + + + check-main + + check + + verify + + + + jdk-system-out + jdk-non-portable + + + jdk-unsafe-1.8 + jdk-unsafe-9 + jdk-unsafe-10 + jdk-unsafe-11 + jdk-unsafe-12 + jdk-unsafe-13 + jdk-unsafe-14 + jdk-unsafe-15 + jdk-unsafe-16 + jdk-unsafe-17 + + jdk-deprecated-1.8 + jdk-deprecated-9 + jdk-deprecated-10 + jdk-deprecated-11 + jdk-deprecated-12 + jdk-deprecated-13 + jdk-deprecated-14 + jdk-deprecated-15 + jdk-deprecated-16 + jdk-deprecated-17 + + jdk-internal-1.8 + jdk-internal-9 + jdk-internal-10 + jdk-internal-11 + jdk-internal-12 + jdk-internal-13 + jdk-internal-14 + jdk-internal-15 + jdk-internal-16 + jdk-internal-17 + + + + + check-test + + testCheck + + verify + + + jdk-deprecated + + + + + + + com.mycila + license-maven-plugin + ${version.license.plugin} + +
${hibernate-validator-parent.path}/build-config/src/main/resources/license.header
+ true + + ${hibernate-validator-parent.path}/build-config/src/main/resources/java-header-style.xml + ${hibernate-validator-parent.path}/build-config/src/main/resources/xml-header-style.xml + + + JAVA_CLASS_STYLE + XML_FILE_STYLE + + + + **/org/hibernate/validator/internal/util/TypeHelper.java + **/org/hibernate/validator/test/internal/util/TypeHelperTest.java + **/settings-example.xml + **/src/test/resources/org/hibernate/validator/referenceguide/**/*.* + **/org/hibernate/validator/referenceguide/**/*.* + **/src/test/resources/org/hibernate/validator/test/internal/xml/**/*.xml + .mvn/** + + + **/*.java + **/*.xml + +
+ + + license-headers + + check + + + +
+ + maven-surefire-plugin + ${version.surefire.plugin} + + once + true + + **/*Test.java + + ${java-version.test.launcher} + ${surefire.jvm.args} + ${surefire.environment} + + + ${java-version.test.launcher.java_home} + + + + + + org.ow2.asm + asm + ${version.surefire.plugin.java-version.asm} + + + + + maven-surefire-report-plugin + ${version.surefire.plugin} + + + generate-test-report + test + + report-only + + + + + ${project.build.directory}/surefire-reports + test-report + + + + maven-failsafe-plugin + ${version.failsafe.plugin} + + ${java-version.test.launcher} + ${failsafe.jvm.args} + ${surefire.environment} + + + ${java-version.test.launcher.java_home} + + + + + + org.ow2.asm + asm + ${version.surefire.plugin.java-version.asm} + + + + + maven-dependency-plugin + ${version.dependency.plugin} + + + maven-install-plugin + ${version.install.plugin} + + + maven-assembly-plugin + ${version.assembly.plugin} + + + maven-release-plugin + ${version.release.plugin} + + clean install + true + true + false + true + @{project.version} + documentation-pdf + + + + org.asciidoctor + asciidoctor-maven-plugin + ${version.asciidoctor.plugin} + + + org.jruby + jruby-complete + ${version.org.jruby} + + + org.asciidoctor + asciidoctorj + ${version.org.asciidoctor.asciidoctorj} + + + org.asciidoctor + asciidoctorj-pdf + ${version.org.asciidoctor.asciidoctorj-pdf} + + + org.hibernate.infra + hibernate-asciidoctor-extensions + ${version.org.hibernate.infra.hibernate-asciidoctor-extensions} + + + + + ch.mfrey.maven.plugin + copy-maven-plugin + ${version.copy.plugin} + + + org.apache.felix + maven-bundle-plugin + ${version.bundle.plugin} + + + maven-source-plugin + ${version.source.plugin} + + + maven-javadoc-plugin + ${version.javadoc.plugin} + + true + true + + Red Hat, Inc. All Rights Reserved]]> + + + + maven-deploy-plugin + ${version.deploy.plugin} + + + true + + + + maven-gpg-plugin + ${version.gpg.plugin} + + + maven-resources-plugin + ${version.resources.plugin} + + + false + + ${*} + + + + + org.codehaus.gmavenplus + gmavenplus-plugin + ${version.gmavenplus.plugin} + + + org.codehaus.groovy + groovy-all + ${version.org.codehaus.groovy} + + + + + org.apache.servicemix.tooling + depends-maven-plugin + ${version.depends.plugin} + + + org.codehaus.mojo + build-helper-maven-plugin + ${version.buildhelper.plugin} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${version.japicmp.plugin} + + + + org.hibernate.validator + ${project.artifactId} + ${previous.stable} + ${project.packaging} + + + true + + + ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} + + + + true + + org.hibernate.validator.internal.* + + + + + + + org.apache.maven.plugins + maven-shade-plugin + ${version.shade.plugin} + + + + org.jboss.as + patch-gen-maven-plugin + ${version.wildfly-patch-gen.plugin} + + + com.fasterxml.woodstox + woodstox-core + ${version.wildfly-patch-gen.plugin.woodstox} + + + + + org.wildfly.plugins + wildfly-maven-plugin + ${version.wildfly.plugin} + + + + org.wildfly.core + wildfly-patching + ${version.org.wildfly.core} + + + org.wildfly.core + wildfly-cli + ${version.org.wildfly.core} + + + + + org.netbeans.tools + sigtest-maven-plugin + ${version.sigtest.plugin} + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.asciidoctor + + + asciidoctor-maven-plugin + + + [2.2.2,) + + + + process-asciidoc + + + + + + + + + + + org.jboss.maven.plugins + + + maven-injection-plugin + + + [1.0.2,) + + + bytecode + + + + + + + + + + org.codehaus.gmavenplus + + + gmavenplus-plugin + + + [1.5,) + + + execute + + + + + + + + + org.apache.servicemix.tooling + depends-maven-plugin + [1.2,) + + generate-depends-file + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + [2.0,) + + copy-dependencies + copy + unpack + + + + + + + + + + +
+
+
+ + + Jenkins + http://ci.hibernate.org/view/Validator/ + + + + JIRA + https://hibernate.atlassian.net/projects/HV/summary + + + 2007 + + + + Apache License 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + scm:git:git://github.com/hibernate/hibernate-validator.git + scm:git:git@github.com:hibernate/hibernate-validator.git + http://github.com/hibernate/hibernate-validator + HEAD + + + + + ${ossrh.releases.repo.id} + OSSRH Releases Repository + ${ossrh.releases.repo.url} + + + ${ossrh.snapshots.repo.id} + OSSRH Snapshots Repository + ${ossrh.snapshots.repo.url} + + + + + + docs + + + disableDocumentationBuild + !true + + + + documentation + + + + dist + + + disableDistributionBuild + !true + + + + distribution + + + + relocation + + relocation + + + + release + + + + maven-enforcer-plugin + + + enforce-release-rules + + enforce + + + + + + [17,18) + + + true + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${version.nexus-staging-maven-plugin} + true + + ${ossrh.releases.repo.baseUrl} + ${ossrh.releases.repo.id} + 60 + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + ${env.RELEASE_GPG_HOMEDIR} + ${env.RELEASE_GPG_PASSPHRASE} + + + + + + + + + testWithJdk11 + + + java-version.test.release + 11 + + + + + none + + + + testWithJdk11+ + + + java-version.test.release + !8 + + + + + --add-modules=java.se + + + + --add-opens=java.base/java.lang=ALL-UNNAMED + --add-opens=java.base/java.lang.reflect=ALL-UNNAMED + --add-opens=java.base/java.security=ALL-UNNAMED + --add-opens=java.base/java.math=ALL-UNNAMED + --add-opens=java.base/java.io=ALL-UNNAMED + --add-opens=java.base/java.net=ALL-UNNAMED + --add-opens=java.base/java.util=ALL-UNNAMED + --add-opens=java.base/java.util.concurrent=ALL-UNNAMED + --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED + --add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED + --add-opens=java.base/jdk.internal.reflect=ALL-UNNAMED + --add-opens=java.management/javax.management=ALL-UNNAMED + --add-opens=java.management/javax.management.openmbean=ALL-UNNAMED + --add-opens=java.naming/javax.naming=ALL-UNNAMED + + + + + + + org.wildfly.plugins + wildfly-maven-plugin + + + --add-opens=java.base/java.lang=ALL-UNNAMED + --add-opens=java.base/java.security=ALL-UNNAMED + --add-opens=java.base/java.io=ALL-UNNAMED + --add-modules=java.se + + + + + org.jboss.as + patch-gen-maven-plugin + + + --add-modules=java.se + + + + + + + + + testWithJdk20 + + + java-version.test.release + 20 + + + + + true + + + + testWithJdk21 + + + java-version.test.release + 21 + + + + + true + + -Dnet.bytebuddy.experimental=true + + + + testWithJdk22 + + + java-version.test.release + 22 + + + + + true + + -Dnet.bytebuddy.experimental=true + + + + jqassistant + + + + + com.buschmais.jqassistant + jqassistant-maven-plugin + ${version.jqassistant.plugin} + + + + scan + analyze + + + true + + + + + + + + + IDEA + + + + idea.maven.embedder.version + + + + + ${java-version.test.release} + + + + + + maven-compiler-plugin + ${version.compiler.plugin} + + + -Aorg.jboss.logging.tools.addGeneratedAnnotation=false + + -parameters + + + + + + + + +
diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom.sha1 b/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom.sha1 new file mode 100644 index 000000000..1dceb9ecd --- /dev/null +++ b/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom.sha1 @@ -0,0 +1 @@ +24dcbbec8d17dc077c1863732d3bdb67a014c36f \ No newline at end of file diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/_remote.repositories b/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/_remote.repositories new file mode 100644 index 000000000..ea10bba01 --- /dev/null +++ b/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:04 EDT 2024 +hibernate-validator-relocation-8.0.1.Final.pom>central= diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom b/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom new file mode 100644 index 000000000..ce7e16b0e --- /dev/null +++ b/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom @@ -0,0 +1,27 @@ + + + + 4.0.0 + + org.hibernate.validator + hibernate-validator-parent + 8.0.1.Final + + + hibernate-validator-relocation + pom + + Hibernate Validator Relocation Artifacts + + + annotation-processor + cdi + engine + karaf-features + + diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom.sha1 b/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom.sha1 new file mode 100644 index 000000000..e7d987c88 --- /dev/null +++ b/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom.sha1 @@ -0,0 +1 @@ +5107fa7b411dc428616d2a79badc888f2d92bcf0 \ No newline at end of file diff --git a/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/_remote.repositories b/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/_remote.repositories new file mode 100644 index 000000000..07046ac2b --- /dev/null +++ b/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:54 EDT 2024 +hibernate-validator-8.0.1.Final.pom>central= diff --git a/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom b/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom new file mode 100644 index 000000000..f0e4d3b99 --- /dev/null +++ b/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom @@ -0,0 +1,349 @@ + + + + 4.0.0 + + + org.hibernate.validator + hibernate-validator-parent + 8.0.1.Final + ../pom.xml + + + hibernate-validator + + Hibernate Validator Engine + Hibernate's Jakarta Bean Validation reference implementation. + + + .. + -Duser.language=en + + + + + site + http://hibernate.org/validator + + + + + + + jakarta.validation + jakarta.validation-api + + + org.jboss.logging + jboss-logging + + + com.fasterxml + classmate + + + + + org.glassfish.expressly + expressly + provided + + + org.jboss.logging + jboss-logging-processor + + provided + + + org.jboss.logging + jboss-logging-annotations + provided + + + + + jakarta.persistence + jakarta.persistence-api + true + + + joda-time + joda-time + true + + + com.thoughtworks.paranamer + paranamer + true + + + javax.money + money-api + true + + + + org.openjfx + javafx-base + + true + + + + + org.testng + testng + test + + + ${project.groupId} + hibernate-validator-test-utils + test + + + org.apache.logging.log4j + log4j-core + test + + + org.apache.logging.log4j + log4j-core + test + test-jar + + + org.easymock + easymock + test + + + org.codehaus.groovy + groovy-jsr223 + test + + + org.assertj + assertj-core + test + + + org.jboss.shrinkwrap + shrinkwrap-impl-base + test + + + org.javamoney + moneta + test + + + javax.annotation + javax.annotation-api + + + + + + javax.annotation + javax.annotation-api + test + + + com.fasterxml.jackson.core + jackson-databind + test + + + com.fasterxml.jackson.core + jackson-annotations + test + + + net.bytebuddy + byte-buddy + test + + + + + test + + + src/main/resources + + + src/main/xsd + META-INF + + + + + true + src/test/resources + + META-INF/services/* + **/*.properties + **/*.xml + + + + + + maven-checkstyle-plugin + + + de.thetaphi + forbiddenapis + + + maven-jar-plugin + + + default-jar + package + + jar + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + Jakarta Bean Validation + 3.0 + ${hibernate-validator.module-name} + + + + + + + + org.apache.felix + maven-bundle-plugin + + + ${hibernate-validator.module-name} + + jakarta.persistence.*;version="[3.0.0,4.0.0)";resolution:=optional, + jakarta.validation.*;version="[3.0.0,4.0.0)", + javax.script.*;version="0", + javax.xml.*;version="0", + jakarta.el.*;version="[5.0.0,6.0.0)";resolution:=optional, + com.sun.el.*;version="[5.0.0,6.0.0)";resolution:=optional, + org.xml.sax.*;version="0", + org.jboss.logging.*;version="[3.1.0,4.0.0)", + com.fasterxml.classmate.*;version="[1.3,2.0.0)", + org.joda.time.*;version="[2.0.0,3.0.0)";resolution:=optional, + javax.money;version="[1.0.0,2.0.0)";resolution:=optional, + com.thoughtworks.paranamer.*;version="[2.5.5,3.0.0)";resolution:=optional + + + org.hibernate.validator;version="${project.version}", + org.hibernate.validator.cfg.*;version="${project.version}", + org.hibernate.validator.constraints.*;version="${project.version}", + org.hibernate.validator.constraintvalidation.*;version="${project.version}", + org.hibernate.validator.constraintvalidators.*;version="${project.version}", + org.hibernate.validator.engine.*;version="${project.version}", + org.hibernate.validator.group;version="${project.version}", + org.hibernate.validator.messageinterpolation;version="${project.version}", + org.hibernate.validator.metadata;version="${project.version}", + org.hibernate.validator.parameternameprovider;version="${project.version}", + org.hibernate.validator.path;version="${project.version}", + org.hibernate.validator.resourceloading;version="${project.version}", + org.hibernate.validator.spi.*;version="${project.version}" + + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + tests + 4 + + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-release-plugin + + + com.github.siom79.japicmp + japicmp-maven-plugin + + false + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-test-source-java17 + ${java-version.test.java17.add-test-source-phase} + + add-test-source + + + + src/test/java17 + + + + + + + + + + testWithJdk11+ + + + java-version.test.release + !8 + + + + --illegal-access=deny + + + + diff --git a/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 b/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 new file mode 100644 index 000000000..6cde2fc47 --- /dev/null +++ b/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 @@ -0,0 +1 @@ +ebb72685a6e1c06e75d94e7b83e1b5845332dead \ No newline at end of file diff --git a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/_remote.repositories b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/_remote.repositories new file mode 100644 index 000000000..a2065f5b1 --- /dev/null +++ b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:26 EDT 2024 +infinispan-bom-14.0.27.Final.pom>ohdsi= diff --git a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom new file mode 100644 index 000000000..c795e0a55 --- /dev/null +++ b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom @@ -0,0 +1,560 @@ + + + 4.0.0 + + + org.infinispan + infinispan-build-configuration-parent + 14.0.27.Final + ../configuration/pom.xml + + + infinispan-bom + pom + + Infinispan BOM + Infinispan BOM module + http://www.infinispan.org + + JBoss, a division of Red Hat + http://www.jboss.org + + + + Apache License 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + placeholder + See http://www.infinispan.org for a complete list of contributors + + + + + Infinispan Issues + https://lists.jboss.org/mailman/listinfo/infinispan-issues + https://lists.jboss.org/mailman/listinfo/infinispan-issues + infinispan-issues@lists.jboss.org + http://lists.jboss.org/pipermail/infinispan-issues/ + + + Infinispan Developers + https://lists.jboss.org/mailman/listinfo/infinispan-dev + https://lists.jboss.org/mailman/listinfo/infinispan-dev + infinispan-dev@lists.jboss.org + http://lists.jboss.org/pipermail/infinispan-dev/ + + + + scm:git:git@github.com:infinispan/infinispan.git + scm:git:git@github.com:infinispan/infinispan.git + https://github.com/infinispan/infinispan + + + jira + https://issues.jboss.org/browse/ISPN + + + + ${version.console} + + + + + + org.infinispan + infinispan-api + ${version.infinispan} + + + org.infinispan + infinispan-cachestore-jdbc + ${version.infinispan} + + + org.infinispan + infinispan-cachestore-jdbc-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-cachestore-jdbc-common + ${version.infinispan} + + + org.infinispan + infinispan-cachestore-jdbc-common-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-cachestore-sql + ${version.infinispan} + + + org.infinispan + infinispan-cachestore-remote + ${version.infinispan} + + + org.infinispan + infinispan-cachestore-rocksdb + ${version.infinispan} + + + org.infinispan + infinispan-cdi-common + ${version.infinispan} + + + org.infinispan + infinispan-cdi-common-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-cdi-embedded + ${version.infinispan} + + + org.infinispan + infinispan-cdi-embedded-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-cdi-remote + ${version.infinispan} + + + org.infinispan + infinispan-cdi-remote-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-checkstyle + ${version.infinispan} + + + org.infinispan + infinispan-cli-client + ${version.infinispan} + + + org.infinispan + infinispan-cli-client-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-hotrod + ${version.infinispan} + + + org.infinispan + infinispan-hotrod-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-client-hotrod + ${version.infinispan} + + + org.infinispan + infinispan-client-hotrod-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-client-rest + ${version.infinispan} + + + org.infinispan + infinispan-client-rest-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-key-value-store-client + ${version.infinispan} + + + org.infinispan + infinispan-clustered-counter + ${version.infinispan} + + + org.infinispan + infinispan-clustered-lock + ${version.infinispan} + + + org.infinispan + infinispan-commons + ${version.infinispan} + + + org.infinispan + infinispan-commons-jakarta + ${version.infinispan} + + + + org.infinispan + infinispan-commons-test + ${version.infinispan} + + + org.infinispan + infinispan-component-annotations + ${version.infinispan} + provided + + + org.infinispan + infinispan-component-processor + ${version.infinispan} + + + org.infinispan + infinispan-core + ${version.infinispan} + + + org.infinispan + infinispan-core-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-jboss-marshalling + ${version.infinispan} + + + org.infinispan + infinispan-extended-statistics + ${version.infinispan} + + + org.infinispan + infinispan-hibernate-cache-commons + ${version.infinispan} + + + org.infinispan + infinispan-hibernate-cache-spi + ${version.infinispan} + + + org.infinispan + infinispan-hibernate-cache-v60 + ${version.infinispan} + + + org.infinispan + infinispan-hibernate-cache-v62 + ${version.infinispan} + + + org.infinispan + infinispan-jcache-commons + ${version.infinispan} + + + org.infinispan + infinispan-jcache + ${version.infinispan} + + + org.infinispan + infinispan-jcache-remote + ${version.infinispan} + + + org.infinispan + infinispan-console + ${versionx.org.infinispan.infinispan-console} + + + org.infinispan + infinispan-logging-annotations + ${version.infinispan} + provided + + + org.infinispan + infinispan-logging-processor + ${version.infinispan} + + + org.infinispan + infinispan-multimap + ${version.infinispan} + + + org.infinispan + infinispan-multimap-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-objectfilter + ${version.infinispan} + + + org.infinispan + infinispan-query-core + ${version.infinispan} + + + org.infinispan + infinispan-query + ${version.infinispan} + + + org.infinispan + infinispan-query-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-query-dsl + ${version.infinispan} + + + org.infinispan + infinispan-remote-query-client + ${version.infinispan} + + + org.infinispan + infinispan-remote-query-server + ${version.infinispan} + + + org.infinispan + infinispan-scripting + ${version.infinispan} + + + + org.infinispan + infinispan-server-core + ${version.infinispan} + + + + org.infinispan + infinispan-server-hotrod + ${version.infinispan} + + + org.infinispan + infinispan-server-hotrod-jakarta + ${version.infinispan} + + + + org.infinispan + infinispan-server-memcached + ${version.infinispan} + + + org.infinispan + infinispan-server-resp + ${version.infinispan} + + + + org.infinispan + infinispan-server-rest + ${version.infinispan} + + + + org.infinispan + infinispan-server-router + ${version.infinispan} + + + org.infinispan + infinispan-server-runtime + ${version.infinispan} + + + + org.infinispan + infinispan-server-runtime + ${version.infinispan} + loader + + + + org.infinispan + infinispan-server-testdriver-core + ${version.infinispan} + + + + org.infinispan + infinispan-server-testdriver-core-jakarta + ${version.infinispan} + + + + org.infinispan + infinispan-server-testdriver-junit4 + ${version.infinispan} + + + + org.infinispan + infinispan-server-testdriver-junit5 + ${version.infinispan} + + + + org.infinispan + infinispan-spring5-common + ${version.infinispan} + + + org.infinispan + infinispan-spring5-embedded + ${version.infinispan} + + + org.infinispan + infinispan-spring5-remote + ${version.infinispan} + + + org.infinispan + infinispan-spring-boot-starter-embedded + ${version.infinispan} + + + org.infinispan + infinispan-spring-boot-starter-remote + ${version.infinispan} + + + + org.infinispan + infinispan-spring6-common + ${version.infinispan} + + + org.infinispan + infinispan-spring6-embedded + ${version.infinispan} + + + org.infinispan + infinispan-spring6-remote + ${version.infinispan} + + + org.infinispan + infinispan-spring-boot3-starter-embedded + ${version.infinispan} + + + org.infinispan + infinispan-spring-boot3-starter-remote + ${version.infinispan} + + + + org.infinispan + infinispan-tasks + ${version.infinispan} + + + org.infinispan + infinispan-tasks-api + ${version.infinispan} + + + org.infinispan + infinispan-tools + ${version.infinispan} + + + org.infinispan + infinispan-tools-jakarta + ${version.infinispan} + + + org.infinispan + infinispan-anchored-keys + ${version.infinispan} + + + org.infinispan.protostream + protostream + ${version.protostream} + + + org.infinispan.protostream + protostream-types + ${version.protostream} + + + org.infinispan.protostream + protostream-processor + ${version.protostream} + + provided + + + org.infinispan + infinispan-cloudevents-integration + ${version.infinispan} + + + + + + + community + + + release-mode + !downstream + + + + + + org.infinispan + infinispan-marshaller-kryo + ${version.infinispan} + + + org.infinispan + infinispan-marshaller-kryo-bundle + ${version.infinispan} + + + org.infinispan + infinispan-marshaller-protostuff + ${version.infinispan} + + + org.infinispan + infinispan-marshaller-protostuff-bundle + ${version.infinispan} + + + + + + diff --git a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.lastUpdated b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.lastUpdated new file mode 100644 index 000000000..4cf703b28 --- /dev/null +++ b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:26 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.infinispan\:infinispan-bom\:pom\:14.0.27.Final from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139806045 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139806169 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139806309 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139806471 diff --git a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.sha1 b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.sha1 new file mode 100644 index 000000000..7e4593de6 --- /dev/null +++ b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.sha1 @@ -0,0 +1 @@ +06a2defb74f878a79e708b38ab4f655f610341ff \ No newline at end of file diff --git a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/_remote.repositories b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/_remote.repositories new file mode 100644 index 000000000..48a71a04d --- /dev/null +++ b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:26 EDT 2024 +infinispan-build-configuration-parent-14.0.27.Final.pom>ohdsi= diff --git a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom new file mode 100644 index 000000000..1e50cd99c --- /dev/null +++ b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom @@ -0,0 +1,519 @@ + + + 4.0.0 + + + org.jboss + jboss-parent + 39 + + + + + org.infinispan + infinispan-build-configuration-parent + 14.0.27.Final + pom + + Infinispan Common Parent + Infinispan common parent POM module + http://www.infinispan.org + + JBoss, a division of Red Hat + http://www.jboss.org + + + + Apache License 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + placeholder + See http://www.infinispan.org for a complete list of contributors + + + + + Infinispan Issues + https://lists.jboss.org/mailman/listinfo/infinispan-issues + https://lists.jboss.org/mailman/listinfo/infinispan-issues + infinispan-issues@lists.jboss.org + http://lists.jboss.org/pipermail/infinispan-issues/ + + + Infinispan Developers + https://lists.jboss.org/mailman/listinfo/infinispan-dev + https://lists.jboss.org/mailman/listinfo/infinispan-dev + infinispan-dev@lists.jboss.org + http://lists.jboss.org/pipermail/infinispan-dev/ + + + + scm:git:git@github.com:infinispan/infinispan.git + scm:git:git@github.com:infinispan/infinispan.git + https://github.com/infinispan/infinispan + + + jira + https://issues.jboss.org/browse/ISPN + + + Jenkins + https://ci.infinispan.org + + + mail +
infinispan-commits@lists.jboss.org
+
+
+
+ + + ${maven.snapshots.repo.id} + ${maven.snapshots.repo.url} + + + ${maven.releases.repo.id} + ${maven.releases.repo.url} + + + + + 11 + 11 + 11 + false + true + true + + + Infinispan + infinispan + infinispan + ${project.version} + Flying Saucer + ispn + 14.0 + ${infinispan.module.slot.prefix}-${infinispan.base.version} + ${infinispan.base.version} + community-operators + operatorhubio-catalog + infinispan + 9E31AB27445478DB + WildFly + wildfly + + + https://s01.oss.sonatype.org/ + ossrh + https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ + ossrh + https://s01.oss.sonatype.org/content/repositories/snapshots + + + + + org.wildfly + 24.0.1.Final + + + 3.9.0 + 17 + + + 2.7 + 2.4 + 1.10.14 + 1.8.1 + 1.0b3 + 3.5.2 + 1.6.0.Final + 1.0.8.RELEASE + 1.70 + 4.0.21 + 3.1.8 + 1.26.0 + 14.0.15.Final + 6.3.1 + 2.3.1 + 2.0.1 + 2.4.21 + 1.3 + 6.2.0.Final + 6.1.5.Final + 14.0.27.Final + 1.2.0.Beta3 + 1.4.0.Final + 1.0.3.Final + 2.0.2 + 1.16 + 6.2.7.RELEASE + 1.0.0 + 2.15.4 + 2.15.2 + 0.8.11 + 2.1.1 + 1.3.3 + 2.0.1 + 2.0.2 + 3.1.0 + 1.1.1 + 3.5.3.Final + 2.2.1.Final + 2.1.4.Final + 5.0.6.CR1 + 5.13.1.Final + 3.0.6.Final + 1.2.6 + 2.0.0 + 3.1.6 + 1.0 + 5.2.23.Final + 1.0.12.Final + 1.1.0 + 4.13.2 + 1.9.3 + 5.9.2 + 2.22.1 + 8.11.3 + 1.8 + 1.9.17 + 5.3.1 + 1.14.9 + 3.3 + 15.4 + 4.1.107.Final + 0.0.25.Final + 3.14.9 + 1.23 + 3.0.1.Final + 16.0.1.Final + 2.2.3.Final + 2.2.5.Final + 2.2.2.SP01 + 2.2.2.SP01 + 2.2.2.Final + 2.2.2.Final + 9.6 + 5.0.3.Final + 2.5.5.SP12 + 4.6.5.Final + 1.6.2 + 1.0.4 + 7.1.2 + 3.1.8 + 2.10.0 + 1.0.5 + + + 0.15.0 + 2.1.12 + 2.0.3 + + 1.30.1 + 1.30.1-alpha + + 1.3.1 + + 5.3.32 + 2.7.18 + 2.7.2 + + + 6.0.10 + 3.1.1 + 3.1.1 + + 3.5.2 + 1.3.7 + 1.4.20 + + + 3.3.1 + 3.8.8 + 3.5.2 + 3.1.0 + 3.4.0 + 4.2.1 + 3.1.0 + 3.3.2 + 3.11.0 + 3.3.0 + 3.1.1 + 3.6.0 + 3.3.0 + 3.6.3 + 3.9.0 + 3.0.1 + 3.1.0 + 3.3.1 + 3.5.2 + 3.3.0 + 3.1.2 + 4.2.9.Final + 5.2.11.Final + 1.6.13 + 0.5.0 + + 3.21.2 + 8.3.1 + 4.7.3.6 + 2.4.8.Final + 3.1.1 + + + 10.12.7 + 7.0.0-rc3 + + + false + + + + + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${version.spotbugs.plugin} + + + org.owasp + dependency-check-maven + ${version.owasp-dependency-check-plugin} + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${version.sonatype.nexus-staging-plugin} + + true + ${infinispan.brand.name} ${project.version} release + ${maven.releases.nexus.url} + ${maven.releases.repo.id} + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.maven.javadoc} + + + javadoc + package + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.maven.gpg} + + + sign-artifacts + verify + + sign + + + ${infinispan.gpg.key} + ${infinispan.gpg.key} + + + + + + org.eclipse.transformer + transformer-maven-plugin + ${version.eclipse.transformer} + + + + + + + + jakarta-transform + + + ${basedir}/jakarta.txt + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + jakarta-transform + + regex-property + + + original.artifactId + ${project.artifactId} + \-jakarta$ + false + + + + + + org.eclipse.transformer + transformer-maven-plugin + true + + + true + + + + + default-jar + + jar + + package + + + ${project.groupId} + ${original.artifactId} + ${project.version} + + + + + source-jar + + jar + + package + + + ${project.groupId} + ${original.artifactId} + ${project.version} + sources + + + + + test-jar + + jar + + package + + ${transform.tests.skip} + + ${project.groupId} + ${original.artifactId} + ${project.version} + tests + + + + + test-source-jar + + jar + + package + + ${transform.tests.skip} + + ${project.groupId} + ${original.artifactId} + ${project.version} + test-sources + + + + + + + + + + community-release + + + release-mode + upstream + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + ${maven.javadoc.skip} + false + + + + org.eclipse.transformer + transformer-maven-plugin + + + true + + + + + javadoc-jar + + jar + + package + + + ${project.groupId} + ${original.artifactId} + ${project.version} + javadoc + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + + + + + + nexus-staging + + !skipNexusStaging + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + false + + + + + + + +
diff --git a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.lastUpdated b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.lastUpdated new file mode 100644 index 000000000..31cef5a70 --- /dev/null +++ b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:26 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.infinispan\:infinispan-build-configuration-parent\:pom\:14.0.27.Final from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139806479 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139806588 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139806734 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139806890 diff --git a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.sha1 b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.sha1 new file mode 100644 index 000000000..998f449f4 --- /dev/null +++ b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.sha1 @@ -0,0 +1 @@ +e38791900f6ed8daa8355442f1acfabc5903c935 \ No newline at end of file diff --git a/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/_remote.repositories b/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/_remote.repositories new file mode 100644 index 000000000..0f062e013 --- /dev/null +++ b/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:22 EDT 2024 +cas-client-core-3.6.1.pom>central= diff --git a/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom b/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom new file mode 100644 index 000000000..c800bad07 --- /dev/null +++ b/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom @@ -0,0 +1,116 @@ + + + + org.jasig.cas.client + 3.6.1 + cas-client + + 4.0.0 + cas-client-core + jar + Jasig CAS Client for Java - Core + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.1 + + + + test-jar + + + + + + + + + + xml-security + xmlsec + 1.3.0 + runtime + true + + + + com.fasterxml.jackson.core + jackson-databind + + + + org.springframework + spring-beans + ${spring.version} + provided + + + + org.springframework + spring-web + provided + + + + org.springframework + spring-test + test + + + + org.springframework + spring-core + test + + + + org.springframework + spring-context + test + + + + log4j + log4j + test + 1.2.17 + + + jmxri + com.sun.jmx + + + com.sun.jdmk + jmxtools + + + javax.jms + jms + + + + + + diff --git a/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom.sha1 b/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom.sha1 new file mode 100644 index 000000000..cd308e399 --- /dev/null +++ b/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom.sha1 @@ -0,0 +1 @@ +de036bd48c73a42fa0ae6ab811b98dc6bb63a5ac \ No newline at end of file diff --git a/code/arachne/org/jasig/cas/client/cas-client/3.6.1/_remote.repositories b/code/arachne/org/jasig/cas/client/cas-client/3.6.1/_remote.repositories new file mode 100644 index 000000000..b5bb5d9f7 --- /dev/null +++ b/code/arachne/org/jasig/cas/client/cas-client/3.6.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:22 EDT 2024 +cas-client-3.6.1.pom>central= diff --git a/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom b/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom new file mode 100644 index 000000000..aefb1daa0 --- /dev/null +++ b/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom @@ -0,0 +1,318 @@ + + + + org.jasig.parent + jasig-parent + 41 + + 4.0.0 + org.jasig.cas.client + 3.6.1 + cas-client + pom + + Apereo CAS Client for Java + + Apereo CAS Client for Java is the integration point for applications that want to speak with a CAS + server, either via the CAS 1.0 or CAS 2.0 protocol. + + https://www.apereo.org/cas + + + scm:git:git@github.com:apereo/java-cas-client.git + scm:git:git@github.com:apereo/java-cas-client.git + https://github.com/apereo/java-cas-client + cas-client-3.6.1 + + + 2006 + + + + battags + Scott Battaglia + scott.battaglia@gmail.com + http://www.scottbattaglia.com + + Project Admin + Developer + + -5 + + + serac + Marvin S. Addison + marvin.addison@gmail.com + + Developer + + -5 + + + + + Apereo + https://www.apereo.org + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 3.1.1 + + + ${basedir}/assembly.xml + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + **/*Tests* + + false + 1 + + + + maven-source-plugin + 3.1.0 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + enforce-banned-dependencies + + enforce + + + + + + commons-logging + + + + true + + + + + + + com.mycila.maven-license-plugin + maven-license-plugin + +
src/licensing/header.txt
+ true + + src/licensing/header-definitions.xml + + true + + **/.idea/** + LICENSE + **/INSTALL* + **/NOTICE* + **/README* + **/readme* + **/*.log + **/*.license + **/*.txt + **/*.crt + **/*.crl + **/*.key + **/.gitignore + **/overlays/** + src/licensing/** + +
+
+ + + org.apache.maven.plugins + maven-javadoc-plugin + 3.1.1 + + none + + + +
+
+ + + + + org.springframework + spring-core + ${spring.version} + + + commons-logging + commons-logging + + + + + + org.springframework + spring-context + ${spring.version} + + + + org.springframework + spring-web + ${spring.version} + + + + org.springframework + spring-test + ${spring.version} + test + + + + log4j + log4j + test + 1.2.17 + + + jmxri + com.sun.jmx + + + com.sun.jdmk + jmxtools + + + javax.jms + jms + + + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version} + + + + + + + junit + junit + 4.12 + test + + + org.slf4j + slf4j-api + ${slf4j.version} + compile + + + commons-codec + commons-codec + 1.13 + compile + + + org.bouncycastle + bcpkix-jdk15on + 1.63 + compile + + + javax.servlet + javax.servlet-api + 4.0.1 + provided + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + test + + + org.slf4j + slf4j-simple + ${slf4j.version} + test + + + + + cas-client-core + + cas-client-integration-jboss + cas-client-support-distributed-ehcache + cas-client-support-distributed-memcached + cas-client-support-saml + cas-client-support-springboot + cas-client-integration-tomcat-common + cas-client-integration-tomcat-v6 + cas-client-integration-tomcat-v7 + cas-client-integration-tomcat-v8 + cas-client-integration-tomcat-v85 + cas-client-integration-tomcat-v90 + cas-client-integration-jetty + + + + 5.2.0.RELEASE + 2.6.11 + 3.0.2 + 1.7.28 + 2.10.0 + +
diff --git a/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom.sha1 b/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom.sha1 new file mode 100644 index 000000000..6e80c5898 --- /dev/null +++ b/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom.sha1 @@ -0,0 +1 @@ +6934a8cf61cf1bb5ad19b7a8127d901dd835dee7 \ No newline at end of file diff --git a/code/arachne/org/jasig/parent/jasig-parent/41/_remote.repositories b/code/arachne/org/jasig/parent/jasig-parent/41/_remote.repositories new file mode 100644 index 000000000..5bb177464 --- /dev/null +++ b/code/arachne/org/jasig/parent/jasig-parent/41/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:23 EDT 2024 +jasig-parent-41.pom>central= diff --git a/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom b/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom new file mode 100644 index 000000000..816c754da --- /dev/null +++ b/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom @@ -0,0 +1,404 @@ + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + org.jasig.parent + jasig-parent + 41 + pom + + Apereo Parent Project + Defaults for Apereo Maven projects. + https://github.com/Jasig/apereo-parent + + + Apereo + http://www.apereo.org + + + + + Apache License Version 2.0 + repo + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + scm:git:git@github.com:Jasig/apereo-parent.git + scm:git:git@github.com:Jasig/apereo-parent.git + https://github.com/Jasig/apereo-parent + jasig-parent-41 + + + + + https://raw.githubusercontent.com/Jasig/apereo-parent/master/ + + ${jasig-scm-base}licenses/short-license-header.txt + ${jasig-scm-base}licenses/license-mappings.xml + ${jasig-scm-base}licenses/NOTICE.template + + UTF-8 + 1.7 + 1.7 + + + 3.0.1 + 2.9 + + 2.10.1 + 2.6 + 3.3 + 2.6 + 2.5.2 + 2.11 + 1.0.2 + 1.0.6.1 + 3.4 + + + 2.7 + 3.0.3 + 2.0 + 2.3 + 2.10.3 + 2.5 + 3.5 + 2.8.1 + 2.19 + 2.4 + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven.compiler.plugin.ver} + + ${project.build.sourceVersion} + ${project.build.targetVersion} + + + + org.apache.maven.plugins + maven-jar-plugin + ${maven.jar.plugin.ver} + + + + true + true + + + + + + org.codehaus.plexus + plexus-archiver + ${plexus.archiver.ver} + + + + + org.apache.maven.plugins + maven-war-plugin + ${maven.war.plugin.ver} + + true + + true + + true + true + + + + + + org.codehaus.plexus + plexus-archiver + ${plexus.archiver.ver} + + + + + org.apache.maven.plugins + maven-ear-plugin + ${maven.ear.plugin.ver} + + + true + + true + true + + + + + + org.codehaus.plexus + plexus-archiver + ${plexus.archiver.ver} + + + + + org.apache.maven.plugins + maven-release-plugin + ${maven.release.plugin.ver} + + forked-path + false + ${additionalReleaseArguments} -Psonatype-oss-release,jasig-release + + + + com.mycila + license-maven-plugin + ${maven.license.plugin.ver} + + ${basedir} +
${jasig-short-license-url}
+ true + true + + LICENSE + NOTICE + short-license-header.txt + +
+
+ + org.jasig.maven + maven-jasig-legal-plugin + ${maven.legal.plugin.ver} + + + org.jasig.maven + maven-notice-plugin + ${maven.notice.plugin.ver} + + ${jasig-notice-template-url} + + ${jasig-license-lookup-url} + + + +
+
+ + + org.jasig.maven + maven-jasig-legal-plugin + + + org.jasig.maven + maven-notice-plugin + + + com.mycila + license-maven-plugin + + + LICENSE + NOTICE + licenses/LICENSE.txt + licenses/NOTICE.template + licenses/short-license-header.txt + + + + +
+ + + + + org.apache.maven.plugins + maven-jxr-plugin + ${maven.jxr.plugin.ver} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${maven.project.info.reports.plugin.ver} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${maven.surefire.report.plugin.ver} + + + org.codehaus.mojo + cobertura-maven-plugin + ${cobertura.maven.plugin.ver} + + + org.apache.maven.plugins + maven-pmd-plugin + ${maven.pmd.plugin.ver} + + true + utf-8 + 100 + ${project.build.sourceVersion} + + + + org.apache.maven.plugins + maven-changelog-plugin + ${maven.changelog.plugin.ver} + + + org.codehaus.mojo + taglist-maven-plugin + ${taglist.maven.plugin.ver} + + + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.maven.plugin.ver} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven.javadoc.plugin.ver} + + ${project.build.sourceVersion} + + + + org.codehaus.mojo + jdepend-maven-plugin + ${jdepend.maven.plugin.ver} + + + + + + + jasig-release + + + + com.mycila + license-maven-plugin + + + check-license + validate + + check + + + + + + org.jasig.maven + maven-jasig-legal-plugin + + + copy-files + validate + + copy-files + + + + + + org.jasig.maven + maven-notice-plugin + + + check-notice + validate + + check + + + + + + + + + + maven-3-site + + + + ${basedir} + + + + + + + org.apache.maven.plugins + maven-site-plugin + ${maven.site.plugin.ver} + + + org.apache.maven.wagon + wagon-webdav-jackrabbit + ${wagon.webdav.jackrabbit.ver} + + + + + + + + org.apache.maven.plugins + maven-site-plugin + ${maven.site.plugin.ver} + + + attach-descriptor + + attach-descriptor + + + + + + + + + +
diff --git a/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom.sha1 b/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom.sha1 new file mode 100644 index 000000000..2ccccce32 --- /dev/null +++ b/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom.sha1 @@ -0,0 +1 @@ +e62844ebca8fddba8d6ba588b5a4028cd0936439 \ No newline at end of file diff --git a/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/_remote.repositories b/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/_remote.repositories new file mode 100644 index 000000000..f599daa28 --- /dev/null +++ b/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:58 EDT 2024 +jasypt-hibernate4-1.9.2.pom>central= diff --git a/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom b/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom new file mode 100644 index 000000000..6339def12 --- /dev/null +++ b/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom @@ -0,0 +1,267 @@ + + + + + + + + + + + + + + + + + + + + + + + 4.0.0 + org.jasypt + jasypt-hibernate4 + jar + 1.9.2 + JASYPT: Java Simplified Encryption + http://www.jasypt.org + + Java library which enables encryption in java apps with minimum effort. + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The JASYPT team + http://www.jasypt.org + + + + scm:svn:http://svn.code.sf.net/p/jasypt/code/tags/jasypt-hibernate4/jasypt-hibernate4-1.9.2 + scm:svn:https://svn.code.sf.net/p/jasypt/code/tags/jasypt-hibernate4/jasypt-hibernate4-1.9.2 + scm:svn:https://svn.code.sf.net/p/jasypt/code/tags/jasypt-hibernate4/jasypt-hibernate4-1.9.2 + + + + + dfernandez + Daniel Fernandez + dfernandez AT users.sourceforge.net + + Project admin + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + true + + + + jboss-nexus-repository + JBoss Nexus Repository + http://repository.jboss.org/nexus/content/groups/public-jboss/ + + + + + + + + + + src/main/resources + + + + . + META-INF + + LICENSE.txt + NOTICE.txt + + + + + + + + src/test/java + + ** + + + **/*.java + + + + src/test/resources + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + 1.4 + 1.4 + US-ASCII + + + + + org.apache.maven.plugins + maven-resources-plugin + 2.5 + + US-ASCII + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + protected + java.lang + org.jasypt.contrib.* + + http://www.jasypt.org/api/jasypt/${project.version}/ + + + + + package + + jar + + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + package + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + https://svn.code.sf.net/p/jasypt/code/tags/jasypt-hibernate4 + + + + + + + + + + + + + + org.jasypt + jasypt + 1.9.2 + compile + + + + org.hibernate + hibernate-core + 4.0.0.CR7 + provided + true + + + + org.hibernate + hibernate-c3p0 + 4.0.0.CR7 + provided + true + + + + junit + junit + 3.8.1 + test + + + + commons-lang + commons-lang + 2.1 + test + + + + org.hsqldb + hsqldb + 2.2.6 + test + + + + + + diff --git a/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom.sha1 b/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom.sha1 new file mode 100644 index 000000000..5f9ad596f --- /dev/null +++ b/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom.sha1 @@ -0,0 +1 @@ +89c3a4f2e434f2dca5fa540704ab0ee600a441b3 \ No newline at end of file diff --git a/code/arachne/org/jasypt/jasypt/1.9.2/_remote.repositories b/code/arachne/org/jasypt/jasypt/1.9.2/_remote.repositories new file mode 100644 index 000000000..0a557714f --- /dev/null +++ b/code/arachne/org/jasypt/jasypt/1.9.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:58 EDT 2024 +jasypt-1.9.2.pom>central= diff --git a/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom b/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom new file mode 100644 index 000000000..5b240a053 --- /dev/null +++ b/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + 4.0.0 + org.jasypt + jasypt + jar + 1.9.2 + JASYPT: Java Simplified Encryption + http://www.jasypt.org + + Java library which enables encryption in java apps with minimum effort. + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The JASYPT team + http://www.jasypt.org + + + + scm:svn:http://svn.code.sf.net/p/jasypt/code/tags/jasypt/jasypt-1.9.2 + scm:svn:https://svn.code.sf.net/p/jasypt/code/tags/jasypt/jasypt-1.9.2 + scm:svn:https://svn.code.sf.net/p/jasypt/code/tags/jasypt/jasypt-1.9.2 + + + + + dfernandez + Daniel Fernandez + dfernandez AT users.sourceforge.net + + Project admin + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + true + + + + + + + + + + + src/main/resources + + + + . + META-INF + + LICENSE.txt + NOTICE.txt + + + + + + + + src/test/resources + + + + + + + org.apache.maven.plugins + maven-site-plugin + 2.1 + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.1 + + 1.4 + 1.4 + US-ASCII + + + + + org.apache.maven.plugins + maven-resources-plugin + 2.5 + + US-ASCII + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + protected + java.lang + org.jasypt.contrib.* + + + + package + + jar + + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + package + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2 + + + src/assembly/lite.xml + + + + + make-assembly-deps + package + + single + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + https://svn.code.sf.net/p/jasypt/code/tags/jasypt + + + + + + + + + + + + + + com.ibm.icu + icu4j + 3.4.4 + provided + true + + + + javax.servlet + servlet-api + 2.4 + provided + true + + + + bouncycastle + bcprov-jdk12 + 140 + test + + + + junit + junit + 3.8.1 + test + + + + commons-lang + commons-lang + 2.1 + test + + + + + + + diff --git a/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom.sha1 b/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom.sha1 new file mode 100644 index 000000000..7c65201a5 --- /dev/null +++ b/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom.sha1 @@ -0,0 +1 @@ +1fa08d4488492e27d500230b8a92a291b1664f3d \ No newline at end of file diff --git a/code/arachne/org/javassist/javassist/3.28.0-GA/_remote.repositories b/code/arachne/org/javassist/javassist/3.28.0-GA/_remote.repositories new file mode 100644 index 000000000..b5154b704 --- /dev/null +++ b/code/arachne/org/javassist/javassist/3.28.0-GA/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +javassist-3.28.0-GA.pom>central= diff --git a/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom b/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom new file mode 100644 index 000000000..3fe945757 --- /dev/null +++ b/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom @@ -0,0 +1,335 @@ + + 4.0.0 + org.javassist + javassist + bundle + + Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation + simple. It is a class library for editing bytecodes in Java. + + 3.28.0-GA + Javassist + http://www.javassist.org/ + + + UTF-8 + + + Shigeru Chiba, www.javassist.org + + + + JIRA + https://jira.jboss.org/jira/browse/JASSIST/ + + + + + MPL 1.1 + http://www.mozilla.org/MPL/MPL-1.1.html + + + + LGPL 2.1 + http://www.gnu.org/licenses/lgpl-2.1.html + + + + Apache License 2.0 + http://www.apache.org/licenses/ + + + + + scm:git:git@github.com:jboss-javassist/javassist.git + scm:git:git@github.com:jboss-javassist/javassist.git + scm:git:git@github.com:jboss-javassist/javassist.git + + + + + chiba + Shigeru Chiba + chiba@javassist.org + The Javassist Project + http://www.javassist.org/ + + project lead + + 9 + + + + adinn + Andrew Dinn + adinn@redhat.com + JBoss + http://www.jboss.org/ + + contributing developer + + 0 + + + + kabir.khan@jboss.com + Kabir Khan + kabir.khan@jboss.com + JBoss + http://www.jboss.org/ + + contributing developer + + 0 + + + + scottmarlow + Scott Marlow + smarlow@redhat.com + JBoss + http://www.jboss.org/ + + contributing developer + + -5 + + + + + + + + + jboss-releases-repository + JBoss Releases Repository + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + + + jboss-snapshots-repository + JBoss Snapshots Repository + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + src/main/ + src/test/ + + + src/test/resources + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.2 + + 1.8 + 1.8 + 11 + 11 + -parameters + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.18.1 + + + javassist/JvstTest.java + + once + + resources + + ${project.build.directory}/runtest + + + + org.apache.maven.plugins + maven-jar-plugin + 2.6 + + + + javassist.CtClass + true + + + + + + maven-source-plugin + 2.0.4 + + + attach-sources + + jar + + + + true + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + true + javassist.compiler:javassist.convert:javassist.scopedpool:javassist.bytecode.stackmap + Javassist, a Java-bytecode translator toolkit.
+Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.]]>
+ public + true + none + 8 +
+
+ + org.apache.felix + maven-bundle-plugin + 3.3.0 + + + bundle-manifest + process-classes + + manifest + + + + + + jar + bundle + war + + + ${project.artifactId} + ${project.version} + !com.sun.jdi.* + !com.sun.jdi.*,javassist.*;version="${project.version}" + + + true + +
+
+ + + + centralRelease + + + + sonatype-releases-repository + Sonatype Releases Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + ${gpg.passphrase} + ${gpg.useAgent} + + + + sign-artifacts + verify + + sign + + + + + + + + + + default-tools + + [,1.8] + + + + com.sun + tools + ${java.version} + system + true + ${java.home}/../lib/tools.jar + + + + + java9-tools + + [1.9,] + + + + com.sun + tools + ${java.version} + system + true + ${java.home}/lib/jrt-fs.jar + + + + + + + junit + junit + [4.13.1,) + test + + + org.hamcrest + hamcrest-all + 1.3 + test + + +
+ diff --git a/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom.sha1 b/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom.sha1 new file mode 100644 index 000000000..04af3a6e5 --- /dev/null +++ b/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom.sha1 @@ -0,0 +1 @@ +12ec4905545213432afa703f4caf0b7409fbc3d9 \ No newline at end of file diff --git a/code/arachne/org/javassist/javassist/3.30.2-GA/_remote.repositories b/code/arachne/org/javassist/javassist/3.30.2-GA/_remote.repositories new file mode 100644 index 000000000..ac15e2514 --- /dev/null +++ b/code/arachne/org/javassist/javassist/3.30.2-GA/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:59 EDT 2024 +javassist-3.30.2-GA.pom>central= diff --git a/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom b/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom new file mode 100644 index 000000000..01e9f88cc --- /dev/null +++ b/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom @@ -0,0 +1,337 @@ + + 4.0.0 + + org.javassist + javassist + 3.30.2-GA + bundle + Javassist + + Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation + simple. It is a class library for editing bytecodes in Java. + + https://www.javassist.org/ + + + + + MPL 1.1 + https://www.mozilla.org/en-US/MPL/1.1/ + + + + LGPL 2.1 + https://www.gnu.org/licenses/lgpl-2.1.html + + + + Apache License 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Shigeru Chiba, www.javassist.org + + + JIRA + https://jira.jboss.org/jira/browse/JASSIST/ + + + scm:git:git@github.com:jboss-javassist/javassist.git + scm:git:git@github.com:jboss-javassist/javassist.git + scm:git:git@github.com:jboss-javassist/javassist.git + + + + + chiba + Shigeru Chiba + chiba@javassist.org + The Javassist Project + https://www.javassist.org/ + + project lead + + 9 + + + + adinn + Andrew Dinn + adinn@redhat.com + JBoss + https://www.jboss.org/ + + contributing developer + + 0 + + + + kabir.khan@jboss.com + Kabir Khan + kabir.khan@jboss.com + JBoss + https://www.jboss.org/ + + contributing developer + + 0 + + + + scottmarlow + Scott Marlow + smarlow@redhat.com + JBoss + https://www.jboss.org/ + + contributing developer + + -5 + + + + + + + jboss-releases-repository + JBoss Releases Repository + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + + + jboss-snapshots-repository + JBoss Snapshots Repository + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + + UTF-8 + + + + + junit + junit + [4.13.1,) + test + + + org.hamcrest + hamcrest-all + 1.3 + test + + + + + src/main/ + src/test/ + + + src/test/resources + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.2 + + 1.8 + 1.8 + 11 + 11 + -parameters + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.18.1 + + + javassist/JvstTest.java + + once + + resources + + ${project.build.directory}/runtest + + + + org.apache.maven.plugins + maven-jar-plugin + 2.6 + + + + javassist.CtClass + true + + src/main/META-INF/MANIFEST.MF + + + + + maven-source-plugin + 2.0.4 + + + attach-sources + + jar + + + + true + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + true + javassist.compiler:javassist.convert:javassist.scopedpool:javassist.bytecode.stackmap + Javassist, a Java-bytecode translator toolkit.
+Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.]]>
+ public + true + none + 8 +
+
+ + org.apache.felix + maven-bundle-plugin + 5.1.9 + + + bundle-manifest + process-classes + + manifest + + + + + + jar + bundle + war + + + ${project.artifactId} + ${project.version} + !com.sun.jdi.* + !com.sun.jdi.*,javassist.*;version="${project.version}" + + + true + +
+
+ + + + centralRelease + + + + sonatype-releases-repository + Sonatype Releases Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + ${gpg.passphrase} + ${gpg.useAgent} + + + + sign-artifacts + verify + + sign + + + + + + + + + + default-tools + + [,1.8] + + + + com.sun + tools + ${java.version} + system + true + ${java.home}/../lib/tools.jar + + + + + java9-tools + + [1.9,] + + + + com.sun + tools + ${java.version} + system + true + ${java.home}/lib/jrt-fs.jar + + + + +
diff --git a/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom.sha1 b/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom.sha1 new file mode 100644 index 000000000..26a2fb43f --- /dev/null +++ b/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom.sha1 @@ -0,0 +1 @@ +005e8895e8598228aa2c1d3b426585a49e2c22fc \ No newline at end of file diff --git a/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/_remote.repositories b/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/_remote.repositories new file mode 100644 index 000000000..3ac7e7247 --- /dev/null +++ b/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:54 EDT 2024 +arquillian-bom-1.7.0.Alpha10.pom>central= diff --git a/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom b/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom new file mode 100644 index 000000000..d7966a54e --- /dev/null +++ b/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom @@ -0,0 +1,296 @@ + + + + + 4.0.0 + + + org.jboss.arquillian + arquillian-bom + 1.7.0.Alpha10 + pom + Arquillian BOM + http://arquillian.org + Arquillian Bill Of Material + + + jira + http://jira.jboss.com/jira/browse/ARQ + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + scm:git:git://git@github.com:arquillian/arquillian-core.git + scm:git:ssh://github.com/arquillian/arquillian-core.git + git://github.com/arquillian/arquillian-core.git + 1.7.0.Alpha10 + + + + + arquillian.org + Arquillian Community + arquillian.org + http://arquillian.org + + + + + + 1.2.6 + 2.0.0 + 3.1.4 + + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + + + + + + org.jboss.arquillian.core + arquillian-core-api + ${project.version} + + + org.jboss.arquillian.core + arquillian-core-spi + ${project.version} + + + org.jboss.arquillian.core + arquillian-core-impl-base + ${project.version} + + + + + org.jboss.arquillian.config + arquillian-config-api + ${project.version} + + + org.jboss.arquillian.config + arquillian-config-spi + ${project.version} + + + org.jboss.arquillian.config + arquillian-config-impl-base + ${project.version} + + + + + org.jboss.arquillian.test + arquillian-test-api + ${project.version} + + + org.jboss.arquillian.test + arquillian-test-spi + ${project.version} + + + org.jboss.arquillian.test + arquillian-test-impl-base + ${project.version} + + + + + org.jboss.arquillian.container + arquillian-container-spi + ${project.version} + + + org.jboss.arquillian.container + arquillian-container-impl-base + ${project.version} + + + + + org.jboss.arquillian.container + arquillian-container-test-api + ${project.version} + + + org.jboss.arquillian.container + arquillian-container-test-spi + ${project.version} + + + org.jboss.arquillian.container + arquillian-container-test-impl-base + ${project.version} + + + + + org.jboss.arquillian.junit + arquillian-junit-core + ${project.version} + + + org.jboss.arquillian.junit + arquillian-junit-container + ${project.version} + + + org.jboss.arquillian.junit + arquillian-junit-standalone + ${project.version} + + + + + org.jboss.arquillian.junit5 + arquillian-junit5-core + ${project.version} + + + org.jboss.arquillian.junit5 + arquillian-junit5-container + ${project.version} + + + + + org.jboss.arquillian.testng + arquillian-testng-core + ${project.version} + + + org.jboss.arquillian.testng + arquillian-testng-container + ${project.version} + + + org.jboss.arquillian.testng + arquillian-testng-standalone + ${project.version} + + + + + org.jboss.arquillian.protocol + arquillian-protocol-servlet + ${project.version} + + + org.jboss.arquillian.protocol + arquillian-protocol-servlet-jakarta + ${project.version} + + + org.jboss.arquillian.protocol + arquillian-protocol-jmx + ${project.version} + + + + + org.jboss.arquillian.testenricher + arquillian-testenricher-cdi + ${project.version} + + + org.jboss.arquillian.testenricher + arquillian-testenricher-ejb + ${project.version} + + + org.jboss.arquillian.testenricher + arquillian-testenricher-resource + ${project.version} + + + org.jboss.arquillian.testenricher + arquillian-testenricher-initialcontext + ${project.version} + + + org.jboss.arquillian.testenricher + arquillian-testenricher-cdi-jakarta + ${project.version} + + + org.jboss.arquillian.testenricher + arquillian-testenricher-ejb-jakarta + ${project.version} + + + org.jboss.arquillian.testenricher + arquillian-testenricher-resource-jakarta + ${project.version} + + + + + org.jboss.shrinkwrap + shrinkwrap-bom + ${version.shrinkwrap_core} + pom + import + + + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-bom + ${version.shrinkwrap_resolver} + pom + import + + + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-bom + ${version.shrinkwrap_descriptors} + pom + import + + + + + + + + + + maven-release-plugin + + false + true + + + + + + + + + jboss-releases-repository + JBoss Releases Repository + ${jboss.releases.repo.url} + + + jboss-snapshots-repository + JBoss Snapshots Repository + ${jboss.snapshots.repo.url} + + + + diff --git a/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom.sha1 b/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom.sha1 new file mode 100644 index 000000000..a86948da0 --- /dev/null +++ b/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom.sha1 @@ -0,0 +1 @@ +a9b8dce75d7dff573b8c4eae322152bb203e51c6 \ No newline at end of file diff --git a/code/arachne/org/jboss/jboss-parent/39/_remote.repositories b/code/arachne/org/jboss/jboss-parent/39/_remote.repositories new file mode 100644 index 000000000..3b9f10e48 --- /dev/null +++ b/code/arachne/org/jboss/jboss-parent/39/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:27 EDT 2024 +jboss-parent-39.pom>jboss-public-repository-group= diff --git a/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom b/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom new file mode 100644 index 000000000..072347dd2 --- /dev/null +++ b/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom @@ -0,0 +1,1521 @@ + + + + + 4.0.0 + + org.jboss + 39 + jboss-parent + + pom + + JBoss Parent Parent POM + Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs + http://www.jboss.org + + + JIRA + https://issues.redhat.com/ + + + + scm:git:git@github.com:jboss/jboss-parent-pom.git + scm:git:git@github.com:jboss/jboss-parent-pom.git + http://github.com/jboss/jboss-parent-pom + HEAD + + + + + jboss.org + JBoss.org Community + JBoss.org + http://www.jboss.org + + + + + + JBoss User List + https://lists.jboss.org/mailman/listinfo/jboss-user + https://lists.jboss.org/mailman/listinfo/jboss-user + http://lists.jboss.org/pipermail/jboss-user/ + + + JBoss Developer List + https://lists.jboss.org/mailman/listinfo/jboss-development + https://lists.jboss.org/mailman/listinfo/jboss-development + http://lists.jboss.org/pipermail/jboss-development/ + + + + + + Public Domain + http://repository.jboss.org/licenses/cc0-1.0.txt + repo + + + + + JBoss by Red Hat + http://www.jboss.org + + + + + + + 1.8 + 3.1.2 + 3.1.1 + 3.0.0 + 1.4 + 4.0.0 + 3.1.1 + 3.1.0 + 4.1.2 + 2.7 + 3.8.1 + 3.1.1 + 2.8.2 + 1.4.2 + 3.0.1 + 1.0.0 + 3.0.1 + 3.0.0 + 3.0.0-M3 + 3.0.5 + 1.6 + 3.2.0 + 1.0.2 + 2.5.2 + 3.1.2 + 3.1.1 + 2.1 + 3.0.0 + 1.20 + 2.9 + 3.6.0 + 3.12.0 + 2.4 + 2.5.3 + 3.2.0 + 3.2.1 + 3.8.2 + 3.7.0.1746 + 3.1.0 + 2.22.2 + ${version.surefire.plugin} + 2.8.1 + 3.2.3 + 4.6.2 + + + 3.6.0 + + + + + + jboss-releases-repository + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + jboss-snapshots-repository + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + + + + UTF-8 + UTF-8 + + + 1.8 + 1.8 + ${maven.compiler.target} + ${maven.compiler.source} + + + ${maven.compiler.target} + ${maven.compiler.source} + ${maven.compiler.testTarget} + ${maven.compiler.testSource} + + + 3.2.5 + ${maven.compiler.argument.source} + ERROR + + + true + + + ${maven.compiler.argument.target} + + + false + -Pjboss-release + + + source-release + 8.34 + + + + + 3.Final + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${version.antrun.plugin} + + + org.apache.maven.plugins + maven-archetype-plugin + ${version.archetype.plugin} + + + org.apache.maven.plugins + maven-assembly-plugin + ${version.assembly.plugin} + + + true + + + true + + + true + + + + ${project.url} + ${java.version} + ${java.vendor} + ${os.name} + ${os.arch} + ${os.version} + ${project.scm.url} + ${project.scm.connection} + ${buildNumber} + + + + + + org.codehaus.mojo + build-helper-maven-plugin + ${version.buildhelper.plugin} + + + org.codehaus.mojo + buildnumber-maven-plugin + ${version.buildnumber.plugin} + + + com.googlecode.maven-download-plugin + download-maven-plugin + ${version.download.plugin} + + + org.apache.felix + maven-bundle-plugin + ${version.bundle.plugin} + + + true + + + true + + + true + + + + ${project.url} + ${java.version} + ${java.vendor} + ${os.name} + ${os.arch} + ${os.version} + ${project.scm.url} + ${project.scm.connection} + + + + ${buildNumber} + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${version.checkstyle.plugin} + + + com.puppycrawl.tools + checkstyle + ${version.checkstyle} + + + com.sun + tools + + + + + + + org.apache.maven.plugins + maven-clean-plugin + ${version.clean.plugin} + + + com.atlassian.maven.plugins + clover-maven-plugin + ${version.clover.plugin} + + + org.codehaus.mojo + cobertura-maven-plugin + ${version.cobertura.plugin} + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.compiler.plugin} + + true + true + ${maven.compiler.argument.source} + ${maven.compiler.argument.target} + ${maven.compiler.argument.testSource} + ${maven.compiler.argument.testTarget} + + -Xlint:unchecked + + + + + org.apache.maven.plugins + maven-dependency-plugin + ${version.dependency.plugin} + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.deploy.plugin} + + + org.apache.maven.plugins + maven-ear-plugin + ${version.ear.plugin} + + + org.codehaus.plexus + plexus-archiver + ${version.plexus.archiver} + + + + + true + + + true + + + true + + + + ${project.url} + ${java.version} + ${java.vendor} + ${os.name} + ${os.arch} + ${os.version} + ${project.scm.url} + ${project.scm.connection} + ${buildNumber} + + + + + + org.apache.maven.plugins + maven-ejb-plugin + ${version.ejb.plugin} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${version.enforcer.plugin} + + + org.codehaus.mojo + exec-maven-plugin + ${version.exec.plugin} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${version.failsafe.plugin} + + + org.codehaus.mojo + findbugs-maven-plugin + ${version.findbugs.plugin} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.gpg.plugin} + + + org.apache.maven.plugins + maven-help-plugin + ${version.help.plugin} + + + org.jboss.maven.plugins + maven-injection-plugin + ${version.injection.plugin} + + + compile + + bytecode + + + + + + org.apache.maven.plugins + maven-install-plugin + ${version.install.plugin} + + + org.apache.maven.plugins + maven-jar-plugin + ${version.jar.plugin} + + + true + + + true + + + true + + + + ${project.url} + ${java.version} + ${java.vendor} + ${os.name} + ${os.arch} + ${os.version} + ${project.scm.url} + ${project.scm.connection} + ${buildNumber} + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.javadoc.plugin} + + +
${project.name} ${project.version}]]>
${project.name} ${project.version}]]>
+ + true + + + true + + + true + + + + ${project.url} + ${java.version} + ${java.vendor} + ${os.name} + ${os.arch} + ${os.version} + ${project.scm.url} + ${project.scm.connection} + ${buildNumber} + + + + ${javadoc.additional.params} + ${javadoc.additional.params} + + + + org.codehaus.mojo + javancss-maven-plugin + ${version.javancss.plugin} + + + org.apache.maven.plugins + maven-jxr-plugin + ${version.jxr.plugin} + + + org.codehaus.mojo + license-maven-plugin + ${version.license.plugin} + + + org.apache.maven.plugins + maven-plugin-plugin + ${version.plugin.plugin} + + + org.apache.maven.plugins + maven-pmd-plugin + ${version.pmd.plugin} + + + org.apache.maven.plugins + maven-rar-plugin + ${version.rar.plugin} + + + org.apache.maven.plugins + maven-release-plugin + ${version.release.plugin} + + + org.apache.maven.plugins + maven-resources-plugin + ${version.resources.plugin} + + + org.apache.maven.plugins + maven-shade-plugin + ${version.shade.plugin} + + + org.apache.maven.plugins + maven-site-plugin + ${version.site.plugin} + + + org.codehaus.mojo + sonar-maven-plugin + ${version.sonar.plugin} + + + org.apache.maven.plugins + maven-source-plugin + ${version.source.plugin} + + + true + + + true + + + true + + + + ${project.url} + ${java.version} + ${java.vendor} + ${os.name} + ${os.arch} + ${os.version} + ${project.scm.url} + ${project.scm.connection} + ${buildNumber} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.surefire.plugin} + + false + + ${project.build.directory} + + + + + org.codehaus.mojo + versions-maven-plugin + ${version.versions.plugin} + + false + + + + org.apache.maven.plugins + maven-war-plugin + ${version.war.plugin} + + + true + + + true + + + true + + + + ${project.url} + ${java.version} + ${java.vendor} + ${os.name} + ${os.arch} + ${os.version} + ${project.scm.url} + ${project.scm.connection} + ${buildNumber} + + + false + + + + org.zanata + zanata-maven-plugin + ${version.zanata.plugin} + + + + + org.eclipse.m2e + lifecycle-mapping + ${version.org.eclipse.m2e.lifecycle-mapping} + + + + + + + org.apache.felix + maven-bundle-plugin + [2.3.7,) + + manifest + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + [1.3.1,) + + enforce + + + + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + [1.0.0,) + + create + + + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java-version + + enforce + + + + + To build this project, don't use maven repositories over HTTP. Please use HTTPS in your settings.xml or run the build with property insecure.repositories=WARN + ${insecure.repositories} + + http://* + + + http://* + + + + To build this project JDK ${jdk.min.version} (or greater) is required. Please install it. + ${jdk.min.version} + + + + + + enforce-maven-version + + enforce + + + + + To build this project Maven ${maven.min.version} (or greater) is required. Please install it. + ${maven.min.version} + + + + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + get-scm-revision + initialize + + create + + + false + false + UNKNOWN + true + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + + + + + + + + + jboss-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${version.assembly.plugin} + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + gnu + + + + + + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + + + doclint-java8-disable + + [1.8,) + + + -Xdoclint:none + + + + + gpg-sign + + + + + org.apache.maven.plugins + maven-gpg-plugin + + true + + + + + sign + + + + + + + + + + compile-java8-release-flag + + + ${basedir}/build-release-8 + + [9,) + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + default-compile + compile + + compile + + + 8 + + + + + + + + + + + include-jdk-misc + + + ${basedir}/build-include-jdk-misc + + [9,) + + + 3.8.1-jboss-2 + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + fetch-jdk-misc + generate-sources + + get + copy + + + org.jboss:jdk-misc:${version.jdk-misc} + ${project.build.directory} + true + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + default-compile + compile + + compile + + + 8 + + ${project.build.directory}/jdk-misc.jar + + + + + + + + + + + + + java8-test + + [9,) + + java8.home + + + ${basedir}/build-test-java8 + + + + 3.8.1-jboss-2 + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + java8-test + test + + test + + + ${java8.home}/bin/java + + ${java8.home}/lib/tools.jar + + + + + + + + + + + + java9-mr-build + + [9,) + + ${basedir}/src/main/java9 + + + + 3.8.1-jboss-2 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + compile-java9 + compile + + compile + + + 9 + ${project.build.directory} + ${project.basedir}/src/main/java9 + ${project.build.directory}/classes/META-INF/versions/9 + + + ${project.build.outputDirectory} + + + + + + + + maven-jar-plugin + + + + true + + + + + + + + + + + java9-test + + [10,) + + java9.home + + + ${basedir}/build-test-java9 + + + + 3.8.1-jboss-2 + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + java9-test + test + + test + + + ${java9.home}/bin/java + ${project.build.directory}/classes/META-INF/versions/9 + + + ${project.build.outputDirectory} + + + + + + + + + + + + + java10-mr-build + + [10,) + + ${basedir}/src/main/java10 + + + + 3.8.1-jboss-2 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + compile-java10 + compile + + compile + + + 10 + ${project.build.directory} + ${project.basedir}/src/main/java10 + ${project.build.directory}/classes/META-INF/versions/10 + + + + ${project.build.directory}/classes/META-INF/versions/9 + + ${project.build.outputDirectory} + + + + + + + + maven-jar-plugin + + + + true + + + + + + + + + + + java10-test + + [11,) + + java10.home + + + ${basedir}/build-test-java10 + + + + 3.8.1-jboss-2 + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + java10-test + test + + test + + + ${java10.home}/bin/java + ${project.build.directory}/classes/META-INF/versions/10 + + + + ${project.build.directory}/classes/META-INF/versions/9 + + ${project.build.outputDirectory} + + + + + + + + + + + + + java11-mr-build + + [11,) + + ${basedir}/src/main/java11 + + + + 3.8.1-jboss-2 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + compile-java11 + compile + + compile + + + 11 + ${project.build.directory} + ${project.basedir}/src/main/java11 + ${project.build.directory}/classes/META-INF/versions/11 + + + + ${project.build.directory}/classes/META-INF/versions/10 + + + ${project.build.directory}/classes/META-INF/versions/9 + + ${project.build.outputDirectory} + + + + + + + + maven-jar-plugin + + + + true + + + + + + + + + + + java11-test + + [12,) + + java11.home + + + ${basedir}/build-test-java11 + + + + 3.8.1-jboss-2 + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + java11-test + test + + test + + + ${java11.home}/bin/java + ${project.build.directory}/classes/META-INF/versions/11 + + + + ${project.build.directory}/classes/META-INF/versions/10 + + + ${project.build.directory}/classes/META-INF/versions/9 + + ${project.build.outputDirectory} + + + + + + + + + + + + + java12-mr-build + + [12,) + + ${basedir}/src/main/java12 + + + + 3.8.1-jboss-2 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + compile-java12 + compile + + compile + + + 12 + ${project.build.directory} + ${project.basedir}/src/main/java12 + ${project.build.directory}/classes/META-INF/versions/12 + + + + ${project.build.directory}/classes/META-INF/versions/11 + + + ${project.build.directory}/classes/META-INF/versions/10 + + + ${project.build.directory}/classes/META-INF/versions/9 + + ${project.build.outputDirectory} + + + + + + + + maven-jar-plugin + + + + true + + + + + + + + + + + java12-test + + [13,) + + java12.home + + + ${basedir}/build-test-java12 + + + + 3.8.1-jboss-2 + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + java12-test + test + + test + + + ${java12.home}/bin/java + ${project.build.directory}/classes/META-INF/versions/12 + + + + ${project.build.directory}/classes/META-INF/versions/11 + + + ${project.build.directory}/classes/META-INF/versions/10 + + + ${project.build.directory}/classes/META-INF/versions/9 + + ${project.build.outputDirectory} + + + + + + + + + + + + + java13-mr-build + + [13,) + + ${basedir}/src/main/java13 + + + + 3.8.1-jboss-2 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + compile-java13 + compile + + compile + + + 12 + ${project.build.directory} + ${project.basedir}/src/main/java13 + ${project.build.directory}/classes/META-INF/versions/13 + + + + ${project.build.directory}/classes/META-INF/versions/12 + + + ${project.build.directory}/classes/META-INF/versions/11 + + + ${project.build.directory}/classes/META-INF/versions/10 + + + ${project.build.directory}/classes/META-INF/versions/9 + + ${project.build.outputDirectory} + + + + + + + + maven-jar-plugin + + + + true + + + + + + + + + + + + + + jboss-public-repository + JBoss Public Maven Repository + https://repository.jboss.org/nexus/content/groups/public/ + default + + true + + + false + + + + + + + ${jboss.releases.repo.id} + JBoss Releases Repository + ${jboss.releases.repo.url} + + + ${jboss.snapshots.repo.id} + JBoss Snapshots Repository + ${jboss.snapshots.repo.url} + + + + diff --git a/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.lastUpdated b/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.lastUpdated new file mode 100644 index 000000000..cd945ee0f --- /dev/null +++ b/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.lastUpdated @@ -0,0 +1,5 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:27 EDT 2024 +http\://0.0.0.0/.error=Could not transfer artifact org.jboss\:jboss-parent\:pom\:39 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139806901 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139807116 diff --git a/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.sha1 b/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.sha1 new file mode 100644 index 000000000..7d2f4896d --- /dev/null +++ b/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.sha1 @@ -0,0 +1 @@ +d5d48ef7a80179bec060e8b69fa6b6b3e9a8bbf0 \ No newline at end of file diff --git a/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/_remote.repositories b/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/_remote.repositories new file mode 100644 index 000000000..11d3ce731 --- /dev/null +++ b/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:57 EDT 2024 +jboss-logging-3.5.3.Final.pom>central= diff --git a/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom b/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom new file mode 100644 index 000000000..5dd3cc39c --- /dev/null +++ b/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom @@ -0,0 +1,404 @@ + + + + + + + org.jboss.logging + logging-parent + 1.0.1.Final + + + 4.0.0 + org.jboss.logging + jboss-logging + 3.5.3.Final + jar + JBoss Logging 3 + http://www.jboss.org + The JBoss Logging Framework + + + + Apache License 2.0 + https://repository.jboss.org/licenses/apache-2.0.txt + repo + + + + + + scm:git:git://github.com/jboss-logging/jboss-logging.git + scm:git:git@github.com:jboss-logging/jboss-logging.git + https://github.com/jboss-logging/jboss-logging/tree/main/ + HEAD + + + + + 1.4.8 + 2.1 + 1.2.17 + 2.20.0 + 2.1.19.Final + 5.9.3 + 2.0.7 + + + 5.1.3 + + true + ${project.build.directory}${file.separator}cp-test-classes + + + + + + org.junit + junit-bom + ${version.org.junit} + pom + import + + + + + + + org.jboss.logmanager + jboss-logmanager + ${version.org.jboss.logmanager} + provided + + + log4j + log4j + ${version.org.apache.log4j} + provided + + + com.sun.jdmk + jmxtools + + + com.sun.jmx + jmxri + + + + + org.apache.logging.log4j + log4j-api + ${version.org.apache.logging.log4j} + provided + + + org.slf4j + slf4j-api + ${version.org.sfl4j} + provided + + + + + org.junit.jupiter + junit-jupiter + test + + + ch.qos.logback + logback-classic + ${version.ch.qos.logback} + test + + + org.apache.logging.log4j + log4j-core + ${version.org.apache.logging.log4j} + test + + + + + + + net.revelc.code.formatter + formatter-maven-plugin + + + net.revelc.code + impsort-maven-plugin + + + maven-compiler-plugin + + false + + + + default-testCompile + + testCompile + + test-compile + + + **/*ClassPathTestCase.java + + + + + cp-test-compile + + testCompile + + test-compile + + ${cp.test.classes.dir} + ${skip.cp.tests} + + **/*ClassPathTestCase.java + + + + + + + maven-source-plugin + + + maven-surefire-plugin + + ${maven.test.redirectTestOutputToFile} + + false + true + false + + + + default + + test + + + false + + **/*ClassPathTestCase.java + + + + org.jboss.logmanager.LogManager + + + + + jboss-logmanager-cp-test + + test + + + false + false + ${cp.test.classes.dir} + + **/JBossLogManagerClassPathTestCase.java + + + org.apache.logging.log4j + log4j + org.slf4j + ch.qos.logback + + + org.jboss.logmanager.LogManager + + + + + log4j2-cp-test + + test + + test + + false + ${cp.test.classes.dir} + + **/Log4j2ClassPathTestCase.java + + + org.jboss.logmanager + log4j + org.slf4j + ch.qos.logback + + + + + log4j-cp-test + + test + + test + + false + ${cp.test.classes.dir} + + **/Log4jClassPathTestCase.java + + + org.apache.logging.log4j + org.jboss.logmanager + org.slf4j + ch.qos.logback + + + + + slf4j-cp-test + + test + + test + + false + ${cp.test.classes.dir} + + **/Slf4jClassPathTestCase.java + + + org.apache.logging.log4j + org.jboss.logmanager + log4j + + + + + jul-cp-test + + test + + + false + ${cp.test.classes.dir} + + **/JulClassPathTestCase.java + + + org.apache.logging.log4j + org.jboss.logmanager + log4j + org.slf4j + ch.qos.logback + + + + + + + + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + maven-javadoc-plugin + + --no-module-directories + none + + 8 + + + + org.apache.felix + maven-bundle-plugin + true + + + + false + + + org.jboss.logging + + + + + ${project.groupId}.*;version=${project.version};-split-package:=error + + + org.apache.log4j.config;resolution:=optional, + *;resolution:=optional + + + + + + bundle-manifest + process-classes + + manifest + + + + + + io.github.dmlloyd.module-info + module-info + ${version.module-info} + + + module-info + process-classes + + generate + + + + + + + + + + jboss-public-repository-group + JBoss Public Repository Group + + true + never + + + true + never + + https://repository.jboss.org/nexus/content/groups/public/ + default + + + diff --git a/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom.sha1 b/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom.sha1 new file mode 100644 index 000000000..6b2a4aefe --- /dev/null +++ b/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom.sha1 @@ -0,0 +1 @@ +c8bf5fe8239a4ccacaec31ec08dac57a05c25158 \ No newline at end of file diff --git a/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/_remote.repositories b/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/_remote.repositories new file mode 100644 index 000000000..47e245ab6 --- /dev/null +++ b/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:57 EDT 2024 +logging-parent-1.0.1.Final.pom>central= diff --git a/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom b/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom new file mode 100644 index 000000000..24c61885d --- /dev/null +++ b/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom @@ -0,0 +1,134 @@ + + + + org.jboss + jboss-parent + 39 + + + 4.0.0 + + org.jboss.logging + logging-parent + 1.0.1.Final + pom + + https://jboss.org + + + scm:git:git://github.com/jboss-logging/logging-dev-tools.git + scm:git:git@github.com:jboss-logging/logging-dev-tools.git + https://github.com/jboss-logging/logging-dev-tools/tree/main/ + HEAD + + + + + James R. Perkins + jperkins@redhat.com + Red Hat, Inc. + https://redhat.com + + + + + + Apache License 2.0 + https://repository.jboss.org/licenses/apache-2.0.txt + repo + + + + + + false + true + + + 11 + 11 + 11 + ${maven.compiler.target} + + 3.11.0 + 3.1.0 + 2.23.0 + 1.9.0 + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${maven.compiler.release} + + + + org.apache.maven.plugins + maven-surefire-plugin + + ${maven.test.redirectTestOutputToFile} + + + + net.revelc.code.formatter + formatter-maven-plugin + ${version.formatter.maven.plugin} + + + org.jboss.logging + ide-config + 1.0.1.Final + + + + + .cache + eclipse-code-formatter.xml + jboss-logging-xml.properties + LF + true + true + ${skipFormatting} + + + + format + + format + + process-sources + + + + + net.revelc.code + impsort-maven-plugin + ${version.impsort.maven.plugin} + + + .cache + java.,javax.,jakarta.,org.,com. + * + ${skipFormatting} + true + + + + sort-imports + + sort + + process-sources + + + + + + + diff --git a/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom.sha1 b/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom.sha1 new file mode 100644 index 000000000..4ec2bd810 --- /dev/null +++ b/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom.sha1 @@ -0,0 +1 @@ +1efc675bb87e4b0aadb2e3944d14b4e6102294bc \ No newline at end of file diff --git a/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/_remote.repositories b/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/_remote.repositories new file mode 100644 index 000000000..6116c5373 --- /dev/null +++ b/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:56 EDT 2024 +shrinkwrap-descriptors-bom-2.0.0.pom>jboss-public-repository-group= diff --git a/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom b/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom new file mode 100644 index 000000000..164ca5f63 --- /dev/null +++ b/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom @@ -0,0 +1,135 @@ + + + + + + 4.0.0 + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-bom + 2.0.0 + pom + ShrinkWrap Descriptors Bill of Materials + Centralized dependencyManagement for the ShrinkWrap Descriptors Project + http://www.jboss.org/shrinkwrap + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + jboss.org + JBoss.org Community + JBoss.org + http://www.jboss.org + + + + + + scm:git:git://github.com/shrinkwrap/descriptors.git + scm:git:git@github.com:shrinkwrap/descriptors.git + https://github.com/shrinkwrap/descriptors + 2.0.0 + + + + + + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + + + + + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-api-base + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-api-javaee + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-api-jboss + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-gen + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-impl-base + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-impl-javaee + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-impl-jboss + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-spi + ${project.version} + + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-depchain + ${project.version} + pom + + + + + + + + + + maven-release-plugin + 2.1 + + false + true + + + + + + + + + jboss-releases-repository + JBoss Releases Repository + ${jboss.releases.repo.url} + + + jboss-snapshots-repository + JBoss Snapshots Repository + ${jboss.snapshots.repo.url} + + + + diff --git a/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom.sha1 b/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom.sha1 new file mode 100644 index 000000000..953637fb3 --- /dev/null +++ b/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom.sha1 @@ -0,0 +1 @@ +2e54f388c16b5881cba46df310a26c4a9d9cf13d \ No newline at end of file diff --git a/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/_remote.repositories b/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/_remote.repositories new file mode 100644 index 000000000..598edf00c --- /dev/null +++ b/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:55 EDT 2024 +shrinkwrap-resolver-bom-3.1.4.pom>jboss-public-repository-group= diff --git a/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom b/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom new file mode 100644 index 000000000..5356646bd --- /dev/null +++ b/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom @@ -0,0 +1,203 @@ + + + + + + 4.0.0 + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-bom + 3.1.4 + pom + ShrinkWrap Resolver Bill of Materials + Centralized dependencyManagement for the ShrinkWrap Resolver Project + http://www.jboss.org/shrinkwrap + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + scm:git:git://github.com/shrinkwrap/shrinkwrap.git + scm:git:git@github.com:shrinkwrap/shrinkwrap.git + https://github.com/shrinkwrap/shrinkwrap + 3.1.4 + + + + + jboss.org + JBoss.org Community + JBoss.org + http://www.jboss.org + + + + + + + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + https://repository.jboss.org/nexus/content/repositories/snapshots/ + 3.6.3 + + + + + + + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-api + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-spi + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-api-maven + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-spi-maven + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-impl-maven + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-api-maven-archive + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-impl-maven-archive + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-depchain + ${project.version} + pom + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-gradle-depchain + ${project.version} + pom + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-maven-plugin + ${project.version} + runtime + maven-plugin + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-api-gradle-embedded-archive + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-impl-gradle-embedded-archive + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-api-maven-embedded + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-impl-maven-embedded + ${project.version} + + + + + org.apache.maven + maven + ${version.org.apache.maven} + import + pom + + + + + + + + + + maven-release-plugin + + false + true + + + + + + + + + + gpg-sign + + + + + org.apache.maven.plugins + maven-gpg-plugin + + true + + + + + sign + + + + + + + + + + + + jboss-releases-repository + JBoss Releases Repository + ${jboss.releases.repo.url} + + + jboss-snapshots-repository + JBoss Snapshots Repository + ${jboss.snapshots.repo.url} + + + + diff --git a/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom.sha1 b/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom.sha1 new file mode 100644 index 000000000..5fc54e2f5 --- /dev/null +++ b/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom.sha1 @@ -0,0 +1 @@ +ed2a70b523572c65b999e342899d892750e4eee3 \ No newline at end of file diff --git a/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/_remote.repositories b/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/_remote.repositories new file mode 100644 index 000000000..9b13129e5 --- /dev/null +++ b/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:55 EDT 2024 +shrinkwrap-bom-1.2.6.pom>jboss-public-repository-group= diff --git a/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom b/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom new file mode 100644 index 000000000..b98161891 --- /dev/null +++ b/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom @@ -0,0 +1,127 @@ + + + + + + 4.0.0 + + + org.jboss.shrinkwrap + shrinkwrap-bom + 1.2.6 + pom + ShrinkWrap Bill of Materials + Centralized dependencyManagement for the ShrinkWrap Project + http://www.jboss.org/shrinkwrap + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + scm:git:git://github.com/shrinkwrap/shrinkwrap.git + scm:git:git@github.com:shrinkwrap/shrinkwrap.git + https://github.com/shrinkwrap/shrinkwrap + 1.2.6 + + + + + jboss.org + JBoss.org Community + JBoss.org + http://www.jboss.org + + + + + + + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + + + + + + org.jboss.shrinkwrap + shrinkwrap-api + ${project.version} + + + org.jboss.shrinkwrap + shrinkwrap-spi + ${project.version} + + + org.jboss.shrinkwrap + shrinkwrap-impl-base + ${project.version} + + + org.jboss.shrinkwrap + shrinkwrap-api-nio2 + ${project.version} + + + org.jboss.shrinkwrap + shrinkwrap-impl-nio2 + ${project.version} + + + + org.jboss.shrinkwrap + shrinkwrap-depchain + ${project.version} + pom + + + + org.jboss.shrinkwrap + shrinkwrap-depchain-java7 + ${project.version} + pom + + + + + + + + + + maven-release-plugin + 2.1 + + false + true + + + + + + + + + jboss-releases-repository + JBoss Releases Repository + ${jboss.releases.repo.url} + + + jboss-snapshots-repository + JBoss Snapshots Repository + ${jboss.snapshots.repo.url} + + + + diff --git a/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom.sha1 b/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom.sha1 new file mode 100644 index 000000000..23e960418 --- /dev/null +++ b/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom.sha1 @@ -0,0 +1 @@ +2d5351aff1cf893fd48e82461ce47c114754e00b \ No newline at end of file diff --git a/code/arachne/org/jetbrains/annotations/17.0.0/_remote.repositories b/code/arachne/org/jetbrains/annotations/17.0.0/_remote.repositories new file mode 100644 index 000000000..d5b5daaf3 --- /dev/null +++ b/code/arachne/org/jetbrains/annotations/17.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:12 EDT 2024 +annotations-17.0.0.pom>central= diff --git a/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom b/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom new file mode 100644 index 000000000..afb0b24d0 --- /dev/null +++ b/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom @@ -0,0 +1,30 @@ + + + 4.0.0 + org.jetbrains + annotations + 17.0.0 + JetBrains Java Annotations + A set of annotations used for code inspection support and code documentation. + https://github.com/JetBrains/java-annotations + + https://github.com/JetBrains/java-annotations + scm:git:git://github.com/JetBrains/java-annotations.git + scm:git:ssh://github.com:JetBrains/java-annotations.git + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + JetBrains + JetBrains Team + JetBrains + https://www.jetbrains.com + + + diff --git a/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom.sha1 b/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom.sha1 new file mode 100644 index 000000000..7180c605e --- /dev/null +++ b/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom.sha1 @@ -0,0 +1 @@ +6fb414405261ca1251f81a29ed920d8621f060c7 \ No newline at end of file diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/_remote.repositories b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/_remote.repositories new file mode 100644 index 000000000..e970e2e28 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:49 EDT 2024 +kotlin-bom-1.3.72.pom>local-repo= diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom new file mode 100644 index 000000000..426a27d00 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom @@ -0,0 +1,219 @@ + + + + 4.0.0 + + org.jetbrains.kotlin + kotlin-bom + 1.3.72 + pom + + + + Kotlin Libraries bill-of-materials + Kotlin is a statically typed programming language that compiles to JVM byte codes and JavaScript + https://kotlinlang.org/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + A business-friendly OSS license + + + + + https://github.com/JetBrains/kotlin + scm:git:https://github.com/JetBrains/kotlin.git + scm:git:https://github.com/JetBrains/kotlin.git + + + + + JetBrains + JetBrains Team + JetBrains + https://www.jetbrains.com + + + + + + + ${project.version} + + + + + + + ${project.groupId} + kotlin-stdlib + ${kotlin.version} + + + ${project.groupId} + kotlin-stdlib-jdk7 + ${kotlin.version} + + + ${project.groupId} + kotlin-stdlib-jdk8 + ${kotlin.version} + + + ${project.groupId} + kotlin-stdlib-js + ${kotlin.version} + + + ${project.groupId} + kotlin-stdlib-common + ${kotlin.version} + + + + ${project.groupId} + kotlin-reflect + ${kotlin.version} + + + + ${project.groupId} + kotlin-osgi-bundle + ${kotlin.version} + + + + ${project.groupId} + kotlin-test + ${kotlin.version} + + + ${project.groupId} + kotlin-test-junit + ${kotlin.version} + + + ${project.groupId} + kotlin-test-junit5 + ${kotlin.version} + + + ${project.groupId} + kotlin-test-testng + ${kotlin.version} + + + ${project.groupId} + kotlin-test-js + ${kotlin.version} + + + ${project.groupId} + kotlin-test-common + ${kotlin.version} + + + ${project.groupId} + kotlin-test-annotations-common + ${kotlin.version} + + + + ${project.groupId} + kotlin-main-kts + ${kotlin.version} + + + ${project.groupId} + kotlin-script-runtime + ${kotlin.version} + + + ${project.groupId} + kotlin-script-util + ${kotlin.version} + + + ${project.groupId} + kotlin-scripting-common + ${kotlin.version} + + + ${project.groupId} + kotlin-scripting-jvm + ${kotlin.version} + + + ${project.groupId} + kotlin-scripting-jvm-host + ${kotlin.version} + + + + ${project.groupId} + kotlin-compiler + ${kotlin.version} + + + ${project.groupId} + kotlin-compiler-embeddable + ${kotlin.version} + + + ${project.groupId} + kotlin-daemon-client + ${kotlin.version} + + + + + + + ${deploy-repo} + ${deploy-url} + + + sonatype-nexus-staging + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + + sign-artifacts + + + + maven-gpg-plugin + 1.4 + + ${kotlin.key.passphrase} + ${kotlin.key.name} + ../../.gnupg + + + + sign-artifacts + verify + + sign + + + + + + + + + diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.lastUpdated b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.lastUpdated new file mode 100644 index 000000000..55980bf90 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:49 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139889574 +http\://0.0.0.0/.error=Could not transfer artifact org.jetbrains.kotlin\:kotlin-bom\:pom\:1.3.72 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139889330 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139889338 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139889436 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139889532 diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.sha1 b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.sha1 new file mode 100644 index 000000000..e837111a0 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.sha1 @@ -0,0 +1 @@ +bc373626aca59c52c3cbf49f046da939e11073f5 \ No newline at end of file diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/_remote.repositories b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/_remote.repositories new file mode 100644 index 000000000..b2b112059 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:31 EDT 2024 +kotlin-bom-1.9.23.pom>ohdsi= diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom new file mode 100644 index 000000000..e24196d02 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom @@ -0,0 +1,225 @@ + + + + 4.0.0 + + org.jetbrains.kotlin + kotlin-bom + 1.9.23 + pom + + + + Kotlin Libraries bill-of-materials + Kotlin is a statically typed programming language that compiles to JVM byte codes and JavaScript + https://kotlinlang.org/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + A business-friendly OSS license + + + + + https://github.com/JetBrains/kotlin + scm:git:https://github.com/JetBrains/kotlin.git + scm:git:https://github.com/JetBrains/kotlin.git + + + + + JetBrains + JetBrains Team + JetBrains + https://www.jetbrains.com + + + + + + + ${project.version} + + + + + + + ${project.groupId} + kotlin-stdlib + ${kotlin.version} + + + ${project.groupId} + kotlin-stdlib-jdk7 + ${kotlin.version} + + + ${project.groupId} + kotlin-stdlib-jdk8 + ${kotlin.version} + + + ${project.groupId} + kotlin-stdlib-js + ${kotlin.version} + + + ${project.groupId} + kotlin-stdlib-common + ${kotlin.version} + + + + ${project.groupId} + kotlin-reflect + ${kotlin.version} + + + + ${project.groupId} + kotlin-osgi-bundle + ${kotlin.version} + + + + ${project.groupId} + kotlin-test + ${kotlin.version} + + + ${project.groupId} + kotlin-test-junit + ${kotlin.version} + + + ${project.groupId} + kotlin-test-junit5 + ${kotlin.version} + + + ${project.groupId} + kotlin-test-testng + ${kotlin.version} + + + ${project.groupId} + kotlin-test-js + ${kotlin.version} + + + ${project.groupId} + kotlin-test-common + ${kotlin.version} + + + ${project.groupId} + kotlin-test-annotations-common + ${kotlin.version} + + + + ${project.groupId} + kotlin-main-kts + ${kotlin.version} + + + ${project.groupId} + kotlin-script-runtime + ${kotlin.version} + + + ${project.groupId} + kotlin-scripting-common + ${kotlin.version} + + + ${project.groupId} + kotlin-scripting-jvm + ${kotlin.version} + + + ${project.groupId} + kotlin-scripting-jvm-host + ${kotlin.version} + + + ${project.groupId} + kotlin-scripting-ide-services + ${kotlin.version} + + + + ${project.groupId} + kotlin-compiler + ${kotlin.version} + + + ${project.groupId} + kotlin-compiler-embeddable + ${kotlin.version} + + + ${project.groupId} + kotlin-daemon-client + ${kotlin.version} + + + + + + + ${deploy-repo} + ${deploy-url} + + + sonatype-nexus-staging + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + + sign-artifacts + + + + maven-gpg-plugin + 1.6 + + ${kotlin.key.passphrase} + ${kotlin.key.name} + ../../.gnupg + + + + sign-artifacts + verify + + sign + + + + --pinentry-mode + loopback + + + + + + + + + + diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.lastUpdated b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.lastUpdated new file mode 100644 index 000000000..284331383 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:31 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.jetbrains.kotlin\:kotlin-bom\:pom\:1.9.23 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139811058 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139811194 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139811302 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139811423 diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.sha1 b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.sha1 new file mode 100644 index 000000000..c9605908b --- /dev/null +++ b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.sha1 @@ -0,0 +1 @@ +bd2c64b0fd5c57c4a01a667ec61a7abb2e769550 \ No newline at end of file diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/_remote.repositories b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/_remote.repositories new file mode 100644 index 000000000..274d10cb3 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:50 EDT 2024 +kotlinx-coroutines-bom-1.3.6.pom>local-repo= diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom new file mode 100644 index 000000000..3fe100c99 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom @@ -0,0 +1,142 @@ + + + 4.0.0 + org.jetbrains.kotlinx + kotlinx-coroutines-bom + 1.3.6 + pom + kotlinx-coroutines-bom + Coroutines support libraries for Kotlin + https://github.com/Kotlin/kotlinx.coroutines + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + JetBrains + JetBrains Team + JetBrains + https://www.jetbrains.com + + + + https://github.com/Kotlin/kotlinx.coroutines + + + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-js + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-native + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-common + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-debug + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-guava + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-javafx + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk8 + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk9 + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-play-services + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx2 + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx3 + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-slf4j + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-swing + 1.3.6 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-test + 1.3.6 + compile + + + + diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.lastUpdated b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.lastUpdated new file mode 100644 index 000000000..7d53a95b1 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:50 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139890064 +http\://0.0.0.0/.error=Could not transfer artifact org.jetbrains.kotlinx\:kotlinx-coroutines-bom\:pom\:1.3.6 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139889744 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139889752 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139889913 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139890017 diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.sha1 b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.sha1 new file mode 100644 index 000000000..f6b4735c9 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.sha1 @@ -0,0 +1 @@ +87c949e6ac5bc0314d91694952d21becb67fb9bf \ No newline at end of file diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/_remote.repositories b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/_remote.repositories new file mode 100644 index 000000000..1cd28a2bf --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:31 EDT 2024 +kotlinx-coroutines-bom-1.7.3.pom>ohdsi= diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom new file mode 100644 index 000000000..623dbfbdd --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom @@ -0,0 +1,119 @@ + + + 4.0.0 + org.jetbrains.kotlinx + kotlinx-coroutines-bom + 1.7.3 + pom + kotlinx-coroutines-bom + Coroutines support libraries for Kotlin + https://github.com/Kotlin/kotlinx.coroutines + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + JetBrains + JetBrains Team + JetBrains + https://www.jetbrains.com + + + + https://github.com/Kotlin/kotlinx.coroutines + + + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-debug + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-guava + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-javafx + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk8 + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk9 + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-play-services + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx2 + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx3 + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-slf4j + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-swing + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test-jvm + 1.7.3 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test + 1.7.3 + + + + diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.lastUpdated b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.lastUpdated new file mode 100644 index 000000000..d0598943a --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:31 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.jetbrains.kotlinx\:kotlinx-coroutines-bom\:pom\:1.7.3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139811433 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139811529 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139811702 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139811848 diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.sha1 b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.sha1 new file mode 100644 index 000000000..1d49b3f7e --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.sha1 @@ -0,0 +1 @@ +6563a4ccb53e4678a32841c5dbb0dae1c026aa0f \ No newline at end of file diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/_remote.repositories b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/_remote.repositories new file mode 100644 index 000000000..ac59141e2 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:32 EDT 2024 +kotlinx-serialization-bom-1.6.3.pom>ohdsi= diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom new file mode 100644 index 000000000..e72d177d2 --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom @@ -0,0 +1,99 @@ + + + 4.0.0 + org.jetbrains.kotlinx + kotlinx-serialization-bom + 1.6.3 + pom + kotlinx-serialization-bom + Kotlin multiplatform serialization runtime library + https://github.com/Kotlin/kotlinx.serialization + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + JetBrains + JetBrains Team + JetBrains + https://www.jetbrains.com + + + + https://github.com/Kotlin/kotlinx.serialization + + + + + org.jetbrains.kotlinx + kotlinx-serialization-cbor-jvm + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-cbor + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-core-jvm + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-core + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-hocon + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-json-jvm + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-json + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-json-okio-jvm + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-json-okio + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-properties-jvm + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-properties + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-protobuf-jvm + 1.6.3 + + + org.jetbrains.kotlinx + kotlinx-serialization-protobuf + 1.6.3 + + + + diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.lastUpdated b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.lastUpdated new file mode 100644 index 000000000..945699efd --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:32 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.jetbrains.kotlinx\:kotlinx-serialization-bom\:pom\:1.6.3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139811858 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139811964 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139812068 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139812217 diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.sha1 b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.sha1 new file mode 100644 index 000000000..7ddee765b --- /dev/null +++ b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.sha1 @@ -0,0 +1 @@ +7c5582389dc60169a84cb882bed09b4ab68833bf \ No newline at end of file diff --git a/code/arachne/org/json/json/20170516/_remote.repositories b/code/arachne/org/json/json/20170516/_remote.repositories new file mode 100644 index 000000000..eb1f8f403 --- /dev/null +++ b/code/arachne/org/json/json/20170516/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:57 EDT 2024 +json-20170516.pom>central= diff --git a/code/arachne/org/json/json/20170516/json-20170516.pom b/code/arachne/org/json/json/20170516/json-20170516.pom new file mode 100644 index 000000000..a7bd78b6c --- /dev/null +++ b/code/arachne/org/json/json/20170516/json-20170516.pom @@ -0,0 +1,181 @@ + + 4.0.0 + + org.json + json + 20170516 + bundle + + JSON in Java + + JSON is a light-weight, language independent, data interchange format. + See http://www.JSON.org/ + + The files in this package implement JSON encoders/decoders in Java. + It also includes the capability to convert between JSON and XML, HTTP + headers, Cookies, and CDL. + + This is a reference implementation. There is a large number of JSON packages + in Java. Perhaps someday the Java community will standardize on one. Until + then, choose carefully. + + The license includes this restriction: "The software shall be used for good, + not evil." If your conscience cannot live with that, then choose a different + package. + + https://github.com/douglascrockford/JSON-java + + + org.sonatype.oss + oss-parent + 9 + + + + https://github.com/douglascrockford/JSON-java.git + scm:git:git://github.com/douglascrockford/JSON-java.git + scm:git:git@github.com:douglascrockford/JSON-java.git + + + + + The JSON License + http://json.org/license.html + repo + Copyright (c) 2002 JSON.org + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and + associated documentation files (the "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial + portions of the Software. + + The Software shall be used for Good, not Evil. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT + LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + + + + + Douglas Crockford + douglas@crockford.com + + + + + UTF-8 + + + + + + junit + junit + 4.12 + test + + + com.jayway.jsonpath + json-path + 2.1.0 + test + + + org.mockito + mockito-core + 1.9.5 + test + + + + + + + org.apache.felix + maven-bundle-plugin + 3.0.1 + true + + + + org.json + + ${project.artifactId} + + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + -Xdoclint:none + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.3 + true + + ossrh + https://oss.sonatype.org/ + false + + + + + diff --git a/code/arachne/org/json/json/20170516/json-20170516.pom.sha1 b/code/arachne/org/json/json/20170516/json-20170516.pom.sha1 new file mode 100644 index 000000000..173ec30c1 --- /dev/null +++ b/code/arachne/org/json/json/20170516/json-20170516.pom.sha1 @@ -0,0 +1 @@ +48701bc8a080cbe230a5ea5cdb46fd3b4b57a2f8 \ No newline at end of file diff --git a/code/arachne/org/json/json/20220924/_remote.repositories b/code/arachne/org/json/json/20220924/_remote.repositories new file mode 100644 index 000000000..d0ffd65ca --- /dev/null +++ b/code/arachne/org/json/json/20220924/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:57 EDT 2024 +json-20220924.pom>central= diff --git a/code/arachne/org/json/json/20220924/json-20220924.pom b/code/arachne/org/json/json/20220924/json-20220924.pom new file mode 100644 index 000000000..4ef85a818 --- /dev/null +++ b/code/arachne/org/json/json/20220924/json-20220924.pom @@ -0,0 +1,170 @@ + + 4.0.0 + + org.json + json + 20220924 + bundle + + JSON in Java + + JSON is a light-weight, language independent, data interchange format. + See http://www.JSON.org/ + + The files in this package implement JSON encoders/decoders in Java. + It also includes the capability to convert between JSON and XML, HTTP + headers, Cookies, and CDL. + + This is a reference implementation. There is a large number of JSON packages + in Java. Perhaps someday the Java community will standardize on one. Until + then, choose carefully. + + https://github.com/douglascrockford/JSON-java + + + org.sonatype.oss + oss-parent + 9 + + + + https://github.com/douglascrockford/JSON-java.git + scm:git:git://github.com/douglascrockford/JSON-java.git + scm:git:git@github.com:douglascrockford/JSON-java.git + + + + + Public Domain + https://github.com/stleary/JSON-java/blob/master/LICENSE + repo + + + + + + Douglas Crockford + douglas@crockford.com + + + + + UTF-8 + + + + + + junit + junit + 4.13.1 + test + + + com.jayway.jsonpath + json-path + 2.1.0 + test + + + org.mockito + mockito-core + 1.9.5 + test + + + + + + + org.apache.felix + maven-bundle-plugin + 3.0.1 + true + + + + org.json + + ${project.artifactId} + + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + -Xdoclint:none + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.3 + true + + ossrh + https://oss.sonatype.org/ + false + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + + org.json + + + + + + + diff --git a/code/arachne/org/json/json/20220924/json-20220924.pom.sha1 b/code/arachne/org/json/json/20220924/json-20220924.pom.sha1 new file mode 100644 index 000000000..b64fea0c0 --- /dev/null +++ b/code/arachne/org/json/json/20220924/json-20220924.pom.sha1 @@ -0,0 +1 @@ +e5b40efbf830f6d6269e01a8914eaf7cb660a37d \ No newline at end of file diff --git a/code/arachne/org/json/json/20230227/_remote.repositories b/code/arachne/org/json/json/20230227/_remote.repositories new file mode 100644 index 000000000..437823b29 --- /dev/null +++ b/code/arachne/org/json/json/20230227/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:57 EDT 2024 +json-20230227.pom>central= diff --git a/code/arachne/org/json/json/20230227/json-20230227.pom b/code/arachne/org/json/json/20230227/json-20230227.pom new file mode 100644 index 000000000..f17e0abfe --- /dev/null +++ b/code/arachne/org/json/json/20230227/json-20230227.pom @@ -0,0 +1,170 @@ + + 4.0.0 + + org.json + json + 20230227 + bundle + + JSON in Java + + JSON is a light-weight, language independent, data interchange format. + See http://www.JSON.org/ + + The files in this package implement JSON encoders/decoders in Java. + It also includes the capability to convert between JSON and XML, HTTP + headers, Cookies, and CDL. + + This is a reference implementation. There is a large number of JSON packages + in Java. Perhaps someday the Java community will standardize on one. Until + then, choose carefully. + + https://github.com/douglascrockford/JSON-java + + + org.sonatype.oss + oss-parent + 9 + + + + https://github.com/douglascrockford/JSON-java.git + scm:git:git://github.com/douglascrockford/JSON-java.git + scm:git:git@github.com:douglascrockford/JSON-java.git + + + + + Public Domain + https://github.com/stleary/JSON-java/blob/master/LICENSE + repo + + + + + + Douglas Crockford + douglas@crockford.com + + + + + UTF-8 + + + + + + junit + junit + 4.13.1 + test + + + com.jayway.jsonpath + json-path + 2.1.0 + test + + + org.mockito + mockito-core + 1.9.5 + test + + + + + + + org.apache.felix + maven-bundle-plugin + 3.0.1 + true + + + + org.json + + ${project.artifactId} + + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + -Xdoclint:none + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.3 + true + + ossrh + https://oss.sonatype.org/ + false + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + + org.json + + + + + + + diff --git a/code/arachne/org/json/json/20230227/json-20230227.pom.sha1 b/code/arachne/org/json/json/20230227/json-20230227.pom.sha1 new file mode 100644 index 000000000..30fe8423d --- /dev/null +++ b/code/arachne/org/json/json/20230227/json-20230227.pom.sha1 @@ -0,0 +1 @@ +75c0f2b93d350b3329f2a149159f2f2adfff7eb2 \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.10.0/_remote.repositories b/code/arachne/org/junit/junit-bom/5.10.0/_remote.repositories new file mode 100644 index 000000000..8ba694348 --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.10.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:50 EDT 2024 +junit-bom-5.10.0.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom b/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom new file mode 100644 index 000000000..1ea4b70fd --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom @@ -0,0 +1,159 @@ + + + + + + + + 4.0.0 + org.junit + junit-bom + 5.10.0 + pom + JUnit 5 (Bill of Materials) + This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit.jupiter + junit-jupiter + 5.10.0 + + + org.junit.jupiter + junit-jupiter-api + 5.10.0 + + + org.junit.jupiter + junit-jupiter-engine + 5.10.0 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.10.0 + + + org.junit.jupiter + junit-jupiter-params + 5.10.0 + + + org.junit.platform + junit-platform-commons + 1.10.0 + + + org.junit.platform + junit-platform-console + 1.10.0 + + + org.junit.platform + junit-platform-engine + 1.10.0 + + + org.junit.platform + junit-platform-jfr + 1.10.0 + + + org.junit.platform + junit-platform-launcher + 1.10.0 + + + org.junit.platform + junit-platform-reporting + 1.10.0 + + + org.junit.platform + junit-platform-runner + 1.10.0 + + + org.junit.platform + junit-platform-suite + 1.10.0 + + + org.junit.platform + junit-platform-suite-api + 1.10.0 + + + org.junit.platform + junit-platform-suite-commons + 1.10.0 + + + org.junit.platform + junit-platform-suite-engine + 1.10.0 + + + org.junit.platform + junit-platform-testkit + 1.10.0 + + + org.junit.vintage + junit-vintage-engine + 5.10.0 + + + + diff --git a/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom.sha1 b/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom.sha1 new file mode 100644 index 000000000..bf971d8ce --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom.sha1 @@ -0,0 +1 @@ +1136f35a5438634393bf628f69b8ca43c8518f7c \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.10.1/_remote.repositories b/code/arachne/org/junit/junit-bom/5.10.1/_remote.repositories new file mode 100644 index 000000000..2a70eb7d4 --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.10.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:53 EDT 2024 +junit-bom-5.10.1.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom b/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom new file mode 100644 index 000000000..40f6957e2 --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom @@ -0,0 +1,159 @@ + + + + + + + + 4.0.0 + org.junit + junit-bom + 5.10.1 + pom + JUnit 5 (Bill of Materials) + This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit.jupiter + junit-jupiter + 5.10.1 + + + org.junit.jupiter + junit-jupiter-api + 5.10.1 + + + org.junit.jupiter + junit-jupiter-engine + 5.10.1 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.10.1 + + + org.junit.jupiter + junit-jupiter-params + 5.10.1 + + + org.junit.platform + junit-platform-commons + 1.10.1 + + + org.junit.platform + junit-platform-console + 1.10.1 + + + org.junit.platform + junit-platform-engine + 1.10.1 + + + org.junit.platform + junit-platform-jfr + 1.10.1 + + + org.junit.platform + junit-platform-launcher + 1.10.1 + + + org.junit.platform + junit-platform-reporting + 1.10.1 + + + org.junit.platform + junit-platform-runner + 1.10.1 + + + org.junit.platform + junit-platform-suite + 1.10.1 + + + org.junit.platform + junit-platform-suite-api + 1.10.1 + + + org.junit.platform + junit-platform-suite-commons + 1.10.1 + + + org.junit.platform + junit-platform-suite-engine + 1.10.1 + + + org.junit.platform + junit-platform-testkit + 1.10.1 + + + org.junit.vintage + junit-vintage-engine + 5.10.1 + + + + diff --git a/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom.sha1 b/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom.sha1 new file mode 100644 index 000000000..1645590f9 --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom.sha1 @@ -0,0 +1 @@ +41a86ea51227739a5b7ca3430ae88ce44a64a42a \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.10.2/_remote.repositories b/code/arachne/org/junit/junit-bom/5.10.2/_remote.repositories new file mode 100644 index 000000000..744022b7a --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.10.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:31 EDT 2024 +junit-bom-5.10.2.pom>ohdsi= diff --git a/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom b/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom new file mode 100644 index 000000000..92e6e6009 --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom @@ -0,0 +1,159 @@ + + + + + + + + 4.0.0 + org.junit + junit-bom + 5.10.2 + pom + JUnit 5 (Bill of Materials) + This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit.jupiter + junit-jupiter + 5.10.2 + + + org.junit.jupiter + junit-jupiter-api + 5.10.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.10.2 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.10.2 + + + org.junit.jupiter + junit-jupiter-params + 5.10.2 + + + org.junit.platform + junit-platform-commons + 1.10.2 + + + org.junit.platform + junit-platform-console + 1.10.2 + + + org.junit.platform + junit-platform-engine + 1.10.2 + + + org.junit.platform + junit-platform-jfr + 1.10.2 + + + org.junit.platform + junit-platform-launcher + 1.10.2 + + + org.junit.platform + junit-platform-reporting + 1.10.2 + + + org.junit.platform + junit-platform-runner + 1.10.2 + + + org.junit.platform + junit-platform-suite + 1.10.2 + + + org.junit.platform + junit-platform-suite-api + 1.10.2 + + + org.junit.platform + junit-platform-suite-commons + 1.10.2 + + + org.junit.platform + junit-platform-suite-engine + 1.10.2 + + + org.junit.platform + junit-platform-testkit + 1.10.2 + + + org.junit.vintage + junit-vintage-engine + 5.10.2 + + + + diff --git a/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.lastUpdated b/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.lastUpdated new file mode 100644 index 000000000..c292cbadd --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:31 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.junit\:junit-bom\:pom\:5.10.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139810632 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139810733 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139810924 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139811048 diff --git a/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.sha1 b/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.sha1 new file mode 100644 index 000000000..69f18a06f --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.sha1 @@ -0,0 +1 @@ +b25ed98a5bd08cdda60e569cf22822a760e76019 \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.6.2/_remote.repositories b/code/arachne/org/junit/junit-bom/5.6.2/_remote.repositories new file mode 100644 index 000000000..715a36c6f --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.6.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:49 EDT 2024 +junit-bom-5.6.2.pom>local-repo= diff --git a/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom b/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom new file mode 100644 index 000000000..3909068b8 --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom @@ -0,0 +1,139 @@ + + + + + + + + 4.0.0 + org.junit + junit-bom + 5.6.2 + pom + JUnit 5 (Bill of Materials) + This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + Matthias.Merdes@heidelberg-mobil.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit.jupiter + junit-jupiter + 5.6.2 + + + org.junit.jupiter + junit-jupiter-api + 5.6.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.6.2 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.6.2 + + + org.junit.jupiter + junit-jupiter-params + 5.6.2 + + + org.junit.platform + junit-platform-commons + 1.6.2 + + + org.junit.platform + junit-platform-console + 1.6.2 + + + org.junit.platform + junit-platform-engine + 1.6.2 + + + org.junit.platform + junit-platform-launcher + 1.6.2 + + + org.junit.platform + junit-platform-reporting + 1.6.2 + + + org.junit.platform + junit-platform-runner + 1.6.2 + + + org.junit.platform + junit-platform-suite-api + 1.6.2 + + + org.junit.platform + junit-platform-testkit + 1.6.2 + + + org.junit.vintage + junit-vintage-engine + 5.6.2 + + + + diff --git a/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.lastUpdated b/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.lastUpdated new file mode 100644 index 000000000..c546916ad --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:49 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139889158 +http\://0.0.0.0/.error=Could not transfer artifact org.junit\:junit-bom\:pom\:5.6.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139888899 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139888906 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139889042 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139889110 diff --git a/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.sha1 b/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.sha1 new file mode 100644 index 000000000..3ca4dc9f6 --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.sha1 @@ -0,0 +1 @@ +f5a7c889e43500e0ad8d5ae4383c293f4fa85cfc \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.7.2/_remote.repositories b/code/arachne/org/junit/junit-bom/5.7.2/_remote.repositories new file mode 100644 index 000000000..3bdc50fab --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.7.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +junit-bom-5.7.2.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom b/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom new file mode 100644 index 000000000..f1ebe9715 --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom @@ -0,0 +1,144 @@ + + + + + + + + 4.0.0 + org.junit + junit-bom + 5.7.2 + pom + JUnit 5 (Bill of Materials) + This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit.jupiter + junit-jupiter + 5.7.2 + + + org.junit.jupiter + junit-jupiter-api + 5.7.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.7.2 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.7.2 + + + org.junit.jupiter + junit-jupiter-params + 5.7.2 + + + org.junit.platform + junit-platform-commons + 1.7.2 + + + org.junit.platform + junit-platform-console + 1.7.2 + + + org.junit.platform + junit-platform-engine + 1.7.2 + + + org.junit.platform + junit-platform-jfr + 1.7.2 + + + org.junit.platform + junit-platform-launcher + 1.7.2 + + + org.junit.platform + junit-platform-reporting + 1.7.2 + + + org.junit.platform + junit-platform-runner + 1.7.2 + + + org.junit.platform + junit-platform-suite-api + 1.7.2 + + + org.junit.platform + junit-platform-testkit + 1.7.2 + + + org.junit.vintage + junit-vintage-engine + 5.7.2 + + + + diff --git a/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 b/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 new file mode 100644 index 000000000..70a543be8 --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 @@ -0,0 +1 @@ +e8848369738c03e40af5507686216f9b8b44b6a3 \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.9.1/_remote.repositories b/code/arachne/org/junit/junit-bom/5.9.1/_remote.repositories new file mode 100644 index 000000000..0562d0e93 --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.9.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:08 EDT 2024 +junit-bom-5.9.1.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom b/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom new file mode 100644 index 000000000..57e6b86cb --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom @@ -0,0 +1,159 @@ + + + + + + + + 4.0.0 + org.junit + junit-bom + 5.9.1 + pom + JUnit 5 (Bill of Materials) + This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit.jupiter + junit-jupiter + 5.9.1 + + + org.junit.jupiter + junit-jupiter-api + 5.9.1 + + + org.junit.jupiter + junit-jupiter-engine + 5.9.1 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.9.1 + + + org.junit.jupiter + junit-jupiter-params + 5.9.1 + + + org.junit.platform + junit-platform-commons + 1.9.1 + + + org.junit.platform + junit-platform-console + 1.9.1 + + + org.junit.platform + junit-platform-engine + 1.9.1 + + + org.junit.platform + junit-platform-jfr + 1.9.1 + + + org.junit.platform + junit-platform-launcher + 1.9.1 + + + org.junit.platform + junit-platform-reporting + 1.9.1 + + + org.junit.platform + junit-platform-runner + 1.9.1 + + + org.junit.platform + junit-platform-suite + 1.9.1 + + + org.junit.platform + junit-platform-suite-api + 1.9.1 + + + org.junit.platform + junit-platform-suite-commons + 1.9.1 + + + org.junit.platform + junit-platform-suite-engine + 1.9.1 + + + org.junit.platform + junit-platform-testkit + 1.9.1 + + + org.junit.vintage + junit-vintage-engine + 5.9.1 + + + + diff --git a/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom.sha1 b/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom.sha1 new file mode 100644 index 000000000..d6517976f --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom.sha1 @@ -0,0 +1 @@ +ce71051be5ac4cea4e06a25fc100a0e64bcf6a1c \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.9.2/_remote.repositories b/code/arachne/org/junit/junit-bom/5.9.2/_remote.repositories new file mode 100644 index 000000000..cb3dc2eff --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.9.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:46 EDT 2024 +junit-bom-5.9.2.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom b/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom new file mode 100644 index 000000000..70036acba --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom @@ -0,0 +1,159 @@ + + + + + + + + 4.0.0 + org.junit + junit-bom + 5.9.2 + pom + JUnit 5 (Bill of Materials) + This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit.jupiter + junit-jupiter + 5.9.2 + + + org.junit.jupiter + junit-jupiter-api + 5.9.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.9.2 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.9.2 + + + org.junit.jupiter + junit-jupiter-params + 5.9.2 + + + org.junit.platform + junit-platform-commons + 1.9.2 + + + org.junit.platform + junit-platform-console + 1.9.2 + + + org.junit.platform + junit-platform-engine + 1.9.2 + + + org.junit.platform + junit-platform-jfr + 1.9.2 + + + org.junit.platform + junit-platform-launcher + 1.9.2 + + + org.junit.platform + junit-platform-reporting + 1.9.2 + + + org.junit.platform + junit-platform-runner + 1.9.2 + + + org.junit.platform + junit-platform-suite + 1.9.2 + + + org.junit.platform + junit-platform-suite-api + 1.9.2 + + + org.junit.platform + junit-platform-suite-commons + 1.9.2 + + + org.junit.platform + junit-platform-suite-engine + 1.9.2 + + + org.junit.platform + junit-platform-testkit + 1.9.2 + + + org.junit.vintage + junit-vintage-engine + 5.9.2 + + + + diff --git a/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom.sha1 b/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom.sha1 new file mode 100644 index 000000000..c59706f4d --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom.sha1 @@ -0,0 +1 @@ +645a08cbe455cad14d8bfb25a35d7f594c53cafd \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.9.3/_remote.repositories b/code/arachne/org/junit/junit-bom/5.9.3/_remote.repositories new file mode 100644 index 000000000..058b64cda --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.9.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:57 EDT 2024 +junit-bom-5.9.3.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom b/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom new file mode 100644 index 000000000..b49e14dc5 --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom @@ -0,0 +1,159 @@ + + + + + + + + 4.0.0 + org.junit + junit-bom + 5.9.3 + pom + JUnit 5 (Bill of Materials) + This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit.jupiter + junit-jupiter + 5.9.3 + + + org.junit.jupiter + junit-jupiter-api + 5.9.3 + + + org.junit.jupiter + junit-jupiter-engine + 5.9.3 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.9.3 + + + org.junit.jupiter + junit-jupiter-params + 5.9.3 + + + org.junit.platform + junit-platform-commons + 1.9.3 + + + org.junit.platform + junit-platform-console + 1.9.3 + + + org.junit.platform + junit-platform-engine + 1.9.3 + + + org.junit.platform + junit-platform-jfr + 1.9.3 + + + org.junit.platform + junit-platform-launcher + 1.9.3 + + + org.junit.platform + junit-platform-reporting + 1.9.3 + + + org.junit.platform + junit-platform-runner + 1.9.3 + + + org.junit.platform + junit-platform-suite + 1.9.3 + + + org.junit.platform + junit-platform-suite-api + 1.9.3 + + + org.junit.platform + junit-platform-suite-commons + 1.9.3 + + + org.junit.platform + junit-platform-suite-engine + 1.9.3 + + + org.junit.platform + junit-platform-testkit + 1.9.3 + + + org.junit.vintage + junit-vintage-engine + 5.9.3 + + + + diff --git a/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom.sha1 b/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom.sha1 new file mode 100644 index 000000000..9bfbbf3ac --- /dev/null +++ b/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom.sha1 @@ -0,0 +1 @@ +b1874b6a66656e4f5e4b492ab321249bcb749dc7 \ No newline at end of file diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/_remote.repositories b/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/_remote.repositories new file mode 100644 index 000000000..a3e35e24f --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:09 EDT 2024 +junit-jupiter-api-5.10.2.pom>central= diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom b/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom new file mode 100644 index 000000000..e3af241c2 --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom @@ -0,0 +1,94 @@ + + + + + + + + 4.0.0 + org.junit.jupiter + junit-jupiter-api + 5.10.2 + JUnit Jupiter API + Module "junit-jupiter-api" of JUnit 5. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + + + + org.opentest4j + opentest4j + 1.3.0 + compile + + + org.junit.platform + junit-platform-commons + 1.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 + compile + + + diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom.sha1 b/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom.sha1 new file mode 100644 index 000000000..f0d18f6c9 --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom.sha1 @@ -0,0 +1 @@ +93a08d741cad9179423cc229ecbfc016164977d7 \ No newline at end of file diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/_remote.repositories b/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/_remote.repositories new file mode 100644 index 000000000..9ec7d760b --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:09 EDT 2024 +junit-jupiter-engine-5.10.2.pom>central= diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom b/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom new file mode 100644 index 000000000..7d5b0eb4e --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom @@ -0,0 +1,94 @@ + + + + + + + + 4.0.0 + org.junit.jupiter + junit-jupiter-engine + 5.10.2 + JUnit Jupiter Engine + Module "junit-jupiter-engine" of JUnit 5. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + + + + org.junit.platform + junit-platform-engine + 1.10.2 + compile + + + org.junit.jupiter + junit-jupiter-api + 5.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 + compile + + + diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom.sha1 b/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom.sha1 new file mode 100644 index 000000000..92622b22d --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom.sha1 @@ -0,0 +1 @@ +1dfac67b8120dd7ac630a658929fbaf9eb673364 \ No newline at end of file diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/_remote.repositories b/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/_remote.repositories new file mode 100644 index 000000000..f43eff693 --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:09 EDT 2024 +junit-jupiter-params-5.10.2.pom>central= diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom b/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom new file mode 100644 index 000000000..ef80af08f --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom @@ -0,0 +1,88 @@ + + + + + + + + 4.0.0 + org.junit.jupiter + junit-jupiter-params + 5.10.2 + JUnit Jupiter Params + Module "junit-jupiter-params" of JUnit 5. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + + + + org.junit.jupiter + junit-jupiter-api + 5.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 + compile + + + diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom.sha1 b/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom.sha1 new file mode 100644 index 000000000..06a11b99b --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom.sha1 @@ -0,0 +1 @@ +c1a88afb73d74acfc2ba7cbfc578d727e81aea45 \ No newline at end of file diff --git a/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/_remote.repositories b/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/_remote.repositories new file mode 100644 index 000000000..0683c9d95 --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:08 EDT 2024 +junit-jupiter-5.10.2.pom>central= diff --git a/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom b/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom new file mode 100644 index 000000000..142a32499 --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom @@ -0,0 +1,95 @@ + + + + + + + + 4.0.0 + org.junit.jupiter + junit-jupiter + 5.10.2 + JUnit Jupiter (Aggregator) + Module "junit-jupiter" of JUnit 5. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + + + + org.junit.jupiter + junit-jupiter-api + 5.10.2 + compile + + + org.junit.jupiter + junit-jupiter-params + 5.10.2 + compile + + + org.junit.jupiter + junit-jupiter-engine + 5.10.2 + runtime + + + diff --git a/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom.sha1 b/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom.sha1 new file mode 100644 index 000000000..16c7e3ba7 --- /dev/null +++ b/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom.sha1 @@ -0,0 +1 @@ +a36a93123b2617c58d321b1c021df77a1ad4a50c \ No newline at end of file diff --git a/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/_remote.repositories b/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/_remote.repositories new file mode 100644 index 000000000..990b43345 --- /dev/null +++ b/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:09 EDT 2024 +junit-platform-commons-1.10.2.pom>central= diff --git a/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom b/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom new file mode 100644 index 000000000..57557872e --- /dev/null +++ b/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom @@ -0,0 +1,83 @@ + + + + + + + + 4.0.0 + org.junit.platform + junit-platform-commons + 1.10.2 + JUnit Platform Commons + Module "junit-platform-commons" of JUnit 5. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + + + + org.apiguardian + apiguardian-api + 1.1.2 + compile + + + diff --git a/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom.sha1 b/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom.sha1 new file mode 100644 index 000000000..9b11b9c56 --- /dev/null +++ b/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom.sha1 @@ -0,0 +1 @@ +428e90870a1cd83eec09c4d3ae181a71e7e6a467 \ No newline at end of file diff --git a/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/_remote.repositories b/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/_remote.repositories new file mode 100644 index 000000000..dd3a7660a --- /dev/null +++ b/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:09 EDT 2024 +junit-platform-engine-1.10.2.pom>central= diff --git a/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom b/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom new file mode 100644 index 000000000..1d8a63987 --- /dev/null +++ b/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom @@ -0,0 +1,95 @@ + + + + + + + + 4.0.0 + org.junit.platform + junit-platform-engine + 1.10.2 + JUnit Platform Engine API + Module "junit-platform-engine" of JUnit 5. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + + + + org.opentest4j + opentest4j + 1.3.0 + compile + + + org.junit.platform + junit-platform-commons + 1.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 + compile + + + diff --git a/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom.sha1 b/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom.sha1 new file mode 100644 index 000000000..c2f0ad88e --- /dev/null +++ b/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom.sha1 @@ -0,0 +1 @@ +d67d36be92a9dc24fc75cece1a8a9a211ab3641c \ No newline at end of file diff --git a/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/_remote.repositories b/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/_remote.repositories new file mode 100644 index 000000000..55d78c4f4 --- /dev/null +++ b/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:02 EDT 2024 +mimepull-1.9.15.pom>central= diff --git a/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom b/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom new file mode 100644 index 000000000..38858d3bc --- /dev/null +++ b/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom @@ -0,0 +1,410 @@ + + + + + 4.0.0 + + + org.eclipse.ee4j + project + 1.0.6 + + + + org.jvnet.mimepull + mimepull + 1.9.15 + jar + MIME streaming extension + Provides a streaming API to access attachments parts in a MIME message. + https://github.com/eclipse-ee4j/metro-mimepull + + + scm:git:ssh://git@github.com/eclipse-ee4j/metro-mimepull.git + scm:git:ssh://git@github.com/eclipse-ee4j/metro-mimepull.git + https://github.com/eclipse-ee4j/metro-mimepull + HEAD + + + + + Eclipse Distribution License - v 1.0 + http://www.eclipse.org/org/documents/edl-v10.php + repo + + + + + + bravehorsie + Roman Grigoriadi + Roman.Grigoriadi@oracle.com + + + + + github + https://github.com/eclipse-ee4j/metro-mimepull/issues + + + + + Eclipse Metro mailing list + metro-dev@eclipse.org + https://accounts.eclipse.org/mailing-list/metro-dev + https://accounts.eclipse.org/mailing-list/metro-dev + https://www.eclipse.org/lists/metro-dev + + + + + ${project.basedir}/copyright-exclude + false + true + false + ${project.basedir}/exclude.xml + false + Low + 4.3.0 + + ${project.basedir} + + + + + + junit + junit + 4.13.2 + test + + + + + + + junit + junit + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M5 + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.0 + + + org.apache.felix + maven-bundle-plugin + 5.1.1 + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.version} + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [11,) + + + [3.6.0,) + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-legal-resource + generate-resources + + add-resource + + + + + ${legal.doc.source} + + NOTICE.md + LICENSE.md + + META-INF + + + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + + ${copyright.exclude} + + ${copyright.scmonly} + + ${copyright.update} + + ${copyright.ignoreyear} + false + + + + validate + + check + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 9 + + -Xlint:all + + true + true + + + + base-compile + + compile + + + 8 + + module-info.java + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + true + false + 7 + + + + validate + + create + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + java.util.logging.config.file + src/test/resources/logging.properties + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + false + + + + + + org.apache.maven.plugins + maven-source-plugin + + + + false + + + ${project.version} - ${buildNumber} + + + + + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + + false + + + + <_noextraheaders>true + ${project.version} - ${buildNumber} + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + false + + + 11 + true + + + + com.github.spotbugs + spotbugs-maven-plugin + + ${spotbugs.skip} + ${spotbugs.threshold} + true + + ${spotbugs.exclude} + + true + -Xms64m -Xmx256m + + + + + + + + coverage + + + + + org.jacoco + jacoco-maven-plugin + 0.8.7 + + + + + + org.jacoco + jacoco-maven-plugin + + + default-prepare-agent + + prepare-agent + + + + default-report + + report + + + + + + + + + diff --git a/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom.sha1 b/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom.sha1 new file mode 100644 index 000000000..c20a07718 --- /dev/null +++ b/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom.sha1 @@ -0,0 +1 @@ +39c859aab41f7152db18a55b4a8fd82f37792937 \ No newline at end of file diff --git a/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom b/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom new file mode 100644 index 000000000..715c11b60 --- /dev/null +++ b/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom @@ -0,0 +1,198 @@ + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + org.latencyutils + LatencyUtils + 2.0.3 + + LatencyUtils + + http://latencyutils.github.io/LatencyUtils/ + + + LatencyUtils is a package that provides latency recording and reporting utilities. + + + + + + * This code was Written by Gil Tene of Azul Systems, and released to the + * public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/ + + Public Domain, per Creative Commons CC0 + http://creativecommons.org/publicdomain/zero/1.0/ + + + + + + giltene + Gil Tene + https://github.com/giltene + + + + + scm:git:git://github.com/LatencyUtils/LatencyUtils.git + scm:git:git://github.com/LatencyUtils/LatencyUtils.git + scm:git:git@github.com:LatencyUtils/LatencyUtils.git + HEAD + + + + https://github.com/LatencyUtils/LatencyUtils/issues + GitHub Issues + + + jar + + + UTF-8 + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + UTF-8 + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.12.4 + + false + + + + org.apache.maven.plugins + maven-release-plugin + 2.5 + + -Dgpg.passphrase=${gpg.passphrase} + + + + org.apache.maven.plugins + maven-dependency-plugin + 2.8 + + + copy-installed + package + + copy + + + + + ${project.groupId} + ${project.artifactId} + ${project.version} + ${project.packaging} + LatencyUtils.jar + + + ${project.basedir} + + + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.4 + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + + + + + + + junit + junit + 4.10 + test + + + org.hdrhistogram + HdrHistogram + 2.1.8 + + + + diff --git a/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom.sha1 b/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom.sha1 new file mode 100644 index 000000000..9e93e63a1 --- /dev/null +++ b/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom.sha1 @@ -0,0 +1 @@ +5baec26b6f9e5b17fdd200fc20af85eead4287c4 \ No newline at end of file diff --git a/code/arachne/org/latencyutils/LatencyUtils/2.0.3/_remote.repositories b/code/arachne/org/latencyutils/LatencyUtils/2.0.3/_remote.repositories new file mode 100644 index 000000000..d94fb0830 --- /dev/null +++ b/code/arachne/org/latencyutils/LatencyUtils/2.0.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:54 EDT 2024 +LatencyUtils-2.0.3.pom>central= diff --git a/code/arachne/org/mockito/mockito-bom/4.11.0/_remote.repositories b/code/arachne/org/mockito/mockito-bom/4.11.0/_remote.repositories new file mode 100644 index 000000000..4bbe653f4 --- /dev/null +++ b/code/arachne/org/mockito/mockito-bom/4.11.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:50 EDT 2024 +mockito-bom-4.11.0.pom>central= diff --git a/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom b/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom new file mode 100644 index 000000000..e04228892 --- /dev/null +++ b/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom @@ -0,0 +1,103 @@ + + + 4.0.0 + org.mockito + mockito-bom + 4.11.0 + pom + mockito-bom + Mockito Bill of Materials (BOM) + https://github.com/mockito/mockito + + + The MIT License + https://github.com/mockito/mockito/blob/main/LICENSE + repo + + + + + mockitoguy + Szczepan Faber + https://github.com/mockitoguy + + Core developer + + + + bric3 + Brice Dutheil + https://github.com/bric3 + + Core developer + + + + raphw + Rafael Winterhalter + https://github.com/raphw + + Core developer + + + + TimvdLippe + Tim van der Lippe + https://github.com/TimvdLippe + + Core developer + + + + + https://github.com/mockito/mockito.git + + + GitHub issues + https://github.com/mockito/mockito/issues + + + GH Actions + https://github.com/mockito/mockito/actions + + + + + org.mockito + mockito-core + 4.11.0 + + + org.mockito + mockito-android + 4.11.0 + + + org.mockito + mockito-errorprone + 4.11.0 + + + org.mockito + mockito-inline + 4.11.0 + + + org.mockito + mockito-junit-jupiter + 4.11.0 + + + org.mockito + mockito-proxy + 4.11.0 + + + org.mockito + mockito-subclass + 4.11.0 + + + + diff --git a/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom.sha1 b/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom.sha1 new file mode 100644 index 000000000..eca6b1c77 --- /dev/null +++ b/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom.sha1 @@ -0,0 +1 @@ +001c271051b650e8dd5ae2c9726ee5953887030d \ No newline at end of file diff --git a/code/arachne/org/mockito/mockito-bom/5.7.0/_remote.repositories b/code/arachne/org/mockito/mockito-bom/5.7.0/_remote.repositories new file mode 100644 index 000000000..6b1807a4c --- /dev/null +++ b/code/arachne/org/mockito/mockito-bom/5.7.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:34 EDT 2024 +mockito-bom-5.7.0.pom>ohdsi= diff --git a/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom b/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom new file mode 100644 index 000000000..3b7536ade --- /dev/null +++ b/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom @@ -0,0 +1,98 @@ + + + 4.0.0 + org.mockito + mockito-bom + 5.7.0 + pom + mockito-bom + Mockito Bill of Materials (BOM) + https://github.com/mockito/mockito + + + MIT + https://opensource.org/licenses/MIT + repo + + + + + mockitoguy + Szczepan Faber + https://github.com/mockitoguy + + Core developer + + + + bric3 + Brice Dutheil + https://github.com/bric3 + + Core developer + + + + raphw + Rafael Winterhalter + https://github.com/raphw + + Core developer + + + + TimvdLippe + Tim van der Lippe + https://github.com/TimvdLippe + + Core developer + + + + + https://github.com/mockito/mockito.git + + + GitHub issues + https://github.com/mockito/mockito/issues + + + GH Actions + https://github.com/mockito/mockito/actions + + + + + org.mockito + mockito-core + 5.7.0 + + + org.mockito + mockito-android + 5.7.0 + + + org.mockito + mockito-errorprone + 5.7.0 + + + org.mockito + mockito-junit-jupiter + 5.7.0 + + + org.mockito + mockito-proxy + 5.7.0 + + + org.mockito + mockito-subclass + 5.7.0 + + + + diff --git a/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.lastUpdated b/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.lastUpdated new file mode 100644 index 000000000..cb5e70d71 --- /dev/null +++ b/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:34 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.mockito\:mockito-bom\:pom\:5.7.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139814402 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139814503 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139814606 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139814738 diff --git a/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.sha1 b/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.sha1 new file mode 100644 index 000000000..7928a92aa --- /dev/null +++ b/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.sha1 @@ -0,0 +1 @@ +c4c2dc5e4b502a505a31fc4038a606dab7be4616 \ No newline at end of file diff --git a/code/arachne/org/mockito/mockito-core/5.7.0/_remote.repositories b/code/arachne/org/mockito/mockito-core/5.7.0/_remote.repositories new file mode 100644 index 000000000..76189b334 --- /dev/null +++ b/code/arachne/org/mockito/mockito-core/5.7.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:09 EDT 2024 +mockito-core-5.7.0.pom>central= diff --git a/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom b/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom new file mode 100644 index 000000000..363c8e29c --- /dev/null +++ b/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom @@ -0,0 +1,83 @@ + + + 4.0.0 + org.mockito + mockito-core + 5.7.0 + mockito-core + Mockito mock objects library core API and implementation + https://github.com/mockito/mockito + + + MIT + https://opensource.org/licenses/MIT + repo + + + + + mockitoguy + Szczepan Faber + https://github.com/mockitoguy + + Core developer + + + + bric3 + Brice Dutheil + https://github.com/bric3 + + Core developer + + + + raphw + Rafael Winterhalter + https://github.com/raphw + + Core developer + + + + TimvdLippe + Tim van der Lippe + https://github.com/TimvdLippe + + Core developer + + + + + https://github.com/mockito/mockito.git + + + GitHub issues + https://github.com/mockito/mockito/issues + + + GH Actions + https://github.com/mockito/mockito/actions + + + + net.bytebuddy + byte-buddy + 1.14.9 + compile + + + net.bytebuddy + byte-buddy-agent + 1.14.9 + compile + + + org.objenesis + objenesis + 3.3 + runtime + + + diff --git a/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom.sha1 b/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom.sha1 new file mode 100644 index 000000000..ed83ec5a7 --- /dev/null +++ b/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom.sha1 @@ -0,0 +1 @@ +f91d0528c70aad773a9ed472d9f9da3be9ad6b7b \ No newline at end of file diff --git a/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/_remote.repositories b/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/_remote.repositories new file mode 100644 index 000000000..c607daac4 --- /dev/null +++ b/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:09 EDT 2024 +mockito-junit-jupiter-5.7.0.pom>central= diff --git a/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom b/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom new file mode 100644 index 000000000..2be155ae4 --- /dev/null +++ b/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom @@ -0,0 +1,77 @@ + + + 4.0.0 + org.mockito + mockito-junit-jupiter + 5.7.0 + mockito-junit-jupiter + Mockito JUnit 5 support + https://github.com/mockito/mockito + + + MIT + https://opensource.org/licenses/MIT + repo + + + + + mockitoguy + Szczepan Faber + https://github.com/mockitoguy + + Core developer + + + + bric3 + Brice Dutheil + https://github.com/bric3 + + Core developer + + + + raphw + Rafael Winterhalter + https://github.com/raphw + + Core developer + + + + TimvdLippe + Tim van der Lippe + https://github.com/TimvdLippe + + Core developer + + + + + https://github.com/mockito/mockito.git + + + GitHub issues + https://github.com/mockito/mockito/issues + + + GH Actions + https://github.com/mockito/mockito/actions + + + + org.mockito + mockito-core + 5.7.0 + compile + + + org.junit.jupiter + junit-jupiter-api + 5.10.0 + runtime + + + diff --git a/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom.sha1 b/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom.sha1 new file mode 100644 index 000000000..a6ef472e1 --- /dev/null +++ b/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom.sha1 @@ -0,0 +1 @@ +b08e449a3557e81d108cde7fd1c8785e5a2a09b9 \ No newline at end of file diff --git a/code/arachne/org/mozilla/rhino/1.7R4/_remote.repositories b/code/arachne/org/mozilla/rhino/1.7R4/_remote.repositories new file mode 100644 index 000000000..a6b5c3c34 --- /dev/null +++ b/code/arachne/org/mozilla/rhino/1.7R4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:09 EDT 2024 +rhino-1.7R4.pom>central= diff --git a/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom b/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom new file mode 100644 index 000000000..c7ec5885d --- /dev/null +++ b/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom @@ -0,0 +1,34 @@ + + 4.0.0 + org.mozilla + rhino + Mozilla Rhino + 1.7R4 + jar + Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically embedded into Java applications to provide scripting to end users. + https://developer.mozilla.org/en/Rhino + + + + Mozilla Public License, Version 2.0 + http://www.mozilla.org/MPL/2.0/index.txt + + + + + org.sonatype.oss + oss-parent + 7 + + + + scm:git:git@github.com:mozilla/rhino.git + scm:git:git@github.com:mozilla/rhino.git + git@github.com:mozilla/rhino.git + + + + The Mozilla Foundation + http://www.mozilla.org + + diff --git a/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom.sha1 b/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom.sha1 new file mode 100644 index 000000000..b011085e5 --- /dev/null +++ b/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom.sha1 @@ -0,0 +1 @@ +9e6af638328b8c8fc49e68c5496bddcbfd82f313 \ No newline at end of file diff --git a/code/arachne/org/objenesis/objenesis-parent/3.3/_remote.repositories b/code/arachne/org/objenesis/objenesis-parent/3.3/_remote.repositories new file mode 100644 index 000000000..3e8d31e13 --- /dev/null +++ b/code/arachne/org/objenesis/objenesis-parent/3.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:09 EDT 2024 +objenesis-parent-3.3.pom>central= diff --git a/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom b/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom new file mode 100644 index 000000000..7c308712f --- /dev/null +++ b/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom @@ -0,0 +1,575 @@ + + + + 4.0.0 + org.objenesis + objenesis-parent + 3.3 + pom + + Objenesis parent project + A library for instantiating Java objects + http://objenesis.org + 2006 + + + test + main + exotic + tck + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Joe Walnes, Henri Tremblay, Leonardo Mesquita + + + + https://github.com/easymock/objenesis + scm:git:git@github.com:easymock/objenesis.git + scm:git:https://github.com/easymock/objenesis.git + 3.3 + + + + + joe + Joe Walnes + -5 + + + henri + Henri Tremblay + -5 + + + leonardo + Leonardo Mesquita + -5 + + + + + 1.8 + UTF-8 + 5.9.0 + 4.7.1.1 + + + + + + org.junit.jupiter + junit-jupiter + ${junit5.version} + + + org.junit.vintage + junit-vintage-engine + ${junit5.version} + + + junit + junit + 4.13.2 + + + + + + + org.junit.jupiter + junit-jupiter + test + + + + + + + maven-compiler-plugin + + ${java.version} + ${java.version} + + + + maven-jar-plugin + + + true + false + + true + true + + + + + + maven-release-plugin + + + true + + @{project.version} + + false + + false + + release,full,all + + true + + + + maven-site-plugin + false + + ${project.basedir}/website + + + + com.mycila + license-maven-plugin + false + + + true + + + + maven-enforcer-plugin + 3.1.0 + + + + 3.5.0 + + + + + + enforce-versions + + enforce + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + ossrh + https://oss.sonatype.org + false + + + + org.gaul + modernizer-maven-plugin + 2.4.0 + + 8 + + + + + + org.apache.maven.wagon + wagon-ssh-external + 3.5.2 + + + + + + maven-assembly-plugin + 3.4.2 + + + maven-compiler-plugin + 3.10.1 + + + maven-jar-plugin + 3.2.2 + + + maven-surefire-plugin + 3.0.0-M7 + + + maven-clean-plugin + 3.2.0 + + + maven-deploy-plugin + 3.0.0 + + + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + 3.0.1 + + + maven-release-plugin + 3.0.0-M6 + + + maven-resources-plugin + 3.3.0 + + + maven-shade-plugin + 3.3.0 + + + maven-site-plugin + 3.12.0 + + + maven-source-plugin + 3.2.1 + + + maven-javadoc-plugin + 3.4.0 + + + maven-war-plugin + 3.3.2 + + + org.apache.felix + maven-bundle-plugin + 5.1.7 + + + com.keyboardsamurais.maven + maven-timestamp-plugin + 1.0 + + + year + + create + + + year + yyyy + + + + + + com.mycila + license-maven-plugin + 4.1 + +
${project.basedir}/../header.txt
+ true + + SLASHSTAR_STYLE + + + + .gitignore + + target/** + + dependency-reduced-pom.xml + + eclipse_config/** + + website/** + + **/*.bat + + project.properties + lint.xml + gen/** + bin/** + + **/*.txt + + **/*.launch + + **/*.md + + website/site/resources/CNAME + website/site/resources/.nojekyll + + + ${project.inceptionYear} + ${year} + +
+
+ + maven-remote-resources-plugin + 3.0.0 + + + + process + + + + org.apache:apache-jar-resource-bundle:1.3 + + + + + + + org.codehaus.mojo + exec-maven-plugin + 3.1.0 + + + org.codehaus.mojo + versions-maven-plugin + 2.11.0 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs-maven-plugin.version} + + true + Naming + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + com.keyboardsamurais.maven + maven-timestamp-plugin + [1.0,) + + create + + + + + + + + + maven-remote-resources-plugin + [1.0,) + + process + + + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + [2.5.5,) + + spotbugs + + + + + + + + + + +
+
+
+ + + + maven-project-info-reports-plugin + 3.4.0 + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs-maven-plugin.version} + + + maven-pmd-plugin + 3.17.0 + + 1.8 + + + + + + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + + + + + full + + + + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + + spotbugs + + spotbugs + + + + + + com.mycila + license-maven-plugin + + + check + + check + + + + + + + + + + website + + website + + + + + android + + tck-android + + + + + benchmark + + benchmark + + + + + gae + + gae + + + + + release + + + + maven-gpg-plugin + + + + + + all + + benchmark + + + + gae + website + + + +
diff --git a/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom.sha1 b/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom.sha1 new file mode 100644 index 000000000..5533a5d93 --- /dev/null +++ b/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom.sha1 @@ -0,0 +1 @@ +60b46fea1dc4cb9c3123f8c366f8b33d0c774fa3 \ No newline at end of file diff --git a/code/arachne/org/objenesis/objenesis/3.3/_remote.repositories b/code/arachne/org/objenesis/objenesis/3.3/_remote.repositories new file mode 100644 index 000000000..b8bec032e --- /dev/null +++ b/code/arachne/org/objenesis/objenesis/3.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:09 EDT 2024 +objenesis-3.3.pom>central= diff --git a/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom b/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom new file mode 100644 index 000000000..8a9e05703 --- /dev/null +++ b/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom @@ -0,0 +1,91 @@ + + + + 4.0.0 + + org.objenesis + objenesis-parent + 3.3 + + objenesis + + Objenesis + A library for instantiating Java objects + + + + org.objenesis + objenesis-test + ${project.version} + test + + + + + + + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + org.objenesis + jdk.unsupported + + + + + + com.keyboardsamurais.maven + maven-timestamp-plugin + + + com.mycila + license-maven-plugin + + + maven-remote-resources-plugin + + + org.apache.felix + maven-bundle-plugin + true + + + + COM.newmonics.PercClassLoader;resolution:=optional, + sun.misc;resolution:=optional, + sun.reflect;resolution:=optional + + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + diff --git a/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom.sha1 b/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom.sha1 new file mode 100644 index 000000000..cb4a0deb9 --- /dev/null +++ b/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom.sha1 @@ -0,0 +1 @@ +8da1208285232e541d0bbb869bbe66af6ec6abb4 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom new file mode 100644 index 000000000..636771b16 --- /dev/null +++ b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom @@ -0,0 +1,142 @@ + + + 4.0.0 + + org.ohdsi + SkeletonCohortCharacterization + 1.2.1 + + ${basedir}/src/main/java + ${basedir}/target/classes + + + org.apache.maven.plugins + maven-compiler-plugin + 2.5.1 + + 1.8 + 1.8 + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.1 + + + copy-installed + install + + copy + + + + + ${project.groupId} + ${project.artifactId} + ${project.version} + ${project.packaging} + + + inst/java + + + + copy-dependencies + package + + copy-dependencies + + + inst/java + test + SqlRender,featureExtraction,hamcrest,hamcrest-core,junit + + + + + + + cohortCharacterization + + scm:git:https://github.com/OHDSI/SkeletonCohortCharacterization + scm:git:https://github.com/OHDSI/SkeletonCohortCharacterization + https://github.com/OHDSI/SkeletonCohortCharacterization + HEAD + + + UTF-8 + java + test + 1.16.2-SNAPSHOT + + + + ohdsi + repo.ohdsi.org + http://repo.ohdsi.org:8085/nexus/content/repositories/releases + + + ohdsi.snapshots + repo.ohdsi.org-snapshots + http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots + + false + + + true + + + + + + + + org.ohdsi.sql + SqlRender + 1.6.5 + + + org.json + json + 20170516 + + + org.ohdsi + standardized-analysis-specs + 1.2.1-SNAPSHOT + + + org.ohdsi + standardized-analysis-utils + 1.2.1-SNAPSHOT + + + org.ohdsi + featureExtraction + 2.2.0 + + + com.odysseusinc.arachne + arachne-common-utils + ${arachne.version} + + + junit + junit + 4.12 + test + + + org.hamcrest + hamcrest + 2.1 + test + + + + + diff --git a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.lastUpdated b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.lastUpdated new file mode 100644 index 000000000..7483f493b --- /dev/null +++ b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:04 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:SkeletonCohortCharacterization\:pom\:1.2.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139904335 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139904342 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139904549 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139904620 +https\://repo1.maven.org/maven2/.lastUpdated=1721139904242 diff --git a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.sha1 b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.sha1 new file mode 100644 index 000000000..6e29f5799 --- /dev/null +++ b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.sha1 @@ -0,0 +1 @@ +6066931b205e3317553e923ea5490f769dd55185 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/_remote.repositories b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/_remote.repositories new file mode 100644 index 000000000..f6bd2dc10 --- /dev/null +++ b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:04 EDT 2024 +SkeletonCohortCharacterization-1.2.1.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/circe/1.11.1/_remote.repositories b/code/arachne/org/ohdsi/circe/1.11.1/_remote.repositories new file mode 100644 index 000000000..0d6f190e6 --- /dev/null +++ b/code/arachne/org/ohdsi/circe/1.11.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:04 EDT 2024 +circe-1.11.1.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom b/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom new file mode 100644 index 000000000..407c1edc2 --- /dev/null +++ b/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom @@ -0,0 +1,202 @@ + + + 4.0.0 + org.ohdsi + circe + 1.11.1 + + 1.8 + 1.8 + 2.3.0.RELEASE + + + + + org.springframework.boot + spring-boot-dependencies + ${spring.dependencies.version} + pom + import + + + + + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + + pre-unit-test + + prepare-agent + + + + ${project.build.directory}/coverage-reports/jacoco-ut.exec + + surefireArgLine + + + + + post-unit-test + test + + report + + + + ${project.build.directory}/coverage-reports/jacoco-ut.exec + + ${project.reporting.outputDirectory}/jacoco-ut + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0 + + + ${surefireArgLine} + + ${skip.unit.tests} + + + **/IT*.java + + + + + + + + ohdsi + repo.ohdsi.org + https://repo.ohdsi.org/nexus/content/groups/public + + + + + central + https://repo.maven.apache.org/maven2 + + + ohdsi + repo.ohdsi.org + https://repo.ohdsi.org/nexus/content/groups/public + + + + + com.fasterxml.jackson.core + jackson-annotations + + + com.fasterxml.jackson.core + jackson-databind + + + org.apache.commons + commons-lang3 + + + commons-io + commons-io + 2.11.0 + + + junit + junit + test + + + org.hamcrest + hamcrest + test + + + org.ohdsi + standardized-analysis-utils + 1.4.0 + + + org.freemarker + freemarker + + + org.ohdsi.sql + SqlRender + 1.6.8 + test + + + com.opentable.components + otj-pg-embedded + 0.13.3 + test + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.boot + spring-boot-starter-jdbc + test + + + org.dbunit + dbunit + 2.7.3 + test + + + com.github.mjeanroy + dbunit-plus + 2.2.1 + test + + + com.atlassian.commonmark + commonmark + 0.15.2 + test + + + + + developer-mac-darwin-aarch64 + + + net.java.dev.jna + jna + 5.13.0 + test + + + com.opentable.components + otj-pg-embedded + 1.0.1 + test + + + + + diff --git a/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.lastUpdated b/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.lastUpdated new file mode 100644 index 000000000..430151af0 --- /dev/null +++ b/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:04 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:circe\:pom\:1.11.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139903929 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139903934 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139904079 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139904154 +https\://repo1.maven.org/maven2/.lastUpdated=1721139903825 diff --git a/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.sha1 b/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.sha1 new file mode 100644 index 000000000..1c63740ed --- /dev/null +++ b/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.sha1 @@ -0,0 +1 @@ +c34c77ee1a0e71fbde10fec3d15354e8e09d35c9 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/circe/1.11.2/_remote.repositories b/code/arachne/org/ohdsi/circe/1.11.2/_remote.repositories new file mode 100644 index 000000000..014c798ad --- /dev/null +++ b/code/arachne/org/ohdsi/circe/1.11.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:44 EDT 2024 +circe-1.11.2.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom b/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom new file mode 100644 index 000000000..c5c39b484 --- /dev/null +++ b/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom @@ -0,0 +1,202 @@ + + + 4.0.0 + org.ohdsi + circe + 1.11.2 + + 1.8 + 1.8 + 2.3.0.RELEASE + + + + + org.springframework.boot + spring-boot-dependencies + ${spring.dependencies.version} + pom + import + + + + + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + + pre-unit-test + + prepare-agent + + + + ${project.build.directory}/coverage-reports/jacoco-ut.exec + + surefireArgLine + + + + + post-unit-test + test + + report + + + + ${project.build.directory}/coverage-reports/jacoco-ut.exec + + ${project.reporting.outputDirectory}/jacoco-ut + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0 + + + ${surefireArgLine} + + ${skip.unit.tests} + + + **/IT*.java + + + + + + + + ohdsi + repo.ohdsi.org + https://repo.ohdsi.org/nexus/content/groups/public + + + + + central + https://repo.maven.apache.org/maven2 + + + ohdsi + repo.ohdsi.org + https://repo.ohdsi.org/nexus/content/groups/public + + + + + com.fasterxml.jackson.core + jackson-annotations + + + com.fasterxml.jackson.core + jackson-databind + + + org.apache.commons + commons-lang3 + + + commons-io + commons-io + 2.11.0 + + + junit + junit + test + + + org.hamcrest + hamcrest + test + + + org.ohdsi + standardized-analysis-utils + 1.4.0 + + + org.freemarker + freemarker + + + org.ohdsi.sql + SqlRender + 1.6.8 + test + + + com.opentable.components + otj-pg-embedded + 0.13.3 + test + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.boot + spring-boot-starter-jdbc + test + + + org.dbunit + dbunit + 2.7.3 + test + + + com.github.mjeanroy + dbunit-plus + 2.2.1 + test + + + com.atlassian.commonmark + commonmark + 0.15.2 + test + + + + + developer-mac-darwin-aarch64 + + + net.java.dev.jna + jna + 5.13.0 + test + + + com.opentable.components + otj-pg-embedded + 1.0.1 + test + + + + + diff --git a/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.lastUpdated b/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.lastUpdated new file mode 100644 index 000000000..2436fefa3 --- /dev/null +++ b/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:44 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:circe\:pom\:1.11.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139884745 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139884753 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139884865 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139884938 +https\://repo1.maven.org/maven2/.lastUpdated=1721139884618 diff --git a/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.sha1 b/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.sha1 new file mode 100644 index 000000000..819963256 --- /dev/null +++ b/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.sha1 @@ -0,0 +1 @@ +c45616c215e0cc8a7c695d062261e736859b4958 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/featureExtraction/3.2.0/_remote.repositories b/code/arachne/org/ohdsi/featureExtraction/3.2.0/_remote.repositories new file mode 100644 index 000000000..9e09e3acc --- /dev/null +++ b/code/arachne/org/ohdsi/featureExtraction/3.2.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:57 EDT 2024 +featureExtraction-3.2.0.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom b/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom new file mode 100644 index 000000000..a1c2bb75b --- /dev/null +++ b/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom @@ -0,0 +1,197 @@ + + + 4.0.0 + + org.ohdsi + featureExtraction + jar + 3.2.0 + featureExtraction + + scm:git:https://github.com/OHDSI/featureExtraction + scm:git:https://github.com/OHDSI/featureExtraction + https://github.com/OHDSI/featureExtraction + HEAD + + + 1.8 + 1.8 + UTF-8 + java + test + 1.7.0 + + + + ohdsi + repo.ohdsi.org + https://repo.ohdsi.org/nexus/content/groups/public + + + + + org.json + json + 20170516 + + + org.ohdsi.sql + SqlRender + ${SqlRender.version} + + + + + ${src.dir} + + + ${src.dir} + + **/*.java + + **/*.jardesc + + + + + + + maven-resources-plugin + 2.7 + + + copy-csv + validate + + copy-resources + + + ${project.build.outputDirectory}/inst/csv + + + inst/csv + false + + **/*.csv + + + + + + + copy-sql + validate + + copy-resources + + + ${project.build.outputDirectory}/inst/sql/sql_server + + + inst/sql/sql_server + false + + **/*.sql + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.1 + + ${javadoc.doclint.none} + true + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + attach-sources + package + + jar-no-fork + test-jar-no-fork + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.1 + + + copy-jar + package + + copy + + + + + ${project.groupId} + ${project.artifactId} + ${project.version} + ${project.packaging} + + + inst/java + + + + copy-dependencies + package + + copy-dependencies + + + inst/java + test + + + + + + + + + java8-disable-strict-javadoc + + [1.8,) + + + -Xdoclint:none + + + + \ No newline at end of file diff --git a/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.lastUpdated b/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.lastUpdated new file mode 100644 index 000000000..4c9494f7e --- /dev/null +++ b/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:57 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:featureExtraction\:pom\:3.2.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139897560 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139897565 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139897695 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139897795 +https\://repo1.maven.org/maven2/.lastUpdated=1721139897390 diff --git a/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.sha1 b/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.sha1 new file mode 100644 index 000000000..5477cc80a --- /dev/null +++ b/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.sha1 @@ -0,0 +1 @@ +c7ab49704e489afbc7cd904a8a25d6bc2b43a416 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/hydra/0.4.0/_remote.repositories b/code/arachne/org/ohdsi/hydra/0.4.0/_remote.repositories new file mode 100644 index 000000000..969da7fa5 --- /dev/null +++ b/code/arachne/org/ohdsi/hydra/0.4.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:57 EDT 2024 +hydra-0.4.0.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom b/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom new file mode 100644 index 000000000..492774858 --- /dev/null +++ b/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom @@ -0,0 +1,154 @@ + + 4.0.0 + + org.ohdsi + hydra + jar + 0.4.0 + + + 1.8 + 1.8 + UTF-8 + java + + + + + org.json + json + 20220924 + + + org.ohdsi + circe + 1.10.1 + + + org.apache.commons + commons-csv + 1.9.0 + + + + + + ohdsi + repo.ohdsi.org + https://repo.ohdsi.org/nexus/content/groups/public + + + + + inst/java + + + ${src.dir} + + + ${src.dir} + + **/*.java + + **/*.jardesc + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + 1.8 + 1.8 + + + + + maven-resources-plugin + 3.3.0 + + + copy-resources + validate + + copy-resources + + + ${project.build.outputDirectory} + + + inst/skeletons + false + + **/*.zip + + + + + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.5.0 + + + copy-dependencies + package + + copy-dependencies + + + ${project.build.directory} + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.4.1 + + ${javadoc.doclint.none} + true + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + package + + jar-no-fork + test-jar-no-fork + + + + + + + + + diff --git a/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.lastUpdated b/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.lastUpdated new file mode 100644 index 000000000..8e72b6f11 --- /dev/null +++ b/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:57 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:hydra\:pom\:0.4.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139896823 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139896830 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139896962 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139897032 +https\://repo1.maven.org/maven2/.lastUpdated=1721139896716 diff --git a/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.sha1 b/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.sha1 new file mode 100644 index 000000000..2ba6232ba --- /dev/null +++ b/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.sha1 @@ -0,0 +1 @@ +06e329726961ef671ce6c55758b7e42ec3f7a0aa \ No newline at end of file diff --git a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom new file mode 100644 index 000000000..73aef25d4 --- /dev/null +++ b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom @@ -0,0 +1,140 @@ + + + 4.0.0 + + org.ohdsi.sql + SqlRender + jar + 1.16.1 + SqlRender + + scm:git:https://github.com/OHDSI/SqlRender + scm:git:https://github.com/OHDSI/SqlRender + https://github.com/OHDSI/SqlRender + HEAD + + + UTF-8 + java + test + 1.8 + 1.8 + + + + internal + http://repo.ohdsi.org:8085/nexus/content/repositories/releases + + + snapshots + http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots + + + + + ohdsi + repo.ohdsi.org + http://repo.ohdsi.org:8085/nexus/content/repositories/releases + + + + + ${src.dir} + + + ${src.dir} + + **/*.java + + **/*.jardesc + + + + + + + maven-resources-plugin + 2.7 + + + copy-resources + validate + + copy-resources + + + ${project.build.outputDirectory}/inst/csv + + + inst/csv + false + + **/*.csv + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + + true + org.ohdsi.sql.MainClass + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.1 + + ${javadoc.doclint.none} + true + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + attach-sources + package + + jar-no-fork + test-jar-no-fork + + + + + + + + + java8-disable-strict-javadoc + + [1.8,) + + + -Xdoclint:none + + + + diff --git a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.lastUpdated b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.lastUpdated new file mode 100644 index 000000000..3ae346d54 --- /dev/null +++ b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi.sql\:SqlRender\:pom\:1.16.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139846909 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139846917 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139847097 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139847165 +https\://repo1.maven.org/maven2/.lastUpdated=1721139846642 diff --git a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.sha1 b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.sha1 new file mode 100644 index 000000000..399f627ab --- /dev/null +++ b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.sha1 @@ -0,0 +1 @@ +5ec8524eb73ede455b0ebdc8558fb7df1adf0ead \ No newline at end of file diff --git a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/_remote.repositories b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/_remote.repositories new file mode 100644 index 000000000..e56647044 --- /dev/null +++ b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +SqlRender-1.16.1.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/_remote.repositories b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/_remote.repositories new file mode 100644 index 000000000..a47b95485 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:05 EDT 2024 +standardized-analysis-specs-1.2.1-20201204.180243-3.pom>ohdsi.snapshots= diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml new file mode 100644 index 000000000..feaf1a05c --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml @@ -0,0 +1,25 @@ + + + org.ohdsi + standardized-analysis-specs + 1.2.1-SNAPSHOT + + + 20201204.180243 + 3 + + 20201204180243 + + + jar + 1.2.1-20201204.180243-3 + 20201204180243 + + + pom + 1.2.1-20201204.180243-3 + 20201204180243 + + + + diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 new file mode 100644 index 000000000..97ddd213a --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 @@ -0,0 +1 @@ +ca08c5e7a223ee2e110ca7ff3b82adb07430a5e8 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml new file mode 100644 index 000000000..feaf1a05c --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml @@ -0,0 +1,25 @@ + + + org.ohdsi + standardized-analysis-specs + 1.2.1-SNAPSHOT + + + 20201204.180243 + 3 + + 20201204180243 + + + jar + 1.2.1-20201204.180243-3 + 20201204180243 + + + pom + 1.2.1-20201204.180243-3 + 20201204180243 + + + + diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 new file mode 100644 index 000000000..97ddd213a --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 @@ -0,0 +1 @@ +ca08c5e7a223ee2e110ca7ff3b82adb07430a5e8 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/resolver-status.properties b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/resolver-status.properties new file mode 100644 index 000000000..b546e2b2b --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/resolver-status.properties @@ -0,0 +1,14 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 12:51:18 EDT 2024 +maven-metadata-ohdsi.snapshots.xml.lastUpdated=1721139904903 +maven-metadata-maven-default-http-blocker.xml.error=Could not transfer metadata org.ohdsi\:standardized-analysis-specs\:1.2.1-SNAPSHOT/maven-metadata.xml from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots)] +maven-metadata-jboss-public-repository-group.xml.error= +maven-metadata-jboss-public-repository-group.xml.lastUpdated=1721139904890 +maven-metadata-central.xml.error= +maven-metadata-maven-default-http-blocker.xml/@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148678110 +maven-metadata-jitpack.io.xml.lastUpdated=1721139904910 +maven-metadata-local-repo.xml.error= +maven-metadata-local-repo.xml.lastUpdated=1721139904914 +maven-metadata-central.xml.lastUpdated=1721139904884 +maven-metadata-ohdsi.xml.lastUpdated=1721139904907 +maven-metadata-jitpack.io.xml.error= diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom new file mode 100644 index 000000000..8fa349cf1 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom @@ -0,0 +1,85 @@ + + + 4.0.0 + + org.ohdsi + standardized-analysis-specs + 1.2.1-SNAPSHOT + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + 1.8 + 1.8 + + + + + + + + central + Central Repository + http://repo.maven.apache.org/maven2/ + + + ohdsi + repo.ohdsi.org + http://repo.ohdsi.org:8085/nexus/content/repositories/releases + + + ohdsi.snapshots + repo.ohdsi.org-snapshots + http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots + + false + + + true + + + + + + com.fasterxml.jackson.core + jackson-core + 2.9.6 + + + junit + junit + 4.12 + test + + + com.google.guava + guava + 25.1-jre + + + + org.ohdsi + standardized-analysis-utils + ${project.version} + + + org.ohdsi + circe + 1.9.0-SNAPSHOT + + + + org.skyscreamer + jsonassert + 1.5.0 + test + + + + \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.lastUpdated b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.lastUpdated new file mode 100644 index 000000000..29df6b8a0 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:05 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +https\://repo.ohdsi.org/nexus/content/repositories/snapshots/.lastUpdated=1721139905547 +http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:standardized-analysis-specs\:pom\:1.2.1-20201204.180243-3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139905451 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139905459 +https\://repo1.maven.org/maven2/.lastUpdated=1721139905078 diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.sha1 b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.sha1 new file mode 100644 index 000000000..16f605088 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.sha1 @@ -0,0 +1 @@ +05396007ad6a9a8ac12bdd6a45f66d8d66cf6eda \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-SNAPSHOT.pom b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-SNAPSHOT.pom new file mode 100644 index 000000000..8fa349cf1 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-SNAPSHOT.pom @@ -0,0 +1,85 @@ + + + 4.0.0 + + org.ohdsi + standardized-analysis-specs + 1.2.1-SNAPSHOT + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + 1.8 + 1.8 + + + + + + + + central + Central Repository + http://repo.maven.apache.org/maven2/ + + + ohdsi + repo.ohdsi.org + http://repo.ohdsi.org:8085/nexus/content/repositories/releases + + + ohdsi.snapshots + repo.ohdsi.org-snapshots + http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots + + false + + + true + + + + + + com.fasterxml.jackson.core + jackson-core + 2.9.6 + + + junit + junit + 4.12 + test + + + com.google.guava + guava + 25.1-jre + + + + org.ohdsi + standardized-analysis-utils + ${project.version} + + + org.ohdsi + circe + 1.9.0-SNAPSHOT + + + + org.skyscreamer + jsonassert + 1.5.0 + test + + + + \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/_remote.repositories b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/_remote.repositories new file mode 100644 index 000000000..1b458605c --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:03 EDT 2024 +standardized-analysis-specs-1.5.0.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom new file mode 100644 index 000000000..4d871afb3 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom @@ -0,0 +1,75 @@ + + + 4.0.0 + + org.ohdsi + standardized-analysis-specs + 1.5.0 + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + 1.8 + 1.8 + + + + + + + ohdsi + repo.ohdsi.org + https://repo.ohdsi.org/nexus/content/groups/public + + + + + ohdsi + repo.ohdsi.org + https://repo.ohdsi.org/nexus/content/groups/public + + + + + com.fasterxml.jackson.core + jackson-core + 2.10.5 + + + junit + junit + 4.13.1 + test + + + com.google.guava + guava + 29.0-jre + + + + org.ohdsi + standardized-analysis-utils + 1.4.0 + + + org.ohdsi + circe + 1.11.1 + + + + org.skyscreamer + jsonassert + 1.5.0 + test + + + + diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.lastUpdated b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.lastUpdated new file mode 100644 index 000000000..4c7c4c5bd --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:03 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:standardized-analysis-specs\:pom\:1.5.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139903150 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139903157 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139903283 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139903356 +https\://repo1.maven.org/maven2/.lastUpdated=1721139903055 diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.sha1 b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.sha1 new file mode 100644 index 000000000..08e4d27c2 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.sha1 @@ -0,0 +1 @@ +f626a3322714775ff16f84c0eaa0960441f09d46 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/_remote.repositories b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/_remote.repositories new file mode 100644 index 000000000..fa2c01a4f --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +standardized-analysis-utils-1.2.1-20201204.180243-3.pom>ohdsi.snapshots= diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml new file mode 100644 index 000000000..ba1c248a8 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml @@ -0,0 +1,25 @@ + + + org.ohdsi + standardized-analysis-utils + 1.2.1-SNAPSHOT + + + 20201204.180243 + 3 + + 20201204180243 + + + jar + 1.2.1-20201204.180243-3 + 20201204180243 + + + pom + 1.2.1-20201204.180243-3 + 20201204180243 + + + + diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 new file mode 100644 index 000000000..213b7518a --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 @@ -0,0 +1 @@ +174df8d28a4ab4736122c57b95580fed318de0a8 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml new file mode 100644 index 000000000..ba1c248a8 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml @@ -0,0 +1,25 @@ + + + org.ohdsi + standardized-analysis-utils + 1.2.1-SNAPSHOT + + + 20201204.180243 + 3 + + 20201204180243 + + + jar + 1.2.1-20201204.180243-3 + 20201204180243 + + + pom + 1.2.1-20201204.180243-3 + 20201204180243 + + + + diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 new file mode 100644 index 000000000..213b7518a --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 @@ -0,0 +1 @@ +174df8d28a4ab4736122c57b95580fed318de0a8 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/resolver-status.properties b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/resolver-status.properties new file mode 100644 index 000000000..a32b07a1a --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/resolver-status.properties @@ -0,0 +1,14 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 12:51:18 EDT 2024 +maven-metadata-ohdsi.snapshots.xml.lastUpdated=1721139906615 +maven-metadata-maven-default-http-blocker.xml.error=Could not transfer metadata org.ohdsi\:standardized-analysis-utils\:1.2.1-SNAPSHOT/maven-metadata.xml from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots), central (http\://repo.maven.apache.org/maven2/, default, releases+snapshots)] +maven-metadata-jboss-public-repository-group.xml.error= +maven-metadata-jboss-public-repository-group.xml.lastUpdated=1721139906607 +maven-metadata-central.xml.error= +maven-metadata-maven-default-http-blocker.xml/@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148678537 +maven-metadata-jitpack.io.xml.lastUpdated=1721139906622 +maven-metadata-local-repo.xml.error= +maven-metadata-local-repo.xml.lastUpdated=1721139906625 +maven-metadata-central.xml.lastUpdated=1721139906604 +maven-metadata-ohdsi.xml.lastUpdated=1721139906617 +maven-metadata-jitpack.io.xml.error= diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom new file mode 100644 index 000000000..6f888f294 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom @@ -0,0 +1,118 @@ + + + 4.0.0 + + org.ohdsi + standardized-analysis-utils + 1.2.1-SNAPSHOT + + 1.0.0-rc15 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + 1.8 + 1.8 + + + + + + + + central + Central Repository + http://repo.maven.apache.org/maven2/ + + + ohdsi + repo.ohdsi.org + http://repo.ohdsi.org:8085/nexus/content/repositories/releases + + + ohdsi.snapshots + repo.ohdsi.org-snapshots + http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots + + false + + + true + + + + + + com.fasterxml.jackson.core + jackson-core + 2.9.8 + + + com.fasterxml.jackson.core + jackson-annotations + 2.9.8 + + + com.fasterxml.jackson.core + jackson-databind + 2.9.8 + + + org.apache.commons + commons-lang3 + 3.9 + + + org.apache.commons + commons-io + 1.3.2 + + + junit + junit + 4.12 + test + + + com.google.guava + guava + 25.1-jre + + + com.github.zafarkhaja + java-semver + 0.9.0 + + + + org.graalvm.sdk + graal-sdk + ${graalvm.version} + + + org.graalvm.js + js + ${graalvm.version} + runtime + + + org.graalvm.js + js-scriptengine + ${graalvm.version} + + + org.skyscreamer + jsonassert + 1.5.0 + test + + + + \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.lastUpdated b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.lastUpdated new file mode 100644 index 000000000..d24c34a30 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +https\://repo.ohdsi.org/nexus/content/repositories/snapshots/.lastUpdated=1721139907027 +http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:standardized-analysis-utils\:pom\:1.2.1-20201204.180243-3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots), central (http\://repo.maven.apache.org/maven2/, default, releases+snapshots)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139906914 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139906922 +https\://repo1.maven.org/maven2/.lastUpdated=1721139906760 diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.sha1 b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.sha1 new file mode 100644 index 000000000..797fad117 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.sha1 @@ -0,0 +1 @@ +3f99440d64d70fc40e758ff3f0475033a0bbb0a8 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-SNAPSHOT.pom b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-SNAPSHOT.pom new file mode 100644 index 000000000..6f888f294 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-SNAPSHOT.pom @@ -0,0 +1,118 @@ + + + 4.0.0 + + org.ohdsi + standardized-analysis-utils + 1.2.1-SNAPSHOT + + 1.0.0-rc15 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + 1.8 + 1.8 + + + + + + + + central + Central Repository + http://repo.maven.apache.org/maven2/ + + + ohdsi + repo.ohdsi.org + http://repo.ohdsi.org:8085/nexus/content/repositories/releases + + + ohdsi.snapshots + repo.ohdsi.org-snapshots + http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots + + false + + + true + + + + + + com.fasterxml.jackson.core + jackson-core + 2.9.8 + + + com.fasterxml.jackson.core + jackson-annotations + 2.9.8 + + + com.fasterxml.jackson.core + jackson-databind + 2.9.8 + + + org.apache.commons + commons-lang3 + 3.9 + + + org.apache.commons + commons-io + 1.3.2 + + + junit + junit + 4.12 + test + + + com.google.guava + guava + 25.1-jre + + + com.github.zafarkhaja + java-semver + 0.9.0 + + + + org.graalvm.sdk + graal-sdk + ${graalvm.version} + + + org.graalvm.js + js + ${graalvm.version} + runtime + + + org.graalvm.js + js-scriptengine + ${graalvm.version} + + + org.skyscreamer + jsonassert + 1.5.0 + test + + + + \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/_remote.repositories b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/_remote.repositories new file mode 100644 index 000000000..9d59b196a --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:56 EDT 2024 +standardized-analysis-utils-1.4.0.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom new file mode 100644 index 000000000..cccb7e698 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom @@ -0,0 +1,84 @@ + + + 4.0.0 + + org.ohdsi + standardized-analysis-utils + 1.4.0 + + org.springframework.boot + spring-boot-starter-parent + 2.3.0.RELEASE + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + 1.8 + 1.8 + + + + + + + + ohdsi + repo.ohdsi.org + https://repo.ohdsi.org/nexus/content/groups/public + + + + + + central + https://repo.maven.apache.org/maven2 + + + ohdsi + repo.ohdsi.org + https://repo.ohdsi.org/nexus/content/groups/public + + + + + + com.fasterxml.jackson.core + jackson-core + + + com.fasterxml.jackson.core + jackson-annotations + + + com.fasterxml.jackson.core + jackson-databind + + + org.apache.commons + commons-lang3 + + + commons-io + commons-io + 2.11.0 + + + junit + junit + test + + + org.semver4j + semver4j + 4.3.0 + + + + diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.lastUpdated b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.lastUpdated new file mode 100644 index 000000000..c5e929afc --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:56 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:standardized-analysis-utils\:pom\:1.4.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139896040 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139896046 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139896166 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139896239 +https\://repo1.maven.org/maven2/.lastUpdated=1721139895933 diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.sha1 b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.sha1 new file mode 100644 index 000000000..39f298b19 --- /dev/null +++ b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.sha1 @@ -0,0 +1 @@ +223064ed602618b0954afd33850dc65d8a581659 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/_remote.repositories new file mode 100644 index 000000000..11a6e317f --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:28 EDT 2024 +opensaml-core-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom new file mode 100644 index 000000000..db277bdab --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom @@ -0,0 +1,96 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: Core API + Core API + opensaml-core-api + jar + + + org.opensaml.core + + + + + + commons-codec + commons-codec + + + + com.google.guava + guava + + + + io.dropwizard.metrics + metrics-core + + + + + + + + + org.xmlunit + xmlunit-core + test + + + org.xmlunit + xmlunit-matchers + test + + + + + + + maven-jar-plugin + + + true + + org.opensaml.core.Version + + + + org/opensaml/core/ + + ${project.artifactId} + ${project.version} + opensaml.org + + + + + + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..0e0d9d02c --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:28 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-core-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139868100 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139868107 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139868354 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139868513 +https\://repo1.maven.org/maven2/.lastUpdated=1721139867995 diff --git a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.sha1 new file mode 100644 index 000000000..ecb095c46 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.sha1 @@ -0,0 +1 @@ +97e6c62f57bbc9edd820d20b74218b1ca578e10a \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/_remote.repositories new file mode 100644 index 000000000..ff580d5cd --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:39 EDT 2024 +opensaml-core-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom new file mode 100644 index 000000000..cae15d011 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom @@ -0,0 +1,137 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: Core Implementation + Core Implementation + opensaml-core-impl + jar + + + org.opensaml.core.impl + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + ${project.groupId} + opensaml-security-api + ${project.version} + + + + ${shib-shared.groupId} + shib-networking + + + + io.dropwizard.metrics + metrics-core + + + io.dropwizard.metrics + metrics-json + + + + com.fasterxml.jackson.core + jackson-databind + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + + + + ${httpclient.groupId} + ${httpclient.artifactId} + + + ${httpclient.httpcore.groupId} + ${httpclient.httpcore.artifactId} + + + + + + + + + ${project.groupId} + opensaml-testing + ${project.version} + test + + + + com.google.guava + guava + test + + + + org.xmlunit + xmlunit-core + test + + + org.xmlunit + xmlunit-matchers + test + + + + + + + maven-jar-plugin + + + true + + org.opensaml.core.Version + + + + org/opensaml/core/ + + ${project.artifactId} + ${project.version} + opensaml.org + + + + + + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..34caa2b13 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:39 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-core-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139879035 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139879043 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139879147 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139879288 +https\://repo1.maven.org/maven2/.lastUpdated=1721139878941 diff --git a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.sha1 new file mode 100644 index 000000000..677c2cbc8 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.sha1 @@ -0,0 +1 @@ +ed4f4cde1b3822de2604aad55698c4b992f4ea8e \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/_remote.repositories new file mode 100644 index 000000000..21c4e1012 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:33 EDT 2024 +opensaml-messaging-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom new file mode 100644 index 000000000..6b3ad649b --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom @@ -0,0 +1,66 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: Messaging API + Messaging API + opensaml-messaging-api + jar + + + org.opensaml.messaging + + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + + ${httpclient.groupId} + ${httpclient.artifactId} + + + ${httpclient.httpcore.groupId} + ${httpclient.httpcore.artifactId} + + + + + jakarta.servlet + jakarta.servlet-api + + + + + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..72171f87a --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:33 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-messaging-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139873661 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139873665 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139873804 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139873946 +https\://repo1.maven.org/maven2/.lastUpdated=1721139873563 diff --git a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.sha1 new file mode 100644 index 000000000..af22a6616 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.sha1 @@ -0,0 +1 @@ +d491ec570715605b98768ab24d21c22d5ae44b89 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/_remote.repositories new file mode 100644 index 000000000..0f27eed56 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:43 EDT 2024 +opensaml-messaging-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom new file mode 100644 index 000000000..8a611c4dd --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom @@ -0,0 +1,81 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: Messaging Implementations + Messaging Implementations + opensaml-messaging-impl + jar + + + org.opensaml.messaging.impl + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + ${shib-shared.groupId} + shib-networking + + + + + + + + + + + ${project.groupId} + opensaml-core-impl + ${project.version} + test + + + + ${project.groupId} + opensaml-testing + ${project.version} + test + + + ${spring.groupId} + spring-core + test + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..e273db8df --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:43 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-messaging-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139882780 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139882787 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139882915 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139883118 +https\://repo1.maven.org/maven2/.lastUpdated=1721139882636 diff --git a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.sha1 new file mode 100644 index 000000000..1aa8d8a99 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.sha1 @@ -0,0 +1 @@ +427ecfe3eb6fd10875e9bd6d3d8469c0ab3c105b \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-parent/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-parent/5.0.0/_remote.repositories new file mode 100644 index 000000000..bc7db7855 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-parent/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:28 EDT 2024 +opensaml-parent-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom b/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom new file mode 100644 index 000000000..842b3da9a --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom @@ -0,0 +1,178 @@ + + + + 4.0.0 + + + net.shibboleth + parent + 17.0.1 + + + OpenSAML + + A library for creating, reading, writing and performing some processing of SAML messages. + + For further information see https://wiki.shibboleth.net/confluence/display/OS30/Home + + + org.opensaml + opensaml-parent + 5.0.0 + + pom + + + ../opensaml-core-api + ../opensaml-storage-api + ../opensaml-security-api + ../opensaml-xmlsec-api + ../opensaml-messaging-api + ../opensaml-soap-api + ../opensaml-saml-api + ../opensaml-xacml-api + ../opensaml-xacml-saml-api + ../opensaml-profile-api + + ../opensaml-core-impl + ../opensaml-storage-impl + ../opensaml-security-impl + ../opensaml-xmlsec-impl + ../opensaml-messaging-impl + ../opensaml-soap-impl + ../opensaml-saml-impl + ../opensaml-xacml-impl + ../opensaml-xacml-saml-impl + ../opensaml-profile-impl + + ../opensaml-spring + + ../opensaml-testing + + ../opensaml-bom + + + + net.shibboleth + 9.0.0 + ${project.basedir}/../opensaml-parent/resources/checkstyle/checkstyle.xml + ${shibboleth.site.deploy.url}java-opensaml/${project.version}/ + ${opensaml-parent.site.url}${project.artifactId} + + + + + + + ${slf4j.groupId} + slf4j-api + + + + com.google.code.findbugs + jsr305 + + + + ${shib-shared.groupId} + shib-support + ${shib-shared.version} + + + + + + + + + org.testng + testng + test + + + ch.qos.logback + logback-classic + test + + + + + + + + + ${shib-shared.groupId} + shib-shared-bom + ${shib-shared.version} + pom + import + + + + + net.spy + spymemcached + 2.12.3 + + + + + + + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-parent.site.url} + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + ../opensaml-parent/src/site + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${automatic.module.name} + true + + + + + + + + diff --git a/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..90ee0fd7b --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:28 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-parent\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139868740 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139868748 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139868844 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139868964 +https\://repo1.maven.org/maven2/.lastUpdated=1721139868621 diff --git a/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.sha1 new file mode 100644 index 000000000..641a7b29b --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.sha1 @@ -0,0 +1 @@ +c6bf0fad28e90bba494ade9021aa1d2131278671 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/_remote.repositories new file mode 100644 index 000000000..bf7949216 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:34 EDT 2024 +opensaml-profile-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom new file mode 100644 index 000000000..dda3d0430 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom @@ -0,0 +1,98 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: Profile API + Profile API + opensaml-profile-api + jar + + + org.opensaml.profile + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + + ${shib-shared.groupId} + shib-security + + + ${shib-shared.groupId} + shib-networking + + + com.google.guava + guava + + + io.dropwizard.metrics + metrics-core + + + + + jakarta.servlet + jakarta.servlet-api + provided + + + + + + + ${spring.groupId} + spring-core + test + + + ${spring.groupId} + spring-context + test + + + ${spring.groupId} + spring-test + test + + + ${shib-shared.groupId} + shib-spring + test + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..5d35ec657 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:34 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-profile-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139874134 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139874142 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139874266 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139874393 +https\://repo1.maven.org/maven2/.lastUpdated=1721139874041 diff --git a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.sha1 new file mode 100644 index 000000000..8f24cf27e --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.sha1 @@ -0,0 +1 @@ +4882072bd34237834c9c6e4ecc36a0e16bfb866c \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/_remote.repositories new file mode 100644 index 000000000..bd4b87676 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:42 EDT 2024 +opensaml-profile-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom new file mode 100644 index 000000000..7337f2bb3 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom @@ -0,0 +1,104 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: Profile Implementations + Profile Implementations + opensaml-profile-impl + jar + + + org.opensaml.profile.impl + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + + ${project.groupId} + opensaml-profile-api + ${project.version} + + + + ${project.groupId} + opensaml-security-api + ${project.version} + + + + ${project.groupId} + opensaml-xmlsec-api + ${project.version} + + + + ${project.groupId} + opensaml-xmlsec-impl + ${project.version} + + + + ${shib-shared.groupId} + shib-security + + + + io.dropwizard.metrics + metrics-core + + + + + jakarta.servlet + jakarta.servlet-api + provided + + + + + + + ${project.groupId} + opensaml-testing + ${project.version} + test + + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..bf9e36c35 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:42 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-profile-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139882284 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139882298 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139882423 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139882549 +https\://repo1.maven.org/maven2/.lastUpdated=1721139882192 diff --git a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.sha1 new file mode 100644 index 000000000..4054d6868 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.sha1 @@ -0,0 +1 @@ +637f55d0752b087911557c71ea8fc3e79379535d \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/_remote.repositories new file mode 100644 index 000000000..61755aef3 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:33 EDT 2024 +opensaml-saml-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom new file mode 100644 index 000000000..51cfabe1f --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom @@ -0,0 +1,105 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: SAML Provider API + SAML Provider API + opensaml-saml-api + jar + + + org.opensaml.saml + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + + ${project.groupId} + opensaml-profile-api + ${project.version} + + + + ${project.groupId} + opensaml-security-api + ${project.version} + + + + ${project.groupId} + opensaml-soap-api + ${project.version} + + + + ${project.groupId} + opensaml-xmlsec-api + ${project.version} + + + + ${shib-shared.groupId} + shib-security + + + + commons-codec + commons-codec + + + + com.google.guava + guava + + + + org.apache.santuario + xmlsec + + + + + jakarta.servlet + jakarta.servlet-api + + + + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..de80775ea --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:33 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-saml-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139873134 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139873141 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139873319 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139873450 +https\://repo1.maven.org/maven2/.lastUpdated=1721139873015 diff --git a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.sha1 new file mode 100644 index 000000000..64b97a180 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.sha1 @@ -0,0 +1 @@ +6b3e50d4b2ea2c5d4186a92c511188a0caa94d17 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/_remote.repositories new file mode 100644 index 000000000..23841ca65 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:38 EDT 2024 +opensaml-saml-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom new file mode 100644 index 000000000..35bdd0f0e --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom @@ -0,0 +1,245 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: SAML Provider Implementations + SAML Provider Implementations + opensaml-saml-impl + jar + + + org.opensaml.saml.impl + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + + ${project.groupId} + opensaml-core-impl + ${project.version} + + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + + ${project.groupId} + opensaml-profile-api + ${project.version} + + + + ${project.groupId} + opensaml-saml-api + ${project.version} + + + + ${project.groupId} + opensaml-security-api + ${project.version} + + + + ${project.groupId} + opensaml-security-impl + ${project.version} + + + + ${project.groupId} + opensaml-soap-api + ${project.version} + + + + ${project.groupId} + opensaml-soap-impl + ${project.version} + + + + ${project.groupId} + opensaml-storage-api + ${project.version} + + + + ${project.groupId} + opensaml-xmlsec-api + ${project.version} + + + + ${project.groupId} + opensaml-xmlsec-impl + ${project.version} + + + + ${shib-shared.groupId} + shib-security + + + ${shib-shared.groupId} + shib-networking + + + ${shib-shared.groupId} + shib-velocity + + + + commons-codec + commons-codec + + + + com.google.guava + guava + + + + io.dropwizard.metrics + metrics-core + + + + org.apache.santuario + xmlsec + + + + org.apache.velocity + velocity-engine-core + + + + ${httpclient.groupId} + ${httpclient.artifactId} + + + ${httpclient.httpcore.groupId} + ${httpclient.httpcore.artifactId} + + + + + jakarta.servlet + jakarta.servlet-api + + + + + + + ${project.groupId} + opensaml-storage-impl + ${project.version} + test + + + ${project.groupId} + opensaml-testing + ${project.version} + test + + + ${shib-shared.groupId} + shib-testing + test + + + ${shib-shared.groupId} + shib-spring + test + + + + org.xmlunit + xmlunit-core + test + + + org.xmlunit + xmlunit-matchers + test + + + + org.jsoup + jsoup + test + + + + ${spring.groupId} + spring-test + test + + + + ${spring.groupId} + spring-web + test + + + ${spring.groupId} + spring-core + test + + + + + + + get-nashorn + + [15, + + + + org.openjdk.nashorn + nashorn-core + ${nashorn.jdk.version} + test + + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..c984453a4 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:38 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-saml-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139878012 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139878018 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139878714 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139878850 +https\://repo1.maven.org/maven2/.lastUpdated=1721139877922 diff --git a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.sha1 new file mode 100644 index 000000000..ba9ec3a45 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.sha1 @@ -0,0 +1 @@ +d38803d4413fb53d8a90a43a65c1f3ae25562209 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/_remote.repositories new file mode 100644 index 000000000..61dfc833f --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:36 EDT 2024 +opensaml-security-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom new file mode 100644 index 000000000..a054e1ff0 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom @@ -0,0 +1,120 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: Security API + Security API + opensaml-security-api + jar + + + org.opensaml.security + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + + ${shib-shared.groupId} + shib-networking + + + ${shib-shared.groupId} + shib-security + + + + commons-codec + commons-codec + + + + com.google.guava + guava + + + + org.cryptacular + cryptacular + + + + org.bouncycastle + bcprov-jdk18on + + + org.bouncycastle + bcpkix-jdk18on + + + + ${httpclient.httpcore.groupId} + ${httpclient.httpcore.artifactId} + + + ${httpclient.groupId} + ${httpclient.artifactId} + + + + + jakarta.servlet + jakarta.servlet-api + + + + + + + ${shib-shared.groupId} + shib-networking-spring + test + + + + ${shib-shared.groupId} + shib-testing + test + + + + ${spring.groupId} + spring-core + test + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..ac7e268d7 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:36 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-security-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139875985 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139875997 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139876237 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139876375 +https\://repo1.maven.org/maven2/.lastUpdated=1721139875793 diff --git a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.sha1 new file mode 100644 index 000000000..b63e46e5f --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.sha1 @@ -0,0 +1 @@ +a2735824e4d5629fe5aafc287a28c3ac22852ab2 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/_remote.repositories new file mode 100644 index 000000000..2e9bef07f --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:39 EDT 2024 +opensaml-security-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom new file mode 100644 index 000000000..703ce8ee5 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom @@ -0,0 +1,143 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: Security Implementation + Security Implementation + opensaml-security-impl + jar + + + org.opensaml.security.impl + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + + ${project.groupId} + opensaml-security-api + ${project.version} + + + + ${shib-shared.groupId} + shib-networking + + + + commons-codec + commons-codec + + + + com.google.guava + guava + + + + ${httpclient.groupId} + ${httpclient.artifactId} + true + + + ${httpclient.httpcore.groupId} + ${httpclient.httpcore.artifactId} + true + + + + + jakarta.servlet + jakarta.servlet-api + + + + + + + ${project.groupId} + opensaml-core-impl + ${project.version} + test + + + + ${project.groupId} + opensaml-testing + ${project.version} + test + + + + ${shib-shared.groupId} + shib-testing + test + + + + org.cryptacular + cryptacular + test + + + + org.bouncycastle + bcprov-jdk18on + test + + + + org.ldaptive + ldaptive + test + + + + ${spring.groupId} + spring-core + test + + + + ${slf4j.groupId} + jcl-over-slf4j + test + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..2da6be1c6 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:39 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-security-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139879564 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139879572 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139879695 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139879824 +https\://repo1.maven.org/maven2/.lastUpdated=1721139879456 diff --git a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.sha1 new file mode 100644 index 000000000..eb0b867b1 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.sha1 @@ -0,0 +1 @@ +1b15aa910d356de431855aa700caf5e0ae311d9a \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/_remote.repositories new file mode 100644 index 000000000..d3b751bd6 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:37 EDT 2024 +opensaml-soap-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom new file mode 100644 index 000000000..148079a80 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom @@ -0,0 +1,79 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: SOAP Provider API + SOAP Provider API + opensaml-soap-api + jar + + + org.opensaml.soap + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + + ${project.groupId} + opensaml-security-api + ${project.version} + + + + ${project.groupId} + opensaml-xmlsec-api + ${project.version} + + + + ${httpclient.groupId} + ${httpclient.artifactId} + + + ${httpclient.httpcore.groupId} + ${httpclient.httpcore.artifactId} + + + + + + + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..ce1fe1305 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:37 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-soap-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139876663 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139876670 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139876933 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139877050 +https\://repo1.maven.org/maven2/.lastUpdated=1721139876558 diff --git a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.sha1 new file mode 100644 index 000000000..9ae88e68a --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.sha1 @@ -0,0 +1 @@ +d613e493eb0401b36a2b9f39cd731baef87ad501 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/_remote.repositories new file mode 100644 index 000000000..92b90d282 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:40 EDT 2024 +opensaml-soap-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom new file mode 100644 index 000000000..723fbdb78 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom @@ -0,0 +1,129 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: SOAP Provider Implementations + SOAP Provider Implementations + opensaml-soap-impl + jar + + + org.opensaml.soap.impl + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + + ${project.groupId} + opensaml-core-impl + ${project.version} + + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + + ${project.groupId} + opensaml-profile-api + ${project.version} + + + + ${project.groupId} + opensaml-soap-api + ${project.version} + + + + ${project.groupId} + opensaml-xmlsec-api + ${project.version} + + + + ${shib-shared.groupId} + shib-networking + + + ${shib-shared.groupId} + shib-security + + + + com.google.guava + guava + + + + ${httpclient.groupId} + ${httpclient.artifactId} + + + ${httpclient.httpcore.groupId} + ${httpclient.httpcore.artifactId} + + + + + jakarta.servlet + jakarta.servlet-api + + + + + + + ${project.groupId} + opensaml-testing + ${project.version} + test + + + ${shib-shared.groupId} + shib-testing + test + + + ${spring.groupId} + spring-test + + + + ${spring.groupId} + spring-web + test + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..9ee36322f --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:40 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-soap-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139880022 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139880027 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139880118 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139880236 +https\://repo1.maven.org/maven2/.lastUpdated=1721139879911 diff --git a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.sha1 new file mode 100644 index 000000000..40acba9d7 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.sha1 @@ -0,0 +1 @@ +a51b7c874ba7b41518a5fa136fae244e11ae1be6 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/_remote.repositories new file mode 100644 index 000000000..266f42f95 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:40 EDT 2024 +opensaml-storage-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom new file mode 100644 index 000000000..c62413794 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom @@ -0,0 +1,53 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: Storage API + Storage API + opensaml-storage-api + jar + + + org.opensaml.storage + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + + + + + + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..fbe227026 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:40 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-storage-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139880404 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139880410 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139880536 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139880665 +https\://repo1.maven.org/maven2/.lastUpdated=1721139880316 diff --git a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.sha1 new file mode 100644 index 000000000..3653e041d --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.sha1 @@ -0,0 +1 @@ +ff955bc360b5a3569abdafa6c1b1108ba7b63ffd \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/_remote.repositories new file mode 100644 index 000000000..5cfe98d91 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:43 EDT 2024 +opensaml-storage-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom new file mode 100644 index 000000000..517a1de4a --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom @@ -0,0 +1,203 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: Storage Implementation + Storage Implementation + opensaml-storage-impl + jar + + + org.opensaml.storage.impl + + + + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + + ${project.groupId} + opensaml-profile-api + ${project.version} + + + + ${project.groupId} + opensaml-storage-api + ${project.version} + + + + ${shib-shared.groupId} + shib-security + + + + ${shib-shared.groupId} + shib-networking + + + + com.google.guava + guava + + + + + net.spy + spymemcached + true + + + + org.cryptacular + cryptacular + + + + commons-codec + commons-codec + + + + + jakarta.json + jakarta.json-api + provided + + + jakarta.servlet + jakarta.servlet-api + provided + + + + + org.glassfish + jakarta.json + runtime + + + + + ${project.groupId} + opensaml-testing + ${project.version} + test + + + + ${shib-shared.groupId} + shib-testing + test + + + + org.hsqldb + hsqldb + test + + + + org.apache.commons + commons-dbcp2 + test + + + + + + + ${shib-shared.groupId} + shib-spring + test + + + + ${spring.groupId} + spring-core + test + + + ${spring.groupId} + spring-test + test + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + ${excluded.test.groups} + + + + + + + + + default + true + + needs-external-fixture + + + + all + + + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..94765540a --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:43 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-storage-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139883311 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139883319 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139883424 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139883566 +https\://repo1.maven.org/maven2/.lastUpdated=1721139883209 diff --git a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.sha1 new file mode 100644 index 000000000..df424de62 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.sha1 @@ -0,0 +1 @@ +ee1a0a70a550f4817cc429b279d199bab4f32212 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/_remote.repositories new file mode 100644 index 000000000..a52242548 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:37 EDT 2024 +opensaml-xmlsec-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom new file mode 100644 index 000000000..4b023968f --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom @@ -0,0 +1,83 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: XML Security API + XML Security API + opensaml-xmlsec-api + jar + + + org.opensaml.xmlsec + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + + ${project.groupId} + opensaml-security-api + ${project.version} + + + + ${shib-shared.groupId} + shib-security + + + + com.google.guava + guava + + + + org.bouncycastle + bcprov-jdk18on + + + + org.apache.santuario + xmlsec + + + + + + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..5931315ed --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:37 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-xmlsec-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139877234 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139877242 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139877470 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139877611 +https\://repo1.maven.org/maven2/.lastUpdated=1721139877138 diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.sha1 new file mode 100644 index 000000000..c3d69dbd6 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.sha1 @@ -0,0 +1 @@ +4ea1e52be6269f3232ab85a19ce5d8ec9d7666d0 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/_remote.repositories new file mode 100644 index 000000000..77b4fd801 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:41 EDT 2024 +opensaml-xmlsec-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom new file mode 100644 index 000000000..562bcb561 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom @@ -0,0 +1,118 @@ + + + + 4.0.0 + + + org.opensaml + opensaml-parent + 5.0.0 + ../opensaml-parent + + + OpenSAML :: XML Security Implementation + XML Security Implementation + opensaml-xmlsec-impl + jar + + + org.opensaml.xmlsec.impl + + + + + + ${project.groupId} + opensaml-core-api + ${project.version} + + + ${project.groupId} + opensaml-core-impl + ${project.version} + + + ${project.groupId} + opensaml-messaging-api + ${project.version} + + + ${project.groupId} + opensaml-security-api + ${project.version} + + + ${project.groupId} + opensaml-xmlsec-api + ${project.version} + + + + ${shib-shared.groupId} + shib-support + + + + com.google.guava + guava + + + commons-codec + commons-codec + + + org.apache.santuario + xmlsec + + + org.bouncycastle + bcprov-jdk18on + + + + ${project.groupId} + opensaml-security-impl + ${project.version} + + + + + + + + + ${project.groupId} + opensaml-testing + ${project.version} + test + + + + ${shib-shared.groupId} + shib-testing + test + + + + org.cryptacular + cryptacular + test + + + + + + ${shibboleth.scm.connection}java-opensaml + ${shibboleth.scm.developerConnection}java-opensaml + ${shibboleth.scm.url}java-opensaml.git + + + + + site + scp:${opensaml-module.site.url} + + + + diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.lastUpdated new file mode 100644 index 000000000..ac7de1d37 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:41 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-xmlsec-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139880863 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139880870 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139881300 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139881417 +https\://repo1.maven.org/maven2/.lastUpdated=1721139880769 diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.sha1 new file mode 100644 index 000000000..4f3a2bdd0 --- /dev/null +++ b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.sha1 @@ -0,0 +1 @@ +609bf3606a2aabce451c9c18886800c19e0acb27 \ No newline at end of file diff --git a/code/arachne/org/opentest4j/opentest4j/1.3.0/_remote.repositories b/code/arachne/org/opentest4j/opentest4j/1.3.0/_remote.repositories new file mode 100644 index 000000000..c9a2ae0e9 --- /dev/null +++ b/code/arachne/org/opentest4j/opentest4j/1.3.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:09 EDT 2024 +opentest4j-1.3.0.pom>central= diff --git a/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom b/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom new file mode 100644 index 000000000..c89bd0314 --- /dev/null +++ b/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom @@ -0,0 +1,54 @@ + + + + + + + + 4.0.0 + org.opentest4j + opentest4j + 1.3.0 + org.opentest4j:opentest4j + Open Test Alliance for the JVM + https://github.com/ota4j-team/opentest4j + + + The Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + + scm:git:git://github.com/ota4j-team/opentest4j.git + scm:git:git://github.com/ota4j-team/opentest4j.git + https://github.com/ota4j-team/opentest4j + + diff --git a/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom.sha1 b/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom.sha1 new file mode 100644 index 000000000..598cb5f48 --- /dev/null +++ b/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom.sha1 @@ -0,0 +1 @@ +73f3c942f86fd30bcf1759e2f9db6e9cc0e59c32 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-analysis/6.2.1/_remote.repositories b/code/arachne/org/ow2/asm/asm-analysis/6.2.1/_remote.repositories new file mode 100644 index 000000000..241c963da --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-analysis/6.2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:08 EDT 2024 +asm-analysis-6.2.1.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom b/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom new file mode 100644 index 000000000..aa67b8aff --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom @@ -0,0 +1,102 @@ + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + + org.ow2.asm + asm-analysis + 6.2.1 + asm-analysis + Static code analysis API of ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.org/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD + http://asm.ow2.org/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm-tree + 6.2.1 + compile + + + org.ow2.asm + asm-test + 6.2.1 + test + + + org.junit.jupiter + junit-jupiter-api + 5.1.0 + test + + + org.junit.jupiter + junit-jupiter-params + 5.1.0 + test + + + diff --git a/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom.sha1 b/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom.sha1 new file mode 100644 index 000000000..6ae55e5c4 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom.sha1 @@ -0,0 +1 @@ +cef816eba61efd5c2d599c3ae316b363a511b419 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-analysis/9.6/_remote.repositories b/code/arachne/org/ow2/asm/asm-analysis/9.6/_remote.repositories new file mode 100644 index 000000000..c2dd90873 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-analysis/9.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +asm-analysis-9.6.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom b/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom new file mode 100644 index 000000000..c0ecccdba --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom @@ -0,0 +1,83 @@ + + + 4.0.0 + org.ow2.asm + asm-analysis + 9.6 + asm-analysis + Static code analysis API of ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.io/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD-3-Clause + https://asm.ow2.io/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm-tree + 9.6 + compile + + + + org.ow2 + ow2 + 1.5.1 + + diff --git a/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom.sha1 b/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom.sha1 new file mode 100644 index 000000000..8286c7842 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom.sha1 @@ -0,0 +1 @@ +6d72da882f75491c24ba711c50c345703a0bb8c0 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-bom/9.5/_remote.repositories b/code/arachne/org/ow2/asm/asm-bom/9.5/_remote.repositories new file mode 100644 index 000000000..84ffc67e4 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-bom/9.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:49 EDT 2024 +asm-bom-9.5.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom b/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom new file mode 100644 index 000000000..87773b992 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom @@ -0,0 +1,104 @@ + + + 4.0.0 + org.ow2.asm + asm-bom + 9.5 + asm-bom + ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.io/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD-3-Clause + https://asm.ow2.io/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + + org.ow2.asm + asm + 9.5 + + + org.ow2.asm + asm-tree + 9.5 + + + org.ow2.asm + asm-analysis + 9.5 + + + org.ow2.asm + asm-util + 9.5 + + + org.ow2.asm + asm-commons + 9.5 + + + + + org.ow2 + ow2 + 1.5.1 + + diff --git a/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1 b/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1 new file mode 100644 index 000000000..96055562c --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1 @@ -0,0 +1 @@ +2b5d6f54150ef4cbef69c3b09b281353f42e1366 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-commons/6.2.1/_remote.repositories b/code/arachne/org/ow2/asm/asm-commons/6.2.1/_remote.repositories new file mode 100644 index 000000000..dfbf7cfeb --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-commons/6.2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:08 EDT 2024 +asm-commons-6.2.1.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom b/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom new file mode 100644 index 000000000..4859fc1cf --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom @@ -0,0 +1,120 @@ + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + + org.ow2.asm + asm-commons + 6.2.1 + asm-commons + Usefull class adapters based on ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.org/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD + http://asm.ow2.org/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm + 6.2.1 + compile + + + org.ow2.asm + asm-tree + 6.2.1 + compile + + + org.ow2.asm + asm-analysis + 6.2.1 + compile + + + org.ow2.asm + asm-util + 6.2.1 + test + + + org.ow2.asm + asm-test + 6.2.1 + test + + + org.junit.jupiter + junit-jupiter-api + 5.1.0 + test + + + org.junit.jupiter + junit-jupiter-params + 5.1.0 + test + + + diff --git a/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom.sha1 b/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom.sha1 new file mode 100644 index 000000000..dc0e45857 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom.sha1 @@ -0,0 +1 @@ +16e56569d8bbf574809bb51b6a8bd8ae6bc5d137 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-commons/9.6/_remote.repositories b/code/arachne/org/ow2/asm/asm-commons/9.6/_remote.repositories new file mode 100644 index 000000000..aa6c92551 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-commons/9.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +asm-commons-9.6.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom b/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom new file mode 100644 index 000000000..eb241e0d2 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom @@ -0,0 +1,89 @@ + + + 4.0.0 + org.ow2.asm + asm-commons + 9.6 + asm-commons + Usefull class adapters based on ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.io/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD-3-Clause + https://asm.ow2.io/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm + 9.6 + compile + + + org.ow2.asm + asm-tree + 9.6 + compile + + + + org.ow2 + ow2 + 1.5.1 + + diff --git a/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom.sha1 b/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom.sha1 new file mode 100644 index 000000000..c382bcc67 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom.sha1 @@ -0,0 +1 @@ +fb17682f6b9f1a62cb1870336ccc167363a657bf \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-tree/6.2.1/_remote.repositories b/code/arachne/org/ow2/asm/asm-tree/6.2.1/_remote.repositories new file mode 100644 index 000000000..807f1338c --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-tree/6.2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:08 EDT 2024 +asm-tree-6.2.1.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom b/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom new file mode 100644 index 000000000..abbd1570b --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom @@ -0,0 +1,102 @@ + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + + org.ow2.asm + asm-tree + 6.2.1 + asm-tree + Tree API of ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.org/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD + http://asm.ow2.org/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm + 6.2.1 + compile + + + org.ow2.asm + asm-test + 6.2.1 + test + + + org.junit.jupiter + junit-jupiter-api + 5.1.0 + test + + + org.junit.jupiter + junit-jupiter-params + 5.1.0 + test + + + diff --git a/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 b/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 new file mode 100644 index 000000000..2bda6097e --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 @@ -0,0 +1 @@ +3bad0a0614f250e411c769f8be2c0d57e027ecca \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-tree/9.6/_remote.repositories b/code/arachne/org/ow2/asm/asm-tree/9.6/_remote.repositories new file mode 100644 index 000000000..d1cec55cc --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-tree/9.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +asm-tree-9.6.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom b/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom new file mode 100644 index 000000000..3a731210c --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom @@ -0,0 +1,83 @@ + + + 4.0.0 + org.ow2.asm + asm-tree + 9.6 + asm-tree + Tree API of ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.io/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD-3-Clause + https://asm.ow2.io/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm + 9.6 + compile + + + + org.ow2 + ow2 + 1.5.1 + + diff --git a/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom.sha1 b/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom.sha1 new file mode 100644 index 000000000..e79455165 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom.sha1 @@ -0,0 +1 @@ +8871f9681c20388b2212e2db082f4d9b608a6944 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-util/6.2.1/_remote.repositories b/code/arachne/org/ow2/asm/asm-util/6.2.1/_remote.repositories new file mode 100644 index 000000000..b19df36d9 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-util/6.2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:08 EDT 2024 +asm-util-6.2.1.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom b/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom new file mode 100644 index 000000000..459981c8a --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom @@ -0,0 +1,120 @@ + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + + org.ow2.asm + asm-util + 6.2.1 + asm-util + Utilities for ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.org/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD + http://asm.ow2.org/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm + 6.2.1 + compile + + + org.ow2.asm + asm-tree + 6.2.1 + compile + + + org.ow2.asm + asm-analysis + 6.2.1 + compile + + + org.codehaus.janino + janino + 3.0.7 + test + + + org.ow2.asm + asm-test + 6.2.1 + test + + + org.junit.jupiter + junit-jupiter-api + 5.1.0 + test + + + org.junit.jupiter + junit-jupiter-params + 5.1.0 + test + + + diff --git a/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom.sha1 b/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom.sha1 new file mode 100644 index 000000000..642b121fd --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom.sha1 @@ -0,0 +1 @@ +95d3e50b3266ec9bdf7b6aaca8471f119558df9a \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-util/9.6/_remote.repositories b/code/arachne/org/ow2/asm/asm-util/9.6/_remote.repositories new file mode 100644 index 000000000..eba7acca1 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-util/9.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:00 EDT 2024 +asm-util-9.6.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom b/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom new file mode 100644 index 000000000..084e7d224 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom @@ -0,0 +1,95 @@ + + + 4.0.0 + org.ow2.asm + asm-util + 9.6 + asm-util + Utilities for ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.io/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD-3-Clause + https://asm.ow2.io/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm + 9.6 + compile + + + org.ow2.asm + asm-tree + 9.6 + compile + + + org.ow2.asm + asm-analysis + 9.6 + compile + + + + org.ow2 + ow2 + 1.5.1 + + diff --git a/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom.sha1 b/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom.sha1 new file mode 100644 index 000000000..2325d16fe --- /dev/null +++ b/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom.sha1 @@ -0,0 +1 @@ +baf106bdef43eca497ce057d6feacde7a4a67e85 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm/6.2.1/_remote.repositories b/code/arachne/org/ow2/asm/asm/6.2.1/_remote.repositories new file mode 100644 index 000000000..f56c28136 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm/6.2.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +asm-6.2.1.pom>central= diff --git a/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom b/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom new file mode 100644 index 000000000..4b4b3187b --- /dev/null +++ b/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom @@ -0,0 +1,96 @@ + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + + org.ow2.asm + asm + 6.2.1 + asm + ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.org/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD + http://asm.ow2.org/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm-test + 6.2.1 + test + + + org.junit.jupiter + junit-jupiter-api + 5.1.0 + test + + + org.junit.jupiter + junit-jupiter-params + 5.1.0 + test + + + diff --git a/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 b/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 new file mode 100644 index 000000000..c8e165648 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 @@ -0,0 +1 @@ +3bc91be104d9292ff1dcc3dbf1002b7c320e767d \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm/9.6/_remote.repositories b/code/arachne/org/ow2/asm/asm/9.6/_remote.repositories new file mode 100644 index 000000000..3a0327af9 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm/9.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:08 EDT 2024 +asm-9.6.pom>central= diff --git a/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom b/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom new file mode 100644 index 000000000..65717e8e3 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom @@ -0,0 +1,75 @@ + + + 4.0.0 + org.ow2.asm + asm + 9.6 + asm + ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.io/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD-3-Clause + https://asm.ow2.io/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + org.ow2 + ow2 + 1.5.1 + + diff --git a/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom.sha1 b/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom.sha1 new file mode 100644 index 000000000..2ea42a223 --- /dev/null +++ b/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom.sha1 @@ -0,0 +1 @@ +d18179bac08cecb6a4901e36d32ab057e460bd35 \ No newline at end of file diff --git a/code/arachne/org/ow2/ow2/1.5.1/_remote.repositories b/code/arachne/org/ow2/ow2/1.5.1/_remote.repositories new file mode 100644 index 000000000..cc376e13d --- /dev/null +++ b/code/arachne/org/ow2/ow2/1.5.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:49 EDT 2024 +ow2-1.5.1.pom>central= diff --git a/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom b/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom new file mode 100644 index 000000000..49837b773 --- /dev/null +++ b/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom @@ -0,0 +1,309 @@ + + + + 4.0.0 + + org.ow2 + ow2 + 1.5.1 + pom + + OW2 Consortium + + 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. + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + OW2 Consortium + http://www.ow2.org + + + + http://www.ow2.org + + + + + sauthieg + Guillaume Sauthier + guillaume.sauthier@ow2.org + + + + + + + http://www.ow2.org/xwiki/bin/download/NewsEvents/MarketingResources/ow2_logo_small_transp.png + + + UTF-8 + + + https://repository.ow2.org/nexus/content/repositories/snapshots + https://repository.ow2.org/nexus/service/local/staging/deploy/maven2 + source-release + ow2-release + 1.0.1 + + + 2.3 + 1.4 + 2.8.1 + 2.1.2 + 2.3.2 + + + + + scm:git:git@gitlab.ow2.org:ow2-lifecycle/ow2-parent-pom.git + scm:git:git@gitlab.ow2.org:ow2-lifecycle/ow2-parent-pom.git + https://gitlab.ow2.org/ow2-lifecycle/ow2-parent-pom/ + 1.5.1 + + + + + + + + + + ow2.release + OW2 Maven Releases Repository + ${ow2DistMgmtReleasesUrl} + + + + + ow2.snapshot + OW2 Maven Snapshots Repository + ${ow2DistMgmtSnapshotsUrl} + + + + + + + + + + + + ow2-plugin-snapshot + OW2 Snapshot Plugin Repository + https://repository.ow2.org/nexus/content/repositories/snapshots + + false + + + + + + + + + + + ow2-snapshot + OW2 Snapshot Repository + https://repository.ow2.org/nexus/content/repositories/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0-beta-1 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. + + + + + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + ${maven-release-plugin.version} + + forked-path + + + false + + ${ow2ReleaseProfiles} + + + + + + + + + + + ow2-release + + + + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + + attach-sources + + jar-no-fork + + + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + + attach-javadocs + + jar + + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven-gpg-plugin.version} + + + sign-artifacts + verify + + + sign + + + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + source-release-assembly + package + + single + + + + true + + ${ow2SourceAssemblyDescriptorRef} + + + gnu + + + + + + org.ow2 + maven-source-assemblies + ${maven-source-assemblies.version} + + + + + + + + + + + + + diff --git a/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 b/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 new file mode 100644 index 000000000..cc66a5962 --- /dev/null +++ b/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 @@ -0,0 +1 @@ +bda66fa5f1b68fa7d2de3d569bdc8508b2af82d4 \ No newline at end of file diff --git a/code/arachne/org/ow2/ow2/1.5/_remote.repositories b/code/arachne/org/ow2/ow2/1.5/_remote.repositories new file mode 100644 index 000000000..6e7e3e753 --- /dev/null +++ b/code/arachne/org/ow2/ow2/1.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:07 EDT 2024 +ow2-1.5.pom>central= diff --git a/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom b/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom new file mode 100644 index 000000000..d6d62a459 --- /dev/null +++ b/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom @@ -0,0 +1,309 @@ + + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + pom + + OW2 Consortium + + 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. + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + OW2 Consortium + http://www.ow2.org + + + + http://www.ow2.org + + + + + sauthieg + Guillaume Sauthier + guillaume.sauthier@ow2.org + + + + + + + http://www.ow2.org/xwiki/bin/download/NewsEvents/MarketingResources/ow2_logo_small_transp.png + + + UTF-8 + + + http://repository.ow2.org/nexus/content/repositories/snapshots + http://repository.ow2.org/nexus/service/local/staging/deploy/maven2 + source-release + ow2-release + 1.0.1 + + + 2.3 + 1.4 + 2.8.1 + 2.1.2 + 2.3.2 + + + + + scm:git:git@gitorious.ow2.org:ow2/pom.git + scm:git:git@gitorious.ow2.org:ow2/pom.git + http://gitorious.ow2.org/ow2/pom + ow2-1.5 + + + + + + + + + + ow2.release + OW2 Maven Releases Repository + ${ow2DistMgmtReleasesUrl} + + + + + ow2.snapshot + OW2 Maven Snapshots Repository + ${ow2DistMgmtSnapshotsUrl} + + + + + + + + + + + + ow2-plugin-snapshot + OW2 Snapshot Plugin Repository + http://repository.ow2.org/nexus/content/repositories/snapshots + + false + + + + + + + + + + + ow2-snapshot + OW2 Snapshot Repository + http://repository.ow2.org/nexus/content/repositories/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0-beta-1 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. + + + + + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + ${maven-release-plugin.version} + + forked-path + + + false + + ${ow2ReleaseProfiles} + + + + + + + + + + + ow2-release + + + + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + + attach-sources + + jar-no-fork + + + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + + attach-javadocs + + jar + + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven-gpg-plugin.version} + + + sign-artifacts + verify + + + sign + + + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + source-release-assembly + package + + single + + + + true + + ${ow2SourceAssemblyDescriptorRef} + + + gnu + + + + + + org.ow2 + maven-source-assemblies + ${maven-source-assemblies.version} + + + + + + + + + + + + + diff --git a/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 b/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 new file mode 100644 index 000000000..f9682a2b4 --- /dev/null +++ b/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 @@ -0,0 +1 @@ +d8edc69335f4d9f95f511716fb689c86fb0ebaae \ No newline at end of file diff --git a/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/_remote.repositories b/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/_remote.repositories new file mode 100644 index 000000000..d388cddee --- /dev/null +++ b/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:21 EDT 2024 +encoder-parent-1.2.3.pom>central= diff --git a/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom b/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom new file mode 100644 index 000000000..d3ea0741d --- /dev/null +++ b/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom @@ -0,0 +1,492 @@ + + + + + 4.0.0 + + org.owasp.encoder + encoder-parent + 1.2.3 + pom + + OWASP Java Encoder Project + + The OWASP Encoders package is a collection of high-performance low-overhead + contextual encoders, that when utilized correctly, is an effective tool in + preventing Web Application security vulnerabilities such as Cross-Site + Scripting. + + + + core + jsp + esapi + + + https://www.owasp.org/index.php/OWASP_Java_Encoder_Project + 2011 + + OWASP (Open Web-Application Security Project) + https://www.owasp.org/ + + + + + The BSD 3-Clause License + http://www.opensource.org/licenses/BSD-3-Clause + repo + + + + + org.sonatype.oss + oss-parent + 9 + + + + scm:git:git@github.com:owasp/owasp-java-encoder.git + scm:git:git@github.com:owasp/owasp-java-encoder.git + https://github.com/owasp/owasp-java-encoder + + + + gh-pages + gh-pages + http://owasp.github.io/owasp-java-encoder + + + + + Owasp-java-encoder-project + https://lists.owasp.org/mailman/listinfo/owasp-java-encoder-project + https://lists.owasp.org/mailman/listinfo/owasp-java-encoder-project + owasp-java-encoder-project@lists.owasp.org + http://lists.owasp.org/pipermail/owasp-java-encoder-project/ + + + + + github + https://github.com/owasp/owasp-java-encoder/issues + + + + + Jeff Ichnowski + + Project Owner + Architect + Developer + + + + Jim Manico + OWASP + https://www.owasp.org/ + + Architect + Developer + + + + Jeremy Long + jeremy.long@owasp.org + OWASP + https://www.owasp.org/ + + developer + + + + + + UTF-8 + UTF-8 + + + + + + junit + junit + 3.8.2 + + + + + + junit + junit + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + + org.codehaus.mojo + cobertura-maven-plugin + 2.6 + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.19.1 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + + org.apache.maven.plugins + maven-surefire-report-plugin + 2.19.1 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + org.apache.maven.plugins + maven-site-plugin + + 3.4 + + + lt.velykis.maven.skins + reflow-velocity-tools + 1.1.1 + + + + org.apache.velocity + velocity + 1.7 + + + org.apache.maven.doxia + doxia-module-markdown + 1.6 + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.9 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.6 + + + org.apache.felix + maven-bundle-plugin + 3.3.0 + + + org.codehaus.mojo + versions-maven-plugin + 2.3 + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.4 + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.5 + 1.5 + + + + org.apache.felix + maven-bundle-plugin + + + default-bundle + process-classes + + manifest + + + true + + <_noee>true + <_nouses>true + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + + + 85 + 85 + false + 85 + 85 + 85 + 85 + + + + + + clean + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + org/owasp/encoder/BenchmarkTest.java + + -Xmx1024m -XX:MaxPermSize=256m + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + package + + jar + + + true + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + package + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + package + + jar + + + + + + org.apache.maven.plugins + maven-site-plugin + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + index + summary + license + scm + mailing-list + issue-tracking + dependencies + plugin-management + project-team + + + + + + org.codehaus.mojo + versions-maven-plugin + + + + dependency-updates-report + plugin-updates-report + + + + + + org.apache.maven.plugins + maven-jxr-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + + report-only + failsafe-report-only + + + + + + org.codehaus.mojo + cobertura-maven-plugin + + + org.apache.maven.plugins + maven-pmd-plugin + + 1.5 + true + utf-8 + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + src/main/config/checkstyle.xml + src/main/config/checkstyle-header.txt + + + + org.codehaus.mojo + findbugs-maven-plugin + + + + + + sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + diff --git a/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom.sha1 b/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom.sha1 new file mode 100644 index 000000000..ac745ec42 --- /dev/null +++ b/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom.sha1 @@ -0,0 +1 @@ +37df76d2b909a4e9d4b83863009bd97d21c17b14 \ No newline at end of file diff --git a/code/arachne/org/owasp/encoder/encoder/1.2.3/_remote.repositories b/code/arachne/org/owasp/encoder/encoder/1.2.3/_remote.repositories new file mode 100644 index 000000000..2cade9d56 --- /dev/null +++ b/code/arachne/org/owasp/encoder/encoder/1.2.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:21 EDT 2024 +encoder-1.2.3.pom>central= diff --git a/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom b/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom new file mode 100644 index 000000000..687e433cf --- /dev/null +++ b/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom @@ -0,0 +1,99 @@ + + + + + 4.0.0 + + + org.owasp.encoder + encoder-parent + 1.2.3 + + + encoder + jar + + Java Encoder + + The OWASP Encoders package is a collection of high-performance low-overhead + contextual encoders, that when utilized correctly, is an effective tool in + preventing Web Application security vulnerabilities such as Cross-Site + Scripting. + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + org/owasp/encoder/BenchmarkTest.java + + + + + + + + benchmark + + + + org.apache.maven.plugins + maven-failsafe-plugin + + -Xmx1024m -XX:MaxPermSize=256m + + org/owasp/encoder/BenchmarkTest.java + + + + + + integration-test + verify + + + + + + + + + diff --git a/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom.sha1 b/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom.sha1 new file mode 100644 index 000000000..7e770b220 --- /dev/null +++ b/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom.sha1 @@ -0,0 +1 @@ +d6283d28ef5108d3098df4f138c02f40f498246a \ No newline at end of file diff --git a/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/_remote.repositories b/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/_remote.repositories new file mode 100644 index 000000000..e4f956e68 --- /dev/null +++ b/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +jakartaee-pac4j-8.0.1.pom>central= diff --git a/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom b/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom new file mode 100644 index 000000000..8fe94b32f --- /dev/null +++ b/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom @@ -0,0 +1,30 @@ + + + 4.0.0 + + + org.pac4j + jee-pac4j-parent + 8.0.1 + + + org.pac4j + jakartaee-pac4j + jar + pac4j implementation for JakartaEE + Security library for JakartaEE based on pac4j + + + + org.pac4j + pac4j-jakartaee + ${pac4j.version} + + + jakarta.platform + jakarta.jakartaee-web-api + 9.1.0 + provided + + + diff --git a/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom.sha1 b/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom.sha1 new file mode 100644 index 000000000..840e94b62 --- /dev/null +++ b/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom.sha1 @@ -0,0 +1 @@ +05f7de96877277ce262b6b6982d8237618b87a8c \ No newline at end of file diff --git a/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/_remote.repositories b/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/_remote.repositories new file mode 100644 index 000000000..f86380acc --- /dev/null +++ b/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +jee-pac4j-parent-8.0.1.pom>central= diff --git a/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom b/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom new file mode 100644 index 000000000..9a6685c0d --- /dev/null +++ b/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom @@ -0,0 +1,211 @@ + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + org.pac4j + jee-pac4j-parent + pom + jee-pac4j parent + 8.0.1 + JEE pac4j libraries + https://github.com/pac4j/jee-pac4j + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + https://github.com/pac4j/jee-pac4j.git + scm:git:git@github.com:pac4j/jee-pac4j.git + scm:git:git@github.com:pac4j/jee-pac4j.git + + + + + leleuj + Jerome LELEU + leleuj@gmail.com + + + + + javaee-pac4j + jakartaee-pac4j + + + + 6.0.2 + 17 + 6.55.0 + + + + + org.projectlombok + lombok + 1.18.32 + provided + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.13.0 + + ${java.version} + UTF-8 + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + UTF-8 + UTF-8 + UTF-8 + + + + attach-javadocs + + jar + + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.8.5.0 + + Low + Max + true + ${basedir}/../spotbugs-exclude.xml + true + + + + run-sportbugs + compile + + check + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.21.2 + + true + true + + + + run-pmd + compile + + check + + + + + + net.sourceforge.pmd + pmd-core + ${pmdVersion} + + + net.sourceforge.pmd + pmd-java + ${pmdVersion} + + + net.sourceforge.pmd + pmd-javascript + ${pmdVersion} + + + net.sourceforge.pmd + pmd-jsp + ${pmdVersion} + + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.2.4 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom.sha1 b/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom.sha1 new file mode 100644 index 000000000..5ffb9b99b --- /dev/null +++ b/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom.sha1 @@ -0,0 +1 @@ +d5896c51e8f277238e556c4e8e8cf24782b0a856 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-cas/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-cas/6.0.3/_remote.repositories new file mode 100644 index 000000000..9982ee567 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-cas/6.0.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:10 EDT 2024 +pac4j-cas-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom b/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom new file mode 100644 index 000000000..be0c9cf62 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom @@ -0,0 +1,75 @@ + + + 4.0.0 + + + org.pac4j + pac4j-parent + 6.0.3 + + + pac4j-cas + jar + pac4j: Java web security for CAS + + + 4.0.4 + + + + + org.pac4j + pac4j-core + + + org.apereo.cas.client + cas-client-core + ${cas.version} + + + org.apereo.cas.client + cas-client-support-saml + ${cas.version} + + + com.google.guava + guava + + + + org.pac4j + pac4j-core + test-jar + test + + + junit + junit + test + + + ch.qos.logback + logback-classic + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + pac4j.cas + org.pac4j.cas + org.pac4j.cas.*;version=${project.version} + * + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom.sha1 new file mode 100644 index 000000000..66413be1a --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom.sha1 @@ -0,0 +1 @@ +43b30e22affe3267438b4c78e020e5b0205d40fb \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-core/5.7.4/_remote.repositories b/code/arachne/org/pac4j/pac4j-core/5.7.4/_remote.repositories new file mode 100644 index 000000000..31d8fb35f --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-core/5.7.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:27 EDT 2024 +pac4j-core-5.7.4.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom b/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom new file mode 100644 index 000000000..f87f352a4 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom @@ -0,0 +1,122 @@ + + + 4.0.0 + + + org.pac4j + pac4j-parent + 5.7.4 + + + pac4j-core + jar + pac4j core + + + org.slf4j + slf4j-api + + + com.google.guava + guava + true + + + org.springframework.security + spring-security-crypto + true + + + org.apache.shiro + shiro-core + true + + + de.svenkubiak + jBCrypt + true + + + com.fasterxml.jackson.core + jackson-databind + true + + + + junit + junit + test + + + org.slf4j + jcl-over-slf4j + test + + + ch.qos.logback + logback-classic + test + + + org.mockito + mockito-core + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + pac4j.core + org.pac4j.core + org.pac4j.core.*;version=${project.version} + * + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + test-jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + test-jar + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom.sha1 b/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom.sha1 new file mode 100644 index 000000000..1a5b5e004 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom.sha1 @@ -0,0 +1 @@ +1d459adca8c1f1e02def0b11d1479a0a3ab22e6d \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.2/_remote.repositories b/code/arachne/org/pac4j/pac4j-core/6.0.2/_remote.repositories new file mode 100644 index 000000000..42b2df0d9 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-core/6.0.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:25 EDT 2024 +pac4j-core-6.0.2.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom b/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom new file mode 100644 index 000000000..3db0d5959 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom @@ -0,0 +1,132 @@ + + + 4.0.0 + + + org.pac4j + pac4j-parent + 6.0.2 + + + pac4j-core + jar + pac4j core + + + org.slf4j + slf4j-api + + + org.apache.commons + commons-text + + + com.fasterxml.jackson.core + jackson-databind + + + + com.google.guava + guava + true + + + org.springframework.security + spring-security-crypto + true + + + org.apache.shiro + shiro-core + true + + + de.svenkubiak + jBCrypt + true + + + org.springframework + spring-core + true + + + + + junit + junit + test + + + org.slf4j + jcl-over-slf4j + test + + + ch.qos.logback + logback-classic + test + + + org.mockito + mockito-core + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + pac4j.core + org.pac4j.core + org.pac4j.core.*;version=${project.version} + * + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + test-jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + test-jar + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom.sha1 b/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom.sha1 new file mode 100644 index 000000000..72bff15bd --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom.sha1 @@ -0,0 +1 @@ +a22fd5ee6f91d74dbf0f9bf9d94635e9a165c826 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-core/6.0.3/_remote.repositories new file mode 100644 index 000000000..cc00f0df6 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-core/6.0.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:25 EDT 2024 +pac4j-core-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom b/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom new file mode 100644 index 000000000..01178b9b5 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom @@ -0,0 +1,132 @@ + + + 4.0.0 + + + org.pac4j + pac4j-parent + 6.0.3 + + + pac4j-core + jar + pac4j core + + + org.slf4j + slf4j-api + + + org.apache.commons + commons-text + + + com.fasterxml.jackson.core + jackson-databind + + + + com.google.guava + guava + true + + + org.springframework.security + spring-security-crypto + true + + + org.apache.shiro + shiro-core + true + + + de.svenkubiak + jBCrypt + true + + + org.springframework + spring-core + true + + + + + junit + junit + test + + + org.slf4j + jcl-over-slf4j + test + + + ch.qos.logback + logback-classic + test + + + org.mockito + mockito-core + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + pac4j.core + org.pac4j.core + org.pac4j.core.*;version=${project.version} + com.google.common.cache;version=!,com.google.common.collect;version=!,* + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + test-jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + test-jar + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom.sha1 new file mode 100644 index 000000000..4ab5f432c --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom.sha1 @@ -0,0 +1 @@ +f535f27d777a07b8a6ef080a1af7af8482fe3591 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-http/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-http/6.0.3/_remote.repositories new file mode 100644 index 000000000..5f891ef68 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-http/6.0.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:27 EDT 2024 +pac4j-http-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom b/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom new file mode 100644 index 000000000..e46203f16 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom @@ -0,0 +1,119 @@ + + + 4.0.0 + + + org.pac4j + pac4j-parent + 6.0.3 + + + pac4j-http + jar + pac4j for HTTP protocol + + + + org.pac4j + pac4j-core + + + commons-codec + commons-codec + true + + + com.fasterxml.jackson.core + jackson-databind + + + + org.pac4j + pac4j-core + test-jar + test + + + junit + junit + test + + + ch.qos.logback + logback-classic + test + + + org.mockito + mockito-core + test + + + com.google.guava + guava + test + + + org.nanohttpd + nanohttpd + ${nanohttpd.version} + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + pac4j.http + org.pac4j.http + org.pac4j.http.*;version=${project.version} + * + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + test-jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + test-jar + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom.sha1 new file mode 100644 index 000000000..488c3328c --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom.sha1 @@ -0,0 +1 @@ +0b726ba0393d5a5b99e82a70b0bee0a04d6e8cbb \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/_remote.repositories b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/_remote.repositories new file mode 100644 index 000000000..31198f859 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +pac4j-jakartaee-6.0.2.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom new file mode 100644 index 000000000..82cd449bb --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom @@ -0,0 +1,77 @@ + + + 4.0.0 + + + org.pac4j + pac4j-parent + 6.0.2 + + + pac4j-jakartaee + jar + pac4j JakartaEE components + + + org.pac4j + pac4j-core + + + org.pac4j + pac4j-saml + true + + + jakarta.servlet + jakarta.servlet-api + provided + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + provided + + + + org.pac4j + pac4j-core + test-jar + test + + + junit + junit + test + + + ch.qos.logback + logback-classic + test + + + org.mockito + mockito-core + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + pac4j.jakartaee + org.pac4j.jakartaee + org.pac4j.jee.*;version=${project.version} + * + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom.sha1 b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom.sha1 new file mode 100644 index 000000000..165fb8cdb --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom.sha1 @@ -0,0 +1 @@ +8bdb2d58337be2763d77bc86a52a1e70b2e2217a \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/_remote.repositories new file mode 100644 index 000000000..17f0f8eb2 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:25 EDT 2024 +pac4j-jakartaee-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom new file mode 100644 index 000000000..a63182026 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom @@ -0,0 +1,77 @@ + + + 4.0.0 + + + org.pac4j + pac4j-parent + 6.0.3 + + + pac4j-jakartaee + jar + pac4j JakartaEE components + + + org.pac4j + pac4j-core + + + org.pac4j + pac4j-saml + true + + + jakarta.servlet + jakarta.servlet-api + provided + + + jakarta.annotation + jakarta.annotation-api + 3.0.0 + provided + + + + org.pac4j + pac4j-core + test-jar + test + + + junit + junit + test + + + ch.qos.logback + logback-classic + test + + + org.mockito + mockito-core + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + pac4j.jakartaee + org.pac4j.jakartaee + org.pac4j.jee.*;version=${project.version} + * + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom.sha1 new file mode 100644 index 000000000..25d457dcc --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom.sha1 @@ -0,0 +1 @@ +ca3272681ee3b376fd392c202e1d7d63468d644c \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-oauth/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-oauth/6.0.3/_remote.repositories new file mode 100644 index 000000000..936991ac8 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-oauth/6.0.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +pac4j-oauth-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom b/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom new file mode 100644 index 000000000..e702037fe --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom @@ -0,0 +1,78 @@ + + + 4.0.0 + + + org.pac4j + pac4j-parent + 6.0.3 + + + pac4j-oauth + jar + pac4j: Java web security for OAuth + + + 8.3.3 + + + + + org.pac4j + pac4j-core + + + commons-codec + commons-codec + + + com.github.scribejava + scribejava-apis + ${scribe.version} + + + com.fasterxml.jackson.core + jackson-databind + + + org.reflections + reflections + + + + org.pac4j + pac4j-core + test-jar + test + + + junit + junit + test + + + ch.qos.logback + logback-classic + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + pac4j.oauth + org.pac4j.oauth + org.pac4j.oauth.*;version=${project.version} + * + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom.sha1 new file mode 100644 index 000000000..1f3df63f2 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom.sha1 @@ -0,0 +1 @@ +b629bbd985c59a5fd0a0751bd14d422429fa43ea \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-oidc/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-oidc/6.0.3/_remote.repositories new file mode 100644 index 000000000..d096487d4 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-oidc/6.0.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +pac4j-oidc-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom b/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom new file mode 100644 index 000000000..433b48c50 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom @@ -0,0 +1,109 @@ + + + 4.0.0 + + + org.pac4j + pac4j-parent + 6.0.3 + + + pac4j-oidc + jar + pac4j: Java web security for OpenID Connect + + + 11.12 + + + + + org.pac4j + pac4j-core + + + com.nimbusds + oauth2-oidc-sdk + ${oauth-oidc-sdk.version} + + + com.nimbusds + nimbus-jose-jwt + + + + + com.nimbusds + nimbus-jose-jwt + + + com.fasterxml.jackson.core + jackson-databind + + + com.google.guava + guava + + + org.springframework + spring-core + + + + org.pac4j + pac4j-core + test-jar + test + + + org.pac4j + pac4j-jwt + test + + + org.pac4j + pac4j-http + test + test-jar + + + junit + junit + test + + + ch.qos.logback + logback-classic + test + + + org.nanohttpd + nanohttpd + test + + + org.mockito + mockito-core + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + pac4j.oidc + org.pac4j.oidc + org.pac4j.oidc.*;version=${project.version} + * + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom.sha1 new file mode 100644 index 000000000..cc0689621 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom.sha1 @@ -0,0 +1 @@ +981e7ce28160ad90bf09a095b868ab166ebd24a9 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-parent/5.7.4/_remote.repositories b/code/arachne/org/pac4j/pac4j-parent/5.7.4/_remote.repositories new file mode 100644 index 000000000..25f71164b --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-parent/5.7.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:27 EDT 2024 +pac4j-parent-5.7.4.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom b/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom new file mode 100644 index 000000000..81cb3bb0d --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom @@ -0,0 +1,633 @@ + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + org.pac4j + pac4j-parent + pom + pac4j parent + 5.7.4 + Profile & Authentication Client for Java + https://github.com/pac4j/pac4j + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + https://github.com/pac4j/pac4j.git + scm:git:git@github.com:pac4j/pac4j.git + scm:git:git@github.com:pac4j/pac4j.git + + + + + leleuj + Jerome LELEU + leleuj@gmail.com + + + + + pac4j-javaee + pac4j-jakartaee + pac4j-core + pac4j-config + pac4j-oauth + pac4j-cas + pac4j-cas-clientv4 + pac4j-http + pac4j-saml + pac4j-saml-opensamlv5 + pac4j-gae + pac4j-oidc + pac4j-jwt + pac4j-ldap + pac4j-sql + pac4j-mongo + pac4j-couch + pac4j-kerberos + pac4j-springboot + pac4j-springbootv3 + + + + 4.8.0 + 3.5.2 + 4.13.2 + 4.0.1 + 6.0.0 + 1.4.4 + 1.15 + 2.11.0 + 3.12.0 + 31.1-jre + 9.37.2 + 5.3.24 + 5.7.5 + 1.10.0 + 0.4.3 + 1.33 + 4.9.0 + 2.0.3 + 6.0.6 + 2.1.214 + 11 + 2.14.0 + 0.10.2 + 2.3.1 + 5.10 + UTF-8 + UTF-8 + + + + + + org.pac4j + pac4j-core + ${project.version} + + + org.pac4j + pac4j-config + ${project.version} + + + org.pac4j + pac4j-oauth + ${project.version} + + + org.pac4j + pac4j-cas + ${project.version} + + + org.pac4j + pac4j-saml + ${project.version} + + + org.pac4j + pac4j-oidc + ${project.version} + + + org.pac4j + pac4j-ldap + ${project.version} + + + org.pac4j + pac4j-http + ${project.version} + + + org.pac4j + pac4j-sql + ${project.version} + + + org.pac4j + pac4j-jwt + ${project.version} + + + org.mongodb + mongodb-driver-sync + ${mongo-driver.version} + + + org.mongodb + bson + ${mongo-driver.version} + + + org.mongodb + mongodb-driver-core + ${mongo-driver.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.springframework.security + spring-security-crypto + ${spring.security.version} + + + org.apache.shiro + shiro-core + ${shiro.version} + + + de.svenkubiak + jBCrypt + ${jbcrypt.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + commons-io + commons-io + ${commons-io.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + javax.servlet + javax.servlet-api + ${servlet-api.version} + + + jakarta.servlet + jakarta.servlet-api + ${jakarta-servlet-api.version} + + + com.google.guava + guava + ${guava.version} + + + com.nimbusds + nimbus-jose-jwt + ${nimbus-jose-jwt.version} + + + com.fasterxml.jackson.core + jackson-databind + 2.14.0 + + + org.reflections + reflections + ${reflections.version} + + + org.yaml + snakeyaml + ${snakeyaml.version} + + + + org.pac4j + pac4j-core + ${project.version} + test-jar + + + org.pac4j + pac4j-ldap + ${project.version} + test-jar + + + org.pac4j + pac4j-sql + ${project.version} + test-jar + + + org.pac4j + pac4j-http + ${project.version} + test-jar + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + ${flapdoodle.version} + test + + + junit + junit + ${junit.version} + + + org.springframework + spring-test + ${spring.version} + + + commons-logging + commons-logging + + + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + ch.qos.logback + logback-classic + ${logback.version} + + + org.mockito + mockito-core + ${mockito.version} + + + com.unboundid + unboundid-ldapsdk + ${unboundid.version} + + + com.h2database + h2 + ${h2.version} + + + org.nanohttpd + nanohttpd + ${nanohttpd.version} + + + com.github.tomakehurst + wiremock-jre8 + 2.35.0 + test + + + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 3.4.1 + + + package + + shade + + + false + ${project.artifactId}-${project.version}-all.jar + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + **/*Tests.java + **/*Test.java + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.2.0 + + + com.puppycrawl.tools + checkstyle + 10.4 + + + + checkstyle.xml + + + + checkstyle + validate + + check + + + true + true + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + integration-test + verify + + + + + true + + **/*IT.java + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + ${java.version} + ${java.version} + UTF-8 + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + regex-property + + regex-property + + + module.suffix + ${project.artifactId} + ^(pac4j\-)(.*)$ + $2 + false + + + + set-osgi-version + verify + + parse-version + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + verify + + jar + + + + + + + 2 + ${project.name} + ${project.groupId}.${module.suffix}.source + ${organization.name} + ${parsedVersion.osgiVersion} + ${project.groupId}.${module.suffix};version="${parsedVersion.osgiVersion}";roots:="." + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + ${java.version} + ${java.version} + + + + attach-javadocs + + jar + + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.2.3 + + Low + Max + true + ${basedir}/../spotbugs-exclude.xml + true + + + + run-spotbugs + compile + + check + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.19.0 + + true + true + + + + run-pmd + compile + + check + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.4.1 + + 1.8 + false + none + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.felix + maven-bundle-plugin + 5.1.8 + true + + + bundle-manifest + process-classes + + manifest + + + + + + + jar + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.22.2 + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + + + + + + forceIT + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + integration-test + verify + + + + + false + + **/*IT.java + + + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom.sha1 b/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom.sha1 new file mode 100644 index 000000000..c530a9722 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom.sha1 @@ -0,0 +1 @@ +d7571bed4a319b7659c867cd30fce2d00c7cb3f0 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.2/_remote.repositories b/code/arachne/org/pac4j/pac4j-parent/6.0.2/_remote.repositories new file mode 100644 index 000000000..c77d7152c --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-parent/6.0.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:25 EDT 2024 +pac4j-parent-6.0.2.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom b/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom new file mode 100644 index 000000000..281d2b7c9 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom @@ -0,0 +1,668 @@ + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + org.pac4j + pac4j-parent + pom + pac4j parent + 6.0.2 + Profile & Authentication Client for Java + https://github.com/pac4j/pac4j + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + https://github.com/pac4j/pac4j.git + scm:git:git@github.com:pac4j/pac4j.git + scm:git:git@github.com:pac4j/pac4j.git + + + + + leleuj + Jerome LELEU + leleuj@gmail.com + + + + + pac4j-javaee + pac4j-jakartaee + pac4j-core + pac4j-config + pac4j-oauth + pac4j-cas + pac4j-http + pac4j-saml + pac4j-gae + pac4j-oidc + pac4j-jwt + pac4j-ldap + pac4j-sql + pac4j-mongo + pac4j-couch + pac4j-kerberos + pac4j-springboot + + + + 5.0.0 + 3.5.4 + 4.13.2 + 4.0.1 + 6.0.0 + 1.5.3 + 1.16.1 + 2.15.1 + 3.14.0 + 1.11.0 + 33.1.0-jre + 9.37.3 + 6.1.5 + 6.2.3 + 1.13.0 + 0.4.3 + 2.2 + 5.11.0 + 2.0.12 + 5.3.1 + 7.0.0 + 2.2.224 + 17 + 2.16.2 + 0.10.2 + 2.3.1 + 5.10 + 1.18.32 + UTF-8 + UTF-8 + + + + + + org.pac4j + pac4j-core + ${project.version} + + + org.pac4j + pac4j-config + ${project.version} + + + org.pac4j + pac4j-oauth + ${project.version} + + + org.pac4j + pac4j-cas + ${project.version} + + + org.pac4j + pac4j-saml + ${project.version} + + + org.pac4j + pac4j-oidc + ${project.version} + + + org.pac4j + pac4j-ldap + ${project.version} + + + org.pac4j + pac4j-http + ${project.version} + + + org.pac4j + pac4j-sql + ${project.version} + + + org.pac4j + pac4j-jwt + ${project.version} + + + org.mongodb + mongodb-driver-sync + ${mongo-driver.version} + + + org.mongodb + bson + ${mongo-driver.version} + + + org.mongodb + mongodb-driver-core + ${mongo-driver.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.springframework.security + spring-security-crypto + ${spring.security.version} + + + org.springframework + spring-core + ${spring.version} + + + spring-jcl + org.springframework + + + + + org.apache.httpcomponents.client5 + httpclient5 + ${httpclient.version} + + + org.apache.shiro + shiro-core + ${shiro.version} + + + de.svenkubiak + jBCrypt + ${jbcrypt.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + commons-io + commons-io + ${commons-io.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + org.apache.commons + commons-text + ${commons-text.version} + + + javax.servlet + javax.servlet-api + ${servlet-api.version} + + + jakarta.servlet + jakarta.servlet-api + ${jakarta-servlet-api.version} + + + com.google.guava + guava + ${guava.version} + + + com.nimbusds + nimbus-jose-jwt + ${nimbus-jose-jwt.version} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version} + + + org.reflections + reflections + ${reflections.version} + + + org.yaml + snakeyaml + ${snakeyaml.version} + + + + org.pac4j + pac4j-core + ${project.version} + test-jar + + + org.pac4j + pac4j-ldap + ${project.version} + test-jar + + + org.pac4j + pac4j-sql + ${project.version} + test-jar + + + org.pac4j + pac4j-http + ${project.version} + test-jar + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + ${flapdoodle.version} + test + + + junit + junit + ${junit.version} + + + org.springframework + spring-test + ${spring.version} + + + commons-logging + commons-logging + + + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + ch.qos.logback + logback-classic + ${logback.version} + + + org.mockito + mockito-core + ${mockito.version} + + + com.unboundid + unboundid-ldapsdk + ${unboundid.version} + + + com.h2database + h2 + ${h2.version} + + + org.nanohttpd + nanohttpd + ${nanohttpd.version} + + + com.github.tomakehurst + wiremock-jre8 + 2.35.2 + test + + + + + + + + org.projectlombok + lombok + ${lombok.version} + + + com.google.code.findbugs + findbugs-annotations + 3.0.1 + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 3.5.2 + + + package + + shade + + + false + ${project.artifactId}-${project.version}-all.jar + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.5 + + + **/*Tests.java + **/*Test.java + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.3.1 + + + com.puppycrawl.tools + checkstyle + 10.14.2 + + + + checkstyle.xml + + + + checkstyle + validate + + check + + + true + true + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + integration-test + verify + + + + + true + + **/*IT.java + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.13.0 + + ${java.version} + ${java.version} + UTF-8 + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + regex-property + + regex-property + + + module.suffix + ${project.artifactId} + ^(pac4j\-)(.*)$ + $2 + false + + + + set-osgi-version + verify + + parse-version + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + verify + + jar + + + + + + + 2 + ${project.name} + ${project.groupId}.${module.suffix}.source + ${organization.name} + ${parsedVersion.osgiVersion} + ${project.groupId}.${module.suffix};version="${parsedVersion.osgiVersion}";roots:="." + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + src/main/java + ${java.version} + ${java.version} + + + + attach-javadocs + + jar + + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.7.3.6 + + Low + Max + true + ${basedir}/../spotbugs-exclude.xml + true + + + + run-spotbugs + compile + + check + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.21.2 + + true + true + + + + run-pmd + compile + + check + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + 1.8 + false + none + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.5.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + true + + + bundle-manifest + process-classes + + manifest + + + + + + + jar + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 3.2.5 + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.2.1 + + + sign-artifacts + verify + + sign + + + + + + + + + forceIT + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + integration-test + verify + + + + + false + + **/*IT.java + + + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom.sha1 b/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom.sha1 new file mode 100644 index 000000000..2938708c3 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom.sha1 @@ -0,0 +1 @@ +e90569aeabcbcbde418e504e2773a16849fa0066 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-parent/6.0.3/_remote.repositories new file mode 100644 index 000000000..644407ed3 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-parent/6.0.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:25 EDT 2024 +pac4j-parent-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom b/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom new file mode 100644 index 000000000..fc843fc8e --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom @@ -0,0 +1,669 @@ + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + org.pac4j + pac4j-parent + pom + pac4j parent + 6.0.3 + Profile & Authentication Client for Java + https://github.com/pac4j/pac4j + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + https://github.com/pac4j/pac4j.git + scm:git:git@github.com:pac4j/pac4j.git + scm:git:git@github.com:pac4j/pac4j.git + + + + + leleuj + Jerome LELEU + leleuj@gmail.com + + + + + pac4j-javaee + pac4j-jakartaee + pac4j-core + pac4j-config + pac4j-oauth + pac4j-cas + pac4j-http + pac4j-saml + pac4j-gae + pac4j-oidc + pac4j-jwt + pac4j-ldap + pac4j-sql + pac4j-mongo + pac4j-couch + pac4j-kerberos + pac4j-springboot + + + + 5.1.0 + 3.5.4 + 4.13.2 + 4.0.1 + 6.0.0 + 1.5.6 + 1.17.0 + 2.16.1 + 3.14.0 + 1.12.0 + 33.2.0-jre + 9.39.1 + 6.1.8 + 6.3.0 + 1.13.0 + 0.4.3 + 2.2 + 5.12.0 + 2.0.13 + 5.3.1 + 7.0.0 + 2.2.224 + 17 + 2.17.1 + 0.10.2 + 2.3.1 + 5.10 + 1.18.32 + UTF-8 + UTF-8 + + + + + + org.pac4j + pac4j-core + ${project.version} + + + org.pac4j + pac4j-config + ${project.version} + + + org.pac4j + pac4j-oauth + ${project.version} + + + org.pac4j + pac4j-cas + ${project.version} + + + org.pac4j + pac4j-saml + ${project.version} + + + org.pac4j + pac4j-oidc + ${project.version} + + + org.pac4j + pac4j-ldap + ${project.version} + + + org.pac4j + pac4j-http + ${project.version} + + + org.pac4j + pac4j-sql + ${project.version} + + + org.pac4j + pac4j-jwt + ${project.version} + + + org.mongodb + mongodb-driver-sync + ${mongo-driver.version} + + + org.mongodb + bson + ${mongo-driver.version} + + + org.mongodb + mongodb-driver-core + ${mongo-driver.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.springframework.security + spring-security-crypto + ${spring.security.version} + + + org.springframework + spring-core + ${spring.version} + + + spring-jcl + org.springframework + + + + + org.apache.httpcomponents.client5 + httpclient5 + ${httpclient.version} + + + org.apache.shiro + shiro-core + ${shiro.version} + + + de.svenkubiak + jBCrypt + ${jbcrypt.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + commons-io + commons-io + ${commons-io.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + org.apache.commons + commons-text + ${commons-text.version} + + + javax.servlet + javax.servlet-api + ${servlet-api.version} + + + jakarta.servlet + jakarta.servlet-api + ${jakarta-servlet-api.version} + + + com.google.guava + guava + ${guava.version} + + + com.nimbusds + nimbus-jose-jwt + ${nimbus-jose-jwt.version} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version} + + + org.reflections + reflections + ${reflections.version} + + + org.yaml + snakeyaml + ${snakeyaml.version} + + + + org.pac4j + pac4j-core + ${project.version} + test-jar + + + org.pac4j + pac4j-ldap + ${project.version} + test-jar + + + org.pac4j + pac4j-sql + ${project.version} + test-jar + + + org.pac4j + pac4j-http + ${project.version} + test-jar + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + ${flapdoodle.version} + test + + + junit + junit + ${junit.version} + + + org.springframework + spring-test + ${spring.version} + + + commons-logging + commons-logging + + + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + ch.qos.logback + logback-classic + ${logback.version} + + + org.mockito + mockito-core + ${mockito.version} + + + com.unboundid + unboundid-ldapsdk + ${unboundid.version} + + + com.h2database + h2 + ${h2.version} + + + org.nanohttpd + nanohttpd + ${nanohttpd.version} + + + com.github.tomakehurst + wiremock-jre8 + 2.35.2 + test + + + + + + + + org.projectlombok + lombok + ${lombok.version} + provided + + + com.google.code.findbugs + findbugs-annotations + 3.0.1 + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 3.5.3 + + + package + + shade + + + false + ${project.artifactId}-${project.version}-all.jar + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.5 + + + **/*Tests.java + **/*Test.java + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.3.1 + + + com.puppycrawl.tools + checkstyle + 10.16.0 + + + + checkstyle.xml + + + + checkstyle + validate + + check + + + true + true + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + integration-test + verify + + + + + true + + **/*IT.java + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.13.0 + + ${java.version} + ${java.version} + UTF-8 + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + regex-property + + regex-property + + + module.suffix + ${project.artifactId} + ^(pac4j\-)(.*)$ + $2 + false + + + + set-osgi-version + verify + + parse-version + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + verify + + jar + + + + + + + 2 + ${project.name} + ${project.groupId}.${module.suffix}.source + ${organization.name} + ${parsedVersion.osgiVersion} + ${project.groupId}.${module.suffix};version="${parsedVersion.osgiVersion}";roots:="." + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + src/main/java + ${java.version} + ${java.version} + + + + attach-javadocs + + jar + + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.7.3.6 + + Low + Max + true + ${basedir}/../spotbugs-exclude.xml + true + + + + run-spotbugs + compile + + check + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.21.2 + + true + true + + + + run-pmd + compile + + check + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.4.1 + + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + 1.8 + false + none + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.6.0 + + + org.apache.maven.plugins + maven-source-plugin + 3.3.1 + + + org.apache.felix + maven-bundle-plugin + 5.1.9 + true + + + bundle-manifest + process-classes + + manifest + + + + + + + jar + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 3.2.5 + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.2.4 + + + sign-artifacts + verify + + sign + + + + + + + + + forceIT + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + integration-test + verify + + + + + false + + **/*IT.java + + + + + + + + + diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom.sha1 new file mode 100644 index 000000000..d3fd01bf9 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom.sha1 @@ -0,0 +1 @@ +4d9b7baf601324ecd8fa61c0c3387b1555f9192d \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/_remote.repositories b/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/_remote.repositories new file mode 100644 index 000000000..d013bdf00 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:27 EDT 2024 +pac4j-saml-opensamlv5-5.7.4.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom b/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom new file mode 100644 index 000000000..7dbb6b815 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom @@ -0,0 +1,285 @@ + + + 4.0.0 + + + org.pac4j + pac4j-parent + 5.7.4 + + + pac4j-saml-opensamlv5 + jar + pac4j: Java web security for SAML (OpenSAML v5) + + + 5.0.0 + 5.2.1 + 2.12.1 + 2.3 + 3.0.1 + 1.2.5 + 5.2.1 + 17 + + + + + + org.apache.santuario + xmlsec + ${xmlsec.version} + + + + + + + org.pac4j + pac4j-core + + + org.opensaml + opensaml-core-api + ${opensaml.version} + compile + + + org.opensaml + opensaml-saml-api + ${opensaml.version} + compile + + + org.opensaml + opensaml-saml-impl + ${opensaml.version} + compile + + + org.opensaml + opensaml-soap-api + ${opensaml.version} + compile + + + org.opensaml + opensaml-xmlsec-api + ${opensaml.version} + + + org.opensaml + opensaml-security-api + ${opensaml.version} + + + org.opensaml + opensaml-security-impl + ${opensaml.version} + + + org.opensaml + opensaml-profile-api + ${opensaml.version} + + + org.opensaml + opensaml-profile-impl + ${opensaml.version} + + + org.opensaml + opensaml-messaging-api + ${opensaml.version} + + + org.opensaml + opensaml-messaging-impl + ${opensaml.version} + + + org.opensaml + opensaml-storage-impl + ${opensaml.version} + + + org.springframework + spring-beans + ${spring.version} + + + org.apache.httpcomponents.client5 + httpclient5 + ${httpclient.version} + + + org.springframework + spring-orm + ${spring.version} + + + org.opensaml + opensaml-xmlsec-impl + ${opensaml.version} + + + com.fasterxml.jackson.core + jackson-databind + + + com.google.guava + guava + + + org.cryptacular + cryptacular + ${cryptacular.version} + + + bcprov-jdk15on + org.bouncycastle + + + + + org.apache.commons + commons-lang3 + + + commons-io + commons-io + + + joda-time + joda-time + ${joda-time.version} + + + org.apache.velocity + velocity-engine-core + ${velocity.version} + + + org.apache.commons + commons-lang3 + + + + + org.slf4j + jcl-over-slf4j + + + org.springframework + spring-core + compile + + + spring-jcl + org.springframework + + + ${spring.version} + + + com.hazelcast + hazelcast + ${hazelcast.version} + true + + + org.mongodb + mongodb-driver-sync + true + + + org.mongodb + bson + true + + + org.mongodb + mongodb-driver-core + true + + + + org.pac4j + pac4j-core + test-jar + test + + + com.h2database + h2 + 2.1.214 + test + + + junit + junit + test + + + ch.qos.logback + logback-classic + test + + + org.mockito + mockito-core + test + + + com.github.tomakehurst + wiremock-jre8 + test + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + pac4j.saml + org.pac4j.saml2 + org.pac4j.saml.*;version=${project.version} + org.joda.time;version="[1.6,3)",* + + + + + + + + + shib-snapshots + https://build.shibboleth.net/nexus/content/repositories/snapshots + + true + + + false + + + + shib-release + https://build.shibboleth.net/nexus/content/groups/public + + false + + + true + + + + diff --git a/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom.sha1 b/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom.sha1 new file mode 100644 index 000000000..36de5d285 --- /dev/null +++ b/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom.sha1 @@ -0,0 +1 @@ +eee191fa7112ad29a3ab5fc75153b022cff2d089 \ No newline at end of file diff --git a/code/arachne/org/postgresql/postgresql/42.6.2/_remote.repositories b/code/arachne/org/postgresql/postgresql/42.6.2/_remote.repositories new file mode 100644 index 000000000..1224a9bfc --- /dev/null +++ b/code/arachne/org/postgresql/postgresql/42.6.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +postgresql-42.6.2.pom>central= diff --git a/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom b/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom new file mode 100644 index 000000000..9402c9fdc --- /dev/null +++ b/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom @@ -0,0 +1,81 @@ + + + 4.0.0 + org.postgresql + postgresql + 42.6.2 + PostgreSQL JDBC Driver + PostgreSQL JDBC Driver Postgresql + https://jdbc.postgresql.org + 1997 + + PostgreSQL Global Development Group + https://jdbc.postgresql.org/ + + + + BSD-2-Clause + https://jdbc.postgresql.org/about/license.html + repo + BSD-2-Clause, copyright PostgreSQL Global Development Group + + + + + davecramer + Dave Cramer + + + jurka + Kris Jurka + + + oliver + Oliver Jowett + + + ringerc + Craig Ringer + + + vlsi + Vladimir Sitnikov + + + bokken + Brett Okken + + + + + PostgreSQL JDBC development list + https://lists.postgresql.org/ + https://lists.postgresql.org/unsubscribe/ + pgsql-jdbc@postgresql.org + https://www.postgresql.org/list/pgsql-jdbc/ + + + + scm:git:https://github.com/pgjdbc/pgjdbc.git + scm:git:https://github.com/pgjdbc/pgjdbc.git + https://github.com/pgjdbc/pgjdbc + + + GitHub issues + https://github.com/pgjdbc/pgjdbc/issues + + + + org.checkerframework + checker-qual + 3.31.0 + runtime + + + com.github.waffle + waffle-jna + 1.9.1 + true + + + diff --git a/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom.sha1 b/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom.sha1 new file mode 100644 index 000000000..de4012fec --- /dev/null +++ b/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom.sha1 @@ -0,0 +1 @@ +10abab0585bfd968a7134e07805ef7b4eecca067 \ No newline at end of file diff --git a/code/arachne/org/projectlombok/lombok/1.18.32/_remote.repositories b/code/arachne/org/projectlombok/lombok/1.18.32/_remote.repositories new file mode 100644 index 000000000..1deae0f72 --- /dev/null +++ b/code/arachne/org/projectlombok/lombok/1.18.32/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:24 EDT 2024 +lombok-1.18.32.pom>central= diff --git a/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom b/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom new file mode 100644 index 000000000..2a0e1a839 --- /dev/null +++ b/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom @@ -0,0 +1,43 @@ + + 4.0.0 + org.projectlombok + lombok + jar + 1.18.32 + Project Lombok + https://projectlombok.org + Spice up your java: Automatic Resource Management, automatic generation of getters, setters, equals, hashCode and toString, and more! + + + + The MIT License + https://projectlombok.org/LICENSE + repo + + + + scm:git:git://github.com/projectlombok/lombok.git + http://github.com/projectlombok/lombok + + + GitHub Issues + https://github.com/projectlombok/lombok/issues + + + + rzwitserloot + Reinier Zwitserloot + reinier@projectlombok.org + http://zwitserloot.com + Europe/Amsterdam + + + rspilker + Roel Spilker + roel@projectlombok.org + Europe/Amsterdam + + + + diff --git a/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom.sha1 b/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom.sha1 new file mode 100644 index 000000000..2c2994e36 --- /dev/null +++ b/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom.sha1 @@ -0,0 +1 @@ +b48898e1ae2980d01c4bccf67b24cefb77296a7b \ No newline at end of file diff --git a/code/arachne/org/reactivestreams/reactive-streams/1.0.4/_remote.repositories b/code/arachne/org/reactivestreams/reactive-streams/1.0.4/_remote.repositories new file mode 100644 index 000000000..0a1586b81 --- /dev/null +++ b/code/arachne/org/reactivestreams/reactive-streams/1.0.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:13 EDT 2024 +reactive-streams-1.0.4.pom>central= diff --git a/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom b/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom new file mode 100644 index 000000000..c5c02469a --- /dev/null +++ b/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom @@ -0,0 +1,30 @@ + + + 4.0.0 + org.reactivestreams + reactive-streams + 1.0.4 + reactive-streams + A Protocol for Asynchronous Non-Blocking Data Sequence + http://www.reactive-streams.org/ + 2014 + + + MIT-0 + https://spdx.org/licenses/MIT-0.html + repo + + + + + reactive-streams-sig + Reactive Streams SIG + http://www.reactive-streams.org/ + + + + scm:git:git@github.com:reactive-streams/reactive-streams.git + git@github.com:reactive-streams/reactive-streams.git + + diff --git a/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom.sha1 b/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom.sha1 new file mode 100644 index 000000000..991887eda --- /dev/null +++ b/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom.sha1 @@ -0,0 +1 @@ +1ca52a3b51493500972199a713c886d38e03ac15 \ No newline at end of file diff --git a/code/arachne/org/reflections/reflections/0.10.2/_remote.repositories b/code/arachne/org/reflections/reflections/0.10.2/_remote.repositories new file mode 100644 index 000000000..690408279 --- /dev/null +++ b/code/arachne/org/reflections/reflections/0.10.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:26 EDT 2024 +reflections-0.10.2.pom>central= diff --git a/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom b/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom new file mode 100644 index 000000000..925656cc0 --- /dev/null +++ b/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom @@ -0,0 +1,249 @@ + + 4.0.0 + + org.reflections + reflections + 0.10.2 + jar + + Reflections + Reflections - Java runtime metadata analysis + http://github.com/ronmamo/reflections + + + + WTFPL + http://www.wtfpl.net/ + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + https://github.com/ronmamo/reflections/issues + scm:git:git://github.com/ronmamo/reflections.git + + + + https://github.com/ronmamo/reflections/issues + GitHub Issues + + + + + ronmamo at gmail + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + + + 3.28.0-GA + 1.8 + none + + + + + org.javassist + javassist + ${javassist.version} + false + + + + com.google.code.findbugs + jsr305 + 3.0.2 + compile + + + + org.slf4j + slf4j-api + 1.7.32 + + + + org.dom4j + dom4j + 2.1.3 + true + + + + com.google.code.gson + gson + 2.8.8 + true + + + + javax.servlet + servlet-api + 2.5 + provided + true + + + + org.slf4j + slf4j-simple + 1.7.32 + true + + + + org.jboss + jboss-vfs + 3.2.15.Final + provided + true + + + + org.junit.jupiter + junit-jupiter-engine + 5.8.1 + test + + + + org.hamcrest + hamcrest + 2.2 + test + + + + + + + + release + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + + + + maven-compiler-plugin + + ${jdk.version} + ${jdk.version} + + + + org.apache.felix + maven-bundle-plugin + 5.1.2 + + + bundle-manifest + process-classes + + manifest + + + + + + + + org.jboss.vfs.*;resolution:=optional, + !javax.annotation, + * + + org.reflections + + + + + maven-jar-plugin + 3.2.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + org.reflections + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + + + diff --git a/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom.sha1 b/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom.sha1 new file mode 100644 index 000000000..336d0405f --- /dev/null +++ b/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom.sha1 @@ -0,0 +1 @@ +79c2b5f8150ae55c4f46c77a5f8f5ea9ad2850a2 \ No newline at end of file diff --git a/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/_remote.repositories b/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/_remote.repositories new file mode 100644 index 000000000..4642e5fc7 --- /dev/null +++ b/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:12 EDT 2024 +duct-tape-1.0.8.pom>central= diff --git a/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom b/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom new file mode 100644 index 000000000..de4adbc48 --- /dev/null +++ b/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom @@ -0,0 +1,163 @@ + + + 4.0.0 + + org.rnorth.duct-tape + duct-tape + 1.0.8 + + + + Duct Tape + + General purpose resilience utilities for Java 8 (circuit breakers, timeouts, rate limiters, and handlers for unreliable or inconsistent results) + + https://github.com/rnorth/${project.artifactId} + + + MIT + http://opensource.org/licenses/MIT + + + + + rnorth + Richard North + rich.north@gmail.com + + + + + + org.slf4j + slf4j-api + 1.7.7 + provided + + + junit + junit + 4.12 + test + + + org.mockito + mockito-all + 1.9.5 + test + + + org.slf4j + slf4j-simple + 1.7.7 + test + + + org.rnorth.visible-assertions + visible-assertions + 1.0.5 + test + + + org.jetbrains + annotations + 17.0.0 + + + + + + + maven-compiler-plugin + 3.1 + + 1.8 + 1.8 + + + + maven-scm-plugin + 1.9.4 + + ${project.version} + + + + maven-release-plugin + 2.5.1 + + false + true + + + + maven-source-plugin + 2.4 + + + attach-sources + + jar + + + + + + maven-javadoc-plugin + 2.10.3 + + + attach-javadocs + + jar + + + + + true + public + true +
${project.name}, ${project.version}
+
${project.name}, ${project.version}
+ ${project.name}, ${project.version} +
+
+ + org.apache.maven.plugins + maven-scm-publish-plugin + 1.0-beta-2 + + + publish-javadocs + site-deploy + + publish-scm + + + + + ${project.build.directory}/scmpublish + Publishing javadoc for ${project.artifactId}:${project.version} + ${project.reporting.outputDirectory}/apidocs + true + scm:git:git@github.com:rnorth/${project.artifactId}.git + gh-pages + + +
+
+ + + scm:git:https://github.com/rnorth/${project.artifactId}.git + scm:git:git@github.com:rnorth/${project.artifactId}.git + https://github.com/rnorth/${project.artifactId} + HEAD + + + + + bintray + https://api.bintray.com/maven/richnorth/maven/${project.artifactId} + + +
diff --git a/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom.sha1 b/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom.sha1 new file mode 100644 index 000000000..2e5106c0b --- /dev/null +++ b/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom.sha1 @@ -0,0 +1 @@ +3fe5741e9fdb97f00708d45d849b93a280f5e9d6 \ No newline at end of file diff --git a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/_remote.repositories b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/_remote.repositories new file mode 100644 index 000000000..cfaa5dd0b --- /dev/null +++ b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:39 EDT 2024 +selenium-bom-4.14.1.pom>ohdsi= diff --git a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom new file mode 100644 index 000000000..ce20f8d39 --- /dev/null +++ b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom @@ -0,0 +1,179 @@ + + + + 4.0.0 + + org.seleniumhq.selenium + selenium-bom + 4.14.1 + pom + + org.seleniumhq.selenium:selenium-bom + Selenium automates browsers. That's it! What you do with that power is entirely up to you. + https://selenium.dev/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + https://github.com/SeleniumHQ/selenium/ + scm:git:https://github.com/SeleniumHQ/selenium.git + scm:git:git@github.com:SeleniumHQ/selenium.git + + + + + simon.m.stewart + Simon Stewart + + Owner + + + + barancev + Alexei Barantsev + + Committer + + + + diemol + Diego Molina + + Committer + + + + james.h.evans.jr + Jim Evans + + Committer + + + + theautomatedtester + David Burns + + Committer + + + + titusfortner + Titus Fortner + + Committer + + + + + + + + org.seleniumhq.selenium + selenium-api + 4.14.1 + + + org.seleniumhq.selenium + selenium-chrome-driver + 4.14.1 + + + org.seleniumhq.selenium + selenium-chromium-driver + 4.14.1 + + + org.seleniumhq.selenium + selenium-devtools-v116 + 4.14.1 + + + org.seleniumhq.selenium + selenium-devtools-v117 + 4.14.1 + + + org.seleniumhq.selenium + selenium-devtools-v118 + 4.14.1 + + + org.seleniumhq.selenium + selenium-devtools-v85 + 4.14.1 + + + org.seleniumhq.selenium + selenium-edge-driver + 4.14.1 + + + org.seleniumhq.selenium + selenium-firefox-driver + 4.14.1 + + + org.seleniumhq.selenium + selenium-grid + 4.14.1 + + + org.seleniumhq.selenium + selenium-http + 4.14.1 + + + org.seleniumhq.selenium + selenium-ie-driver + 4.14.1 + + + org.seleniumhq.selenium + selenium-java + 4.14.1 + + + org.seleniumhq.selenium + selenium-json + 4.14.1 + + + org.seleniumhq.selenium + selenium-manager + 4.14.1 + + + org.seleniumhq.selenium + selenium-remote-driver + 4.14.1 + + + org.seleniumhq.selenium + selenium-safari-driver + 4.14.1 + + + org.seleniumhq.selenium + selenium-session-map-jdbc + 4.14.1 + + + org.seleniumhq.selenium + selenium-session-map-redis + 4.14.1 + + + org.seleniumhq.selenium + selenium-support + 4.14.1 + + + + diff --git a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.lastUpdated b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.lastUpdated new file mode 100644 index 000000000..312cc04b8 --- /dev/null +++ b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:39 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.seleniumhq.selenium\:selenium-bom\:pom\:4.14.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139819228 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139819328 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139819757 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139819882 diff --git a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.sha1 b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.sha1 new file mode 100644 index 000000000..8e25d09dd --- /dev/null +++ b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.sha1 @@ -0,0 +1 @@ +35233c4c2f5d377698ae2d50c8e1400ff2df34d7 \ No newline at end of file diff --git a/code/arachne/org/semver4j/semver4j/4.3.0/_remote.repositories b/code/arachne/org/semver4j/semver4j/4.3.0/_remote.repositories new file mode 100644 index 000000000..8b082d54a --- /dev/null +++ b/code/arachne/org/semver4j/semver4j/4.3.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:56 EDT 2024 +semver4j-4.3.0.pom>central= diff --git a/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom b/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom new file mode 100644 index 000000000..9216413e3 --- /dev/null +++ b/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom @@ -0,0 +1,230 @@ + + 4.0.0 + + org.semver4j + semver4j + 4.3.0 + jar + + semver4j + Semantic versioning for Java apps. + https://github.com/semver4j/semver4j + + + + The MIT License + https://opensource.org/licenses/MIT + repo + + + + + + Piotr Olaszewski + piotroo89@gmail.com + + + + + GitHub + https://github.com/semver4j/semver4j/issues + + + + scm:git:git@github.com:semver4j/semver4j.git + scm:git:git@github.com:semver4j/semver4j.git + git@github.com:semver4j/semver4j.git + HEAD + + + + 1.8 + 1.8 + + UTF-8 + + + + + org.junit.jupiter + junit-jupiter + 5.9.2 + test + + + org.assertj + assertj-core + 3.24.2 + test + + + org.mockito + mockito-core + 5.1.1 + test + + + + + ${project.artifactId} + + + + maven-surefire-plugin + 2.22.2 + + + maven-compiler-plugin + 3.11.0 + + 8 + 8 + 8 + 8 + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + org.semver4j + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.5.0 + + + attach-javadocs + + jar + + + + + + org.jacoco + jacoco-maven-plugin + 0.8.8 + + + + prepare-agent + + + + report + test + + report + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + --pinentry-mode + loopback + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + ossrh + https://s01.oss.sonatype.org/ + true + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.2.1 + + config/checkstyle/checkstyle.xml + + + + de.thetaphi + forbiddenapis + 3.4 + + true + + false + + true + + + jdk-unsafe + jdk-deprecated + + jdk-non-portable + + jdk-reflection + + + + + + check + testCheck + + + + + + + + + + ossrh + Nexus Release Repository + https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ + + + ossrh + Sonatype Nexus Snapshots + https://s01.oss.sonatype.org/content/repositories/snapshots/ + + + diff --git a/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom.sha1 b/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom.sha1 new file mode 100644 index 000000000..dbd27eb8b --- /dev/null +++ b/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom.sha1 @@ -0,0 +1 @@ +51e9edd70b151d49fadae57f8bd3045b5c7ac958 \ No newline at end of file diff --git a/code/arachne/org/skyscreamer/jsonassert/1.5.1/_remote.repositories b/code/arachne/org/skyscreamer/jsonassert/1.5.1/_remote.repositories new file mode 100644 index 000000000..c73115448 --- /dev/null +++ b/code/arachne/org/skyscreamer/jsonassert/1.5.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:10 EDT 2024 +jsonassert-1.5.1.pom>central= diff --git a/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom b/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom new file mode 100644 index 000000000..c6d53ffd7 --- /dev/null +++ b/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom @@ -0,0 +1,147 @@ + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + org.skyscreamer + jsonassert + 1.5.1 + jar + + JSONassert + A library to develop RESTful but flexible APIs + https://github.com/skyscreamer/JSONassert + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:git@github.com:skyscreamer/JSONassert.git + scm:git:git@github.com:skyscreamer/JSONassert.git + git@github.com:skyscreamer/JSONassert.git + + + + carterpage + Carter Page + carter@skyscreamer.org + + + cepage + Corby Page + corby@skyscreamer.org + + + sduskis + Solomon Duskis + solomon@skyscreamer.org + + + + + + + com.vaadin.external.google + android-json + 0.0.20131108.vaadin1 + + + junit + junit + 4.13.1 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.1 + + 1.6 + 1.6 + + + + org.apache.maven.plugins + maven-site-plugin + 3.3 + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.5.1 + + + + + + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.3 + + + org.apache.maven.scm + maven-scm-manager-plexus + 1.3 + + + org.kathrynhuxtable.maven.wagon + wagon-gitsite + 0.3.1 + + + + + + + github-project-site + gitsite:git@github.com/skyscreamer/JSONassert.git + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom.sha1 b/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom.sha1 new file mode 100644 index 000000000..7e26dea07 --- /dev/null +++ b/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom.sha1 @@ -0,0 +1 @@ +74dc250fbeda03e4421e22ce85e55576b37844fe \ No newline at end of file diff --git a/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/_remote.repositories b/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/_remote.repositories new file mode 100644 index 000000000..e0f45160e --- /dev/null +++ b/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:15 EDT 2024 +jcl-over-slf4j-2.0.13.pom>central= diff --git a/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom b/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom new file mode 100644 index 000000000..9f6ddb354 --- /dev/null +++ b/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom @@ -0,0 +1,58 @@ + + + + + org.slf4j + slf4j-parent + 2.0.13 + ../parent/pom.xml + + + 4.0.0 + + jcl-over-slf4j + jar + JCL 1.2 implemented over SLF4J + JCL 1.2 implemented over SLF4J + http://www.slf4j.org + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + org.apache.commons.logging + + + + + org.slf4j + slf4j-api + + + org.slf4j + slf4j-jdk14 + test + + + + + + + org.apache.felix + maven-bundle-plugin + + + <_exportcontents>org.apache.commons.logging*;version=${jcl.version};-noimport:=true + + + + + + + diff --git a/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom.sha1 b/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom.sha1 new file mode 100644 index 000000000..6bcbcafc2 --- /dev/null +++ b/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom.sha1 @@ -0,0 +1 @@ +38847aac3e6cff7b762ff7c8c5f028abd20105ce \ No newline at end of file diff --git a/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/_remote.repositories b/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/_remote.repositories new file mode 100644 index 000000000..8cdc9f01b --- /dev/null +++ b/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:51 EDT 2024 +jul-to-slf4j-2.0.13.pom>central= diff --git a/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom b/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom new file mode 100644 index 000000000..5fe756111 --- /dev/null +++ b/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom @@ -0,0 +1,40 @@ + + + + 4.0.0 + + + org.slf4j + slf4j-parent + 2.0.13 + ../parent/pom.xml + + + jul-to-slf4j + + jar + JUL to SLF4J bridge + JUL to SLF4J bridge + + http://www.slf4j.org + + + + org.slf4j + slf4j-api + + + org.slf4j + slf4j-reload4j + ${project.version} + test + + + + + + + + + diff --git a/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom.sha1 b/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom.sha1 new file mode 100644 index 000000000..163b1adb8 --- /dev/null +++ b/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom.sha1 @@ -0,0 +1 @@ +2ede0aee61cae4efda113e4d4110d61976ad0f4b \ No newline at end of file diff --git a/code/arachne/org/slf4j/slf4j-api/2.0.13/_remote.repositories b/code/arachne/org/slf4j/slf4j-api/2.0.13/_remote.repositories new file mode 100644 index 000000000..e0b341430 --- /dev/null +++ b/code/arachne/org/slf4j/slf4j-api/2.0.13/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:48 EDT 2024 +slf4j-api-2.0.13.pom>central= diff --git a/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom b/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom new file mode 100644 index 000000000..f0c819609 --- /dev/null +++ b/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom @@ -0,0 +1,81 @@ + + + + 4.0.0 + + + org.slf4j + slf4j-parent + 2.0.13 + ../parent/pom.xml + + + slf4j-api + + jar + SLF4J API Module + The slf4j API + + http://www.slf4j.org + + + org.slf4j + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + once + plain + false + + **/AllTest.java + **/PackageTest.java + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + bundle-test-jar + package + + test-jar + + + + + + + org.apache.felix + maven-bundle-plugin + + + org.slf4j.spi;version="${range;[===,+);${version_cleanup;${project.version}}}" + + <_exportcontents> + =1.0.0)(!(version>=2.0.0)))", + osgi.serviceloader;filter:="(osgi.serviceloader=org.slf4j.spi.SLF4JServiceProvider)";osgi.serviceloader="org.slf4j.spi.SLF4JServiceProvider" + ]]> + + + + + + + + + diff --git a/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom.sha1 b/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom.sha1 new file mode 100644 index 000000000..559b236ad --- /dev/null +++ b/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom.sha1 @@ -0,0 +1 @@ +cfe027e08f55e8e5b45f84cbabb4e74e8cd915ec \ No newline at end of file diff --git a/code/arachne/org/slf4j/slf4j-bom/2.0.13/_remote.repositories b/code/arachne/org/slf4j/slf4j-bom/2.0.13/_remote.repositories new file mode 100644 index 000000000..22d782e5b --- /dev/null +++ b/code/arachne/org/slf4j/slf4j-bom/2.0.13/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:48 EDT 2024 +slf4j-bom-2.0.13.pom>central= diff --git a/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom b/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom new file mode 100644 index 000000000..a744d2de7 --- /dev/null +++ b/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom @@ -0,0 +1,249 @@ + + + + 4.0.0 + + org.slf4j + slf4j-bom + 2.0.13 + pom + + http://www.slf4j.org + + SLF4J BOM + SLF4J project BOM + + + + MIT License + http://www.opensource.org/licenses/mit-license.php + repo + + + + + https://github.com/qos-ch/slf4j + scm:git:https://github.com/qos-ch/slf4j.git + + + + + + + parent + slf4j-api + slf4j-simple + slf4j-nop + slf4j-jdk14 + slf4j-jdk-platform-logging + slf4j-log4j12 + slf4j-reload4j + slf4j-ext + jcl-over-slf4j + log4j-over-slf4j + jul-to-slf4j + osgi-over-slf4j + integration + slf4j-migrator + + + + + + + org.slf4j + slf4j-api + ${project.version} + + + + org.slf4j + slf4j-simple + ${project.version} + + + + org.slf4j + slf4j-nop + ${project.version} + + + + org.slf4j + slf4j-jdk14 + ${project.version} + + + + + org.slf4j + slf4j-jdk-platform-logging + ${project.version} + + + + org.slf4j + slf4j-log4j12 + ${project.version} + + + + org.slf4j + slf4j-reload4j + ${project.version} + + + + org.slf4j + slf4j-ext + ${project.version} + + + + org.slf4j + jcl-over-slf4j + ${project.version} + + + + org.slf4j + log4j-over-slf4j + ${project.version} + + + + org.slf4j + jul-to-slf4j + ${project.version} + + + + org.slf4j + osgi-over-slf4j + ${project.version} + + + + + + + + + + sonatype-nexus-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + ceki + Ceki Gulcu + ceki@qos.ch + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + true + + slf4j-jdk-platform-logging,slf4j-migrator,osgi-over-slf4j + + true + SLF4J project modules ${project.version} + SLF4J javadoc + + true + + -Xdoclint:none + + + + SLF4J API packages + org.slf4j:org.slf4j.spi:org.slf4j.event:org.slf4j.helpers + + + + slf4j-simple package + org.slf4j.simple + + + + slf4j-nop package + org.slf4j.nop + + + + + slf4j-jdk14 package + org.slf4j.jul + + + + + slf4j-reload4j package + org.slf4j.reload4j + + + + + SLF4J extensions + + org.slf4j.cal10n:org.slf4j.profiler:org.slf4j.ext:org.slf4j.instrumentation:org.slf4j.agent + + + + + Jakarta Commons Logging packages + org.apache.commons.* + + + + java.util.logging (JUL) to SLF4J bridge + org.slf4j.bridge + + + + log4j-over-slf4j redirection + org.apache.log4j:org.apache.log4j.* + + + + + + + + + + + + sign-artifacts + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom.sha1 b/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom.sha1 new file mode 100644 index 000000000..dad3b400b --- /dev/null +++ b/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom.sha1 @@ -0,0 +1 @@ +7154be9a411f51d833e40a654ec8bf738aaa394a \ No newline at end of file diff --git a/code/arachne/org/slf4j/slf4j-parent/2.0.13/_remote.repositories b/code/arachne/org/slf4j/slf4j-parent/2.0.13/_remote.repositories new file mode 100644 index 000000000..4a03f6cea --- /dev/null +++ b/code/arachne/org/slf4j/slf4j-parent/2.0.13/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:48 EDT 2024 +slf4j-parent-2.0.13.pom>central= diff --git a/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom b/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom new file mode 100644 index 000000000..7f8171e9b --- /dev/null +++ b/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom @@ -0,0 +1,397 @@ + + + + 4.0.0 + + + org.slf4j + slf4j-bom + 2.0.13 + ../pom.xml + + + slf4j-parent + pom + SLF4J Parent POM + SLF4J project parent pom.xml file + + + + QOS.ch + http://www.qos.ch + + 2005 + + + + + 2024-04-12T14:20:00Z + 1.7.36 + + 8 + ${jdk.version} + ${jdk.version} + UTF-8 + UTF-8 + UTF-8 + + 0.8.1 + 1.2.22 + 1.2.10 + 1.2 + 4.13.1 + 3.7.1 + 3.10.1 + 3.0.0-M7 + 3.6.3 + 3.2.1 + 3.0.0-M1 + 3.2.0 + 3.1.1 + 5.1.9 + + + + + + junit + junit + ${junit.version} + test + + + + + + + + ch.qos.reload4j + reload4j + ${reload4j.version} + + + + ch.qos.cal10n + cal10n-api + ${cal10n.version} + + + + + + + + + org.apache.maven.wagon + wagon-ssh + 2.10 + + + + + + ${project.basedir}/src/main/resources + true + + + + .. + META-INF + + LICENSE.txt + + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.14 + + + org.codehaus.mojo.signature + java16 + 1.0 + + + + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + + default-compile + + compile + + + ${jdk.version} + ${jdk.version} + + + + + module-compile + compile + + compile + + + 9 + + ${project.basedir}/src/main/java9 + + true + + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + + default-jar + package + + jar + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + true + + + + + + + org.apache.felix + maven-bundle-plugin + ${maven-bundle-plugin.version} + + true + + + ${replacestring;${project.artifactId};-;.} + SLF4J.ORG + <_snapshot/> + <_exportcontents>!META-INF.versions.9,*;-noimport:=true + ${project.description} + ${project.url} + ${maven.compiler.source} + ${maven.compiler.target} + ${project.version} + ${project.artifactId} + true + <_removeheaders>Private-Package,Bundle-SCM, Bundle-Developers, Include-Resource + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + 1 + false + plain + false + + **/AllTest.java + **/PackageTest.java + + + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + package + + jar + + + + + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.0.0 + + + + + + + + skipTests + + true + + + + + javadocjar + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + -Xdoclint:none + false + + **/module-info.java + + + + + + + + + license + + + + com.google.code.maven-license-plugin + maven-license-plugin + +
src/main/licenseHeader.txt
+ false + true + true + + src/**/*.java + + true + true + + 1999 + + + src/main/javadocHeaders.xml + +
+
+
+
+ + + +
+ + + + generate-osgi-service-loader-mediator-entries + + + src/main/resources/META-INF/services/org.slf4j.spi.SLF4JServiceProvider + + + + + + + org.apache.felix + maven-bundle-plugin + + + ="org.slf4j.spi.SLF4JServiceProvider";type=${slf4j.provider.type};effective:=active, + osgi.serviceloader;osgi.serviceloader="org.slf4j.spi.SLF4JServiceProvider";register:="${slf4j.provider.implementation}";type=${slf4j.provider.type} + ]]> + =1.0.0)(!(version>=2.0.0)))" + ]]> + + + + + + + + +
+ + +
diff --git a/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom.sha1 b/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom.sha1 new file mode 100644 index 000000000..a54124b19 --- /dev/null +++ b/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom.sha1 @@ -0,0 +1 @@ +47cc245b4e806907ef2612563e4c124c15f99a44 \ No newline at end of file diff --git a/code/arachne/org/sonatype/oss/oss-parent/7/_remote.repositories b/code/arachne/org/sonatype/oss/oss-parent/7/_remote.repositories new file mode 100644 index 000000000..b2552c31a --- /dev/null +++ b/code/arachne/org/sonatype/oss/oss-parent/7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:35 EDT 2024 +oss-parent-7.pom>ohdsi= diff --git a/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom b/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom new file mode 100644 index 000000000..396395255 --- /dev/null +++ b/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom @@ -0,0 +1,155 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + pom + + Sonatype OSS Parent + http://nexus.sonatype.org/oss-repository-hosting.html + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + + scm:svn:http://svn.sonatype.org/spice/tags/oss-parent-7 + scm:svn:https://svn.sonatype.org/spice/tags/oss-parent-7 + http://svn.sonatype.org/spice/tags/oss-parent-7 + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. + + + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + forked-path + false + -Psonatype-oss-release + + + + + + + + UTF-8 + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + sonatype-oss-release + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.lastUpdated b/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.lastUpdated new file mode 100644 index 000000000..09b76b275 --- /dev/null +++ b/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:35 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.sonatype.oss\:oss-parent\:pom\:7 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139815216 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139815351 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139815496 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139815617 diff --git a/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 b/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 new file mode 100644 index 000000000..800e2841a --- /dev/null +++ b/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 @@ -0,0 +1 @@ +46b8a785b60a2767095b8611613b58577e96d4c9 \ No newline at end of file diff --git a/code/arachne/org/sonatype/oss/oss-parent/9/_remote.repositories b/code/arachne/org/sonatype/oss/oss-parent/9/_remote.repositories new file mode 100644 index 000000000..71512a9d4 --- /dev/null +++ b/code/arachne/org/sonatype/oss/oss-parent/9/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:45 EDT 2024 +oss-parent-9.pom>central= diff --git a/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom b/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom new file mode 100644 index 000000000..cc10b9821 --- /dev/null +++ b/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom @@ -0,0 +1,156 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 9 + pom + + Sonatype OSS Parent + http://nexus.sonatype.org/oss-repository-hosting.html + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + + scm:svn:http://svn.sonatype.org/spice/trunk/oss/oss-parenti-9 + scm:svn:https://svn.sonatype.org/spice/trunk/oss/oss-parent-9 + http://svn.sonatype.org/spice/trunk/oss/oss-parent-9 + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.2 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. + + + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + forked-path + false + ${arguments} -Psonatype-oss-release + + + + + + + + UTF-8 + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + + sonatype-oss-release + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 b/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 new file mode 100644 index 000000000..7e0d2b672 --- /dev/null +++ b/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 @@ -0,0 +1 @@ +e5cdc4d23b86d79c436f16fed20853284e868f65 \ No newline at end of file diff --git a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/_remote.repositories b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/_remote.repositories new file mode 100644 index 000000000..d2ae48e12 --- /dev/null +++ b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:40 EDT 2024 +spring-amqp-bom-3.1.4.pom>ohdsi= diff --git a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom new file mode 100644 index 000000000..75ceeabd5 --- /dev/null +++ b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom @@ -0,0 +1,115 @@ + + + + + + + + 4.0.0 + org.springframework.amqp + spring-amqp-bom + 3.1.4 + pom + Spring for RabbitMQ (Bill of Materials) + Spring for RabbitMQ (Bill of Materials) + https://github.com/spring-projects/spring-amqp + + Spring IO + https://spring.io/projects/spring-amqp + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + artembilan + Artem Bilan + artem.bilan@broadcom.com + + project lead + + + + garyrussell + Gary Russell + github@gprussell.net + + project lead emeritus + + + + sobychacko + Soby Chacko + soby.chacko@broadcom.com + + contributor + + + + dsyer + Dave Syer + david.syer@broadcom.com + + project founder + + + + markfisher + Mark Fisher + mark.fisher@broadcom.com + + project founder + + + + markpollack + Mark Pollack + mark.pollack@broadcom.com + + project founder + + + + + git://github.com/spring-projects/spring-amqp.git + git@github.com:spring-projects/spring-amqp.git + https://github.com/spring-projects/spring-amqp + + + GitHub + https://jira.spring.io/browse/AMQP + + + + + org.springframework.amqp + spring-amqp + 3.1.4 + + + org.springframework.amqp + spring-rabbit + 3.1.4 + + + org.springframework.amqp + spring-rabbit-junit + 3.1.4 + + + org.springframework.amqp + spring-rabbit-stream + 3.1.4 + + + org.springframework.amqp + spring-rabbit-test + 3.1.4 + + + + diff --git a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.lastUpdated b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.lastUpdated new file mode 100644 index 000000000..4e6df7e7a --- /dev/null +++ b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:40 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.amqp\:spring-amqp-bom\:pom\:3.1.4 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139819892 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139819992 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139820160 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139820280 diff --git a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.sha1 b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.sha1 new file mode 100644 index 000000000..7feb24c96 --- /dev/null +++ b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.sha1 @@ -0,0 +1 @@ +a2a47c903546b0a5a8f49874013f0d17ce8abed1 \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/_remote.repositories new file mode 100644 index 000000000..4b92c374e --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:16 EDT 2024 +spring-batch-admin-domain-2.0.0.M1.pom>ohdsi= diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom new file mode 100644 index 000000000..fbabf683f --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom @@ -0,0 +1,97 @@ + + + 4.0.0 + spring-batch-admin-domain + jar + + + spring-batch-admin-parent + org.springframework.batch + 2.0.0.M1 + ../spring-batch-admin-parent + + Domain + + + junit + junit + + + org.springframework + spring-test + + + org.springframework + spring-context-support + + + org.springframework + spring-context + + + org.springframework.batch + spring-batch-core + + + org.springframework + spring-aop + + + commons-logging + commons-logging + + + org.slf4j + slf4j-api + runtime + + + org.slf4j + slf4j-log4j12 + runtime + true + + + log4j + log4j + true + + + com.fasterxml.jackson.core + jackson-databind + + + org.springframework.data + spring-data-commons + + + org.springframework.hateoas + spring-hateoas + + + org.springframework + spring-oxm + + + com.jayway.jsonpath + json-path + test + + + joda-time + joda-time + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.6 + 1.6 + + + + + diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.lastUpdated b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.lastUpdated new file mode 100644 index 000000000..34cada9b1 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:16 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.batch\:spring-batch-admin-domain\:pom\:2.0.0.M1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139856527 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139856532 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139856638 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139856788 +https\://repo1.maven.org/maven2/.lastUpdated=1721139856427 diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.sha1 new file mode 100644 index 000000000..9a1f84359 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.sha1 @@ -0,0 +1 @@ +80f1bbceb513b8b3f60edd6fd8faa57e2356e2a2 \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/_remote.repositories new file mode 100644 index 000000000..77a524e41 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:12 EDT 2024 +spring-batch-admin-manager-2.0.0.M1.pom>ohdsi= diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom new file mode 100644 index 000000000..c359c53f2 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom @@ -0,0 +1,221 @@ + + + 4.0.0 + spring-batch-admin-manager + jar + + + spring-batch-admin-parent + org.springframework.batch + 2.0.0.M1 + ../spring-batch-admin-parent + + Manager + + + junit + junit + + + javax.servlet + javax.servlet-api + + + org.aspectj + aspectjrt + + + org.aspectj + aspectjweaver + + + org.springframework + spring-test + + + org.springframework + spring-context-support + + + org.springframework + spring-context + + + commons-logging + commons-logging + + + + + org.springframework.batch + spring-batch-test + test + + + org.springframework.batch + spring-batch-core + + + org.springframework + spring-jdbc + + + org.springframework + spring-aop + + + org.springframework + spring-web + true + + + org.springframework + spring-webmvc + true + + + org.springframework.batch + spring-batch-integration + + + org.springframework.integration + spring-integration-core + + + org.springframework.integration + spring-integration-jmx + + + org.springframework.integration + spring-integration-http + + + xerces + xercesImpl + + + + + org.springframework.integration + spring-integration-file + + + commons-dbcp + commons-dbcp + + + commons-io + commons-io + + + commons-lang + commons-lang + + + commons-fileupload + commons-fileupload + + + org.slf4j + jcl-over-slf4j + + + org.slf4j + slf4j-api + runtime + + + org.slf4j + slf4j-log4j12 + runtime + true + + + log4j + log4j + true + + + commons-collections + commons-collections + + + org.hsqldb + hsqldb + test + + + org.apache.derby + derby + test + + + com.h2database + h2 + test + + + mysql + mysql-connector-java + test + + + org.freemarker + freemarker + + + org.springframework.batch + spring-batch-admin-resources + ${project.parent.version} + + + com.fasterxml.jackson.core + jackson-databind + + + org.mockito + mockito-all + test + + + org.springframework.data + spring-data-commons + + + org.springframework.hateoas + spring-hateoas + + + org.springframework.plugin + spring-plugin-core + + + org.springframework + spring-oxm + + + com.jayway.jsonpath + json-path + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.6 + 1.6 + + + + org.mortbay.jetty + maven-jetty-plugin + + /steps + + + + + diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.lastUpdated b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.lastUpdated new file mode 100644 index 000000000..cb4962487 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:12 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.batch\:spring-batch-admin-manager\:pom\:2.0.0.M1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139852624 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139852633 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139852807 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139852942 +https\://repo1.maven.org/maven2/.lastUpdated=1721139852486 diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.sha1 new file mode 100644 index 000000000..820abfb76 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.sha1 @@ -0,0 +1 @@ +74e0e41abd560d4810607158d9af469fb7647135 \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/_remote.repositories new file mode 100644 index 000000000..7fb3b554b --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:13 EDT 2024 +spring-batch-admin-parent-2.0.0.M1.pom>ohdsi= diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom new file mode 100644 index 000000000..fcd9d1a48 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom @@ -0,0 +1,656 @@ + + + 4.0.0 + org.springframework.batch + spring-batch-admin-parent + 2.0.0.M1 + Spring Batch Admin Parent + A set of services (Java, JSON) and a UI (webapp) for managing and launching Spring Batch jobs. + http://docs.spring.io/spring-batch-admin + pom + + http://github.com/spring-projects/spring-batch-admin + scm:git:git://github.com/spring-projects/spring-batch-admin.git + scm:git:git://github.com/spring-projects/spring-batch-admin.git + 2.0.0.M1 + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + dsyer + Dave Syer + dsyer@vmware.com + + + mminella + Michael Minella + mminella@vmware.com + + + cschaefer + Chris Schaefer + cschaefer@gopivotal.com + + + + false + 3.0.3.RELEASE + 4.1.2.RELEASE + 4.1.2.RELEASE + 1.1.0.RELEASE + 1.9.1.RELEASE + 0.16.0.RELEASE + 1.7.7 + + + + strict + + false + + + + fast + + true + true + + + + staging + + + staging + file:///${user.dir}/target/staging + + + staging + file:///${user.dir}/target/staging + + + staging + file:///${user.dir}/target/staging + + + + + central + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + dist + + + + maven-javadoc-plugin + + + javadoc + package + + jar + + + + + + maven-source-plugin + + + attach-sources + + jar + + + + + + + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.maven.plugins + maven-antrun-plugin + [1.0,) + + run + + + + + + + + + + + + maven-site-plugin + 2.0 + + + org.apache.maven.doxia + doxia-module-confluence + 1.0 + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + org.apache.ant + ant + 1.7.0 + + + org.apache.ant + ant-trax + 1.7.0 + + + org.apache.ant + ant-apache-regexp + 1.7.0 + + + foundrylogic.vpp + vpp + 2.2.1 + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.6 + 1.6 + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/*Tests.java + + + **/Abstract*.java + + junit:junit + + + + + + + + maven-jxr-plugin + + true + + + + maven-surefire-report-plugin + + true + + + + maven-project-info-reports-plugin + 2.1 + + + maven-javadoc-plugin + + true + + + + + javadoc + + + + + + + + + + org.aspectj + aspectjrt + 1.8.2 + + + org.aspectj + aspectjweaver + 1.8.2 + runtime + + + junit + junit + 4.11 + test + + + com.fasterxml.jackson.core + jackson-databind + 2.4.2 + compile + + + org.hibernate + hibernate-core + 4.3.6.Final + + + cglib + cglib + + + asm + asm + + + asm + asm-attrs + + + javax.transaction + jta + + + + + org.hibernate + hibernate-entitymanager + 4.3.6.Final + + + edu.oswego.cs.concurrent + edu.oswego.cs.dl.util.concurrent + + + + + org.hibernate + hibernate-annotations + 4.3.6.Final + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + runtime + + + org.slf4j + slf4j-log4j12 + ${slf4j.version} + runtime + + + commons-lang + commons-lang + 2.6 + + + commons-logging + commons-logging + 1.2 + + + commons-io + commons-io + 2.4 + + + commons-collections + commons-collections + 3.2.1 + + + commons-dbcp + commons-dbcp + runtime + 1.4 + + + commons-fileupload + commons-fileupload + runtime + 1.3.1 + + + log4j + log4j + 1.2.17 + runtime + + + com.h2database + h2 + 1.3.176 + test + + + org.hsqldb + hsqldb + 2.3.2 + runtime + + + mysql + mysql-connector-java + 5.1.32 + runtime + + + org.apache.derby + derby + 10.10.2.0 + test + + + com.thoughtworks.xstream + xstream + 1.4.7 + + + org.codehaus.jettison + jettison + 1.2 + runtime + + + javax.servlet + javax.servlet-api + 3.0.1 + provided + + + org.freemarker + freemarker + 2.3.20 + + + javax.servlet + jstl + 1.2 + + + org.springframework.security + spring-security-taglibs + 3.2.5.RELEASE + + + org.springframework + spring-support + + + + + org.springframework.batch + spring-batch-infrastructure + ${spring.batch.version} + + + org.springframework.batch + spring-batch-integration + ${spring.batch.version} + + + org.springframework.batch + spring-batch-core + ${spring.batch.version} + + + org.springframework.batch + spring-batch-test + ${spring.batch.version} + + + org.springframework + spring-aop + ${spring.framework.version} + + + org.springframework + spring-beans + ${spring.framework.version} + + + org.springframework + spring-context + ${spring.framework.version} + + + commons-logging + commons-logging + + + + + org.springframework + spring-context-support + ${spring.framework.version} + + + quartz + quartz + + + javax.transaction + jta + + + + + org.springframework + spring-core + ${spring.framework.version} + + + commons-logging + commons-logging + + + + + org.springframework + spring-expression + ${spring.framework.version} + + + org.springframework + spring-jdbc + ${spring.framework.version} + + + org.springframework + spring-jms + ${spring.framework.version} + + + org.springframework + spring-orm + ${spring.framework.version} + + + org.springframework + spring-test + ${spring.framework.version} + test + + + org.springframework + spring-tx + ${spring.framework.version} + + + org.springframework + spring-oxm + ${spring.framework.version} + + + org.springframework + spring-web + ${spring.framework.version} + + + org.springframework + spring-webmvc + ${spring.framework.version} + + + org.springframework.integration + spring-integration-core + ${spring.integration.version} + compile + + + org.springframework.integration + spring-integration-jmx + ${spring.integration.version} + runtime + + + org.springframework.integration + spring-integration-http + ${spring.integration.version} + compile + + + org.springframework.integration + spring-integration-file + ${spring.integration.version} + compile + + + org.springframework.integration + spring-integration-jms + ${spring.integration.version} + compile + + + org.springframework.data + spring-data-commons + ${spring.data.version} + + + org.springframework.hateoas + spring-hateoas + ${spring.hateoas.version} + + + org.springframework.plugin + spring-plugin-core + 1.1.0.RELEASE + + + org.springframework + spring-oxm + ${spring.framework.version} + + + org.codehaus.castor + castor-xml + 1.3.3 + + + org.mockito + mockito-all + 1.9.5 + test + + + joda-time + joda-time + 2.5 + + + com.jayway.jsonpath + json-path + 1.2.0 + + + + + + static.springframework.org + scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-batch-admin/trunk + + + spring-release + Spring Release Repository + s3://maven.springframework.org/release + + + spring-snapshot + Spring Snapshot Repository + s3://maven.springframework.org/snapshot + + + + diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.lastUpdated b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.lastUpdated new file mode 100644 index 000000000..128d2fa18 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:13 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.batch\:spring-batch-admin-parent\:pom\:2.0.0.M1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139853165 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139853171 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139853321 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139853492 +https\://repo1.maven.org/maven2/.lastUpdated=1721139853064 diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.sha1 new file mode 100644 index 000000000..175552fc0 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.sha1 @@ -0,0 +1 @@ +cb4b8e40dd4cf6d33c91b1fe61e17d11d0c0ab0e \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/_remote.repositories new file mode 100644 index 000000000..72172397d --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:16 EDT 2024 +spring-batch-admin-resources-2.0.0.M1.pom>ohdsi= diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom new file mode 100644 index 000000000..8fa63d3e6 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom @@ -0,0 +1,125 @@ + + + 4.0.0 + Extensible UI framework and basic styles and layout for Spring Batch Admin console. + + org.springframework.batch + spring-batch-admin-parent + 2.0.0.M1 + ../spring-batch-admin-parent + + spring-batch-admin-resources + jar + Resources + + + junit + junit + + + javax.servlet + javax.servlet-api + true + + + org.freemarker + freemarker + true + + + org.springframework + spring-test + + + org.springframework + spring-aop + + + org.springframework + spring-web + true + + + org.springframework + spring-webmvc + true + + + commons-dbcp + commons-dbcp + + + log4j + log4j + true + + + org.slf4j + jcl-over-slf4j + + + org.slf4j + slf4j-api + + + org.slf4j + slf4j-log4j12 + + + commons-io + commons-io + + + commons-collections + commons-collections + + + javax.servlet + jstl + true + + + org.springframework + spring-context-support + + + org.springframework.security + spring-security-taglibs + true + + + org.springframework.data + spring-data-commons + + + org.springframework.hateoas + spring-hateoas + + + com.fasterxml.jackson.core + jackson-databind + + + org.mockito + mockito-all + test + + + org.springframework.batch + spring-batch-admin-domain + ${project.parent.version} + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.6 + 1.6 + + + + + diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.lastUpdated b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.lastUpdated new file mode 100644 index 000000000..7b1f5ed73 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:16 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.batch\:spring-batch-admin-resources\:pom\:2.0.0.M1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repo1.maven.org/maven2/.error= +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139855918 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139855926 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139856064 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139856217 +https\://repo1.maven.org/maven2/.lastUpdated=1721139855817 diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.sha1 new file mode 100644 index 000000000..2d0343295 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.sha1 @@ -0,0 +1 @@ +7216e7ff3ed181251fbad87d6c7cd8e89901ca7e \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/_remote.repositories new file mode 100644 index 000000000..7c389776d --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:40 EDT 2024 +spring-batch-bom-5.1.1.pom>ohdsi= diff --git a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom new file mode 100644 index 000000000..1a5802e62 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom @@ -0,0 +1,104 @@ + + + 4.0.0 + org.springframework.batch + spring-batch-bom + 5.1.1 + pom + Spring Batch BOM + Bill of materials for Spring Batch modules + https://projects.spring.io/spring-batch + + Spring + https://spring.io + + + + Apache 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + dsyer + Dave Syer + dsyer@vmware.com + + + nebhale + Ben Hale + bhale@vmware.com + + + lward + Lucas Ward + + + robokaso + Robert Kasanicky + robokaso@gmail.com + + + trisberg + Thomas Risberg + trisberg@vmware.com + + + dhgarrette + Dan Garrette + dhgarrette@gmail.com + + + mminella + Michael Minella + mminella@vmware.com + + Project Lead + + + + chrisjs + Chris Schaefer + cschaefer@vmware.com + + + fmbenhassine + Mahmoud Ben Hassine + mbenhassine@vmware.com + + Project Lead + + + + + git://github.com/spring-projects/spring-batch.git + git@github.com:spring-projects/spring-batch.git + https://github.com/spring-projects/spring-batch + + + + + org.springframework.batch + spring-batch-core + 5.1.1 + + + org.springframework.batch + spring-batch-infrastructure + 5.1.1 + + + org.springframework.batch + spring-batch-integration + 5.1.1 + + + org.springframework.batch + spring-batch-test + 5.1.1 + + + + diff --git a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.lastUpdated b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.lastUpdated new file mode 100644 index 000000000..6c018ce58 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:40 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.batch\:spring-batch-bom\:pom\:5.1.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139820289 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139820396 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139820526 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139820657 diff --git a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.sha1 new file mode 100644 index 000000000..69ec67ba4 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.sha1 @@ -0,0 +1 @@ +6ed9e5db22ab303d242e6fef8010ea7db2541f17 \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/_remote.repositories new file mode 100644 index 000000000..cbf4f52cc --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:53 EDT 2024 +spring-batch-core-5.1.1.pom>central= diff --git a/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom b/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom new file mode 100644 index 000000000..f5ac366cb --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom @@ -0,0 +1,170 @@ + + + 4.0.0 + org.springframework.batch + spring-batch-core + 5.1.1 + Spring Batch Core + Core domain for batch processing, expressing a domain of Jobs, Steps, Chunks, etc + https://projects.spring.io/spring-batch + + Spring + https://spring.io + + + + Apache 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + dsyer + Dave Syer + dsyer@vmware.com + + + nebhale + Ben Hale + bhale@vmware.com + + + lward + Lucas Ward + + + robokaso + Robert Kasanicky + robokaso@gmail.com + + + trisberg + Thomas Risberg + trisberg@vmware.com + + + dhgarrette + Dan Garrette + dhgarrette@gmail.com + + + mminella + Michael Minella + mminella@vmware.com + + Project Lead + + + + chrisjs + Chris Schaefer + cschaefer@vmware.com + + + fmbenhassine + Mahmoud Ben Hassine + mbenhassine@vmware.com + + Project Lead + + + + + git://github.com/spring-projects/spring-batch.git + git@github.com:spring-projects/spring-batch.git + https://github.com/spring-projects/spring-batch + + + + org.springframework.batch + spring-batch-infrastructure + 5.1.1 + compile + + + org.springframework + spring-aop + 6.1.4 + compile + + + org.springframework + spring-beans + 6.1.4 + compile + + + org.springframework + spring-context + 6.1.4 + compile + + + org.springframework + spring-tx + 6.1.4 + compile + + + org.springframework + spring-jdbc + 6.1.4 + compile + + + io.micrometer + micrometer-core + 1.12.3 + compile + + + io.micrometer + micrometer-observation + 1.12.3 + compile + + + com.fasterxml.jackson.core + jackson-databind + 2.15.4 + compile + true + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.15.4 + compile + true + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + compile + true + + + org.aspectj + aspectjrt + 1.9.21.1 + compile + true + + + org.aspectj + aspectjweaver + 1.9.21.1 + compile + true + + + com.google.code.findbugs + jsr305 + 3.0.2 + provided + + + diff --git a/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom.sha1 new file mode 100644 index 000000000..c1c27a134 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom.sha1 @@ -0,0 +1 @@ +68941a8a8e267ed73cfd3a825476b4ef80f96e37 \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/_remote.repositories new file mode 100644 index 000000000..1b7af506b --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:53 EDT 2024 +spring-batch-infrastructure-5.1.1.pom>central= diff --git a/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom b/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom new file mode 100644 index 000000000..570d1c436 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom @@ -0,0 +1,312 @@ + + + 4.0.0 + org.springframework.batch + spring-batch-infrastructure + 5.1.1 + Spring Batch Infrastructure + The Spring Batch Infrastructure is a set of + low-level components, interfaces and tools for batch processing + applications and optimisations + https://projects.spring.io/spring-batch + + Spring + https://spring.io + + + + Apache 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + dsyer + Dave Syer + dsyer@vmware.com + + + nebhale + Ben Hale + bhale@vmware.com + + + lward + Lucas Ward + + + robokaso + Robert Kasanicky + robokaso@gmail.com + + + trisberg + Thomas Risberg + trisberg@vmware.com + + + dhgarrette + Dan Garrette + dhgarrette@gmail.com + + + mminella + Michael Minella + mminella@vmware.com + + Project Lead + + + + chrisjs + Chris Schaefer + cschaefer@vmware.com + + + fmbenhassine + Mahmoud Ben Hassine + mbenhassine@vmware.com + + Project Lead + + + + + git://github.com/spring-projects/spring-batch.git + git@github.com:spring-projects/spring-batch.git + https://github.com/spring-projects/spring-batch + + + + org.springframework + spring-core + 6.1.4 + compile + + + org.springframework.retry + spring-retry + 2.0.5 + compile + + + org.springframework + spring-context-support + 6.1.4 + compile + true + + + org.springframework + spring-jdbc + 6.1.4 + compile + true + + + org.springframework + spring-orm + 6.1.4 + compile + true + + + org.springframework + spring-oxm + 6.1.4 + compile + true + + + org.springframework + spring-jms + 6.1.4 + compile + true + + + org.neo4j + neo4j-ogm-core + 4.0.9 + compile + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + + + true + + + org.springframework.kafka + spring-kafka + 3.1.2 + compile + true + + + org.springframework.amqp + spring-amqp + 3.1.2 + compile + true + + + org.apache.avro + avro + 1.11.3 + compile + + + com.fasterxml.jackson.core + jackson-core + + + org.slf4j + slf4j-api + + + true + + + com.google.code.gson + gson + 2.10.1 + compile + true + + + com.fasterxml.jackson.core + jackson-databind + 2.15.4 + compile + true + + + org.hibernate.orm + hibernate-core + 6.3.2.Final + compile + true + + + jakarta.mail + jakarta.mail-api + 2.1.2 + compile + true + + + jakarta.jms + jakarta.jms-api + 3.1.0 + compile + true + + + jakarta.persistence + jakarta.persistence-api + 3.1.0 + compile + true + + + org.springframework.data + spring-data-commons + 3.2.3 + compile + + + org.slf4j + slf4j-api + + + true + + + org.springframework.data + spring-data-mongodb + 4.2.3 + compile + + + org.slf4j + slf4j-api + + + true + + + org.springframework.data + spring-data-jpa + 3.2.3 + compile + + + org.slf4j + slf4j-api + + + true + + + org.springframework.data + spring-data-redis + 3.2.3 + compile + + + org.slf4j + slf4j-api + + + true + + + org.mongodb + mongodb-driver-sync + 4.11.1 + compile + true + + + org.springframework.ldap + spring-ldap-core + 3.2.2 + compile + + + org.slf4j + slf4j-api + + + true + + + org.springframework.ldap + spring-ldap-ldif-core + 3.2.2 + compile + true + + + jakarta.validation + jakarta.validation-api + 3.0.2 + compile + true + + + com.google.code.findbugs + jsr305 + 3.0.2 + provided + + + diff --git a/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom.sha1 new file mode 100644 index 000000000..08685afd7 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom.sha1 @@ -0,0 +1 @@ +ae574bd86acd0bfb1015552ef3e167b0e185694e \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/_remote.repositories new file mode 100644 index 000000000..aa2466fd6 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:13 EDT 2024 +spring-batch-integration-5.1.1.pom>central= diff --git a/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom b/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom new file mode 100644 index 000000000..27d981b9e --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom @@ -0,0 +1,133 @@ + + + 4.0.0 + org.springframework.batch + spring-batch-integration + 5.1.1 + Spring Batch Integration + Implementation of Spring Batch scaling techniques with Spring integration + https://projects.spring.io/spring-batch + + Spring + https://spring.io + + + + Apache 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + dsyer + Dave Syer + dsyer@vmware.com + + + nebhale + Ben Hale + bhale@vmware.com + + + lward + Lucas Ward + + + robokaso + Robert Kasanicky + robokaso@gmail.com + + + trisberg + Thomas Risberg + trisberg@vmware.com + + + dhgarrette + Dan Garrette + dhgarrette@gmail.com + + + mminella + Michael Minella + mminella@vmware.com + + Project Lead + + + + chrisjs + Chris Schaefer + cschaefer@vmware.com + + + fmbenhassine + Mahmoud Ben Hassine + mbenhassine@vmware.com + + Project Lead + + + + + git://github.com/spring-projects/spring-batch.git + git@github.com:spring-projects/spring-batch.git + https://github.com/spring-projects/spring-batch + + + + org.springframework.batch + spring-batch-core + 5.1.1 + compile + + + org.springframework.integration + spring-integration-core + 6.2.2 + compile + + + org.springframework + spring-messaging + 6.1.4 + compile + + + org.springframework + spring-jms + 6.1.4 + compile + true + + + org.springframework.integration + spring-integration-jms + 6.2.2 + compile + true + + + org.springframework.integration + spring-integration-jdbc + 6.2.2 + compile + true + + + jakarta.jms + jakarta.jms-api + 3.1.0 + compile + true + + + com.google.code.findbugs + jsr305 + 3.0.2 + provided + + + diff --git a/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom.sha1 new file mode 100644 index 000000000..e724dc0d5 --- /dev/null +++ b/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom.sha1 @@ -0,0 +1 @@ +4af139771f5d0714db1025d75f6e37f94d79f8e4 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/_remote.repositories new file mode 100644 index 000000000..f250d7af4 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:48 EDT 2024 +spring-boot-autoconfigure-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom new file mode 100644 index 000000000..8da1387cd --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom @@ -0,0 +1,50 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-autoconfigure + 3.2.5 + spring-boot-autoconfigure + Spring Boot AutoConfigure + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot + 3.2.5 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom.sha1 new file mode 100644 index 000000000..e2aee8348 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom.sha1 @@ -0,0 +1 @@ +53b2f4cd54c38eb0f379d7ee14d830c9d8a6fee6 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/_remote.repositories new file mode 100644 index 000000000..a3f696f62 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:13 EDT 2024 +spring-boot-configuration-processor-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom new file mode 100644 index 000000000..5ec00af4b --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom @@ -0,0 +1,43 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-configuration-processor + 3.2.5 + spring-boot-configuration-processor + Spring Boot Configuration Annotation Processor + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + diff --git a/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom.sha1 new file mode 100644 index 000000000..71c814739 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom.sha1 @@ -0,0 +1 @@ +90c256e79f96db476430d65b1f329259dd3bdd68 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/_remote.repositories new file mode 100644 index 000000000..f1bcd9c39 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:45 EDT 2024 +spring-boot-dependencies-2.3.0.RELEASE.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom b/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom new file mode 100644 index 000000000..5b989af9a --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom @@ -0,0 +1,3248 @@ + + + 4.0.0 + org.springframework.boot + spring-boot-dependencies + 2.3.0.RELEASE + pom + spring-boot-dependencies + Spring Boot Dependencies + https://spring.io/projects/spring-boot + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + 5.15.12 + 2.7.7 + 1.9.80 + 2.12.0 + 1.9.5 + 3.16.1 + 4.0.6 + 4.0.2 + 2.1.4 + 3.1.0 + 1.10.10 + 2.8.2 + 4.6.1 + 1.5.1 + 1.14 + 2.7.0 + 3.10 + 1.6 + 2.8.0 + 3.0.4 + 11.5.0.0 + 1.0.9.RELEASE + 10.14.2.0 + 4.1.7 + 2.10.6 + 3.8.1 + 7.6.2 + 2.2.0 + 1.6.0 + 1.2.2 + 6.4.1 + 2.3.30 + 3.0.1 + 3.0.3 + 2.3.3 + 2.5.11 + 2.8.6 + 1.4.200 + 2.2 + 3.12.7 + 1.3.2 + 5.4.15.Final + 6.1.5.Final + 3.4.5 + 2.5.0 + 2.40.0 + 4.1.4 + 4.5.12 + 4.4.13 + 10.1.8.Final + 2.18 + 2.11.0 + 1.2.2 + 1.3.5 + 2.0.3 + 1.1.6 + 1.0.2 + 1.6.5 + 2.2.3 + 4.0.3 + 1.2.7 + 1.3.3 + 2.0.2 + 1.1.2 + 2.1.6 + 2.3.3 + 1.4.2 + 2.3.3 + 3.1.2 + 1.2.0 + 1.3.2 + 1.1.1 + 2.3.1 + 2.3.1 + 2.0.1 + 1.1.4 + 1.0 + 1.6.2 + 1.0.3 + 2.2 + 1.3 + 2.0.1.Final + 1.1 + 1.2.0 + 3.0.8 + 3.4.1.Final + 7.6.0.Final + 2.0.6 + 3.3.0 + 2.30.1 + 8.5.54 + 2.2.0.v201112011158 + 1.1.2 + 9.4.28.v20200408 + 1.15 + 1.2.5 + 1.6.2 + 3.13.2 + 2.4.0 + 1.5.0 + 1.2 + 1.3.1 + 4.13 + 5.6.2 + 2.5.0 + 1.3.72 + 1.3.6 + 5.3.0.RELEASE + 3.8.9 + 2.13.2 + 1.2.3 + 1.18.12 + 2.6.0 + 1.8 + 3.3.0 + 3.1.0 + 3.8.1 + 3.1.2 + 2.8.2 + 3.0.0-M3 + 2.22.2 + 3.2.0 + 2.5.2 + 3.2.1 + 3.2.0 + 3.2.0 + 3.1.0 + 3.2.2 + 3.2.1 + 2.22.2 + 3.2.3 + 1.5.1 + 1.9.13 + 3.3.3 + 4.0.3 + 7.4.1.jre8 + 8.0.20 + 1.9.22 + 3.2.11 + 4.1.49.Final + 2.0.30.Final + 1.1.0 + 7.1.1 + 19.3.0.0 + 3.14.8 + 1.1.1 + 42.2.12 + 0.9.0 + 2.3.2 + 4.3.1 + Arabba-SR3 + 5.9.0 + 1.0.3 + Dysprosium-SR7 + 3.3.0 + 1.0.0 + 1.3.8 + 1.2.1 + 2.2.19 + 2.3.0.RELEASE + 1.5.2 + 3.141.59 + 2.40.0 + 4.4.8 + 4.0.1 + 1.7.30 + 1.26 + 8.5.1 + 2.2.6.RELEASE + 4.2.2.RELEASE + Neumann-RELEASE + 5.2.6.RELEASE + 1.1.0.RELEASE + 5.3.0.RELEASE + 2.5.0.RELEASE + 2.3.3.RELEASE + 2.0.4.RELEASE + 1.2.5.RELEASE + 5.3.2.RELEASE + Dragonfruit-RELEASE + 3.0.9.RELEASE + 3.31.1 + 1.6.5 + 3.0.11.RELEASE + 2.0.1 + 3.0.4.RELEASE + 3.0.4.RELEASE + 2.4.1 + 9.0.35 + 4.0.14 + 2.1.0.Final + 2.7 + 3325375 + 0.45 + 1.6.3 + 1.0.2 + 2.7.0 + + + + + org.apache.activemq + activemq-amqp + ${activemq.version} + + + org.apache.activemq + activemq-blueprint + ${activemq.version} + + + org.apache.activemq + activemq-broker + ${activemq.version} + + + org.apache.activemq + activemq-camel + ${activemq.version} + + + org.apache.activemq + activemq-client + ${activemq.version} + + + org.apache.activemq + activemq-console + ${activemq.version} + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-http + ${activemq.version} + + + org.apache.activemq + activemq-jaas + ${activemq.version} + + + org.apache.activemq + activemq-jdbc-store + ${activemq.version} + + + org.apache.activemq + activemq-jms-pool + ${activemq.version} + + + org.apache.activemq + activemq-kahadb-store + ${activemq.version} + + + org.apache.activemq + activemq-karaf + ${activemq.version} + + + org.apache.activemq + activemq-leveldb-store + ${activemq.version} + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-log4j-appender + ${activemq.version} + + + org.apache.activemq + activemq-mqtt + ${activemq.version} + + + org.apache.activemq + activemq-openwire-generator + ${activemq.version} + + + org.apache.activemq + activemq-openwire-legacy + ${activemq.version} + + + org.apache.activemq + activemq-osgi + ${activemq.version} + + + org.apache.activemq + activemq-partition + ${activemq.version} + + + org.apache.activemq + activemq-pool + ${activemq.version} + + + org.apache.activemq + activemq-ra + ${activemq.version} + + + org.apache.activemq + activemq-run + ${activemq.version} + + + org.apache.activemq + activemq-runtime-config + ${activemq.version} + + + org.apache.activemq + activemq-shiro + ${activemq.version} + + + org.apache.activemq + activemq-spring + ${activemq.version} + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-stomp + ${activemq.version} + + + org.apache.activemq + activemq-web + ${activemq.version} + + + antlr + antlr + ${antlr2.version} + + + com.google.appengine + appengine-api-1.0-sdk + ${appengine-sdk.version} + + + org.apache.activemq + artemis-amqp-protocol + ${artemis.version} + + + org.apache.activemq + artemis-commons + ${artemis.version} + + + commons-logging + commons-logging + + + + + org.apache.activemq + artemis-core-client + ${artemis.version} + + + org.apache.geronimo.specs + geronimo-json_1.0_spec + + + + + org.apache.activemq + artemis-jms-client + ${artemis.version} + + + org.apache.geronimo.specs + geronimo-json_1.0_spec + + + + + org.apache.activemq + artemis-jms-server + ${artemis.version} + + + org.apache.geronimo.specs + geronimo-json_1.0_spec + + + + + org.apache.activemq + artemis-journal + ${artemis.version} + + + org.apache.activemq + artemis-selector + ${artemis.version} + + + org.apache.activemq + artemis-server + ${artemis.version} + + + commons-logging + commons-logging + + + org.apache.geronimo.specs + geronimo-json_1.0_spec + + + + + org.apache.activemq + artemis-service-extensions + ${artemis.version} + + + org.aspectj + aspectjrt + ${aspectj.version} + + + org.aspectj + aspectjtools + ${aspectj.version} + + + org.aspectj + aspectjweaver + ${aspectj.version} + + + org.assertj + assertj-core + ${assertj.version} + + + com.atomikos + transactions-jdbc + ${atomikos.version} + + + com.atomikos + transactions-jms + ${atomikos.version} + + + com.atomikos + transactions-jta + ${atomikos.version} + + + org.awaitility + awaitility + ${awaitility.version} + + + org.awaitility + awaitility-groovy + ${awaitility.version} + + + org.awaitility + awaitility-kotlin + ${awaitility.version} + + + org.awaitility + awaitility-scala + ${awaitility.version} + + + org.codehaus.btm + btm + ${bitronix.version} + + + net.bytebuddy + byte-buddy + ${byte-buddy.version} + + + net.bytebuddy + byte-buddy-agent + ${byte-buddy.version} + + + com.github.ben-manes.caffeine + caffeine + ${caffeine.version} + + + com.github.ben-manes.caffeine + guava + ${caffeine.version} + + + com.github.ben-manes.caffeine + jcache + ${caffeine.version} + + + com.github.ben-manes.caffeine + simulator + ${caffeine.version} + + + com.datastax.oss + java-driver-core + ${cassandra-driver.version} + + + org.slf4j + jcl-over-slf4j + + + + + com.fasterxml + classmate + ${classmate.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + org.apache.commons + commons-dbcp2 + ${commons-dbcp2.version} + + + commons-logging + commons-logging + + + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + commons-pool + commons-pool + ${commons-pool.version} + + + org.apache.commons + commons-pool2 + ${commons-pool2.version} + + + com.couchbase.client + java-client + ${couchbase-client.version} + + + com.ibm.db2 + jcc + ${db2-jdbc.version} + + + io.spring.gradle + dependency-management-plugin + ${dependency-management-plugin.version} + + + org.apache.derby + derby + ${derby.version} + + + org.apache.derby + derbyclient + ${derby.version} + + + net.sf.ehcache + ehcache + ${ehcache.version} + + + org.ehcache + ehcache + ${ehcache3.version} + + + org.ehcache + ehcache-clustered + ${ehcache3.version} + + + org.ehcache + ehcache-transactions + ${ehcache3.version} + + + org.elasticsearch + elasticsearch + ${elasticsearch.version} + + + org.elasticsearch.client + transport + ${elasticsearch.version} + + + org.elasticsearch.client + elasticsearch-rest-client + ${elasticsearch.version} + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-high-level-client + ${elasticsearch.version} + + + org.elasticsearch.distribution.integ-test-zip + elasticsearch + ${elasticsearch.version} + + + org.elasticsearch.plugin + transport-netty4-client + ${elasticsearch.version} + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + ${embedded-mongo.version} + + + org.flywaydb + flyway-core + ${flyway.version} + + + org.freemarker + freemarker + ${freemarker.version} + + + org.glassfish + jakarta.el + ${glassfish-el.version} + + + org.glassfish.jaxb + codemodel + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + codemodel-annotation-compiler + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + jaxb-jxc + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + jaxb-runtime + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + jaxb-xjc + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + txw2 + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + txwc2 + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + xsom + ${glassfish-jaxb.version} + + + org.codehaus.groovy + groovy + ${groovy.version} + + + org.codehaus.groovy + groovy-ant + ${groovy.version} + + + org.codehaus.groovy + groovy-backports-compat23 + ${groovy.version} + + + org.codehaus.groovy + groovy-bsf + ${groovy.version} + + + org.codehaus.groovy + groovy-cli-commons + ${groovy.version} + + + org.codehaus.groovy + groovy-cli-picocli + ${groovy.version} + + + org.codehaus.groovy + groovy-console + ${groovy.version} + + + org.codehaus.groovy + groovy-datetime + ${groovy.version} + + + org.codehaus.groovy + groovy-dateutil + ${groovy.version} + + + org.codehaus.groovy + groovy-docgenerator + ${groovy.version} + + + org.codehaus.groovy + groovy-groovydoc + ${groovy.version} + + + org.codehaus.groovy + groovy-groovysh + ${groovy.version} + + + org.codehaus.groovy + groovy-jaxb + ${groovy.version} + + + org.codehaus.groovy + groovy-jmx + ${groovy.version} + + + org.codehaus.groovy + groovy-json + ${groovy.version} + + + org.codehaus.groovy + groovy-json-direct + ${groovy.version} + + + org.codehaus.groovy + groovy-jsr223 + ${groovy.version} + + + org.codehaus.groovy + groovy-macro + ${groovy.version} + + + org.codehaus.groovy + groovy-nio + ${groovy.version} + + + org.codehaus.groovy + groovy-servlet + ${groovy.version} + + + org.codehaus.groovy + groovy-sql + ${groovy.version} + + + org.codehaus.groovy + groovy-swing + ${groovy.version} + + + org.codehaus.groovy + groovy-templates + ${groovy.version} + + + org.codehaus.groovy + groovy-test + ${groovy.version} + + + org.codehaus.groovy + groovy-test-junit5 + ${groovy.version} + + + org.codehaus.groovy + groovy-testng + ${groovy.version} + + + org.codehaus.groovy + groovy-xml + ${groovy.version} + + + com.google.code.gson + gson + ${gson.version} + + + com.h2database + h2 + ${h2.version} + + + org.hamcrest + hamcrest + ${hamcrest.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + org.hamcrest + hamcrest-library + ${hamcrest.version} + + + com.hazelcast + hazelcast + ${hazelcast.version} + + + com.hazelcast + hazelcast-client + ${hazelcast.version} + + + com.hazelcast + hazelcast-spring + ${hazelcast.version} + + + com.hazelcast + hazelcast-hibernate52 + ${hazelcast-hibernate5.version} + + + com.hazelcast + hazelcast-hibernate53 + ${hazelcast-hibernate5.version} + + + org.hibernate + hibernate-c3p0 + ${hibernate.version} + + + org.hibernate + hibernate-core + ${hibernate.version} + + + org.hibernate + hibernate-ehcache + ${hibernate.version} + + + org.hibernate + hibernate-entitymanager + ${hibernate.version} + + + org.hibernate + hibernate-envers + ${hibernate.version} + + + org.hibernate + hibernate-hikaricp + ${hibernate.version} + + + org.hibernate + hibernate-java8 + ${hibernate.version} + + + org.hibernate + hibernate-jcache + ${hibernate.version} + + + org.hibernate + hibernate-jpamodelgen + ${hibernate.version} + + + org.hibernate + hibernate-proxool + ${hibernate.version} + + + org.hibernate + hibernate-spatial + ${hibernate.version} + + + org.hibernate + hibernate-testing + ${hibernate.version} + + + org.hibernate + hibernate-vibur + ${hibernate.version} + + + org.hibernate.validator + hibernate-validator + ${hibernate-validator.version} + + + org.hibernate.validator + hibernate-validator-annotation-processor + ${hibernate-validator.version} + + + com.zaxxer + HikariCP + ${hikaricp.version} + + + org.hsqldb + hsqldb + ${hsqldb.version} + + + net.sourceforge.htmlunit + htmlunit + ${htmlunit.version} + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpasyncclient + ${httpasyncclient.version} + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + fluent-hc + ${httpclient.version} + + + org.apache.httpcomponents + httpclient + ${httpclient.version} + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpclient-cache + ${httpclient.version} + + + org.apache.httpcomponents + httpclient-osgi + ${httpclient.version} + + + org.apache.httpcomponents + httpclient-win + ${httpclient.version} + + + org.apache.httpcomponents + httpmime + ${httpclient.version} + + + org.apache.httpcomponents + httpcore + ${httpcore.version} + + + org.apache.httpcomponents + httpcore-nio + ${httpcore.version} + + + org.infinispan + infinispan-api + ${infinispan.version} + + + org.infinispan + infinispan-cachestore-jdbc + ${infinispan.version} + + + org.infinispan + infinispan-cachestore-jpa + ${infinispan.version} + + + org.infinispan + infinispan-cachestore-remote + ${infinispan.version} + + + org.infinispan + infinispan-cachestore-rest + ${infinispan.version} + + + org.infinispan + infinispan-cachestore-rocksdb + ${infinispan.version} + + + org.infinispan + infinispan-cdi-common + ${infinispan.version} + + + org.infinispan + infinispan-cdi-embedded + ${infinispan.version} + + + org.infinispan + infinispan-cdi-remote + ${infinispan.version} + + + org.infinispan + infinispan-client-hotrod + ${infinispan.version} + + + org.infinispan + infinispan-client-rest + ${infinispan.version} + + + org.infinispan + infinispan-clustered-counter + ${infinispan.version} + + + org.infinispan + infinispan-clustered-lock + ${infinispan.version} + + + org.infinispan + infinispan-commons + ${infinispan.version} + + + org.infinispan + infinispan-component-annotations + ${infinispan.version} + + + org.infinispan + infinispan-core + ${infinispan.version} + + + org.infinispan + infinispan-directory-provider + ${infinispan.version} + + + org.infinispan + infinispan-hibernate-cache-v53 + ${infinispan.version} + + + org.infinispan + infinispan-jboss-marshalling + ${infinispan.version} + + + org.infinispan + infinispan-jcache + ${infinispan.version} + + + org.infinispan + infinispan-jcache-commons + ${infinispan.version} + + + org.infinispan + infinispan-jcache-remote + ${infinispan.version} + + + org.infinispan + infinispan-key-value-store-client + ${infinispan.version} + + + org.infinispan + infinispan-lucene-directory + ${infinispan.version} + + + org.infinispan + infinispan-objectfilter + ${infinispan.version} + + + org.infinispan + infinispan-osgi + ${infinispan.version} + + + org.infinispan + infinispan-persistence-soft-index + ${infinispan.version} + + + org.infinispan + infinispan-query + ${infinispan.version} + + + org.infinispan + infinispan-query-core + ${infinispan.version} + + + org.infinispan + infinispan-query-dsl + ${infinispan.version} + + + org.infinispan + infinispan-remote-query-client + ${infinispan.version} + + + org.infinispan + infinispan-remote-query-server + ${infinispan.version} + + + org.infinispan + infinispan-scripting + ${infinispan.version} + + + org.infinispan + infinispan-server-core + ${infinispan.version} + + + org.infinispan + infinispan-server-hotrod + ${infinispan.version} + + + org.infinispan + infinispan-server-memcached + ${infinispan.version} + + + org.infinispan + infinispan-server-rest + ${infinispan.version} + + + org.infinispan + infinispan-server-router + ${infinispan.version} + + + org.infinispan + infinispan-spring5-common + ${infinispan.version} + + + org.infinispan + infinispan-spring5-embedded + ${infinispan.version} + + + org.infinispan + infinispan-spring5-remote + ${infinispan.version} + + + org.infinispan + infinispan-tasks + ${infinispan.version} + + + org.infinispan + infinispan-tasks-api + ${infinispan.version} + + + org.infinispan + infinispan-tools + ${infinispan.version} + + + org.influxdb + influxdb-java + ${influxdb-java.version} + + + com.sun.activation + jakarta.activation + ${jakarta-activation.version} + + + jakarta.activation + jakarta.activation-api + ${jakarta-activation.version} + + + jakarta.annotation + jakarta.annotation-api + ${jakarta-annotation.version} + + + jakarta.jms + jakarta.jms-api + ${jakarta-jms.version} + + + jakarta.json + jakarta.json-api + ${jakarta-json.version} + + + jakarta.json.bind + jakarta.json.bind-api + ${jakarta-json-bind.version} + + + jakarta.mail + jakarta.mail-api + ${jakarta-mail.version} + + + jakarta.persistence + jakarta.persistence-api + ${jakarta-persistence.version} + + + jakarta.servlet + jakarta.servlet-api + ${jakarta-servlet.version} + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + ${jakarta-servlet-jsp-jstl.version} + + + jakarta.transaction + jakarta.transaction-api + ${jakarta-transaction.version} + + + jakarta.validation + jakarta.validation-api + ${jakarta-validation.version} + + + jakarta.websocket + jakarta.websocket-api + ${jakarta-websocket.version} + + + jakarta.ws.rs + jakarta.ws.rs-api + ${jakarta-ws-rs.version} + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jakarta-xml-bind.version} + + + jakarta.xml.soap + jakarta.xml.soap-api + ${jakarta-xml-soap.version} + + + jakarta.xml.ws + jakarta.xml.ws-api + ${jakarta-xml-ws.version} + + + org.codehaus.janino + commons-compiler + ${janino.version} + + + org.codehaus.janino + commons-compiler-jdk + ${janino.version} + + + org.codehaus.janino + janino + ${janino.version} + + + javax.activation + javax.activation-api + ${javax-activation.version} + + + javax.annotation + javax.annotation-api + ${javax-annotation.version} + + + javax.cache + cache-api + ${javax-cache.version} + + + javax.xml.bind + jaxb-api + ${javax-jaxb.version} + + + javax.xml.ws + jaxws-api + ${javax-jaxws.version} + + + javax.jms + javax.jms-api + ${javax-jms.version} + + + javax.json + javax.json-api + ${javax-json.version} + + + javax.json.bind + javax.json.bind-api + ${javax-jsonb.version} + + + javax.mail + javax.mail-api + ${javax-mail.version} + + + javax.money + money-api + ${javax-money.version} + + + javax.persistence + javax.persistence-api + ${javax-persistence.version} + + + javax.transaction + javax.transaction-api + ${javax-transaction.version} + + + javax.validation + validation-api + ${javax-validation.version} + + + javax.websocket + javax.websocket-api + ${javax-websocket.version} + + + jaxen + jaxen + ${jaxen.version} + + + org.firebirdsql.jdbc + jaybird-jdk17 + ${jaybird.version} + + + org.firebirdsql.jdbc + jaybird-jdk18 + ${jaybird.version} + + + org.jboss.logging + jboss-logging + ${jboss-logging.version} + + + org.jboss + jboss-transaction-spi + ${jboss-transaction-spi.version} + + + org.jdom + jdom2 + ${jdom2.version} + + + redis.clients + jedis + ${jedis.version} + + + org.mortbay.jasper + apache-el + ${jetty-el.version} + + + org.eclipse.jetty.orbit + javax.servlet.jsp + ${jetty-jsp.version} + + + org.eclipse.jetty + jetty-reactive-httpclient + ${jetty-reactive-httpclient.version} + + + com.samskivert + jmustache + ${jmustache.version} + + + org.apache.johnzon + johnzon-core + ${johnzon.version} + + + org.apache.johnzon + johnzon-jaxrs + ${johnzon.version} + + + org.apache.johnzon + johnzon-jsonb + ${johnzon.version} + + + org.apache.johnzon + johnzon-jsonb-extras + ${johnzon.version} + + + org.apache.johnzon + johnzon-jsonschema + ${johnzon.version} + + + org.apache.johnzon + johnzon-mapper + ${johnzon.version} + + + org.apache.johnzon + johnzon-websocket + ${johnzon.version} + + + org.jolokia + jolokia-core + ${jolokia.version} + + + org.jooq + jooq + ${jooq.version} + + + org.jooq + jooq-meta + ${jooq.version} + + + org.jooq + jooq-codegen + ${jooq.version} + + + com.jayway.jsonpath + json-path + ${json-path.version} + + + com.jayway.jsonpath + json-path-assert + ${json-path.version} + + + org.skyscreamer + jsonassert + ${jsonassert.version} + + + javax.servlet + jstl + ${jstl.version} + + + net.sourceforge.jtds + jtds + ${jtds.version} + + + junit + junit + ${junit.version} + + + org.apache.kafka + connect-api + ${kafka.version} + + + org.apache.kafka + connect-basic-auth-extension + ${kafka.version} + + + org.apache.kafka + connect-file + ${kafka.version} + + + org.apache.kafka + connect-json + ${kafka.version} + + + org.apache.kafka + connect-runtime + ${kafka.version} + + + org.apache.kafka + connect-transforms + ${kafka.version} + + + org.apache.kafka + kafka-clients + ${kafka.version} + + + org.apache.kafka + kafka-log4j-appender + ${kafka.version} + + + org.apache.kafka + kafka-streams + ${kafka.version} + + + org.apache.kafka + kafka-streams-scala_2.11 + ${kafka.version} + + + org.apache.kafka + kafka-streams-scala_2.12 + ${kafka.version} + + + org.apache.kafka + kafka-streams-scala_2.13 + ${kafka.version} + + + org.apache.kafka + kafka-streams-test-utils + ${kafka.version} + + + org.apache.kafka + kafka-tools + ${kafka.version} + + + org.apache.kafka + kafka_2.11 + ${kafka.version} + + + org.apache.kafka + kafka_2.12 + ${kafka.version} + + + org.apache.kafka + kafka_2.13 + ${kafka.version} + + + io.lettuce + lettuce-core + ${lettuce.version} + + + org.liquibase + liquibase-core + ${liquibase.version} + + + ch.qos.logback + logback-classic + + + + + org.apache.logging.log4j + log4j-to-slf4j + ${log4j2.version} + + + ch.qos.logback + logback-access + ${logback.version} + + + ch.qos.logback + logback-classic + ${logback.version} + + + ch.qos.logback + logback-core + ${logback.version} + + + org.projectlombok + lombok + ${lombok.version} + + + org.mariadb.jdbc + mariadb-java-client + ${mariadb.version} + + + io.micrometer + micrometer-registry-stackdriver + ${micrometer.version} + + + javax.annotation + javax.annotation-api + + + + + org.jvnet.mimepull + mimepull + ${mimepull.version} + + + org.mockito + mockito-core + ${mockito.version} + + + org.mockito + mockito-inline + ${mockito.version} + + + org.mockito + mockito-junit-jupiter + ${mockito.version} + + + org.mongodb + bson + ${mongodb.version} + + + org.mongodb + mongodb-driver-core + ${mongodb.version} + + + org.mongodb + mongodb-driver-legacy + ${mongodb.version} + + + org.mongodb + mongodb-driver-reactivestreams + ${mongodb.version} + + + org.mongodb + mongodb-driver-sync + ${mongodb.version} + + + com.microsoft.sqlserver + mssql-jdbc + ${mssql-jdbc.version} + + + mysql + mysql-connector-java + ${mysql.version} + + + com.google.protobuf + protobuf-java + + + + + net.sourceforge.nekohtml + nekohtml + ${nekohtml.version} + + + org.neo4j + neo4j-ogm-api + ${neo4j-ogm.version} + + + org.neo4j + neo4j-ogm-bolt-driver + ${neo4j-ogm.version} + + + org.neo4j + neo4j-ogm-bolt-native-types + ${neo4j-ogm.version} + + + org.neo4j + neo4j-ogm-core + ${neo4j-ogm.version} + + + org.neo4j + neo4j-ogm-embedded-driver + ${neo4j-ogm.version} + + + org.neo4j + neo4j-ogm-embedded-native-types + ${neo4j-ogm.version} + + + org.neo4j + neo4j-ogm-http-driver + ${neo4j-ogm.version} + + + io.netty + netty-tcnative-boringssl-static + ${netty-tcnative.version} + + + org.synchronoss.cloud + nio-multipart-parser + ${nio-multipart-parser.version} + + + com.nimbusds + oauth2-oidc-sdk + ${oauth2-oidc-sdk.version} + + + com.oracle.ojdbc + dms + ${ojdbc.version} + + + com.oracle.ojdbc + ojdbc10 + ${ojdbc.version} + + + com.oracle.ojdbc + ojdbc10_g + ${ojdbc.version} + + + com.oracle.ojdbc + ojdbc10dms + ${ojdbc.version} + + + com.oracle.ojdbc + ojdbc10dms_g + ${ojdbc.version} + + + com.oracle.ojdbc + ojdbc8 + ${ojdbc.version} + + + com.oracle.ojdbc + ojdbc8_g + ${ojdbc.version} + + + com.oracle.ojdbc + ojdbc8dms + ${ojdbc.version} + + + com.oracle.ojdbc + ojdbc8dms_g + ${ojdbc.version} + + + com.oracle.ojdbc + ons + ${ojdbc.version} + + + com.oracle.ojdbc + oraclepki + ${ojdbc.version} + + + com.oracle.ojdbc + orai18n + ${ojdbc.version} + + + com.oracle.ojdbc + osdt_cert + ${ojdbc.version} + + + com.oracle.ojdbc + osdt_core + ${ojdbc.version} + + + com.oracle.ojdbc + simplefan + ${ojdbc.version} + + + com.oracle.ojdbc + ucp + ${ojdbc.version} + + + com.oracle.ojdbc + xdb + ${ojdbc.version} + + + com.oracle.ojdbc + xmlparserv2 + ${ojdbc.version} + + + com.squareup.okhttp3 + logging-interceptor + ${okhttp3.version} + + + com.squareup.okhttp3 + mockwebserver + ${okhttp3.version} + + + com.squareup.okhttp3 + okcurl + ${okhttp3.version} + + + com.squareup.okhttp3 + okhttp + ${okhttp3.version} + + + com.squareup.okhttp3 + okhttp-dnsoverhttps + ${okhttp3.version} + + + com.squareup.okhttp3 + okhttp-sse + ${okhttp3.version} + + + com.squareup.okhttp3 + okhttp-testing-support + ${okhttp3.version} + + + com.squareup.okhttp3 + okhttp-tls + ${okhttp3.version} + + + com.squareup.okhttp3 + okhttp-urlconnection + ${okhttp3.version} + + + org.messaginghub + pooled-jms + ${pooled-jms.version} + + + org.postgresql + postgresql + ${postgresql.version} + + + io.prometheus + simpleclient_pushgateway + ${prometheus-pushgateway.version} + + + org.quartz-scheduler + quartz + ${quartz.version} + + + com.mchange + c3p0 + + + com.zaxxer + * + + + + + org.quartz-scheduler + quartz-jobs + ${quartz.version} + + + com.querydsl + querydsl-apt + ${querydsl.version} + + + com.querydsl + querydsl-collections + ${querydsl.version} + + + com.querydsl + querydsl-core + ${querydsl.version} + + + com.querydsl + querydsl-jpa + ${querydsl.version} + + + com.querydsl + querydsl-mongodb + ${querydsl.version} + + + org.mongodb + mongo-java-driver + + + + + com.rabbitmq + amqp-client + ${rabbit-amqp-client.version} + + + org.reactivestreams + reactive-streams + ${reactive-streams.version} + + + io.rest-assured + json-path + ${rest-assured.version} + + + io.rest-assured + json-schema-validator + ${rest-assured.version} + + + io.rest-assured + rest-assured + ${rest-assured.version} + + + io.rest-assured + scala-support + ${rest-assured.version} + + + io.rest-assured + spring-mock-mvc + ${rest-assured.version} + + + io.rest-assured + spring-web-test-client + ${rest-assured.version} + + + io.rest-assured + xml-path + ${rest-assured.version} + + + io.reactivex + rxjava + ${rxjava.version} + + + io.reactivex + rxjava-reactive-streams + ${rxjava-adapter.version} + + + io.reactivex.rxjava2 + rxjava + ${rxjava2.version} + + + org.springframework.boot + spring-boot + ${spring-boot.version} + + + org.springframework.boot + spring-boot-test + ${spring-boot.version} + + + org.springframework.boot + spring-boot-test-autoconfigure + ${spring-boot.version} + + + org.springframework.boot + spring-boot-actuator + ${spring-boot.version} + + + org.springframework.boot + spring-boot-actuator-autoconfigure + ${spring-boot.version} + + + org.springframework.boot + spring-boot-autoconfigure + ${spring-boot.version} + + + org.springframework.boot + spring-boot-autoconfigure-processor + ${spring-boot.version} + + + org.springframework.boot + spring-boot-buildpack-platform + ${spring-boot.version} + + + org.springframework.boot + spring-boot-configuration-metadata + ${spring-boot.version} + + + org.springframework.boot + spring-boot-configuration-processor + ${spring-boot.version} + + + org.springframework.boot + spring-boot-devtools + ${spring-boot.version} + + + org.springframework.boot + spring-boot-jarmode-layertools + ${spring-boot.version} + + + org.springframework.boot + spring-boot-loader + ${spring-boot.version} + + + org.springframework.boot + spring-boot-loader-tools + ${spring-boot.version} + + + org.springframework.boot + spring-boot-properties-migrator + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-activemq + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-actuator + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-amqp + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-aop + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-artemis + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-batch + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-cache + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-cassandra + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-cassandra-reactive + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-couchbase + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-couchbase-reactive + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-jdbc + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-jpa + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-ldap + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-mongodb + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-mongodb-reactive + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-r2dbc + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-redis + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-redis-reactive + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-neo4j + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-rest + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-data-solr + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-freemarker + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-groovy-templates + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-hateoas + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-integration + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-jdbc + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-jersey + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-jetty + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-jooq + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-json + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-jta-atomikos + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-jta-bitronix + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-log4j2 + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-logging + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-mail + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-mustache + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-oauth2-client + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-quartz + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-reactor-netty + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-rsocket + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-security + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-test + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-thymeleaf + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-tomcat + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-undertow + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-validation + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-web + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-webflux + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-websocket + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-web-services + ${spring-boot.version} + + + com.sun.xml.messaging.saaj + saaj-impl + ${saaj-impl.version} + + + org.seleniumhq.selenium + selenium-api + ${selenium.version} + + + org.seleniumhq.selenium + selenium-chrome-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-edge-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-firefox-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-ie-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-java + ${selenium.version} + + + org.seleniumhq.selenium + selenium-opera-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-remote-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-safari-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-support + ${selenium.version} + + + org.seleniumhq.selenium + htmlunit-driver + ${selenium-htmlunit.version} + + + com.sendgrid + sendgrid-java + ${sendgrid.version} + + + javax.servlet + javax.servlet-api + ${servlet-api.version} + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + org.slf4j + jul-to-slf4j + ${slf4j.version} + + + org.slf4j + log4j-over-slf4j + ${slf4j.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + slf4j-ext + ${slf4j.version} + + + org.slf4j + slf4j-jcl + ${slf4j.version} + + + org.slf4j + slf4j-jdk14 + ${slf4j.version} + + + org.slf4j + slf4j-log4j12 + ${slf4j.version} + + + org.slf4j + slf4j-nop + ${slf4j.version} + + + org.slf4j + slf4j-simple + ${slf4j.version} + + + org.yaml + snakeyaml + ${snakeyaml.version} + + + org.apache.solr + solr-analysis-extras + ${solr.version} + + + org.apache.solr + solr-analytics + ${solr.version} + + + org.apache.solr + solr-cell + ${solr.version} + + + org.apache.solr + solr-clustering + ${solr.version} + + + org.apache.solr + solr-core + ${solr.version} + + + org.apache.solr + solr-dataimporthandler + ${solr.version} + + + org.apache.solr + solr-dataimporthandler-extras + ${solr.version} + + + org.apache.solr + solr-langid + ${solr.version} + + + org.apache.solr + solr-ltr + ${solr.version} + + + org.apache.solr + solr-solrj + ${solr.version} + + + org.slf4j + jcl-over-slf4j + + + + + org.apache.solr + solr-test-framework + ${solr.version} + + + org.apache.solr + solr-velocity + ${solr.version} + + + org.springframework.amqp + spring-amqp + ${spring-amqp.version} + + + org.springframework.amqp + spring-rabbit + ${spring-amqp.version} + + + org.springframework.amqp + spring-rabbit-junit + ${spring-amqp.version} + + + org.springframework.amqp + spring-rabbit-test + ${spring-amqp.version} + + + org.springframework.batch + spring-batch-core + ${spring-batch.version} + + + org.springframework.batch + spring-batch-infrastructure + ${spring-batch.version} + + + org.springframework.batch + spring-batch-integration + ${spring-batch.version} + + + org.springframework.batch + spring-batch-test + ${spring-batch.version} + + + org.springframework.hateoas + spring-hateoas + ${spring-hateoas.version} + + + org.springframework.kafka + spring-kafka + ${spring-kafka.version} + + + org.springframework.kafka + spring-kafka-test + ${spring-kafka.version} + + + org.springframework.ldap + spring-ldap-core + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-core-tiger + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-ldif-batch + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-ldif-core + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-odm + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-test + ${spring-ldap.version} + + + org.springframework.restdocs + spring-restdocs-asciidoctor + ${spring-restdocs.version} + + + org.springframework.restdocs + spring-restdocs-core + ${spring-restdocs.version} + + + org.springframework.restdocs + spring-restdocs-mockmvc + ${spring-restdocs.version} + + + org.springframework.restdocs + spring-restdocs-restassured + ${spring-restdocs.version} + + + org.springframework.restdocs + spring-restdocs-webtestclient + ${spring-restdocs.version} + + + org.springframework.retry + spring-retry + ${spring-retry.version} + + + org.springframework.ws + spring-ws-core + ${spring-ws.version} + + + org.springframework.ws + spring-ws-security + ${spring-ws.version} + + + org.springframework.ws + spring-ws-support + ${spring-ws.version} + + + org.springframework.ws + spring-ws-test + ${spring-ws.version} + + + org.springframework.ws + spring-xml + ${spring-ws.version} + + + org.xerial + sqlite-jdbc + ${sqlite-jdbc.version} + + + com.sun.mail + jakarta.mail + ${sun-mail.version} + + + org.thymeleaf + thymeleaf + ${thymeleaf.version} + + + org.thymeleaf + thymeleaf-spring5 + ${thymeleaf.version} + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + ${thymeleaf-extras-data-attribute.version} + + + org.thymeleaf.extras + thymeleaf-extras-java8time + ${thymeleaf-extras-java8time.version} + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + ${thymeleaf-extras-springsecurity.version} + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + ${thymeleaf-layout-dialect.version} + + + org.apache.tomcat + tomcat-annotations-api + ${tomcat.version} + + + org.apache.tomcat + tomcat-jdbc + ${tomcat.version} + + + org.apache.tomcat + tomcat-jsp-api + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-core + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-el + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-jasper + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-websocket + ${tomcat.version} + + + com.unboundid + unboundid-ldapsdk + ${unboundid-ldapsdk.version} + + + io.undertow + undertow-core + ${undertow.version} + + + io.undertow + undertow-servlet + ${undertow.version} + + + io.undertow + undertow-websockets-jsr + ${undertow.version} + + + org.webjars + hal-browser + ${webjars-hal-browser.version} + + + org.webjars + webjars-locator-core + ${webjars-locator-core.version} + + + wsdl4j + wsdl4j + ${wsdl4j.version} + + + org.xmlunit + xmlunit-assertj + ${xmlunit2.version} + + + org.xmlunit + xmlunit-core + ${xmlunit2.version} + + + org.xmlunit + xmlunit-legacy + ${xmlunit2.version} + + + org.xmlunit + xmlunit-matchers + ${xmlunit2.version} + + + org.xmlunit + xmlunit-placeholders + ${xmlunit2.version} + + + com.datastax.oss + java-driver-bom + ${cassandra-driver.version} + pom + import + + + io.dropwizard.metrics + metrics-bom + ${dropwizard-metrics.version} + pom + import + + + com.fasterxml.jackson + jackson-bom + ${jackson-bom.version} + pom + import + + + org.glassfish.jersey + jersey-bom + ${jersey.version} + pom + import + + + org.eclipse.jetty + jetty-bom + ${jetty.version} + pom + import + + + org.junit + junit-bom + ${junit-jupiter.version} + pom + import + + + org.jetbrains.kotlin + kotlin-bom + ${kotlin.version} + pom + import + + + org.jetbrains.kotlinx + kotlinx-coroutines-bom + ${kotlin-coroutines.version} + pom + import + + + org.apache.logging.log4j + log4j-bom + ${log4j2.version} + pom + import + + + io.micrometer + micrometer-bom + ${micrometer.version} + pom + import + + + io.netty + netty-bom + ${netty.version} + pom + import + + + io.r2dbc + r2dbc-bom + ${r2dbc-bom.version} + pom + import + + + io.projectreactor + reactor-bom + ${reactor-bom.version} + pom + import + + + io.rsocket + rsocket-bom + ${rsocket.version} + pom + import + + + org.springframework.data + spring-data-releasetrain + ${spring-data-releasetrain.version} + pom + import + + + org.springframework + spring-framework-bom + ${spring-framework.version} + pom + import + + + org.springframework.integration + spring-integration-bom + ${spring-integration.version} + pom + import + + + org.springframework.security + spring-security-bom + ${spring-security.version} + pom + import + + + org.springframework.session + spring-session-bom + ${spring-session-bom.version} + pom + import + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + ${build-helper-maven-plugin.version} + + + org.codehaus.mojo + exec-maven-plugin + ${exec-maven-plugin.version} + + + org.codehaus.mojo + flatten-maven-plugin + ${flatten-maven-plugin.version} + + + org.flywaydb + flyway-maven-plugin + ${flyway.version} + + + pl.project13.maven + git-commit-id-plugin + ${git-commit-id-plugin.version} + + + org.apache.johnzon + johnzon-maven-plugin + ${johnzon.version} + + + org.jooq + jooq-codegen-maven + ${jooq.version} + + + org.jetbrains.kotlin + kotlin-maven-plugin + ${kotlin.version} + + + org.apache.maven.plugins + maven-antrun-plugin + ${maven-antrun-plugin.version} + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + org.apache.maven.plugins + maven-clean-plugin + ${maven-clean-plugin.version} + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + org.apache.maven.plugins + maven-dependency-plugin + ${maven-dependency-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${maven-enforcer-plugin.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${maven-failsafe-plugin.version} + + + org.apache.maven.plugins + maven-help-plugin + ${maven-help-plugin.version} + + + org.apache.maven.plugins + maven-install-plugin + ${maven-install-plugin.version} + + + org.apache.maven.plugins + maven-invoker-plugin + ${maven-invoker-plugin.version} + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + org.apache.maven.plugins + maven-resources-plugin + ${maven-resources-plugin.version} + + + org.apache.maven.plugins + maven-shade-plugin + ${maven-shade-plugin.version} + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + org.apache.maven.plugins + maven-war-plugin + ${maven-war-plugin.version} + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot.version} + + + org.codehaus.mojo + versions-maven-plugin + ${versions-maven-plugin.version} + + + org.codehaus.mojo + xml-maven-plugin + ${xml-maven-plugin.version} + + + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom.sha1 new file mode 100644 index 000000000..d5ed49726 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom.sha1 @@ -0,0 +1 @@ +a42af67dd8f7ca06a86ee1105c7d8831085d538b \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/_remote.repositories new file mode 100644 index 000000000..e63b8987c --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:20 EDT 2024 +spring-boot-dependencies-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom new file mode 100644 index 000000000..d26598d6a --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom @@ -0,0 +1,2951 @@ + + + 4.0.0 + org.springframework.boot + spring-boot-dependencies + 3.2.5 + pom + spring-boot-dependencies + Spring Boot Dependencies + https://spring.io/projects/spring-boot + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + https://github.com/spring-projects/spring-boot + + + 5.18.4 + 2.0.3 + 2.31.2 + 1.9.22 + 3.24.2 + 4.2.1 + 5.16.0 + 3.4.0 + 1.14.13 + 2.6.1.Final + 3.1.8 + 4.17.0 + 1.6.0 + 1.16.1 + 2.10.0 + 3.13.0 + 1.6 + 2.12.0 + 3.4.11 + 1.4.0 + 11.5.9.0 + 1.1.4 + 10.16.1.1 + 4.2.25 + 3.10.8 + 8.10.4 + 9.22.3 + 2.3.32 + 6.0.0 + 4.0.5 + 3.0.1 + 21.4 + 4.0.21 + 2.10.1 + 2.2.224 + 2.2 + 5.3.7 + 6.4.4.Final + 8.0.1.Final + 5.0.1 + 2.7.2 + 2.70.0 + 4.1.5 + 5.2.3 + 4.4.16 + 5.2.4 + 14.0.27.Final + 2.23 + 2.15.4 + 2.1.3 + 2.1.1 + 3.1.0 + 2.1.3 + 3.0.1 + 2.1.3 + 1.1.4 + 3.1.0 + 6.0.0 + 3.0.0 + 2.0.1 + 3.0.2 + 2.1.1 + 3.1.0 + 4.0.2 + 3.0.1 + 4.0.1 + 3.1.12 + 1.1.1 + 1.1 + 2.0.0 + 5.0.4.java11 + 3.5.3.Final + 2.0.6.1 + 5.0.2 + 3.1.6 + 4.0.3 + 12.0.8 + 1.15 + 3.18.14 + 2.9.0 + 2.5.1 + 1.5.1 + 1.3.1 + 4.13.2 + 5.10.2 + 3.6.2 + 1.9.23 + 1.7.3 + 1.6.3 + 6.3.2.RELEASE + 4.24.0 + 2.21.1 + 1.4.14 + 1.18.32 + 3.3.3 + 3.1.0 + 3.6.0 + 3.3.2 + 3.11.0 + 3.6.1 + 3.1.1 + 3.4.1 + 3.1.2 + 3.4.0 + 3.1.1 + 3.6.1 + 3.3.0 + 3.6.3 + 3.3.1 + 3.5.2 + 3.3.1 + 3.1.2 + 3.4.0 + 1.12.5 + 1.2.5 + 5.7.0 + 4.11.2 + 12.4.2.jre11 + 8.3.0 + 0.9.28 + 1.9.22 + 5.19.0 + 4.1.109.Final + 4.12.0 + 1.31.0 + 21.9.0.0 + 1.1.1 + 3.1.5 + 42.6.2 + 0.16.0 + 3.1.3 + 0.5.4 + 2.3.2 + 5.0.0 + 1.0.0.RELEASE + 1.1.4 + 1.0.2.RELEASE + 1.0.6 + 1.0.1.RELEASE + 1.0.5.RELEASE + 1.1.4.RELEASE + 1.0.0.RELEASE + 5.19.0 + 0.14.0 + 1.0.4 + 2023.0.5 + 5.3.2 + 1.1.3 + 3.1.8 + 3.0.3 + 4.14.1 + 4.13.0 + 4.9.3 + 2.0.13 + 2.2 + 3.1.4 + 1.2.4 + 5.1.1 + 2023.1.5 + 6.1.6 + 1.2.6 + 2.2.2 + 6.2.4 + 3.1.4 + 3.2.3 + 1.0.5 + 3.0.1 + 2.0.5 + 6.2.4 + 3.2.2 + 4.0.10 + 3.43.2.0 + 1.19.7 + 3.1.2.RELEASE + 2.0.1 + 3.1.2.RELEASE + 3.3.0 + 10.1.20 + 6.0.11 + 2.3.12.Final + 2.16.2 + 0.55 + 1.6.3 + 1.1.0 + 2.9.1 + 3.0.3 + + + + + org.apache.activemq + activemq-amqp + ${activemq.version} + + + org.apache.activemq + activemq-blueprint + ${activemq.version} + + + org.apache.activemq + activemq-broker + ${activemq.version} + + + org.apache.activemq + activemq-client + ${activemq.version} + + + org.apache.activemq + activemq-client-jakarta + ${activemq.version} + + + org.apache.activemq + activemq-console + ${activemq.version} + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-http + ${activemq.version} + + + org.apache.activemq + activemq-jaas + ${activemq.version} + + + org.apache.activemq + activemq-jdbc-store + ${activemq.version} + + + org.apache.activemq + activemq-jms-pool + ${activemq.version} + + + org.apache.activemq + activemq-kahadb-store + ${activemq.version} + + + org.apache.activemq + activemq-karaf + ${activemq.version} + + + org.apache.activemq + activemq-log4j-appender + ${activemq.version} + + + org.apache.activemq + activemq-mqtt + ${activemq.version} + + + org.apache.activemq + activemq-openwire-generator + ${activemq.version} + + + org.apache.activemq + activemq-openwire-legacy + ${activemq.version} + + + org.apache.activemq + activemq-osgi + ${activemq.version} + + + org.apache.activemq + activemq-partition + ${activemq.version} + + + org.apache.activemq + activemq-pool + ${activemq.version} + + + org.apache.activemq + activemq-ra + ${activemq.version} + + + org.apache.activemq + activemq-run + ${activemq.version} + + + org.apache.activemq + activemq-runtime-config + ${activemq.version} + + + org.apache.activemq + activemq-shiro + ${activemq.version} + + + org.apache.activemq + activemq-spring + ${activemq.version} + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-stomp + ${activemq.version} + + + org.apache.activemq + activemq-web + ${activemq.version} + + + org.eclipse.angus + angus-core + ${angus-mail.version} + + + org.eclipse.angus + angus-mail + ${angus-mail.version} + + + org.eclipse.angus + dsn + ${angus-mail.version} + + + org.eclipse.angus + gimap + ${angus-mail.version} + + + org.eclipse.angus + imap + ${angus-mail.version} + + + org.eclipse.angus + jakarta.mail + ${angus-mail.version} + + + org.eclipse.angus + logging-mailhandler + ${angus-mail.version} + + + org.eclipse.angus + pop3 + ${angus-mail.version} + + + org.eclipse.angus + smtp + ${angus-mail.version} + + + org.apache.activemq + artemis-amqp-protocol + ${artemis.version} + + + org.apache.activemq + artemis-commons + ${artemis.version} + + + org.apache.activemq + artemis-core-client + ${artemis.version} + + + org.apache.activemq + artemis-jakarta-client + ${artemis.version} + + + org.apache.activemq + artemis-jakarta-server + ${artemis.version} + + + org.apache.activemq + artemis-jakarta-service-extensions + ${artemis.version} + + + org.apache.activemq + artemis-jdbc-store + ${artemis.version} + + + org.apache.activemq + artemis-journal + ${artemis.version} + + + org.apache.activemq + artemis-quorum-api + ${artemis.version} + + + org.apache.activemq + artemis-selector + ${artemis.version} + + + org.apache.activemq + artemis-server + ${artemis.version} + + + org.apache.activemq + artemis-service-extensions + ${artemis.version} + + + org.aspectj + aspectjrt + ${aspectj.version} + + + org.aspectj + aspectjtools + ${aspectj.version} + + + org.aspectj + aspectjweaver + ${aspectj.version} + + + org.awaitility + awaitility + ${awaitility.version} + + + org.awaitility + awaitility-groovy + ${awaitility.version} + + + org.awaitility + awaitility-kotlin + ${awaitility.version} + + + org.awaitility + awaitility-scala + ${awaitility.version} + + + net.bytebuddy + byte-buddy + ${byte-buddy.version} + + + net.bytebuddy + byte-buddy-agent + ${byte-buddy.version} + + + org.cache2k + cache2k-api + ${cache2k.version} + + + org.cache2k + cache2k-config + ${cache2k.version} + + + org.cache2k + cache2k-core + ${cache2k.version} + + + org.cache2k + cache2k-jcache + ${cache2k.version} + + + org.cache2k + cache2k-micrometer + ${cache2k.version} + + + org.cache2k + cache2k-spring + ${cache2k.version} + + + com.github.ben-manes.caffeine + caffeine + ${caffeine.version} + + + com.github.ben-manes.caffeine + guava + ${caffeine.version} + + + com.github.ben-manes.caffeine + jcache + ${caffeine.version} + + + com.github.ben-manes.caffeine + simulator + ${caffeine.version} + + + com.datastax.oss + java-driver-core + ${cassandra-driver.version} + + + com.fasterxml + classmate + ${classmate.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + org.apache.commons + commons-dbcp2 + ${commons-dbcp2.version} + + + commons-logging + commons-logging + + + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + commons-pool + commons-pool + ${commons-pool.version} + + + org.apache.commons + commons-pool2 + ${commons-pool2.version} + + + com.couchbase.client + java-client + ${couchbase-client.version} + + + org.crac + crac + ${crac.version} + + + com.ibm.db2 + jcc + ${db2-jdbc.version} + + + io.spring.gradle + dependency-management-plugin + ${dependency-management-plugin.version} + + + org.apache.derby + derby + ${derby.version} + + + org.apache.derby + derbyclient + ${derby.version} + + + org.apache.derby + derbynet + ${derby.version} + + + org.apache.derby + derbyoptionaltools + ${derby.version} + + + org.apache.derby + derbyshared + ${derby.version} + + + org.apache.derby + derbytools + ${derby.version} + + + org.ehcache + ehcache + ${ehcache3.version} + + + org.ehcache + ehcache + ${ehcache3.version} + jakarta + + + org.ehcache + ehcache-clustered + ${ehcache3.version} + + + org.ehcache + ehcache-transactions + ${ehcache3.version} + + + org.ehcache + ehcache-transactions + ${ehcache3.version} + jakarta + + + org.elasticsearch.client + elasticsearch-rest-client + ${elasticsearch-client.version} + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-client-sniffer + ${elasticsearch-client.version} + + + commons-logging + commons-logging + + + + + co.elastic.clients + elasticsearch-java + ${elasticsearch-client.version} + + + org.flywaydb + flyway-core + ${flyway.version} + + + org.flywaydb + flyway-database-oracle + ${flyway.version} + + + org.flywaydb + flyway-firebird + ${flyway.version} + + + org.flywaydb + flyway-mysql + ${flyway.version} + + + org.flywaydb + flyway-sqlserver + ${flyway.version} + + + org.freemarker + freemarker + ${freemarker.version} + + + org.glassfish.web + jakarta.servlet.jsp.jstl + ${glassfish-jstl.version} + + + com.graphql-java + graphql-java + ${graphql-java.version} + + + com.google.code.gson + gson + ${gson.version} + + + com.h2database + h2 + ${h2.version} + + + org.hamcrest + hamcrest + ${hamcrest.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + org.hamcrest + hamcrest-library + ${hamcrest.version} + + + com.hazelcast + hazelcast + ${hazelcast.version} + + + com.hazelcast + hazelcast-spring + ${hazelcast.version} + + + org.hibernate.orm + hibernate-agroal + ${hibernate.version} + + + org.hibernate.orm + hibernate-ant + ${hibernate.version} + + + org.hibernate.orm + hibernate-c3p0 + ${hibernate.version} + + + org.hibernate.orm + hibernate-community-dialects + ${hibernate.version} + + + org.hibernate.orm + hibernate-core + ${hibernate.version} + + + org.hibernate.orm + hibernate-envers + ${hibernate.version} + + + org.hibernate.orm + hibernate-graalvm + ${hibernate.version} + + + org.hibernate.orm + hibernate-hikaricp + ${hibernate.version} + + + org.hibernate.orm + hibernate-jcache + ${hibernate.version} + + + org.hibernate.orm + hibernate-jpamodelgen + ${hibernate.version} + + + org.hibernate.orm + hibernate-micrometer + ${hibernate.version} + + + org.hibernate.orm + hibernate-proxool + ${hibernate.version} + + + org.hibernate.orm + hibernate-spatial + ${hibernate.version} + + + org.hibernate.orm + hibernate-testing + ${hibernate.version} + + + org.hibernate.orm + hibernate-vibur + ${hibernate.version} + + + org.hibernate.validator + hibernate-validator + ${hibernate-validator.version} + + + org.hibernate.validator + hibernate-validator-annotation-processor + ${hibernate-validator.version} + + + com.zaxxer + HikariCP + ${hikaricp.version} + + + org.hsqldb + hsqldb + ${hsqldb.version} + + + net.sourceforge.htmlunit + htmlunit + ${htmlunit.version} + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpasyncclient + ${httpasyncclient.version} + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents.client5 + httpclient5 + ${httpclient5.version} + + + org.apache.httpcomponents.client5 + httpclient5-cache + ${httpclient5.version} + + + org.apache.httpcomponents.client5 + httpclient5-fluent + ${httpclient5.version} + + + org.apache.httpcomponents.client5 + httpclient5-win + ${httpclient5.version} + + + org.apache.httpcomponents + httpcore + ${httpcore.version} + + + org.apache.httpcomponents + httpcore-nio + ${httpcore.version} + + + org.apache.httpcomponents.core5 + httpcore5 + ${httpcore5.version} + + + org.apache.httpcomponents.core5 + httpcore5-h2 + ${httpcore5.version} + + + org.apache.httpcomponents.core5 + httpcore5-reactive + ${httpcore5.version} + + + org.influxdb + influxdb-java + ${influxdb-java.version} + + + jakarta.activation + jakarta.activation-api + ${jakarta-activation.version} + + + jakarta.annotation + jakarta.annotation-api + ${jakarta-annotation.version} + + + jakarta.jms + jakarta.jms-api + ${jakarta-jms.version} + + + jakarta.json + jakarta.json-api + ${jakarta-json.version} + + + jakarta.json.bind + jakarta.json.bind-api + ${jakarta-json-bind.version} + + + jakarta.mail + jakarta.mail-api + ${jakarta-mail.version} + + + jakarta.management.j2ee + jakarta.management.j2ee-api + ${jakarta-management.version} + + + jakarta.persistence + jakarta.persistence-api + ${jakarta-persistence.version} + + + jakarta.servlet + jakarta.servlet-api + ${jakarta-servlet.version} + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + ${jakarta-servlet-jsp-jstl.version} + + + jakarta.transaction + jakarta.transaction-api + ${jakarta-transaction.version} + + + jakarta.validation + jakarta.validation-api + ${jakarta-validation.version} + + + jakarta.websocket + jakarta.websocket-api + ${jakarta-websocket.version} + + + jakarta.websocket + jakarta.websocket-client-api + ${jakarta-websocket.version} + + + jakarta.ws.rs + jakarta.ws.rs-api + ${jakarta-ws-rs.version} + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jakarta-xml-bind.version} + + + jakarta.xml.soap + jakarta.xml.soap-api + ${jakarta-xml-soap.version} + + + jakarta.xml.ws + jakarta.xml.ws-api + ${jakarta-xml-ws.version} + + + org.codehaus.janino + commons-compiler + ${janino.version} + + + org.codehaus.janino + commons-compiler-jdk + ${janino.version} + + + org.codehaus.janino + janino + ${janino.version} + + + javax.cache + cache-api + ${javax-cache.version} + + + javax.money + money-api + ${javax-money.version} + + + jaxen + jaxen + ${jaxen.version} + + + org.firebirdsql.jdbc + jaybird + ${jaybird.version} + + + org.jboss.logging + jboss-logging + ${jboss-logging.version} + + + org.jdom + jdom2 + ${jdom2.version} + + + redis.clients + jedis + ${jedis.version} + + + org.eclipse.jetty + jetty-reactive-httpclient + ${jetty-reactive-httpclient.version} + + + com.samskivert + jmustache + ${jmustache.version} + + + org.jooq + jooq + ${jooq.version} + + + org.jooq + jooq-codegen + ${jooq.version} + + + org.jooq + jooq-kotlin + ${jooq.version} + + + org.jooq + jooq-meta + ${jooq.version} + + + com.jayway.jsonpath + json-path + ${json-path.version} + + + com.jayway.jsonpath + json-path-assert + ${json-path.version} + + + net.minidev + json-smart + ${json-smart.version} + + + org.skyscreamer + jsonassert + ${jsonassert.version} + + + net.sourceforge.jtds + jtds + ${jtds.version} + + + junit + junit + ${junit.version} + + + org.apache.kafka + connect + ${kafka.version} + + + org.apache.kafka + connect-api + ${kafka.version} + + + org.apache.kafka + connect-basic-auth-extension + ${kafka.version} + + + org.apache.kafka + connect-file + ${kafka.version} + + + org.apache.kafka + connect-json + ${kafka.version} + + + org.apache.kafka + connect-mirror + ${kafka.version} + + + org.apache.kafka + connect-mirror-client + ${kafka.version} + + + org.apache.kafka + connect-runtime + ${kafka.version} + + + org.apache.kafka + connect-transforms + ${kafka.version} + + + org.apache.kafka + generator + ${kafka.version} + + + org.apache.kafka + kafka-clients + ${kafka.version} + + + org.apache.kafka + kafka-clients + ${kafka.version} + test + + + org.apache.kafka + kafka-log4j-appender + ${kafka.version} + + + org.apache.kafka + kafka-metadata + ${kafka.version} + + + org.apache.kafka + kafka-raft + ${kafka.version} + + + org.apache.kafka + kafka-server-common + ${kafka.version} + + + org.apache.kafka + kafka-server-common + ${kafka.version} + test + + + org.apache.kafka + kafka-shell + ${kafka.version} + + + org.apache.kafka + kafka-storage + ${kafka.version} + + + org.apache.kafka + kafka-storage-api + ${kafka.version} + + + org.apache.kafka + kafka-streams + ${kafka.version} + + + org.apache.kafka + kafka-streams-scala_2.12 + ${kafka.version} + + + org.apache.kafka + kafka-streams-scala_2.13 + ${kafka.version} + + + org.apache.kafka + kafka-streams-test-utils + ${kafka.version} + + + org.apache.kafka + kafka-tools + ${kafka.version} + + + org.apache.kafka + kafka_2.12 + ${kafka.version} + + + org.apache.kafka + kafka_2.12 + ${kafka.version} + test + + + org.apache.kafka + kafka_2.13 + ${kafka.version} + + + org.apache.kafka + kafka_2.13 + ${kafka.version} + test + + + org.apache.kafka + trogdor + ${kafka.version} + + + io.lettuce + lettuce-core + ${lettuce.version} + + + org.liquibase + liquibase-cdi + ${liquibase.version} + + + org.liquibase + liquibase-core + ${liquibase.version} + + + ch.qos.logback + logback-access + ${logback.version} + + + ch.qos.logback + logback-classic + ${logback.version} + + + ch.qos.logback + logback-core + ${logback.version} + + + org.projectlombok + lombok + ${lombok.version} + + + org.mariadb.jdbc + mariadb-java-client + ${mariadb.version} + + + io.micrometer + micrometer-registry-stackdriver + ${micrometer.version} + + + javax.annotation + javax.annotation-api + + + + + org.mongodb + bson + ${mongodb.version} + + + org.mongodb + bson-record-codec + ${mongodb.version} + + + org.mongodb + mongodb-driver-core + ${mongodb.version} + + + org.mongodb + mongodb-driver-legacy + ${mongodb.version} + + + org.mongodb + mongodb-driver-reactivestreams + ${mongodb.version} + + + org.mongodb + mongodb-driver-sync + ${mongodb.version} + + + com.microsoft.sqlserver + mssql-jdbc + ${mssql-jdbc.version} + + + com.mysql + mysql-connector-j + ${mysql.version} + + + com.google.protobuf + protobuf-java + + + + + net.sourceforge.nekohtml + nekohtml + ${nekohtml.version} + + + org.neo4j.driver + neo4j-java-driver + ${neo4j-java-driver.version} + + + com.oracle.database.r2dbc + oracle-r2dbc + ${oracle-r2dbc.version} + + + org.messaginghub + pooled-jms + ${pooled-jms.version} + + + org.postgresql + postgresql + ${postgresql.version} + + + org.apache.pulsar + bouncy-castle-bc + ${pulsar.version} + + + org.apache.pulsar + bouncy-castle-bcfips + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-1x-base + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-1x + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-2x-shaded + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-admin-api + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-admin-original + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-admin + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-all + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-api + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-auth-athenz + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-auth-sasl + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-messagecrypto-bc + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-original + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-tools-api + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-tools + ${pulsar.version} + + + org.apache.pulsar + pulsar-client + ${pulsar.version} + + + org.apache.pulsar + pulsar-common + ${pulsar.version} + + + org.apache.pulsar + pulsar-config-validation + ${pulsar.version} + + + org.apache.pulsar + pulsar-functions-api + ${pulsar.version} + + + org.apache.pulsar + pulsar-functions-proto + ${pulsar.version} + + + org.apache.pulsar + pulsar-functions-utils + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-aerospike + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-alluxio + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-aws + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-batch-data-generator + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-batch-discovery-triggerers + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-canal + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-cassandra + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-common + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-core + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-data-generator + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-debezium-core + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-debezium-mongodb + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-debezium-mssql + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-debezium-mysql + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-debezium-oracle + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-debezium-postgres + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-debezium + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-dynamodb + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-elastic-search + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-file + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-flume + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-hbase + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-hdfs2 + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-hdfs3 + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-http + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-influxdb + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-jdbc-clickhouse + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-jdbc-core + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-jdbc-mariadb + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-jdbc-openmldb + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-jdbc-postgres + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-jdbc-sqlite + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-jdbc + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-kafka-connect-adaptor-nar + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-kafka-connect-adaptor + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-kafka + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-kinesis + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-mongo + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-netty + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-nsq + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-rabbitmq + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-redis + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-solr + ${pulsar.version} + + + org.apache.pulsar + pulsar-io-twitter + ${pulsar.version} + + + org.apache.pulsar + pulsar-io + ${pulsar.version} + + + org.apache.pulsar + pulsar-metadata + ${pulsar.version} + + + org.apache.pulsar + pulsar-presto-connector-original + ${pulsar.version} + + + org.apache.pulsar + pulsar-presto-connector + ${pulsar.version} + + + org.apache.pulsar + pulsar-sql + ${pulsar.version} + + + org.apache.pulsar + pulsar-transaction-common + ${pulsar.version} + + + org.apache.pulsar + pulsar-websocket + ${pulsar.version} + + + org.apache.pulsar + pulsar-client-reactive-adapter + ${pulsar-reactive.version} + + + org.apache.pulsar + pulsar-client-reactive-api + ${pulsar-reactive.version} + + + org.apache.pulsar + pulsar-client-reactive-jackson + ${pulsar-reactive.version} + + + org.apache.pulsar + pulsar-client-reactive-producer-cache-caffeine-shaded + ${pulsar-reactive.version} + + + org.apache.pulsar + pulsar-client-reactive-producer-cache-caffeine + ${pulsar-reactive.version} + + + org.quartz-scheduler + quartz + ${quartz.version} + + + com.mchange + c3p0 + + + com.zaxxer + * + + + + + org.quartz-scheduler + quartz-jobs + ${quartz.version} + + + io.r2dbc + r2dbc-h2 + ${r2dbc-h2.version} + + + org.mariadb + r2dbc-mariadb + ${r2dbc-mariadb.version} + + + io.r2dbc + r2dbc-mssql + ${r2dbc-mssql.version} + + + io.asyncer + r2dbc-mysql + ${r2dbc-mysql.version} + + + io.r2dbc + r2dbc-pool + ${r2dbc-pool.version} + + + org.postgresql + r2dbc-postgresql + ${r2dbc-postgresql.version} + + + io.r2dbc + r2dbc-proxy + ${r2dbc-proxy.version} + + + io.r2dbc + r2dbc-spi + ${r2dbc-spi.version} + + + com.rabbitmq + amqp-client + ${rabbit-amqp-client.version} + + + com.rabbitmq + stream-client + ${rabbit-stream-client.version} + + + org.reactivestreams + reactive-streams + ${reactive-streams.version} + + + io.reactivex.rxjava3 + rxjava + ${rxjava3.version} + + + org.springframework.boot + spring-boot + 3.2.5 + + + org.springframework.boot + spring-boot-test + 3.2.5 + + + org.springframework.boot + spring-boot-test-autoconfigure + 3.2.5 + + + org.springframework.boot + spring-boot-testcontainers + 3.2.5 + + + org.springframework.boot + spring-boot-actuator + 3.2.5 + + + org.springframework.boot + spring-boot-actuator-autoconfigure + 3.2.5 + + + org.springframework.boot + spring-boot-autoconfigure + 3.2.5 + + + org.springframework.boot + spring-boot-autoconfigure-processor + 3.2.5 + + + org.springframework.boot + spring-boot-buildpack-platform + 3.2.5 + + + org.springframework.boot + spring-boot-configuration-metadata + 3.2.5 + + + org.springframework.boot + spring-boot-configuration-processor + 3.2.5 + + + org.springframework.boot + spring-boot-devtools + 3.2.5 + + + org.springframework.boot + spring-boot-docker-compose + 3.2.5 + + + org.springframework.boot + spring-boot-jarmode-layertools + 3.2.5 + + + org.springframework.boot + spring-boot-loader + 3.2.5 + + + org.springframework.boot + spring-boot-loader-classic + 3.2.5 + + + org.springframework.boot + spring-boot-loader-tools + 3.2.5 + + + org.springframework.boot + spring-boot-properties-migrator + 3.2.5 + + + org.springframework.boot + spring-boot-starter + 3.2.5 + + + org.springframework.boot + spring-boot-starter-activemq + 3.2.5 + + + org.springframework.boot + spring-boot-starter-actuator + 3.2.5 + + + org.springframework.boot + spring-boot-starter-amqp + 3.2.5 + + + org.springframework.boot + spring-boot-starter-aop + 3.2.5 + + + org.springframework.boot + spring-boot-starter-artemis + 3.2.5 + + + org.springframework.boot + spring-boot-starter-batch + 3.2.5 + + + org.springframework.boot + spring-boot-starter-cache + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-cassandra + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-cassandra-reactive + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-couchbase + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-couchbase-reactive + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-jdbc + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-jpa + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-ldap + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-mongodb + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-mongodb-reactive + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-r2dbc + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-redis + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-redis-reactive + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-neo4j + 3.2.5 + + + org.springframework.boot + spring-boot-starter-data-rest + 3.2.5 + + + org.springframework.boot + spring-boot-starter-freemarker + 3.2.5 + + + org.springframework.boot + spring-boot-starter-graphql + 3.2.5 + + + org.springframework.boot + spring-boot-starter-groovy-templates + 3.2.5 + + + org.springframework.boot + spring-boot-starter-hateoas + 3.2.5 + + + org.springframework.boot + spring-boot-starter-integration + 3.2.5 + + + org.springframework.boot + spring-boot-starter-jdbc + 3.2.5 + + + org.springframework.boot + spring-boot-starter-jersey + 3.2.5 + + + org.springframework.boot + spring-boot-starter-jetty + 3.2.5 + + + org.springframework.boot + spring-boot-starter-jooq + 3.2.5 + + + org.springframework.boot + spring-boot-starter-json + 3.2.5 + + + org.springframework.boot + spring-boot-starter-log4j2 + 3.2.5 + + + org.springframework.boot + spring-boot-starter-logging + 3.2.5 + + + org.springframework.boot + spring-boot-starter-mail + 3.2.5 + + + org.springframework.boot + spring-boot-starter-mustache + 3.2.5 + + + org.springframework.boot + spring-boot-starter-oauth2-authorization-server + 3.2.5 + + + org.springframework.boot + spring-boot-starter-oauth2-client + 3.2.5 + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + 3.2.5 + + + org.springframework.boot + spring-boot-starter-pulsar + 3.2.5 + + + org.springframework.boot + spring-boot-starter-pulsar-reactive + 3.2.5 + + + org.springframework.boot + spring-boot-starter-quartz + 3.2.5 + + + org.springframework.boot + spring-boot-starter-reactor-netty + 3.2.5 + + + org.springframework.boot + spring-boot-starter-rsocket + 3.2.5 + + + org.springframework.boot + spring-boot-starter-security + 3.2.5 + + + org.springframework.boot + spring-boot-starter-test + 3.2.5 + + + org.springframework.boot + spring-boot-starter-thymeleaf + 3.2.5 + + + org.springframework.boot + spring-boot-starter-tomcat + 3.2.5 + + + org.springframework.boot + spring-boot-starter-undertow + 3.2.5 + + + org.springframework.boot + spring-boot-starter-validation + 3.2.5 + + + org.springframework.boot + spring-boot-starter-web + 3.2.5 + + + org.springframework.boot + spring-boot-starter-webflux + 3.2.5 + + + org.springframework.boot + spring-boot-starter-websocket + 3.2.5 + + + org.springframework.boot + spring-boot-starter-web-services + 3.2.5 + + + com.sun.xml.messaging.saaj + saaj-impl + ${saaj-impl.version} + + + org.seleniumhq.selenium + htmlunit-driver + ${selenium-htmlunit.version} + + + com.sendgrid + sendgrid-java + ${sendgrid.version} + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + org.slf4j + jul-to-slf4j + ${slf4j.version} + + + org.slf4j + log4j-over-slf4j + ${slf4j.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + slf4j-ext + ${slf4j.version} + + + org.slf4j + slf4j-jdk-platform-logging + ${slf4j.version} + + + org.slf4j + slf4j-jdk14 + ${slf4j.version} + + + org.slf4j + slf4j-log4j12 + ${slf4j.version} + + + org.slf4j + slf4j-nop + ${slf4j.version} + + + org.slf4j + slf4j-reload4j + ${slf4j.version} + + + org.slf4j + slf4j-simple + ${slf4j.version} + + + org.yaml + snakeyaml + ${snakeyaml.version} + + + org.springframework.security + spring-security-oauth2-authorization-server + ${spring-authorization-server.version} + + + org.springframework.graphql + spring-graphql + ${spring-graphql.version} + + + org.springframework.graphql + spring-graphql-test + ${spring-graphql.version} + + + org.springframework.hateoas + spring-hateoas + ${spring-hateoas.version} + + + org.springframework.kafka + spring-kafka + ${spring-kafka.version} + + + org.springframework.kafka + spring-kafka-test + ${spring-kafka.version} + + + org.springframework.ldap + spring-ldap-core + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-ldif-core + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-odm + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-test + ${spring-ldap.version} + + + org.springframework.retry + spring-retry + ${spring-retry.version} + + + org.xerial + sqlite-jdbc + ${sqlite-jdbc.version} + + + org.thymeleaf + thymeleaf + ${thymeleaf.version} + + + org.thymeleaf + thymeleaf-spring6 + ${thymeleaf.version} + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + ${thymeleaf-extras-data-attribute.version} + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity6 + ${thymeleaf-extras-springsecurity.version} + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + ${thymeleaf-layout-dialect.version} + + + org.apache.tomcat + tomcat-annotations-api + ${tomcat.version} + + + org.apache.tomcat + tomcat-jdbc + ${tomcat.version} + + + org.apache.tomcat + tomcat-jsp-api + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-core + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-el + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-jasper + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-websocket + ${tomcat.version} + + + com.unboundid + unboundid-ldapsdk + ${unboundid-ldapsdk.version} + + + io.undertow + undertow-core + ${undertow.version} + + + io.undertow + undertow-servlet + ${undertow.version} + + + io.undertow + undertow-websockets-jsr + ${undertow.version} + + + org.webjars + webjars-locator-core + ${webjars-locator-core.version} + + + wsdl4j + wsdl4j + ${wsdl4j.version} + + + org.xmlunit + xmlunit-assertj + ${xmlunit2.version} + + + org.xmlunit + xmlunit-assertj3 + ${xmlunit2.version} + + + org.xmlunit + xmlunit-core + ${xmlunit2.version} + + + org.xmlunit + xmlunit-jakarta-jaxb-impl + ${xmlunit2.version} + + + org.xmlunit + xmlunit-legacy + ${xmlunit2.version} + + + org.xmlunit + xmlunit-matchers + ${xmlunit2.version} + + + org.xmlunit + xmlunit-placeholders + ${xmlunit2.version} + + + org.eclipse + yasson + ${yasson.version} + + + org.assertj + assertj-bom + ${assertj.version} + pom + import + + + io.zipkin.brave + brave-bom + ${brave.version} + pom + import + + + com.datastax.oss + java-driver-bom + ${cassandra-driver.version} + pom + import + + + io.dropwizard.metrics + metrics-bom + ${dropwizard-metrics.version} + pom + import + + + org.glassfish.jaxb + jaxb-bom + ${glassfish-jaxb.version} + pom + import + + + org.apache.groovy + groovy-bom + ${groovy.version} + pom + import + + + org.infinispan + infinispan-bom + ${infinispan.version} + pom + import + + + com.fasterxml.jackson + jackson-bom + ${jackson-bom.version} + pom + import + + + org.glassfish.jersey + jersey-bom + ${jersey.version} + pom + import + + + org.eclipse.jetty.ee10 + jetty-ee10-bom + ${jetty.version} + pom + import + + + org.eclipse.jetty + jetty-bom + ${jetty.version} + pom + import + + + org.junit + junit-bom + ${junit-jupiter.version} + pom + import + + + org.jetbrains.kotlin + kotlin-bom + ${kotlin.version} + pom + import + + + org.jetbrains.kotlinx + kotlinx-coroutines-bom + ${kotlin-coroutines.version} + pom + import + + + org.jetbrains.kotlinx + kotlinx-serialization-bom + ${kotlin-serialization.version} + pom + import + + + org.apache.logging.log4j + log4j-bom + ${log4j2.version} + pom + import + + + io.micrometer + micrometer-bom + ${micrometer.version} + pom + import + + + io.micrometer + micrometer-tracing-bom + ${micrometer-tracing.version} + pom + import + + + org.mockito + mockito-bom + ${mockito.version} + pom + import + + + io.netty + netty-bom + ${netty.version} + pom + import + + + com.squareup.okhttp3 + okhttp-bom + ${okhttp.version} + pom + import + + + io.opentelemetry + opentelemetry-bom + ${opentelemetry.version} + pom + import + + + com.oracle.database.jdbc + ojdbc-bom + ${oracle-database.version} + pom + import + + + io.prometheus + simpleclient_bom + ${prometheus-client.version} + pom + import + + + com.querydsl + querydsl-bom + ${querydsl.version} + pom + import + + + io.projectreactor + reactor-bom + ${reactor-bom.version} + pom + import + + + io.rest-assured + rest-assured-bom + ${rest-assured.version} + pom + import + + + io.rsocket + rsocket-bom + ${rsocket.version} + pom + import + + + org.seleniumhq.selenium + selenium-bom + ${selenium.version} + pom + import + + + org.springframework.amqp + spring-amqp-bom + ${spring-amqp.version} + pom + import + + + org.springframework.batch + spring-batch-bom + ${spring-batch.version} + pom + import + + + org.springframework.data + spring-data-bom + ${spring-data-bom.version} + pom + import + + + org.springframework + spring-framework-bom + ${spring-framework.version} + pom + import + + + org.springframework.integration + spring-integration-bom + ${spring-integration.version} + pom + import + + + org.springframework.pulsar + spring-pulsar-bom + ${spring-pulsar.version} + pom + import + + + org.springframework.restdocs + spring-restdocs-bom + ${spring-restdocs.version} + pom + import + + + org.springframework.security + spring-security-bom + ${spring-security.version} + pom + import + + + org.springframework.session + spring-session-bom + ${spring-session.version} + pom + import + + + org.springframework.ws + spring-ws-bom + ${spring-ws.version} + pom + import + + + org.testcontainers + testcontainers-bom + ${testcontainers.version} + pom + import + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + ${build-helper-maven-plugin.version} + + + org.flywaydb + flyway-maven-plugin + ${flyway.version} + + + io.github.git-commit-id + git-commit-id-maven-plugin + ${git-commit-id-maven-plugin.version} + + + org.jooq + jooq-codegen-maven + ${jooq.version} + + + org.jetbrains.kotlin + kotlin-maven-plugin + ${kotlin.version} + + + org.liquibase + liquibase-maven-plugin + ${liquibase.version} + + + org.apache.maven.plugins + maven-antrun-plugin + ${maven-antrun-plugin.version} + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + org.apache.maven.plugins + maven-clean-plugin + ${maven-clean-plugin.version} + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + org.apache.maven.plugins + maven-dependency-plugin + ${maven-dependency-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${maven-enforcer-plugin.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${maven-failsafe-plugin.version} + + + org.apache.maven.plugins + maven-help-plugin + ${maven-help-plugin.version} + + + org.apache.maven.plugins + maven-install-plugin + ${maven-install-plugin.version} + + + org.apache.maven.plugins + maven-invoker-plugin + ${maven-invoker-plugin.version} + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + org.apache.maven.plugins + maven-resources-plugin + ${maven-resources-plugin.version} + + + org.apache.maven.plugins + maven-shade-plugin + ${maven-shade-plugin.version} + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + org.apache.maven.plugins + maven-war-plugin + ${maven-war-plugin.version} + + + org.graalvm.buildtools + native-maven-plugin + ${native-build-tools-plugin.version} + + + org.springframework.boot + spring-boot-maven-plugin + 3.2.5 + + + org.codehaus.mojo + versions-maven-plugin + ${versions-maven-plugin.version} + + + org.codehaus.mojo + xml-maven-plugin + ${xml-maven-plugin.version} + + + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.lastUpdated b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.lastUpdated new file mode 100644 index 000000000..ea1ac695e --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.lastUpdated @@ -0,0 +1,5 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:20 EDT 2024 +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.boot\:spring-boot-dependencies\:pom\:3.2.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139799066 +https\://repo1.maven.org/maven2/.lastUpdated=1721139800172 diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.sha1 new file mode 100644 index 000000000..5b679e7f7 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.sha1 @@ -0,0 +1 @@ +e3401e488de7f6b0849f7cfe3a2877cef1c1f6b4 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/_remote.repositories new file mode 100644 index 000000000..02adbf7f3 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:44 EDT 2024 +spring-boot-maven-plugin-3.2.5.jar>central= +spring-boot-maven-plugin-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar new file mode 100644 index 0000000000000000000000000000000000000000..0feb86e9fb3cb80f3ae9f096c4efa713645459e8 GIT binary patch literal 134585 zcma&OV{~TG(x@BT>X;qdwr$&fW1F3hZNIVYj&0kvI_WsMy}y0N{qElPoNu2w#$4-9 z)sGsZR@JPhYAz*Na0oaM5EvK`$DfH>Ab%IwKOTPMkTaM3-akgd0E|p`yanWE(#zuxl7AduN0hZpmjL_;^L<-Jtq0J2!853X+ z$p*fRVwJi+m22Ha&8(RnrTIrU?BdfnTWyZUMmo5JS;pz0<9FC+d3pZwVSaU&=dys0 zojBRfI@;H}s$F$1QMHCD z$zij`JNa3E7+x)EE!GYoOzREa#O)>R45Z>n`r39`!;_M6FLhWl(@7f4<@aIOd70Mk zLdkp6eQ4OEzB5Rxa5*1hRs0myE|sV3&h23s+%e;n@j)@{@&A}gigF*A?c}UAxO#eP zFY-Gc1{kt;rTIL9X>J?td^BN2Ev0z+Gl9;Rt|9LI(Zpv;nJl5sZ)1R{;MD2&#i6`#=< zklUCJovM*komZC+qxCR!QTeva1M0k4_n$;~l=o6A(6U0bDigzeA@8ekT6ynsnAm-1 zZ?maKG~5R24Tf{6G%`Pp9^E-%8gG&@^U>%Q2ZTqRR&gr7-ARyre&c>sJP1k8Z zT079|#$9qX5s&v95d?{3wCva!FY0%6?cPWYcjwAkueMsei5$%;l((G1gODd{L+J*W ziA#0~bgA~)eAxDpE7!P08~qS=A9Gm@zq_l89m9EdsL6qF#v6U7m{&K*e|1K27P1jDE+rnRp8^9-OAfbNm_(Whu%Q zJjNmgodz*fM9Kz!%YF#j+bF=F-qKLliQJn#8TqujEJasZ9Y`x;-b0blkpbNbGaZC5 zT6i&SZU7_pitk9sqBsl)mxU~(hBBh|qZ*5V2i@vLxOEKWY{B5G8mn@~u4{=83vMwO zgv1x(A8+}QV@x8%8_LZ%NcqjL*62i1s$}?*F$uFKc?sEQ2%3DB7~qZ%+BV{a_q^aE zZ5NXNEWzVyAX%=pM~MA_!XK^PhS?79V%)QE!~hQNxD3J$!m>~SEnhQ81-07oOEQ4#bhV~LZF>;5ZSsS7l{IE2ot{YBv4QPZNy(|ryxCR+eSut7U zf=ZRLwnv=miT$%`B+iAn#ID7VEnl%sNft;*Ww(zWxi`+5Ks;7wZ-x2(nS3vviUD5O z9aNnKvH{oxareB1=?W=~VxxTYrJ0ooJ)mqN^~@OGYFr|vq=^`B;vasK2x7Kn8d^9! znyC1dKEyiJMOX8LnrfV2LkwCC%ET}WkGH0Te??z&5#bx1)7srjHyTruSTL&)B0DDX z$786mn94-68~Q!X6-;aqkpU2>65Lc}CQfsR1W>A;Ai=k}E~^VoRwMgBzx1#2ozx&* z8ILhAV`BLkJh^Vgx!ZPhS~k8AOTSlKnm`15r(&%V*9WuE815MgY%@p$;t+gypuM6D z706mu&et11vzJ^&E{G5y9mtIlgQ#4CyQCM-t^B=a4M%i$;dvP!lvm8x4vI>&0hAv? zN?xOipv;esjK@!&ev+0xU1TI1R1Dcjg}R(N!i9B6^+ymhoEb7q(AaBnIJg6EM7v0c zs*GD|oRUkm;HIH1OC)8D7lHxJ`8kBj2;vM=3K70i2}+0FkDOmy{s*^R!m=an&G&Xg3%v+z=z zq)(0uCo|9w!#%}s$Eeeq$B{=Hr+%VRgF_|c*UQ?aqmejTqAusY1@ziQc2j0UV@sew z0Z^G|v77IXag)5MuSB(*6zm<8>}OSODgh%5^ghyxrmj++^tKvz&k&(Ls?C-jo$W)w zWf(p&=CG^lcz$bD@TSarhR`(U^|x{(ae#e{3*(rPXY_pZXx=lcr$MB|^;Q`)pAE1@ z52DvZ_+=0_R_TsA5SZB;$-84i$!+dDO@dGR3?wgsGf9t>Cu3GBnT>vxgN>0GXEwYC ztK2^iq>kK%uP4lA(G{Q$H>enF+&`ZT#10HQ^w*c$3|(H zO`x*3pOl??UOrbL3sHRMU^L^()=+AJ|Zy(~L=|5wQv>}148O|o! z_nH(mO}S{kRJ7;Js2nD^s_{LmX#T~?!f82-Z;0TmCLqpQ60s; z*q9$Z5ZI@A42Q8llTaB=#vN1T*6%#S^vt%->ta4=($Gn&nm1P>Wv!~(=;>LAIacbz zoFYXC$dUh@2u9heo1P|&+vhZK?*mtOXM4_Bw0eJo*~Q!>cAGEu50~baMt#8>j4@7Muh+|NJ3}9*TE8+4X%29DFK6c z!?>8<9cqiPw!cZof}8D4{T9gT_l4?u&pe6zBOej>hm^E^g?dl)`VOJ7u*WVs-PxfE z)qBa%oAn}86+#y<6x>^Lumqg4nez8qynLTSH*PjHs9m|>%utH^BF|p2J-qxZ6AnNLS`BpByHk=?{#Oj2MXXntlzt=A;PLG%7_bJ|btq;1-Zasa_tvO%t_lO1M zG=)M~%?dlYOqPh_B9`4n&`doROm?w97$$w`PZMuXE09`#kIwDh9<6#GkFTW{OMWE& z9o;@}WLE9Z#xMR}U#wxXokt(%-cz;6bY0OKLj+ux18+k)Z6A&vK8@YSHWRI3h}(35 zpZsO(AeaSeLm7{-B5aHU+})U ztLK+@qlfHdWc+c6H1Gx177b}uxbun04* zcOuj9h%hm%oU?c%OQ|=L^^qewF|ETRF$~%+(b%l_oE^WXCmq@Iu=V(SC<&YTO*zBC z-EHNXSL6kF-yy`;9)1l{lQ;*XV%8P|Bqo-mI38EYokhiOC$oq>;RE}!HbOWxkiei1 zP+(v0h^Hqa23)oItvbF}e_Y_jgKop@9YHbXvhH@aYb9%;&%%LvIh}~pENZLxZj!j= zm0aAJ?=`O22Zg2bntH;?Bu$T*^G@jnwJt^8LgdG?CF_?zqwvQG^S=^MU8`;ERgzm1 z4_nv=U-#SL3Wkwx-@_S0XD}Kz_j)lI`UVt(2MV2_;SqCf6r==@&h)YN0Qiy9~KW8xgk?XMV9S%M5rQBGY<4CC}(BH%C zjjm(`x>)Oq6bjVS}U*5M%ufH@ExACIY&Jzs)y+pgisx8jkL44eUsz_;tw!_q;LcDLt=H zl`Mn`RU(?jgmL)7sK$`G-8XBFH%$Bj5Q2(Mg8f?&!mvFPF=^2{96*1@24o`+CHuTwMaNT!sihW{3{Nsn{Q@ zKz1SM?C=eg?iTzNaFw!ikJ^H$M2E-izs*ewU>rC$cPO8wV0MroW^(Cqfgf2p#$fXe z=rI3!d0_0x&qVR$*&gwk2=iIt%9R#HvYsH=)^cGgniw=hzJ1DiPI-Xhj{|5207v}d z)wE~W5c5a_$kg<9!S8Y=CT^6)P9;%b+I(N`yz=ile%n(Cn?{#OIfJOOjWxXbeUK=&x^>om`~~{2d?6MyLp=X4SD631(f{uM z7epv1s{O6c|52RF$Nm>y5Py1!jH<-4DN_~{(ueI(fnyNmVGH7b^-_9!lE83f2Y0#7 z_W9kn3MzSm)}nXI&&%Bd!Fn1hvxIUbQ6*06ep=Iru()f7X?a;AABtQvLsL)%R5l}f zltPM{7;PyHEP{n*RL4m}p3MiM#5AIGnJ?jK`6*Ur9w-+k=^4r9;Ft3~FU+bYFmk{j zQ3&E%V;XZvH$I@>e*15O9De*OS%LU#kb|@3zd)6Lm-z=&`G<^)qq8-@(!$x;-rU2% z+4g_b!TCSvm^e7N{*Q`8|C6GU=L77p#RqDi>{Kz6q ze1&A|{0i(6+1owW=zZ|s+CwXL;RS^R)tmt6xG2fv^}p*T-!0q$pYOkZf!{*95UM!p z75SOPn^QGCLn4zh;Pv@8liP%obP|rw`kFgpMWygLk9OYrb_LGdYM)7fmhp*#(MNqp=I_heAQqJq!Jy8MXrP)MXM;|KQP-8 zLNOl}?wWF)`Mk7)ggt1Xb{ytJ`k^*rd`1;s6B$`9^w?hp3FL04@y=5ZB1C^;9mIq ze;igLwDY58(PQF$yTQTwtmRQ|DaP<7+jpWXQ`j@+)hhXr3L>;czJjsWj_gJ-Nc0uo zE_np4bp_YZ=?M0*HXW8i>L>AvX6q)4Bl48r*5brSTRYTEq_;|K#GL=}()L&mX zfB^wv_|N_zYHVs{E)B47_@@IDYv?MX3uAnid~4CiiY$ACQUP_-O@53_1~aI@PQ;RD zl7FyYSC}|=PqS;q4oIlY^d!lAw%Lzk$z7{1HmX!Iw3wcre(84UcCl~|cz?e~?1dw& zgdwRSE+mO039nD{{eg$odNG`IFROfq9iA$`@t}dz@7;kRiQoiT5pHaS&~dOFbKGLP z{+Ky|x8How%`zT)fP>ggW=A$dt821V!;LT(*@V*&)-7<9YOUVtb(B(X?^Ju-7Gp#m zI5xyI?)ZkfM%~zVL3-5lJv|v&9+*S3aJb6exa};?ezdxbhf5f?7te7aT*l{>djwzk3;;1u#lWnfWSB20>K4QZzmPRL| z?}>NV??yVZ~RC?vF(t^0j_otE8vLn?hB|M z3?XM&UEHUPEy2N$RzBLgVNHXPR|O?{4KsIDnMbs-pFfQO=FqaiR*JkGg6mV8)Em%^1ucO-#j2vPdY% z@z{K@Jd@+pj;LgY1Z=4|H=*j z4DtUfM*s7Rtk%?4#n8m~WQd9}rG<$^i@^3lIBhxxMj%B_N62EiWVBDRJ-D`R zwJJ|`-@IvfjWLdjR>>F_s=t7izZa>|oVar`u@Xn6{5ZSHy{X#aewsG?5_m@Mg?&#K zLbPFDJS!Wa2`3z(#qPeya5tVjAa~lhqli`>Ns#!d2)A)c@K`+Ja_?+}%zc0~P;pRV zKc0lpOprq+qa6~vB*oO^+3!&$?F498yub`jtSg=|a&;|9V-l{g1RYzNt=AafA&9Xu zS^dSv;aoZARIJT%6X}}??Orq53-~@8jfIHkY9~f3x&rrZGz%v(Ps`t|1ash~yEIg;P9aopILdk zFyZ6sYRq^y25%ScSC6^C3?(P~eZsCp-Y~TX*@<(Fy9{OlIM6E)Uefzbdv79n$ZzK; zQEOHub(=NT6c&)Q1n#LZAWZPXG2Qrs4;IRg%^PXVn#B#+s{y?B@X{)%Z83 zxIwhRjJ32F)+3rUX`B3I>&&-Ydhg&9_G}BT2ELlsnUs?*Ywdp7U5x26cLiqrb5B}j7L!n^H#W;AEOJb4iKka%){Wa!|GK@xgA$!!&8>>AK0zFVN%>)9qc9Yx_U4& z!2XE}S0=X79Q;;^Hp_~qXVV9oG};lMd*6)7jk*V z#ZX#XE*cx4E3R{@SNpDs~5-?;t{0r3Y}rTOgy@^&+z1o@LZ9vDIeD{p1`>wc$3(tu_%dP#Ysbn>JF+{YT5j=0#jPo4&8&JH z1XFOOYprSkorxofE2I@!UF!C4yyf>$H~j^zovt(FrltG~O`R%4Ob&DuSBi=eYn9a~ zd8x2*T{6h}dvCj5c0I~R&eLkpOCq~@5xZ{&`IRiMI9nGf!!^*WNOA{fzqah%7EZgo zYsc4#!<>+8sXrgF;i?IuB{T0E{VUj+J2@n5 z!Ouybj*$kf9rBCZ6ivSv)iZk3QeVPHw@N}y zjG_ezCYnEE$&j7)Uq!P!6vR(|#dTZr8S0PxHec6qf;ULF5ll`bk>@$1CPt?88-KXM zYYU+c>h#2{h3$&vyrnSSQ8C;e<|To}Ub^4XI`c_RP%LLK+^=L}Wp64uuzekPMC=|w zwt7SU*E6DO!mIN$JP3$A0SJijf6hn3CN8ed#-^@f=8on7Gjo8cmxQ&QtGV+(3WI;EXSW|>oy4ZL`` zO4E^}${5O2O4Q=?&Z)G_V!h~)m=5B~cN$2T%BaF+JDjY%KHsfnbU&rGH=erR-hSQq zIpq4k&5eLoVZgtS21y2MN-*3*VByy12BN8p{Ibb6#8G+_VoN-od+4pOcVaCGoy0Qj zB#CboS@??)K^4u_Ed_i>({|I8LA3LO#0P=Q@;7I()F0=oz6 z>d1&SOQa>ZjpT2O1O-y0Rl|@a91faL$wK{$q(K(+0FJssYL-Z?D8&VP9)oNOAoc=e zB>u4*Ga0HqTvD`&u7uc}57-sOhM6>V0yFvutkhh3y*^?F7$ryCPoU>oQ>7p{#t z)<|kS)`(9^IxZ4bY+)chB?=2EYJ&(X)w49-Wjd!>7RjDx&{=u2dVM;}Xy215C?BL& zC_1^?c$rAEkTDeFNvIf22`YMe#-349CZsT)>O;y=DOPU8x}|6{VYL{rlkAfq-UO>sr&pa+fheFKNCfqlwfV76EabE zF=+{C&8i@b`BvDb*H-D23^Jq->P{PHi%W=L2rlN#(6i}$ST5e>oVG^~{jF9pYOmehv(gLK5L^qFD< zcb4gB)>*tt7^6p;PO?-h>V@V&QyNy`Z;0dKD!an;KU4|ss?6$XW$6sHZ3yVFJRBb~ zdFxiEBtx4;8Nb+~vLdHPwU|DGrVunSPF&jD<#20ax6_@v8)A-JSz`JBw$pKl`hUPG zxVEkEaOr7!$xZ8)hDJfA$~kAXP+63vapcg>SRCs(mPb!Ga_h4fL{yyq;TbB?y+GAs zi!D8XIwAE94RI0I*pg{*b)M=}86Ig%m(}50C1Qsr*P~bB{kbOp=PHNoiAHb2+kI|J zHN)@1g;+qKeQ-Ax;pfVp4s2d__LUs@GBdW@TFpt5KQ5Z~L^L0p@$sfEBV%0=Gcigc9C*?%k zY}i`}Ofxww-Mu(eg;|Y55#@am>$UT+yT3ZkHwOTRzqhQZ%|fn|oCJ}SuG9)QO<@)Z zut@RKaJ2?QSO`t}1QzNz$@xS^dAjIc?wI%le3kQ)vCkW^&ohFg2~(KIcYlwlFMzfo z$0;8*;+&_~FjOI>hok;v9YAO4o5?vC8~DrXrlp{>{=vv-`M9CF&gjrQ)Jsk;j`NCvTmL zlAqAY82Uyb{SuAVYJCGXt%(uoIWpgc!*+UZMN0FEaZjSkWmad&LI^9m`(OPGM1Tzv zr#36zu0wKz5td%dpa#s^p4mFHj<{z}2_0p)tkA4UdU=2+Dol4_v^rISZ)kG9Yu?k{}Gw^7U zM(lzCQHgA`M!*5r$<DOi*AKnIl&iQQA#GJL;f;HampB}+0cvXs3qB= zc$0em^oTJN<(Xkh*2))((3dgx<^VeDPV_zE>*%&r_4Uh?bgWO2ZXPU3ZMW3vJsJys z9wv8+;+dNs%d`V%R?(a=fY)Or-`cN8+isTG>(WG&pFk)%T1^=4*_-$*JMkBmenx&y zaDe*9oX{ithv=KJvpNvlOw62TN)j`-j_m)@t=t-1FqKX}6B|hFZ3L4&chEoUx~H4+ zAIUrooj2-y@=#A|{I%N5bo_-_+RAs=g9 z_n1I9CLbEWKcj&4V58H)*GlIBQ3}_uF0J3pN+dD>qcGD~@&TP!&TB;eGls5|lMzLf zWFLY9Ju0DB1|c7jw+=NVbx(FQY$!eC+b!wTDCu7y*%g{L7A8_PV0g#rTnABlaDyQj zhbig4w(T>t^#*xgk`b> zV~jcw#(fFFRNq$L?FwbO2)j8pKV-9tca|q|O5aV?({PJP;5js9PCGrug{)*kA6c#TqLTdr?325-Iw{GZlKo zOps2Gb~f|CBKSip{`f4w+NC(G;-qTPlU_Lca~7ou93sd{a|+lLv~G;B8Y`_P?+SgY zO7~i6b%e`uq%%1d_`WDjQy( z#BnOQmqc}93_*n1hBGAQrv8l);Q%*Fq=CAKE%G8=1b3J+BG}(R5o@z|0sI=aw$-LT z=I~iQ^kPd(%9I^YV6-ixZj9Wr&k?z9F#ae2H$|XfR6*T!boi|6xxr)Kx!HT^Tz3Tw z@mF#*;SzJ%<&Ur)1qRBBNLc~DT-TJ~WYZ=UCGC*{np~WplS7tMGbxp&yxtd40NXKL z`?^TcCde;Nct@@dn(}wu#=b2nD4hYEG&a^<6QsX9lA2v_!`Aox-fh47PGHZGi{1^y z$|3)#?%#Z0xF%)Wk?-CK!QG5fbs`cz^RF5Ssp&C`xG;|zt&dc~Nrj2KP3(hLCU+Lk zb&)CUEvcV=)5+l*2ktB)~_hgn!a}xcx@}Gcz zEi1q%MD4HtqG!av=$ZHbzN`>-aQ&~Agt)V_gR{#&3yQx6IpB$7@SE})Y^-sVQ%f&A zpo`d0vgv}6qm&j{@3%-_eP1OnIC8O5%$C2>xAn-L@99Sl{6=U6Ne>EpHwa!E0sRUp zB?a>{FEF&N(Y6$jWDgnH;PP~x!TPl6bMpElp!*Z67pICGMMO(fO!8YH!Y@4EBs_M2 zdQ9Ob0$f)Os!P}^MfD+X0fTxl8bz!2C4!WZoiYO=t`aBh`|F>c1uph z9tVca)SjEumU|5j`9`Wljsx68I(7T}o;kPaMAt84WOITMcRi?T2E8;*$N?dS-8MPS zKP2UQI0SEZbfS6ver8e|HSNRMW0k2_GL3S2>LiRA8ew}@G&vgt>_s3MT(3?-1A(z2 z*k;(iV5tSPx>R(S*hqp2Ea3wPbOp{XY9q|}rP22iqEz8YomP)Up@YePwaet&M!y>#*B6k*!}vvCP;A zPV0tESqj>&_{(!V-#^F`{pAKG5TJQonuPv%HB$KMaSl7_j8vxI$~H^c-*cIc+|^#B zi-j8_3%it%V`V)iI(GfhQ_>ayHppFhQ#GSxPhd~0SS3Z?WXEa`t%&+Ix>swr`brF? zEIAQ=qoP}wTE@E%_ZU}yG&dLthU22J&(ju--5b5miD%WPro%KdTds+3%l#2#cucO| zQIz%@^E&r48FRy{E~h3KQk~`({3ergZP$A~hQ+<~6P|1rowtRvPpSSxA1l2=jMMNy(Fb z7n}5+u&612vbDF@T0kkAqPQN}q+!2Qs2H2?Oq+33v&!wU!e|-MYQxb6Rs$*-Lj)X@ zzc;d9cLa-xZP<|79PV<(?4n>Z%mt{#7~?*oz5-ztbNPPBlgVMt@;XD?9pYJOUK4+k zqj8RX>nG)3x&gZ-yLyF{H9Hd^obXK22nUNCENJ^IQa7%R0~Dm~VZ90n`yIl6Py7Km z7_DfK=;?RSl?uzphww?*^O^KXSKYv#`5+i>y@eCqcpH6MNe-ZSfoeasANJAxb@o%0 z1er`>CXaft^K^heyVozfA3PJQM`^WZpT>WH!vE>;;f192km`bEn^c>2LnXyBrK)x8 z8tg5r#Xy;YOfW*0{G7nMI|{zK$in(DNoH?*cynZyG>;VRGuqdfvA^u;BTgUfJP&QX zvLq3gj(+?O%Y3r5>-ojq&$pt7r_6-DLW=h9%uRQze<1R&6rh}KVill)wy83&B#(>t zmhoT12o#^yZqMJ2CdS`T!u_Aah=`lDotd<~v8B0!gT&v??0-{g3#Y?=0=e; z9#~k5Z!%Vqb8z7zG(;Mh3Ji6mV{l3nzhgPaAFef{o6Kf{#gYBc!64|}0u)nDb;gvk zTNzf~ydLeF&(Gh#zXfu7ZuX+lxT$4nNyz7$Uk*y6S3Z1iVkvPL_IDZ{HdCNGDa!F^ zj|?`Tqg>=Jw8lNWOTSFOm%P;W zh+zbxTdNy0W-r-Qs05{52h<@!;F2Zj<{_!i*ePm?I23;A~uwtqz&Zt*lZ!NEz zv8YP0etP{(`}t7X1VW)Kpv>cTXr9{`sKJg*RmaTWNUwgYv)&{^0mlXoXHICotybdd zR2Sgxt}gYNL8Pob9Nn>U?Q0isdLP&Hz^<99GLwn(q8;X-dpp)xPL308HkzChmHm_) zk0kYGDJmnM{A~-;K;I!^A~C@s(Ij$ey0m-6rL#2GhmVJV5INTS<2t1+_9rP}tZjW1 zPtV{!de<|3gP!>WwY`zo4fLSLHeEqqg9cCDF4V-a7uZFX`MU=7ieuIz;mEb)AMZ#+ zJGAS4!s~!xa68O>5@S4GPqm7kfAxy8Z1apH6cCU%3J?&M|Lhei=8nduwtt=Czulo( z8`cx!#LHjMT9d3A>ic(N-QnS=DH2zDsOa`+dNa^S^6z9Mc#hGMon+RtmwklTmt1!_ zgZAs;2H{20Sw%zqiJ61i(N5V#(DHguQuE*4GApH%xU3f_?6-~`ue!e`FE4GH1M?O0 zpsyz1zn=WQJctAtyFWMKK>&%AB7gBqcwj8C4TNpt*_aeXN()*Nx-}VKJ4;ScayV(s z?mGaV1wA46PL9J~tZ_iXbv>PJA!H0(T6oHW*4VrireZ@QcBuf%4OfKcya1kuQOGGR z!`a%aDB5m0LIKvSmXys<5*)YP4o@<%y=pf#NOsrpEHH%M`@1yf4JbZqLK%~u zaUEA`#|ofmkXV+XfXJHh3y(q>qeyb6U{M0yC%AI)RXh@PHLfvH2>@T)L z8lrWh>sJS(Pf;Lb0;&zd{YVu)lF!IJ-8L{&@^wIS@XC|zGwK~Va41@h75A^btA=qAZQV8l-GVQU9n*=iSw~!a8E7zzJjSKs zl*Cw3**V)u>I_Dpj=q8>n^G!Mu%5=he(G%k+X#Ny7-4g6-!_3GOg+gYFIEwk{WtYz{#be)ow;YDw`fec)O;)2Qa z6kBo;aSqg$&%TI0DPd_x18g&^$==40yr}*DFv%H-*-b7Gu$_;@?ELd|QHssJxU9m> z-laq<_yncd6(3~CMjGcVn)|SAtPGQrRhujqjgG$TZ-!D(%0tBpX=2Zv$c**Iq&gc+ zn2lGP6V6uuR_WN6WG>NZ^`RH}{0+_dqMQ^t{pzOwRQH~nVCV#tgCM8!b?1I-$ z!Ub+|1a^-Y>8wqY`~xM1%gTZ!SuhkKw#+1e2z~y=bc#}ZIeB@f@BkE3i3X-cC96Go zUw`eeE-8E~DR;75qE}Oo z-d}unDUZu+RfBGFCmSbMs${@5U_9P@-B5XWK9ZuvT+;2G#y_SwC6eN^3SSlBH>`I$ z4;4$Ii;UhnY~#-CU6yAe3u@0wC9Q?sDso^!%kRW=TTkS)lDY$)ZQ!{6s4L$bc56=N ztuD`Ysf|b!4iTp*GphzJ2ClzuoiX6YmW={7w~qvkN}<2d2=pC^#(|Uh+q}LzOI4*d zCA-0#Mn%&;QuCw#d+vQ8da$FH4wVT4F7*g%Kwhv~A$q@Rna2KSLM-wDS@2NGApOy4 zgUj7-jND}>G$L~%v7XadFBsmWoVDkHMbv@DJzv7d9@A7lgkzx>{Q_(({;xnE&4rJj=7D`fsSJJcSw4o-c+ zd#?_kIeX^oCT@Gjcf?=?m}OjITi8x-kxcVg%!->ZzKO>Q?4fi=_pIDD#MV+JSmtnO zaghxk&vLA;uC?6f)Sf?Qp7&m?DOe!VCbUoS6=wc+IDMx0OqkTp==P-X8O&JxLlf88^-76V42PS<$bX0=S5O<9`x zqF~GG1Pkt`&oJ9QOC`p=DuLj@j2FuSGvY9tT3^_o979)R8F|z%;DH;v2n1aR+neGz z4XL`CXUVK41C`=|seBpQ^p;?1zLEXVp$ljLK%^PsbWx>JHYc>~n?u8z@jCSpfxb%? zs{XC~W8nm!JePA1DPnMJR4?YHdcnMAwj^W0FQUp6$lwhR?ivHOyI&9R0m=KWmPJ6- zWs*i#yFn8;n!d#Gqx1|Gbmn1#MxAs(qnnjgQ)R$OiscWWa*Nx2&_)< zpuJauE~73($VL@Vy?c=Yc)37W>j>%rbG|2)45aOG?Ax>ro%&XBVcjq zSmV>3_hhkHr~Ax>jk8-9x$8foOJ!F!d#D(v!vrLN{VJLWSHeul;a)y}C_C3${GJny z`v?2Y_wkAzszDVCan7%xvJ^*C`>=63BWDx6HP^u=b7KlKsnCU8(W8XxFFQjr5ekzC5}nB3OS;^U)5^0a$;FRgtiTqS#CDRnH=Ku!-B3B zg@j9(ze>`E^vdm$EG+pN`3kb7T zo)~j`z}X`Fo>1^U7W(;Zaso5_Q`@&9W+VCZIWpx9*I6~ax{a=COCO>o<+igsMm^Cr z>J&Z6Xjno=b>q(T7x#>eq8yi{P5|KKo3ccqG-XiJ0}>+A)8G3E1grcF0V~%zz>g3= z%s5&D;<-P%XF@cb#d?&ZY>T5}QWWMg=(1_xEc~XpEoeUy7brp$w4<Vu2N1+46%FP~d=6inG^e+(*zJ4<$1}5V$qoEvubZRQ zG!n1si(J=Y{9+O{wzkRjFcK9wzH@UIjs2>yHb&Cri6YVz1ngW=-cx>kVe+@ew(D6p zI}>&O5NYc~)W0*}rE9*&Drqtp7H@f2?^?YGD@L2wU1NLXVjUea;vd~);xP}0haJgd z?2q2QZL_A3k|_p1`9fW#KKu9?nsKczCa2LTsTKC+fSD_u|6DM3@b^g7kVSEWLMI?d z1)l;RO^&}*v3fBzl465#teeu&YI)=CLdW+Uj%wxTJiQf&6}DE_G8LTBP8aH{*l)Jn%eP z)jZ;-AOqv-2<$WNat#4$Deu-3L1# zDr$-uP;zPr8ED16t3aA1JZ@Gy#}nO!8j2n+^VI-47~;%FW@mFHB~=gEYHItX0b5#H z>!)hu$uavjknMc1LW*Lo8yGNTD3*ZeUI1P@QK2p#)mfP$`p~#^tu-L~W zer(a0nV|=?Vx%W&jK~DeDPRGnfgVD?>@6pGng(tT zaX@wQ=z>=ZcPkzl=Lt;=@8X#KX@dGa+6<+*cT2g!%kx)IFs?QCyD2Js7fbC@~!SqhzeDBrVLP~>jMl-J^&MtSaA z#(n=o?}bxhI1XQ#fhVm1=XYLM6GGgJ72uw85B$4LLd zTYB56II+-e+EMtCJdjoir-32aysW<8K zmhPN)ku^>baAWnVwTrIRUAm5#9~XCcNB1ocIhC%PsezKobm2O^Nw*JPqv`k75t`NMn>pN!KrZ=D( z`hp;EVeK)=y4fGwX!S~Ea5;KVoAt>M$C#5Zik0DbN$EXC0`K=mpDaviS}Dq=#=cW% z?A4bZ;>%Z6)A;Kkx71o~d3Am+V?+>tHhiE>69Sn{7Tm&+qX$Vq3h0>8Jhn1XS@WBC1|P?dPgzNMG++D{ToGl|DFeZ zh!ZSBQqG}@s^wd@gVWMM7b3Sn)pq!iyUNZk&-{hevRT@wn_vN#Oqth`mXmUgHM@=1s$h^IQ%^yCYzlhplux&dHA|H_($>nKb!niA;?kI$s6`T3N* z`MG_vL(Q}Z41?CT=(mU_tcRfp3M!bQhsVg;+Dd*u0=MF}_OjvwEqzjz7)q5l*1~e^ zyU5h_OFsHXVVeCvzpWazaYGsxwUvs&PQ7Du4+!Vx&a7JWysoT_p&NpyBp8=iDJtvI z&LbKTM@MZo8Ex+%DqlN~Bn-WL&VnJ22p&^B7B#n(4ZS2~lQrXdXXZAF7F)Z6|KN(+ zu-rK>;)W*{s(C=&@n4miX`tWQNbgs=I9JJ#n)*Y#RyT@9u}>V$$Xtxv?n{@-Q>m;D z;yeBjeN-q-vN^dXTpZm-7%#wlU{m%n5dA)S`j2P2uS?jzajizjOD2Q z*Np^WM@KtrQ)5?a2Y|4dy){78&e|N{`oE^RHMKSIM=(Dlt0jSR91XMkQiSw@T7!Xf zL(JH`OknWVP}I0sz#$n{RRl!-t)y$h&<5_P#+%N@E=pwox|#Z7Egs5o7k|ZEmwRzb*hu^hdd@s;}%JpP|+qP|V zvCFn?+qP}nwr%s&*=w)ZvG&FJ&rL=~Mn>Mv%$egI;~5g;S?Wn}TK}j!58C+KEUP3* zGnX~@6T_?k6FqjBw+5?r3{Aw?8d0cP!?|!(P#Mz{%a}?I6LD0Ec$w)jMe)g7Z4V60 zqqA)I7qUCQU?GWsSOeGvkAeDgW8uAdqT-IYh)u~e%2Z4nQc7X z{W+oCjvh(Pnj$OBBq>hZ6yFMn!5PtV`>2hQm@ulSf(dE=QXK4)tb~0~a*bL``_UxZ z2R%OHOOU*Oc2|y+^^{rfe5VmlQI$)+!TyVG#;#2C9-t z@l&nkR|i2$Y)eu-qEL5!Ap7~7(!{;vjJ*Y@%!vjSjPKrpoFn9?W51wl% zF1ze>@=Aa>N{X}iZ1l%8Z4vGuR`CVhQc&S%-~6fx2cTt}%*8>wrA_9x`mbduo8nub zjnzfwP<&DwJX~LK>ht-q-JqV;2+hWDj%fk4Qt1)$W&&=;h?`_!osHk-Sgf(C_-O#P zxe7dbuwxJ!rmO-p+IAgvlxEAt%yUhtiXcv=tHd&iW|CwhQCaLKpgVE!4ONuxiW4bT1jZVonMJQ;XJSrQ3Q)yDJqI zSfp1rq9m9EL^a>ViUdnD5s>-EBB@6YGCd(~!JSJIi1`WA1dfgp7C|kuCHOQptV8Tp z26kqilbKsQ2JH;CNIp&dsz5QWW^N}_^ zyF+S%@yKZFj;xkRx3fGVYL_E zvyfg-n;?=Xk$n1|^~ zE|5588Z|CC7czm&MUu#QE>`hcYacz8;2B#-5oebL=_405lclpqC-6_!I*r;y=9+_# zF8BjXm~M;pp-a(qx}6UfcWH9e*D9TU8Fk3}^PHJaISixrN2nq@U|H%Aa2vcczS)Df z_8)ycw91n&$_p0#zk->W$L4G37Ox)NABo8kp(AyeGxMlF?bVmH%T>~dKAghpJ51Zp zF*_qk7>cZpEBQRnK7%@K*3?<8%2N!&iWhztx(UfbcO#*N32^siB2-&O7R;Y27ym8n zf4v!01r2`T%MI!iyB%)|+{{Uw zbOKmZ?6GWX$cZR;w%cbZWp`q&KW2}2LYh98%#PjKY#WAjeMRd(Ji>7Gbw%5r2wLq> zYBWYp>+{eW!08;l6T4`M2bSF+{BkSOg5WMk6oOh}-=6O?w&DNe>Pa2B?>3Xc&pLSz zk>TyjJ&2XHX#ji=jEcIPep;TtuNI%EOFcdDihMIp1*62HzT@uB8G7J*9FC*0GEOrU z6P^sHbK{66c4l-Poh(uqg1wmK)qE!&_kGmlC( zcqNFj-oz}(#EgS>jj6Lf**`H)(HP>I>MjqE=IMD5LSv?XuR{FMUWS35Li-?lCs|%6 zV;{K1b`Yw4!SpOqgI+eECmtYeS&Itn-cuUke#d$~h%oueRgsL_$ibP8H5a=@hUP(S zd17%!6@O%LzK+}D=IGYt?4H7iq>;YVOdGPnj_mxK3ANkZrn(<3ZxvF@C3*bOO|`cp zoa%5vZcT%@Q3+=!TU)d89WZr^_MBzb|KW{jk1+75(bWS8WlOS%*~6G?W^OcWJm3hr zKIu@2;ZXa8UXwpvq-n{8uHI=^Qjxn7k>il%!gr_BD-uu|feGo(f8nRD7W{=nco;7t zmpq^8g1Wu`H)iL#aoykH?axO{TDmA(+v%6K=e1YC?)SV%UcUuXp&iJ@wQo z?v3aN`tUc@{~RMIsW59n{frT2sDC1J|9On?e}+r{XO1wb0pWqQ==$y5X42_aN26Ou zS7D`puH#Q1Y#d>{I@A|uNkvE)?>~DbhGEfAzqR`K+m{F}km%qSq8Q%q<6jv#;ulF( zk(|<5VofVLunUvz<)3p1ZC+uiLwyKN58_ zU15739k@b(kj=>u$wVOZD>Km`Id22dF)^f0@`vy_=@D^iE{$B2c>fOcUH*|_$Q6xi ze;5hjF(PWa{A9^B@<(Tk$Ak!cgz>zG@8N>s_f-HF7zZJpV4474&i** zqw-J=TvqENcVyQYxmt@P3Vv=P!GXFX zy4$H0*NUG?xH3o*IB8d*?~t*NAOyc33IBd9uI%5*S~c!Me-aKR>3bwt=<09 zUwFzI1;NaoLp9-&6t4J3Q!KI5BtbQ`Y+=)5AA?$b-I!)I+8G~_tT9UG)rk7E<&3e) zM1v?bEx|Z?6Y~8}5+sZ|M@r;cMHMFG`uN=6gayOfd-8G^`O9A^2s({2)wVmfTF@vJ^35 zY03?KO_YD(w(4`g4VkjI<}7L$C_OJr)uGMf3pjzB^vcW6XzcNFNu~U6InLYdQ=hwrb{}x`Q85$pE^XB<*d~K4d;CgjqRF z0Av}Rf763_`W)?v42YOEB-D7z@w7?3kwZEQ!tO_SeAjPCqTmJRK;7@a@ljiwEaS1I z1``m1+!e=S3tcY;HI3ZdDDjoDoy`Sx;hXuAJ-{xhUITZ0;mhe`KxNZ%+p5vjKs*75ML?6A)<0C`le6jR^x!kv4|#2S=NwZ_3v|P zCmW!rxV=jDFC{|49D+fjMpljIm{TPvXoCINd^m}>{}F1b@FH03sS4@>z@4Ewu&?z# zM~wPbKT=mU9xC#Cpb<#KNSn7U?{$=AfpBB$kI22;T*`=Ue0uy{LL_m9#h%C>0@))Zi`M8p z)OPg6`7v#N&`xg%zR?mXa!Q>oBoMqLH}v9cCoaAkQ@H*6K(ZsRzCY$|C;U(@8U!Bl z8}d-OG4OUqe?u3A9dfS80D`34VU7aK+Ir*Lmej?5Li2c835jmvoAnoL7NMer*uaJo z93{oJ1pQUeU3ccclDIvUhi50vP(cT z=Vrc&3OpKI%zCL)HCimx$=rlCDq;8~NsmKAHz2;p2`Gjl3RR@X-uzSFguc8_%uD;x zk-OnQx^efCgb;$V7_-zLgtlE|wqHs+(?nAqSi5+pXD|+L4F&qR%G~w3i^ah+TyB zE6xzZCdK43|2W|WQ{un#2MXHqz7b!tAfNnAq?(QNl4q`=KKKOK6V9RxVbiRkzjJ#i zUl5iTqB13fA|kG9HDxF7cu`&;yv|Hqlif+2 zfEUn^-=B380$w8b^;Ugx?dpR7HfjgO_xDHvjfg^f883Mk5!{`%$wHiW=; z`3OFsLx=(j&k}}Bx}oV5&8e>tNgECjmy-532*e~yMDh#$%unOYBruv4Rqp@osuoqk zoKNBG+t{UX80p5)6pk}NLTJcP9xb@L0_{53jYz?|V`4{hDpH%s9JszaI<$(E16LNg zRT0zBu()rSxO7|4toE5+vc~q8$jc!yx7%`2+S-fBV$dHwYkqg zS*!)EUfVuPxwDLWS0ULjUlpv|ws15QIk#az|HnNbgPp^?0cp9}>3)2Lr!8*5+$J%@ z(dM?tzJ)+)7STq0Qx$;Cia1KxYN$@5nF&O&V27W{BpNxj!aq+BMwQQvQol*4^wh{a zkNv@}@9BY4tU#VaBpGRFw}7^ws8T1}tbi4tytH|Wdq-Z|DDt^sn@n}v>7oMeV<$Cr zK;m47(`ZiE3**&l*7p^2_u_Ufj?!KbRRiX)7U+d9kmZ}oGf9GJ|VG;zNW*xL$ zX2X$UE#dT!;j-Xj%Rs}agMw!oy4sqwA|omNRw84DYqLVjk)1Ub+bN-TtbHP7HXZ|; z4$=MLw`60YlTh>9%IQHf7?lKUx~2H8`qPP4%E-Rlb(6k*mtueFCacY#T-XMCZ6?bJ z(XT#Ln2TI=9Y$y9<%x`=08LOCn;?!`{nbQUeR%ZKrTr`_|5OZLVh!v`$F8;Kp^ON6 zRS4ecgVwiHbvwL?s}JkGP%=YQv|#pfheI~$coV}&++1DybERB)BHhz?Oi99}$t+fZ zD@z~~CzZ6<#l-=mp|kK8GiUX!tHheWd8qZ*E=$jRJOfgpK~7WZ_6 zQL9!&!IytY_-o~n*X@k^7VY=dOtK?bBpxpqrxBYu_avN1Jb{~uulCYiN2Ow2OADi6 zg&x~7m=!kxz!p_j&l?veqinpZJX*~p-k(qD6$3{_#o?vfYQvZWNzN8H4xFN@gNsP> zO65#EEdDqs;?4Mq_+b9cNKKQULq$>JZMgxvY-dsR0vN$kmbS|=nRke7q++6{I*~)b zo#9ve<^~-VjD}#B2>y&=3+RR?{$3mu*ppvw^zC{NF&iLF=d~rqY?i%GViY`9-aG(# z;#GE-Hp!!5s}zp4TuqhgRHikG6YhB0p-!mFJA*b}v1`Fjk?ZHTajj-5uT#85Io}~j zH@+;eun}-oGI_|7ZG$S%|THjOk99N46O2uVSOntNqfgh1U+w= zMRM!qtw-f)ggNa~?gd<|)s+^r47a4A{p1}`B#(59hsaaetRj}cz3d^|r3{Tm)Gx@E z`K)MyU#)&!z()rPh(o5}d8rky)z0ko?pJC4^1O(%19nvwlbgR_`ayyd&L=-; zvrwd;zNqar5!%7xxDrMBCNo~OTv3$MOTO#@#^zo$PhfFzl=Y)1Z}7A%_U2J^)>xo> zKJS}Wm1FaJzU~#7vw$a zZGFov@=1YEE{!w8w{?N_7vKu`EI0FmDo@+t9{IpDCo?7BBQj&8y_6NqZq?}E-?7k^ zVDkZARYt@|Cf10MCznP}Omv;r!HR~6PKt>1qOlp3H}YYmSw)q(8wxcD+o+(0=L|Cr zS>$;^0OXE@_l{xEfY&YZEN`JiW98yUF?wbu)Grr=bNlPs<#6xOQEg(wED)JH;Vf^ z=5&tk+DUr4?C#T}FtaeVnNU=I-8rkyB3O zUv6`m%iQ%SuTT1^)0{e-0&pT3M>IwxC$D3grD3vSEJJkN&%#`Mo= z+s(1(%e`3#-mdpv-}LK^y_tu4U-w>L_fda$(oi;Q8Eey8x6$L56~;DKE|(yM9WF|3 zL6|&0aS1+*1(^@#Uz{dI@~60-OD0^F#C6RVz|= ziI3lCw;@-{fmhGlLC#1NzLaZ8yFe!XlgRDRi2*eWc~lV;>Nl#Ruh?b6|KpBu`Rvhy zjj5j>4_X6VSgqd}^an$Iohd@xqG!e68h0?^cg6m7Ia>!JkgKI2*gMSx zgW~G=t5RXDx%>bnMYfZ{T(CmcdwWkpi$mVmYvZr?Yo@Q_aL;>hT*1PC?u?;VQ{#?1 zpZjSATW@Bw;=fz>(xeOs#^jvvC4fZaAw&&-Wd~x7ztmNQj^=;DHxfHwl=6HLDdZ(x zrv!UlE9P#@iDfzB^l3+R5zUkd>EResIy_({5A#peDTq;a?uOwl6(%xsY*or!G;_}7 z1u$2;|M6irn%35g8Ri1x+mW5t!vD$?%^X6==i6F#qgX$%h2PN=zHd(>IX9)OuB8rl z!pqP038Oq%@3VreB@kqz`R1hKO;!StQ8aeGH`Dka6GGxmE;KV%oj;h|7=Rk>SqK#F z2+*QC*fT}Z+M^j+FUvzFJ@C7=qMoZE2#*cRp`zwSXLTVo-<0VR*Q7Z(#!j8+(un+3xVWGoy*uwP zxD`)+@n%--Vf3(W0Gu8BIswGQ2gmCVyvD=$N_Wbtq zBRe;@_s8cr^)F2udOz|K@LUBwiZWy=-YVF#+YED~z4!Rx#)SMF^Lp!(DHRaFBz5N^ zcs@r!2p>#Q{lB>hW^8NX!B&jGKPW~1#`t=7X31;bLcY`eSaqOCF3yZOs$xyYI?D{g znSpszB1gi`V3c!uBw_C4B`TauQaW5XvJ%O*CVvf)X6$f*s_PC?P{|FG0ognqJotEi zs6iu{=6XVZd@6+*MtwDi+?*oNy}*pKhjbO5tfb!kfiB%?Wa`D)$=Ja4aVrEWA>n`| z9f}(0alk@RSd-z=9zAD()=sxxwUy}M$JUAa1Ou<(j;>x)3UGI6*7wDS$geE zpNp&}E-)e~-~nYz$DuB5_k>*bg$@T%joHb(x&7L(IH*RXH*c2ddgQPnB5mE;ILtMz z@!m*+@}`4siJWalAG(a48{7VNaL7joVO|Vzc}y9Bu@Ws=o~jU|wg81v?I{dH-MrfZ~?Xln(MeD*nhenI2VC9s7q1csHl~8<#m!ivnE_57r#qouI;hfQ*z&8QTVHga<{155+Lz{lYIDJ z#sOPoh#;y!PVZk-@d@zye<780Bi*uNQV!|UbN*s4Wl1)jkYmxh#0}j!_#~jxStKKj z2s}5*AIUziREOzy5KhLcrTqbFRZw{K0VY`#Km#%{yZ5BoXXTAB9i}|@6#W)7KHZzO zE;2(p=WrBUSDhebE*F(PV(JP@A!lAL*Wh^OHY|)^v;rBwzEr3Q4a>aS=57;s8d-m! znH)_!wNB*5p3L(>NK@f3A#_qN7HM`Dp=I+68f!~@xIA|}uib3_Nj}nCPcB^gM4SAX zgrHki%nA4gZP>LAb!g^4Q+k)O&hk`)YF(sy`{403h;lu}(o|pqo9~tF6fXhOfxQl32RdT_G;MH7v(%VGxzcJG0YjUEpz?ggv@>Gn zWQsz#B(4LHvDZ?NHQ>MjuULsYpTs9H4PsdKXt*ZB6AD4Mm}poQub(|!^-F5L`i;&J z_{;&6Hlm;Dnxp8Q-Z6H%>*tp7&L_G>Nh#Amj^;P#3z#9NgL;`5A1QAm$1A`o7~_uS z2`M^|3uaBa#YT8V$^MRMm%|IPJgE?L%!%gz`8g&Z4LSIE zNJ)DJm^J&DbTPKU2ata*{XAETuBZfep8by9`#NPx@R{zgvqtit!R{=k+Q#Y{O9XMI zRYzj~-=s~z9s0E;<{(${9uVrO()+LZ8+?;}LXAU1sv%NivLrXMJ|?H%|K{QpUwD@d z9Uv0zRQx2rU@=~p+Wgnj)jS)#E@3LVFV{c}ORxXoso>Ovs} z@E@9>t<&n8ugAQ1y(6Y=G|l<4mj_&GR`fovMB=~MwgfRXs(;80El|)mj-{yN+6C3=U8ELeQdV67#v?r;>k;zh zB81@AGYImr+a|&m{y9({zzzK|!2?mRl9`o{C}jg8h@WL&T91jLf^J3^Sr#Q>u5# zu%T?2rs329Hk$N|1_Kx1u?a=lRyIeYInaj~C}$;ng?zI&)Iuv(Lg|xM5QWX-NIclX zJ8HfeF=<(G2bm_h7%;;S6WB$*1*r-&q_?z-@`1)cuLIp{kZF?+^1g?K{Q$NL7wNY} zYWmY%;6}9J^AZu5KxehN&^QH+CfO-6%B&ni5SfDd=7maa)oq3a=d_5LJ;%DJ#FBiD z(elB6!IM%WrS9jo8vW!PGQ$1v7BNVT%fwc7ISwsVB0s@K-@*JKs~Hv`lL6HFOTC3; z@U=?`rc(rIjRzn16|F&?TD9RHa1V{@S;M7O{I)F;$|Y$E3`PM4 z@F1}ZK5T@~)4z)~;=`gdBy|6vr)YN|Q?PBnro_7QtJXsrQcQ;@W44VLVo2Bohg0W( zaeiEmA=q%Nz+reb>X6^`hZOw>=6Efkr28dU$y8 zsM?1owXL@0&;c~qn>8opDi02cDlBp^Dg)3FsnYF6^ZA5itAAA*|W+aeJn#ztBdhLsuYjI6}l#0B~8 zS{3>mD-`VaTN6(d!YP+HRqj;vA0(Ax5LRgNm99w_%!VutQ^P!2|?u{o{=v=>4Vk~EC) zBFMAZEzLJx{Cr9h%0A+v+zTk6$lfFf&70C<$)rh>uNG}}6~-O;2{9Tus2TT$l3kr* zH*S2Qs(1MJBo((xMabZp)b*2b6oNNHt-2x%7sdrwDtGmXU;AB3s1!l z6{INF9oA7kGjI}s!2k_vWh+kwizb+k97gB!YG<9miV2>-DTu1xBcEEVw9;6fQKPLn zuwn48$e%uW!N@W`3D~cV__#`_rcab-eNxO2<3g@?OAOInzJ(#)3z|=7Wno%uza^NR zJ8aglgglJ;cly$_v8&UpZ)MS6_NHv@k-UYpi4&RHiQ|FGJ98t5&D$5Pt|AI)yy`n7 z7@_s%GmF5ae2Y6bHae6?WmvIG3eMdUvX7-D%6WWg7BY46b_8G1D+)_$tu<%OR7}N6+kH^71l+he z?wk>BpN^q&%M345-8ZSDo8l&zeVO5wK849ry(w` zbVvBzC)hhvnC%NU&UJ{XLr-4ja|u|R$12CPOPojE{Ft+R*{7ycirbzfQOuKE zcJir4zY=NvYye6VC-=kzg$Z-VG*CvBC`0A;5o>>0$Y0=y(b2=8#!|r8cB&iUv5<5; z<7F@^ys;r7C#ybq=v{X^HDhe->>`5kTetE{0=nS?xRLNH!+q3Ry1f3EQoV5J!khop zcLfRXyaXD|fm!W7LU-!SUBhmvV{C`t)w-pKp>&bdE|*eEoELngaD)v(s|e{)*eDLY zFtUXKg>IGshW1sCrOMy(O+yX>5}mnn*HCI)RMsL^x~U=Hc_CVq!t*um+Z*uerCHdq z1Kz$TM%YbMcB%rxW;OcyA?gn3#|7R@364t_GC6I64Fk}0T6u8;lEv2E1aW*h#QIhd zf0h6N6Cvg{h4y(-ZwLzm*lje!zN%1HpnBNO#I2N-2zHO-Hgp17eAM|vUR$wmG_}<-#<~$p!#D8G- zX!#zE{Z4@7Ah+~{wSZbmZ-%$uD%VHFZ~wPy;ga3 zSuv*Aty#vkp+OcMZ>#*(=Xqjv-`3HpGkH!kMfrq$d>zQ`BZl$@YEjr}m(VGrNUnZLbC>w%1@%kX{_vLgvFQ$Q3gc#eggwqkr6AEmobiOO7~op#Yz7B zQ@+j@^bQh`G$1MqMU~CGP3|lPL2flV{M~j`n(XLB(cGgEqutKw38pKhlacUHYx0^o zCEB7Ed08J&HEh1&1Ilr64qNxiBpqc#9$}%tp`QOhgv@}wdaaL0Pc7d6kW}YM7kCIm zN@`6KGAhW=M8dB%FJ)V;xe`51=E}Z8?}Hi4HZK3D1~`}3Ylkm-X*3y`04fu0ouGNp*%3UU-ekSiWxsaQRk zWk=jJ!Wd$w|BAU-@eI7H744#kcyTZ_&m5-tHTk<6)3cl5;t)3sFD0N}u1AuB-Z-$Z zB%*RRV@{KvqB`xTi@$M#or>Oe2Fs_b!zL?~QAp)}5KDOh*s`|Go3NN6L#qmONJwlz zOC6F@T-A?$%jXD~=aD(w#o?30ruBiAg9~8gcFiw7i_uF8|3w-9my`k%O@?4U=;8AH z=YL9Y#NT%&_dhjitpvY*QT*pWk^dDN|1YoXp!$!i=Lcce%{0l>UcKrdnI3?1nraQ( z?uYkR0)JIOQyMM}u>gx>RVvPmrG0$LQi30upHB|CgP)xXo_!#%rhyDRL>V4l4jvAk z>$VG__2GR>>M3O+iACM(==r=O_1bg$`RkfPgwsc}-s!9Po-41+k$riKqMi|)ZlDjIISu0A~JQl`*Fgnl|% z%_k7(XP8>VYmClanv35@gx7TYKoB~pCeSvwDr8_!p+DpdS#d?)ZWzc@IV_rY8ek1q z#E=h5-o{Q_ouo}tn?Y}WYU$nA5R}>^K#(UD!(_QM(!dhxR0Oh*F4!FD%lx4Cc21fe@+Dxd>)>Q!|2}(2!_f#PnD2t_{q;1U4YixJ%d#hs}=- zgN!6*s<45wg`A$oSczWBu0;gr)>38V(CI-idu(XvMjN#cGn-1k#?zA~ z@RG`qBoOI)rAjFpxB>T8*{&5L_X=Lk!Q#B29?9Y2%ktZAi2<>5p@83(eI_u&waiW6 z4$=_S@tvefTksWXt9s=Fx0XJ?E-R-;)DnO$rjgLT)mT#=2y)%t2WymiKktCzg@sP?9mg;OKXV=}_Afe5vVi;E9jvOqYBiby~)w z85CvmP}(zmY2gz@-$cI6&-g7WqEo1v+&^^gp|Gde62W3voS_{k+0#124V|6z0$pX} zU)(+d&?L}#A`kx4{z(y9zIw^{HhJ)iysi(vB_-BFXAdeu2oP%RoJ9KLUZL(f5SbA< zE+MON9P`YD?mH*8)(co{nmQ@Na$ptr2%MeNgV!_*Qva9qLeV8Mq*x}CGf1W3$IxBL z1z+4-23gC)ol751{9j_6z)n<XYpu$Fuc-RAxnEOopOi9*hCri!&J<&=VBoHXa!8Y<-gJ|NQT4n_H5n$=R=>bW1{~ zDGt*yZ}k;1St@y^Bh#13u9k>=k@fd0-TwN^FQE z8l_nwl?khyBPyJ4OD{>jkhEF+eK{>9%z7z?kvjD!ajnd>jp0_`enRf`ej@?<{<}xp zSFMB@%6VB0 z%D3{U@}wCW$VEJr>F$BiM{x?U+5l_ypu$iT-@|u+b6N;E)dnkNCI^-YRZ+YyKpW(h z11$jfJ8*;kBFdgF`HC%iUK8LYG);n4aROB%7a3kF6gjTVp&fqzAv<$#KJ7fP=gIRhyPhWv;e$F6Laa&B|Tyg=3t z#ntatx%*omr` zWHdCU2Z?G3Nh#Ic`%k-ZFvY~3KJ(CjG&I{Z^ojFh%hV7?hxqu_`U37He|rd{1G7EG zh=!t`UZ&(@C~aZrOQMeA?oS{s{8DfRsjd4fV)law>ds)s@25k$QeL zc#GyOf~7426FX&p;pIqJre4r|SoLT#l3BV)kG&O~x@l#oE!gs_A+LW}{Grn~1n`!k%8nQ;U zLGvF|H`P+&EL~A^zJ`=0UyP;0Zjp1Gbpt(?h%mZg_wV* zR5^s)v?%K+99;}hfGH@WPR5}RqCLZakS|XrrFx}OFT_d+( z#TA<#(~a1}xMM#BVKp7cob5ilva4||cP#H(P3cE;C%1J-0$TPO+UJblEy>r97sjaBwfaAn0Wa0|um7kHzZvQ;?S5a5 z?IvMao6cp@oXQBdrHene6}SUVIi<{%ofOh7CU?C^9FfJa*||mvf;T^TGy37&)}U~B zbQilxNBd>v^?0STJVCJ+@}i5p+M?c;NzU|0<)JWg-q-{-2a4vrNtAD(O5k;WtOz6& zUhSm{+#-p)0}2h77F9rHA>NX-Yt1(5#asYHbM z)P! z={;LzsawC$gf|j|9R{D{{@Bqf7@jo z%&d(6Tj>8UT=akKvn!P(6_NPizepe~eGUPxWIQe-gujhE!%6Va8fqxGm{7p1xuOa~{3eN|e}79qUH$&rCG;VmU?%V@ z@l6TkSYT|hy0fxo-=Nlz43yTl2zrZfD9kbmAyK514$1H3%MT?Ud@|E(GvSSstxAdHO}aQ{J`cMmc^a< zuySMZ4)`v zMCvGNEJdbr$TqaMM!A#<8$lFT(87xGNI7(no)4i>8VQu%NN;5TJPw*VxP<*Qz6_yp ziq0Eo&Wx*cqxx_TR0N&G+dD1mCb6EH%YqwulA}ytPzOc3iV_F=?j)4KBntP#Aq_uC z*&<;+Ext;vA_20`eFzHH6_MT8-ZapiVP!dkz7t=3$K$G7_fMXI*s>GF@AO!st83Ks zs05izT&?@w`2)Iz*F||TtY!aP_UhKo#-4HgZqTbwhS)_qJ8JOG+@&Pf84g=g;XU;A z(nvEy9c3;}In98%Z&G3szqy2VG7s)*4=cSS{7<+!hLmV+RTuT(_bzafU7^ZZSwZaI zf?;0Vy?XK3`Ojp2wn7L{Sp;`l_|d{iv6YyfU`?1oQZwG3Cm&MTzw0r4%3DN|b~&u& zlwvxNI;@O>hoAK5sA9}aTtcsIW&e8mKizUWh~5B+TmTGamyyw7%EA5-+<<^~1%Z1m zQZNVTIU+TKkMhx4@52hq#x+CC{ySl`VdW5{08Ky}^u=kO;O7+7C(dEFrJqed@s1w< zH`|3d$75-c?N`*NQf$lHz~}-$m!~OsPBnr1KUbEH8A7bcPuEoMPm?$Ee_mPtH)j2R zXE{}@6p>Vsy{zj-1y)AFJCH2^zbz2`G=;;6Lllr9fCq*I3Y!>{4}vOaRvnxTAB#_L zZ^Gwm8Bv0risogVig zcD67h+8XrTsCGEe18E!>mg%`m(Vssre1kbbj4v^{$0x{pDo0agE=O*q)?)x%Gq&J+ zXo*38_dnYt)t2YaO*rvRLhnHRHwc563SfRiVr>X8`7L5;NoRIi5(iPbsj)_Fw&H?7 z;snFt!a-dF@)V z_s?XpHc@U=uKMZMnk`R69BPcvGfG;^lBPN9*=0&_{{xWAm`;_1EUrx@)!>daHW=Hf z_@&f;>Sa`_@?5st+_unIe0I7T~!9Yw~#kB`Vl z8?c zVG?j}9``qYFs%vdU|{M{z}2eD3KtvO=@UJooMF;>juM>tK6n28`U+Xde?|0^ULmZ0 zp8UUntvoQGk8F^d^6%5Z~Dd28`V~V)1kb$@rqvxTe#t>&p2d z<{g&Jsng)BuaK{ptSla9lNb?!JbG?05og!sW9_TX@0aN}&0jb}+XR34%l%jYoHI1= znhQyd38m_<3xln~+~<%D*$hpf82!UmK z#bGoKP#YGUuS%sSXewS?vyg9&>*^Adt4-+?f5+PrG3uc}CdUe4BzYBCCNi$T$(&}H zEz5-z=aiWh`a=@BB!#1qJ1H&93l-$;QHP{Eb2P2RudY;PNu4>FNp-6#uHDCj`0JBUKduZRaaG=GYy9UNa4Ra%56UzZe*E=yx#no`NAEXKOD@@OH1;TXSw zFrp~P3p0Xrkx9%V%34pduEv3*Cvok53I#S9+bZgQerOA-2La?kPqy40F97MSwQtp$ z)t!0kMu{2Z1xz}FNqW&0IwJ!U=AgfeSg*TM#7;ub6vb+R3i64bQf6X=jDEZMgMH|k z>^=fW^w_V+r5iVB=fUPMpPrPkVLF-`K}wWKfbXA3K{^CzE+rgQTa;rpED*Cze;9-+ zIwn=zUXTKSR9Q-&aGOfuy?t=&;^B#GGK^?;U1e$Az)hCRJTesRV@+SSoGm(fs5eVF zDughF4sKgeRa7max>(fl82~WfGKQGhoM}tlj%V*6Nz!d#qBOCWwxE3%zccb(7AZl& zUAXu8@{1Xx@K#_}`_^s75{wBp$~ZiZsGI;S)80fyd(&DhD-tgn1SBX-m>0}BG0?5pQA8&PhYoKo`Jsl8B~8QtK-$cst~ykM)U zzfd}^{TvwTVR^`*umxc`zOeviuGH3#dZ>A@g&Wmb;uj^hFoAO=OLjA9lOUY6fKY{u zUJfJj+21A#fh?lO%Vu%>Ei3cD)(n;vG7wN#R;*a&T>y0-v) z|2EV5_Wrm?9jV(grqXfq?tl=#2qt|H)*N9oSem`0XF@GPIL5URMjq7B+ZG-dR_9+AOOmIh>X$2Gox#)(mjOb zI@-KAjoxiAf}fP4J8?Nmx9p{niye8qTW-LvV06%xB{<^XEvo~+yKE2h#YF0B)52j( z#?{q;hNOD-jD36#n|9F{e;5O+pm(>qWHhc|N4A5mgZcycLs;*7sgSGJ%K)o{mb$~a z`IftP7{b;UcfSI7+HMOmop&5v7Z&Szq**w$DnOS9<;6RilDNU+Eg5yG($Tt5QT6Sjmbu+|eRKgHOaS(ng!L9oa1t)oyDF%`WUfNRlC2-uJ!$#GvipK8u&Dr>%;F=m+i%AxJQdHb3f*gvk#{6O}+j6jLm^I@c5`EbdY zp=9{^g3@*Aev2J**8Y+$y4;uHfwO(=_Q&n}&o}Qd?G2{w1Bg#V#@5NRnlan5xN|7N zot0Lzxx3%>0dIq=f&h}QQF6C1=T~^=H}F5h1%R$$YoZ^xu=8W1{(s?r{10%gZ(wEo z-@xG?km1KfT@_Op%_rE4sxYE=Mxl1CSV9vlZh-(rTvAfe&n&kgPpM1?Y80;6%4K;I zJo^jr`e6#v_JUo4yK@KhC4&oRdzDHYEMnMjYE;VP=+kZM*xTgpc-uDm*T!HoITW4= zo(+K?QU3^}PY)zYGiHz|C#{e)J<+w8X1Q?i%E7`C+z&#Ao5y{SDK6( zohL8J&e@vp=rG;$*7^}ffho_Cql=K1cvuBUGfeK4`@u?ig@Ok=ZL{~&y{a0|Hx6*v z57>PP#nR~qzu9jNKua-bS>1WdJ6vF>P8Y5f=yvTj<;yJ>?1<(~>#y-`4Tz@dw;(JQ zC&#Pkk3I*LWKexdR|~HUku(!BSQUkSWsvX;QRi=?S{$|npyvMqKFUc=oj>X~>RLE0 z;Ayos_()v5>82ZYD}T=6@+oza>j$tPb$Sr4X9i^L{B)4Afn)w?tQ-kf4wC*hVf`~l4YTG(E&zyPK@;ZkMf7D6Uuw9PGiVr2f zm#my5fdpDR7@BBRfB5$zdPIWr?~{y;vq;jqt=(JVq2{B{)=)OEnwjmTGYdV|1P6OR)M=;*P!)AUciGoXxbD%1KTfQ z!?&W6TbfFUpF~o`)@8lwli^<|f`&T`SF>hK&~~_zGdZBCY=fm9@@egdfy3l2)|H8puN!Br;DR4 z)xZ&y0U(xYaKc~Vy>s@|`M?W^)?YyOzkmI6>q*M&V&DH^C{%y!*Z(hqO2usqt(=XF z|IuxtWVvPg`JlXQ=7Hw;C|N{Ml+Zi?32`MU3nkzoOW%o^5Aj<6R*A#&Mu3Oq@&3UL zvJ-HvDKhOQeINaL``Q3#8KM&b-2~(J#}ViYx|eL!aW_nf(MkC@`-m9J{Hs*PYPDEN zPVvM+={82$1ljb8iQmDnq{JF{bz+61A7l3xGCgr5+^Hu(XD^LjICQ72ZE}H&;o2vE z=Ab>%$O^q3#{X!v6e$13`z|Tqb#0MTzd?OIDuc^=9yJ6`;NArupZE;?98{JJ*m(~- z)6RrF;IB`KQ$U;g0VBq3whX&o*84B2=UmTg_o*L`dW#2OwvB+M8(O^O1 zLe>v=hxtYiQA_x)2l3hqO4+JelaN+H3^}OWq|N#Lq4PM~v;BCv+vg3v=e-3}6qW!a zpJXaGMc*xC`#5>LGu-)a3!y}Oo@?(dmU|F>yp%QCi6I&<2(ri=jX~swwL9|E; z+k?TXg^H_E?0u4{JuJb6`J>vO)st2u=uA_(##O{Q4c$iMLr4-5WxRfKs^v2W+FdqKYxNG0tF6!~6rNvN;;_nY(9un+eHejlyNT^g|Eq zN)&@v;3Ic8x>Yh^ZcjI!&n`boIJ{^wNgRTnV33GtH#K)3?Z$7yW0kwTGAOf7DiG_{ zddu9jSO7J;Hqty(#!D<_30=@>R;Eu70R|y`7|FtxexqMkjS@FzwQ#2gs_jV`abp`0s@*n1H zskVJfr&I>O?vvIy&2||tJ`Mw#m6da9xu#HYy!1vrbaZziZBe8?CD&u=W6^5!HC4bX zd|KMEOp4+*ieN=rdvJ=Hr`{dje_lhL@T+W$VeBqzVFYkV2~cOjp)4eL)Vqd$0Z6m) z_la{ENnnn%trF->+0Z1etegU$Aki<|su zt`a|eO{yEtqDSrGX*#ar}+uSA=1fobT_ppg?FMmm()T%`czmTktTz<}_ zw>W);bQH*QD00}32ZfRdh3gk=5SxpC+aKYYB1Xrlk9%L!i`Uolci3OF_RY~h7?+Gy zj$c`Cc%?RlMCJ5$WGs~j^L-W*W4}XfO3bsG5jiMJExOFISS0sN!2D1LJQ0VBt7-H003BQM@12)CReP8OaQ54`vA)MiRU=`n}txXIh=fLRHtR9$+`Bubp~&Ck!)IB;!{PM z!j8m;FL2JXG}Wjbo~YF7SAn}A_-U+@-CD_lkopzPja4hjR1*|H!hyC`!NntLlzRN`GUwTx=_rqWGQSK8}T#`Mv1P_;T{T`&0)3C`C*c zzt`a?#2MCK;aeURc9tUm99pDv)QFZ~Nv^Bg3x>bTidwxOyA)OW_kdOVA~-e(O*K)P z_q#0b8{|aYzyG;H^kp3oL4R)k3)FJor z58Lu}yRDh?`($7n;HHPNm$U$45$bXOtgsx-g6D6c$WUWLznnMU^!XG&h%FhH8X&I) z5s=Y>fQj2&LtVIb&4ZWAf`a2(qPa8~Veu&$yR*VLrMB?q$bh4Tie&n}$+1vfnu4IUP>RPxS{iOxj?CH4{? zN?;qf8EE?~*vwt`st!G4(TcFaN}eIy2itaNUlu{gJ0+KNWt%TAehKX7At9V%?36ET zm@5ygW?-5^#LL#$2@NFbe;TY9gcckx7wInGND`938?5)q)VDMn#QMoI5B!Zz>K@oc zm7@`?vB^`RsdOxTwWO#Nd`*^|`5m3^YGq?9HbmFOpE+hBgBuhfh66!sOf0+A-15C` z(qfCgC59t05aJ1wBT)>KgAq#V ziIz%tI6^iRp@5H*tI%V}M7+<$+Gn^>owN8dSI^KjoFeh`!O82>L;fNd>_~Yv#;j5U z;jk59APxElcXt@UhhV?tMcw^;li!4b)3=7e%jN__yQag2!ahY^D8=;F5qx^|1sHZ? zh?ugpjnhQ7S1N|sxqk+orb=N`l~ZEFT~=*+6pu?R^Bkp;J$2?@LzkX4UmehEn}LaF zqQL?x-s4Nl=hSh?iDTAj)4RF&UR%L&Xkx-Xi4spHR!3Z^;&(!CL6(V`OvOgOn4i_w zQgsuRFIgV7C{_CNYZckBoaiGhcbpRBp&Jm&2mbXZkw%sA`F?YI1{w=#GWp2E7H^lH z-noQl+*zs0D$rAfp`*h2j25Gh;Iu3j{Q}iuJdH$J-jN7{g(bUmC3Zf=hO^eSzV>e7 z6RsHMp{GFZHkF3?r1jsZ=K4E$nR-b?8Y!T7bg~UPCh%OM&Jx zNRYM4vKr0cFq!0L=kF)!TG}if50=dqXrGCRYTPDhI8{OiTgL{H+kv0~%BhFi$BO9P z!-pOl1}E()Q6Y#z(Z^*YE|}%k_wVZcb9Y3$jKSKL5`KZ*bX+xW3TFpb25nC-r^(}` zj;}RI%{Fb&%r}q~Xs2gnB5g0TYSP^lAMs1PvWx*DxKSAd^?Gql=wfkC=nKO6j4N(Q zTb?(RZ`%S0ddEA4w0Xguk#s)*wopI&4-w9c3;(VOro;2Nlk?9XJWl60`gihcy zE#wNB*1q5WEi?xNHXzkT@8~Y#-!y7HNU$yQ2#w}+O5Qmq*=lV-ULygKb!2fS3{d>PlW-| z#J*@rrbETI@ELjZNoee~=kt5MbQeO`#5YW)XfC%0qBf3@BpXN6j?Xq0f}nJl`UAKb z+>FQg3=Tm`4~?L~bzZczA)_bm}+=7sYNww5$j$C za%l5Siu=y8bBrJd_-eerS-#E?QT7%+#^MM$SzOKlKW2T;Pc%9uk)fBURq>g54S??i zsRzoC?DktDi%KBQ4D%77pmg+x=6AtfUx5}{fztkxU>h-+?dK`d9Ik|@D@OTKVkiC! zc8>d8`y+Z|Ggwr(RBMN!;|~7`cTRBU_}&A&^!bKEz#nV#mcjZn&gE+D8TDD3Ifh)` zcDBK{w?TIxB@ErQkI;ncO$TEev2GgD45yaI4q7(lX2LmDb+Ac&;Ty|58--C%++rvd>Z+B`+5Pi^!zv2FT00q)bKDw zh5Z5hdmr`x3HF!&3+%t7r&t|Z-Lnd~*;JI#fNze@QuV>;e}qg=TIwt~k^rezkq0cO zWiJ^IeRbKBVinRX4@!B?-&CS0#h3`E7Jk?B5)QalJ+Y5()@55gCXjY6q2b3LXW)su z>(4FM=!u0@xuBs8y^H)!Z^pOruASQYmrX zNGybi(cT1sOy|a@yW@;@r?ILi0wkFxTa8Bd1M&-69nv``&3sPF2^lBeaf;{tV*L5i zd+OusIZO9<$!6Qv3;8p$#Zozd*QBZNzkT0kB6 zxp@W`!x*|E^&tn1+H~o-P=oCVZ-l4uP`ov`c5l2~jqqOTO}!IawhX63BfMxpgkU2q zq|p#fWiUTtn<O4=eAx5@|oq4gI8so_`jy>}30;mj32b@e4ai?9d>?C_Fw3}n3 z^M*RA-PYhWam{?9z`f8&`8+hdL3SN7%6$K!pc~*|?>MFVv^cZBVmoa3h6suSI%QJ7 zVMR6et&a$z8MiQ3Ye+INQdg;)D1z8zV*(lC zRExLZ?GvD&dHgh6@fkOF7D?nyklYht`=|Iw)*F(ffTHy>dLaTx>%{dDB0GPRJZ6%! ziH7v~7G)N&B*UmEhPF7N;Zc#6LyA;Fv66=hf;R2N#8n4-dHN~Hd@;@0Bunw>?881V=Q)l&9D43JNWuv3G8SxM{FjzE!gC)% z`f=cV`@*cP;JgbNO|FCzM;n}=VW>Cyw2RVE8C0xB@+26WHP*A+BTVQ1BVwDjqIJ}; zChDIkA@PeMjEn#lkPIPfF9_J)1|1fLF>&QTs2aM|pg}xo*@XrS)B!1(5cHm(FLbr|%gyC~Ptdpr8>w2cq)t7$v@8IJe6f*` zH$*zMGn&&=_ksk{b+Fnfc?pSD(F|h~(u>g)fo;4d9ot42il^!e05VG zcNawd_8{PLict6+=9)7ktl=J;r-||~-Uk_E0!f7Ev01yWSNlRym^1rH2;R{m@XgKS zucM3m#5aWJ&~WAoqX$l*H;o0VYECnMBF4Zp4yo#NJG0|PJ5$e(%UyNdZT1k>x#B%i zOCbQo%cn88l+?arzsurMB*xYwH;C6i;YVR0u!|;*0QGEVl zo}e75Y~L60s`>qaqKi+Z%nXXb?OpHfohAbf3{G9hv2O$}X>&wU2GIGLfBqb2M<(Lj` zL~>gAt1coo&Y*b)-p9UZC~SL+!y@E#XA>CG7$b-gJi8}QNWPVZDx(0Rsl6Dsy%?}I zXQneefwJknZFASz1(0S~CUp7an|U9TQuw0*90F== z+xEb)HRlE({i!WZ8foquu7N*+?gXd5&E0RSvYtI#%nf^Qcs_Xsj~gJ?UHV@7w!>&| znY#v?eE;RV`)=x4-}@n6GJgnL;eX%4|B4x7)GF%Fzbm}V|xYctwov!W?fA>gaV*KLku8*5$d z9C#zzqNCB@vTW&(XgTTAxwtDKzf-7OSYqE+g{{}1#rr_%j>~8xjr5=ep!ZibsA|a; z+NJ3GIgvY^D$KMYxoM6DKe%p~a3Td|zZKH^i36%5Dvr=kbgCH2I?ToRL#em(pQ274d~ z0_Z+OWbX?ybpl`7XxX=*(An9dLr8fuFcfps@q7|
  • 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 E04}8$$N&HU diff --git a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar.sha1 b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar.sha1 deleted file mode 100644 index b99527f69..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8d314bd875607574fca6d76136c796007e76b671 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom deleted file mode 100644 index 87b5dbbdb..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-maven-plugin - 3.2.5 - maven-plugin - spring-boot-maven-plugin - Spring Boot Maven Plugin - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot-buildpack-platform - 3.2.5 - runtime - - - org.springframework.boot - spring-boot-loader-tools - 3.2.5 - runtime - - - org.apache.maven.shared - maven-common-artifact-filters - 3.3.2 - runtime - - - javax.enterprise - cdi-api - - - javax.inject - javax.inject - - - javax.annotation - javax.annotation-api - - - - - org.springframework - spring-core - 6.1.6 - runtime - - - org.springframework - spring-context - 6.1.6 - runtime - - - org.sonatype.plexus - plexus-build-api - 0.0.7 - runtime - - - org.apache.maven.plugins - maven-shade-plugin - 3.5.0 - compile - - - javax.enterprise - cdi-api - - - javax.inject - javax.inject - - - javax.annotation - javax.annotation-api - - - true - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom.sha1 deleted file mode 100644 index cc3a2f2a7..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b3e643f04f7960f4bb7cc3fa4a0d9b396fb2032a \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/_remote.repositories deleted file mode 100644 index 4030b0361..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:01 EDT 2024 -spring-boot-starter-aop-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom deleted file mode 100644 index 9cfe7ee16..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-aop - 3.2.5 - spring-boot-starter-aop - Starter for aspect-oriented programming with Spring AOP and AspectJ - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot-starter - 3.2.5 - compile - - - org.springframework - spring-aop - 6.1.6 - compile - - - org.aspectj - aspectjweaver - 1.9.22 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom.sha1 deleted file mode 100644 index bad1a78b0..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -906a13f582b1c5a2652c624f40b3f6fb11e86786 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/_remote.repositories deleted file mode 100644 index c58c4cc53..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -spring-boot-starter-batch-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom deleted file mode 100644 index 8cb30e0a4..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-batch - 3.2.5 - spring-boot-starter-batch - Starter for using Spring Batch - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot-starter - 3.2.5 - compile - - - org.springframework.boot - spring-boot-starter-jdbc - 3.2.5 - compile - - - org.springframework.batch - spring-batch-core - 5.1.1 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom.sha1 deleted file mode 100644 index 64be717a5..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c887b12d8c3e5cd2a795ef36f1c13f79a4cde28d \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/_remote.repositories deleted file mode 100644 index 5c43f3e38..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:04 EDT 2024 -spring-boot-starter-cache-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom deleted file mode 100644 index b4873802e..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-cache - 3.2.5 - spring-boot-starter-cache - Starter for using Spring Framework's caching support - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot-starter - 3.2.5 - compile - - - org.springframework - spring-context-support - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom.sha1 deleted file mode 100644 index a1b26f8ce..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e0e2f3a48c413d85ec07e546cafb9e809b9d1fbd \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/_remote.repositories deleted file mode 100644 index 6f7d7fa01..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:01 EDT 2024 -spring-boot-starter-data-jpa-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom deleted file mode 100644 index 509d85ff7..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-data-jpa - 3.2.5 - spring-boot-starter-data-jpa - Starter for using Spring Data JPA with Hibernate - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot-starter-aop - 3.2.5 - compile - - - org.springframework.boot - spring-boot-starter-jdbc - 3.2.5 - compile - - - org.hibernate.orm - hibernate-core - 6.4.4.Final - compile - - - org.springframework.data - spring-data-jpa - 3.2.5 - compile - - - org.springframework - spring-aspects - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom.sha1 deleted file mode 100644 index 4804ba285..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3b7df09dced9f2752f299abe19678432f1180248 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/_remote.repositories deleted file mode 100644 index 9c649e2f4..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:53 EDT 2024 -spring-boot-starter-jdbc-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom deleted file mode 100644 index 8941ab9d1..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-jdbc - 3.2.5 - spring-boot-starter-jdbc - Starter for using JDBC with the HikariCP connection pool - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot-starter - 3.2.5 - compile - - - com.zaxxer - HikariCP - 5.0.1 - compile - - - org.springframework - spring-jdbc - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom.sha1 deleted file mode 100644 index 34fc9aa69..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5cf38202ff3baaff8b7073d81a6be5465a6e0491 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/_remote.repositories deleted file mode 100644 index 35c82827f..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:54 EDT 2024 -spring-boot-starter-jersey-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom deleted file mode 100644 index f7bf87ed8..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-jersey - 3.2.5 - spring-boot-starter-jersey - Starter for building RESTful web applications using JAX-RS and Jersey. An alternative to spring-boot-starter-web - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot-starter-json - 3.2.5 - compile - - - org.springframework.boot - spring-boot-starter-tomcat - 3.2.5 - compile - - - org.springframework.boot - spring-boot-starter-validation - 3.2.5 - compile - - - org.springframework - spring-web - 6.1.6 - compile - - - org.glassfish.jersey.containers - jersey-container-servlet-core - 3.1.6 - compile - - - org.glassfish.jersey.containers - jersey-container-servlet - 3.1.6 - compile - - - org.glassfish.jersey.core - jersey-server - 3.1.6 - compile - - - org.glassfish.jersey.ext - jersey-bean-validation - 3.1.6 - compile - - - jakarta.el - jakarta.el-api - - - - - org.glassfish.jersey.ext - jersey-spring6 - 3.1.6 - compile - - - org.glassfish.jersey.media - jersey-media-json-jackson - 3.1.6 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom.sha1 deleted file mode 100644 index adc9395d0..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bba80316b4c69ac80fc026b0c6af96a1d8efd2d9 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/_remote.repositories deleted file mode 100644 index 93ccf6e4c..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:51 EDT 2024 -spring-boot-starter-json-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom deleted file mode 100644 index e46bc0c53..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-json - 3.2.5 - spring-boot-starter-json - Starter for reading and writing json - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot-starter - 3.2.5 - compile - - - org.springframework - spring-web - 6.1.6 - compile - - - com.fasterxml.jackson.core - jackson-databind - 2.15.4 - compile - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - 2.15.4 - compile - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - 2.15.4 - compile - - - com.fasterxml.jackson.module - jackson-module-parameter-names - 2.15.4 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom.sha1 deleted file mode 100644 index 88504618b..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -91786cb9defa4651884172bc3f5a423c81216f82 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/_remote.repositories deleted file mode 100644 index fa2c3459e..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -spring-boot-starter-log4j2-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom deleted file mode 100644 index 56409a146..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-log4j2 - 3.2.5 - spring-boot-starter-log4j2 - Starter for using Log4j2 for logging. An alternative to spring-boot-starter-logging - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.apache.logging.log4j - log4j-slf4j2-impl - 2.21.1 - compile - - - org.apache.logging.log4j - log4j-core - 2.21.1 - compile - - - org.apache.logging.log4j - log4j-jul - 2.21.1 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom.sha1 deleted file mode 100644 index 9b4e4bfe2..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -486d4ad8e2af3f032cf9546f5b11a8999d19c3f0 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/_remote.repositories deleted file mode 100644 index e356d81c4..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -spring-boot-starter-logging-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom deleted file mode 100644 index af870f57e..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-logging - 3.2.5 - spring-boot-starter-logging - Starter for logging using Logback. Default logging starter - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - ch.qos.logback - logback-classic - 1.4.14 - compile - - - org.apache.logging.log4j - log4j-to-slf4j - 2.21.1 - compile - - - org.slf4j - jul-to-slf4j - 2.0.13 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom.sha1 deleted file mode 100644 index 0e75d241a..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -603356a12c27a4e2b758459efdda1c7484bf50db \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/_remote.repositories deleted file mode 100644 index fd659f1a9..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:56 EDT 2024 -spring-boot-starter-parent-2.3.0.RELEASE.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom b/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom deleted file mode 100644 index 88409e886..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom +++ /dev/null @@ -1,237 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-dependencies - 2.3.0.RELEASE - - spring-boot-starter-parent - pom - spring-boot-starter-parent - Parent pom providing dependency and plugin management for applications built with Maven - - 1.8 - @ - ${java.version} - ${java.version} - UTF-8 - UTF-8 - - https://spring.io/projects/spring-boot - - Pivotal Software, Inc. - https://spring.io - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - Pivotal - info@pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - - ${basedir}/src/main/resources - true - - **/application*.yml - **/application*.yaml - **/application*.properties - - - - ${basedir}/src/main/resources - - **/application*.yml - **/application*.yaml - **/application*.properties - - - - - - - org.jetbrains.kotlin - kotlin-maven-plugin - ${kotlin.version} - - ${java.version} - true - - - - compile - compile - - compile - - - - test-compile - test-compile - - test-compile - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - ${project.build.outputDirectory} - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${start-class} - true - - - - - - org.apache.maven.plugins - maven-war-plugin - - - - ${start-class} - true - - - - - - org.apache.maven.plugins - maven-resources-plugin - - - ${resource.delimiter} - - false - - - - pl.project13.maven - git-commit-id-plugin - - - - revision - - - - - true - yyyy-MM-dd'T'HH:mm:ssZ - true - ${project.build.outputDirectory}/git.properties - - - - org.springframework.boot - spring-boot-maven-plugin - - - repackage - - repackage - - - - - ${start-class} - - - - org.apache.maven.plugins - maven-shade-plugin - - true - true - - - *:* - - META-INF/*.SF - META-INF/*.DSA - META-INF/*.RSA - - - - - - - org.springframework.boot - spring-boot-maven-plugin - 2.3.0.RELEASE - - - - - package - - shade - - - - - META-INF/spring.handlers - - - META-INF/spring.factories - - - META-INF/spring.schemas - - - - ${start-class} - - - - - - - - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom.sha1 deleted file mode 100644 index 668e74b65..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -24da6c46dc22777d306a90eefa4386df6b5d2b6a \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/_remote.repositories deleted file mode 100644 index 6b28f76aa..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -spring-boot-starter-test-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom deleted file mode 100644 index 842848ba3..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-test - 3.2.5 - spring-boot-starter-test - Starter for testing Spring Boot applications with libraries including JUnit Jupiter, Hamcrest and Mockito - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot-starter - 3.2.5 - compile - - - org.springframework.boot - spring-boot-test - 3.2.5 - compile - - - org.springframework.boot - spring-boot-test-autoconfigure - 3.2.5 - compile - - - com.jayway.jsonpath - json-path - 2.9.0 - compile - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.2 - compile - - - net.minidev - json-smart - 2.5.1 - compile - - - org.assertj - assertj-core - 3.24.2 - compile - - - org.awaitility - awaitility - 4.2.1 - compile - - - org.hamcrest - hamcrest - 2.2 - compile - - - org.junit.jupiter - junit-jupiter - 5.10.2 - compile - - - org.mockito - mockito-core - 5.7.0 - compile - - - org.mockito - mockito-junit-jupiter - 5.7.0 - compile - - - org.skyscreamer - jsonassert - 1.5.1 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - org.springframework - spring-test - 6.1.6 - compile - - - org.xmlunit - xmlunit-core - 2.9.1 - compile - - - javax.xml.bind - jaxb-api - - - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom.sha1 deleted file mode 100644 index adb8eaaf3..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -df2b63500e08409dd55c59e23035593d9ca94118 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/_remote.repositories deleted file mode 100644 index 0fe07edf8..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -spring-boot-starter-tomcat-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom deleted file mode 100644 index 48239b191..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-tomcat - 3.2.5 - spring-boot-starter-tomcat - Starter for using Tomcat as the embedded servlet container. Default servlet container starter used by spring-boot-starter-web - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - jakarta.annotation - jakarta.annotation-api - 2.1.1 - compile - - - org.apache.tomcat.embed - tomcat-embed-core - 10.1.20 - compile - - - org.apache.tomcat - tomcat-annotations-api - - - - - org.apache.tomcat.embed - tomcat-embed-el - 10.1.20 - compile - - - org.apache.tomcat.embed - tomcat-embed-websocket - 10.1.20 - compile - - - org.apache.tomcat - tomcat-annotations-api - - - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom.sha1 deleted file mode 100644 index 4a6e87ba4..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -acf4171e65bd52715d831a9163d87f73be16e0a4 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/_remote.repositories deleted file mode 100644 index ebb626a75..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:54 EDT 2024 -spring-boot-starter-validation-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom deleted file mode 100644 index 189a69aed..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-validation - 3.2.5 - spring-boot-starter-validation - Starter for using Java Bean Validation with Hibernate Validator - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot-starter - 3.2.5 - compile - - - org.apache.tomcat.embed - tomcat-embed-el - 10.1.20 - compile - - - org.hibernate.validator - hibernate-validator - 8.0.1.Final - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom.sha1 deleted file mode 100644 index 2904b7183..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -edc6bb93a1fe439760c816019f6b5fe5d902a2fe \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/_remote.repositories deleted file mode 100644 index 284e407b8..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -spring-boot-starter-web-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom deleted file mode 100644 index 62a734b5a..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-web - 3.2.5 - spring-boot-starter-web - Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot-starter - 3.2.5 - compile - - - org.springframework.boot - spring-boot-starter-json - 3.2.5 - compile - - - org.springframework.boot - spring-boot-starter-tomcat - 3.2.5 - compile - - - org.springframework - spring-web - 6.1.6 - compile - - - org.springframework - spring-webmvc - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom.sha1 deleted file mode 100644 index ab3283286..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a03c3f368aebdf293b5559d5ce2ce49b301642a6 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/_remote.repositories deleted file mode 100644 index 66cb0aba0..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -spring-boot-starter-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom deleted file mode 100644 index b09e9b156..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter - 3.2.5 - spring-boot-starter - Core starter, including auto-configuration support, logging and YAML - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot - 3.2.5 - compile - - - org.springframework.boot - spring-boot-autoconfigure - 3.2.5 - compile - - - org.springframework.boot - spring-boot-starter-logging - 3.2.5 - compile - - - jakarta.annotation - jakarta.annotation-api - 2.1.1 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - org.yaml - snakeyaml - 2.2 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom.sha1 deleted file mode 100644 index f61520e7f..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9e3360711d96cfa395af4b7817f30d686f0adcfc \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/_remote.repositories deleted file mode 100644 index e6d98e521..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -spring-boot-test-autoconfigure-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom deleted file mode 100644 index 54388b8cf..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-test-autoconfigure - 3.2.5 - spring-boot-test-autoconfigure - Spring Boot Test AutoConfigure - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot - 3.2.5 - compile - - - org.springframework.boot - spring-boot-test - 3.2.5 - compile - - - org.springframework.boot - spring-boot-autoconfigure - 3.2.5 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom.sha1 deleted file mode 100644 index b4f4a3e72..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e34cd082960a6f7b6fbe0c9e3b0bfbb47b5153a0 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/_remote.repositories deleted file mode 100644 index 60ec72370..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -spring-boot-test-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom deleted file mode 100644 index fc86568c6..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-test - 3.2.5 - spring-boot-test - Spring Boot Test - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot - 3.2.5 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom.sha1 deleted file mode 100644 index 7a095f6d9..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3cdcd22f63eb24f9a14ea2cf63b73ba0ddae0c51 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot/3.2.5/_remote.repositories deleted file mode 100644 index 6273637ef..000000000 --- a/code/arachne/org/springframework/boot/spring-boot/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -spring-boot-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom deleted file mode 100644 index 05dfcfd17..000000000 --- a/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot - 3.2.5 - spring-boot - Spring Boot - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework - spring-core - 6.1.6 - compile - - - org.springframework - spring-context - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom.sha1 deleted file mode 100644 index 696b6e384..000000000 --- a/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d880469f5b58bb4e43fb2e8dea27c1349f4c2913 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/_remote.repositories deleted file mode 100644 index 98cd6be33..000000000 --- a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:53 EDT 2024 -spring-data-build-2.3.0.RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom deleted file mode 100644 index 38e25a9ce..000000000 --- a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom +++ /dev/null @@ -1,270 +0,0 @@ - - - - 4.0.0 - org.springframework.data.build - spring-data-build - 2.3.0.RELEASE - pom - - Spring Data Build - Modules to centralize common resources and configuration for Spring Data Maven builds. - https://github.com/spring-projects/spring-data-build - - - Pivotal Software, Inc. - https://www.spring.io - - - - resources - parent - bom - - - - - odrotbohm - Oliver Drotbohm - odrotbohm at pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - Project lead - - +1 - - - mpaluch - Mark Paluch - mpaluch at pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - Project lead - - +1 - - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - Copyright 2010 the original author or authors. - - 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 - - https://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. - - - - - - - - - - release - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-release-rules - - enforce - - - - - [1.8,1.9) - - - - - - - - - - - - - - - bom-verify - - bom-client - - - - - - - artifactory - - - - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - 2.7.0 - - - build-info - - publish - - - - false - - - {{artifactory.server}} - {{artifactory.username}} - {{artifactory.password}} - {{artifactory.staging-repository}} - {{artifactory.staging-repository}} - - - {{artifactory.build-name}} - {{artifactory.build-number}} - {{BUILD_URL}} - - - - - - - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - - - - - - - - - with-bom-client - - - bom-client - - - - - - - central - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - true - - sonatype - https://oss.sonatype.org/ - false - true - - - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - - org.sonatype.plugins - nexus-staging-maven-plugin - - - - - - - - - sonatype - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - - https://github.com/spring-projects/spring-data-build - scm:git:git://github.com/spring-projects/spring-data-build.git - scm:git:ssh://git@github.com:spring-projects/spring-data-build.git - - - - GitHub - https://github.com/spring-projects/spring-data-build/issues - - - - - spring-libs-release - https://repo.spring.io/libs-release - - - - diff --git a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.lastUpdated b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.lastUpdated deleted file mode 100644 index 98c75967b..000000000 --- a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:53 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139893992 -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.data.build\:spring-data-build\:pom\:2.3.0.RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139893710 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139893718 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139893834 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139893944 diff --git a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.sha1 deleted file mode 100644 index cd17e7f14..000000000 --- a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ae16bc1a45ae78c1883c7608cd7073bcbe03f8e0 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/_remote.repositories b/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/_remote.repositories deleted file mode 100644 index 0b03365da..000000000 --- a/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -spring-data-build-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom b/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom deleted file mode 100644 index cda59e85b..000000000 --- a/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom +++ /dev/null @@ -1,259 +0,0 @@ - - - - 4.0.0 - org.springframework.data.build - spring-data-build - 3.2.5 - pom - - Spring Data Build - Modules to centralize common resources and configuration for Spring Data Maven builds. - https://github.com/spring-projects/spring-data-build - - - Pivotal Software, Inc. - https://www.spring.io - - - - resources - parent - - - - - odrotbohm - Oliver Drotbohm - odrotbohm at pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - Project lead - - +1 - - - mpaluch - Mark Paluch - mpaluch at pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - Project lead - - +1 - - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - Copyright 2010-2024 the original author or authors. - - 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 - - https://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. - - - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - --no-tty - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - enforce-release-rules - - enforce - - - - - [17,18) - - - - - - - - - - - - de.smartics.rules - smartics-enforcer-rules - 1.0.2 - - - - - - - - - - - - artifactory - - - - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - 3.6.2 - - - build-info - - publish - - - - false - - - {{artifactory.server}} - {{artifactory.username}} - {{artifactory.password}} - {{artifactory.staging-repository}} - {{artifactory.staging-repository}} - - - {{artifactory.build-name}} - {{artifactory.build-number}} - {{BUILD_URL}} - - - - - - - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - - - - - - - - - - - - central - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - sonatype - https://s01.oss.sonatype.org/ - false - true - - - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - - - - - - - - - sonatype - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - - https://github.com/spring-projects/spring-data-build - scm:git:git://github.com/spring-projects/spring-data-build.git - scm:git:ssh://git@github.com:spring-projects/spring-data-build.git - - - - GitHub - https://github.com/spring-projects/spring-data-build/issues - - - diff --git a/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom.sha1 b/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom.sha1 deleted file mode 100644 index 0cd484830..000000000 --- a/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0c40e90f0d183e34f4665dd79b817d1c188af813 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/_remote.repositories b/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/_remote.repositories deleted file mode 100644 index 523589712..000000000 --- a/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -spring-data-parent-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom b/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom deleted file mode 100644 index 5043e51bf..000000000 --- a/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom +++ /dev/null @@ -1,1410 +0,0 @@ - - - - - - 4.0.0 - - spring-data-parent - pom - - - org.springframework.data.build - spring-data-build - 3.2.5 - ../pom.xml - - - Spring Data Build - General parent module - Global parent pom.xml to be used by Spring Data modules - https://www.spring.io/spring-data - 2011 - - - Pivotal Software, Inc. - https://www.spring.io - - - - - odrotbohm - Oliver Drotbohm - odrotbohm at pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - Project lead - - +1 - - - mpaluch - Mark Paluch - mpaluch at pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - Project lead - - +1 - - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - Copyright 2008-2020 the original author or authors. - - 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 - - https://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. - - - - - - - UTF-8 - ${basedir} - 17 - ${project.artifactId} - ${project.build.directory}/jacoco.exec - 1.7 - - 1.1.3 - 1.0.0 - 1.9.21.1 - 3.24.2 - 4.0.1 - 2.5 - 11.0.0 - 31.1-jre - 1.3 - 2.15.4 - 2.0.0 - 3.0.1 - 0.8.11 - 1.9.0 - 0.17.0 - 2.6.0 - - 4.13.2 - 5.10.2 - 1.9.23 - 1.7.3 - 1.4.13 - 1.12.5 - 1.2.5 - 5.5.0 - 1.13.7 - 5.0.0 - 2023.0.5 - 2.2.21 - 3.1.8 - 1.10.0 - 2.0.2 - 6.1.6 - src/main/antora/antora-playbook.yml - 0.0.3 - 0.0.7 - 2.2.2 - 3.0.0 - 6.0.0 - 1.19.7 - 3.0.2 - 0.10.4 - 4.0.2 - - - 2023.1.5 - - - - - - - - - - - - - ci - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - package-javadoc - - jar - - package - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - - - - - - - - - - - - **/* - - **/.flattened-pom.xml,.git/**/*,target/**/*,**/target/**/*,.idea/**/*,**/spring.schemas,**/*.svg,mvnw,mvnw.cmd,**/*.graphml,work/**/* - - ./ - - - - - validate - - - check - - - - - - - - - - - - - - - pre-release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-no-third-party-snapshots - - enforce - - - - - false - - org.springframework.data.build:* - org.springframework.data:* - - - - true - - - - - - - - de.smartics.rules - smartics-enforcer-rules - 1.0.2 - - - - - - - - - antora-process-resources - - - - io.spring.maven.antora - antora-component-version-maven-plugin - - - - antora-component-version - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - export-properties - generate-resources - - - - ${spring} - - - - - - ${springdata.commons} - - - - - - ${springdata.commons} - - - - - - - - - true - - - run - - - - - - - - - - - antora - - - true - true - true - true - true - - - - - - - org.jetbrains.kotlin - kotlin-maven-plugin - false - - true - - - - - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - - - - - io.spring.maven.antora - antora-maven-plugin - true - - ${antora.playbook} - - - - - antora - - compile - - - - - - - - - - - - - distribute - - - ${project.build.directory}/shared-resources - ${project.build.directory}/generated-docs - true - true - true - true - - - - - org.springframework.data.build - spring-data-build-resources - 3.2.5 - zip - true - - - - - - - - - - org.jetbrains.kotlin - kotlin-maven-plugin - false - - true - - - - - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - unpack-shared-resources - - unpack-dependencies - - generate-resources - - ${project.groupId} - spring-data-build-resources - zip - true - ${shared.resources} - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${shared.resources}/javadoc - ${shared.resources}/javadoc/overview.html - - - - aggregate-javadoc - - aggregate-no-fork - - prepare-package - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - - copy-documentation-resources - generate-resources - - - - - - - - - - - - - - run - - - - - rename-reference-docs - prepare-package - - - - - - - - - - - - - - - - - - - - - - - - run - - - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - - - - - - - - - - - org.asciidoctor - asciidoctor-maven-plugin - - - - html - compile - - process-asciidoc - - - ${project.root}/src/main/asciidoc - index.adoc - spring-html - ${generated-docs.directory} - - highlight.js - js/highlight - github - true - true - ./css - site.css - left - - - - - - - book - - book - shared - font - false - images - ${project.version} - ${project.name} - ${project.version} - ${aspectj} - ${querydsl} - https://docs.spring.io/spring-framework/docs/${spring}/reference/html/ - https://docs.spring.io/spring-framework/docs/${spring}/javadoc-api/ - ${spring} - ${spring-hateoas} - ${releasetrain} - true - 4 - true - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - docs - - single - - package - - - ${shared.resources}/assemblies/docs.xml - - true - - - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - - - deploy-docs - - publish - - deploy - - - false - - - ${dist.id} - ${dist.id} - false - docs - - - - ${dist.id}-docs-${project.version} - 1 - {{BUILD_URL}} - - - {{artifactory.server}} - {{artifactory.username}} - {{artifactory.password}} - {{artifactory.distribution-repository}} - {{artifactory.distribution-repository}} - *-docs.zip - - - - - - - - - - - - - - - - distribute-schema - - - ${project.build.directory}/shared-resources - true - true - true - true - true - - - - - org.springframework.data.build - spring-data-build-resources - 3.2.5 - zip - true - - - - - - - - - - org.jetbrains.kotlin - kotlin-maven-plugin - false - - true - - - - - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - unpack-shared-resources - - unpack-dependencies - - generate-resources - - ${project.groupId} - spring-data-build-resources - zip - true - ${shared.resources} - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - - collect-schema-files - prepare-package - - - - - - - - - - - - run - - - - - check-schema-files - prepare-package - - - - - - - - - true - - - run - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - docs - - single - - package - - - ${shared.resources}/assemblies/schema.xml - - ${dist.id} - true - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - - - - - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - - - deploy-schema - - publish - - deploy - - - false - - - ${dist.id} - ${dist.id} - false - schema - - - - ${dist.id}-schema-${project.version} - 1 - {{BUILD_URL}} - - - {{artifactory.server}} - {{artifactory.username}} - {{artifactory.password}} - {{artifactory.distribution-repository}} - {{artifactory.distribution-repository}} - *-schema.zip - - - - - - - - - - - - - spring6-next - - 6.1.6-SNAPSHOT - - - - spring-snapshot - https://repo.spring.io/snapshot - - true - - - - - - - jackson-next - - 2.15.2 - - - - spring-snapshot - https://repo.spring.io/snapshot - - true - - - - - - - - - - - io.projectreactor - reactor-bom - ${reactor} - pom - import - - - io.micrometer - micrometer-bom - ${micrometer} - pom - import - - - io.micrometer - micrometer-tracing-bom - ${micrometer-tracing} - pom - import - - - org.springframework - spring-framework-bom - ${spring} - pom - import - - - org.jetbrains.kotlin - kotlin-bom - ${kotlin} - pom - import - - - org.jetbrains.kotlinx - kotlinx-coroutines-bom - ${kotlin-coroutines} - pom - import - - - com.fasterxml.jackson - jackson-bom - ${jackson} - pom - import - - - org.junit - junit-bom - ${junit5} - pom - import - - - jakarta.enterprise - jakarta.enterprise.cdi-api - ${cdi} - true - - - jakarta.servlet - jakarta.servlet-api - ${servlet-api} - true - - - jakarta.validation - jakarta.validation-api - ${validation} - - - org.apache.openwebbeans - openwebbeans-se - ${webbeans} - test - - - org.apache.openwebbeans - openwebbeans-spi - ${webbeans} - test - - - - - - - - - org.junit.jupiter - junit-jupiter - test - - - - org.junit.vintage - junit-vintage-engine - test - - - - org.mockito - mockito-core - ${mockito} - test - - - - org.mockito - mockito-junit-jupiter - ${mockito} - test - - - - org.assertj - assertj-core - ${assertj} - test - - - - org.springframework - spring-test - test - - - - - org.slf4j - slf4j-api - ${slf4j} - - - - ch.qos.logback - logback-classic - ${logback} - test - - - - - - - - - - - - - - io.spring.maven.antora - antora-maven-plugin - ${spring-antora} - - - - io.spring.maven.antora - antora-component-version-maven-plugin - ${spring-antora} - - - - org.apache.maven.plugins - maven-antrun-plugin - 3.1.0 - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.6.0 - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - true - true - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.1 - - - com.puppycrawl.tools - checkstyle - 10.9.3 - - - io.spring.nohttp - nohttp-checkstyle - 0.0.11 - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.6.1 - - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.1 - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - - org.apache.maven.plugins - maven-failsafe-plugin - 3.2.5 - - false - - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.5 - - false - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.5.0 - - - - org.codehaus.mojo - exec-maven-plugin - 3.1.1 - - - - org.jfrog.buildinfo - artifactory-maven-plugin - 3.6.2 - - - - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - - org.jetbrains.kotlin - kotlin-maven-plugin - ${kotlin} - - ${kotlin.api.target} - ${kotlin.api.target} - - -Xjsr305=strict - -Xsuppress-version-warnings - -opt-in=kotlin.RequiresOptIn - - - - - compile - compile - - compile - - - - ${project.basedir}/src/main/kotlin - ${project.basedir}/src/main/java - - - - - test-compile - test-compile - - test-compile - - - - ${project.basedir}/src/test/kotlin - ${project.basedir}/src/test/java - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${source.level} - ${source.level} - - - - default-compile - none - - - default-testCompile - none - - - java-compile - compile - - compile - - - - java-test-compile - test-compile - - testCompile - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - false - -Xverify:all - - **/*Tests.java - - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - false - -Xverify:all - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${project.name} - ${project.version} - ${java-module-name} - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-kotlin-source - prepare-package - - add-source - - - - ${project.basedir}/src/main/kotlin - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - en_US - true -

    ${project.name}
    - ${source.level} - true - - true - html,reference - - https://docs.spring.io/spring/docs/${spring}/javadoc-api/ - https://docs.spring.io/spring-data/commons/docs/current/api/ - https://docs.spring.io/spring-data/keyvalue/docs/current/api/ - https://docs.spring.io/spring-hateoas/docs/current/api/ - https://docs.oracle.com/en/java/javase/17/docs/api/ - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven-version - - enforce - - - - - 3.9.0 - - - 17 - - - - - - - - - - - - - - - - diff --git a/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom.sha1 b/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom.sha1 deleted file mode 100644 index ecaaad740..000000000 --- a/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -75a999456a72ca1a73e395ebb78afca77c394a90 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/_remote.repositories b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/_remote.repositories deleted file mode 100644 index 49db6873e..000000000 --- a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:41 EDT 2024 -spring-data-bom-2023.1.5.pom>ohdsi= diff --git a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom deleted file mode 100644 index 5f4b7114e..000000000 --- a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom +++ /dev/null @@ -1,148 +0,0 @@ - - - 4.0.0 - org.springframework.data - spring-data-bom - 2023.1.5 - pom - Spring Data Release Train - BOM - Bill of materials to make sure a consistent set of versions is used for - Spring Data modules. - https://github.com/spring-projects/spring-data-bom - - Pivotal Software, Inc. - https://www.spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - Copyright 2010 the original author or authors. - - 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 - - https://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. - - - - - mpaluch - Mark Paluch - mpaluch at pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - Project lead - - +1 - - - - scm:git:git://github.com/spring-projects/spring-data-bom.git - scm:git:ssh://git@github.com:spring-projects/spring-data-bom.git - https://github.com/spring-projects/spring-data-bom - - - GitHub - https://github.com/spring-projects/spring-data-bom/issues - - - - - org.springframework.data - spring-data-cassandra - 4.2.5 - - - org.springframework.data - spring-data-commons - 3.2.5 - - - org.springframework.data - spring-data-couchbase - 5.2.5 - - - org.springframework.data - spring-data-elasticsearch - 5.2.5 - - - org.springframework.data - spring-data-jdbc - 3.2.5 - - - org.springframework.data - spring-data-r2dbc - 3.2.5 - - - org.springframework.data - spring-data-relational - 3.2.5 - - - org.springframework.data - spring-data-jpa - 3.2.5 - - - org.springframework.data - spring-data-envers - 3.2.5 - - - org.springframework.data - spring-data-mongodb - 4.2.5 - - - org.springframework.data - spring-data-neo4j - 7.2.5 - - - org.springframework.data - spring-data-redis - 3.2.5 - - - org.springframework.data - spring-data-rest-webmvc - 4.2.5 - - - org.springframework.data - spring-data-rest-core - 4.2.5 - - - org.springframework.data - spring-data-rest-hal-explorer - 4.2.5 - - - org.springframework.data - spring-data-keyvalue - 3.2.5 - - - org.springframework.data - spring-data-ldap - 3.2.5 - - - - diff --git a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.lastUpdated b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.lastUpdated deleted file mode 100644 index fa58f6c42..000000000 --- a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:41 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.data\:spring-data-bom\:pom\:2023.1.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139820668 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139820788 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139820906 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139821041 diff --git a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.sha1 b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.sha1 deleted file mode 100644 index 8f1a8c471..000000000 --- a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c9c3587784b4f849f39c9a40b384d7c4c3789f9d \ No newline at end of file diff --git a/code/arachne/org/springframework/data/spring-data-commons/3.2.5/_remote.repositories b/code/arachne/org/springframework/data/spring-data-commons/3.2.5/_remote.repositories deleted file mode 100644 index 86ea83fa3..000000000 --- a/code/arachne/org/springframework/data/spring-data-commons/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -spring-data-commons-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom b/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom deleted file mode 100644 index 45d37febd..000000000 --- a/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom +++ /dev/null @@ -1,387 +0,0 @@ - - - - 4.0.0 - - org.springframework.data - spring-data-commons - 3.2.5 - - Spring Data Core - Core Spring concepts underpinning every Spring Data module. - https://spring.io/projects/spring-data - - scm:git:https://github.com/spring-projects/spring-data-commons.git - - - scm:git:git@github.com:spring-projects/spring-data-commons.git - - https://github.com/spring-projects/spring-data-commons - - - https://github.com/spring-projects/spring-data-commons/issues - - - - org.springframework.data.build - spring-data-parent - 3.2.5 - - - - - 2.11.7 - 1.4.24 - spring.data.commons - 1.8 - - - - - org.springframework - spring-core - - - org.springframework - spring-beans - - - org.springframework - spring-context - true - - - org.springframework - spring-expression - true - - - org.springframework - spring-tx - true - - - org.springframework - spring-oxm - true - - - com.fasterxml.jackson.core - jackson-databind - true - - - org.springframework - spring-web - true - - - org.springframework - spring-webflux - true - - - - org.springframework - spring-core-test - test - - - - jakarta.servlet - jakarta.servlet-api - provided - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jaxb} - provided - - - jakarta.annotation - jakarta.annotation-api - ${jakarta-annotation-api} - true - - - - com.google.code.findbugs - jsr305 - 3.0.2 - true - - - - - - io.projectreactor - reactor-core - true - - - - io.projectreactor - reactor-test - test - - - - - - io.reactivex.rxjava3 - rxjava - ${rxjava3} - true - - - - io.smallrye.reactive - mutiny - ${smallrye-mutiny} - true - - - - - - com.querydsl - querydsl-core - ${querydsl} - true - - - - com.querydsl - querydsl-collections - ${querydsl} - true - - - - com.google.guava - guava - ${guava} - true - - - - io.vavr - vavr - ${vavr} - true - - - - - - org.eclipse.collections - eclipse-collections-api - ${eclipse-collections} - true - - - - org.eclipse.collections - eclipse-collections - ${eclipse-collections} - test - - - - - - jakarta.enterprise - jakarta.enterprise.cdi-api - provided - true - - - - org.apache.openwebbeans - openwebbeans-se - test - - - - org.springframework.hateoas - spring-hateoas - ${spring-hateoas} - true - - - - org.springframework - spring-webmvc - true - - - - com.sun.xml.bind - jaxb-impl - 3.0.2 - test - - - - xmlunit - xmlunit - 1.6 - test - - - - - org.codehaus.groovy - groovy-all - 2.4.4 - test - - - - - org.jetbrains.kotlin - kotlin-stdlib - true - - - - org.jetbrains.kotlin - kotlin-reflect - true - - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - true - - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactive - true - - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - true - - - - org.jetbrains.kotlin - kotlin-test-junit5 - ${kotlin} - test - - - - io.mockk - mockk-jvm - ${mockk} - test - - - - - org.scala-lang - scala-library - ${scala} - true - - - - jakarta.transaction - jakarta.transaction-api - 2.0.0 - test - - - - com.jayway.jsonpath - json-path - ${jsonpath} - true - - - - org.xmlbeam - xmlprojector - ${xmlbeam} - true - - - - com.tngtech.archunit - archunit - ${archunit} - test - - - - org.jmolecules.integrations - jmolecules-spring - ${jmolecules-integration} - true - - - org.junit.platform - junit-platform-launcher - test - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - io.spring.maven.antora - antora-maven-plugin - - - org.apache.maven.plugins - maven-compiler-plugin - - - java-test-compile - - - - com.querydsl - querydsl-apt - ${querydsl} - general - - - - - - - - - - - - antora-process-resources - - - - src/main/antora/resources/antora-resources - true - - - - - - - - - - - - diff --git a/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom.sha1 b/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom.sha1 deleted file mode 100644 index e54cb6628..000000000 --- a/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4e874044d5c857eb647facebf906d07223deb128 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/_remote.repositories b/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/_remote.repositories deleted file mode 100644 index ec7f4b805..000000000 --- a/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -spring-data-jpa-parent-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom b/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom deleted file mode 100644 index 512e3fe8a..000000000 --- a/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom +++ /dev/null @@ -1,297 +0,0 @@ - - - - 4.0.0 - - org.springframework.data - spring-data-jpa-parent - 3.2.5 - pom - - Spring Data JPA Parent - Parent module for Spring Data JPA repositories. - https://spring.io/projects/spring-data-jpa - - scm:git:git://github.com:spring-projects/spring-data-jpa.git - scm:git:git@github.com:spring-projects/spring-data-jpa.git - https://github.com/spring-projects/spring-data-jpa - - - https://github.com/spring-projects/spring-data-jpa/issues - - - - org.springframework.data.build - spring-data-parent - 3.2.5 - - - - 4.13.0 - 3.0.4 - 4.0.2 - 6.4.4.Final - 6.2.24.Final - 6.4.5-SNAPSHOT - 6.5.0.CR1 - 6.5.0-SNAPSHOT - 6.6.0-SNAPSHOT - 2.7.1 -

    2.2.220

    - 3.1.0 - 4.5 - 8.0.33 - 42.6.0 - 3.2.5 - 0.10.3 - - org.hibernate - - reuseReports - -
    - - - spring-data-envers - spring-data-jpa - spring-data-jpa-distribution - - - - - hibernate-62 - - ${hibernate-62} - - - - hibernate-64-snapshots - - ${hibernate-64-snapshots} - - - - sonatype-oss - https://oss.sonatype.org/content/repositories/snapshots - - false - - - - - - hibernate-65 - - ${hibernate-65} - - - - hibernate-65-snapshots - - ${hibernate-65-snapshots} - - - - sonatype-oss - https://oss.sonatype.org/content/repositories/snapshots - - false - - - - - - hibernate-66-snapshots - - ${hibernate-66-snapshots} - - - - sonatype-oss - https://oss.sonatype.org/content/repositories/snapshots - - false - - - - - - all-dbs - - - - org.apache.maven.plugins - maven-surefire-plugin - - - mysql-test - test - - test - - - - **/MySql*IntegrationTests.java - - - - - postgres-test - test - - test - - - - **/Postgres*IntegrationTests.java - - - - - - - - - - eclipselink-next - - ${eclipselink-next} - - - - - - - - org.testcontainers - testcontainers-bom - ${testcontainers} - pom - import - - - - - - - org.springframework - spring-instrument - ${spring} - provided - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - org.springframework - spring-instrument - ${spring} - runtime - - - - - - default-test - - - **/* - - - - - unit-test - - test - - test - - - **/*UnitTests.java - - - - - integration-test - - test - - test - - - **/*IntegrationTests.java - **/*Tests.java - - - **/*UnitTests.java - **/OpenJpa* - **/EclipseLink* - **/MySql* - **/Postgres* - - - -javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar - - - - - eclipselink-test - - test - - test - - - **/EclipseLink*Tests.java - - - -javaagent:${settings.localRepository}/org/eclipse/persistence/org.eclipse.persistence.jpa/${eclipselink}/org.eclipse.persistence.jpa-${eclipselink}.jar - -javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar - - - - - - - - - - - - com.gradle - gradle-enterprise-maven-extension - - - - - - builddef.lst - - - - - - - - - - - - - - - - - - spring-milestone - https://repo.spring.io/milestone - - - -
    diff --git a/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom.sha1 b/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom.sha1 deleted file mode 100644 index f6466100f..000000000 --- a/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3f10a030eb79a8ea9ce24b4954d2b7ba1a2373a6 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/_remote.repositories b/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/_remote.repositories deleted file mode 100644 index e43d6e156..000000000 --- a/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -spring-data-jpa-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom b/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom deleted file mode 100644 index 9e6110e44..000000000 --- a/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom +++ /dev/null @@ -1,407 +0,0 @@ - - - - 4.0.0 - - org.springframework.data - spring-data-jpa - 3.2.5 - - Spring Data JPA - Spring Data module for JPA repositories. - https://projects.spring.io/spring-data-jpa - - - org.springframework.data - spring-data-jpa-parent - 3.2.5 - ../pom.xml - - - - spring.data.jpa - - - - - - ${project.groupId} - spring-data-commons - ${springdata.commons} - - - - org.springframework - spring-orm - - - - org.springframework - spring-context - - - - org.springframework - spring-aop - - - - org.springframework - spring-tx - - - - org.springframework - spring-beans - - - - org.springframework - spring-instrument - provided - - - - org.springframework - spring-core - - - commons-logging - commons-logging - - - - - - org.antlr - antlr4-runtime - ${antlr} - - - - org.springframework - spring-aspects - compile - true - - - - org.hsqldb - hsqldb - ${hsqldb} - test - - - - com.h2database - h2 - ${h2} - test - - - - - com.mysql - mysql-connector-j - ${mysql-connector-java} - test - - - - org.testcontainers - mysql - test - - - org.slf4j - jcl-over-slf4j - - - - - - - org.postgresql - postgresql - ${postgresql} - test - - - - org.testcontainers - postgresql - test - - - - io.vavr - vavr - ${vavr} - test - - - - - - ${hibernate.groupId}.orm - hibernate-core - ${hibernate} - true - - - net.bytebuddy - byte-buddy - - - - - - ${hibernate.groupId}.orm - hibernate-jpamodelgen - ${hibernate} - provided - - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jaxb} - provided - - - - jakarta.annotation - jakarta.annotation-api - ${jakarta-annotation-api} - - - - org.eclipse.persistence - org.eclipse.persistence.jpa - ${eclipselink} - true - - - - - com.querydsl - querydsl-apt - ${querydsl} - jakarta - provided - - - - com.querydsl - querydsl-jpa - jakarta - ${querydsl} - true - - - - - org.jmolecules.integrations - jmolecules-spring - ${jmolecules-integration} - test - - - - - jakarta.enterprise - jakarta.enterprise.cdi-api - ${cdi} - provided - true - - - - org.apache.openwebbeans - openwebbeans-se - test - - - - com.github.jsqlparser - jsqlparser - ${jsqlparser} - provided - true - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - org.springframework - spring-instrument - ${spring} - runtime - - - - - - default-test - - - **/* - - - - - unit-test - - test - - test - - - **/*UnitTests.java - - - - - integration-test - - test - - test - - - **/*IntegrationTests.java - **/*Tests.java - - - **/*UnitTests.java - **/OpenJpa* - **/EclipseLink* - **/MySql* - **/Postgres* - - - -javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar - - - - - eclipselink-test - - test - - test - - - **/EclipseLink*Tests.java - - - -javaagent:${settings.localRepository}/org/eclipse/persistence/org.eclipse.persistence.jpa/${eclipselink}/org.eclipse.persistence.jpa-${eclipselink}.jar - -javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar - - - - - - - - org.antlr - antlr4-maven-plugin - ${antlr} - - - - antlr4 - - generate-sources - - true - ${project.basedir}/src/main/antlr4 - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - com.querydsl - querydsl-apt - ${querydsl} - jakarta - - - org.hibernate.orm - hibernate-jpamodelgen - ${hibernate} - - - jakarta.persistence - jakarta.persistence-api - ${jakarta-persistence-api} - - - - - - - org.codehaus.mojo - aspectj-maven-plugin - 1.14.0 - - - org.aspectj - aspectjtools - ${aspectj} - - - - - aspectj-compile - - compile - - process-classes - - - aspectj-test-compile - - test-compile - - process-test-classes - - - - - none - - true - true - true - - - org.springframework - spring-aspects - - - ${source.level} - ${source.level} - ${source.level} - aop.xml - - - - - - - diff --git a/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom.sha1 b/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom.sha1 deleted file mode 100644 index 5c6b78cd4..000000000 --- a/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3d6adfbc123e15ed59fa3040c94483eadf86053c \ No newline at end of file diff --git a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/_remote.repositories b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/_remote.repositories deleted file mode 100644 index d5b57eb38..000000000 --- a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:53 EDT 2024 -spring-data-releasetrain-Neumann-RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom deleted file mode 100644 index fbf1e3500..000000000 --- a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom +++ /dev/null @@ -1,166 +0,0 @@ - - - - 4.0.0 - org.springframework.data - spring-data-releasetrain - Neumann-RELEASE - pom - - - org.springframework.data.build - spring-data-build - 2.3.0.RELEASE - - - Spring Data Release Train - BOM - Bill of materials to make sure a consistent set of versions is used for Spring Data modules. - https://github.com/spring-projects/spring-data-build - - - - - - - org.springframework.data - spring-data-cassandra - 3.0.0.RELEASE - - - - - org.springframework.data - spring-data-commons - 2.3.0.RELEASE - - - - - org.springframework.data - spring-data-couchbase - 4.0.0.RELEASE - - - - - org.springframework.data - spring-data-elasticsearch - 4.0.0.RELEASE - - - - - org.springframework.data - spring-data-gemfire - 2.3.0.RELEASE - - - - - org.springframework.data - spring-data-geode - 2.3.0.RELEASE - - - - - org.springframework.data - spring-data-jdbc - 2.0.0.RELEASE - - - - org.springframework.data - spring-data-relational - 2.0.0.RELEASE - - - - - org.springframework.data - spring-data-jpa - 2.3.0.RELEASE - - - - - org.springframework.data - spring-data-mongodb - 3.0.0.RELEASE - - - - - org.springframework.data - spring-data-neo4j - 5.3.0.RELEASE - - - - - org.springframework.data - spring-data-r2dbc - 1.1.0.RELEASE - - - - - org.springframework.data - spring-data-redis - 2.3.0.RELEASE - - - - - org.springframework.data - spring-data-rest-webmvc - 3.3.0.RELEASE - - - org.springframework.data - spring-data-rest-core - 3.3.0.RELEASE - - - org.springframework.data - spring-data-rest-hal-browser - 3.3.0.RELEASE - - - org.springframework.data - spring-data-rest-hal-explorer - 3.3.0.RELEASE - - - - - org.springframework.data - spring-data-solr - 4.2.0.RELEASE - - - - - org.springframework.data - spring-data-keyvalue - 2.3.0.RELEASE - - - - - org.springframework.data - spring-data-envers - 2.3.0.RELEASE - - - - - org.springframework.data - spring-data-ldap - 2.3.0.RELEASE - - - - - - diff --git a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.lastUpdated b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.lastUpdated deleted file mode 100644 index cbb08cfef..000000000 --- a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:53 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139893587 -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.data\:spring-data-releasetrain\:pom\:Neumann-RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139893328 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139893336 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139893452 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139893540 diff --git a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.sha1 b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.sha1 deleted file mode 100644 index 83e87e4f7..000000000 --- a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -855771b2955622ffec02ec4a0e098deb755206d2 \ No newline at end of file diff --git a/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/_remote.repositories b/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/_remote.repositories deleted file mode 100644 index 6bc3fd4aa..000000000 --- a/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:16 EDT 2024 -spring-hateoas-2.2.2.pom>central= diff --git a/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom b/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom deleted file mode 100644 index 73df7c226..000000000 --- a/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom +++ /dev/null @@ -1,876 +0,0 @@ - - - 4.0.0 - - org.springframework.hateoas - spring-hateoas - 2.2.2 - - Spring HATEOAS - https://github.com/spring-projects/spring-hateoas - - Library to support implementing representations for - hyper-text driven REST web services. - - - 2011 - - - Pivotal, Inc. - https://www.spring.io - - - - - odrotbohm - Oliver Drotbohm - odrotbohm(at)vmware.com - VMware, Inc. - - Project lead - - +1 - - - gturnquist - Greg Turnquist - gturnquist(at)vmware.com - VMware, Inc. - - Contributor - - -6 - - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - Copyright 2011-2022 the original author or authors. - - 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 - - https://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. - - - - - - UTF-8 - 17 - 3.4.0 - 3.24.2 - 0.0.5 - 1.3 - 1.4.14 - 0.8.8 - ${project.build.directory}/jacoco.exec - 2.15.4 - spring.hateoas - 2.9.0 - 5.10.2 - 1.18.30 - 2023.0.5 - 2.0.12 - 6.1.6 - 3.0.0 - 1.9.23 - 1.7.3 - 1.13.10 - - - - - - spring-next - - 2023.0.6-SNAPSHOT - 6.1.7-SNAPSHOT - - - - spring-snapshot - https://repo.spring.io/snapshot - - - - - - kotlin-next - - 2.0.0-Beta4 - 1.8.0 - - - - - jackson-next - - 2.17.0 - - - - - - - - ci - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - package - - - - - - - - - - - artifactory - - true - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - ${artifactory-maven-plugin.version} - false - - - deploy-to-artifactory - - publish - - - - https://repo.spring.io - ${env.ARTIFACTORY_USERNAME} - ${env.ARTIFACTORY_PASSWORD} - libs-milestone-local - libs-snapshot-local - - - CI build for Spring Modulith ${project.version} - - - - - - - - - - - sonatype - - true - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - - ${env.GPG_PASSPHRASE} - - - - - - - sonatype-new - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2 - - - - - - - - - documentation - - - ${project.build.directory}/generated-docs - true - true - true - true - - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - aggregate-javadoc - - aggregate-no-fork - - package - - ${project.root}/target/site/apidocs - - - - - - - - - org.asciidoctor - asciidoctor-maven-plugin - 2.2.2 - - - org.jruby - jruby - 9.3.7.0 - - - org.asciidoctor - asciidoctorj - 2.5.7 - - - org.asciidoctor - asciidoctorj-diagram - 2.2.4 - - - io.spring.asciidoctor.backends - spring-asciidoctor-backends - ${spring-asciidoctor-backends.version} - - - - - - - html - compile - - process-asciidoc - - - spring-html - src/main/asciidoc - index.adoc - ${generated-docs.directory}/html - - highlight.js - js/highlight - github - - - - - - - - book - - book - shared - font - false - images - ${project.version} - ${project.name} - ${project.version} - ${spring.version} - true - 4 - true - - - asciidoctor-diagram - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.4.2 - - - docs - - single - - package - - - src/docs/resources/assemblies/docs.xml - - spring-hateoas-${project.version} - true - - - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - ${artifactory-maven-plugin.version} - - - deploy-docs - - publish - - deploy - - - spring-hateoas-docs - spring-hateoas-docs - false - docs - - - - Spring Data Docs spring-hateoas ${project.version} - 1 - - - https://repo.spring.io - *-docs.zip - ${env.ARTIFACTORY_USERNAME} - ${env.ARTIFACTORY_PASSWORD} - temp-private-local - temp-private-local - - - - - - - - - - - - - - - io.projectreactor - reactor-bom - ${reactor-bom.version} - import - pom - - - org.junit - junit-bom - ${junit.version} - pom - import - - - com.fasterxml.jackson - jackson-bom - ${jackson-bom.version} - pom - import - - - org.jetbrains.kotlin - kotlin-bom - ${kotlin.version} - pom - import - - - org.jetbrains.kotlinx - kotlinx-coroutines-bom - ${kotlinx-coroutines.version} - pom - import - - - - - - - - - org.jetbrains.kotlin - kotlin-stdlib - true - - - org.jetbrains.kotlin - kotlin-reflect - true - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - true - - - org.jetbrains.kotlin - kotlin-test - ${kotlin.version} - test - - - io.mockk - mockk-jvm - ${mockk.version} - test - - - - org.springframework - spring-aop - ${spring.version} - - - - org.springframework - spring-beans - ${spring.version} - - - - org.springframework - spring-context - ${spring.version} - - - - org.springframework - spring-core - ${spring.version} - - - - org.springframework - spring-web - ${spring.version} - - - - org.springframework - spring-webmvc - ${spring.version} - true - - - - org.springframework - spring-webflux - ${spring.version} - true - - - - org.springframework.plugin - spring-plugin-core - ${spring-plugin.version} - - - - com.fasterxml.jackson.core - jackson-annotations - true - - - - com.fasterxml.jackson.core - jackson-databind - true - - - - com.jayway.jsonpath - json-path - ${jsonpath.version} - - - - org.atteo - evo-inflector - ${evo.version} - true - - - - - - jakarta.validation - jakarta.validation-api - 3.0.2 - true - - - - org.hibernate.validator - hibernate-validator - 8.0.0.Final - test - - - - org.projectlombok - lombok - ${lombok.version} - test - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - test - - - - ch.qos.logback - logback-classic - ${logback.version} - test - - - - org.junit.jupiter - junit-jupiter-api - test - - - - org.junit.jupiter - junit-jupiter-engine - test - - - - org.junit.jupiter - junit-jupiter-params - test - - - - org.springframework - spring-test - ${spring.version} - true - - - - org.mockito - mockito-junit-jupiter - 2.23.4 - test - - - - org.assertj - assertj-core - ${assertj.version} - test - - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - provided - - - - net.jadler - jadler-all - 1.3.0 - test - - - junit - junit - - - - - - io.projectreactor.netty - reactor-netty - test - - - - io.projectreactor - reactor-test - test - - - - io.projectreactor.addons - reactor-extra - test - - - - com.tngtech.archunit - archunit - 1.0.1 - test - - - - - - - verify - - - - org.apache.maven.wagon - wagon-ssh - 3.0.0 - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - true -
    ${project.name}
    - 1.8 - ${source.level} - true - none - - https://docs.spring.io/spring/docs/${spring.version}/javadoc-api/ - https://docs.oracle.com/en/java/javase/17/docs/api/ - -
    -
    -
    -
    - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-docs-source - generate-test-sources - - add-test-source - - - - src/docs/java - - - - - add-docs-resources - generate-test-resources - - add-test-resource - - - - - src/docs/resources - - - - - - add-kotlin-sources - generate-sources - - add-source - - - - ${project.basedir}/src/main/kotlin - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - ${source.level} - ${source.level} - true - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - ${project.name} - ${project.version} - ${java-module-name} - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - attach-sources - - jar - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0 - - false - - - - - org.jetbrains.kotlin - kotlin-maven-plugin - ${kotlin.version} - - 1.8 - - - - compile - - compile - - - - ${project.basedir}/src/main/kotlin - ${project.basedir}/src/main/java - - - - - test-compile - - test-compile - - - - ${project.basedir}/src/test/kotlin - ${project.basedir}/src/test/java - - - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.1 - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0 - - sonatype - false - true - - - - -
    - - - https://github.com/spring-projects/spring-hateoas - scm:git:git://github.com/spring-projects/spring-hateoas.git - scm:git:ssh://git@github.com:spring-projects/spring-hateoas.git - 2.2.2 - - -
    diff --git a/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom.sha1 b/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom.sha1 deleted file mode 100644 index 138e2d522..000000000 --- a/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -330672cbcff35d2347a698a94c7b895d3fe5b81e \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/_remote.repositories deleted file mode 100644 index d4849a5b5..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:54 EDT 2024 -spring-integration-bom-5.3.0.RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom deleted file mode 100644 index 56ca75499..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.integration - spring-integration-bom - 5.3.0.RELEASE - pom - Spring Integration (Bill of Materials) - Spring Integration (Bill of Materials) - https://github.com/spring-projects/spring-integration - - Spring IO - https://spring.io/projects/spring-integration - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - abilan - Artem Bilan - abilan@pivotal.io - - project lead - - - - garyrussell - Gary Russell - grussell@pivotal.io - - project lead emeritus - - - - markfisher - Mark Fisher - mfisher@pivotal.io - - project founder and lead emeritus - - - - - scm:git:git://github.com/spring-projects/spring-integration.git - scm:git:ssh://git@github.com:spring-projects/spring-integration.git - https://github.com/spring-projects/spring-integration - - - GitHub - https://github.com/spring-projects/spring-integration/issues - - - - - org.springframework.integration - spring-integration-amqp - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-core - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-event - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-feed - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-file - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-ftp - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-gemfire - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-groovy - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-http - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-ip - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-jdbc - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-jms - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-jmx - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-jpa - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-mail - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-mongodb - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-mqtt - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-redis - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-rmi - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-rsocket - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-scripting - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-security - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-sftp - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-stomp - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-stream - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-syslog - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-test - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-test-support - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-webflux - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-websocket - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-ws - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-xml - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-xmpp - 5.3.0.RELEASE - - - org.springframework.integration - spring-integration-zookeeper - 5.3.0.RELEASE - - - - diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.lastUpdated b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.lastUpdated deleted file mode 100644 index 5910726a8..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:54 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139894737 -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.integration\:spring-integration-bom\:pom\:5.3.0.RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139894454 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139894463 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139894581 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139894689 diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.sha1 deleted file mode 100644 index b8002fb91..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a483563fd63ac49b1bd521e79f5c51947a87e6cc \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/_remote.repositories deleted file mode 100644 index 8e91e587c..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:41 EDT 2024 -spring-integration-bom-6.2.4.pom>ohdsi= diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom deleted file mode 100644 index 1e3701811..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.integration - spring-integration-bom - 6.2.4 - pom - Spring Integration (Bill of Materials) - Spring Integration (Bill of Materials) - https://github.com/spring-projects/spring-integration - - Spring IO - https://spring.io/projects/spring-integration - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - artembilan - Artem Bilan - artem.bilan@broadcom.com - - project lead - - - - garyrussell - Gary Russell - github@gprussell.net - - project lead emeritus - - - - markfisher - Mark Fisher - mark.fisher@broadcom.com - - project founder and lead emeritus - - - - - scm:git:git://github.com/spring-projects/spring-integration.git - scm:git:ssh://git@github.com:spring-projects/spring-integration.git - https://github.com/spring-projects/spring-integration - - - GitHub - https://github.com/spring-projects/spring-integration/issues - - - - - org.springframework.integration - spring-integration-amqp - 6.2.4 - - - org.springframework.integration - spring-integration-camel - 6.2.4 - - - org.springframework.integration - spring-integration-cassandra - 6.2.4 - - - org.springframework.integration - spring-integration-core - 6.2.4 - - - org.springframework.integration - spring-integration-debezium - 6.2.4 - - - org.springframework.integration - spring-integration-event - 6.2.4 - - - org.springframework.integration - spring-integration-feed - 6.2.4 - - - org.springframework.integration - spring-integration-file - 6.2.4 - - - org.springframework.integration - spring-integration-ftp - 6.2.4 - - - org.springframework.integration - spring-integration-graphql - 6.2.4 - - - org.springframework.integration - spring-integration-groovy - 6.2.4 - - - org.springframework.integration - spring-integration-hazelcast - 6.2.4 - - - org.springframework.integration - spring-integration-http - 6.2.4 - - - org.springframework.integration - spring-integration-ip - 6.2.4 - - - org.springframework.integration - spring-integration-jdbc - 6.2.4 - - - org.springframework.integration - spring-integration-jms - 6.2.4 - - - org.springframework.integration - spring-integration-jmx - 6.2.4 - - - org.springframework.integration - spring-integration-jpa - 6.2.4 - - - org.springframework.integration - spring-integration-kafka - 6.2.4 - - - org.springframework.integration - spring-integration-mail - 6.2.4 - - - org.springframework.integration - spring-integration-mongodb - 6.2.4 - - - org.springframework.integration - spring-integration-mqtt - 6.2.4 - - - org.springframework.integration - spring-integration-r2dbc - 6.2.4 - - - org.springframework.integration - spring-integration-redis - 6.2.4 - - - org.springframework.integration - spring-integration-rsocket - 6.2.4 - - - org.springframework.integration - spring-integration-scripting - 6.2.4 - - - org.springframework.integration - spring-integration-security - 6.2.4 - - - org.springframework.integration - spring-integration-sftp - 6.2.4 - - - org.springframework.integration - spring-integration-smb - 6.2.4 - - - org.springframework.integration - spring-integration-stomp - 6.2.4 - - - org.springframework.integration - spring-integration-stream - 6.2.4 - - - org.springframework.integration - spring-integration-syslog - 6.2.4 - - - org.springframework.integration - spring-integration-test - 6.2.4 - - - org.springframework.integration - spring-integration-test-support - 6.2.4 - - - org.springframework.integration - spring-integration-webflux - 6.2.4 - - - org.springframework.integration - spring-integration-websocket - 6.2.4 - - - org.springframework.integration - spring-integration-ws - 6.2.4 - - - org.springframework.integration - spring-integration-xml - 6.2.4 - - - org.springframework.integration - spring-integration-xmpp - 6.2.4 - - - org.springframework.integration - spring-integration-zeromq - 6.2.4 - - - org.springframework.integration - spring-integration-zip - 6.2.4 - - - org.springframework.integration - spring-integration-zookeeper - 6.2.4 - - - - diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.lastUpdated b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.lastUpdated deleted file mode 100644 index 9b591c352..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:41 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.integration\:spring-integration-bom\:pom\:6.2.4 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139821377 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139821469 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139821584 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139821715 diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.sha1 deleted file mode 100644 index 146dfda04..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8444c4c8b854753cb5e2b9571d8960cbcdbf6def \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/_remote.repositories deleted file mode 100644 index 5a8c0c299..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:13 EDT 2024 -spring-integration-core-6.2.4.pom>central= diff --git a/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom b/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom deleted file mode 100644 index 69cb5da20..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.integration - spring-integration-core - 6.2.4 - Spring Integration Core - Spring Integration Core - https://github.com/spring-projects/spring-integration - - Spring IO - https://spring.io/projects/spring-integration - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - artembilan - Artem Bilan - artem.bilan@broadcom.com - - project lead - - - - garyrussell - Gary Russell - github@gprussell.net - - project lead emeritus - - - - markfisher - Mark Fisher - mark.fisher@broadcom.com - - project founder and lead emeritus - - - - - scm:git:git://github.com/spring-projects/spring-integration.git - scm:git:ssh://git@github.com:spring-projects/spring-integration.git - https://github.com/spring-projects/spring-integration - - - GitHub - https://github.com/spring-projects/spring-integration/issues - - - - org.springframework - spring-aop - 6.1.6 - compile - - - org.springframework - spring-context - 6.1.6 - compile - - - org.springframework - spring-messaging - 6.1.6 - compile - - - org.springframework - spring-tx - 6.1.6 - compile - - - org.springframework.retry - spring-retry - 2.0.5 - compile - - - org.springframework - * - - - - - io.projectreactor - reactor-core - 3.6.5 - compile - - - io.micrometer - micrometer-observation - 1.12.5 - compile - - - com.fasterxml.jackson.core - jackson-databind - 2.15.4 - compile - true - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - 2.15.4 - compile - true - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - 2.15.4 - compile - true - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - 2.15.4 - compile - true - - - com.fasterxml.jackson.module - jackson-module-kotlin - 2.15.4 - compile - - - org.jetbrains.kotlin - * - - - true - - - com.google.protobuf - protobuf-java - 3.25.3 - compile - true - - - com.jayway.jsonpath - json-path - 2.8.0 - compile - true - - - com.esotericsoftware - kryo - 5.5.0 - compile - true - - - io.micrometer - micrometer-core - 1.12.5 - compile - true - - - io.micrometer - micrometer-tracing - 1.2.5 - compile - - - aopalliance - * - - - true - - - io.github.resilience4j - resilience4j-ratelimiter - 2.1.0 - compile - true - - - org.apache.avro - avro - 1.11.3 - compile - true - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - 1.7.3 - compile - true - - - diff --git a/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom.sha1 deleted file mode 100644 index ff4c0ebd3..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e1b3f8b2a3ef6716a8dd9e2e978eacbcb2924bb7 \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/_remote.repositories deleted file mode 100644 index 7c6222b23..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:14 EDT 2024 -spring-integration-file-6.2.4.pom>central= diff --git a/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom b/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom deleted file mode 100644 index 4edffda26..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.integration - spring-integration-file - 6.2.4 - Spring Integration File Support - Spring Integration File Support - https://github.com/spring-projects/spring-integration - - Spring IO - https://spring.io/projects/spring-integration - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - artembilan - Artem Bilan - artem.bilan@broadcom.com - - project lead - - - - garyrussell - Gary Russell - github@gprussell.net - - project lead emeritus - - - - markfisher - Mark Fisher - mark.fisher@broadcom.com - - project founder and lead emeritus - - - - - scm:git:git://github.com/spring-projects/spring-integration.git - scm:git:ssh://git@github.com:spring-projects/spring-integration.git - https://github.com/spring-projects/spring-integration - - - GitHub - https://github.com/spring-projects/spring-integration/issues - - - - org.springframework.integration - spring-integration-core - 6.2.4 - compile - - - commons-io - commons-io - 2.15.1 - compile - - - diff --git a/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom.sha1 deleted file mode 100644 index 433fe37cf..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fd0c0bcc36910b2a59ca7409225beeb6a4184dda \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/_remote.repositories deleted file mode 100644 index b806eefc9..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:14 EDT 2024 -spring-integration-http-6.2.4.pom>central= diff --git a/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom b/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom deleted file mode 100644 index 28b32be73..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.integration - spring-integration-http - 6.2.4 - Spring Integration HTTP Support - Spring Integration HTTP Support - https://github.com/spring-projects/spring-integration - - Spring IO - https://spring.io/projects/spring-integration - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - artembilan - Artem Bilan - artem.bilan@broadcom.com - - project lead - - - - garyrussell - Gary Russell - github@gprussell.net - - project lead emeritus - - - - markfisher - Mark Fisher - mark.fisher@broadcom.com - - project founder and lead emeritus - - - - - scm:git:git://github.com/spring-projects/spring-integration.git - scm:git:ssh://git@github.com:spring-projects/spring-integration.git - https://github.com/spring-projects/spring-integration - - - GitHub - https://github.com/spring-projects/spring-integration/issues - - - - org.springframework.integration - spring-integration-core - 6.2.4 - compile - - - org.springframework - spring-webmvc - 6.1.6 - compile - - - com.rometools - rome - 2.1.0 - compile - true - - - org.springframework - spring-webflux - 6.1.6 - compile - true - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - provided - - - diff --git a/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom.sha1 deleted file mode 100644 index bd0b431db..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -22fd17abe30bf768e430458ea965383048247ce4 \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/_remote.repositories deleted file mode 100644 index 83eefc46a..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:14 EDT 2024 -spring-integration-jmx-6.2.4.pom>central= diff --git a/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom b/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom deleted file mode 100644 index 67f98b3c6..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.integration - spring-integration-jmx - 6.2.4 - Spring Integration JMX Support - Spring Integration JMX Support - https://github.com/spring-projects/spring-integration - - Spring IO - https://spring.io/projects/spring-integration - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - artembilan - Artem Bilan - artem.bilan@broadcom.com - - project lead - - - - garyrussell - Gary Russell - github@gprussell.net - - project lead emeritus - - - - markfisher - Mark Fisher - mark.fisher@broadcom.com - - project founder and lead emeritus - - - - - scm:git:git://github.com/spring-projects/spring-integration.git - scm:git:ssh://git@github.com:spring-projects/spring-integration.git - https://github.com/spring-projects/spring-integration - - - GitHub - https://github.com/spring-projects/spring-integration/issues - - - - org.springframework.integration - spring-integration-core - 6.2.4 - compile - - - diff --git a/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom.sha1 deleted file mode 100644 index 842eb61fa..000000000 --- a/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fafd2ab9a3ae5b609ae70ccd3fcfd1dc964bbdd6 \ No newline at end of file diff --git a/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/_remote.repositories b/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/_remote.repositories deleted file mode 100644 index 720046b56..000000000 --- a/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:02 EDT 2024 -spring-ldap-core-3.2.3.pom>central= diff --git a/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom b/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom deleted file mode 100644 index 4ed029577..000000000 --- a/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.ldap - spring-ldap-core - 3.2.3 - spring-ldap-core - Spring LDAP - https://spring.io/projects/spring-ldap - - Pivotal Software, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Pivotal - info@pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-ldap.git - scm:git:ssh://git@github.com/spring-projects/spring-ldap.git - https://github.com/spring-projects/spring-ldap - - - GitHub - https://github.com/spring-projects/spring-ldap/issues - - - - org.springframework - spring-core - 6.1.3 - compile - - - org.springframework - spring-beans - 6.1.3 - compile - - - org.springframework - spring-tx - 6.1.3 - compile - - - org.slf4j - slf4j-api - 1.7.36 - runtime - - - diff --git a/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom.sha1 b/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom.sha1 deleted file mode 100644 index 7423d6ecc..000000000 --- a/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bf03071648f2a17b19e9a26aeb189af496681240 \ No newline at end of file diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/_remote.repositories deleted file mode 100644 index 1539151ef..000000000 --- a/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -spring-plugin-core-1.1.0.RELEASE.pom>central= diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom b/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom deleted file mode 100644 index 2ae616701..000000000 --- a/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - 4.0.0 - - spring-plugin-core - - Spring Plugin - Core - Core plugin infrastructure - - - org.springframework.plugin - spring-plugin - 1.1.0.RELEASE - - - - - - org.springframework - spring-beans - ${spring.version} - - - commons-logging - commons-logging - - - - - - org.springframework - spring-context - ${spring.version} - - - org.springframework - spring-aop - ${spring.version} - - - - org.springframework - spring-test - ${spring.version} - test - - - - - diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom.sha1 deleted file mode 100644 index 39cf32b3a..000000000 --- a/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c6b64c253270276d8fcd9f22f1df70918df6b49b \ No newline at end of file diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/_remote.repositories b/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/_remote.repositories deleted file mode 100644 index d46a98659..000000000 --- a/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:47 EDT 2024 -spring-plugin-core-3.0.0.pom>central= diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom b/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom deleted file mode 100644 index 434642903..000000000 --- a/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom +++ /dev/null @@ -1,89 +0,0 @@ - - - 4.0.0 - org.springframework.plugin - spring-plugin-core - 3.0.0 - Spring Plugin - Core - Core plugin infrastructure - https://github.com/spring-projects/spring-plugin/spring-plugin-core - 2008 - - VMware, Inc. - https://www.vmware.com - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - Copyright 2010-2022 the original author or authors. - - 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 - - https://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. - - - - - drotbohm - Oliver Drotbohm - odrotbohm@vmware.com - VMware - https://www.spring.io - - Project lead - - +1 - - - - scm:git:git://github.com/spring-projects/spring-plugin.git/spring-plugin-core - scm:git:ssh://git@github.com:spring-projects/spring-plugin.git/spring-plugin-core - 3.0.0 - https://github.com/spring-projects/spring-plugin/spring-plugin-core - - - Github - https://github.com/spring-projects/spring-plugin/issues - - - Bamboo - https://build.springsource.org/browse/PLUGIN-MASTER - - - - org.springframework - spring-beans - 6.0.0 - compile - - - org.springframework - spring-context - 6.0.0 - compile - - - org.springframework - spring-aop - 6.0.0 - compile - - - org.slf4j - slf4j-api - 2.0.3 - compile - - - diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom.sha1 b/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom.sha1 deleted file mode 100644 index bb0cb5977..000000000 --- a/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cc33d12ac99e12f559bcbe8acb4268821f67566a \ No newline at end of file diff --git a/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/_remote.repositories deleted file mode 100644 index 5349d64ae..000000000 --- a/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -spring-plugin-1.1.0.RELEASE.pom>central= diff --git a/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom b/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom deleted file mode 100644 index a09e4fbf8..000000000 --- a/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom +++ /dev/null @@ -1,216 +0,0 @@ - - - 4.0.0 - org.springframework.plugin - spring-plugin - pom - Spring Plugin - 1.1.0.RELEASE - Simple plugin infrastructure - - - Pivotal, Inc. - http://www.springsource.org - - 2008-2014 - https://github.com/SpringSource/spring-plugin - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - Copyright 2010 the original author or authors. - - 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. - - - - - - core - metadata - - - - 3.2.8.RELEASE - 1.7.6 - - - - - gierke - Oliver Gierke - ogierke@gopivotal.com - http://www.olivergierke.de - Pivtoal - http://www.gopivotal.com - - Project lead - - +1 - - - - - - - - org.hamcrest - hamcrest-library - 1.3 - test - - - junit - junit - 4.11 - test - - - - org.mockito - mockito-all - 1.9.5 - test - - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - test - - - ch.qos.logback - logback-classic - 1.1.0 - test - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - 1.6 - 1.6 - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - attach-sources - - jar - - - - - - - com.springsource.bundlor - com.springsource.bundlor.maven - 1.0.0.RELEASE - - - bundlor - - bundlor - - process-classes - - - - true - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - true - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - attach-javadocs - - jar - - - - - - - - - - https://github.com/spring-projects/spring-plugin - scm:git:git://github.com/spring-projects/spring-plugin.git - scm:git:ssh://git@github.com:spring-projects/spring-plugin.git - - - - Bamboo - https://build.springsource.org/browse/PLUGIN-MASTER - - - - Github - https://github.com/spring-projects/spring-plugin/issues - - - - - spring-libs-release - http://repo.spring.io/libs-release - - false - - - - - - - spring-plugins-release - http://repo.spring.io/plugins-release - - false - - - - - diff --git a/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom.sha1 deleted file mode 100644 index ab64a3f55..000000000 --- a/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5971b2fcf923b826504b26f90fea377d72e3e7c4 \ No newline at end of file diff --git a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/_remote.repositories b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/_remote.repositories deleted file mode 100644 index 0e02a02a5..000000000 --- a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:42 EDT 2024 -spring-pulsar-bom-1.0.5.pom>ohdsi= diff --git a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom deleted file mode 100644 index c5a2521e8..000000000 --- a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.pulsar - spring-pulsar-bom - 1.0.5 - pom - spring-pulsar-bom - Spring Pulsar (Bill of Materials) - https://github.com/spring-projects/spring-pulsar - - Pivotal Software, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - schacko - Soby Chacko - chackos@vmware.com - - - onobc - Chris Bono - cbono@vmware.com - - - - https://github.com/spring-projects/spring-pulsar.git - git@github.com:spring-projects/spring-pulsar.git - https://github.com/spring-projects/spring-pulsar - - - GitHub - https://github.com/spring-projects/spring-pulsar/issues - - - - - org.springframework.pulsar - spring-pulsar - 1.0.5 - - - org.springframework.pulsar - spring-pulsar-cache-provider - 1.0.5 - - - org.springframework.pulsar - spring-pulsar-cache-provider-caffeine - 1.0.5 - - - org.springframework.pulsar - spring-pulsar-reactive - 1.0.5 - - - - diff --git a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.lastUpdated b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.lastUpdated deleted file mode 100644 index f167831a7..000000000 --- a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:42 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.pulsar\:spring-pulsar-bom\:pom\:1.0.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139821727 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139821839 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139821956 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139822079 diff --git a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.sha1 b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.sha1 deleted file mode 100644 index bb8a8429d..000000000 --- a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -24395c435f5c4ea9aec75f9a59415f914bfbbffa \ No newline at end of file diff --git a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/_remote.repositories b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/_remote.repositories deleted file mode 100644 index a23d5e5a0..000000000 --- a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:42 EDT 2024 -spring-restdocs-bom-3.0.1.pom>ohdsi= diff --git a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom deleted file mode 100644 index a606d42a4..000000000 --- a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - 4.0.0 - org.springframework.restdocs - spring-restdocs-bom - 3.0.1 - pom - Spring REST Docs Bill of Materials - Spring REST Docs Bill of Materials - https://github.com/spring-projects/spring-restdocs - - Spring IO - https://projects.spring.io/spring-restdocs - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - awilkinson - Andy Wilkinson - awilkinson@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-restdocs - scm:git:git://github.com/spring-projects/spring-restdocs - https://github.com/spring-projects/spring-restdocs - - - GitHub - https://github.com/spring-projects/spring-restdocs/issues - - - - - org.springframework.restdocs - spring-restdocs-asciidoctor - 3.0.1 - - - org.springframework.restdocs - spring-restdocs-core - 3.0.1 - - - org.springframework.restdocs - spring-restdocs-mockmvc - 3.0.1 - - - org.springframework.restdocs - spring-restdocs-restassured - 3.0.1 - - - org.springframework.restdocs - spring-restdocs-webtestclient - 3.0.1 - - - - diff --git a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.lastUpdated b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.lastUpdated deleted file mode 100644 index 49a7eb7c3..000000000 --- a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:42 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.restdocs\:spring-restdocs-bom\:pom\:3.0.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139822090 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139822190 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139822315 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139822452 diff --git a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 deleted file mode 100644 index 088d9177e..000000000 --- a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a2dde6e0ff712732da1dcace896abe7781735a87 \ No newline at end of file diff --git a/code/arachne/org/springframework/retry/spring-retry/2.0.5/_remote.repositories b/code/arachne/org/springframework/retry/spring-retry/2.0.5/_remote.repositories deleted file mode 100644 index 73f8062c1..000000000 --- a/code/arachne/org/springframework/retry/spring-retry/2.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:53 EDT 2024 -spring-retry-2.0.5.pom>central= diff --git a/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom b/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom deleted file mode 100644 index f90c6fbc3..000000000 --- a/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom +++ /dev/null @@ -1,315 +0,0 @@ - - - 4.0.0 - org.springframework.retry - spring-retry - ${revision} - Spring Retry - - - https://www.springsource.org - - SpringSource - https://www.springsource.com - - - - Apache 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - 2.0.5 - false - 17 - UTF-8 - UTF-8 - - 1.9.20.1 - 3.24.2 - 5.10.1 - 2.21.1 - 5.7.0 - 6.0.15 - - - - https://github.com/spring-projects/spring-retry - scm:git:git://github.com/spring-projects/spring-retry.git - scm:git:ssh://git@github.com/spring-projects/spring-retry.git - HEAD - - - - - dsyer - Dave Syer - dsyer@vmware.com - - - - - - org.springframework - spring-context - true - - - org.springframework - spring-core - true - - - - org.springframework - spring-test - test - - - org.springframework - spring-tx - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.junit.platform - junit-platform-launcher - test - - - org.apache.logging.log4j - log4j-core - test - - - org.apache.logging.log4j - log4j-jcl - test - - - org.aspectj - aspectjweaver - ${aspectj.version} - test - - - org.assertj - assertj-core - ${assertj.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - - - - - org.springframework - spring-framework-bom - ${spring.framework.version} - pom - import - - - org.apache.logging.log4j - log4j-bom - ${log4j.version} - pom - import - - - org.junit - junit-bom - ${junit-jupiter.version} - pom - import - - - - - - - - . - META-INF - - LICENSE-2.0.txt - NOTICE.txt - - - - - - - io.spring.javaformat - spring-javaformat-maven-plugin - 0.0.40 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.2 - - - - - - io.spring.javaformat - spring-javaformat-maven-plugin - - - validate - - ${disable.checks} - - - validate - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${java.version} - ${java.version} - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - javadoc - - jar - - package - - - - none - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - package - - - - - - - - - spring - - - spring-snapshots - Spring Snapshots - https://repo.spring.io/snapshot - - true - - - - spring-milestones - Spring Milestones - https://repo.spring.io/milestone - - false - - - - spring-releases - Spring Releases - https://repo.spring.io/release - - false - - - - - - spring-snapshots - Spring Snapshots - https://repo.spring.io/snapshot - - true - - - - spring-milestones - Spring Milestones - https://repo.spring.io/milestone - - false - - - - - - fast - - true - true - - - - - diff --git a/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom.sha1 b/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom.sha1 deleted file mode 100644 index 80857ca80..000000000 --- a/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -92c75e2856a9bea47b6eeaac1b0435daee1da879 \ No newline at end of file diff --git a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/_remote.repositories b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/_remote.repositories deleted file mode 100644 index cd61d8860..000000000 --- a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:55 EDT 2024 -spring-security-bom-5.3.2.RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom deleted file mode 100644 index b03dfbe56..000000000 --- a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom +++ /dev/null @@ -1,143 +0,0 @@ - - - 4.0.0 - org.springframework.security - spring-security-bom - 5.3.2.RELEASE - pom - spring-security-bom - spring-security-bom - https://spring.io/spring-security - - spring.io - https://spring.io/ - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - rwinch - Rob Winch - rwinch@pivotal.io - - - jgrandja - Joe Grandja - jgrandja@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-security - scm:git:git://github.com/spring-projects/spring-security - https://github.com/spring-projects/spring-security - - - - - org.springframework.security - spring-security-acl - 5.3.2.RELEASE - - - org.springframework.security - spring-security-aspects - 5.3.2.RELEASE - - - org.springframework.security - spring-security-cas - 5.3.2.RELEASE - - - org.springframework.security - spring-security-config - 5.3.2.RELEASE - - - org.springframework.security - spring-security-core - 5.3.2.RELEASE - - - org.springframework.security - spring-security-crypto - 5.3.2.RELEASE - - - org.springframework.security - spring-security-data - 5.3.2.RELEASE - - - org.springframework.security - spring-security-ldap - 5.3.2.RELEASE - - - org.springframework.security - spring-security-messaging - 5.3.2.RELEASE - - - org.springframework.security - spring-security-oauth2-client - 5.3.2.RELEASE - - - org.springframework.security - spring-security-oauth2-core - 5.3.2.RELEASE - - - org.springframework.security - spring-security-oauth2-jose - 5.3.2.RELEASE - - - org.springframework.security - spring-security-oauth2-resource-server - 5.3.2.RELEASE - - - org.springframework.security - spring-security-openid - 5.3.2.RELEASE - - - org.springframework.security - spring-security-remoting - 5.3.2.RELEASE - - - org.springframework.security - spring-security-rsocket - 5.3.2.RELEASE - - - org.springframework.security - spring-security-saml2-service-provider - 5.3.2.RELEASE - - - org.springframework.security - spring-security-taglibs - 5.3.2.RELEASE - - - org.springframework.security - spring-security-test - 5.3.2.RELEASE - - - org.springframework.security - spring-security-web - 5.3.2.RELEASE - - - - diff --git a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.lastUpdated b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.lastUpdated deleted file mode 100644 index 15c2e0d33..000000000 --- a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:55 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139895264 -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.security\:spring-security-bom\:pom\:5.3.2.RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139894838 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139894847 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139894951 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139895218 diff --git a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.sha1 b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.sha1 deleted file mode 100644 index 499324819..000000000 --- a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -558cb72c6816e7af37a87488b9a819408b1528e6 \ No newline at end of file diff --git a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/_remote.repositories b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/_remote.repositories deleted file mode 100644 index 834c5e43d..000000000 --- a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:42 EDT 2024 -spring-security-bom-6.2.4.pom>ohdsi= diff --git a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom deleted file mode 100644 index e849712bc..000000000 --- a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.security - spring-security-bom - 6.2.4 - pom - spring-security-bom - Spring Security - https://spring.io/projects/spring-security - - Pivotal Software, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Pivotal - info@pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-security.git - scm:git:ssh://git@github.com/spring-projects/spring-security.git - https://github.com/spring-projects/spring-security - - - GitHub - https://github.com/spring-projects/spring-security/issues - - - - - org.springframework.security - spring-security-acl - 6.2.4 - - - org.springframework.security - spring-security-aspects - 6.2.4 - - - org.springframework.security - spring-security-cas - 6.2.4 - - - org.springframework.security - spring-security-config - 6.2.4 - - - org.springframework.security - spring-security-core - 6.2.4 - - - org.springframework.security - spring-security-crypto - 6.2.4 - - - org.springframework.security - spring-security-data - 6.2.4 - - - org.springframework.security - spring-security-ldap - 6.2.4 - - - org.springframework.security - spring-security-messaging - 6.2.4 - - - org.springframework.security - spring-security-oauth2-client - 6.2.4 - - - org.springframework.security - spring-security-oauth2-core - 6.2.4 - - - org.springframework.security - spring-security-oauth2-jose - 6.2.4 - - - org.springframework.security - spring-security-oauth2-resource-server - 6.2.4 - - - org.springframework.security - spring-security-rsocket - 6.2.4 - - - org.springframework.security - spring-security-saml2-service-provider - 6.2.4 - - - org.springframework.security - spring-security-taglibs - 6.2.4 - - - org.springframework.security - spring-security-test - 6.2.4 - - - org.springframework.security - spring-security-web - 6.2.4 - - - - diff --git a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.lastUpdated b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.lastUpdated deleted file mode 100644 index 28f7e99fe..000000000 --- a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:42 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.security\:spring-security-bom\:pom\:6.2.4 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139822463 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139822559 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139822706 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139822834 diff --git a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.sha1 b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.sha1 deleted file mode 100644 index a2cb5a4e6..000000000 --- a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ab4b6bba33cf5bcf2eb08a68fb3d64d42c02437a \ No newline at end of file diff --git a/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/_remote.repositories b/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/_remote.repositories deleted file mode 100644 index 031e01fba..000000000 --- a/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:58 EDT 2024 -spring-security-crypto-6.2.4.pom>central= diff --git a/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom b/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom deleted file mode 100644 index 126c610d5..000000000 --- a/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.security - spring-security-crypto - 6.2.4 - spring-security-crypto - Spring Security - https://spring.io/projects/spring-security - - Pivotal Software, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Pivotal - info@pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-security.git - scm:git:ssh://git@github.com/spring-projects/spring-security.git - https://github.com/spring-projects/spring-security - - - GitHub - https://github.com/spring-projects/spring-security/issues - - diff --git a/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom.sha1 b/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom.sha1 deleted file mode 100644 index ea81d4a29..000000000 --- a/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2f1bf66d9a6f5634df07a53c0d12522cccb6e617 \ No newline at end of file diff --git a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/_remote.repositories b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/_remote.repositories deleted file mode 100644 index 2bbb879ed..000000000 --- a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:43 EDT 2024 -spring-session-bom-3.2.2.pom>ohdsi= diff --git a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom deleted file mode 100644 index 9213be489..000000000 --- a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.session - spring-session-bom - 3.2.2 - pom - spring-session-bom - Spring Session - https://spring.io/projects/spring-session - - Pivotal Software, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Pivotal - info@pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-session.git - scm:git:ssh://git@github.com/spring-projects/spring-session.git - https://github.com/spring-projects/spring-session - - - GitHub - https://github.com/spring-projects/spring-session/issues - - - - - org.springframework.session - spring-session-core - 3.2.2 - - - org.springframework.session - spring-session-data-mongodb - 3.2.2 - - - org.springframework.session - spring-session-data-redis - 3.2.2 - - - org.springframework.session - spring-session-hazelcast - 3.2.2 - - - org.springframework.session - spring-session-jdbc - 3.2.2 - - - - diff --git a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.lastUpdated b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.lastUpdated deleted file mode 100644 index 6a0068471..000000000 --- a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:43 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.session\:spring-session-bom\:pom\:3.2.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139822844 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139822939 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139823086 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139823216 diff --git a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.sha1 b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.sha1 deleted file mode 100644 index 0ebafca26..000000000 --- a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -80bce7fe9c8512ee349e5af3fc68661244ebe645 \ No newline at end of file diff --git a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/_remote.repositories b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/_remote.repositories deleted file mode 100644 index c9bf10634..000000000 --- a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:55 EDT 2024 -spring-session-bom-Dragonfruit-RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom deleted file mode 100644 index 9feff4e33..000000000 --- a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom +++ /dev/null @@ -1,72 +0,0 @@ - - - 4.0.0 - org.springframework.session - spring-session-bom - Dragonfruit-RELEASE - pom - Spring Session Maven Bill of Materials (BOM) - Spring Session Maven Bill of Materials (BOM) - https://projects.spring.io/spring-session/ - - Pivotal Software, Inc. - https://spring.io/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - rwinch - Rob Winch - rwinch@pivotal.io - - - - scm:git:git@github.com/spring-projects/spring-session-bom.git - scm:git:git@github.com/spring-projects/spring-session-bom.git - https://github.com/spring-projects/spring-session-bom - - - GitHub - https://github.com/spring-projects/spring-session/issues - - - - - org.springframework.session - spring-session-jdbc - 2.3.0.RELEASE - - - org.springframework.session - spring-session-data-geode - 2.3.0.RELEASE - - - org.springframework.session - spring-session-hazelcast - 2.3.0.RELEASE - - - org.springframework.session - spring-session-data-mongodb - 2.3.0.RELEASE - - - org.springframework.session - spring-session-core - 2.3.0.RELEASE - - - org.springframework.session - spring-session-data-redis - 2.3.0.RELEASE - - - - diff --git a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.lastUpdated b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.lastUpdated deleted file mode 100644 index f2789f840..000000000 --- a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:55 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139895766 -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.session\:spring-session-bom\:pom\:Dragonfruit-RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139895486 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139895493 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139895616 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139895719 diff --git a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.sha1 b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.sha1 deleted file mode 100644 index acde4b82e..000000000 --- a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2c79cd98047de59dde49b53cabc3f42fcbf531bc \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-aop/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-aop/6.1.6/_remote.repositories deleted file mode 100644 index ac4ffa0c4..000000000 --- a/code/arachne/org/springframework/spring-aop/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:47 EDT 2024 -spring-aop-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom b/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom deleted file mode 100644 index 4d19ef303..000000000 --- a/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-aop - 6.1.6 - Spring AOP - Spring AOP - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-beans - 6.1.6 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom.sha1 deleted file mode 100644 index cd398044a..000000000 --- a/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -97741c56093276e2ca9893f8789db1fbae4e1d24 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-aspects/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-aspects/6.1.6/_remote.repositories deleted file mode 100644 index 74ba96a67..000000000 --- a/code/arachne/org/springframework/spring-aspects/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -spring-aspects-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom b/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom deleted file mode 100644 index 6139051bb..000000000 --- a/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-aspects - 6.1.6 - Spring Aspects - Spring Aspects - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.aspectj - aspectjweaver - 1.9.22 - compile - - - diff --git a/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom.sha1 deleted file mode 100644 index 81cbae4cc..000000000 --- a/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -436efc14bf81c03e5170921f946a505c527d2363 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-beans/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-beans/6.1.6/_remote.repositories deleted file mode 100644 index 02c5c4dd9..000000000 --- a/code/arachne/org/springframework/spring-beans/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:47 EDT 2024 -spring-beans-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom b/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom deleted file mode 100644 index cc11d50e0..000000000 --- a/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-beans - 6.1.6 - Spring Beans - Spring Beans - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-core - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom.sha1 deleted file mode 100644 index b6fb511fe..000000000 --- a/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -94bead1186dc2182c551b751dd1bd190fc6a00e9 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-context-support/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-context-support/6.1.6/_remote.repositories deleted file mode 100644 index 266605c79..000000000 --- a/code/arachne/org/springframework/spring-context-support/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:04 EDT 2024 -spring-context-support-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom b/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom deleted file mode 100644 index f20b927b3..000000000 --- a/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-context-support - 6.1.6 - Spring Context Support - Spring Context Support - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-beans - 6.1.6 - compile - - - org.springframework - spring-context - 6.1.6 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom.sha1 deleted file mode 100644 index 05ab7d712..000000000 --- a/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3961c3e5ac733643a25ca4294bb392d77d4af766 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-context/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-context/6.1.6/_remote.repositories deleted file mode 100644 index 0975ffac0..000000000 --- a/code/arachne/org/springframework/spring-context/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:47 EDT 2024 -spring-context-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom b/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom deleted file mode 100644 index 8055f71e9..000000000 --- a/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-context - 6.1.6 - Spring Context - Spring Context - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-aop - 6.1.6 - compile - - - org.springframework - spring-beans - 6.1.6 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - org.springframework - spring-expression - 6.1.6 - compile - - - io.micrometer - micrometer-observation - 1.12.5 - compile - - - diff --git a/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom.sha1 deleted file mode 100644 index f6c49e1d2..000000000 --- a/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -685c155626b87ab83d99e37bf64eb809a5d268f8 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-core/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-core/6.1.6/_remote.repositories deleted file mode 100644 index 38a7f604a..000000000 --- a/code/arachne/org/springframework/spring-core/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:47 EDT 2024 -spring-core-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom b/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom deleted file mode 100644 index 6c4de2c50..000000000 --- a/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-core - 6.1.6 - Spring Core - Spring Core - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-jcl - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom.sha1 deleted file mode 100644 index b6e819d02..000000000 --- a/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -604b22e105472cacdcb796b50988e3825d4e5e72 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-expression/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-expression/6.1.6/_remote.repositories deleted file mode 100644 index b0e74ddef..000000000 --- a/code/arachne/org/springframework/spring-expression/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:47 EDT 2024 -spring-expression-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom b/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom deleted file mode 100644 index 080df5e10..000000000 --- a/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-expression - 6.1.6 - Spring Expression Language (SpEL) - Spring Expression Language (SpEL) - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-core - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom.sha1 deleted file mode 100644 index f6cc13af6..000000000 --- a/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8eca1e8c08b6f522b0a8b13316401c1d3e47542e \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/_remote.repositories deleted file mode 100644 index ba69967ba..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:54 EDT 2024 -spring-framework-bom-5.2.6.RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom deleted file mode 100644 index a6bc9271a..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom +++ /dev/null @@ -1,147 +0,0 @@ - - - 4.0.0 - org.springframework - spring-framework-bom - 5.2.6.RELEASE - pom - Spring Framework (Bill of Materials) - Spring Framework (Bill of Materials) - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - - org.springframework - spring-aop - 5.2.6.RELEASE - - - org.springframework - spring-aspects - 5.2.6.RELEASE - - - org.springframework - spring-beans - 5.2.6.RELEASE - - - org.springframework - spring-context - 5.2.6.RELEASE - - - org.springframework - spring-context-indexer - 5.2.6.RELEASE - - - org.springframework - spring-context-support - 5.2.6.RELEASE - - - org.springframework - spring-core - 5.2.6.RELEASE - - - org.springframework - spring-expression - 5.2.6.RELEASE - - - org.springframework - spring-instrument - 5.2.6.RELEASE - - - org.springframework - spring-jcl - 5.2.6.RELEASE - - - org.springframework - spring-jdbc - 5.2.6.RELEASE - - - org.springframework - spring-jms - 5.2.6.RELEASE - - - org.springframework - spring-messaging - 5.2.6.RELEASE - - - org.springframework - spring-orm - 5.2.6.RELEASE - - - org.springframework - spring-oxm - 5.2.6.RELEASE - - - org.springframework - spring-test - 5.2.6.RELEASE - - - org.springframework - spring-tx - 5.2.6.RELEASE - - - org.springframework - spring-web - 5.2.6.RELEASE - - - org.springframework - spring-webflux - 5.2.6.RELEASE - - - org.springframework - spring-webmvc - 5.2.6.RELEASE - - - org.springframework - spring-websocket - 5.2.6.RELEASE - - - - diff --git a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.lastUpdated b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.lastUpdated deleted file mode 100644 index 8fe5c7c93..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:54 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139894356 -http\://0.0.0.0/.error=Could not transfer artifact org.springframework\:spring-framework-bom\:pom\:5.2.6.RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139894094 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139894103 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139894214 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139894313 diff --git a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.sha1 deleted file mode 100644 index 741a4711e..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ebc25d8d9959927f156abfeb3522c14ad435eb88 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.29/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/5.3.29/_remote.repositories deleted file mode 100644 index 39b9ff942..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/5.3.29/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:50 EDT 2024 -spring-framework-bom-5.3.29.pom>central= diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom b/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom deleted file mode 100644 index eeb309a99..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-framework-bom - 5.3.29 - pom - Spring Framework (Bill of Materials) - Spring Framework (Bill of Materials) - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - - org.springframework - spring-aop - 5.3.29 - - - org.springframework - spring-aspects - 5.3.29 - - - org.springframework - spring-beans - 5.3.29 - - - org.springframework - spring-context - 5.3.29 - - - org.springframework - spring-context-indexer - 5.3.29 - - - org.springframework - spring-context-support - 5.3.29 - - - org.springframework - spring-core - 5.3.29 - - - org.springframework - spring-expression - 5.3.29 - - - org.springframework - spring-instrument - 5.3.29 - - - org.springframework - spring-jcl - 5.3.29 - - - org.springframework - spring-jdbc - 5.3.29 - - - org.springframework - spring-jms - 5.3.29 - - - org.springframework - spring-messaging - 5.3.29 - - - org.springframework - spring-orm - 5.3.29 - - - org.springframework - spring-oxm - 5.3.29 - - - org.springframework - spring-r2dbc - 5.3.29 - - - org.springframework - spring-test - 5.3.29 - - - org.springframework - spring-tx - 5.3.29 - - - org.springframework - spring-web - 5.3.29 - - - org.springframework - spring-webflux - 5.3.29 - - - org.springframework - spring-webmvc - 5.3.29 - - - org.springframework - spring-websocket - 5.3.29 - - - - diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom.sha1 deleted file mode 100644 index 1cdb5ce07..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8c24d66eef3bbceb6e66d65f58ecabc9d69d3442 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.32/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/5.3.32/_remote.repositories deleted file mode 100644 index 4ad9b6d2e..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/5.3.32/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:51 EDT 2024 -spring-framework-bom-5.3.32.pom>central= diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom b/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom deleted file mode 100644 index 18b667c4c..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-framework-bom - 5.3.32 - pom - Spring Framework (Bill of Materials) - Spring Framework (Bill of Materials) - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - - org.springframework - spring-aop - 5.3.32 - - - org.springframework - spring-aspects - 5.3.32 - - - org.springframework - spring-beans - 5.3.32 - - - org.springframework - spring-context - 5.3.32 - - - org.springframework - spring-context-indexer - 5.3.32 - - - org.springframework - spring-context-support - 5.3.32 - - - org.springframework - spring-core - 5.3.32 - - - org.springframework - spring-expression - 5.3.32 - - - org.springframework - spring-instrument - 5.3.32 - - - org.springframework - spring-jcl - 5.3.32 - - - org.springframework - spring-jdbc - 5.3.32 - - - org.springframework - spring-jms - 5.3.32 - - - org.springframework - spring-messaging - 5.3.32 - - - org.springframework - spring-orm - 5.3.32 - - - org.springframework - spring-oxm - 5.3.32 - - - org.springframework - spring-r2dbc - 5.3.32 - - - org.springframework - spring-test - 5.3.32 - - - org.springframework - spring-tx - 5.3.32 - - - org.springframework - spring-web - 5.3.32 - - - org.springframework - spring-webflux - 5.3.32 - - - org.springframework - spring-webmvc - 5.3.32 - - - org.springframework - spring-websocket - 5.3.32 - - - - diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom.sha1 deleted file mode 100644 index e29248427..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8825605fc0859103e7bd289754d257b30c80eb28 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.11/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/6.0.11/_remote.repositories deleted file mode 100644 index 49e626d49..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/6.0.11/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:31 EDT 2024 -spring-framework-bom-6.0.11.pom>ohdsi= diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom b/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom deleted file mode 100644 index ed09f93ff..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-framework-bom - 6.0.11 - pom - Spring Framework (Bill of Materials) - Spring Framework (Bill of Materials) - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - - org.springframework - spring-aop - 6.0.11 - - - org.springframework - spring-aspects - 6.0.11 - - - org.springframework - spring-beans - 6.0.11 - - - org.springframework - spring-context - 6.0.11 - - - org.springframework - spring-context-indexer - 6.0.11 - - - org.springframework - spring-context-support - 6.0.11 - - - org.springframework - spring-core - 6.0.11 - - - org.springframework - spring-core-test - 6.0.11 - - - org.springframework - spring-expression - 6.0.11 - - - org.springframework - spring-instrument - 6.0.11 - - - org.springframework - spring-jcl - 6.0.11 - - - org.springframework - spring-jdbc - 6.0.11 - - - org.springframework - spring-jms - 6.0.11 - - - org.springframework - spring-messaging - 6.0.11 - - - org.springframework - spring-orm - 6.0.11 - - - org.springframework - spring-oxm - 6.0.11 - - - org.springframework - spring-r2dbc - 6.0.11 - - - org.springframework - spring-test - 6.0.11 - - - org.springframework - spring-tx - 6.0.11 - - - org.springframework - spring-web - 6.0.11 - - - org.springframework - spring-webflux - 6.0.11 - - - org.springframework - spring-webmvc - 6.0.11 - - - org.springframework - spring-websocket - 6.0.11 - - - - diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.lastUpdated b/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.lastUpdated deleted file mode 100644 index 351434f09..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:31 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework\:spring-framework-bom\:pom\:6.0.11 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139871470 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139871480 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139871581 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139871719 diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.sha1 deleted file mode 100644 index 35dd381da..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -274d5a7cb6ff23281a5dffbb7419bc912b8804f1 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.15/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/6.0.15/_remote.repositories deleted file mode 100644 index e4e735a58..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/6.0.15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:53 EDT 2024 -spring-framework-bom-6.0.15.pom>central= diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom b/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom deleted file mode 100644 index bf820bc58..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-framework-bom - 6.0.15 - pom - Spring Framework (Bill of Materials) - Spring Framework (Bill of Materials) - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - - org.springframework - spring-aop - 6.0.15 - - - org.springframework - spring-aspects - 6.0.15 - - - org.springframework - spring-beans - 6.0.15 - - - org.springframework - spring-context - 6.0.15 - - - org.springframework - spring-context-indexer - 6.0.15 - - - org.springframework - spring-context-support - 6.0.15 - - - org.springframework - spring-core - 6.0.15 - - - org.springframework - spring-core-test - 6.0.15 - - - org.springframework - spring-expression - 6.0.15 - - - org.springframework - spring-instrument - 6.0.15 - - - org.springframework - spring-jcl - 6.0.15 - - - org.springframework - spring-jdbc - 6.0.15 - - - org.springframework - spring-jms - 6.0.15 - - - org.springframework - spring-messaging - 6.0.15 - - - org.springframework - spring-orm - 6.0.15 - - - org.springframework - spring-oxm - 6.0.15 - - - org.springframework - spring-r2dbc - 6.0.15 - - - org.springframework - spring-test - 6.0.15 - - - org.springframework - spring-tx - 6.0.15 - - - org.springframework - spring-web - 6.0.15 - - - org.springframework - spring-webflux - 6.0.15 - - - org.springframework - spring-webmvc - 6.0.15 - - - org.springframework - spring-websocket - 6.0.15 - - - - diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom.sha1 deleted file mode 100644 index 5170997e3..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -938ff10f13eecf5266da6426f3d2366130d376d8 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/6.1.6/_remote.repositories deleted file mode 100644 index 42ec55f4a..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:41 EDT 2024 -spring-framework-bom-6.1.6.pom>ohdsi= diff --git a/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom b/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom deleted file mode 100644 index c368b1d3b..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-framework-bom - 6.1.6 - pom - Spring Framework (Bill of Materials) - Spring Framework (Bill of Materials) - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - - org.springframework - spring-aop - 6.1.6 - - - org.springframework - spring-aspects - 6.1.6 - - - org.springframework - spring-beans - 6.1.6 - - - org.springframework - spring-context - 6.1.6 - - - org.springframework - spring-context-indexer - 6.1.6 - - - org.springframework - spring-context-support - 6.1.6 - - - org.springframework - spring-core - 6.1.6 - - - org.springframework - spring-core-test - 6.1.6 - - - org.springframework - spring-expression - 6.1.6 - - - org.springframework - spring-instrument - 6.1.6 - - - org.springframework - spring-jcl - 6.1.6 - - - org.springframework - spring-jdbc - 6.1.6 - - - org.springframework - spring-jms - 6.1.6 - - - org.springframework - spring-messaging - 6.1.6 - - - org.springframework - spring-orm - 6.1.6 - - - org.springframework - spring-oxm - 6.1.6 - - - org.springframework - spring-r2dbc - 6.1.6 - - - org.springframework - spring-test - 6.1.6 - - - org.springframework - spring-tx - 6.1.6 - - - org.springframework - spring-web - 6.1.6 - - - org.springframework - spring-webflux - 6.1.6 - - - org.springframework - spring-webmvc - 6.1.6 - - - org.springframework - spring-websocket - 6.1.6 - - - - diff --git a/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.lastUpdated b/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.lastUpdated deleted file mode 100644 index 139f5d3ee..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:41 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework\:spring-framework-bom\:pom\:6.1.6 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139821049 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139821144 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139821244 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139821369 diff --git a/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.sha1 deleted file mode 100644 index a6cd3eaa5..000000000 --- a/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ba0d9d29a791a57557f650b0e9c4751fe4182afe \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-jcl/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-jcl/6.1.6/_remote.repositories deleted file mode 100644 index a1d6b95ae..000000000 --- a/code/arachne/org/springframework/spring-jcl/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:47 EDT 2024 -spring-jcl-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom b/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom deleted file mode 100644 index f865d1ba9..000000000 --- a/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-jcl - 6.1.6 - Spring Commons Logging Bridge - Spring Commons Logging Bridge - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - diff --git a/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom.sha1 deleted file mode 100644 index 60c488c01..000000000 --- a/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -80402bc6a0bcc74f75eb7af1eaeae1a9cf1fc335 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-jdbc/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-jdbc/6.1.6/_remote.repositories deleted file mode 100644 index b866943da..000000000 --- a/code/arachne/org/springframework/spring-jdbc/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:53 EDT 2024 -spring-jdbc-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom b/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom deleted file mode 100644 index 076e8456f..000000000 --- a/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-jdbc - 6.1.6 - Spring JDBC - Spring JDBC - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-beans - 6.1.6 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - org.springframework - spring-tx - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom.sha1 deleted file mode 100644 index 7cfca4527..000000000 --- a/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f266d9024768472d2fae626b8142a098b4c48437 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-messaging/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-messaging/6.1.6/_remote.repositories deleted file mode 100644 index fcea5ee1e..000000000 --- a/code/arachne/org/springframework/spring-messaging/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:13 EDT 2024 -spring-messaging-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom b/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom deleted file mode 100644 index a1d480991..000000000 --- a/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-messaging - 6.1.6 - Spring Messaging - Spring Messaging - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-beans - 6.1.6 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom.sha1 deleted file mode 100644 index 45a0d0bab..000000000 --- a/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fa6e6c42871bc09a5d62efaced8b4bbc41966aea \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-orm/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-orm/6.1.6/_remote.repositories deleted file mode 100644 index 7f4dfd0cd..000000000 --- a/code/arachne/org/springframework/spring-orm/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -spring-orm-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom b/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom deleted file mode 100644 index ab765ae5d..000000000 --- a/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-orm - 6.1.6 - Spring Object/Relational Mapping - Spring Object/Relational Mapping - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-beans - 6.1.6 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - org.springframework - spring-jdbc - 6.1.6 - compile - - - org.springframework - spring-tx - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom.sha1 deleted file mode 100644 index eda8c68fe..000000000 --- a/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6424347785e842ea80eff31af66961f3b56c7b10 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-oxm/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-oxm/6.1.6/_remote.repositories deleted file mode 100644 index 6a7864331..000000000 --- a/code/arachne/org/springframework/spring-oxm/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:16 EDT 2024 -spring-oxm-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom b/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom deleted file mode 100644 index 3875716af..000000000 --- a/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-oxm - 6.1.6 - Spring Object/XML Marshalling - Spring Object/XML Marshalling - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-beans - 6.1.6 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom.sha1 deleted file mode 100644 index a3fbc28be..000000000 --- a/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1b7f3856c5398440407f6d5c97dd4837de8aff63 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-test/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-test/6.1.6/_remote.repositories deleted file mode 100644 index 70a34b20d..000000000 --- a/code/arachne/org/springframework/spring-test/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:10 EDT 2024 -spring-test-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom b/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom deleted file mode 100644 index aa4a7429c..000000000 --- a/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-test - 6.1.6 - Spring TestContext Framework - Spring TestContext Framework - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-core - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom.sha1 deleted file mode 100644 index 1bc295161..000000000 --- a/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -be9c9731bd87530412ab2306d772e89005ce2c49 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-tx/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-tx/6.1.6/_remote.repositories deleted file mode 100644 index c134304d0..000000000 --- a/code/arachne/org/springframework/spring-tx/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:53 EDT 2024 -spring-tx-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom b/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom deleted file mode 100644 index 47c3cfc1c..000000000 --- a/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-tx - 6.1.6 - Spring Transaction - Spring Transaction - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-beans - 6.1.6 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom.sha1 deleted file mode 100644 index f57534edf..000000000 --- a/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -61888eb2e71a53afe048f4ea3f452728e3ade791 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-web/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-web/6.1.6/_remote.repositories deleted file mode 100644 index 87e6009fa..000000000 --- a/code/arachne/org/springframework/spring-web/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:51 EDT 2024 -spring-web-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom b/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom deleted file mode 100644 index cc1ced7bc..000000000 --- a/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-web - 6.1.6 - Spring Web - Spring Web - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-beans - 6.1.6 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - io.micrometer - micrometer-observation - 1.12.5 - compile - - - diff --git a/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom.sha1 deleted file mode 100644 index d39f9dc48..000000000 --- a/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9635da275865bd9b0d136b7f560199ff49e6fc81 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-webmvc/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-webmvc/6.1.6/_remote.repositories deleted file mode 100644 index 3b6f84332..000000000 --- a/code/arachne/org/springframework/spring-webmvc/6.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -spring-webmvc-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom b/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom deleted file mode 100644 index ce98fdef9..000000000 --- a/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-webmvc - 6.1.6 - Spring Web MVC - Spring Web MVC - https://github.com/spring-projects/spring-framework - - Spring IO - https://spring.io/projects/spring-framework - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - jhoeller - Juergen Hoeller - jhoeller@pivotal.io - - - - scm:git:git://github.com/spring-projects/spring-framework - scm:git:git://github.com/spring-projects/spring-framework - https://github.com/spring-projects/spring-framework - - - GitHub - https://github.com/spring-projects/spring-framework/issues - - - - org.springframework - spring-aop - 6.1.6 - compile - - - org.springframework - spring-beans - 6.1.6 - compile - - - org.springframework - spring-context - 6.1.6 - compile - - - org.springframework - spring-core - 6.1.6 - compile - - - org.springframework - spring-expression - 6.1.6 - compile - - - org.springframework - spring-web - 6.1.6 - compile - - - diff --git a/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom.sha1 deleted file mode 100644 index 5ffa7d286..000000000 --- a/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1c8900b8eb7c020133b728b1367f31fcdaab101b \ No newline at end of file diff --git a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/_remote.repositories b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/_remote.repositories deleted file mode 100644 index 10668f9c8..000000000 --- a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:43 EDT 2024 -spring-ws-bom-4.0.10.pom>ohdsi= diff --git a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom deleted file mode 100644 index 187bcd080..000000000 --- a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom +++ /dev/null @@ -1,92 +0,0 @@ - - - 4.0.0 - org.springframework.ws - spring-ws-bom - 4.0.10 - pom - Spring Web Services - BOM - Spring WS - Bill of Materials (BOM) - https://spring.io/projects/spring-ws - - VMware, Inc. - https://www.spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - Copyright 2005-2022 the original author or authors. - - 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 - - https://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. - - - - - gturnquist - Greg Turnquist - gturnquist(at)vmware.com - VMware, Inc. - https://spring.io - - Project Lead - - -6 - - - - scm:git:git://github.com/spring-projects/spring-ws.git - scm:git:ssh://git@github.com:spring-projects/spring-ws.git - https://github.com/spring-projects/spring-ws - - - GitHub - https://github.com/spring-projects/spring-ws/issues - - - true - true - true - - - - - org.springframework.ws - spring-ws-core - 4.0.10 - - - org.springframework.ws - spring-ws-security - 4.0.10 - - - org.springframework.ws - spring-ws-support - 4.0.10 - - - org.springframework.ws - spring-ws-test - 4.0.10 - - - org.springframework.ws - spring-xml - 4.0.10 - - - - diff --git a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.lastUpdated b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.lastUpdated deleted file mode 100644 index d3218b776..000000000 --- a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:43 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.ws\:spring-ws-bom\:pom\:4.0.10 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139823225 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139823411 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139823533 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139823660 diff --git a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.sha1 b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.sha1 deleted file mode 100644 index 7b4ca203c..000000000 --- a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2899677d829f498efc5f829426495e5cea632ed0 \ No newline at end of file diff --git a/code/arachne/org/testcontainers/database-commons/1.19.7/_remote.repositories b/code/arachne/org/testcontainers/database-commons/1.19.7/_remote.repositories deleted file mode 100644 index 48215bb34..000000000 --- a/code/arachne/org/testcontainers/database-commons/1.19.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:12 EDT 2024 -database-commons-1.19.7.pom>central= diff --git a/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom b/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom deleted file mode 100644 index ac96cee6b..000000000 --- a/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - 4.0.0 - org.testcontainers - database-commons - 1.19.7 - Testcontainers :: Database-Commons - Isolated container management for Java code testing - https://java.testcontainers.org - - GitHub - https://github.com/testcontainers/testcontainers-java/issues - - - - MIT - http://opensource.org/licenses/MIT - - - - https://github.com/testcontainers/testcontainers-java/ - scm:git:git://github.com/testcontainers/testcontainers-java.git - scm:git:ssh://git@github.com/testcontainers/testcontainers-java.git - - - - rnorth - Richard North - rich.north@gmail.com - - - - - org.testcontainers - testcontainers - 1.19.7 - compile - - - diff --git a/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom.sha1 b/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom.sha1 deleted file mode 100644 index 3972df7e5..000000000 --- a/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5f4492389345bb00f72a3d68141c61aca21ef356 \ No newline at end of file diff --git a/code/arachne/org/testcontainers/jdbc/1.19.7/_remote.repositories b/code/arachne/org/testcontainers/jdbc/1.19.7/_remote.repositories deleted file mode 100644 index e5e82f014..000000000 --- a/code/arachne/org/testcontainers/jdbc/1.19.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:12 EDT 2024 -jdbc-1.19.7.pom>central= diff --git a/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom b/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom deleted file mode 100644 index 65bc2137f..000000000 --- a/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - 4.0.0 - org.testcontainers - jdbc - 1.19.7 - Testcontainers :: JDBC - Isolated container management for Java code testing - https://java.testcontainers.org - - GitHub - https://github.com/testcontainers/testcontainers-java/issues - - - - MIT - http://opensource.org/licenses/MIT - - - - https://github.com/testcontainers/testcontainers-java/ - scm:git:git://github.com/testcontainers/testcontainers-java.git - scm:git:ssh://git@github.com/testcontainers/testcontainers-java.git - - - - rnorth - Richard North - rich.north@gmail.com - - - - - org.testcontainers - database-commons - 1.19.7 - compile - - - diff --git a/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom.sha1 b/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom.sha1 deleted file mode 100644 index a4d6096cd..000000000 --- a/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ac3b9359388ccb1a055b4031ee87ff54a190f194 \ No newline at end of file diff --git a/code/arachne/org/testcontainers/postgresql/1.19.7/_remote.repositories b/code/arachne/org/testcontainers/postgresql/1.19.7/_remote.repositories deleted file mode 100644 index 6d87533a6..000000000 --- a/code/arachne/org/testcontainers/postgresql/1.19.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:12 EDT 2024 -postgresql-1.19.7.pom>central= diff --git a/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom b/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom deleted file mode 100644 index 5d5f759b5..000000000 --- a/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - 4.0.0 - org.testcontainers - postgresql - 1.19.7 - Testcontainers :: JDBC :: PostgreSQL - Isolated container management for Java code testing - https://java.testcontainers.org - - GitHub - https://github.com/testcontainers/testcontainers-java/issues - - - - MIT - http://opensource.org/licenses/MIT - - - - https://github.com/testcontainers/testcontainers-java/ - scm:git:git://github.com/testcontainers/testcontainers-java.git - scm:git:ssh://git@github.com/testcontainers/testcontainers-java.git - - - - rnorth - Richard North - rich.north@gmail.com - - - - - org.testcontainers - jdbc - 1.19.7 - compile - - - diff --git a/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom.sha1 b/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom.sha1 deleted file mode 100644 index 924d16713..000000000 --- a/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5f6926317d0a507206113135f8043a71acd16879 \ No newline at end of file diff --git a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/_remote.repositories b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/_remote.repositories deleted file mode 100644 index d85a100e7..000000000 --- a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:44 EDT 2024 -testcontainers-bom-1.19.7.pom>ohdsi= diff --git a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom deleted file mode 100644 index 4dba74ec7..000000000 --- a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom +++ /dev/null @@ -1,318 +0,0 @@ - - - 4.0.0 - org.testcontainers - testcontainers-bom - 1.19.7 - pom - Testcontainers :: BOM - Isolated container management for Java code testing - https://java.testcontainers.org - - GitHub - https://github.com/testcontainers/testcontainers-java/issues - - - - MIT - http://opensource.org/licenses/MIT - - - - https://github.com/testcontainers/testcontainers-java/ - scm:git:git://github.com/testcontainers/testcontainers-java.git - scm:git:ssh://git@github.com/testcontainers/testcontainers-java.git - - - - rnorth - Richard North - rich.north@gmail.com - - - - - - - org.testcontainers - activemq - 1.19.7 - - - org.testcontainers - azure - 1.19.7 - - - org.testcontainers - cassandra - 1.19.7 - - - org.testcontainers - chromadb - 1.19.7 - - - org.testcontainers - clickhouse - 1.19.7 - - - org.testcontainers - cockroachdb - 1.19.7 - - - org.testcontainers - consul - 1.19.7 - - - org.testcontainers - couchbase - 1.19.7 - - - org.testcontainers - cratedb - 1.19.7 - - - org.testcontainers - database-commons - 1.19.7 - - - org.testcontainers - db2 - 1.19.7 - - - org.testcontainers - dynalite - 1.19.7 - - - org.testcontainers - elasticsearch - 1.19.7 - - - org.testcontainers - gcloud - 1.19.7 - - - org.testcontainers - hivemq - 1.19.7 - - - org.testcontainers - influxdb - 1.19.7 - - - org.testcontainers - jdbc - 1.19.7 - - - org.testcontainers - junit-jupiter - 1.19.7 - - - org.testcontainers - k3s - 1.19.7 - - - org.testcontainers - k6 - 1.19.7 - - - org.testcontainers - kafka - 1.19.7 - - - org.testcontainers - localstack - 1.19.7 - - - org.testcontainers - mariadb - 1.19.7 - - - org.testcontainers - milvus - 1.19.7 - - - org.testcontainers - minio - 1.19.7 - - - org.testcontainers - mockserver - 1.19.7 - - - org.testcontainers - mongodb - 1.19.7 - - - org.testcontainers - mssqlserver - 1.19.7 - - - org.testcontainers - mysql - 1.19.7 - - - org.testcontainers - neo4j - 1.19.7 - - - org.testcontainers - nginx - 1.19.7 - - - org.testcontainers - oceanbase - 1.19.7 - - - org.testcontainers - ollama - 1.19.7 - - - org.testcontainers - openfga - 1.19.7 - - - org.testcontainers - oracle-free - 1.19.7 - - - org.testcontainers - oracle-xe - 1.19.7 - - - org.testcontainers - orientdb - 1.19.7 - - - org.testcontainers - postgresql - 1.19.7 - - - org.testcontainers - presto - 1.19.7 - - - org.testcontainers - pulsar - 1.19.7 - - - org.testcontainers - qdrant - 1.19.7 - - - org.testcontainers - questdb - 1.19.7 - - - org.testcontainers - r2dbc - 1.19.7 - - - org.testcontainers - rabbitmq - 1.19.7 - - - org.testcontainers - redpanda - 1.19.7 - - - org.testcontainers - selenium - 1.19.7 - - - org.testcontainers - solace - 1.19.7 - - - org.testcontainers - solr - 1.19.7 - - - org.testcontainers - spock - 1.19.7 - - - org.testcontainers - testcontainers - 1.19.7 - - - org.testcontainers - tidb - 1.19.7 - - - org.testcontainers - toxiproxy - 1.19.7 - - - org.testcontainers - trino - 1.19.7 - - - org.testcontainers - vault - 1.19.7 - - - org.testcontainers - weaviate - 1.19.7 - - - org.testcontainers - yugabytedb - 1.19.7 - - - - diff --git a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.lastUpdated b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.lastUpdated deleted file mode 100644 index 9f10648b3..000000000 --- a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:44 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.testcontainers\:testcontainers-bom\:pom\:1.19.7 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139823668 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139823769 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139823868 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139824007 diff --git a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.sha1 b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.sha1 deleted file mode 100644 index 590ea710d..000000000 --- a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -27b708ef5fa4d0fa87532bfdba5a9b53ab93ca94 \ No newline at end of file diff --git a/code/arachne/org/testcontainers/testcontainers/1.19.7/_remote.repositories b/code/arachne/org/testcontainers/testcontainers/1.19.7/_remote.repositories deleted file mode 100644 index 26add0380..000000000 --- a/code/arachne/org/testcontainers/testcontainers/1.19.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:12 EDT 2024 -testcontainers-1.19.7.pom>central= diff --git a/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom b/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom deleted file mode 100644 index 1eb02c608..000000000 --- a/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom +++ /dev/null @@ -1,76 +0,0 @@ - - - 4.0.0 - org.testcontainers - testcontainers - 1.19.7 - Testcontainers Core - Isolated container management for Java code testing - https://java.testcontainers.org - - GitHub - https://github.com/testcontainers/testcontainers-java/issues - - - - MIT - http://opensource.org/licenses/MIT - - - - https://github.com/testcontainers/testcontainers-java/ - scm:git:git://github.com/testcontainers/testcontainers-java.git - scm:git:ssh://git@github.com/testcontainers/testcontainers-java.git - - - - rnorth - Richard North - rich.north@gmail.com - - - - - junit - junit - 4.13.2 - compile - - - org.slf4j - slf4j-api - 1.7.36 - compile - - - org.apache.commons - commons-compress - 1.24.0 - compile - - - org.rnorth.duct-tape - duct-tape - 1.0.8 - compile - - - com.github.docker-java - docker-java-api - 3.3.6 - compile - - - com.github.docker-java - docker-java-transport-zerodep - 3.3.6 - compile - - - com.google.cloud.tools - jib-core - 0.23.0 - provided - - - diff --git a/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom.sha1 b/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom.sha1 deleted file mode 100644 index 4bed55a06..000000000 --- a/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0411f413de2a98fcc8223c0fa2ace25f04d377e7 \ No newline at end of file diff --git a/code/arachne/org/xmlunit/xmlunit-core/2.9.1/_remote.repositories b/code/arachne/org/xmlunit/xmlunit-core/2.9.1/_remote.repositories deleted file mode 100644 index c39028963..000000000 --- a/code/arachne/org/xmlunit/xmlunit-core/2.9.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:10 EDT 2024 -xmlunit-core-2.9.1.pom>central= diff --git a/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom b/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom deleted file mode 100644 index ee7ac8026..000000000 --- a/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - - 4.0.0 - - - org.xmlunit - xmlunit-parent - 2.9.1 - - - org.xmlunit - xmlunit-core - jar - org.xmlunit:xmlunit-core - XMLUnit for Java - https://www.xmlunit.org/ - - - ${project.groupId} - - - - - junit - junit - test - - - org.hamcrest - hamcrest-core - test - - - org.hamcrest - hamcrest-library - test - - - org.mockito - mockito-core - test - - - - - - java9+ - - [9,) - - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.glassfish.jaxb - jaxb-runtime - runtime - true - - - - - diff --git a/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom.sha1 b/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom.sha1 deleted file mode 100644 index 1c5899a3b..000000000 --- a/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3a122da8c1358e2beed232f53fe02ecdf399c86a \ No newline at end of file diff --git a/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/_remote.repositories b/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/_remote.repositories deleted file mode 100644 index 3dbd0fd8c..000000000 --- a/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:10 EDT 2024 -xmlunit-parent-2.9.1.pom>central= diff --git a/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom b/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom deleted file mode 100644 index a78d566a5..000000000 --- a/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom +++ /dev/null @@ -1,587 +0,0 @@ - - - - 4.0.0 - - org.xmlunit - xmlunit-parent - pom - 2.9.1 - org.xmlunit:xmlunit-parent - Parent POM for all artifacts of XMLUnit - https://www.xmlunit.org/ - - - 1.7 - 1.7 - UTF-8 - UTF-8 - UTF-8 - - - ${project.build.directory}/osgi/MANIFEST.MF - - - - - - 8 - - 2.22.0 - - - 2.3.3 - - - 2001 - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - XMLUnit - https://www.xmlunit.org/ - - - - scm:git:git@github.com:xmlunit/xmlunit.git - scm:git:git@github.com:xmlunit/xmlunit.git - git@github.com:xmlunit/xmlunit.git - - - - GitHub - https://github.com/xmlunit/xmlunit/issues - - - - - XMLUnit General Mailing list - https://lists.sourceforge.net/lists/listinfo/xmlunit-general - https://lists.sourceforge.net/lists/listinfo/xmlunit-general - https://sourceforge.net/p/xmlunit/mailman/xmlunit-general/ - - - - - xmlunit-core - xmlunit-assertj - xmlunit-matchers - xmlunit-legacy - xmlunit-placeholders - - - - - XMLUnit - XMLUnit Contributors - xmlunit-general@lists.sourceforge.net - XMLUnit - https://www.xmlunit.org/ - - - - - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jakarta.xml.bind.version} - - - org.glassfish.jaxb - jaxb-runtime - ${jakarta.xml.bind.version} - - - junit - junit - 4.13.1 - - - org.hamcrest - hamcrest-library - 1.3 - - - org.hamcrest - hamcrest-core - 1.3 - - - org.xmlunit - xmlunit-core - ${project.version} - - - org.xmlunit - xmlunit-core - tests - ${project.version} - - - org.xmlunit - xmlunit-matchers - ${project.version} - - - org.xmlunit - xmlunit-assertj - ${project.version} - - - org.xmlunit - xmlunit-assertj3 - ${project.version} - - - org.xmlunit - xmlunit-jakarta-jaxb-impl - ${project.version} - - - org.mockito - mockito-core - 2.1.0 - test - - - - org.assertj - assertj-core - 2.9.0 - - - net.bytebuddy - byte-buddy - 1.10.10 - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.6.0 - - ${maven.compile.source} - ${maven.compile.target} - ${project.build.sourceEncoding} - - - **/package-info.java - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - true - {0,date,yyyy-MM-dd HH:mm:ssa} - - - - validate - - create - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.0.2 - - - ${manifestfile} - - true - true - - - ${maven.compile.source} - ${maven.compile.target} - ${maven.build.timestamp} - ${buildNumber} (Branch ${scmBranch}) - ${automatic.module.name} - - - - - - - test-jar - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven.surefire.plugin.version} - - - org.apache.maven.plugins - maven-shade-plugin - 2.4.3 - - - org.apache.felix - maven-bundle-plugin - 3.2.0 - true - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.1 - - XMLUnit for Java ${project.version} API - XMLUnit for Java ${project.version} API - - - XMLUnit Core ${project.version} - org.xmlunit* - - - XMLUnit Hamcrest Matchers ${project.version} - org.xmlunit.matchers* - - - XMLUnit AssertJ 3.x Assertions ${project.version} - org.xmlunit.assertj3* - - - XMLUnit AssertJ 2.x/3.x Assertions ${project.version} - org.xmlunit.assertj* - - - XMLUnit Legacy ${project.version} - org.custommonkey.xmlunit* - - - XMLUnit Placeholders ${project.version} - org.xmlunit.placeholder* - - - XMLUnit Jakarta XML Binding Support ${project.version} - org.xmlunit.builder.jakarta_jaxb* - - - true - ${maven.javadoc.source} - ${project.build.sourceEncoding} - ${project.build.sourceEncoding} - true - - https://docs.oracle.com/javase/8/docs/api/ - - ${javadoc.additionalparam} - - - - org.jacoco - jacoco-maven-plugin - 0.8.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4.1 - - - org.cyclonedx - cyclonedx-maven-plugin - 2.7.3 - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - true - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME - org.xmlunit.${project.artifactId} - ${project.description} - org.xmlunit.*;version=${project.version};-noimport:=true - - * - - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - maven-assembly-plugin - 3.0.0 - false - - - project - - false - xmlunit-${project.version}-src - posix - false - - - - make-assembly - package - - single - - - - - - - - - jacoco - - - - org.jacoco - jacoco-maven-plugin - - - prepare-agent - - prepare-agent - - - - - - org.eluder.coveralls - coveralls-maven-plugin - 3.2.1 - - - - - - sonatype-oss-release - - - sonatype-nexus-snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - sonatype-nexus-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - ${maven.compile.source} - ${project.build.sourceEncoding} - ${project.build.sourceEncoding} - true - - http://docs.oracle.com/javase/6/docs/api/ - - ${javadoc.additionalparam} - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-no-snapshots - - enforce - - - - - No Snapshots Allowed! - - - true - - - - - - - - - java8+ - - false - [1.8,) - - - xmlunit-assertj3 - xmlunit-jakarta-jaxb-impl - - - -Xdoclint:html,syntax,accessibility,reference - false - - - - - org.cyclonedx - cyclonedx-maven-plugin - - - build-cyclonedx - package - - makeBom - - - - - all - ${project.artifactId}-${project.version}-cyclonedx - - - - - - - java9+ - - [9,) - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jakarta.xml.bind.version} - - - - - - - - - java14+ - - false - [14,) - - - - - org.mockito - mockito-core - 3.3.3 - test - - - - - - diff --git a/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom.sha1 b/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom.sha1 deleted file mode 100644 index c2a02ca4e..000000000 --- a/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5f2bf29d274cb3f7f3db0e807058520ef03a27c9 \ No newline at end of file diff --git a/code/arachne/org/yaml/snakeyaml/2.2/_remote.repositories b/code/arachne/org/yaml/snakeyaml/2.2/_remote.repositories deleted file mode 100644 index f5dfd3076..000000000 --- a/code/arachne/org/yaml/snakeyaml/2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -snakeyaml-2.2.pom>central= diff --git a/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom b/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom deleted file mode 100644 index 97c7a222c..000000000 --- a/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom +++ /dev/null @@ -1,495 +0,0 @@ - - - 4.0.0 - org.yaml - snakeyaml - 2.2 - bundle - - UTF-8 - bitbucket - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - https://oss.sonatype.org/content/repositories/snapshots/ - 7 - 7 - 7 - false - 5.1.8 - 3.1.0 - 3.12.1 - 3.0.0-M7 - deny - - SnakeYAML - YAML 1.1 parser and emitter for Java - 2008 - https://bitbucket.org/snakeyaml/snakeyaml - - Bitbucket - https://bitbucket.org/snakeyaml/snakeyaml/issues - - - - SnakeYAML developers and users List - snakeyaml-core@googlegroups.com - - - - scm:git:http://bitbucket.org/snakeyaml/snakeyaml - scm:git:ssh://git@bitbucket.org/snakeyaml/snakeyaml - https://bitbucket.org/snakeyaml/snakeyaml/src - snakeyaml-2.2 - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - asomov - Andrey Somov - public.somov@gmail.com - - - maslovalex - Alexander Maslov - alexander.maslov@gmail.com - - - - - junit - junit - 4.13.2 - test - - - org.apache.velocity - velocity-engine-core - 2.3 - test - - - joda-time - joda-time - 2.11.1 - test - - - org.projectlombok - lombok - 1.18.24 - test - - - org.openjdk.jmh - jmh-core - 1.36 - test - - - org.openjdk.jmh - jmh-generator-annprocess - 1.36 - test - - - - - sonatype-nexus-staging - Nexus Release Repository - ${release.repo.url} - - - sonatype-nexus-staging - Sonatype Nexus Snapshots - ${snapshot.repo.url} - false - - - - - - ${basedir}/src/test/resources - true - - - - - - org.apache.maven.plugins - maven-resources-plugin - ${maven-resources-plugin.version} - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.1 - - org.yaml.snakeyaml.external.* - - - - org.apache.maven.plugins - maven-site-plugin - ${maven-site-plugin.version} - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - EnvironmentValue1 - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.1.0 - - - enforce-maven - - enforce - - - - - 3.3.0 - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${project.build.sourceEncoding} - - - - module-info-compile - compile - - 9 - ${project.basedir}/src/main/java9 - true - - [11,) - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - -Xmx512m - - **/*Test.java - - - **/StressTest.java - **/ParallelTest.java - - - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.10 - - bin - - - - org.apache.maven.plugins - maven-changes-plugin - 2.12.1 - - - validate-changes - pre-site - - changes-validate - - - true - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.1 - - - attach-javadocs - - jar - - - - - - com.mycila.maven-license-plugin - maven-license-plugin - 1.10.b1 - -
    src/etc/header.txt
    - false - true - false - - src/**/*.java - - - src/main/java/org/yaml/snakeyaml/external/** - - true - true - true - UTF-8 -
    - - - site - - format - - - -
    - - org.apache.felix - maven-bundle-plugin - ${maven-bundle-plugin.version} - true - - - <_nouses>true - - !org.yaml.snakeyaml.external*, - org.yaml.snakeyaml.*;version=${project.version} - - true - - - - - maven-site-plugin - ${maven-site-plugin.version} - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - true - false - release - deploy nexus-staging:release - - - - org.sonatype.plugins - nexus-staging-maven-plugin - - 1.6.8 - true - - sonatype-nexus-staging - https://oss.sonatype.org/ - false - true - true - - - - net.revelc.code.formatter - formatter-maven-plugin - 2.20.0 - - - - format - - - src/etc/eclipse-java-google-style.xml - UTF-8 - - - - -
    -
    - - - - org.apache.maven.plugins - maven-changes-plugin - 2.12.1 - - https://bitbucket.org/snakeyaml/snakeyaml/issues/%ISSUE% - - - - - changes-report - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${maven-surefire-plugin.version} - - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - html - - API for ${project.name} ${project.version} - API for ${project.name} ${project.version} - Test API for ${project.name} ${project.version} - Test API for ${project.name} ${project.version} - - - javadoc - - - - - - - - - with-java11-tests - - 11 - 11 - 11 - - - - - org.apache.maven.plugins - maven-surefire-plugin - - --illegal-access=${jdk11-illegal-access-level} -Xmx512m - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -Xlint:deprecation - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-java11-test-source - generate-test-sources - - add-test-source - - - - ${basedir}/src/test/java8/ - ${basedir}/src/test/java11/ - - - - - - - - - - release - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - - - - - -
    diff --git a/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom.sha1 b/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom.sha1 deleted file mode 100644 index 1357685aa..000000000 --- a/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7822ad1166dc36cfcbe1eb85434695ac6b549669 \ No newline at end of file diff --git a/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom b/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom deleted file mode 100644 index e87f3df18..000000000 --- a/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom +++ /dev/null @@ -1,208 +0,0 @@ - - 4.0.0 - - oss-parent - org.sonatype.oss - 9 - - pl.pragmatists - JUnitParams - 1.1.0 - jar - JUnitParams - Better parameterised tests for JUnit - https://github.com/Pragmatists/JUnitParams - - - pawel.lipinski - Pawel Lipinski - pawel.lipinski@pragmatists.pl - Pragmatists - http://pragmatists.pl - - - - - Apache 2 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - A business-friendly OSS license - - - - GitHub Issues - https://github.com/Pragmatists/JUnitParams/issues - - - scm:git:git://github.com/Pragmatists/JUnitParams.git - scm:git:git@github.com:Pragmatists/JUnitParams.git - https://github.com/Pragmatists/JUnitParams - JUnitParams-1.1.0 - - - Pragmatists - http://pragmatists.pl - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.6 - true - - ossrh - https://oss.sonatype.org/ - false - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.3 - - 1.6 - 1.6 - UTF-8 - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.3 - - ${project.basedir}/src/main/javadoc;${project.basedir}/src/main/java - ${project.basedir} - false - ${javadoc-parameters} - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.17 - - - org.apache.maven.plugins - maven-jar-plugin - 2.6 - - - - 2 - pl.pragmatists.JUnitParams - ${project.version} - junitparams;version="${project.version}";uses:="org.junit" - org.junit;bundle-version="4.11.0" - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.14 - - - check-java16-sun - test - - check - - - - - - org.codehaus.mojo.signature - java16 - 1.1 - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - release - - - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - java8 - - 1.8 - - - -Xdoclint:none - - - - - - junit - junit - 4.12 - - - org.assertj - assertj-core - 1.7.1 - test - - - diff --git a/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom.sha1 b/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom.sha1 deleted file mode 100644 index 881008817..000000000 --- a/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -65f7bacd5775963c59d6a8ba8128e162151e4644 \ No newline at end of file diff --git a/code/arachne/pl/pragmatists/JUnitParams/1.1.0/_remote.repositories b/code/arachne/pl/pragmatists/JUnitParams/1.1.0/_remote.repositories deleted file mode 100644 index ec0ca8099..000000000 --- a/code/arachne/pl/pragmatists/JUnitParams/1.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:59 EDT 2024 -JUnitParams-1.1.0.pom>central= diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/_remote.repositories b/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/_remote.repositories deleted file mode 100644 index 4c30ca38a..000000000 --- a/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:44 EDT 2024 -git-commit-id-plugin-parent-4.0.0.pom>central= diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom b/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom deleted file mode 100644 index 3687255e7..000000000 --- a/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom +++ /dev/null @@ -1,282 +0,0 @@ - - 4.0.0 - - - org.sonatype.oss - oss-parent - 9 - - - pl.project13.maven - git-commit-id-plugin-parent - pom - 4.0.0 - Git Commit Id Plugin Parent - http://www.blog.project13.pl - - - - ktoso - Konrad Malawski - konrad.malawski@java.pl - project13.pl - http://blog.project13.pl - - - - - - GNU Lesser General Public License 3.0 - http://www.gnu.org/licenses/lgpl-3.0.txt - - - - - git@github.com/ktoso/maven-git-commit-id-plugin.git - scm:git:https://github.com/ktoso/maven-git-commit-id-plugin - scm:git:git@github.com:ktoso/maven-git-commit-id-plugin.git - v4.0.0 - - - - UTF-8 - UTF-8 - - 1.8 - - - - core - maven - - - - - - ${project.groupId} - git-commit-id-plugin-core - ${project.version} - - - com.google.guava - guava - 28.0-jre - - - - - - - - - maven-antrun-plugin - 1.8 - - - maven-assembly-plugin - 3.1.0 - - - maven-dependency-plugin - 3.1.1 - - - maven-release-plugin - 2.5.3 - - - maven-enforcer-plugin - 1.4.1 - - - maven-compiler-plugin - 3.8.0 - - - maven-gpg-plugin - 1.6 - - - maven-clean-plugin - 3.1.0 - - - maven-resources-plugin - 3.1.0 - - - maven-jar-plugin - 3.1.0 - - - maven-plugin-plugin - ${maven-plugin-plugin.version} - - - maven-surefire-plugin - 2.22.0 - - - maven-install-plugin - 2.5.2 - - - maven-deploy-plugin - 2.8.2 - - - maven-site-plugin - 3.7.1 - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${java.target} - ${java.target} - -Xlint:deprecation - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - gpg - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - coveralls - - - - org.eluder.coveralls - coveralls-maven-plugin - 4.3.0 - - - - - org.jacoco - jacoco-maven-plugin - 0.8.2 - - - prepare-agent - - prepare-agent - - - - - - - - - checkstyle - - 3.1.0 - - 8.25 - ${basedir}/.github/.checkstyle - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${maven-checkstyle-plugin.version} - - - com.puppycrawl.tools - checkstyle - ${checkstyle.version} - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${maven-checkstyle-plugin.version} - - - validate - verify - - check - - - ${checkstyle.config.path}/google_checks_checkstyle_${checkstyle.version}.xml - ${checkstyle.config.path}/checkstyle-suppressions.xml - samedir=${checkstyle.config.path} - true - ${project.reporting.outputEncoding} - true - warning - true - true - false - - - - - - - - - - checkstyle-root-dir - - - ${basedir}/../.github/.checkstyle - - - - ${basedir}/../.github/.checkstyle - - - - diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom.sha1 b/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom.sha1 deleted file mode 100644 index 628801b70..000000000 --- a/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -75d1af95d6609fcab3c66b3bf9129d73358b8bd0 \ No newline at end of file diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/_remote.repositories b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/_remote.repositories deleted file mode 100644 index 4a11a62eb..000000000 --- a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:45 EDT 2024 -git-commit-id-plugin-4.0.0.pom>central= -git-commit-id-plugin-4.0.0.jar>central= diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar deleted file mode 100644 index ce7c6c7bf67d133b5f95c1cae32952d8126b3913..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 39013 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 C1V+vP diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar.sha1 b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar.sha1 deleted file mode 100644 index 28753c989..000000000 --- a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -617c292e0684828446cc765fb349bdbf4cacb0ce \ No newline at end of file diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom deleted file mode 100644 index ebcac3b6f..000000000 --- a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom +++ /dev/null @@ -1,306 +0,0 @@ - - 4.0.0 - - - pl.project13.maven - git-commit-id-plugin-parent - 4.0.0 - ../pom.xml - - - git-commit-id-plugin - maven-plugin - 4.0.0 - Git Commit Id Maven Plugin - - This plugin makes basic repository information available through maven resources. This can be used to display - "what version is this?" or "who has deployed this and when, from which branch?" information at runtime, making - it easy to find things like "oh, that isn't deployed yet, I'll test it tomorrow" and making both testers and - developers life easier. See https://github.com/git-commit-id/maven-git-commit-id-plugin - - - - [${maven-plugin-api.version},) - - - - UTF-8 - UTF-8 - - 1.8 - - 3.0 - 3.6.0 - - 5.5.1 - 3.1.0 - - 1.4 - - - - - - org.apache.maven - maven-plugin-api - ${maven-plugin-api.version} - - - org.apache.maven - maven-core - ${maven-plugin-api.version} - - - - ${project.groupId} - git-commit-id-plugin-core - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${maven-plugin-plugin.version} - provided - - - - - com.google.guava - guava - - - - - org.junit.jupiter - junit-jupiter-api - ${junit.version} - test - - - - org.easytesting - fest-assert - ${fest-assert.version} - test - - - - org.codehaus.plexus - plexus-utils - 3.3.0 - test - - - - org.mockito - mockito-core - ${mockito.version} - test - - - - commons-io - commons-io - 2.6 - jar - test - - - - pl.pragmatists - JUnitParams - 1.1.1 - test - - - - com.github.stefanbirkner - system-rules - 1.19.0 - test - - - - - org.slf4j - slf4j-simple - 1.7.25 - test - - - - - - - - src/main/resources - true - - **/*.properties - **/*.xml - - - - - - src/test/resources - - _git_*/** - README.md - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${java.target} - ${java.target} - -Xlint:deprecation - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - default-descriptor - process-classes - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - - - - gpg - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - demo - - - - pl.project13.maven - git-commit-id-plugin - ${project.version} - - - - get-the-git-infos - - revision - - - - validate-the-git-infos - - validateRevision - - package - - - - true - false - git - ${project.basedir}/.git - true - target/testing.properties - yyyy-MM-dd'T'HH:mm:ssZ - GMT-08:00 - false - 7 - properties - true - - false - false - 7 - * - -DEVEL - false - - - git.commit.* - git.remote.origin.url - - - - git.branch - something - ^([^\/]*)\/([^\/]*)$ - $1-$2 - - - BEFORE - UPPER_CASE - - - - - false - true - - - - validating project version - ${project.version} - - - - - validating git dirty - ${git.dirty} - false - - - true - - - - - - - diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom.sha1 b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom.sha1 deleted file mode 100644 index a1a62a99c..000000000 --- a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6394fe43b16b1e21b9ff58ee3e1c83db071b51e8 \ No newline at end of file diff --git a/code/arachne/stax/stax-api/1.0.1/_remote.repositories b/code/arachne/stax/stax-api/1.0.1/_remote.repositories deleted file mode 100644 index b9dcb438a..000000000 --- a/code/arachne/stax/stax-api/1.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:59 EDT 2024 -stax-api-1.0.1.pom>central= diff --git a/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom b/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom deleted file mode 100644 index f61bcd3b6..000000000 --- a/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom +++ /dev/null @@ -1,51 +0,0 @@ - - 4.0.0 - stax - stax-api - StAX API - 1.0.1 - StAX API is the standard java XML processing API defined by JSR-173 - http://stax.codehaus.org/ - - http://jira.codehaus.org/browse/STAX - - - - - -
    dev@stax.codehaus.org
    -
    -
    -
    -
    - 2005 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - StAX Builders List - stax_builders-subscribe@yahoogroups.com - stax_builders-unsubscribe@yahoogroups.com - http://groups.yahoo.com/group/stax_builders/ - - - - - aslom - Aleksander Slominski - - Indiana University - - - chris - Chris Fry - - - - -
    \ No newline at end of file diff --git a/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom.sha1 b/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom.sha1 deleted file mode 100644 index 62fc4a564..000000000 --- a/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e3a933099229a34b22e9e78b2b999e1eb03b3e4e \ No newline at end of file diff --git a/code/arachne/xmlpull/xmlpull/1.1.3.1/_remote.repositories b/code/arachne/xmlpull/xmlpull/1.1.3.1/_remote.repositories deleted file mode 100644 index 780ee37ff..000000000 --- a/code/arachne/xmlpull/xmlpull/1.1.3.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:54 EDT 2024 -xmlpull-1.1.3.1.pom>central= diff --git a/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom b/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom deleted file mode 100644 index 04c3a6621..000000000 --- a/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom +++ /dev/null @@ -1,16 +0,0 @@ - - 4.0.0 - xmlpull - xmlpull - 1.1.3.1 - XML Pull Parsing API - http://www.xmlpull.org - - - - Public Domain - http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt - - - - \ No newline at end of file diff --git a/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.sha1 b/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.sha1 deleted file mode 100644 index fc773f24c..000000000 --- a/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -02727a9a35d75a77344fea0e9866477aff7c19d6 \ No newline at end of file diff --git a/pom.xml b/pom.xml index a75ecafe4..a6fe90d93 100644 --- a/pom.xml +++ b/pom.xml @@ -559,6 +559,11 @@ + + org.springframework + spring-context + 6.1.14 + org.apache.logging.log4j log4j-api From f0de9008906b701d3f5f3906bb603d784c41e3ce Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Tue, 17 Dec 2024 16:43:08 -0500 Subject: [PATCH 115/141] refactored commons after removing older spring batch admin mgr --- Dockerfile | 58 +++++++++---------- pom.xml | 48 +++++++++------ .../ir/helper/IRAnalysisExpressionHelper.java | 2 +- ...timationToEstimationShortDTOConverter.java | 2 +- .../ExampleApplicationWithJobService.java | 2 +- .../generationcache/CleanupScheduler.java | 2 +- .../webapi/job/NotificationServiceImpl.java | 28 +++++++-- .../report/mapper/GenericRowMapper.java | 3 +- .../filters/UpdateAccessTokenFilter.java | 3 +- .../management/AtlasRegularSecurity.java | 2 +- .../ohdsi/webapi/shiro/realms/ADRealm.java | 2 +- .../providers/ActiveDirectoryProvider.java | 2 +- .../util/PreparedStatementRenderer.java | 4 +- .../V1.0.0.1__schema-create_spring_batch.sql | 21 ++++--- 14 files changed, 107 insertions(+), 72 deletions(-) diff --git a/Dockerfile b/Dockerfile index b9e39f726..d770237e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,29 +1,28 @@ -FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder +# FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder +FROM mip-sf-harbor.med.osd.ds/mip-sf/jdk17-alpine-images-main:latest AS builder + WORKDIR /code -ARG CODEARTIFACT_AUTH_TOKEN + ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true -ARG MAVEN_M2="/code/.m2/settings.xml" -ARG OPENTELEMETRY_JAVA_AGENT_VERSION=2.8.0 -ENV CODEARTIFACT_AUTH_TOKEN=${CODEARTIFACT_AUTH_TOKEN} -RUN echo $CODEARTIFACT_AUTH_TOKEN && curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar -# Copy .m2 folder -COPY .m2 /code/.m2 +# Install curl +RUN apk add --no-cache curl -# Download dependencies -COPY pom.xml /code/ -RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} -COPY src /code/src -RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} && \ - mkdir war && \ - mv target/WebAPI.war war && \ - cd war && \ - jar -xf WebAPI.war && \ - rm WebAPI.war +# ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 +ARG OPENTELEMETRY_JAVA_AGENT_VERSION=2.8.0 +RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar + +RUN mkdir war +COPY WebAPI.war war/WebAPI.war +RUN cd war \ +&& jar -xf WebAPI.war \ + && rm WebAPI.war # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 -FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.3_jdk17 +# FROM openjdk:17-jdk-slim +# FROM eclipse-temurin:17-jre-alpine +FROM mip-sf-harbor.med.osd.ds/mip-sf/jdk17-alpine-images-main:latest # Any Java options to pass along, e.g. memory, garbage collection, etc. ENV JAVA_OPTS="" @@ -34,24 +33,19 @@ ENV CLASSPATH="" # https://ruleoftech.com/2016/avoiding-jvm-delays-caused-by-random-number-generation ENV DEFAULT_JAVA_OPTS="-Djava.security.egd=file:///dev/./urandom" -# Create and make working directory to a fixed WebAPI directory -RUN addgroup -S webapi && \ - adduser -S -G webapi webapi && \ - mkdir -p /var/lib/ohdsi/webapi && \ - chown -R webapi:webapi /var/lib/ohdsi/webapi - +# set working directory to a fixed WebAPI directory WORKDIR /var/lib/ohdsi/webapi -COPY --from=builder --chown=101 /code/opentelemetry-javaagent.jar . +COPY --from=builder /code/opentelemetry-javaagent.jar . # deploy the just built OHDSI WebAPI war file # copy resources in order of fewest changes to most changes. # This way, the libraries step is not duplicated if the dependencies # do not change. -COPY --from=builder --chown=webapi /code/war/WEB-INF/lib*/* WEB-INF/lib/ -COPY --from=builder --chown=webapi /code/war/org org -COPY --from=builder --chown=webapi /code/war/WEB-INF/classes WEB-INF/classes -COPY --from=builder --chown=webapi /code/war/META-INF META-INF +COPY --from=builder /code/war/WEB-INF/lib*/* WEB-INF/lib/ +COPY --from=builder /code/war/org org +COPY --from=builder /code/war/WEB-INF/classes WEB-INF/classes +COPY --from=builder /code/war/META-INF META-INF ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://host.docker.internal:5432/OHDSI?currentSchema=webapi" # ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://10.0.21.93:32000/OHDSI?currentSchema=webapi" @@ -63,9 +57,9 @@ ENV FLYWAY_DATASOURCE_PASSWORD=admin1 EXPOSE 8080 -USER webapi +USER 101 # Directly run the code as a WAR. CMD exec java ${DEFAULT_JAVA_OPTS} ${JAVA_OPTS} \ -cp ".:WebAPI.jar:WEB-INF/lib/*.jar${CLASSPATH}" \ - org.springframework.boot.loader.launch.WarLauncher + org.springframework.boot.loader.launch.WarLauncher \ No newline at end of file diff --git a/pom.xml b/pom.xml index a6fe90d93..3cfbfd19d 100644 --- a/pom.xml +++ b/pom.xml @@ -43,24 +43,35 @@ - com.microsoft.sqlserver.jdbc.SQLServerDriver - jdbc:sqlserver://serverName;databaseName=databaseName + + org.postgresql.Driver + jdbc:postgresql://localhost:5432/OHDSI?currentSchema=webapi ohdsi_app_user app1 - sql server + + postgresql webapi - sql server + + postgresql - com.microsoft.sqlserver.jdbc.SQLServerDriver + + ${datasource.driverClassName} + ${datasource.url} + ohdsi_admin_user + admin1 + + classpath:db/migration/postgresql ${datasource.ohdsi.schema} - false ${datasource.ohdsi.schema} + false + + org.hibernate.dialect.PostgreSQLDialect + CDM_NAME 5 @@ -76,10 +87,11 @@ ${datasource.ohdsi.schema}.BATCH_ ISOLATION_READ_COMMITTED - default + + webapi-postgresql - - AtlasRegularSecurity + DisabledSecurity + 43200 http://localhost false @@ -841,7 +853,7 @@ org.apache.httpcomponents.client5 httpclient5 - + @@ -1438,15 +1450,17 @@ webapi-postgresql org.postgresql.Driver - jdbc:postgresql://localhost:5432/OHDSI + jdbc:postgresql://localhost:5432/OHDSI?currentSchema=webapi ohdsi_app_user app1 postgresql webapi + postgresql ${datasource.driverClassName} ${datasource.url} - userWithWritesToOhdsiSchema - app1 + + ohdsi_admin_user + admin1 ${datasource.ohdsi.schema} ${datasource.ohdsi.schema} classpath:db/migration/postgresql diff --git a/src/main/java/org/ohdsi/webapi/check/checker/ir/helper/IRAnalysisExpressionHelper.java b/src/main/java/org/ohdsi/webapi/check/checker/ir/helper/IRAnalysisExpressionHelper.java index 6a1f59056..8a6d8f234 100644 --- a/src/main/java/org/ohdsi/webapi/check/checker/ir/helper/IRAnalysisExpressionHelper.java +++ b/src/main/java/org/ohdsi/webapi/check/checker/ir/helper/IRAnalysisExpressionHelper.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.check.checker.ir.helper; -import org.apache.commons.lang.StringUtils; +import org.apache.commons.lang3.StringUtils; import org.ohdsi.webapi.check.builder.IterableForEachValidatorBuilder; import org.ohdsi.webapi.check.builder.NotNullNotEmptyValidatorBuilder; import org.ohdsi.webapi.check.builder.PredicateValidatorBuilder; diff --git a/src/main/java/org/ohdsi/webapi/estimation/converter/EstimationToEstimationShortDTOConverter.java b/src/main/java/org/ohdsi/webapi/estimation/converter/EstimationToEstimationShortDTOConverter.java index 1aafbd9dc..3d8af2813 100644 --- a/src/main/java/org/ohdsi/webapi/estimation/converter/EstimationToEstimationShortDTOConverter.java +++ b/src/main/java/org/ohdsi/webapi/estimation/converter/EstimationToEstimationShortDTOConverter.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.estimation.converter; -import org.apache.commons.lang.StringUtils; +import org.apache.commons.lang3.StringUtils; import org.ohdsi.webapi.estimation.Estimation; import org.ohdsi.webapi.estimation.dto.EstimationShortDTO; import org.ohdsi.webapi.service.converters.BaseCommonEntityToDTOConverter; diff --git a/src/main/java/org/ohdsi/webapi/exampleapplication/ExampleApplicationWithJobService.java b/src/main/java/org/ohdsi/webapi/exampleapplication/ExampleApplicationWithJobService.java index 4527704af..92cd3e81d 100644 --- a/src/main/java/org/ohdsi/webapi/exampleapplication/ExampleApplicationWithJobService.java +++ b/src/main/java/org/ohdsi/webapi/exampleapplication/ExampleApplicationWithJobService.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.exampleapplication; -import org.apache.commons.lang.RandomStringUtils; +import org.apache.commons.lang3.RandomStringUtils; import org.ohdsi.circe.vocabulary.Concept; import org.ohdsi.webapi.exampleapplication.model.Widget; import org.ohdsi.webapi.exampleapplication.repository.WidgetRepository; diff --git a/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java b/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java index c2ae4ceab..4e26b6e91 100644 --- a/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java +++ b/src/main/java/org/ohdsi/webapi/generationcache/CleanupScheduler.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.generationcache; -import org.apache.commons.lang.time.DateUtils; +import org.apache.commons.lang3.time.DateUtils; import org.springframework.beans.factory.annotation.Value; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; diff --git a/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java b/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java index 8d8701b8b..e544c5fc6 100644 --- a/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/job/NotificationServiceImpl.java @@ -4,9 +4,11 @@ import org.ohdsi.webapi.shiro.Entities.UserEntity; import org.ohdsi.webapi.shiro.Entities.UserRepository; import org.ohdsi.webapi.shiro.PermissionManager; -import org.springframework.batch.admin.service.SearchableJobExecutionDao; +// import org.springframework.batch.admin.service.SearchableJobExecutionDao; import org.springframework.batch.core.BatchStatus; import org.springframework.batch.core.JobExecution; +import org.springframework.batch.core.JobInstance; +import org.springframework.batch.core.explore.JobExplorer; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; @@ -32,16 +34,21 @@ public class NotificationServiceImpl implements NotificationService { private static final int PAGE_SIZE = MAX_SIZE * 10; private static final List WHITE_LIST = new ArrayList<>(); private static final List FOLDING_KEYS = new ArrayList<>(); + private static final List executions = new ArrayList<>(); + private static final String NOTIFICATION_SERVICE_JOB = "NotificationServiceJob"; - private final SearchableJobExecutionDao jobExecutionDao; +// private final SearchableJobExecutionDao jobExecutionDao; + private final JobExplorer jobExplorer; private final PermissionManager permissionManager; private final UserRepository userRepository; @Value("#{!'${security.provider}'.equals('DisabledSecurity')}") private boolean securityEnabled; - public NotificationServiceImpl(SearchableJobExecutionDao jobExecutionDao, List whiteList, PermissionManager permissionManager, UserRepository userRepository) { - this.jobExecutionDao = jobExecutionDao; + public NotificationServiceImpl(/*SearchableJobExecutionDao jobExecutionDao,*/ JobExplorer jobExplorer, List whiteList, + PermissionManager permissionManager, UserRepository userRepository) { + // this.jobExecutionDao = jobExecutionDao; + this.jobExplorer = jobExplorer; this.permissionManager = permissionManager; this.userRepository = userRepository; whiteList.forEach(g -> { @@ -76,11 +83,22 @@ public List findJobs(List hideStatuses, int maxSi final Map allJobMap = new HashMap<>(); final Map userJobMap = new HashMap<>(); for (int start = 0; (!refreshJobsOnly && userJobMap.size() < MAX_SIZE) || allJobMap.size() < MAX_SIZE; start += PAGE_SIZE) { - final List page = jobExecutionDao.getJobExecutions(start, PAGE_SIZE); +// final List page = jobExecutionDao.getJobExecutions(start, PAGE_SIZE); + + // Fetch paginated JobInstances + List jobInstances = jobExplorer.findJobInstancesByJobName(NOTIFICATION_SERVICE_JOB, start, PAGE_SIZE); + // Retrieve JobExecutions for each JobInstance + for (JobInstance jobInstance : jobInstances) { + List jobExecutions = jobExplorer.getJobExecutions(jobInstance); + executions.addAll(jobExecutions); + } + final List page = executions; + if(page.size() == 0) { break; } for (JobExecution jobExec: page) { + // ignore completed jobs when user does not want to see them if (hideStatuses.contains(jobExec.getStatus())) { continue; diff --git a/src/main/java/org/ohdsi/webapi/report/mapper/GenericRowMapper.java b/src/main/java/org/ohdsi/webapi/report/mapper/GenericRowMapper.java index 6a51d9adb..6c189a514 100644 --- a/src/main/java/org/ohdsi/webapi/report/mapper/GenericRowMapper.java +++ b/src/main/java/org/ohdsi/webapi/report/mapper/GenericRowMapper.java @@ -3,7 +3,8 @@ import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.node.ObjectNode; -import org.apache.commons.lang.WordUtils; + +import org.apache.commons.text.WordUtils; import org.springframework.jdbc.core.RowMapper; import org.springframework.jdbc.support.JdbcUtils; diff --git a/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java b/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java index 3cfaa77ab..31a432d42 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java +++ b/src/main/java/org/ohdsi/webapi/shiro/filters/UpdateAccessTokenFilter.java @@ -18,7 +18,8 @@ import jakarta.servlet.http.HttpServletResponse; import jakarta.servlet.http.HttpSession; import jakarta.ws.rs.core.UriBuilder; -import org.apache.commons.lang.StringUtils; + +import org.apache.commons.lang3.StringUtils; import org.apache.shiro.SecurityUtils; import org.apache.shiro.session.Session; import org.apache.shiro.subject.PrincipalCollection; diff --git a/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java b/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java index 1ba01f173..129c99c1c 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java +++ b/src/main/java/org/ohdsi/webapi/shiro/management/AtlasRegularSecurity.java @@ -3,7 +3,7 @@ import org.pac4j.jee.filter.CallbackFilter; import org.pac4j.jee.filter.SecurityFilter; import io.buji.pac4j.realm.Pac4jRealm; -import org.apache.commons.lang.StringUtils; +import org.apache.commons.lang3.StringUtils; import org.apache.shiro.realm.Realm; import org.apache.shiro.realm.activedirectory.ActiveDirectoryRealm; import org.apache.shiro.realm.ldap.DefaultLdapRealm; diff --git a/src/main/java/org/ohdsi/webapi/shiro/realms/ADRealm.java b/src/main/java/org/ohdsi/webapi/shiro/realms/ADRealm.java index 2ff424dd3..2788503e3 100644 --- a/src/main/java/org/ohdsi/webapi/shiro/realms/ADRealm.java +++ b/src/main/java/org/ohdsi/webapi/shiro/realms/ADRealm.java @@ -1,6 +1,6 @@ package org.ohdsi.webapi.shiro.realms; -import org.apache.commons.lang.StringUtils; +import org.apache.commons.lang3.StringUtils; import org.apache.shiro.authc.AuthenticationInfo; import org.apache.shiro.authc.AuthenticationToken; import org.apache.shiro.authc.SimpleAuthenticationInfo; diff --git a/src/main/java/org/ohdsi/webapi/user/importer/providers/ActiveDirectoryProvider.java b/src/main/java/org/ohdsi/webapi/user/importer/providers/ActiveDirectoryProvider.java index 3964f6d07..8712b07b5 100644 --- a/src/main/java/org/ohdsi/webapi/user/importer/providers/ActiveDirectoryProvider.java +++ b/src/main/java/org/ohdsi/webapi/user/importer/providers/ActiveDirectoryProvider.java @@ -1,7 +1,7 @@ package org.ohdsi.webapi.user.importer.providers; import com.google.common.collect.ImmutableSet; -import org.apache.commons.lang.StringUtils; +import org.apache.commons.lang3.StringUtils; import org.ohdsi.webapi.user.importer.model.LdapGroup; import org.ohdsi.webapi.user.importer.model.LdapUser; import org.springframework.beans.factory.annotation.Value; diff --git a/src/main/java/org/ohdsi/webapi/util/PreparedStatementRenderer.java b/src/main/java/org/ohdsi/webapi/util/PreparedStatementRenderer.java index 6ae2f5b21..8d484b4a3 100644 --- a/src/main/java/org/ohdsi/webapi/util/PreparedStatementRenderer.java +++ b/src/main/java/org/ohdsi/webapi/util/PreparedStatementRenderer.java @@ -13,8 +13,8 @@ import com.google.common.collect.ImmutableList; import com.odysseusinc.arachne.commons.types.DBMSType; -import org.apache.commons.lang.ArrayUtils; -import org.apache.commons.lang.StringUtils; +import org.apache.commons.lang3.ArrayUtils; +import org.apache.commons.lang3.StringUtils; import org.ohdsi.circe.helper.ResourceHelper; import org.ohdsi.sql.BigQuerySparkTranslate; import org.ohdsi.sql.SqlRender; diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.1__schema-create_spring_batch.sql b/src/main/resources/db/migration/postgresql/V1.0.0.1__schema-create_spring_batch.sql index c0a2d8383..d7fcde724 100644 --- a/src/main/resources/db/migration/postgresql/V1.0.0.1__schema-create_spring_batch.sql +++ b/src/main/resources/db/migration/postgresql/V1.0.0.1__schema-create_spring_batch.sql @@ -1,12 +1,19 @@ -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_INSTANCE ( +DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_JOB_INSTANCE CASCADE; +DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION CASCADE; +DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS CASCADE; +DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_STEP_EXECUTION CASCADE; +DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT CASCADE; +DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION_CONTEXT CASCADE; + +CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_JOB_INSTANCE ( JOB_INSTANCE_ID BIGINT NOT NULL PRIMARY KEY , VERSION BIGINT , JOB_NAME VARCHAR(100) NOT NULL, JOB_KEY VARCHAR(32) NOT NULL, constraint JOB_INST_UN unique (JOB_NAME, JOB_KEY) ) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION ( +commit; +CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION ( JOB_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY , VERSION BIGINT , JOB_INSTANCE_ID BIGINT NOT NULL, @@ -22,7 +29,7 @@ CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION ( references BATCH_JOB_INSTANCE(JOB_INSTANCE_ID) ) ; -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( +CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( JOB_EXECUTION_ID BIGINT NOT NULL , TYPE_CD VARCHAR(6) NOT NULL , KEY_NAME VARCHAR(100) NOT NULL , @@ -35,7 +42,7 @@ CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) ) ; -CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION ( +CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_STEP_EXECUTION ( STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY , VERSION BIGINT NOT NULL, STEP_NAME VARCHAR(100) NOT NULL, @@ -58,7 +65,7 @@ CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION ( references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) ) ; -CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT ( +CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT ( STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY, SHORT_CONTEXT VARCHAR(2500) NOT NULL, SERIALIZED_CONTEXT TEXT , @@ -66,7 +73,7 @@ CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT ( references BATCH_STEP_EXECUTION(STEP_EXECUTION_ID) ) ; -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_CONTEXT ( +CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION_CONTEXT ( JOB_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY, SHORT_CONTEXT VARCHAR(2500) NOT NULL, SERIALIZED_CONTEXT TEXT , From 9bbf929da4532247e088273c7fec91741d36cc00 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Wed, 18 Dec 2024 14:52:33 -0500 Subject: [PATCH 116/141] Completed refactoring of jobs to Spring Batch 5, reverted changes to migration script --- src/main/java/org/ohdsi/webapi/JobConfig.java | 140 ++----- .../java/org/ohdsi/webapi/JobInvalidator.java | 64 ++-- .../cohortcharacterization/CcServiceImpl.java | 4 +- .../org/ohdsi/webapi/job/JobTemplate.java | 92 ++--- .../java/org/ohdsi/webapi/job/JobUtils.java | 10 +- .../org/ohdsi/webapi/service/JobService.java | 342 +++++++----------- .../V1.0.0.1__schema-create_spring_batch.sql | 21 +- 7 files changed, 283 insertions(+), 390 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/JobConfig.java b/src/main/java/org/ohdsi/webapi/JobConfig.java index c974d1eca..7731d5ed5 100644 --- a/src/main/java/org/ohdsi/webapi/JobConfig.java +++ b/src/main/java/org/ohdsi/webapi/JobConfig.java @@ -2,24 +2,17 @@ import javax.sql.DataSource; -import jakarta.annotation.PostConstruct; import org.apache.commons.lang3.StringUtils; import org.ohdsi.webapi.audittrail.listeners.AuditTrailJobListener; import org.ohdsi.webapi.common.generation.AutoremoveJobListener; import org.ohdsi.webapi.common.generation.CancelJobListener; import org.ohdsi.webapi.job.JobTemplate; import org.ohdsi.webapi.shiro.management.Security; -import org.ohdsi.webapi.util.ManagedThreadPoolTaskExecutor; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.springframework.batch.admin.service.JdbcSearchableJobExecutionDao; -import org.springframework.batch.admin.service.JdbcSearchableJobInstanceDao; -import org.springframework.batch.admin.service.SearchableJobExecutionDao; -import org.springframework.batch.admin.service.SearchableJobInstanceDao; import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing; import org.springframework.batch.core.configuration.annotation.JobBuilderFactory; import org.springframework.batch.core.configuration.annotation.StepBuilderFactory; -import org.springframework.batch.core.configuration.support.DefaultBatchConfiguration; import org.springframework.batch.core.explore.JobExplorer; import org.springframework.batch.core.explore.support.JobExplorerFactoryBean; import org.springframework.batch.core.job.builder.JobBuilder; @@ -27,31 +20,24 @@ import org.springframework.batch.core.launch.support.SimpleJobLauncher; import org.springframework.batch.core.repository.JobRepository; import org.springframework.batch.core.repository.support.JobRepositoryFactoryBean; -import org.springframework.batch.support.transaction.ResourcelessTransactionManager; +import org.springframework.jdbc.datasource.DataSourceTransactionManager; +import org.springframework.transaction.PlatformTransactionManager; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.DependsOn; -import org.springframework.context.annotation.Primary; import org.springframework.core.task.TaskExecutor; -import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; -import org.springframework.transaction.PlatformTransactionManager; @Configuration @EnableBatchProcessing -//@DependsOn({"batchDatabaseInitializer"}) -public class JobConfig extends DefaultBatchConfiguration { +public class JobConfig { private static final Logger log = LoggerFactory.getLogger(JobConfig.class); @Value("${spring.batch.repository.tableprefix}") private String tablePrefix; - @Value("${spring.batch.repository.isolationLevelForCreate}") - private String isolationLevelForCreate; - @Value("${spring.batch.taskExecutor.corePoolSize}") private Integer corePoolSize; @@ -61,128 +47,74 @@ public class JobConfig extends DefaultBatchConfiguration { @Value("${spring.batch.taskExecutor.queueCapacity}") private Integer queueCapacity; - @Value("${spring.batch.taskExecutor.threadGroupName}") - private String threadGroupName; - @Value("${spring.batch.taskExecutor.threadNamePrefix}") private String threadNamePrefix; @Autowired - private DataSource dataSource; + private DataSource primaryDataSource; @Autowired private AuditTrailJobListener auditTrailJobListener; @Bean - String batchTablePrefix() { - return this.tablePrefix; - } - - @Bean - TaskExecutor taskExecutor() { - final ThreadPoolTaskExecutor taskExecutor = new ManagedThreadPoolTaskExecutor(); + public TaskExecutor taskExecutor() { + ThreadPoolTaskExecutor taskExecutor = new ThreadPoolTaskExecutor(); taskExecutor.setCorePoolSize(corePoolSize); taskExecutor.setMaxPoolSize(maxPoolSize); taskExecutor.setQueueCapacity(queueCapacity); - if (StringUtils.isNotBlank(threadGroupName)) { - taskExecutor.setThreadGroupName(threadGroupName); - } - if (StringUtils.isNotBlank(threadNamePrefix)) { - taskExecutor.setThreadNamePrefix(threadNamePrefix); - } - taskExecutor.afterPropertiesSet(); + taskExecutor.setThreadNamePrefix(threadNamePrefix); + taskExecutor.initialize(); return taskExecutor; } @Bean public PlatformTransactionManager transactionManager() { - return new ResourcelessTransactionManager(); + return new DataSourceTransactionManager(primaryDataSource); } @Bean public JobRepository jobRepository() { JobRepositoryFactoryBean factory = new JobRepositoryFactoryBean(); - factory.setDataSource(dataSource); - factory.setIsolationLevelForCreate(isolationLevelForCreate); + factory.setDataSource(primaryDataSource); + factory.setTransactionManager(transactionManager()); factory.setTablePrefix(tablePrefix); - factory.setTransactionManager(new ResourcelessTransactionManager()); factory.setValidateTransactionState(false); - try { - factory.afterPropertiesSet(); - } catch (Exception e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - try { - return factory.getObject(); - } catch (Exception e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - return null; - } - @Bean - public JobLauncher jobLauncher() { - SimpleJobLauncher jobLauncher = new SimpleJobLauncher(); - jobLauncher.setJobRepository(jobRepository()); - jobLauncher.setTaskExecutor(taskExecutor()); try { - jobLauncher.afterPropertiesSet(); - } catch (Exception e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - return jobLauncher; + factory.afterPropertiesSet(); + return factory.getObject(); + } catch (Exception e) { + throw new IllegalStateException("Could not initialize JobRepository", e); + } } @Bean - public JobExplorer jobExplorer() { - JobExplorerFactoryBean jobExplorerFactoryBean = new JobExplorerFactoryBean(); - jobExplorerFactoryBean.setDataSource(dataSource); - jobExplorerFactoryBean.setTablePrefix(tablePrefix); - jobExplorerFactoryBean.setTransactionManager(getTransactionManager()); - try { - jobExplorerFactoryBean.afterPropertiesSet(); - } catch (Exception e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - try { - return jobExplorerFactoryBean.getObject(); - } catch (Exception e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - return null; + public JobExplorer jobExplorer() throws Exception { + JobExplorerFactoryBean factory = new JobExplorerFactoryBean(); + factory.setDataSource(primaryDataSource); + factory.setTransactionManager(transactionManager()); + factory.setTablePrefix(tablePrefix); + factory.afterPropertiesSet(); + return factory.getObject(); } @Bean - JobTemplate jobTemplate(final JobLauncher jobLauncher, final JobBuilderFactory jobBuilders, - final StepBuilderFactory stepBuilders, final Security security) { + public JobTemplate jobTemplate(JobLauncher jobLauncher, JobBuilderFactory jobBuilders, + StepBuilderFactory stepBuilders, Security security) { return new JobTemplate(jobLauncher, jobBuilders, stepBuilders, security); } - + @Bean - SearchableJobExecutionDao searchableJobExecutionDao(DataSource dataSource) { - JdbcSearchableJobExecutionDao dao = new JdbcSearchableJobExecutionDao(); - dao.setDataSource(dataSource); - dao.setTablePrefix(this.tablePrefix); - return dao; - } - - @Bean - SearchableJobInstanceDao searchableJobInstanceDao(JdbcTemplate jdbcTemplate) { - JdbcSearchableJobInstanceDao dao = new JdbcSearchableJobInstanceDao(); - dao.setJdbcTemplate(jdbcTemplate); - dao.setTablePrefix(this.tablePrefix); - return dao; + public JobLauncher jobLauncher(JobRepository jobRepository, TaskExecutor taskExecutor) throws Exception { + SimpleJobLauncher jobLauncher = new SimpleJobLauncher(); + jobLauncher.setJobRepository(jobRepository); + jobLauncher.setTaskExecutor(taskExecutor); + jobLauncher.afterPropertiesSet(); + return jobLauncher; } - - - @Primary + @Bean - JobBuilderFactory jobBuilders(JobRepository jobRepository) { + public JobBuilderFactory jobBuilders(JobRepository jobRepository) { return new JobBuilderFactory(jobRepository) { @Override public JobBuilder get(String name) { @@ -194,7 +126,7 @@ public JobBuilder get(String name) { } @Bean - StepBuilderFactory stepBuilders(JobRepository jobRepository) { + public StepBuilderFactory stepBuilders(JobRepository jobRepository) { return new StepBuilderFactory(jobRepository); } -} \ No newline at end of file +} diff --git a/src/main/java/org/ohdsi/webapi/JobInvalidator.java b/src/main/java/org/ohdsi/webapi/JobInvalidator.java index 7acd34a7e..ede0e6d26 100644 --- a/src/main/java/org/ohdsi/webapi/JobInvalidator.java +++ b/src/main/java/org/ohdsi/webapi/JobInvalidator.java @@ -4,18 +4,18 @@ import org.ohdsi.webapi.executionengine.entity.ExecutionEngineAnalysisStatus; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.springframework.batch.admin.service.SearchableJobExecutionDao; import org.springframework.batch.core.BatchStatus; import org.springframework.batch.core.ExitStatus; import org.springframework.batch.core.JobExecution; +import org.springframework.batch.core.explore.JobExplorer; import org.springframework.batch.core.repository.JobRepository; import org.springframework.context.annotation.DependsOn; import org.springframework.stereotype.Component; +import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.support.TransactionTemplate; import java.time.LocalDateTime; -import java.time.ZoneId; -import java.util.Calendar; +import java.util.Set; @Component @DependsOn("flyway") @@ -27,38 +27,60 @@ public class JobInvalidator { private final JobRepository jobRepository; private final TransactionTemplate transactionTemplateRequiresNew; - private final SearchableJobExecutionDao jobExecutionDao; + private final JobExplorer jobExplorer; - public JobInvalidator(JobRepository repository, TransactionTemplate transactionTemplateRequiresNew, - SearchableJobExecutionDao jobExecutionDao) { - this.jobRepository = repository; + public JobInvalidator(JobRepository jobRepository, + TransactionTemplate transactionTemplateRequiresNew, + JobExplorer jobExplorer) { + this.jobRepository = jobRepository; this.transactionTemplateRequiresNew = transactionTemplateRequiresNew; - this.jobExecutionDao = jobExecutionDao; + this.jobExplorer = jobExplorer; } + /** + * Invalidates all running job executions during initialization. + */ @PostConstruct private void invalidateGenerations() { - transactionTemplateRequiresNew.execute(s -> { - jobExecutionDao.getRunningJobExecutions().forEach(this::invalidationJobExecution); + transactionTemplateRequiresNew.execute(status -> { + // Retrieve all running job executions for all job names + jobExplorer.getJobNames().forEach(jobName -> { + Set runningJobs = jobExplorer.findRunningJobExecutions(jobName); + runningJobs.forEach(this::invalidateJobExecution); + }); return null; }); } + /** + * Invalidates a specific job execution based on an analysis status. + * + * @param executionEngineAnalysisStatus The status containing the job execution ID. + */ + @Transactional public void invalidateJobExecutionById(ExecutionEngineAnalysisStatus executionEngineAnalysisStatus) { - JobExecution job = jobExecutionDao.getJobExecution(executionEngineAnalysisStatus.getExecutionEngineGeneration().getId()); - if (job == null || job.getJobId() == null) { - log.error("Cannot invalidate job. There is no job for execution-engine-analysis-status with id = {}", executionEngineAnalysisStatus.getId()); + Long executionId = executionEngineAnalysisStatus.getExecutionEngineGeneration().getId(); + JobExecution jobExecution = jobExplorer.getJobExecution(executionId); + + if (jobExecution == null || jobExecution.getJobId() == null) { + log.error("Cannot invalidate job. No job found for execution-engine-analysis-status with id = {}", + executionEngineAnalysisStatus.getId()); return; } - invalidationJobExecution(job); - + invalidateJobExecution(jobExecution); } - public void invalidationJobExecution(JobExecution job) { - job.setStatus(BatchStatus.FAILED); - job.setExitStatus(new ExitStatus(ExitStatus.FAILED.getExitCode(), INVALIDATED_BY_SYSTEM_EXIT_MESSAGE)); - job.setEndTime(LocalDateTime.ofInstant(Calendar.getInstance().getTime().toInstant(), ZoneId.systemDefault())); - jobRepository.update(job); + /** + * Marks a job execution as failed and updates its status in the repository. + * + * @param jobExecution The job execution to invalidate. + */ + public void invalidateJobExecution(JobExecution jobExecution) { + jobExecution.setStatus(BatchStatus.FAILED); + jobExecution.setExitStatus(new ExitStatus(ExitStatus.FAILED.getExitCode(), INVALIDATED_BY_SYSTEM_EXIT_MESSAGE)); + jobExecution.setEndTime(LocalDateTime.now()); + jobRepository.update(jobExecution); + log.info("Job execution with ID {} has been invalidated.", jobExecution.getId()); } -} +} \ No newline at end of file diff --git a/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java b/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java index 4a269f34a..2e4a4b0f3 100644 --- a/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java @@ -1228,8 +1228,8 @@ private void invalidateGenerations() { getTransactionTemplateRequiresNew().execute(transactionStatus -> { List generations = findAllIncompleteGenerations(); generations.forEach(gen -> { - JobExecution job = jobService.getJobExecution(gen.getId()); - jobInvalidator.invalidationJobExecution(job); + JobExecution job = jobService.findJobExecution(gen.getId()); + jobInvalidator.invalidateJobExecution(job); }); return null; }); diff --git a/src/main/java/org/ohdsi/webapi/job/JobTemplate.java b/src/main/java/org/ohdsi/webapi/job/JobTemplate.java index 7919a3087..c478d31df 100644 --- a/src/main/java/org/ohdsi/webapi/job/JobTemplate.java +++ b/src/main/java/org/ohdsi/webapi/job/JobTemplate.java @@ -10,6 +10,11 @@ import org.springframework.batch.core.repository.JobExecutionAlreadyRunningException; import org.springframework.batch.core.repository.JobInstanceAlreadyCompleteException; import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.transaction.PlatformTransactionManager; +import org.springframework.transaction.TransactionDefinition; +import org.springframework.transaction.annotation.Transactional; +import org.springframework.transaction.support.TransactionTemplate; import jakarta.ws.rs.WebApplicationException; import jakarta.ws.rs.core.Response; @@ -21,9 +26,8 @@ import static org.ohdsi.webapi.Constants.WARM_CACHE; import static org.ohdsi.webapi.util.SecurityUtils.whitelist; -/** - * - */ +import javax.sql.DataSource; + public class JobTemplate { private static final Logger log = LoggerFactory.getLogger(JobTemplate.class); @@ -33,59 +37,61 @@ public class JobTemplate { private final StepBuilderFactory stepBuilders; private final Security security; - public JobTemplate(final JobLauncher jobLauncher, final JobBuilderFactory jobBuilders, - final StepBuilderFactory stepBuilders, final Security security) { + @Autowired + private PlatformTransactionManager transactionManager; + + public JobTemplate(JobLauncher jobLauncher, JobBuilderFactory jobBuilders, + StepBuilderFactory stepBuilders, Security security) { this.jobLauncher = jobLauncher; this.jobBuilders = jobBuilders; this.stepBuilders = stepBuilders; this.security = security; } - public JobExecutionResource launch(final Job job, JobParameters jobParameters) throws WebApplicationException { - JobExecution exec; - try { - JobParametersBuilder builder = new JobParametersBuilder(jobParameters); - builder.addLong(JOB_START_TIME, System.currentTimeMillis()); - if (jobParameters.getString(JOB_AUTHOR) == null) { - builder.addString(JOB_AUTHOR, security.getSubject()); - } - jobParameters = builder.toJobParameters(); - exec = this.jobLauncher.run(job, jobParameters); - if (log.isDebugEnabled()) { - log.debug("JobExecution queued: {}", exec); - } - } catch (final JobExecutionAlreadyRunningException e) { - throw new WebApplicationException(e, Response.status(Status.CONFLICT).entity(whitelist(e)).build()); - } catch (final Exception e) { - throw new WebApplicationException(e, Response.status(Status.INTERNAL_SERVER_ERROR).entity(whitelist(e)).build()); - } - return JobUtils.toJobExecutionResource(exec); + public JobExecutionResource launch(Job job, JobParameters jobParameters) throws WebApplicationException { + + TransactionTemplate transactionTemplate = new TransactionTemplate(transactionManager); + transactionTemplate.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRES_NEW); + + return transactionTemplate.execute(status -> { + JobExecution exec; + try { + JobParametersBuilder builder = new JobParametersBuilder(jobParameters); + builder.addLong(JOB_START_TIME, System.currentTimeMillis()); + if (jobParameters.getString(JOB_AUTHOR) == null) { + builder.addString(JOB_AUTHOR, security.getSubject()); + } + final JobParameters jobParams = builder.toJobParameters(); + exec = this.jobLauncher.run(job, jobParams); + if (log.isDebugEnabled()) { + log.debug("JobExecution queued: {}", exec); + } + } catch (final JobExecutionAlreadyRunningException e) { + throw new WebApplicationException(e, Response.status(Status.CONFLICT).entity(whitelist(e)).build()); + } catch (final Exception e) { + throw new WebApplicationException(e, Response.status(Status.INTERNAL_SERVER_ERROR).entity(whitelist(e)).build()); + } + return JobUtils.toJobExecutionResource(exec); + }); } - public JobExecutionResource launchTasklet(final String jobName, final String stepName, final Tasklet tasklet, - JobParameters jobParameters) throws WebApplicationException { - JobExecution exec; + public JobExecutionResource launchTasklet(String jobName, String stepName, Tasklet tasklet, + JobParameters jobParameters) { try { - //TODO Consider JobParametersIncrementer jobParameters = new JobParametersBuilder(jobParameters) - .addLong(JOB_START_TIME, System.currentTimeMillis()) - .addString(JOB_AUTHOR, getAuthorForTasklet(jobName)) + .addLong("jobStartTime", System.currentTimeMillis()) + .addString("jobAuthor", getAuthorForTasklet(jobName)) .toJobParameters(); - //TODO Consider our own check (since adding unique JobParameter) to see if related-job is running and throw "already running" - final Step step = this.stepBuilders.get(stepName).tasklet(tasklet).allowStartIfComplete(true).build(); - final Job job = this.jobBuilders.get(jobName).start(step).build(); - exec = this.jobLauncher.run(job, jobParameters); - } catch (final JobExecutionAlreadyRunningException e) { - throw new WebApplicationException(Response.status(Status.CONFLICT).entity(whitelist(e.getMessage())).build()); - } catch (final JobInstanceAlreadyCompleteException e) { - throw new WebApplicationException(Response.status(Status.CONFLICT).entity(whitelist(e.getMessage())).build()); - } catch (final Exception e) { - throw new WebApplicationException(Response.status(Status.INTERNAL_SERVER_ERROR).entity(whitelist(e.getMessage())).build()); + Step step = this.stepBuilders.get(stepName).tasklet(tasklet).build(); + Job job = this.jobBuilders.get(jobName).start(step).build(); + JobExecution execution = this.jobLauncher.run(job, jobParameters); + return JobUtils.toJobExecutionResource(execution); + } catch (Exception e) { + throw new WebApplicationException(e, Response.status(Status.INTERNAL_SERVER_ERROR).entity(e.getMessage()).build()); } - return JobUtils.toJobExecutionResource(exec); } - private String getAuthorForTasklet(final String jobName) { - return WARM_CACHE.equals(jobName) ? SYSTEM_USER : security.getSubject(); + private String getAuthorForTasklet(String jobName) { + return "warmCache".equals(jobName) ? "systemUser" : security.getSubject(); } } diff --git a/src/main/java/org/ohdsi/webapi/job/JobUtils.java b/src/main/java/org/ohdsi/webapi/job/JobUtils.java index 7a3e109ab..916d72b81 100644 --- a/src/main/java/org/ohdsi/webapi/job/JobUtils.java +++ b/src/main/java/org/ohdsi/webapi/job/JobUtils.java @@ -32,8 +32,14 @@ public static JobExecutionResource toJobExecutionResource(final JobExecution job final JobExecutionResource execution = new JobExecutionResource( toJobInstanceResource(jobExecution.getJobInstance()), jobExecution.getId()); execution.setStatus(jobExecution.getStatus().name()); - execution.setStartDate(Timestamp.valueOf(jobExecution.getStartTime())); - execution.setEndDate(Timestamp.valueOf(jobExecution.getEndTime())); + + if(jobExecution.getStartTime() != null) { + execution.setStartDate(Timestamp.valueOf(jobExecution.getStartTime())); + } + if(jobExecution.getEndTime() != null) { + execution.setEndDate(Timestamp.valueOf(jobExecution.getEndTime())); + } + execution.setExitStatus(jobExecution.getExitStatus().getExitCode()); JobParameters jobParams = jobExecution.getJobParameters(); if (jobParams != null) { diff --git a/src/main/java/org/ohdsi/webapi/service/JobService.java b/src/main/java/org/ohdsi/webapi/service/JobService.java index 90eff1fae..930334ab0 100644 --- a/src/main/java/org/ohdsi/webapi/service/JobService.java +++ b/src/main/java/org/ohdsi/webapi/service/JobService.java @@ -5,14 +5,7 @@ import org.ohdsi.webapi.job.JobInstanceResource; import org.ohdsi.webapi.job.JobTemplate; import org.ohdsi.webapi.job.JobUtils; -import org.ohdsi.webapi.util.PreparedStatementRenderer; -import org.springframework.batch.admin.service.SearchableJobExecutionDao; -import org.springframework.batch.core.BatchStatus; -import org.springframework.batch.core.Job; -import org.springframework.batch.core.JobExecution; -import org.springframework.batch.core.JobInstance; -import org.springframework.batch.core.JobParameters; -import org.springframework.batch.core.Step; +import org.springframework.batch.core.*; import org.springframework.batch.core.explore.JobExplorer; import org.springframework.batch.core.launch.NoSuchJobException; import org.springframework.batch.core.repository.JobRepository; @@ -21,12 +14,14 @@ import org.springframework.batch.core.step.tasklet.StoppableTasklet; import org.springframework.batch.core.step.tasklet.Tasklet; import org.springframework.batch.core.step.tasklet.TaskletStep; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.dao.DataAccessException; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageImpl; import org.springframework.data.domain.PageRequest; import org.springframework.jdbc.core.ResultSetExtractor; import org.springframework.stereotype.Component; +import org.springframework.transaction.PlatformTransactionManager; import org.springframework.transaction.annotation.Transactional; import jakarta.ws.rs.DefaultValue; @@ -36,241 +31,180 @@ import jakarta.ws.rs.Produces; import jakarta.ws.rs.QueryParam; import jakarta.ws.rs.core.MediaType; -import net.bytebuddy.description.annotation.AnnotationValue.Sort; import java.sql.ResultSet; import java.sql.SQLException; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; +import java.util.*; import java.util.function.Predicate; -/** - * REST Services related to working with the Spring Batch jobs - * - * @summary Jobs - */ @Path("/job/") @Component -public class JobService extends AbstractDaoService { +public class JobService { - private final JobExplorer jobExplorer; + private final JobExplorer jobExplorer; + private final JobRepository jobRepository; + private final JobTemplate jobTemplate; - private final SearchableJobExecutionDao jobExecutionDao; + private final Map jobMap = new HashMap<>(); - private final JobRepository jobRepository; - - private final JobTemplate jobTemplate; - - private Map jobMap = new HashMap<>(); - - public JobService(JobExplorer jobExplorer, SearchableJobExecutionDao jobExecutionDao, JobRepository jobRepository, JobTemplate jobTemplate) { - - this.jobExplorer = jobExplorer; - this.jobExecutionDao = jobExecutionDao; - this.jobRepository = jobRepository; - this.jobTemplate = jobTemplate; - } + public JobService(JobExplorer jobExplorer, JobRepository jobRepository, JobTemplate jobTemplate) { + this.jobExplorer = jobExplorer; + this.jobRepository = jobRepository; + this.jobTemplate = jobTemplate; + } - /** - * Get the job information by job ID - * - * @summary Get job by ID - * @param jobId The job ID - * @return The job information - */ - @GET - @Path("{jobId}") - @Produces(MediaType.APPLICATION_JSON) - public JobInstanceResource findJob(@PathParam("jobId") final Long jobId) { - final JobInstance job = this.jobExplorer.getJobInstance(jobId); - if (job == null) { - return null;//TODO #8 conventions under review + @GET + @Path("{jobId}") + @Produces(MediaType.APPLICATION_JSON) + public JobInstanceResource findJob(@PathParam("jobId") final Long jobId) { + JobInstance job = jobExplorer.getJobInstance(jobId); + return job == null ? null : JobUtils.toJobInstanceResource(job); } - return JobUtils.toJobInstanceResource(job); - } - /** - * Get the job execution information by job type and name - * - * @summary Get job by name and type - * @param jobName The job name - * @param jobType The job type - * @return JobExecutionResource - */ @GET @Path("/type/{jobType}/name/{jobName}") @Produces(MediaType.APPLICATION_JSON) - public JobExecutionResource findJobByName(@PathParam("jobName") final String jobName, @PathParam("jobType") final String jobType) { - final Optional jobExecution = jobExplorer.findRunningJobExecutions(jobType).stream() - .filter(job -> jobName.equals(job.getJobParameters().getString(Constants.Params.JOB_NAME))) - .findFirst(); - return jobExecution.isPresent() ? JobUtils.toJobExecutionResource(jobExecution.get()) : null; + public JobExecutionResource findJobByName(@PathParam("jobName") String jobName, @PathParam("jobType") String jobType) { + Optional jobExecution = jobExplorer.findRunningJobExecutions(jobType).stream() + .filter(job -> jobName.equals(job.getJobParameters().getString(Constants.Params.JOB_NAME))) + .findFirst(); + return jobExecution.map(JobUtils::toJobExecutionResource).orElse(null); } - /** - * Get the job execution information by execution ID and job ID - * - * @summary Get job by job ID and execution ID - * @param jobId The job ID - * @param executionId The execution ID - * @return JobExecutionResource - */ - @GET - @Path("{jobId}/execution/{executionId}") - @Produces(MediaType.APPLICATION_JSON) - public JobExecutionResource findJobExecution(@PathParam("jobId") final Long jobId, - @PathParam("executionId") final Long executionId) { - return service(jobId, executionId); - } - - /** - * Find job execution by execution ID - * - * @summary Get job by execution ID - * @param executionId The job execution ID - * @return JobExecutionResource - */ - @GET - @Path("/execution/{executionId}") - @Produces(MediaType.APPLICATION_JSON) - public JobExecutionResource findJobExecution(@PathParam("executionId") final Long executionId) { - return service(null, executionId); - } - - private JobExecutionResource service(final Long jobId, final Long executionId) { - final JobExecution exec = this.jobExplorer.getJobExecution(executionId); - if ((exec == null) || ((jobId != null) && !jobId.equals(exec.getJobId()))) { - return null;//TODO #8 conventions under review + @GET + @Path("{jobId}/execution/{executionId}") + @Produces(MediaType.APPLICATION_JSON) + public JobExecutionResource findJobExecution(@PathParam("jobId") Long jobId, @PathParam("executionId") Long executionId) { + return service(jobId, executionId); } - return JobUtils.toJobExecutionResource(exec); - } - /** - * Get job names (unique names). Note: this path (GET /job) should really - * return pages of job instances. This could be implemented should the need - * arise. See {@link JobService#list(String, Integer, Integer)} to obtain - * executions and filter by job name. - * - * @summary Get list of jobs - * @return A list of jobs - */ - @GET - @Produces(MediaType.APPLICATION_JSON) - public List findJobNames() { - return this.jobExplorer.getJobNames(); - } - - /** - * Variation of spring-batch-admin support: - * org.springframework.batch.admin.web.BatchJobExecutionsController. - *

    - * Return a paged collection of job executions. Filter for a given job. - * Returned in pages. - * - * @summary Get job executions with filters - * @param jobName name of the job - * @param pageIndex start index for the job execution list - * @param pageSize page size for the list - * @param comprehensivePage boolean if true returns a comprehensive resultset - * as a page (i.e. pageRequest(0,resultset.size())) - * @return collection of JobExecutionInfo - * @throws NoSuchJobException - */ - @GET - @Path("/execution") - @Produces(MediaType.APPLICATION_JSON) - public Page list(@QueryParam("jobName") final String jobName, - @DefaultValue("0") @QueryParam("pageIndex") final Integer pageIndex, - @DefaultValue("20") @QueryParam("pageSize") final Integer pageSize, - @QueryParam("comprehensivePage") boolean comprehensivePage) - throws NoSuchJobException { + @GET + @Path("/execution/{executionId}") + @Produces(MediaType.APPLICATION_JSON) + public JobExecutionResource findJobExecutionResource(@PathParam("executionId") Long executionId) { + return service(null, executionId); + } - List resources = null; + public JobExecution findJobExecution(@PathParam("executionId") Long executionId) { + JobExecution exec = jobExplorer.getJobExecution(executionId); + return exec; + } - if (comprehensivePage) { - String sqlPath = "/resources/job/sql/jobExecutions.sql"; - String tqName = "ohdsi_schema"; - String tqValue = getOhdsiSchema(); - PreparedStatementRenderer psr = new PreparedStatementRenderer(null, sqlPath, tqName, tqValue); - resources = getJdbcTemplate().query(psr.getSql(), psr.getSetter(), new ResultSetExtractor>() { - @Override - public List extractData(ResultSet rs) throws SQLException, DataAccessException { - return JobUtils.toJobExecutionResource(rs); + private JobExecutionResource service(Long jobId, Long executionId) { + JobExecution exec = jobExplorer.getJobExecution(executionId); + if (exec == null || (jobId != null && !jobId.equals(exec.getJobId()))) { + return null; } - }); - return new PageImpl<>(resources, PageRequest.of(0, pageSize), resources.size()); - } else { - resources = new ArrayList<>(); - for (final JobExecution jobExecution : (jobName == null ? this.jobExecutionDao.getJobExecutions(pageIndex, - pageSize) : this.jobExecutionDao.getJobExecutions(jobName, pageIndex, pageSize))) { - resources.add(JobUtils.toJobExecutionResource(jobExecution)); - } - return new PageImpl<>(resources, PageRequest.of(pageIndex, pageSize), - this.jobExecutionDao.countJobExecutions()); + return JobUtils.toJobExecutionResource(exec); } - } - - public void stopJob(JobExecution jobExecution, Job job) { + @GET + @Produces(MediaType.APPLICATION_JSON) + public List findJobNames() { + return jobExplorer.getJobNames(); + } - if (Objects.nonNull(job)) { - jobExecution.getStepExecutions().stream() - .filter(step -> step.getStatus().isRunning()) - .forEach(stepExec -> { - Step step = ((StepLocator) job).getStep(stepExec.getStepName()); - if (step instanceof TaskletStep taskletStep) { - Tasklet tasklet = taskletStep.getTasklet(); - if (tasklet instanceof StoppableTasklet stoppableTasklet) { - StepSynchronizationManager.register(stepExec); - stoppableTasklet.stop(); - StepSynchronizationManager.release(); - } + @GET + @Path("/execution") + @Produces(MediaType.APPLICATION_JSON) + public Page list( + @QueryParam("jobName") String jobName, + @DefaultValue("0") @QueryParam("pageIndex") Integer pageIndex, + @DefaultValue("20") @QueryParam("pageSize") Integer pageSize + ) throws NoSuchJobException { + List resources = new ArrayList<>(); + int offset = pageIndex * pageSize; + + if (jobName == null) { + // Get all job names and fetch job instances and executions + List jobNames = jobExplorer.getJobNames(); + for (String name : jobNames) { + List jobInstances = jobExplorer.findJobInstancesByJobName(name, 0, Integer.MAX_VALUE); + for (JobInstance instance : jobInstances) { + resources.addAll(fetchJobExecutionResources(instance)); + } + } + } else { + // Fetch job instances and executions for the given job name + List jobInstances = jobExplorer.findJobInstancesByJobName(jobName, offset, pageSize); + for (JobInstance instance : jobInstances) { + resources.addAll(fetchJobExecutionResources(instance)); } - }); - } - if (jobExecution.getEndTime() == null) { - jobExecution.setStatus(BatchStatus.STOPPING); - jobRepository.update(jobExecution); - } - } + } - public JobExecution getJobExecution(Long jobExecutionId) { + // Create a paginated result + int totalSize = resources.size(); + int endIndex = Math.min(offset + pageSize, totalSize); + List paginatedResources = resources.subList(offset, endIndex); + return new PageImpl<>(paginatedResources, PageRequest.of(pageIndex, pageSize), totalSize); + } - return jobExplorer.getJobExecution(jobExecutionId); - } + /** + * Fetches job execution resources for a given job instance. + */ + private List fetchJobExecutionResources(JobInstance jobInstance) { + List resources = new ArrayList<>(); + List executions = jobExplorer.getJobExecutions(jobInstance); + for (JobExecution execution : executions) { + resources.add(JobUtils.toJobExecutionResource(execution)); + } + return resources; + } - public Job getRunningJob(Long jobExecutionId) { - return jobMap.get(jobExecutionId); - } + public void stopJob(JobExecution jobExecution, Job job) { + if (Objects.nonNull(job)) { + jobExecution.getStepExecutions().stream() + .filter(step -> step.getStatus().isRunning()) + .forEach(stepExec -> { + Step step = ((StepLocator) job).getStep(stepExec.getStepName()); + if (step instanceof TaskletStep taskletStep) { + Tasklet tasklet = taskletStep.getTasklet(); + if (tasklet instanceof StoppableTasklet stoppableTasklet) { + StepSynchronizationManager.register(stepExec); + stoppableTasklet.stop(); + StepSynchronizationManager.release(); + } + } + }); + } + if (jobExecution.getEndTime() == null) { + jobExecution.setStatus(BatchStatus.STOPPING); + jobRepository.update(jobExecution); + } + } - public void removeJob(Long jobExecutionId) { + public JobExecution getJobExecution(Long jobExecutionId) { + return jobExplorer.getJobExecution(jobExecutionId); + } - jobMap.remove(jobExecutionId); - } + public Job getRunningJob(Long jobExecutionId) { + return jobMap.get(jobExecutionId); + } - public JobExecutionResource runJob(Job job, JobParameters jobParameters) { + public void removeJob(Long jobExecutionId) { + jobMap.remove(jobExecutionId); + } - JobExecutionResource jobExecution = this.jobTemplate.launch(job, jobParameters); - jobMap.put(jobExecution.getExecutionId(), job); - return jobExecution; - } + public JobExecutionResource runJob(Job job, JobParameters jobParameters) { + JobExecutionResource jobExecution = jobTemplate.launch(job, jobParameters); + jobMap.put(jobExecution.getExecutionId(), job); + return jobExecution; + } - @Transactional - public void cancelJobExecution(Predicate filterPredicate) { - jobExecutionDao.getRunningJobExecutions().stream() + @Transactional + public void cancelJobExecution(Predicate filterPredicate) { + jobExplorer.getJobNames().stream() + .flatMap(jobName -> jobExplorer.findRunningJobExecutions(jobName).stream()) .filter(filterPredicate) .findFirst() .ifPresent(jobExecution -> { - Job job = getRunningJob(jobExecution.getJobId()); - if (Objects.nonNull(job)) { - stopJob(jobExecution, job); - } + Job job = getRunningJob(jobExecution.getJobId()); + if (Objects.nonNull(job)) { + stopJob(jobExecution, job); + } }); - } + } + } diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.1__schema-create_spring_batch.sql b/src/main/resources/db/migration/postgresql/V1.0.0.1__schema-create_spring_batch.sql index d7fcde724..c0a2d8383 100644 --- a/src/main/resources/db/migration/postgresql/V1.0.0.1__schema-create_spring_batch.sql +++ b/src/main/resources/db/migration/postgresql/V1.0.0.1__schema-create_spring_batch.sql @@ -1,19 +1,12 @@ -DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_JOB_INSTANCE CASCADE; -DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION CASCADE; -DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS CASCADE; -DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_STEP_EXECUTION CASCADE; -DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT CASCADE; -DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION_CONTEXT CASCADE; - -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_JOB_INSTANCE ( +CREATE TABLE ${ohdsiSchema}.BATCH_JOB_INSTANCE ( JOB_INSTANCE_ID BIGINT NOT NULL PRIMARY KEY , VERSION BIGINT , JOB_NAME VARCHAR(100) NOT NULL, JOB_KEY VARCHAR(32) NOT NULL, constraint JOB_INST_UN unique (JOB_NAME, JOB_KEY) ) ; -commit; -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION ( + +CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION ( JOB_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY , VERSION BIGINT , JOB_INSTANCE_ID BIGINT NOT NULL, @@ -29,7 +22,7 @@ CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION ( references BATCH_JOB_INSTANCE(JOB_INSTANCE_ID) ) ; -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( +CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( JOB_EXECUTION_ID BIGINT NOT NULL , TYPE_CD VARCHAR(6) NOT NULL , KEY_NAME VARCHAR(100) NOT NULL , @@ -42,7 +35,7 @@ CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) ) ; -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_STEP_EXECUTION ( +CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION ( STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY , VERSION BIGINT NOT NULL, STEP_NAME VARCHAR(100) NOT NULL, @@ -65,7 +58,7 @@ CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_STEP_EXECUTION ( references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) ) ; -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT ( +CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT ( STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY, SHORT_CONTEXT VARCHAR(2500) NOT NULL, SERIALIZED_CONTEXT TEXT , @@ -73,7 +66,7 @@ CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT ( references BATCH_STEP_EXECUTION(STEP_EXECUTION_ID) ) ; -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION_CONTEXT ( +CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_CONTEXT ( JOB_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY, SHORT_CONTEXT VARCHAR(2500) NOT NULL, SERIALIZED_CONTEXT TEXT , From 94235489f984cfaa97519686cde7113f7d197a91 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Dec 2024 17:23:39 -0500 Subject: [PATCH 117/141] Update ci.yaml Updated ci.yaml to push to ECR version 3.0.2.2 --- .github/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4fa8f7546..2db21c426 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: - name: Build and Push Docker Image env: - IMAGE_TAG: 3.0.1.2 + IMAGE_TAG: 3.0.2.2 ECR_REPOSITORY: mdaca/ohdsi/webapi AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} @@ -79,7 +79,7 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.1.2 + IMAGE_TAG: 3.0.2.2 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | # Set ENV for AW Cred @@ -89,7 +89,7 @@ jobs: # Get token from ECR and Docker login aws ecr get-login-password --region $AWS_REGION | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com - IMAGE_TAG=3.0.1.2 + IMAGE_TAG=3.0.2.2 docker pull ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG docker images @@ -101,7 +101,7 @@ jobs: env: AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.1.2 + IMAGE_TAG: 3.0.2.2 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | @@ -116,7 +116,7 @@ jobs: env: AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.1.2 + IMAGE_TAG: 3.0.2.2 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | syft $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG From 2af622ea8ace45d16a38f84e706432f64603488d Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Thu, 19 Dec 2024 12:37:01 -0500 Subject: [PATCH 118/141] fixed pom security setting --- pom.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3cfbfd19d..e1423a553 100644 --- a/pom.xml +++ b/pom.xml @@ -90,8 +90,7 @@ webapi-postgresql - DisabledSecurity - + AtlasRegularSecurity 43200 http://localhost false From a1fc30824c13c63a40a4d71e007c962c3b1f3c1c Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Fri, 20 Dec 2024 19:07:32 -0500 Subject: [PATCH 119/141] Fixed transactionManager on stepBuilders for tasklet, addresses cohortanalysis post and other endpoints. --- .../org/ohdsi/webapi/job/JobTemplate.java | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/job/JobTemplate.java b/src/main/java/org/ohdsi/webapi/job/JobTemplate.java index c478d31df..b0f224720 100644 --- a/src/main/java/org/ohdsi/webapi/job/JobTemplate.java +++ b/src/main/java/org/ohdsi/webapi/job/JobTemplate.java @@ -77,18 +77,27 @@ public JobExecutionResource launch(Job job, JobParameters jobParameters) throws public JobExecutionResource launchTasklet(String jobName, String stepName, Tasklet tasklet, JobParameters jobParameters) { + + TransactionTemplate transactionTemplate = new TransactionTemplate(transactionManager); + transactionTemplate.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRES_NEW); + + return transactionTemplate.execute(status -> { + JobExecution exec; try { - jobParameters = new JobParametersBuilder(jobParameters) - .addLong("jobStartTime", System.currentTimeMillis()) - .addString("jobAuthor", getAuthorForTasklet(jobName)) - .toJobParameters(); - Step step = this.stepBuilders.get(stepName).tasklet(tasklet).build(); + JobParametersBuilder builder = new JobParametersBuilder(jobParameters); + builder.addLong("jobStartTime", System.currentTimeMillis()) + .addString("jobAuthor", getAuthorForTasklet(jobName)); + + Step step = this.stepBuilders.get(stepName).tasklet(tasklet) + .transactionManager(transactionManager).build(); Job job = this.jobBuilders.get(jobName).start(step).build(); - JobExecution execution = this.jobLauncher.run(job, jobParameters); - return JobUtils.toJobExecutionResource(execution); + final JobParameters jobParams = builder.toJobParameters(); + exec = this.jobLauncher.run(job, jobParams); } catch (Exception e) { throw new WebApplicationException(e, Response.status(Status.INTERNAL_SERVER_ERROR).entity(e.getMessage()).build()); } + return JobUtils.toJobExecutionResource(exec); + }); } private String getAuthorForTasklet(String jobName) { From e39de7caabf8a4004a1277a2d740430409957ad1 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 23 Dec 2024 09:44:58 -0500 Subject: [PATCH 120/141] updated DynamicEntityGraph paths --- .../webapi/cohortcharacterization/CcServiceImpl.java | 10 +++++----- .../ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java | 5 +---- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java b/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java index 2e4a4b0f3..553150dd7 100644 --- a/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java @@ -163,11 +163,11 @@ public class CcServiceImpl extends AbstractDaoService implements CcService, Gene private Map prespecAnalysisMap = FeatureExtraction.getNameToPrespecAnalysis(); private final EntityGraph defaultEntityGraph = DynamicEntityGraph.loading().addPath( - "cohortDefinitions", - "featureAnalyses", - "stratas", - "parameters", - "createdBy", + "cohortDefinitions").addPath( + "featureAnalyses").addPath( + "stratas").addPath( + "parameters").addPath( + "createdBy").addPath( "modifiedBy" ).build(); diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java b/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java index 45162b5de..1fcc1b30c 100644 --- a/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/feanalysis/FeAnalysisServiceImpl.java @@ -42,10 +42,7 @@ public class FeAnalysisServiceImpl extends AbstractDaoService implements FeAnaly private final ApplicationEventPublisher eventPublisher; private FeAnalysisAggregateRepository aggregateRepository; - private final EntityGraph defaultEntityGraph = DynamicEntityGraph.loading().addPath( - "createdBy", - "modifiedBy" - ).build(); + private final EntityGraph defaultEntityGraph = DynamicEntityGraph.loading().addPath("createdBy").addPath("modifiedBy").build(); public FeAnalysisServiceImpl( final FeAnalysisEntityRepository analysisRepository, From 016943bcec47099d61af44fd9fe1b7d96fb60d8a Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 23 Dec 2024 14:28:29 -0500 Subject: [PATCH 121/141] Added missing transactionManagers --- .../java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java | 2 +- .../user/importer/service/UserImportJobServiceImpl.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java b/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java index 58d08c0d4..ae26dec58 100644 --- a/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/pathway/PathwayServiceImpl.java @@ -439,7 +439,7 @@ public JobExecutionResource generatePathways(final Integer pathwayAnalysisId, fi ); TransactionalTasklet statisticsTasklet = new PathwayStatisticsTasklet(getSourceJdbcTemplate(source), getTransactionTemplate(), source, this, genericConversionService); Step generateStatistics = stepBuilderFactory.get(GENERATE_PATHWAY_ANALYSIS + ".generateStatistics") - .tasklet(statisticsTasklet) + .tasklet(statisticsTasklet).transactionManager(getTransactionTemplate().getTransactionManager()) .build(); generateAnalysisJob.next(generateStatistics); diff --git a/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java b/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java index 47fde1a9d..9b6b48757 100644 --- a/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java +++ b/src/main/java/org/ohdsi/webapi/user/importer/service/UserImportJobServiceImpl.java @@ -147,7 +147,7 @@ Step userImportStep() { UserImportTasklet userImportTasklet = new UserImportTasklet(transactionTemplate, userImportService); return stepBuilderFactory.get("importUsers") - .tasklet(userImportTasklet) + .tasklet(userImportTasklet).transactionManager(transactionTemplate.getTransactionManager()) .build(); } @@ -155,7 +155,7 @@ Job buildJobForUserImportTasklet(UserImportJob job) { FindUsersToImportTasklet findUsersTasklet = new FindUsersToImportTasklet(transactionTemplate, userImportService); Step findUsersStep = stepBuilderFactory.get("findUsersForImport") - .tasklet(findUsersTasklet) + .tasklet(findUsersTasklet).transactionManager(transactionTemplate.getTransactionManager()) .build(); if (job.getUserRoles() != null) { From 9e71e01ce85eb2aedbceb2a3ab92a994110881da Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 23 Dec 2024 16:31:43 -0500 Subject: [PATCH 122/141] Added missing transactionManagers --- .../java/org/ohdsi/webapi/service/CDMResultsService.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/service/CDMResultsService.java b/src/main/java/org/ohdsi/webapi/service/CDMResultsService.java index ca52dcee5..09098b5f1 100644 --- a/src/main/java/org/ohdsi/webapi/service/CDMResultsService.java +++ b/src/main/java/org/ohdsi/webapi/service/CDMResultsService.java @@ -44,6 +44,7 @@ import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; +import org.springframework.transaction.PlatformTransactionManager; import jakarta.ws.rs.Consumes; import jakarta.ws.rs.GET; @@ -134,6 +135,9 @@ public class CDMResultsService extends AbstractDaoService implements Initializin @Autowired private ConversionService conversionService; + @Autowired + private PlatformTransactionManager transactionManager; + @Override public void afterPropertiesSet() throws Exception { queryRunner.init(this.getSourceDialect(), objectMapper); @@ -555,14 +559,14 @@ private Step getAchillesStep(Source source, String jobStepName) { AchillesCacheTasklet achillesTasklet = new AchillesCacheTasklet(source, instance, cacheService, queryRunner, objectMapper); return stepBuilderFactory.get(jobStepName + " achilles") - .tasklet(achillesTasklet) + .tasklet(achillesTasklet).transactionManager(transactionManager) .build(); } private Step getCountStep(Source source, String jobStepName) { CDMResultsCacheTasklet countTasklet = new CDMResultsCacheTasklet(source, cdmCacheService); return stepBuilderFactory.get(jobStepName + " counts") - .tasklet(countTasklet) + .tasklet(countTasklet).transactionManager(transactionManager) .build(); } From 7739165c03e91bbf70235a436a034e5673e19109 Mon Sep 17 00:00:00 2001 From: Mike Peterson Date: Mon, 23 Dec 2024 22:45:19 -0500 Subject: [PATCH 123/141] fixes for FeAnalysisEntity to properly map design column, fixed enum in aggregate analysis --- .../DropCohortTableListener.java | 2 +- .../domain/CriteriaColumnListConverter.java | 37 +++++++++++++++++++ .../domain/FeAnalysisAggregateEntity.java | 17 +++------ .../feanalysis/domain/FeAnalysisEntity.java | 6 +-- .../domain/FeAnalysisWithStringEntity.java | 5 ++- 5 files changed, 48 insertions(+), 19 deletions(-) create mode 100644 src/main/java/org/ohdsi/webapi/feanalysis/domain/CriteriaColumnListConverter.java diff --git a/src/main/java/org/ohdsi/webapi/cohortcharacterization/DropCohortTableListener.java b/src/main/java/org/ohdsi/webapi/cohortcharacterization/DropCohortTableListener.java index b09bae7b8..70f24a8c3 100644 --- a/src/main/java/org/ohdsi/webapi/cohortcharacterization/DropCohortTableListener.java +++ b/src/main/java/org/ohdsi/webapi/cohortcharacterization/DropCohortTableListener.java @@ -41,7 +41,7 @@ private Object doTask(JobParameters parameters) { /* final Map jobParameters = parameters.getParameters(); MDACA Spring Boot 3 migration compilation issue */ final Map> jobParameters = parameters.getParameters(); - final Integer sourceId = Integer.valueOf(jobParameters.get(SOURCE_ID).toString()); + final Integer sourceId = Integer.valueOf(jobParameters.get(SOURCE_ID).getValue().toString()); final String targetTable = jobParameters.get(TARGET_TABLE).getValue().toString(); final String sql = sourceAwareSqlRender.renderSql(sourceId, DROP_TABLE_SQL, TARGET_TABLE, targetTable ); diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/domain/CriteriaColumnListConverter.java b/src/main/java/org/ohdsi/webapi/feanalysis/domain/CriteriaColumnListConverter.java new file mode 100644 index 000000000..bd9d68550 --- /dev/null +++ b/src/main/java/org/ohdsi/webapi/feanalysis/domain/CriteriaColumnListConverter.java @@ -0,0 +1,37 @@ +package org.ohdsi.webapi.feanalysis.domain; + +import java.util.Arrays; +import java.util.Collections; +import java.util.List; +import java.util.stream.Collectors; + +import org.ohdsi.circe.cohortdefinition.builders.CriteriaColumn; + +import jakarta.persistence.AttributeConverter; +import jakarta.persistence.Converter; + +@Converter +public class CriteriaColumnListConverter implements AttributeConverter, String> { + + private static final String DELIMITER = ","; + + @Override + public String convertToDatabaseColumn(List attribute) { + if (attribute == null || attribute.isEmpty()) { + return null; + } + return attribute.stream() + .map(CriteriaColumn::name) // Convert enum to its string name + .collect(Collectors.joining(DELIMITER)); + } + + @Override + public List convertToEntityAttribute(String dbData) { + if (dbData == null || dbData.isEmpty()) { + return Collections.emptyList(); + } + return Arrays.stream(dbData.split(DELIMITER)) + .map(CriteriaColumn::valueOf) // Convert string name back to enum + .collect(Collectors.toList()); + } +} \ No newline at end of file diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java b/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java index 354a1ae68..80e17d28e 100644 --- a/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java +++ b/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java @@ -16,14 +16,12 @@ import jakarta.persistence.*; import java.util.List; - +import java.util.List; @Entity @Table(name = "fe_analysis_aggregate") -// @TypeDef(typeClass = EnumListType.class, name = "enumm-list") MDACA Spring Boot 3 migration compilation issue -@Convert(attributeName = "enumm-list", converter = EnumListType.class) public class FeAnalysisAggregateEntity implements FeatureAnalysisAggregate, WithId { - - @Id + + @Id @GenericGenerator( name = "fe_aggregate_generator", strategy = "org.hibernate.id.enhanced.SequenceStyleGenerator", @@ -65,13 +63,10 @@ public class FeAnalysisAggregateEntity implements FeatureAnalysisAggregate, With @Column(name = "missing_means_zero") private boolean isMissingMeansZero; + @Column(name = "criteria_columns") -/* MDACA Spring Boot 3 migration compilation issue, see package-info.java - @Type(value = enumm-list.class, parameters = { - @Parameter(name = "enumClass", value = "org.ohdsi.circe.cohortdefinition.builders.CriteriaColumn") - }) -*/ - private List columns; + @Convert(converter = CriteriaColumnListConverter.class) +private List columns; @Override public Integer getId() { diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisEntity.java b/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisEntity.java index 1787ac975..0fcd9a4e0 100644 --- a/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisEntity.java +++ b/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisEntity.java @@ -31,10 +31,7 @@ @Table(name = "fe_analysis") @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @DiscriminatorFormula( - """ - CASE WHEN type = 'CRITERIA_SET' THEN CONCAT(CONCAT(type,'_'),stat_type) \ - ELSE type END\ - """ + "CASE WHEN type = 'CRITERIA_SET' THEN CONCAT(CONCAT(type,'_'),stat_type) ELSE type END" ) public abstract class FeAnalysisEntity extends CommonEntity implements FeatureAnalysis, Comparable> { @@ -71,7 +68,6 @@ public FeAnalysisEntity(final FeAnalysisEntity entityForCopy) { @Column private String name; - @Lob @Column(name = "design", insertable = false, updatable = false) private String rawDesign; diff --git a/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithStringEntity.java b/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithStringEntity.java index 7216ed94e..d45e820ef 100644 --- a/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithStringEntity.java +++ b/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithStringEntity.java @@ -1,5 +1,6 @@ package org.ohdsi.webapi.feanalysis.domain; +import jakarta.persistence.Column; import jakarta.persistence.DiscriminatorValue; import jakarta.persistence.Entity; import jakarta.persistence.Lob; @@ -15,8 +16,8 @@ public FeAnalysisWithStringEntity() { public FeAnalysisWithStringEntity(final FeAnalysisWithStringEntity analysis) { super(analysis); } - - @Lob + + @Column private String design; @Override From 7cf9dcce1385e3d20260dc78605ff193223bfa99 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 3 Jan 2025 11:52:48 -0500 Subject: [PATCH 124/141] add transactionmanager, and jobrepository to fix delete cohort errors --- .../CleanupCohortSamplesTasklet.java | 13 ++++++++++++- .../service/CohortDefinitionService.java | 19 +++++++++++++++---- 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java b/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java index abb59f5de..6c4d4bd1e 100644 --- a/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java +++ b/src/main/java/org/ohdsi/webapi/cohortsample/CleanupCohortSamplesTasklet.java @@ -20,8 +20,14 @@ import org.springframework.batch.core.scope.context.ChunkContext; import org.springframework.batch.core.step.tasklet.Tasklet; import org.springframework.batch.repeat.RepeatStatus; +import org.springframework.stereotype.Component; +import org.springframework.transaction.PlatformTransactionManager; import org.springframework.transaction.support.TransactionTemplate; +import org.springframework.batch.core.job.builder.JobBuilder; +import org.springframework.batch.core.repository.JobRepository; +import org.springframework.batch.core.step.builder.StepBuilder; + import java.util.List; import java.util.Map; import java.util.stream.StreamSupport; @@ -37,17 +43,20 @@ public class CleanupCohortSamplesTasklet implements Tasklet { private final SourceRepository sourceRepository; private final CohortSamplingService samplingService; private final CohortSampleRepository sampleRepository; + private final PlatformTransactionManager transactionManager; public CleanupCohortSamplesTasklet( final TransactionTemplate transactionTemplate, final SourceRepository sourceRepository, CohortSamplingService samplingService, - CohortSampleRepository sampleRepository + CohortSampleRepository sampleRepository, + PlatformTransactionManager transactionManager ) { this.transactionTemplate = transactionTemplate; this.sourceRepository = sourceRepository; this.samplingService = samplingService; this.sampleRepository = sampleRepository; + this.transactionManager = transactionManager; } private Integer doTask(ChunkContext chunkContext) { @@ -134,6 +143,7 @@ public JobExecutionResource launch(JobBuilderFactory jobBuilders, StepBuilderFac private JobExecutionResource launch(JobBuilderFactory jobBuilders, StepBuilderFactory stepBuilders, JobTemplate jobTemplate, JobParameters jobParameters) { Step cleanupStep = stepBuilders.get("cohortSample.cleanupSamples") .tasklet(this) + .transactionManager(transactionManager) .build(); SimpleJobBuilder cleanupJobBuilder = jobBuilders.get("cleanupSamples") @@ -143,4 +153,5 @@ private JobExecutionResource launch(JobBuilderFactory jobBuilders, StepBuilderFa return jobTemplate.launch(cleanupCohortJob, jobParameters); } + } diff --git a/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java b/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java index ad8874716..079a0c1ab 100644 --- a/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java +++ b/src/main/java/org/ohdsi/webapi/service/CohortDefinitionService.java @@ -86,6 +86,7 @@ import org.springframework.batch.core.configuration.annotation.StepBuilderFactory; import org.springframework.batch.core.job.builder.JobBuilder; import org.springframework.batch.core.job.builder.SimpleJobBuilder; +import org.springframework.batch.core.repository.JobRepository; import org.springframework.batch.core.step.builder.StepBuilder; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; @@ -93,6 +94,7 @@ import org.springframework.core.convert.ConversionService; import org.springframework.jdbc.core.RowMapper; import org.springframework.stereotype.Component; +import org.springframework.transaction.PlatformTransactionManager; import org.springframework.transaction.TransactionStatus; import org.springframework.transaction.support.TransactionCallbackWithoutResult; @@ -200,7 +202,14 @@ public class CohortDefinitionService extends AbstractDaoService implements HasTa @Autowired private VersionService versionService; - + + @Autowired + private PlatformTransactionManager transactionManager; + + @Autowired + private JobRepository jobRepository; + + @Value("${security.defaultGlobalReadPermissions}") private boolean defaultGlobalReadPermissions; @@ -733,17 +742,19 @@ public void doInTransactionWithoutResult(final TransactionStatus status) { CleanupCohortTasklet cleanupTasklet = new CleanupCohortTasklet(this.getTransactionTemplateNoTransaction(), this.getSourceRepository()); - Step cleanupStep = new StepBuilder("cohortDefinition.cleanupCohort") + Step cleanupStep = new StepBuilder("cohortDefinition.cleanupCohort", jobRepository) .tasklet(cleanupTasklet) + .transactionManager(transactionManager) .build(); CleanupCohortSamplesTasklet cleanupSamplesTasklet = samplingService.createDeleteSamplesTasklet(); - Step cleanupSamplesStep = new StepBuilder("cohortDefinition.cleanupSamples") + Step cleanupSamplesStep = new StepBuilder("cohortDefinition.cleanupSamples", jobRepository) .tasklet(cleanupSamplesTasklet) + .transactionManager(transactionManager) .build(); - SimpleJobBuilder cleanupJobBuilder = new JobBuilder("cleanupCohort") + SimpleJobBuilder cleanupJobBuilder = new JobBuilder("cleanupCohort", jobRepository) .start(cleanupStep) .next(cleanupSamplesStep); From 7ca12aff927fac6bab7d6616a848a76203cbc0b7 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 3 Jan 2025 13:41:43 -0500 Subject: [PATCH 125/141] added PlatformTransactionManager for previous fix not in previous commit --- .../ohdsi/webapi/cohortsample/CohortSamplingService.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java b/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java index b35f00d0a..56c16d6a8 100644 --- a/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java +++ b/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java @@ -15,6 +15,7 @@ import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.jdbc.core.RowMapper; import org.springframework.stereotype.Component; +import org.springframework.transaction.PlatformTransactionManager; import org.springframework.transaction.support.TransactionCallback; import jakarta.ws.rs.BadRequestException; @@ -46,16 +47,19 @@ public class CohortSamplingService extends AbstractDaoService { private final JobBuilderFactory jobBuilders; private final StepBuilderFactory stepBuilders; private final JobTemplate jobTemplate; + private final PlatformTransactionManager transactionManager; public CohortSamplingService( CohortSampleRepository sampleRepository, JobBuilderFactory jobBuilders, StepBuilderFactory stepBuilders, - JobTemplate jobTemplate) { + JobTemplate jobTemplate, + PlatformTransactionManager transactionManager) { this.sampleRepository = sampleRepository; this.jobBuilders = jobBuilders; this.stepBuilders = stepBuilders; this.jobTemplate = jobTemplate; + this.transactionManager = transactionManager; } public List listSamples(int cohortDefinitionId, int sourceId) { @@ -481,7 +485,7 @@ public void launchDeleteSamplesTasklet(int cohortDefinitionId, int sourceId) { } public CleanupCohortSamplesTasklet createDeleteSamplesTasklet() { - return new CleanupCohortSamplesTasklet(getTransactionTemplate(), getSourceRepository(), this, sampleRepository); + return new CleanupCohortSamplesTasklet(getTransactionTemplate(), getSourceRepository(), this, sampleRepository, transactionManager); } /** Maps a SQL result to a sample element. */ From 5f80745ca55a5f60e5540271cc6d25c3e778eec0 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Thu, 6 Feb 2025 14:24:59 -0500 Subject: [PATCH 126/141] updated tomcat version for cve-2024-56337 --- pom.xml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index e1423a553..394a30807 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ 2.1.3 0.4.0 3.2.0 - 10.1.25 + 10.1.34 1.5 @@ -90,7 +90,8 @@ webapi-postgresql - AtlasRegularSecurity + DisabledSecurity + 43200 http://localhost false @@ -236,16 +237,16 @@ true - false + true false 200 true info info - info - info + debug + debug info - info + debug warn 10 From e3967ac5c862612d8304a79e11163394f6acd029 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Thu, 6 Feb 2025 16:00:23 -0500 Subject: [PATCH 127/141] updated spring dependencies for security scans: CVE-2024-38816, CVE-2024-38819, CVE-2024-38809, and CVE-2024-38827 --- pom.xml | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 394a30807..f75b203b4 100644 --- a/pom.xml +++ b/pom.xml @@ -571,11 +571,32 @@ - + + org.springframework + spring-beans + 6.1.14 + + + org.springframework + spring-core + 6.1.14 + + org.springframework spring-context 6.1.14 - + + + org.springframework + spring-web + 6.1.14 + + + org.springframework + spring-webmvc + 6.1.14 + + org.apache.logging.log4j log4j-api From a6ca5db0a45bbfeebb0615937d5335963b61d9b4 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Thu, 6 Feb 2025 17:04:46 -0500 Subject: [PATCH 128/141] updated spring dependencies for security scans: CVE-2024-47554 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f75b203b4..999b77dd2 100644 --- a/pom.xml +++ b/pom.xml @@ -826,7 +826,7 @@ commons-io commons-io - 2.7 + 2.14.0 com.sun.xml.security From 3a236dc3b30ce6cd779b50ed2f14681dca767b98 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Thu, 6 Feb 2025 22:49:29 -0500 Subject: [PATCH 129/141] update dependencies for secuity scan: CVE-2024-47554 --- pom.xml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 999b77dd2..96986e51a 100644 --- a/pom.xml +++ b/pom.xml @@ -596,7 +596,6 @@ spring-webmvc 6.1.14 - org.apache.logging.log4j log4j-api @@ -625,31 +624,35 @@ pom import - org.apache.tomcat.embed tomcat-embed-core ${tomcat.embed.version} provided - + org.apache.tomcat.embed tomcat-embed-websocket ${tomcat.embed.version} provided - + org.apache.tomcat tomcat-jdbc ${tomcat.embed.version} provided - + org.apache.tomcat tomcat-juli ${tomcat.embed.version} provided - + + + commons-io + commons-io + 2.14.0 + From c36015362c8d4c44cd49693b42f4e9cf94fee2d7 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 7 Feb 2025 12:12:02 -0500 Subject: [PATCH 130/141] update for security scan: CVE-2022-24615 and CVE-2023-22899 --- pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pom.xml b/pom.xml index 96986e51a..2fef1db23 100644 --- a/pom.xml +++ b/pom.xml @@ -653,6 +653,11 @@ commons-io 2.14.0 + + net.lingala.zip4j + zip4j + 2.11.3 + From d4fa9f20f806601f7f021338c41f70b3ae51f875 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 7 Feb 2025 14:15:59 -0500 Subject: [PATCH 131/141] update for security scan: CVE-2024-38829 --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 2fef1db23..d810ffa23 100644 --- a/pom.xml +++ b/pom.xml @@ -1311,6 +1311,7 @@ org.springframework.ldap spring-ldap-core + 3.2.8 com.odysseusinc From 9550aa58fac8118dc7fb4f232035f24ed20d00bf Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 7 Feb 2025 15:23:06 -0500 Subject: [PATCH 132/141] update for security scan: CVE-2024-47554 --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index d810ffa23..ccc3fbd7e 100644 --- a/pom.xml +++ b/pom.xml @@ -652,6 +652,7 @@ commons-io commons-io 2.14.0 + import net.lingala.zip4j From c6d87b569eb632a5f1451aa1c9ca09e6e820720e Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 7 Feb 2025 15:36:27 -0500 Subject: [PATCH 133/141] update for security scan: CVE-2024-47554 --- pom.xml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ccc3fbd7e..46c16d0df 100644 --- a/pom.xml +++ b/pom.xml @@ -661,7 +661,18 @@ - + + + org.apache.velocity + velocity-engine-core + 2.3 + + + commons-io + commons-io + + + org.codehaus.jettison jettison From 1435b0fbe9d47f4e979b0ab3c89b86801eccbad2 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 7 Feb 2025 16:09:04 -0500 Subject: [PATCH 134/141] update for security scan: CVE-2024-47554 --- pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/pom.xml b/pom.xml index 46c16d0df..d30f779ea 100644 --- a/pom.xml +++ b/pom.xml @@ -652,7 +652,6 @@ commons-io commons-io 2.14.0 - import net.lingala.zip4j From 06657487e696a3146516a0e3d8c8013acfdfd8ac Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 7 Feb 2025 16:29:19 -0500 Subject: [PATCH 135/141] update for security scan: CVE-2024-47554 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d30f779ea..01f306faf 100644 --- a/pom.xml +++ b/pom.xml @@ -656,7 +656,7 @@ net.lingala.zip4j zip4j - 2.11.3 + 2.11.3 From 0defd008622cd292eec618593ecc1981bbd59f23 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 10 Feb 2025 09:00:02 -0500 Subject: [PATCH 136/141] update velocity-engine-core for security scan: CVE-2024-47554 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 01f306faf..9e10872a3 100644 --- a/pom.xml +++ b/pom.xml @@ -664,7 +664,7 @@ org.apache.velocity velocity-engine-core - 2.3 + 2.4.1 commons-io From cf5875385045f5147d4c1502388c75601fb83b13 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 10 Feb 2025 09:18:46 -0500 Subject: [PATCH 137/141] update velocity-engine-core for new CVEs --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e10872a3..b6c13e914 100644 --- a/pom.xml +++ b/pom.xml @@ -664,7 +664,7 @@ org.apache.velocity velocity-engine-core - 2.4.1 + 2.4 commons-io From b09a84d8d7c7cb14efb89d459e129c930b5d87fe Mon Sep 17 00:00:00 2001 From: Richard Stevens Date: Fri, 21 Feb 2025 23:55:28 -0500 Subject: [PATCH 138/141] Updated tag from 3.20.3 to 3.20.6 for alpine patch and updated ci.yml for only run when specific folder/files are updated as well updated 4th octet from .2 to .3 --- .github/workflows/ci.yaml | 7 ++++++- Dockerfile-mvn-no-local | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2db21c426..2e83479cb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,7 +6,12 @@ on: push: branches: - mdaca-3.0.1 - + paths: + - 'Dockerfile-mvn-no-local' + - 'src/*' + - '.m2/*' + - '.github/workflows/ci.yaml' + - 'pom.xml' jobs: build: runs-on: ubuntu-latest diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index b9e39f726..56cf89eb4 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -23,7 +23,7 @@ RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} && \ rm WebAPI.war # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 -FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.3_jdk17 +FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.6_jdk17 # Any Java options to pass along, e.g. memory, garbage collection, etc. ENV JAVA_OPTS="" From cdbf5f38429004ed0cafcfee842b8425add2c815 Mon Sep 17 00:00:00 2001 From: Richard Stevens Date: Sat, 22 Feb 2025 00:10:33 -0500 Subject: [PATCH 139/141] Updated tag 3.0.2.2 to 3.0.2.3 --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2e83479cb..5c9392887 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,7 +25,7 @@ jobs: - name: Build and Push Docker Image env: - IMAGE_TAG: 3.0.2.2 + IMAGE_TAG: 3.0.2.3 ECR_REPOSITORY: mdaca/ohdsi/webapi AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} @@ -84,7 +84,7 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.2.2 + IMAGE_TAG: 3.0.2.3 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | # Set ENV for AW Cred @@ -106,7 +106,7 @@ jobs: env: AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.2.2 + IMAGE_TAG: 3.0.2.3 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | @@ -121,7 +121,7 @@ jobs: env: AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.2.2 + IMAGE_TAG: 3.0.2.3 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | syft $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG From 29745c79b83abb0651f935c95404c9e636baecb6 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 24 Feb 2025 16:41:24 -0500 Subject: [PATCH 140/141] changed logging from debug to error --- pom.xml | 6 +++--- src/main/resources/application.properties | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index b6c13e914..2fe2e8739 100644 --- a/pom.xml +++ b/pom.xml @@ -243,10 +243,10 @@ true info info - debug - debug + ERROR + ERROR info - debug + ERROR warn 10 diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 0b30e46ec..02aafee41 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -64,6 +64,11 @@ spring.jpa.properties.hibernate.dialect=${hibernate.dialect} spring.jpa.properties.hibernate.generate_statistics=${spring.jpa.properties.hibernate.generate_statistics} spring.jpa.properties.hibernate.jdbc.batch_size=${spring.jpa.properties.hibernate.jdbc.batch_size} spring.jpa.properties.hibernate.order_inserts=${spring.jpa.properties.hibernate.order_inserts} +# Hibernate configuration +spring.jpa.hibernate.ddl-auto=validate +logging.level.org.hibernate.SQL=ERROR +logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE + #JAX-RS jersey.resources.root.package=org.ohdsi.webapi From b25e7b50852961633017e449bd5ff3d80075e49e Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Mon, 24 Feb 2025 17:05:56 -0500 Subject: [PATCH 141/141] update dependency version for security scan: cve-2024-57699 --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 2fe2e8739..1c183628d 100644 --- a/pom.xml +++ b/pom.xml @@ -880,6 +880,7 @@ net.minidev json-smart + 2.5.2 org.apache.commons

  • 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 E04}8$$N&HU literal 0 HcmV?d00001 diff --git a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar.sha1 b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar.sha1 new file mode 100644 index 000000000..b99527f69 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar.sha1 @@ -0,0 +1 @@ +8d314bd875607574fca6d76136c796007e76b671 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom new file mode 100644 index 000000000..87b5dbbdb --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom @@ -0,0 +1,117 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-maven-plugin + 3.2.5 + maven-plugin + spring-boot-maven-plugin + Spring Boot Maven Plugin + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-buildpack-platform + 3.2.5 + runtime + + + org.springframework.boot + spring-boot-loader-tools + 3.2.5 + runtime + + + org.apache.maven.shared + maven-common-artifact-filters + 3.3.2 + runtime + + + javax.enterprise + cdi-api + + + javax.inject + javax.inject + + + javax.annotation + javax.annotation-api + + + + + org.springframework + spring-core + 6.1.6 + runtime + + + org.springframework + spring-context + 6.1.6 + runtime + + + org.sonatype.plexus + plexus-build-api + 0.0.7 + runtime + + + org.apache.maven.plugins + maven-shade-plugin + 3.5.0 + compile + + + javax.enterprise + cdi-api + + + javax.inject + javax.inject + + + javax.annotation + javax.annotation-api + + + true + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom.sha1 new file mode 100644 index 000000000..cc3a2f2a7 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom.sha1 @@ -0,0 +1 @@ +b3e643f04f7960f4bb7cc3fa4a0d9b396fb2032a \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/_remote.repositories new file mode 100644 index 000000000..4030b0361 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:01 EDT 2024 +spring-boot-starter-aop-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom new file mode 100644 index 000000000..9cfe7ee16 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom @@ -0,0 +1,63 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-aop + 3.2.5 + spring-boot-starter-aop + Starter for aspect-oriented programming with Spring AOP and AspectJ + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter + 3.2.5 + compile + + + org.springframework + spring-aop + 6.1.6 + compile + + + org.aspectj + aspectjweaver + 1.9.22 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom.sha1 new file mode 100644 index 000000000..bad1a78b0 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom.sha1 @@ -0,0 +1 @@ +906a13f582b1c5a2652c624f40b3f6fb11e86786 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/_remote.repositories new file mode 100644 index 000000000..c58c4cc53 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +spring-boot-starter-batch-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom new file mode 100644 index 000000000..8cb30e0a4 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom @@ -0,0 +1,63 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-batch + 3.2.5 + spring-boot-starter-batch + Starter for using Spring Batch + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter + 3.2.5 + compile + + + org.springframework.boot + spring-boot-starter-jdbc + 3.2.5 + compile + + + org.springframework.batch + spring-batch-core + 5.1.1 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom.sha1 new file mode 100644 index 000000000..64be717a5 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom.sha1 @@ -0,0 +1 @@ +c887b12d8c3e5cd2a795ef36f1c13f79a4cde28d \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/_remote.repositories new file mode 100644 index 000000000..5c43f3e38 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:04 EDT 2024 +spring-boot-starter-cache-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom new file mode 100644 index 000000000..b4873802e --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom @@ -0,0 +1,57 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-cache + 3.2.5 + spring-boot-starter-cache + Starter for using Spring Framework's caching support + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter + 3.2.5 + compile + + + org.springframework + spring-context-support + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom.sha1 new file mode 100644 index 000000000..a1b26f8ce --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom.sha1 @@ -0,0 +1 @@ +e0e2f3a48c413d85ec07e546cafb9e809b9d1fbd \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/_remote.repositories new file mode 100644 index 000000000..6f7d7fa01 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:01 EDT 2024 +spring-boot-starter-data-jpa-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom new file mode 100644 index 000000000..509d85ff7 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom @@ -0,0 +1,75 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-data-jpa + 3.2.5 + spring-boot-starter-data-jpa + Starter for using Spring Data JPA with Hibernate + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter-aop + 3.2.5 + compile + + + org.springframework.boot + spring-boot-starter-jdbc + 3.2.5 + compile + + + org.hibernate.orm + hibernate-core + 6.4.4.Final + compile + + + org.springframework.data + spring-data-jpa + 3.2.5 + compile + + + org.springframework + spring-aspects + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom.sha1 new file mode 100644 index 000000000..4804ba285 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom.sha1 @@ -0,0 +1 @@ +3b7df09dced9f2752f299abe19678432f1180248 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/_remote.repositories new file mode 100644 index 000000000..9c649e2f4 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:53 EDT 2024 +spring-boot-starter-jdbc-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom new file mode 100644 index 000000000..8941ab9d1 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom @@ -0,0 +1,63 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-jdbc + 3.2.5 + spring-boot-starter-jdbc + Starter for using JDBC with the HikariCP connection pool + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter + 3.2.5 + compile + + + com.zaxxer + HikariCP + 5.0.1 + compile + + + org.springframework + spring-jdbc + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom.sha1 new file mode 100644 index 000000000..34fc9aa69 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom.sha1 @@ -0,0 +1 @@ +5cf38202ff3baaff8b7073d81a6be5465a6e0491 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/_remote.repositories new file mode 100644 index 000000000..35c82827f --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:54 EDT 2024 +spring-boot-starter-jersey-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom new file mode 100644 index 000000000..f7bf87ed8 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom @@ -0,0 +1,111 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-jersey + 3.2.5 + spring-boot-starter-jersey + Starter for building RESTful web applications using JAX-RS and Jersey. An alternative to spring-boot-starter-web + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter-json + 3.2.5 + compile + + + org.springframework.boot + spring-boot-starter-tomcat + 3.2.5 + compile + + + org.springframework.boot + spring-boot-starter-validation + 3.2.5 + compile + + + org.springframework + spring-web + 6.1.6 + compile + + + org.glassfish.jersey.containers + jersey-container-servlet-core + 3.1.6 + compile + + + org.glassfish.jersey.containers + jersey-container-servlet + 3.1.6 + compile + + + org.glassfish.jersey.core + jersey-server + 3.1.6 + compile + + + org.glassfish.jersey.ext + jersey-bean-validation + 3.1.6 + compile + + + jakarta.el + jakarta.el-api + + + + + org.glassfish.jersey.ext + jersey-spring6 + 3.1.6 + compile + + + org.glassfish.jersey.media + jersey-media-json-jackson + 3.1.6 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom.sha1 new file mode 100644 index 000000000..adc9395d0 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom.sha1 @@ -0,0 +1 @@ +bba80316b4c69ac80fc026b0c6af96a1d8efd2d9 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/_remote.repositories new file mode 100644 index 000000000..93ccf6e4c --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:51 EDT 2024 +spring-boot-starter-json-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom new file mode 100644 index 000000000..e46bc0c53 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom @@ -0,0 +1,81 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-json + 3.2.5 + spring-boot-starter-json + Starter for reading and writing json + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter + 3.2.5 + compile + + + org.springframework + spring-web + 6.1.6 + compile + + + com.fasterxml.jackson.core + jackson-databind + 2.15.4 + compile + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.15.4 + compile + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.15.4 + compile + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.15.4 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom.sha1 new file mode 100644 index 000000000..88504618b --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom.sha1 @@ -0,0 +1 @@ +91786cb9defa4651884172bc3f5a423c81216f82 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/_remote.repositories new file mode 100644 index 000000000..fa2c3459e --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +spring-boot-starter-log4j2-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom new file mode 100644 index 000000000..56409a146 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom @@ -0,0 +1,63 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-log4j2 + 3.2.5 + spring-boot-starter-log4j2 + Starter for using Log4j2 for logging. An alternative to spring-boot-starter-logging + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.apache.logging.log4j + log4j-slf4j2-impl + 2.21.1 + compile + + + org.apache.logging.log4j + log4j-core + 2.21.1 + compile + + + org.apache.logging.log4j + log4j-jul + 2.21.1 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom.sha1 new file mode 100644 index 000000000..9b4e4bfe2 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom.sha1 @@ -0,0 +1 @@ +486d4ad8e2af3f032cf9546f5b11a8999d19c3f0 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/_remote.repositories new file mode 100644 index 000000000..e356d81c4 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:48 EDT 2024 +spring-boot-starter-logging-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom new file mode 100644 index 000000000..af870f57e --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom @@ -0,0 +1,63 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-logging + 3.2.5 + spring-boot-starter-logging + Starter for logging using Logback. Default logging starter + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + ch.qos.logback + logback-classic + 1.4.14 + compile + + + org.apache.logging.log4j + log4j-to-slf4j + 2.21.1 + compile + + + org.slf4j + jul-to-slf4j + 2.0.13 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom.sha1 new file mode 100644 index 000000000..0e75d241a --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom.sha1 @@ -0,0 +1 @@ +603356a12c27a4e2b758459efdda1c7484bf50db \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/_remote.repositories new file mode 100644 index 000000000..fd659f1a9 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:56 EDT 2024 +spring-boot-starter-parent-2.3.0.RELEASE.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom b/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom new file mode 100644 index 000000000..88409e886 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom @@ -0,0 +1,237 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-dependencies + 2.3.0.RELEASE + + spring-boot-starter-parent + pom + spring-boot-starter-parent + Parent pom providing dependency and plugin management for applications built with Maven + + 1.8 + @ + ${java.version} + ${java.version} + UTF-8 + UTF-8 + + https://spring.io/projects/spring-boot + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + + ${basedir}/src/main/resources + true + + **/application*.yml + **/application*.yaml + **/application*.properties + + + + ${basedir}/src/main/resources + + **/application*.yml + **/application*.yaml + **/application*.properties + + + + + + + org.jetbrains.kotlin + kotlin-maven-plugin + ${kotlin.version} + + ${java.version} + true + + + + compile + compile + + compile + + + + test-compile + test-compile + + test-compile + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + true + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + integration-test + verify + + + + + ${project.build.outputDirectory} + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${start-class} + true + + + + + + org.apache.maven.plugins + maven-war-plugin + + + + ${start-class} + true + + + + + + org.apache.maven.plugins + maven-resources-plugin + + + ${resource.delimiter} + + false + + + + pl.project13.maven + git-commit-id-plugin + + + + revision + + + + + true + yyyy-MM-dd'T'HH:mm:ssZ + true + ${project.build.outputDirectory}/git.properties + + + + org.springframework.boot + spring-boot-maven-plugin + + + repackage + + repackage + + + + + ${start-class} + + + + org.apache.maven.plugins + maven-shade-plugin + + true + true + + + *:* + + META-INF/*.SF + META-INF/*.DSA + META-INF/*.RSA + + + + + + + org.springframework.boot + spring-boot-maven-plugin + 2.3.0.RELEASE + + + + + package + + shade + + + + + META-INF/spring.handlers + + + META-INF/spring.factories + + + META-INF/spring.schemas + + + + ${start-class} + + + + + + + + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom.sha1 new file mode 100644 index 000000000..668e74b65 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom.sha1 @@ -0,0 +1 @@ +24da6c46dc22777d306a90eefa4386df6b5d2b6a \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/_remote.repositories new file mode 100644 index 000000000..6b28f76aa --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +spring-boot-starter-test-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom new file mode 100644 index 000000000..842848ba3 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom @@ -0,0 +1,147 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-test + 3.2.5 + spring-boot-starter-test + Starter for testing Spring Boot applications with libraries including JUnit Jupiter, Hamcrest and Mockito + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter + 3.2.5 + compile + + + org.springframework.boot + spring-boot-test + 3.2.5 + compile + + + org.springframework.boot + spring-boot-test-autoconfigure + 3.2.5 + compile + + + com.jayway.jsonpath + json-path + 2.9.0 + compile + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.2 + compile + + + net.minidev + json-smart + 2.5.1 + compile + + + org.assertj + assertj-core + 3.24.2 + compile + + + org.awaitility + awaitility + 4.2.1 + compile + + + org.hamcrest + hamcrest + 2.2 + compile + + + org.junit.jupiter + junit-jupiter + 5.10.2 + compile + + + org.mockito + mockito-core + 5.7.0 + compile + + + org.mockito + mockito-junit-jupiter + 5.7.0 + compile + + + org.skyscreamer + jsonassert + 1.5.1 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + org.springframework + spring-test + 6.1.6 + compile + + + org.xmlunit + xmlunit-core + 2.9.1 + compile + + + javax.xml.bind + jaxb-api + + + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom.sha1 new file mode 100644 index 000000000..adb8eaaf3 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom.sha1 @@ -0,0 +1 @@ +df2b63500e08409dd55c59e23035593d9ca94118 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/_remote.repositories new file mode 100644 index 000000000..0fe07edf8 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +spring-boot-starter-tomcat-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom new file mode 100644 index 000000000..48239b191 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom @@ -0,0 +1,81 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-tomcat + 3.2.5 + spring-boot-starter-tomcat + Starter for using Tomcat as the embedded servlet container. Default servlet container starter used by spring-boot-starter-web + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + compile + + + org.apache.tomcat.embed + tomcat-embed-core + 10.1.20 + compile + + + org.apache.tomcat + tomcat-annotations-api + + + + + org.apache.tomcat.embed + tomcat-embed-el + 10.1.20 + compile + + + org.apache.tomcat.embed + tomcat-embed-websocket + 10.1.20 + compile + + + org.apache.tomcat + tomcat-annotations-api + + + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom.sha1 new file mode 100644 index 000000000..4a6e87ba4 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom.sha1 @@ -0,0 +1 @@ +acf4171e65bd52715d831a9163d87f73be16e0a4 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/_remote.repositories new file mode 100644 index 000000000..ebb626a75 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:54 EDT 2024 +spring-boot-starter-validation-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom new file mode 100644 index 000000000..189a69aed --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom @@ -0,0 +1,63 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-validation + 3.2.5 + spring-boot-starter-validation + Starter for using Java Bean Validation with Hibernate Validator + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter + 3.2.5 + compile + + + org.apache.tomcat.embed + tomcat-embed-el + 10.1.20 + compile + + + org.hibernate.validator + hibernate-validator + 8.0.1.Final + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom.sha1 new file mode 100644 index 000000000..2904b7183 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom.sha1 @@ -0,0 +1 @@ +edc6bb93a1fe439760c816019f6b5fe5d902a2fe \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/_remote.repositories new file mode 100644 index 000000000..284e407b8 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:48 EDT 2024 +spring-boot-starter-web-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom new file mode 100644 index 000000000..62a734b5a --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom @@ -0,0 +1,75 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter-web + 3.2.5 + spring-boot-starter-web + Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter + 3.2.5 + compile + + + org.springframework.boot + spring-boot-starter-json + 3.2.5 + compile + + + org.springframework.boot + spring-boot-starter-tomcat + 3.2.5 + compile + + + org.springframework + spring-web + 6.1.6 + compile + + + org.springframework + spring-webmvc + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom.sha1 new file mode 100644 index 000000000..ab3283286 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom.sha1 @@ -0,0 +1 @@ +a03c3f368aebdf293b5559d5ce2ce49b301642a6 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/_remote.repositories new file mode 100644 index 000000000..66cb0aba0 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:48 EDT 2024 +spring-boot-starter-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom new file mode 100644 index 000000000..b09e9b156 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom @@ -0,0 +1,81 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-starter + 3.2.5 + spring-boot-starter + Core starter, including auto-configuration support, logging and YAML + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot + 3.2.5 + compile + + + org.springframework.boot + spring-boot-autoconfigure + 3.2.5 + compile + + + org.springframework.boot + spring-boot-starter-logging + 3.2.5 + compile + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + org.yaml + snakeyaml + 2.2 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom.sha1 new file mode 100644 index 000000000..f61520e7f --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom.sha1 @@ -0,0 +1 @@ +9e3360711d96cfa395af4b7817f30d686f0adcfc \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/_remote.repositories new file mode 100644 index 000000000..e6d98e521 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +spring-boot-test-autoconfigure-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom new file mode 100644 index 000000000..54388b8cf --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom @@ -0,0 +1,63 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-test-autoconfigure + 3.2.5 + spring-boot-test-autoconfigure + Spring Boot Test AutoConfigure + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot + 3.2.5 + compile + + + org.springframework.boot + spring-boot-test + 3.2.5 + compile + + + org.springframework.boot + spring-boot-autoconfigure + 3.2.5 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom.sha1 new file mode 100644 index 000000000..b4f4a3e72 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom.sha1 @@ -0,0 +1 @@ +e34cd082960a6f7b6fbe0c9e3b0bfbb47b5153a0 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/_remote.repositories new file mode 100644 index 000000000..60ec72370 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:07 EDT 2024 +spring-boot-test-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom new file mode 100644 index 000000000..fc86568c6 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom @@ -0,0 +1,50 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot-test + 3.2.5 + spring-boot-test + Spring Boot Test + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot + 3.2.5 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom.sha1 new file mode 100644 index 000000000..7a095f6d9 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom.sha1 @@ -0,0 +1 @@ +3cdcd22f63eb24f9a14ea2cf63b73ba0ddae0c51 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot/3.2.5/_remote.repositories new file mode 100644 index 000000000..6273637ef --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:48 EDT 2024 +spring-boot-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom new file mode 100644 index 000000000..05dfcfd17 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom @@ -0,0 +1,56 @@ + + + + + + + + 4.0.0 + org.springframework.boot + spring-boot + 3.2.5 + spring-boot + Spring Boot + https://spring.io/projects/spring-boot + + VMware, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Spring + ask@spring.io + VMware, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + GitHub + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework + spring-core + 6.1.6 + compile + + + org.springframework + spring-context + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom.sha1 new file mode 100644 index 000000000..696b6e384 --- /dev/null +++ b/code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom.sha1 @@ -0,0 +1 @@ +d880469f5b58bb4e43fb2e8dea27c1349f4c2913 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/_remote.repositories new file mode 100644 index 000000000..98cd6be33 --- /dev/null +++ b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:53 EDT 2024 +spring-data-build-2.3.0.RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom new file mode 100644 index 000000000..38e25a9ce --- /dev/null +++ b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom @@ -0,0 +1,270 @@ + + + + 4.0.0 + org.springframework.data.build + spring-data-build + 2.3.0.RELEASE + pom + + Spring Data Build + Modules to centralize common resources and configuration for Spring Data Maven builds. + https://github.com/spring-projects/spring-data-build + + + Pivotal Software, Inc. + https://www.spring.io + + + + resources + parent + bom + + + + + odrotbohm + Oliver Drotbohm + odrotbohm at pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + Project lead + + +1 + + + mpaluch + Mark Paluch + mpaluch at pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + Project lead + + +1 + + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + Copyright 2010 the original author or authors. + + 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 + + https://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. + + + + + + + + + + release + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-release-rules + + enforce + + + + + [1.8,1.9) + + + + + + + + + + + + + + + bom-verify + + bom-client + + + + + + + artifactory + + + + + + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + 2.7.0 + + + build-info + + publish + + + + false + + + {{artifactory.server}} + {{artifactory.username}} + {{artifactory.password}} + {{artifactory.staging-repository}} + {{artifactory.staging-repository}} + + + {{artifactory.build-name}} + {{artifactory.build-number}} + {{BUILD_URL}} + + + + + + + + + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + + + + + + + + + with-bom-client + + + bom-client + + + + + + + central + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + sonatype + https://oss.sonatype.org/ + false + true + + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + + org.sonatype.plugins + nexus-staging-maven-plugin + + + + + + + + + sonatype + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + + https://github.com/spring-projects/spring-data-build + scm:git:git://github.com/spring-projects/spring-data-build.git + scm:git:ssh://git@github.com:spring-projects/spring-data-build.git + + + + GitHub + https://github.com/spring-projects/spring-data-build/issues + + + + + spring-libs-release + https://repo.spring.io/libs-release + + + + diff --git a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.lastUpdated b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.lastUpdated new file mode 100644 index 000000000..98c75967b --- /dev/null +++ b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:53 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139893992 +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.data.build\:spring-data-build\:pom\:2.3.0.RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139893710 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139893718 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139893834 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139893944 diff --git a/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.sha1 new file mode 100644 index 000000000..cd17e7f14 --- /dev/null +++ b/code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.sha1 @@ -0,0 +1 @@ +ae16bc1a45ae78c1883c7608cd7073bcbe03f8e0 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/_remote.repositories b/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/_remote.repositories new file mode 100644 index 000000000..0b03365da --- /dev/null +++ b/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +spring-data-build-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom b/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom new file mode 100644 index 000000000..cda59e85b --- /dev/null +++ b/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom @@ -0,0 +1,259 @@ + + + + 4.0.0 + org.springframework.data.build + spring-data-build + 3.2.5 + pom + + Spring Data Build + Modules to centralize common resources and configuration for Spring Data Maven builds. + https://github.com/spring-projects/spring-data-build + + + Pivotal Software, Inc. + https://www.spring.io + + + + resources + parent + + + + + odrotbohm + Oliver Drotbohm + odrotbohm at pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + Project lead + + +1 + + + mpaluch + Mark Paluch + mpaluch at pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + Project lead + + +1 + + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + Copyright 2010-2024 the original author or authors. + + 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 + + https://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. + + + + + + + + + + release + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.1.0 + + + sign-artifacts + verify + + sign + + + + --pinentry-mode + loopback + --no-tty + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.4.1 + + + enforce-release-rules + + enforce + + + + + [17,18) + + + + + + + + + + + + de.smartics.rules + smartics-enforcer-rules + 1.0.2 + + + + + + + + + + + + artifactory + + + + + + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + 3.6.2 + + + build-info + + publish + + + + false + + + {{artifactory.server}} + {{artifactory.username}} + {{artifactory.password}} + {{artifactory.staging-repository}} + {{artifactory.staging-repository}} + + + {{artifactory.build-name}} + {{artifactory.build-number}} + {{BUILD_URL}} + + + + + + + + + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + + + + + + + + + + + + central + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.13 + true + + sonatype + https://s01.oss.sonatype.org/ + false + true + + + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + + + + + + + + + sonatype + https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + + https://github.com/spring-projects/spring-data-build + scm:git:git://github.com/spring-projects/spring-data-build.git + scm:git:ssh://git@github.com:spring-projects/spring-data-build.git + + + + GitHub + https://github.com/spring-projects/spring-data-build/issues + + + diff --git a/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom.sha1 b/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom.sha1 new file mode 100644 index 000000000..0cd484830 --- /dev/null +++ b/code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom.sha1 @@ -0,0 +1 @@ +0c40e90f0d183e34f4665dd79b817d1c188af813 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/_remote.repositories b/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/_remote.repositories new file mode 100644 index 000000000..523589712 --- /dev/null +++ b/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +spring-data-parent-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom b/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom new file mode 100644 index 000000000..5043e51bf --- /dev/null +++ b/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom @@ -0,0 +1,1410 @@ + + + + + + 4.0.0 + + spring-data-parent + pom + + + org.springframework.data.build + spring-data-build + 3.2.5 + ../pom.xml + + + Spring Data Build - General parent module + Global parent pom.xml to be used by Spring Data modules + https://www.spring.io/spring-data + 2011 + + + Pivotal Software, Inc. + https://www.spring.io + + + + + odrotbohm + Oliver Drotbohm + odrotbohm at pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + Project lead + + +1 + + + mpaluch + Mark Paluch + mpaluch at pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + Project lead + + +1 + + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + Copyright 2008-2020 the original author or authors. + + 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 + + https://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. + + + + + + + UTF-8 + ${basedir} + 17 + ${project.artifactId} + ${project.build.directory}/jacoco.exec + 1.7 + + 1.1.3 + 1.0.0 + 1.9.21.1 + 3.24.2 + 4.0.1 + 2.5 + 11.0.0 + 31.1-jre + 1.3 + 2.15.4 + 2.0.0 + 3.0.1 + 0.8.11 + 1.9.0 + 0.17.0 + 2.6.0 + + 4.13.2 + 5.10.2 + 1.9.23 + 1.7.3 + 1.4.13 + 1.12.5 + 1.2.5 + 5.5.0 + 1.13.7 + 5.0.0 + 2023.0.5 + 2.2.21 + 3.1.8 + 1.10.0 + 2.0.2 + 6.1.6 + src/main/antora/antora-playbook.yml + 0.0.3 + 0.0.7 + 2.2.2 + 3.0.0 + 6.0.0 + 1.19.7 + 3.0.2 + 0.10.4 + 4.0.2 + + + 2023.1.5 + + + + + + + + + + + + + ci + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + package-javadoc + + jar + + package + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + + + + + + + + + + + + **/* + + **/.flattened-pom.xml,.git/**/*,target/**/*,**/target/**/*,.idea/**/*,**/spring.schemas,**/*.svg,mvnw,mvnw.cmd,**/*.graphml,work/**/* + + ./ + + + + + validate + + + check + + + + + + + + + + + + + + + pre-release + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-no-third-party-snapshots + + enforce + + + + + false + + org.springframework.data.build:* + org.springframework.data:* + + + + true + + + + + + + + de.smartics.rules + smartics-enforcer-rules + 1.0.2 + + + + + + + + + antora-process-resources + + + + io.spring.maven.antora + antora-component-version-maven-plugin + + + + antora-component-version + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + export-properties + generate-resources + + + + ${spring} + + + + + + ${springdata.commons} + + + + + + ${springdata.commons} + + + + + + + + + true + + + run + + + + + + + + + + + antora + + + true + true + true + true + true + + + + + + + org.jetbrains.kotlin + kotlin-maven-plugin + false + + true + + + + + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + + + + + io.spring.maven.antora + antora-maven-plugin + true + + ${antora.playbook} + + + + + antora + + compile + + + + + + + + + + + + + distribute + + + ${project.build.directory}/shared-resources + ${project.build.directory}/generated-docs + true + true + true + true + + + + + org.springframework.data.build + spring-data-build-resources + 3.2.5 + zip + true + + + + + + + + + + org.jetbrains.kotlin + kotlin-maven-plugin + false + + true + + + + + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + unpack-shared-resources + + unpack-dependencies + + generate-resources + + ${project.groupId} + spring-data-build-resources + zip + true + ${shared.resources} + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + ${shared.resources}/javadoc + ${shared.resources}/javadoc/overview.html + + + + aggregate-javadoc + + aggregate-no-fork + + prepare-package + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + + copy-documentation-resources + generate-resources + + + + + + + + + + + + + + run + + + + + rename-reference-docs + prepare-package + + + + + + + + + + + + + + + + + + + + + + + + run + + + + + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + + + + + + + + + + + org.asciidoctor + asciidoctor-maven-plugin + + + + html + compile + + process-asciidoc + + + ${project.root}/src/main/asciidoc + index.adoc + spring-html + ${generated-docs.directory} + + highlight.js + js/highlight + github + true + true + ./css + site.css + left + + + + + + + book + + book + shared + font + false + images + ${project.version} + ${project.name} + ${project.version} + ${aspectj} + ${querydsl} + https://docs.spring.io/spring-framework/docs/${spring}/reference/html/ + https://docs.spring.io/spring-framework/docs/${spring}/javadoc-api/ + ${spring} + ${spring-hateoas} + ${releasetrain} + true + 4 + true + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + docs + + single + + package + + + ${shared.resources}/assemblies/docs.xml + + true + + + + + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + + + deploy-docs + + publish + + deploy + + + false + + + ${dist.id} + ${dist.id} + false + docs + + + + ${dist.id}-docs-${project.version} + 1 + {{BUILD_URL}} + + + {{artifactory.server}} + {{artifactory.username}} + {{artifactory.password}} + {{artifactory.distribution-repository}} + {{artifactory.distribution-repository}} + *-docs.zip + + + + + + + + + + + + + + + + distribute-schema + + + ${project.build.directory}/shared-resources + true + true + true + true + true + + + + + org.springframework.data.build + spring-data-build-resources + 3.2.5 + zip + true + + + + + + + + + + org.jetbrains.kotlin + kotlin-maven-plugin + false + + true + + + + + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + unpack-shared-resources + + unpack-dependencies + + generate-resources + + ${project.groupId} + spring-data-build-resources + zip + true + ${shared.resources} + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + + collect-schema-files + prepare-package + + + + + + + + + + + + run + + + + + check-schema-files + prepare-package + + + + + + + + + true + + + run + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + docs + + single + + package + + + ${shared.resources}/assemblies/schema.xml + + ${dist.id} + true + + + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + + + + + + + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + + + deploy-schema + + publish + + deploy + + + false + + + ${dist.id} + ${dist.id} + false + schema + + + + ${dist.id}-schema-${project.version} + 1 + {{BUILD_URL}} + + + {{artifactory.server}} + {{artifactory.username}} + {{artifactory.password}} + {{artifactory.distribution-repository}} + {{artifactory.distribution-repository}} + *-schema.zip + + + + + + + + + + + + + spring6-next + + 6.1.6-SNAPSHOT + + + + spring-snapshot + https://repo.spring.io/snapshot + + true + + + + + + + jackson-next + + 2.15.2 + + + + spring-snapshot + https://repo.spring.io/snapshot + + true + + + + + + + + + + + io.projectreactor + reactor-bom + ${reactor} + pom + import + + + io.micrometer + micrometer-bom + ${micrometer} + pom + import + + + io.micrometer + micrometer-tracing-bom + ${micrometer-tracing} + pom + import + + + org.springframework + spring-framework-bom + ${spring} + pom + import + + + org.jetbrains.kotlin + kotlin-bom + ${kotlin} + pom + import + + + org.jetbrains.kotlinx + kotlinx-coroutines-bom + ${kotlin-coroutines} + pom + import + + + com.fasterxml.jackson + jackson-bom + ${jackson} + pom + import + + + org.junit + junit-bom + ${junit5} + pom + import + + + jakarta.enterprise + jakarta.enterprise.cdi-api + ${cdi} + true + + + jakarta.servlet + jakarta.servlet-api + ${servlet-api} + true + + + jakarta.validation + jakarta.validation-api + ${validation} + + + org.apache.openwebbeans + openwebbeans-se + ${webbeans} + test + + + org.apache.openwebbeans + openwebbeans-spi + ${webbeans} + test + + + + + + + + + org.junit.jupiter + junit-jupiter + test + + + + org.junit.vintage + junit-vintage-engine + test + + + + org.mockito + mockito-core + ${mockito} + test + + + + org.mockito + mockito-junit-jupiter + ${mockito} + test + + + + org.assertj + assertj-core + ${assertj} + test + + + + org.springframework + spring-test + test + + + + + org.slf4j + slf4j-api + ${slf4j} + + + + ch.qos.logback + logback-classic + ${logback} + test + + + + + + + + + + + + + + io.spring.maven.antora + antora-maven-plugin + ${spring-antora} + + + + io.spring.maven.antora + antora-component-version-maven-plugin + ${spring-antora} + + + + org.apache.maven.plugins + maven-antrun-plugin + 3.1.0 + + + + org.apache.maven.plugins + maven-assembly-plugin + 3.6.0 + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.12.1 + + true + true + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.3.1 + + + com.puppycrawl.tools + checkstyle + 10.9.3 + + + io.spring.nohttp + nohttp-checkstyle + 0.0.11 + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.6.1 + + + + org.apache.maven.plugins + maven-deploy-plugin + 3.1.1 + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.4.1 + + + + org.apache.maven.plugins + maven-failsafe-plugin + 3.2.5 + + false + + + + + org.apache.maven.plugins + maven-resources-plugin + 3.3.1 + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.5 + + false + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.5.0 + + + + org.codehaus.mojo + exec-maven-plugin + 3.1.1 + + + + org.jfrog.buildinfo + artifactory-maven-plugin + 3.6.2 + + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + org.jetbrains.kotlin + kotlin-maven-plugin + ${kotlin} + + ${kotlin.api.target} + ${kotlin.api.target} + + -Xjsr305=strict + -Xsuppress-version-warnings + -opt-in=kotlin.RequiresOptIn + + + + + compile + compile + + compile + + + + ${project.basedir}/src/main/kotlin + ${project.basedir}/src/main/java + + + + + test-compile + test-compile + + test-compile + + + + ${project.basedir}/src/test/kotlin + ${project.basedir}/src/test/java + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${source.level} + ${source.level} + + + + default-compile + none + + + default-testCompile + none + + + java-compile + compile + + compile + + + + java-test-compile + test-compile + + testCompile + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + false + -Xverify:all + + **/*Tests.java + + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + false + -Xverify:all + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${project.name} + ${project.version} + ${java-module-name} + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-kotlin-source + prepare-package + + add-source + + + + ${project.basedir}/src/main/kotlin + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + en_US + true +

    ${project.name}
    + ${source.level} + true + + true + html,reference + + https://docs.spring.io/spring/docs/${spring}/javadoc-api/ + https://docs.spring.io/spring-data/commons/docs/current/api/ + https://docs.spring.io/spring-data/keyvalue/docs/current/api/ + https://docs.spring.io/spring-hateoas/docs/current/api/ + https://docs.oracle.com/en/java/javase/17/docs/api/ + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + 3.9.0 + + + 17 + + + + + + + + + + + + + + + + diff --git a/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom.sha1 b/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom.sha1 new file mode 100644 index 000000000..ecaaad740 --- /dev/null +++ b/code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom.sha1 @@ -0,0 +1 @@ +75a999456a72ca1a73e395ebb78afca77c394a90 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/_remote.repositories b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/_remote.repositories new file mode 100644 index 000000000..49db6873e --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:41 EDT 2024 +spring-data-bom-2023.1.5.pom>ohdsi= diff --git a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom new file mode 100644 index 000000000..5f4b7114e --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom @@ -0,0 +1,148 @@ + + + 4.0.0 + org.springframework.data + spring-data-bom + 2023.1.5 + pom + Spring Data Release Train - BOM + Bill of materials to make sure a consistent set of versions is used for + Spring Data modules. + https://github.com/spring-projects/spring-data-bom + + Pivotal Software, Inc. + https://www.spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + Copyright 2010 the original author or authors. + + 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 + + https://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. + + + + + mpaluch + Mark Paluch + mpaluch at pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + Project lead + + +1 + + + + scm:git:git://github.com/spring-projects/spring-data-bom.git + scm:git:ssh://git@github.com:spring-projects/spring-data-bom.git + https://github.com/spring-projects/spring-data-bom + + + GitHub + https://github.com/spring-projects/spring-data-bom/issues + + + + + org.springframework.data + spring-data-cassandra + 4.2.5 + + + org.springframework.data + spring-data-commons + 3.2.5 + + + org.springframework.data + spring-data-couchbase + 5.2.5 + + + org.springframework.data + spring-data-elasticsearch + 5.2.5 + + + org.springframework.data + spring-data-jdbc + 3.2.5 + + + org.springframework.data + spring-data-r2dbc + 3.2.5 + + + org.springframework.data + spring-data-relational + 3.2.5 + + + org.springframework.data + spring-data-jpa + 3.2.5 + + + org.springframework.data + spring-data-envers + 3.2.5 + + + org.springframework.data + spring-data-mongodb + 4.2.5 + + + org.springframework.data + spring-data-neo4j + 7.2.5 + + + org.springframework.data + spring-data-redis + 3.2.5 + + + org.springframework.data + spring-data-rest-webmvc + 4.2.5 + + + org.springframework.data + spring-data-rest-core + 4.2.5 + + + org.springframework.data + spring-data-rest-hal-explorer + 4.2.5 + + + org.springframework.data + spring-data-keyvalue + 3.2.5 + + + org.springframework.data + spring-data-ldap + 3.2.5 + + + + diff --git a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.lastUpdated b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.lastUpdated new file mode 100644 index 000000000..fa58f6c42 --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:41 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.data\:spring-data-bom\:pom\:2023.1.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139820668 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139820788 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139820906 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139821041 diff --git a/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.sha1 b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.sha1 new file mode 100644 index 000000000..8f1a8c471 --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.sha1 @@ -0,0 +1 @@ +c9c3587784b4f849f39c9a40b384d7c4c3789f9d \ No newline at end of file diff --git a/code/arachne/org/springframework/data/spring-data-commons/3.2.5/_remote.repositories b/code/arachne/org/springframework/data/spring-data-commons/3.2.5/_remote.repositories new file mode 100644 index 000000000..86ea83fa3 --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-commons/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +spring-data-commons-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom b/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom new file mode 100644 index 000000000..45d37febd --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom @@ -0,0 +1,387 @@ + + + + 4.0.0 + + org.springframework.data + spring-data-commons + 3.2.5 + + Spring Data Core + Core Spring concepts underpinning every Spring Data module. + https://spring.io/projects/spring-data + + scm:git:https://github.com/spring-projects/spring-data-commons.git + + + scm:git:git@github.com:spring-projects/spring-data-commons.git + + https://github.com/spring-projects/spring-data-commons + + + https://github.com/spring-projects/spring-data-commons/issues + + + + org.springframework.data.build + spring-data-parent + 3.2.5 + + + + + 2.11.7 + 1.4.24 + spring.data.commons + 1.8 + + + + + org.springframework + spring-core + + + org.springframework + spring-beans + + + org.springframework + spring-context + true + + + org.springframework + spring-expression + true + + + org.springframework + spring-tx + true + + + org.springframework + spring-oxm + true + + + com.fasterxml.jackson.core + jackson-databind + true + + + org.springframework + spring-web + true + + + org.springframework + spring-webflux + true + + + + org.springframework + spring-core-test + test + + + + jakarta.servlet + jakarta.servlet-api + provided + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jaxb} + provided + + + jakarta.annotation + jakarta.annotation-api + ${jakarta-annotation-api} + true + + + + com.google.code.findbugs + jsr305 + 3.0.2 + true + + + + + + io.projectreactor + reactor-core + true + + + + io.projectreactor + reactor-test + test + + + + + + io.reactivex.rxjava3 + rxjava + ${rxjava3} + true + + + + io.smallrye.reactive + mutiny + ${smallrye-mutiny} + true + + + + + + com.querydsl + querydsl-core + ${querydsl} + true + + + + com.querydsl + querydsl-collections + ${querydsl} + true + + + + com.google.guava + guava + ${guava} + true + + + + io.vavr + vavr + ${vavr} + true + + + + + + org.eclipse.collections + eclipse-collections-api + ${eclipse-collections} + true + + + + org.eclipse.collections + eclipse-collections + ${eclipse-collections} + test + + + + + + jakarta.enterprise + jakarta.enterprise.cdi-api + provided + true + + + + org.apache.openwebbeans + openwebbeans-se + test + + + + org.springframework.hateoas + spring-hateoas + ${spring-hateoas} + true + + + + org.springframework + spring-webmvc + true + + + + com.sun.xml.bind + jaxb-impl + 3.0.2 + test + + + + xmlunit + xmlunit + 1.6 + test + + + + + org.codehaus.groovy + groovy-all + 2.4.4 + test + + + + + org.jetbrains.kotlin + kotlin-stdlib + true + + + + org.jetbrains.kotlin + kotlin-reflect + true + + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + true + + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + true + + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + true + + + + org.jetbrains.kotlin + kotlin-test-junit5 + ${kotlin} + test + + + + io.mockk + mockk-jvm + ${mockk} + test + + + + + org.scala-lang + scala-library + ${scala} + true + + + + jakarta.transaction + jakarta.transaction-api + 2.0.0 + test + + + + com.jayway.jsonpath + json-path + ${jsonpath} + true + + + + org.xmlbeam + xmlprojector + ${xmlbeam} + true + + + + com.tngtech.archunit + archunit + ${archunit} + test + + + + org.jmolecules.integrations + jmolecules-spring + ${jmolecules-integration} + true + + + org.junit.platform + junit-platform-launcher + test + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + io.spring.maven.antora + antora-maven-plugin + + + org.apache.maven.plugins + maven-compiler-plugin + + + java-test-compile + + + + com.querydsl + querydsl-apt + ${querydsl} + general + + + + + + + + + + + + antora-process-resources + + + + src/main/antora/resources/antora-resources + true + + + + + + + + + + + + diff --git a/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom.sha1 b/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom.sha1 new file mode 100644 index 000000000..e54cb6628 --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom.sha1 @@ -0,0 +1 @@ +4e874044d5c857eb647facebf906d07223deb128 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/_remote.repositories b/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/_remote.repositories new file mode 100644 index 000000000..ec7f4b805 --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +spring-data-jpa-parent-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom b/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom new file mode 100644 index 000000000..512e3fe8a --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom @@ -0,0 +1,297 @@ + + + + 4.0.0 + + org.springframework.data + spring-data-jpa-parent + 3.2.5 + pom + + Spring Data JPA Parent + Parent module for Spring Data JPA repositories. + https://spring.io/projects/spring-data-jpa + + scm:git:git://github.com:spring-projects/spring-data-jpa.git + scm:git:git@github.com:spring-projects/spring-data-jpa.git + https://github.com/spring-projects/spring-data-jpa + + + https://github.com/spring-projects/spring-data-jpa/issues + + + + org.springframework.data.build + spring-data-parent + 3.2.5 + + + + 4.13.0 + 3.0.4 + 4.0.2 + 6.4.4.Final + 6.2.24.Final + 6.4.5-SNAPSHOT + 6.5.0.CR1 + 6.5.0-SNAPSHOT + 6.6.0-SNAPSHOT + 2.7.1 +

    2.2.220

    + 3.1.0 + 4.5 + 8.0.33 + 42.6.0 + 3.2.5 + 0.10.3 + + org.hibernate + + reuseReports + +
    + + + spring-data-envers + spring-data-jpa + spring-data-jpa-distribution + + + + + hibernate-62 + + ${hibernate-62} + + + + hibernate-64-snapshots + + ${hibernate-64-snapshots} + + + + sonatype-oss + https://oss.sonatype.org/content/repositories/snapshots + + false + + + + + + hibernate-65 + + ${hibernate-65} + + + + hibernate-65-snapshots + + ${hibernate-65-snapshots} + + + + sonatype-oss + https://oss.sonatype.org/content/repositories/snapshots + + false + + + + + + hibernate-66-snapshots + + ${hibernate-66-snapshots} + + + + sonatype-oss + https://oss.sonatype.org/content/repositories/snapshots + + false + + + + + + all-dbs + + + + org.apache.maven.plugins + maven-surefire-plugin + + + mysql-test + test + + test + + + + **/MySql*IntegrationTests.java + + + + + postgres-test + test + + test + + + + **/Postgres*IntegrationTests.java + + + + + + + + + + eclipselink-next + + ${eclipselink-next} + + + + + + + + org.testcontainers + testcontainers-bom + ${testcontainers} + pom + import + + + + + + + org.springframework + spring-instrument + ${spring} + provided + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + org.springframework + spring-instrument + ${spring} + runtime + + + + + + default-test + + + **/* + + + + + unit-test + + test + + test + + + **/*UnitTests.java + + + + + integration-test + + test + + test + + + **/*IntegrationTests.java + **/*Tests.java + + + **/*UnitTests.java + **/OpenJpa* + **/EclipseLink* + **/MySql* + **/Postgres* + + + -javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar + + + + + eclipselink-test + + test + + test + + + **/EclipseLink*Tests.java + + + -javaagent:${settings.localRepository}/org/eclipse/persistence/org.eclipse.persistence.jpa/${eclipselink}/org.eclipse.persistence.jpa-${eclipselink}.jar + -javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar + + + + + + + + + + + + com.gradle + gradle-enterprise-maven-extension + + + + + + builddef.lst + + + + + + + + + + + + + + + + + + spring-milestone + https://repo.spring.io/milestone + + + +
    diff --git a/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom.sha1 b/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom.sha1 new file mode 100644 index 000000000..f6466100f --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom.sha1 @@ -0,0 +1 @@ +3f10a030eb79a8ea9ce24b4954d2b7ba1a2373a6 \ No newline at end of file diff --git a/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/_remote.repositories b/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/_remote.repositories new file mode 100644 index 000000000..e43d6e156 --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +spring-data-jpa-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom b/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom new file mode 100644 index 000000000..9e6110e44 --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom @@ -0,0 +1,407 @@ + + + + 4.0.0 + + org.springframework.data + spring-data-jpa + 3.2.5 + + Spring Data JPA + Spring Data module for JPA repositories. + https://projects.spring.io/spring-data-jpa + + + org.springframework.data + spring-data-jpa-parent + 3.2.5 + ../pom.xml + + + + spring.data.jpa + + + + + + ${project.groupId} + spring-data-commons + ${springdata.commons} + + + + org.springframework + spring-orm + + + + org.springframework + spring-context + + + + org.springframework + spring-aop + + + + org.springframework + spring-tx + + + + org.springframework + spring-beans + + + + org.springframework + spring-instrument + provided + + + + org.springframework + spring-core + + + commons-logging + commons-logging + + + + + + org.antlr + antlr4-runtime + ${antlr} + + + + org.springframework + spring-aspects + compile + true + + + + org.hsqldb + hsqldb + ${hsqldb} + test + + + + com.h2database + h2 + ${h2} + test + + + + + com.mysql + mysql-connector-j + ${mysql-connector-java} + test + + + + org.testcontainers + mysql + test + + + org.slf4j + jcl-over-slf4j + + + + + + + org.postgresql + postgresql + ${postgresql} + test + + + + org.testcontainers + postgresql + test + + + + io.vavr + vavr + ${vavr} + test + + + + + + ${hibernate.groupId}.orm + hibernate-core + ${hibernate} + true + + + net.bytebuddy + byte-buddy + + + + + + ${hibernate.groupId}.orm + hibernate-jpamodelgen + ${hibernate} + provided + + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jaxb} + provided + + + + jakarta.annotation + jakarta.annotation-api + ${jakarta-annotation-api} + + + + org.eclipse.persistence + org.eclipse.persistence.jpa + ${eclipselink} + true + + + + + com.querydsl + querydsl-apt + ${querydsl} + jakarta + provided + + + + com.querydsl + querydsl-jpa + jakarta + ${querydsl} + true + + + + + org.jmolecules.integrations + jmolecules-spring + ${jmolecules-integration} + test + + + + + jakarta.enterprise + jakarta.enterprise.cdi-api + ${cdi} + provided + true + + + + org.apache.openwebbeans + openwebbeans-se + test + + + + com.github.jsqlparser + jsqlparser + ${jsqlparser} + provided + true + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + org.springframework + spring-instrument + ${spring} + runtime + + + + + + default-test + + + **/* + + + + + unit-test + + test + + test + + + **/*UnitTests.java + + + + + integration-test + + test + + test + + + **/*IntegrationTests.java + **/*Tests.java + + + **/*UnitTests.java + **/OpenJpa* + **/EclipseLink* + **/MySql* + **/Postgres* + + + -javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar + + + + + eclipselink-test + + test + + test + + + **/EclipseLink*Tests.java + + + -javaagent:${settings.localRepository}/org/eclipse/persistence/org.eclipse.persistence.jpa/${eclipselink}/org.eclipse.persistence.jpa-${eclipselink}.jar + -javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar + + + + + + + + org.antlr + antlr4-maven-plugin + ${antlr} + + + + antlr4 + + generate-sources + + true + ${project.basedir}/src/main/antlr4 + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + com.querydsl + querydsl-apt + ${querydsl} + jakarta + + + org.hibernate.orm + hibernate-jpamodelgen + ${hibernate} + + + jakarta.persistence + jakarta.persistence-api + ${jakarta-persistence-api} + + + + + + + org.codehaus.mojo + aspectj-maven-plugin + 1.14.0 + + + org.aspectj + aspectjtools + ${aspectj} + + + + + aspectj-compile + + compile + + process-classes + + + aspectj-test-compile + + test-compile + + process-test-classes + + + + + none + + true + true + true + + + org.springframework + spring-aspects + + + ${source.level} + ${source.level} + ${source.level} + aop.xml + + + + + + + diff --git a/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom.sha1 b/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom.sha1 new file mode 100644 index 000000000..5c6b78cd4 --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom.sha1 @@ -0,0 +1 @@ +3d6adfbc123e15ed59fa3040c94483eadf86053c \ No newline at end of file diff --git a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/_remote.repositories b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/_remote.repositories new file mode 100644 index 000000000..d5b57eb38 --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:53 EDT 2024 +spring-data-releasetrain-Neumann-RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom new file mode 100644 index 000000000..fbf1e3500 --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom @@ -0,0 +1,166 @@ + + + + 4.0.0 + org.springframework.data + spring-data-releasetrain + Neumann-RELEASE + pom + + + org.springframework.data.build + spring-data-build + 2.3.0.RELEASE + + + Spring Data Release Train - BOM + Bill of materials to make sure a consistent set of versions is used for Spring Data modules. + https://github.com/spring-projects/spring-data-build + + + + + + + org.springframework.data + spring-data-cassandra + 3.0.0.RELEASE + + + + + org.springframework.data + spring-data-commons + 2.3.0.RELEASE + + + + + org.springframework.data + spring-data-couchbase + 4.0.0.RELEASE + + + + + org.springframework.data + spring-data-elasticsearch + 4.0.0.RELEASE + + + + + org.springframework.data + spring-data-gemfire + 2.3.0.RELEASE + + + + + org.springframework.data + spring-data-geode + 2.3.0.RELEASE + + + + + org.springframework.data + spring-data-jdbc + 2.0.0.RELEASE + + + + org.springframework.data + spring-data-relational + 2.0.0.RELEASE + + + + + org.springframework.data + spring-data-jpa + 2.3.0.RELEASE + + + + + org.springframework.data + spring-data-mongodb + 3.0.0.RELEASE + + + + + org.springframework.data + spring-data-neo4j + 5.3.0.RELEASE + + + + + org.springframework.data + spring-data-r2dbc + 1.1.0.RELEASE + + + + + org.springframework.data + spring-data-redis + 2.3.0.RELEASE + + + + + org.springframework.data + spring-data-rest-webmvc + 3.3.0.RELEASE + + + org.springframework.data + spring-data-rest-core + 3.3.0.RELEASE + + + org.springframework.data + spring-data-rest-hal-browser + 3.3.0.RELEASE + + + org.springframework.data + spring-data-rest-hal-explorer + 3.3.0.RELEASE + + + + + org.springframework.data + spring-data-solr + 4.2.0.RELEASE + + + + + org.springframework.data + spring-data-keyvalue + 2.3.0.RELEASE + + + + + org.springframework.data + spring-data-envers + 2.3.0.RELEASE + + + + + org.springframework.data + spring-data-ldap + 2.3.0.RELEASE + + + + + + diff --git a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.lastUpdated b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.lastUpdated new file mode 100644 index 000000000..cbb08cfef --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:53 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139893587 +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.data\:spring-data-releasetrain\:pom\:Neumann-RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139893328 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139893336 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139893452 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139893540 diff --git a/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.sha1 b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.sha1 new file mode 100644 index 000000000..83e87e4f7 --- /dev/null +++ b/code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.sha1 @@ -0,0 +1 @@ +855771b2955622ffec02ec4a0e098deb755206d2 \ No newline at end of file diff --git a/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/_remote.repositories b/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/_remote.repositories new file mode 100644 index 000000000..6bc3fd4aa --- /dev/null +++ b/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:16 EDT 2024 +spring-hateoas-2.2.2.pom>central= diff --git a/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom b/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom new file mode 100644 index 000000000..73df7c226 --- /dev/null +++ b/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom @@ -0,0 +1,876 @@ + + + 4.0.0 + + org.springframework.hateoas + spring-hateoas + 2.2.2 + + Spring HATEOAS + https://github.com/spring-projects/spring-hateoas + + Library to support implementing representations for + hyper-text driven REST web services. + + + 2011 + + + Pivotal, Inc. + https://www.spring.io + + + + + odrotbohm + Oliver Drotbohm + odrotbohm(at)vmware.com + VMware, Inc. + + Project lead + + +1 + + + gturnquist + Greg Turnquist + gturnquist(at)vmware.com + VMware, Inc. + + Contributor + + -6 + + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + Copyright 2011-2022 the original author or authors. + + 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 + + https://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. + + + + + + UTF-8 + 17 + 3.4.0 + 3.24.2 + 0.0.5 + 1.3 + 1.4.14 + 0.8.8 + ${project.build.directory}/jacoco.exec + 2.15.4 + spring.hateoas + 2.9.0 + 5.10.2 + 1.18.30 + 2023.0.5 + 2.0.12 + 6.1.6 + 3.0.0 + 1.9.23 + 1.7.3 + 1.13.10 + + + + + + spring-next + + 2023.0.6-SNAPSHOT + 6.1.7-SNAPSHOT + + + + spring-snapshot + https://repo.spring.io/snapshot + + + + + + kotlin-next + + 2.0.0-Beta4 + 1.8.0 + + + + + jackson-next + + 2.17.0 + + + + + + + + ci + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + create-javadoc-jar + + jar + + package + + + + + + + + + + + artifactory + + true + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + ${artifactory-maven-plugin.version} + false + + + deploy-to-artifactory + + publish + + + + https://repo.spring.io + ${env.ARTIFACTORY_USERNAME} + ${env.ARTIFACTORY_PASSWORD} + libs-milestone-local + libs-snapshot-local + + + CI build for Spring Modulith ${project.version} + + + + + + + + + + + sonatype + + true + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + + ${env.GPG_PASSPHRASE} + + + + + + + sonatype-new + https://s01.oss.sonatype.org/service/local/staging/deploy/maven2 + + + + + + + + + documentation + + + ${project.build.directory}/generated-docs + true + true + true + true + + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + aggregate-javadoc + + aggregate-no-fork + + package + + ${project.root}/target/site/apidocs + + + + + + + + + org.asciidoctor + asciidoctor-maven-plugin + 2.2.2 + + + org.jruby + jruby + 9.3.7.0 + + + org.asciidoctor + asciidoctorj + 2.5.7 + + + org.asciidoctor + asciidoctorj-diagram + 2.2.4 + + + io.spring.asciidoctor.backends + spring-asciidoctor-backends + ${spring-asciidoctor-backends.version} + + + + + + + html + compile + + process-asciidoc + + + spring-html + src/main/asciidoc + index.adoc + ${generated-docs.directory}/html + + highlight.js + js/highlight + github + + + + + + + + book + + book + shared + font + false + images + ${project.version} + ${project.name} + ${project.version} + ${spring.version} + true + 4 + true + + + asciidoctor-diagram + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 3.4.2 + + + docs + + single + + package + + + src/docs/resources/assemblies/docs.xml + + spring-hateoas-${project.version} + true + + + + + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + ${artifactory-maven-plugin.version} + + + deploy-docs + + publish + + deploy + + + spring-hateoas-docs + spring-hateoas-docs + false + docs + + + + Spring Data Docs spring-hateoas ${project.version} + 1 + + + https://repo.spring.io + *-docs.zip + ${env.ARTIFACTORY_USERNAME} + ${env.ARTIFACTORY_PASSWORD} + temp-private-local + temp-private-local + + + + + + + + + + + + + + + io.projectreactor + reactor-bom + ${reactor-bom.version} + import + pom + + + org.junit + junit-bom + ${junit.version} + pom + import + + + com.fasterxml.jackson + jackson-bom + ${jackson-bom.version} + pom + import + + + org.jetbrains.kotlin + kotlin-bom + ${kotlin.version} + pom + import + + + org.jetbrains.kotlinx + kotlinx-coroutines-bom + ${kotlinx-coroutines.version} + pom + import + + + + + + + + + org.jetbrains.kotlin + kotlin-stdlib + true + + + org.jetbrains.kotlin + kotlin-reflect + true + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + true + + + org.jetbrains.kotlin + kotlin-test + ${kotlin.version} + test + + + io.mockk + mockk-jvm + ${mockk.version} + test + + + + org.springframework + spring-aop + ${spring.version} + + + + org.springframework + spring-beans + ${spring.version} + + + + org.springframework + spring-context + ${spring.version} + + + + org.springframework + spring-core + ${spring.version} + + + + org.springframework + spring-web + ${spring.version} + + + + org.springframework + spring-webmvc + ${spring.version} + true + + + + org.springframework + spring-webflux + ${spring.version} + true + + + + org.springframework.plugin + spring-plugin-core + ${spring-plugin.version} + + + + com.fasterxml.jackson.core + jackson-annotations + true + + + + com.fasterxml.jackson.core + jackson-databind + true + + + + com.jayway.jsonpath + json-path + ${jsonpath.version} + + + + org.atteo + evo-inflector + ${evo.version} + true + + + + + + jakarta.validation + jakarta.validation-api + 3.0.2 + true + + + + org.hibernate.validator + hibernate-validator + 8.0.0.Final + test + + + + org.projectlombok + lombok + ${lombok.version} + test + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + test + + + + ch.qos.logback + logback-classic + ${logback.version} + test + + + + org.junit.jupiter + junit-jupiter-api + test + + + + org.junit.jupiter + junit-jupiter-engine + test + + + + org.junit.jupiter + junit-jupiter-params + test + + + + org.springframework + spring-test + ${spring.version} + true + + + + org.mockito + mockito-junit-jupiter + 2.23.4 + test + + + + org.assertj + assertj-core + ${assertj.version} + test + + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + provided + + + + net.jadler + jadler-all + 1.3.0 + test + + + junit + junit + + + + + + io.projectreactor.netty + reactor-netty + test + + + + io.projectreactor + reactor-test + test + + + + io.projectreactor.addons + reactor-extra + test + + + + com.tngtech.archunit + archunit + 1.0.1 + test + + + + + + + verify + + + + org.apache.maven.wagon + wagon-ssh + 3.0.0 + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.5.0 + + true +
    ${project.name}
    + 1.8 + ${source.level} + true + none + + https://docs.spring.io/spring/docs/${spring.version}/javadoc-api/ + https://docs.oracle.com/en/java/javase/17/docs/api/ + +
    +
    +
    +
    + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.3.0 + + + add-docs-source + generate-test-sources + + add-test-source + + + + src/docs/java + + + + + add-docs-resources + generate-test-resources + + add-test-resource + + + + + src/docs/resources + + + + + + add-kotlin-sources + generate-sources + + add-source + + + + ${project.basedir}/src/main/kotlin + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + ${source.level} + ${source.level} + true + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + ${project.name} + ${project.version} + ${java-module-name} + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + + jar + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0 + + false + + + + + org.jetbrains.kotlin + kotlin-maven-plugin + ${kotlin.version} + + 1.8 + + + + compile + + compile + + + + ${project.basedir}/src/main/kotlin + ${project.basedir}/src/main/java + + + + + test-compile + + test-compile + + + + ${project.basedir}/src/test/kotlin + ${project.basedir}/src/test/java + + + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 3.1.1 + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0 + + sonatype + false + true + + + + +
    + + + https://github.com/spring-projects/spring-hateoas + scm:git:git://github.com/spring-projects/spring-hateoas.git + scm:git:ssh://git@github.com:spring-projects/spring-hateoas.git + 2.2.2 + + +
    diff --git a/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom.sha1 b/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom.sha1 new file mode 100644 index 000000000..138e2d522 --- /dev/null +++ b/code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom.sha1 @@ -0,0 +1 @@ +330672cbcff35d2347a698a94c7b895d3fe5b81e \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/_remote.repositories new file mode 100644 index 000000000..d4849a5b5 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:54 EDT 2024 +spring-integration-bom-5.3.0.RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom new file mode 100644 index 000000000..56ca75499 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom @@ -0,0 +1,236 @@ + + + + + + + + 4.0.0 + org.springframework.integration + spring-integration-bom + 5.3.0.RELEASE + pom + Spring Integration (Bill of Materials) + Spring Integration (Bill of Materials) + https://github.com/spring-projects/spring-integration + + Spring IO + https://spring.io/projects/spring-integration + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + abilan + Artem Bilan + abilan@pivotal.io + + project lead + + + + garyrussell + Gary Russell + grussell@pivotal.io + + project lead emeritus + + + + markfisher + Mark Fisher + mfisher@pivotal.io + + project founder and lead emeritus + + + + + scm:git:git://github.com/spring-projects/spring-integration.git + scm:git:ssh://git@github.com:spring-projects/spring-integration.git + https://github.com/spring-projects/spring-integration + + + GitHub + https://github.com/spring-projects/spring-integration/issues + + + + + org.springframework.integration + spring-integration-amqp + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-core + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-event + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-feed + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-file + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-ftp + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-gemfire + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-groovy + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-http + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-ip + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-jdbc + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-jms + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-jmx + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-jpa + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-mail + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-mongodb + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-mqtt + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-redis + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-rmi + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-rsocket + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-scripting + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-security + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-sftp + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-stomp + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-stream + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-syslog + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-test + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-test-support + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-webflux + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-websocket + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-ws + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-xml + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-xmpp + 5.3.0.RELEASE + + + org.springframework.integration + spring-integration-zookeeper + 5.3.0.RELEASE + + + + diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.lastUpdated b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.lastUpdated new file mode 100644 index 000000000..5910726a8 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:54 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139894737 +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.integration\:spring-integration-bom\:pom\:5.3.0.RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139894454 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139894463 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139894581 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139894689 diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.sha1 new file mode 100644 index 000000000..b8002fb91 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.sha1 @@ -0,0 +1 @@ +a483563fd63ac49b1bd521e79f5c51947a87e6cc \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/_remote.repositories new file mode 100644 index 000000000..8e91e587c --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:41 EDT 2024 +spring-integration-bom-6.2.4.pom>ohdsi= diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom new file mode 100644 index 000000000..1e3701811 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom @@ -0,0 +1,276 @@ + + + + + + + + 4.0.0 + org.springframework.integration + spring-integration-bom + 6.2.4 + pom + Spring Integration (Bill of Materials) + Spring Integration (Bill of Materials) + https://github.com/spring-projects/spring-integration + + Spring IO + https://spring.io/projects/spring-integration + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + artembilan + Artem Bilan + artem.bilan@broadcom.com + + project lead + + + + garyrussell + Gary Russell + github@gprussell.net + + project lead emeritus + + + + markfisher + Mark Fisher + mark.fisher@broadcom.com + + project founder and lead emeritus + + + + + scm:git:git://github.com/spring-projects/spring-integration.git + scm:git:ssh://git@github.com:spring-projects/spring-integration.git + https://github.com/spring-projects/spring-integration + + + GitHub + https://github.com/spring-projects/spring-integration/issues + + + + + org.springframework.integration + spring-integration-amqp + 6.2.4 + + + org.springframework.integration + spring-integration-camel + 6.2.4 + + + org.springframework.integration + spring-integration-cassandra + 6.2.4 + + + org.springframework.integration + spring-integration-core + 6.2.4 + + + org.springframework.integration + spring-integration-debezium + 6.2.4 + + + org.springframework.integration + spring-integration-event + 6.2.4 + + + org.springframework.integration + spring-integration-feed + 6.2.4 + + + org.springframework.integration + spring-integration-file + 6.2.4 + + + org.springframework.integration + spring-integration-ftp + 6.2.4 + + + org.springframework.integration + spring-integration-graphql + 6.2.4 + + + org.springframework.integration + spring-integration-groovy + 6.2.4 + + + org.springframework.integration + spring-integration-hazelcast + 6.2.4 + + + org.springframework.integration + spring-integration-http + 6.2.4 + + + org.springframework.integration + spring-integration-ip + 6.2.4 + + + org.springframework.integration + spring-integration-jdbc + 6.2.4 + + + org.springframework.integration + spring-integration-jms + 6.2.4 + + + org.springframework.integration + spring-integration-jmx + 6.2.4 + + + org.springframework.integration + spring-integration-jpa + 6.2.4 + + + org.springframework.integration + spring-integration-kafka + 6.2.4 + + + org.springframework.integration + spring-integration-mail + 6.2.4 + + + org.springframework.integration + spring-integration-mongodb + 6.2.4 + + + org.springframework.integration + spring-integration-mqtt + 6.2.4 + + + org.springframework.integration + spring-integration-r2dbc + 6.2.4 + + + org.springframework.integration + spring-integration-redis + 6.2.4 + + + org.springframework.integration + spring-integration-rsocket + 6.2.4 + + + org.springframework.integration + spring-integration-scripting + 6.2.4 + + + org.springframework.integration + spring-integration-security + 6.2.4 + + + org.springframework.integration + spring-integration-sftp + 6.2.4 + + + org.springframework.integration + spring-integration-smb + 6.2.4 + + + org.springframework.integration + spring-integration-stomp + 6.2.4 + + + org.springframework.integration + spring-integration-stream + 6.2.4 + + + org.springframework.integration + spring-integration-syslog + 6.2.4 + + + org.springframework.integration + spring-integration-test + 6.2.4 + + + org.springframework.integration + spring-integration-test-support + 6.2.4 + + + org.springframework.integration + spring-integration-webflux + 6.2.4 + + + org.springframework.integration + spring-integration-websocket + 6.2.4 + + + org.springframework.integration + spring-integration-ws + 6.2.4 + + + org.springframework.integration + spring-integration-xml + 6.2.4 + + + org.springframework.integration + spring-integration-xmpp + 6.2.4 + + + org.springframework.integration + spring-integration-zeromq + 6.2.4 + + + org.springframework.integration + spring-integration-zip + 6.2.4 + + + org.springframework.integration + spring-integration-zookeeper + 6.2.4 + + + + diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.lastUpdated b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.lastUpdated new file mode 100644 index 000000000..9b591c352 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:41 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.integration\:spring-integration-bom\:pom\:6.2.4 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139821377 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139821469 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139821584 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139821715 diff --git a/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.sha1 new file mode 100644 index 000000000..146dfda04 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.sha1 @@ -0,0 +1 @@ +8444c4c8b854753cb5e2b9571d8960cbcdbf6def \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/_remote.repositories new file mode 100644 index 000000000..5a8c0c299 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:13 EDT 2024 +spring-integration-core-6.2.4.pom>central= diff --git a/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom b/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom new file mode 100644 index 000000000..69cb5da20 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom @@ -0,0 +1,214 @@ + + + + + + + + 4.0.0 + org.springframework.integration + spring-integration-core + 6.2.4 + Spring Integration Core + Spring Integration Core + https://github.com/spring-projects/spring-integration + + Spring IO + https://spring.io/projects/spring-integration + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + artembilan + Artem Bilan + artem.bilan@broadcom.com + + project lead + + + + garyrussell + Gary Russell + github@gprussell.net + + project lead emeritus + + + + markfisher + Mark Fisher + mark.fisher@broadcom.com + + project founder and lead emeritus + + + + + scm:git:git://github.com/spring-projects/spring-integration.git + scm:git:ssh://git@github.com:spring-projects/spring-integration.git + https://github.com/spring-projects/spring-integration + + + GitHub + https://github.com/spring-projects/spring-integration/issues + + + + org.springframework + spring-aop + 6.1.6 + compile + + + org.springframework + spring-context + 6.1.6 + compile + + + org.springframework + spring-messaging + 6.1.6 + compile + + + org.springframework + spring-tx + 6.1.6 + compile + + + org.springframework.retry + spring-retry + 2.0.5 + compile + + + org.springframework + * + + + + + io.projectreactor + reactor-core + 3.6.5 + compile + + + io.micrometer + micrometer-observation + 1.12.5 + compile + + + com.fasterxml.jackson.core + jackson-databind + 2.15.4 + compile + true + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.15.4 + compile + true + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.15.4 + compile + true + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.15.4 + compile + true + + + com.fasterxml.jackson.module + jackson-module-kotlin + 2.15.4 + compile + + + org.jetbrains.kotlin + * + + + true + + + com.google.protobuf + protobuf-java + 3.25.3 + compile + true + + + com.jayway.jsonpath + json-path + 2.8.0 + compile + true + + + com.esotericsoftware + kryo + 5.5.0 + compile + true + + + io.micrometer + micrometer-core + 1.12.5 + compile + true + + + io.micrometer + micrometer-tracing + 1.2.5 + compile + + + aopalliance + * + + + true + + + io.github.resilience4j + resilience4j-ratelimiter + 2.1.0 + compile + true + + + org.apache.avro + avro + 1.11.3 + compile + true + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.7.3 + compile + true + + + diff --git a/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom.sha1 new file mode 100644 index 000000000..ff4c0ebd3 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom.sha1 @@ -0,0 +1 @@ +e1b3f8b2a3ef6716a8dd9e2e978eacbcb2924bb7 \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/_remote.repositories new file mode 100644 index 000000000..7c6222b23 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:14 EDT 2024 +spring-integration-file-6.2.4.pom>central= diff --git a/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom b/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom new file mode 100644 index 000000000..4edffda26 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom @@ -0,0 +1,75 @@ + + + + + + + + 4.0.0 + org.springframework.integration + spring-integration-file + 6.2.4 + Spring Integration File Support + Spring Integration File Support + https://github.com/spring-projects/spring-integration + + Spring IO + https://spring.io/projects/spring-integration + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + artembilan + Artem Bilan + artem.bilan@broadcom.com + + project lead + + + + garyrussell + Gary Russell + github@gprussell.net + + project lead emeritus + + + + markfisher + Mark Fisher + mark.fisher@broadcom.com + + project founder and lead emeritus + + + + + scm:git:git://github.com/spring-projects/spring-integration.git + scm:git:ssh://git@github.com:spring-projects/spring-integration.git + https://github.com/spring-projects/spring-integration + + + GitHub + https://github.com/spring-projects/spring-integration/issues + + + + org.springframework.integration + spring-integration-core + 6.2.4 + compile + + + commons-io + commons-io + 2.15.1 + compile + + + diff --git a/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom.sha1 new file mode 100644 index 000000000..433fe37cf --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom.sha1 @@ -0,0 +1 @@ +fd0c0bcc36910b2a59ca7409225beeb6a4184dda \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/_remote.repositories new file mode 100644 index 000000000..b806eefc9 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:14 EDT 2024 +spring-integration-http-6.2.4.pom>central= diff --git a/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom b/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom new file mode 100644 index 000000000..28b32be73 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom @@ -0,0 +1,95 @@ + + + + + + + + 4.0.0 + org.springframework.integration + spring-integration-http + 6.2.4 + Spring Integration HTTP Support + Spring Integration HTTP Support + https://github.com/spring-projects/spring-integration + + Spring IO + https://spring.io/projects/spring-integration + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + artembilan + Artem Bilan + artem.bilan@broadcom.com + + project lead + + + + garyrussell + Gary Russell + github@gprussell.net + + project lead emeritus + + + + markfisher + Mark Fisher + mark.fisher@broadcom.com + + project founder and lead emeritus + + + + + scm:git:git://github.com/spring-projects/spring-integration.git + scm:git:ssh://git@github.com:spring-projects/spring-integration.git + https://github.com/spring-projects/spring-integration + + + GitHub + https://github.com/spring-projects/spring-integration/issues + + + + org.springframework.integration + spring-integration-core + 6.2.4 + compile + + + org.springframework + spring-webmvc + 6.1.6 + compile + + + com.rometools + rome + 2.1.0 + compile + true + + + org.springframework + spring-webflux + 6.1.6 + compile + true + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + provided + + + diff --git a/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom.sha1 new file mode 100644 index 000000000..bd0b431db --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom.sha1 @@ -0,0 +1 @@ +22fd17abe30bf768e430458ea965383048247ce4 \ No newline at end of file diff --git a/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/_remote.repositories b/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/_remote.repositories new file mode 100644 index 000000000..83eefc46a --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:14 EDT 2024 +spring-integration-jmx-6.2.4.pom>central= diff --git a/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom b/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom new file mode 100644 index 000000000..67f98b3c6 --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom @@ -0,0 +1,69 @@ + + + + + + + + 4.0.0 + org.springframework.integration + spring-integration-jmx + 6.2.4 + Spring Integration JMX Support + Spring Integration JMX Support + https://github.com/spring-projects/spring-integration + + Spring IO + https://spring.io/projects/spring-integration + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + artembilan + Artem Bilan + artem.bilan@broadcom.com + + project lead + + + + garyrussell + Gary Russell + github@gprussell.net + + project lead emeritus + + + + markfisher + Mark Fisher + mark.fisher@broadcom.com + + project founder and lead emeritus + + + + + scm:git:git://github.com/spring-projects/spring-integration.git + scm:git:ssh://git@github.com:spring-projects/spring-integration.git + https://github.com/spring-projects/spring-integration + + + GitHub + https://github.com/spring-projects/spring-integration/issues + + + + org.springframework.integration + spring-integration-core + 6.2.4 + compile + + + diff --git a/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom.sha1 b/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom.sha1 new file mode 100644 index 000000000..842eb61fa --- /dev/null +++ b/code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom.sha1 @@ -0,0 +1 @@ +fafd2ab9a3ae5b609ae70ccd3fcfd1dc964bbdd6 \ No newline at end of file diff --git a/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/_remote.repositories b/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/_remote.repositories new file mode 100644 index 000000000..720046b56 --- /dev/null +++ b/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:02 EDT 2024 +spring-ldap-core-3.2.3.pom>central= diff --git a/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom b/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom new file mode 100644 index 000000000..4ed029577 --- /dev/null +++ b/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom @@ -0,0 +1,69 @@ + + + + + + + + 4.0.0 + org.springframework.ldap + spring-ldap-core + 3.2.3 + spring-ldap-core + Spring LDAP + https://spring.io/projects/spring-ldap + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-ldap.git + scm:git:ssh://git@github.com/spring-projects/spring-ldap.git + https://github.com/spring-projects/spring-ldap + + + GitHub + https://github.com/spring-projects/spring-ldap/issues + + + + org.springframework + spring-core + 6.1.3 + compile + + + org.springframework + spring-beans + 6.1.3 + compile + + + org.springframework + spring-tx + 6.1.3 + compile + + + org.slf4j + slf4j-api + 1.7.36 + runtime + + + diff --git a/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom.sha1 b/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom.sha1 new file mode 100644 index 000000000..7423d6ecc --- /dev/null +++ b/code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom.sha1 @@ -0,0 +1 @@ +bf03071648f2a17b19e9a26aeb189af496681240 \ No newline at end of file diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/_remote.repositories new file mode 100644 index 000000000..1539151ef --- /dev/null +++ b/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +spring-plugin-core-1.1.0.RELEASE.pom>central= diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom b/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom new file mode 100644 index 000000000..2ae616701 --- /dev/null +++ b/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom @@ -0,0 +1,50 @@ + + + 4.0.0 + + spring-plugin-core + + Spring Plugin - Core + Core plugin infrastructure + + + org.springframework.plugin + spring-plugin + 1.1.0.RELEASE + + + + + + org.springframework + spring-beans + ${spring.version} + + + commons-logging + commons-logging + + + + + + org.springframework + spring-context + ${spring.version} + + + org.springframework + spring-aop + ${spring.version} + + + + org.springframework + spring-test + ${spring.version} + test + + + + + diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom.sha1 new file mode 100644 index 000000000..39cf32b3a --- /dev/null +++ b/code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom.sha1 @@ -0,0 +1 @@ +c6b64c253270276d8fcd9f22f1df70918df6b49b \ No newline at end of file diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/_remote.repositories b/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/_remote.repositories new file mode 100644 index 000000000..d46a98659 --- /dev/null +++ b/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:47 EDT 2024 +spring-plugin-core-3.0.0.pom>central= diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom b/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom new file mode 100644 index 000000000..434642903 --- /dev/null +++ b/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom @@ -0,0 +1,89 @@ + + + 4.0.0 + org.springframework.plugin + spring-plugin-core + 3.0.0 + Spring Plugin - Core + Core plugin infrastructure + https://github.com/spring-projects/spring-plugin/spring-plugin-core + 2008 + + VMware, Inc. + https://www.vmware.com + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + Copyright 2010-2022 the original author or authors. + + 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 + + https://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. + + + + + drotbohm + Oliver Drotbohm + odrotbohm@vmware.com + VMware + https://www.spring.io + + Project lead + + +1 + + + + scm:git:git://github.com/spring-projects/spring-plugin.git/spring-plugin-core + scm:git:ssh://git@github.com:spring-projects/spring-plugin.git/spring-plugin-core + 3.0.0 + https://github.com/spring-projects/spring-plugin/spring-plugin-core + + + Github + https://github.com/spring-projects/spring-plugin/issues + + + Bamboo + https://build.springsource.org/browse/PLUGIN-MASTER + + + + org.springframework + spring-beans + 6.0.0 + compile + + + org.springframework + spring-context + 6.0.0 + compile + + + org.springframework + spring-aop + 6.0.0 + compile + + + org.slf4j + slf4j-api + 2.0.3 + compile + + + diff --git a/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom.sha1 b/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom.sha1 new file mode 100644 index 000000000..bb0cb5977 --- /dev/null +++ b/code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom.sha1 @@ -0,0 +1 @@ +cc33d12ac99e12f559bcbe8acb4268821f67566a \ No newline at end of file diff --git a/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/_remote.repositories new file mode 100644 index 000000000..5349d64ae --- /dev/null +++ b/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:17 EDT 2024 +spring-plugin-1.1.0.RELEASE.pom>central= diff --git a/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom b/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom new file mode 100644 index 000000000..a09e4fbf8 --- /dev/null +++ b/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom @@ -0,0 +1,216 @@ + + + 4.0.0 + org.springframework.plugin + spring-plugin + pom + Spring Plugin + 1.1.0.RELEASE + Simple plugin infrastructure + + + Pivotal, Inc. + http://www.springsource.org + + 2008-2014 + https://github.com/SpringSource/spring-plugin + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + Copyright 2010 the original author or authors. + + 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. + + + + + + core + metadata + + + + 3.2.8.RELEASE + 1.7.6 + + + + + gierke + Oliver Gierke + ogierke@gopivotal.com + http://www.olivergierke.de + Pivtoal + http://www.gopivotal.com + + Project lead + + +1 + + + + + + + + org.hamcrest + hamcrest-library + 1.3 + test + + + junit + junit + 4.11 + test + + + + org.mockito + mockito-all + 1.9.5 + test + + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + test + + + ch.qos.logback + logback-classic + 1.1.0 + test + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + 1.6 + 1.6 + + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar + + + + + + + com.springsource.bundlor + com.springsource.bundlor.maven + 1.0.0.RELEASE + + + bundlor + + bundlor + + process-classes + + + + true + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + true + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + attach-javadocs + + jar + + + + + + + + + + https://github.com/spring-projects/spring-plugin + scm:git:git://github.com/spring-projects/spring-plugin.git + scm:git:ssh://git@github.com:spring-projects/spring-plugin.git + + + + Bamboo + https://build.springsource.org/browse/PLUGIN-MASTER + + + + Github + https://github.com/spring-projects/spring-plugin/issues + + + + + spring-libs-release + http://repo.spring.io/libs-release + + false + + + + + + + spring-plugins-release + http://repo.spring.io/plugins-release + + false + + + + + diff --git a/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom.sha1 new file mode 100644 index 000000000..ab64a3f55 --- /dev/null +++ b/code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom.sha1 @@ -0,0 +1 @@ +5971b2fcf923b826504b26f90fea377d72e3e7c4 \ No newline at end of file diff --git a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/_remote.repositories b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/_remote.repositories new file mode 100644 index 000000000..0e02a02a5 --- /dev/null +++ b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:42 EDT 2024 +spring-pulsar-bom-1.0.5.pom>ohdsi= diff --git a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom new file mode 100644 index 000000000..c5a2521e8 --- /dev/null +++ b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom @@ -0,0 +1,72 @@ + + + + + + + + 4.0.0 + org.springframework.pulsar + spring-pulsar-bom + 1.0.5 + pom + spring-pulsar-bom + Spring Pulsar (Bill of Materials) + https://github.com/spring-projects/spring-pulsar + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + schacko + Soby Chacko + chackos@vmware.com + + + onobc + Chris Bono + cbono@vmware.com + + + + https://github.com/spring-projects/spring-pulsar.git + git@github.com:spring-projects/spring-pulsar.git + https://github.com/spring-projects/spring-pulsar + + + GitHub + https://github.com/spring-projects/spring-pulsar/issues + + + + + org.springframework.pulsar + spring-pulsar + 1.0.5 + + + org.springframework.pulsar + spring-pulsar-cache-provider + 1.0.5 + + + org.springframework.pulsar + spring-pulsar-cache-provider-caffeine + 1.0.5 + + + org.springframework.pulsar + spring-pulsar-reactive + 1.0.5 + + + + diff --git a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.lastUpdated b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.lastUpdated new file mode 100644 index 000000000..f167831a7 --- /dev/null +++ b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:42 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.pulsar\:spring-pulsar-bom\:pom\:1.0.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139821727 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139821839 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139821956 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139822079 diff --git a/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.sha1 b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.sha1 new file mode 100644 index 000000000..bb8a8429d --- /dev/null +++ b/code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.sha1 @@ -0,0 +1 @@ +24395c435f5c4ea9aec75f9a59415f914bfbbffa \ No newline at end of file diff --git a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/_remote.repositories b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/_remote.repositories new file mode 100644 index 000000000..a23d5e5a0 --- /dev/null +++ b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:42 EDT 2024 +spring-restdocs-bom-3.0.1.pom>ohdsi= diff --git a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom new file mode 100644 index 000000000..a606d42a4 --- /dev/null +++ b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom @@ -0,0 +1,68 @@ + + + 4.0.0 + org.springframework.restdocs + spring-restdocs-bom + 3.0.1 + pom + Spring REST Docs Bill of Materials + Spring REST Docs Bill of Materials + https://github.com/spring-projects/spring-restdocs + + Spring IO + https://projects.spring.io/spring-restdocs + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + awilkinson + Andy Wilkinson + awilkinson@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-restdocs + scm:git:git://github.com/spring-projects/spring-restdocs + https://github.com/spring-projects/spring-restdocs + + + GitHub + https://github.com/spring-projects/spring-restdocs/issues + + + + + org.springframework.restdocs + spring-restdocs-asciidoctor + 3.0.1 + + + org.springframework.restdocs + spring-restdocs-core + 3.0.1 + + + org.springframework.restdocs + spring-restdocs-mockmvc + 3.0.1 + + + org.springframework.restdocs + spring-restdocs-restassured + 3.0.1 + + + org.springframework.restdocs + spring-restdocs-webtestclient + 3.0.1 + + + + diff --git a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.lastUpdated b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.lastUpdated new file mode 100644 index 000000000..49a7eb7c3 --- /dev/null +++ b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:42 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.restdocs\:spring-restdocs-bom\:pom\:3.0.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139822090 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139822190 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139822315 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139822452 diff --git a/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 new file mode 100644 index 000000000..088d9177e --- /dev/null +++ b/code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 @@ -0,0 +1 @@ +a2dde6e0ff712732da1dcace896abe7781735a87 \ No newline at end of file diff --git a/code/arachne/org/springframework/retry/spring-retry/2.0.5/_remote.repositories b/code/arachne/org/springframework/retry/spring-retry/2.0.5/_remote.repositories new file mode 100644 index 000000000..73f8062c1 --- /dev/null +++ b/code/arachne/org/springframework/retry/spring-retry/2.0.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:53 EDT 2024 +spring-retry-2.0.5.pom>central= diff --git a/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom b/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom new file mode 100644 index 000000000..f90c6fbc3 --- /dev/null +++ b/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom @@ -0,0 +1,315 @@ + + + 4.0.0 + org.springframework.retry + spring-retry + ${revision} + Spring Retry + + + https://www.springsource.org + + SpringSource + https://www.springsource.com + + + + Apache 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + + + + 2.0.5 + false + 17 + UTF-8 + UTF-8 + + 1.9.20.1 + 3.24.2 + 5.10.1 + 2.21.1 + 5.7.0 + 6.0.15 + + + + https://github.com/spring-projects/spring-retry + scm:git:git://github.com/spring-projects/spring-retry.git + scm:git:ssh://git@github.com/spring-projects/spring-retry.git + HEAD + + + + + dsyer + Dave Syer + dsyer@vmware.com + + + + + + org.springframework + spring-context + true + + + org.springframework + spring-core + true + + + + org.springframework + spring-test + test + + + org.springframework + spring-tx + test + + + org.junit.jupiter + junit-jupiter-api + test + + + org.junit.jupiter + junit-jupiter-engine + test + + + org.junit.jupiter + junit-jupiter-params + test + + + org.junit.platform + junit-platform-launcher + test + + + org.apache.logging.log4j + log4j-core + test + + + org.apache.logging.log4j + log4j-jcl + test + + + org.aspectj + aspectjweaver + ${aspectj.version} + test + + + org.assertj + assertj-core + ${assertj.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + + + + + org.springframework + spring-framework-bom + ${spring.framework.version} + pom + import + + + org.apache.logging.log4j + log4j-bom + ${log4j.version} + pom + import + + + org.junit + junit-bom + ${junit-jupiter.version} + pom + import + + + + + + + + . + META-INF + + LICENSE-2.0.txt + NOTICE.txt + + + + + + + io.spring.javaformat + spring-javaformat-maven-plugin + 0.0.40 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + + org.apache.maven.plugins + maven-resources-plugin + 3.3.1 + + + org.apache.maven.plugins + maven-source-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.2 + + + + + + io.spring.javaformat + spring-javaformat-maven-plugin + + + validate + + ${disable.checks} + + + validate + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${java.version} + ${java.version} + true + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + javadoc + + jar + + package + + + + none + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + package + + + + + + + + + spring + + + spring-snapshots + Spring Snapshots + https://repo.spring.io/snapshot + + true + + + + spring-milestones + Spring Milestones + https://repo.spring.io/milestone + + false + + + + spring-releases + Spring Releases + https://repo.spring.io/release + + false + + + + + + spring-snapshots + Spring Snapshots + https://repo.spring.io/snapshot + + true + + + + spring-milestones + Spring Milestones + https://repo.spring.io/milestone + + false + + + + + + fast + + true + true + + + + + diff --git a/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom.sha1 b/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom.sha1 new file mode 100644 index 000000000..80857ca80 --- /dev/null +++ b/code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom.sha1 @@ -0,0 +1 @@ +92c75e2856a9bea47b6eeaac1b0435daee1da879 \ No newline at end of file diff --git a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/_remote.repositories b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/_remote.repositories new file mode 100644 index 000000000..cd61d8860 --- /dev/null +++ b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:55 EDT 2024 +spring-security-bom-5.3.2.RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom new file mode 100644 index 000000000..b03dfbe56 --- /dev/null +++ b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom @@ -0,0 +1,143 @@ + + + 4.0.0 + org.springframework.security + spring-security-bom + 5.3.2.RELEASE + pom + spring-security-bom + spring-security-bom + https://spring.io/spring-security + + spring.io + https://spring.io/ + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + rwinch + Rob Winch + rwinch@pivotal.io + + + jgrandja + Joe Grandja + jgrandja@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-security + scm:git:git://github.com/spring-projects/spring-security + https://github.com/spring-projects/spring-security + + + + + org.springframework.security + spring-security-acl + 5.3.2.RELEASE + + + org.springframework.security + spring-security-aspects + 5.3.2.RELEASE + + + org.springframework.security + spring-security-cas + 5.3.2.RELEASE + + + org.springframework.security + spring-security-config + 5.3.2.RELEASE + + + org.springframework.security + spring-security-core + 5.3.2.RELEASE + + + org.springframework.security + spring-security-crypto + 5.3.2.RELEASE + + + org.springframework.security + spring-security-data + 5.3.2.RELEASE + + + org.springframework.security + spring-security-ldap + 5.3.2.RELEASE + + + org.springframework.security + spring-security-messaging + 5.3.2.RELEASE + + + org.springframework.security + spring-security-oauth2-client + 5.3.2.RELEASE + + + org.springframework.security + spring-security-oauth2-core + 5.3.2.RELEASE + + + org.springframework.security + spring-security-oauth2-jose + 5.3.2.RELEASE + + + org.springframework.security + spring-security-oauth2-resource-server + 5.3.2.RELEASE + + + org.springframework.security + spring-security-openid + 5.3.2.RELEASE + + + org.springframework.security + spring-security-remoting + 5.3.2.RELEASE + + + org.springframework.security + spring-security-rsocket + 5.3.2.RELEASE + + + org.springframework.security + spring-security-saml2-service-provider + 5.3.2.RELEASE + + + org.springframework.security + spring-security-taglibs + 5.3.2.RELEASE + + + org.springframework.security + spring-security-test + 5.3.2.RELEASE + + + org.springframework.security + spring-security-web + 5.3.2.RELEASE + + + + diff --git a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.lastUpdated b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.lastUpdated new file mode 100644 index 000000000..15c2e0d33 --- /dev/null +++ b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:55 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139895264 +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.security\:spring-security-bom\:pom\:5.3.2.RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139894838 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139894847 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139894951 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139895218 diff --git a/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.sha1 b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.sha1 new file mode 100644 index 000000000..499324819 --- /dev/null +++ b/code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.sha1 @@ -0,0 +1 @@ +558cb72c6816e7af37a87488b9a819408b1528e6 \ No newline at end of file diff --git a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/_remote.repositories b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/_remote.repositories new file mode 100644 index 000000000..834c5e43d --- /dev/null +++ b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:42 EDT 2024 +spring-security-bom-6.2.4.pom>ohdsi= diff --git a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom new file mode 100644 index 000000000..e849712bc --- /dev/null +++ b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom @@ -0,0 +1,138 @@ + + + + + + + + 4.0.0 + org.springframework.security + spring-security-bom + 6.2.4 + pom + spring-security-bom + Spring Security + https://spring.io/projects/spring-security + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-security.git + scm:git:ssh://git@github.com/spring-projects/spring-security.git + https://github.com/spring-projects/spring-security + + + GitHub + https://github.com/spring-projects/spring-security/issues + + + + + org.springframework.security + spring-security-acl + 6.2.4 + + + org.springframework.security + spring-security-aspects + 6.2.4 + + + org.springframework.security + spring-security-cas + 6.2.4 + + + org.springframework.security + spring-security-config + 6.2.4 + + + org.springframework.security + spring-security-core + 6.2.4 + + + org.springframework.security + spring-security-crypto + 6.2.4 + + + org.springframework.security + spring-security-data + 6.2.4 + + + org.springframework.security + spring-security-ldap + 6.2.4 + + + org.springframework.security + spring-security-messaging + 6.2.4 + + + org.springframework.security + spring-security-oauth2-client + 6.2.4 + + + org.springframework.security + spring-security-oauth2-core + 6.2.4 + + + org.springframework.security + spring-security-oauth2-jose + 6.2.4 + + + org.springframework.security + spring-security-oauth2-resource-server + 6.2.4 + + + org.springframework.security + spring-security-rsocket + 6.2.4 + + + org.springframework.security + spring-security-saml2-service-provider + 6.2.4 + + + org.springframework.security + spring-security-taglibs + 6.2.4 + + + org.springframework.security + spring-security-test + 6.2.4 + + + org.springframework.security + spring-security-web + 6.2.4 + + + + diff --git a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.lastUpdated b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.lastUpdated new file mode 100644 index 000000000..28f7e99fe --- /dev/null +++ b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:42 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.security\:spring-security-bom\:pom\:6.2.4 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139822463 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139822559 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139822706 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139822834 diff --git a/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.sha1 b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.sha1 new file mode 100644 index 000000000..a2cb5a4e6 --- /dev/null +++ b/code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.sha1 @@ -0,0 +1 @@ +ab4b6bba33cf5bcf2eb08a68fb3d64d42c02437a \ No newline at end of file diff --git a/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/_remote.repositories b/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/_remote.repositories new file mode 100644 index 000000000..031e01fba --- /dev/null +++ b/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:58 EDT 2024 +spring-security-crypto-6.2.4.pom>central= diff --git a/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom b/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom new file mode 100644 index 000000000..126c610d5 --- /dev/null +++ b/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom @@ -0,0 +1,43 @@ + + + + + + + + 4.0.0 + org.springframework.security + spring-security-crypto + 6.2.4 + spring-security-crypto + Spring Security + https://spring.io/projects/spring-security + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-security.git + scm:git:ssh://git@github.com/spring-projects/spring-security.git + https://github.com/spring-projects/spring-security + + + GitHub + https://github.com/spring-projects/spring-security/issues + + diff --git a/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom.sha1 b/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom.sha1 new file mode 100644 index 000000000..ea81d4a29 --- /dev/null +++ b/code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom.sha1 @@ -0,0 +1 @@ +2f1bf66d9a6f5634df07a53c0d12522cccb6e617 \ No newline at end of file diff --git a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/_remote.repositories b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/_remote.repositories new file mode 100644 index 000000000..2bbb879ed --- /dev/null +++ b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:43 EDT 2024 +spring-session-bom-3.2.2.pom>ohdsi= diff --git a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom new file mode 100644 index 000000000..9213be489 --- /dev/null +++ b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom @@ -0,0 +1,73 @@ + + + + + + + + 4.0.0 + org.springframework.session + spring-session-bom + 3.2.2 + pom + spring-session-bom + Spring Session + https://spring.io/projects/spring-session + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-session.git + scm:git:ssh://git@github.com/spring-projects/spring-session.git + https://github.com/spring-projects/spring-session + + + GitHub + https://github.com/spring-projects/spring-session/issues + + + + + org.springframework.session + spring-session-core + 3.2.2 + + + org.springframework.session + spring-session-data-mongodb + 3.2.2 + + + org.springframework.session + spring-session-data-redis + 3.2.2 + + + org.springframework.session + spring-session-hazelcast + 3.2.2 + + + org.springframework.session + spring-session-jdbc + 3.2.2 + + + + diff --git a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.lastUpdated b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.lastUpdated new file mode 100644 index 000000000..6a0068471 --- /dev/null +++ b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:43 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.session\:spring-session-bom\:pom\:3.2.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139822844 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139822939 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139823086 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139823216 diff --git a/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.sha1 b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.sha1 new file mode 100644 index 000000000..0ebafca26 --- /dev/null +++ b/code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.sha1 @@ -0,0 +1 @@ +80bce7fe9c8512ee349e5af3fc68661244ebe645 \ No newline at end of file diff --git a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/_remote.repositories b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/_remote.repositories new file mode 100644 index 000000000..c9bf10634 --- /dev/null +++ b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:55 EDT 2024 +spring-session-bom-Dragonfruit-RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom new file mode 100644 index 000000000..9feff4e33 --- /dev/null +++ b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom @@ -0,0 +1,72 @@ + + + 4.0.0 + org.springframework.session + spring-session-bom + Dragonfruit-RELEASE + pom + Spring Session Maven Bill of Materials (BOM) + Spring Session Maven Bill of Materials (BOM) + https://projects.spring.io/spring-session/ + + Pivotal Software, Inc. + https://spring.io/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + rwinch + Rob Winch + rwinch@pivotal.io + + + + scm:git:git@github.com/spring-projects/spring-session-bom.git + scm:git:git@github.com/spring-projects/spring-session-bom.git + https://github.com/spring-projects/spring-session-bom + + + GitHub + https://github.com/spring-projects/spring-session/issues + + + + + org.springframework.session + spring-session-jdbc + 2.3.0.RELEASE + + + org.springframework.session + spring-session-data-geode + 2.3.0.RELEASE + + + org.springframework.session + spring-session-hazelcast + 2.3.0.RELEASE + + + org.springframework.session + spring-session-data-mongodb + 2.3.0.RELEASE + + + org.springframework.session + spring-session-core + 2.3.0.RELEASE + + + org.springframework.session + spring-session-data-redis + 2.3.0.RELEASE + + + + diff --git a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.lastUpdated b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.lastUpdated new file mode 100644 index 000000000..f2789f840 --- /dev/null +++ b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:55 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139895766 +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.session\:spring-session-bom\:pom\:Dragonfruit-RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139895486 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139895493 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139895616 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139895719 diff --git a/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.sha1 b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.sha1 new file mode 100644 index 000000000..acde4b82e --- /dev/null +++ b/code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.sha1 @@ -0,0 +1 @@ +2c79cd98047de59dde49b53cabc3f42fcbf531bc \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-aop/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-aop/6.1.6/_remote.repositories new file mode 100644 index 000000000..ac4ffa0c4 --- /dev/null +++ b/code/arachne/org/springframework/spring-aop/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:47 EDT 2024 +spring-aop-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom b/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom new file mode 100644 index 000000000..4d19ef303 --- /dev/null +++ b/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom @@ -0,0 +1,56 @@ + + + + + + + + 4.0.0 + org.springframework + spring-aop + 6.1.6 + Spring AOP + Spring AOP + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-beans + 6.1.6 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom.sha1 new file mode 100644 index 000000000..cd398044a --- /dev/null +++ b/code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom.sha1 @@ -0,0 +1 @@ +97741c56093276e2ca9893f8789db1fbae4e1d24 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-aspects/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-aspects/6.1.6/_remote.repositories new file mode 100644 index 000000000..74ba96a67 --- /dev/null +++ b/code/arachne/org/springframework/spring-aspects/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +spring-aspects-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom b/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom new file mode 100644 index 000000000..6139051bb --- /dev/null +++ b/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom @@ -0,0 +1,51 @@ + + + + + + + + 4.0.0 + org.springframework + spring-aspects + 6.1.6 + Spring Aspects + Spring Aspects + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.aspectj + aspectjweaver + 1.9.22 + compile + + + diff --git a/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom.sha1 new file mode 100644 index 000000000..81cbae4cc --- /dev/null +++ b/code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom.sha1 @@ -0,0 +1 @@ +436efc14bf81c03e5170921f946a505c527d2363 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-beans/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-beans/6.1.6/_remote.repositories new file mode 100644 index 000000000..02c5c4dd9 --- /dev/null +++ b/code/arachne/org/springframework/spring-beans/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:47 EDT 2024 +spring-beans-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom b/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom new file mode 100644 index 000000000..cc11d50e0 --- /dev/null +++ b/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom @@ -0,0 +1,50 @@ + + + + + + + + 4.0.0 + org.springframework + spring-beans + 6.1.6 + Spring Beans + Spring Beans + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-core + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom.sha1 new file mode 100644 index 000000000..b6fb511fe --- /dev/null +++ b/code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom.sha1 @@ -0,0 +1 @@ +94bead1186dc2182c551b751dd1bd190fc6a00e9 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-context-support/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-context-support/6.1.6/_remote.repositories new file mode 100644 index 000000000..266605c79 --- /dev/null +++ b/code/arachne/org/springframework/spring-context-support/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:04 EDT 2024 +spring-context-support-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom b/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom new file mode 100644 index 000000000..f20b927b3 --- /dev/null +++ b/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom @@ -0,0 +1,63 @@ + + + + + + + + 4.0.0 + org.springframework + spring-context-support + 6.1.6 + Spring Context Support + Spring Context Support + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-beans + 6.1.6 + compile + + + org.springframework + spring-context + 6.1.6 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom.sha1 new file mode 100644 index 000000000..05ab7d712 --- /dev/null +++ b/code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom.sha1 @@ -0,0 +1 @@ +3961c3e5ac733643a25ca4294bb392d77d4af766 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-context/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-context/6.1.6/_remote.repositories new file mode 100644 index 000000000..0975ffac0 --- /dev/null +++ b/code/arachne/org/springframework/spring-context/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:47 EDT 2024 +spring-context-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom b/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom new file mode 100644 index 000000000..8055f71e9 --- /dev/null +++ b/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom @@ -0,0 +1,74 @@ + + + + + + + + 4.0.0 + org.springframework + spring-context + 6.1.6 + Spring Context + Spring Context + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-aop + 6.1.6 + compile + + + org.springframework + spring-beans + 6.1.6 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + org.springframework + spring-expression + 6.1.6 + compile + + + io.micrometer + micrometer-observation + 1.12.5 + compile + + + diff --git a/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom.sha1 new file mode 100644 index 000000000..f6c49e1d2 --- /dev/null +++ b/code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom.sha1 @@ -0,0 +1 @@ +685c155626b87ab83d99e37bf64eb809a5d268f8 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-core/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-core/6.1.6/_remote.repositories new file mode 100644 index 000000000..38a7f604a --- /dev/null +++ b/code/arachne/org/springframework/spring-core/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:47 EDT 2024 +spring-core-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom b/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom new file mode 100644 index 000000000..6c4de2c50 --- /dev/null +++ b/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom @@ -0,0 +1,50 @@ + + + + + + + + 4.0.0 + org.springframework + spring-core + 6.1.6 + Spring Core + Spring Core + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-jcl + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom.sha1 new file mode 100644 index 000000000..b6e819d02 --- /dev/null +++ b/code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom.sha1 @@ -0,0 +1 @@ +604b22e105472cacdcb796b50988e3825d4e5e72 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-expression/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-expression/6.1.6/_remote.repositories new file mode 100644 index 000000000..b0e74ddef --- /dev/null +++ b/code/arachne/org/springframework/spring-expression/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:47 EDT 2024 +spring-expression-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom b/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom new file mode 100644 index 000000000..080df5e10 --- /dev/null +++ b/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom @@ -0,0 +1,50 @@ + + + + + + + + 4.0.0 + org.springframework + spring-expression + 6.1.6 + Spring Expression Language (SpEL) + Spring Expression Language (SpEL) + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-core + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom.sha1 new file mode 100644 index 000000000..f6cc13af6 --- /dev/null +++ b/code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom.sha1 @@ -0,0 +1 @@ +8eca1e8c08b6f522b0a8b13316401c1d3e47542e \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/_remote.repositories new file mode 100644 index 000000000..ba69967ba --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:54 EDT 2024 +spring-framework-bom-5.2.6.RELEASE.pom>local-repo= diff --git a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom new file mode 100644 index 000000000..a6bc9271a --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom @@ -0,0 +1,147 @@ + + + 4.0.0 + org.springframework + spring-framework-bom + 5.2.6.RELEASE + pom + Spring Framework (Bill of Materials) + Spring Framework (Bill of Materials) + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + + org.springframework + spring-aop + 5.2.6.RELEASE + + + org.springframework + spring-aspects + 5.2.6.RELEASE + + + org.springframework + spring-beans + 5.2.6.RELEASE + + + org.springframework + spring-context + 5.2.6.RELEASE + + + org.springframework + spring-context-indexer + 5.2.6.RELEASE + + + org.springframework + spring-context-support + 5.2.6.RELEASE + + + org.springframework + spring-core + 5.2.6.RELEASE + + + org.springframework + spring-expression + 5.2.6.RELEASE + + + org.springframework + spring-instrument + 5.2.6.RELEASE + + + org.springframework + spring-jcl + 5.2.6.RELEASE + + + org.springframework + spring-jdbc + 5.2.6.RELEASE + + + org.springframework + spring-jms + 5.2.6.RELEASE + + + org.springframework + spring-messaging + 5.2.6.RELEASE + + + org.springframework + spring-orm + 5.2.6.RELEASE + + + org.springframework + spring-oxm + 5.2.6.RELEASE + + + org.springframework + spring-test + 5.2.6.RELEASE + + + org.springframework + spring-tx + 5.2.6.RELEASE + + + org.springframework + spring-web + 5.2.6.RELEASE + + + org.springframework + spring-webflux + 5.2.6.RELEASE + + + org.springframework + spring-webmvc + 5.2.6.RELEASE + + + org.springframework + spring-websocket + 5.2.6.RELEASE + + + + diff --git a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.lastUpdated b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.lastUpdated new file mode 100644 index 000000000..8fe5c7c93 --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.lastUpdated @@ -0,0 +1,11 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:54 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +file\:///code/arachne/.lastUpdated=1721139894356 +http\://0.0.0.0/.error=Could not transfer artifact org.springframework\:spring-framework-bom\:pom\:5.2.6.RELEASE from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139894094 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139894103 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139894214 +https\://jitpack.io/.error= +https\://jitpack.io/.lastUpdated=1721139894313 diff --git a/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.sha1 new file mode 100644 index 000000000..741a4711e --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.sha1 @@ -0,0 +1 @@ +ebc25d8d9959927f156abfeb3522c14ad435eb88 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.29/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/5.3.29/_remote.repositories new file mode 100644 index 000000000..39b9ff942 --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/5.3.29/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:50 EDT 2024 +spring-framework-bom-5.3.29.pom>central= diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom b/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom new file mode 100644 index 000000000..eeb309a99 --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom @@ -0,0 +1,157 @@ + + + + + + + + 4.0.0 + org.springframework + spring-framework-bom + 5.3.29 + pom + Spring Framework (Bill of Materials) + Spring Framework (Bill of Materials) + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + + org.springframework + spring-aop + 5.3.29 + + + org.springframework + spring-aspects + 5.3.29 + + + org.springframework + spring-beans + 5.3.29 + + + org.springframework + spring-context + 5.3.29 + + + org.springframework + spring-context-indexer + 5.3.29 + + + org.springframework + spring-context-support + 5.3.29 + + + org.springframework + spring-core + 5.3.29 + + + org.springframework + spring-expression + 5.3.29 + + + org.springframework + spring-instrument + 5.3.29 + + + org.springframework + spring-jcl + 5.3.29 + + + org.springframework + spring-jdbc + 5.3.29 + + + org.springframework + spring-jms + 5.3.29 + + + org.springframework + spring-messaging + 5.3.29 + + + org.springframework + spring-orm + 5.3.29 + + + org.springframework + spring-oxm + 5.3.29 + + + org.springframework + spring-r2dbc + 5.3.29 + + + org.springframework + spring-test + 5.3.29 + + + org.springframework + spring-tx + 5.3.29 + + + org.springframework + spring-web + 5.3.29 + + + org.springframework + spring-webflux + 5.3.29 + + + org.springframework + spring-webmvc + 5.3.29 + + + org.springframework + spring-websocket + 5.3.29 + + + + diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom.sha1 new file mode 100644 index 000000000..1cdb5ce07 --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom.sha1 @@ -0,0 +1 @@ +8c24d66eef3bbceb6e66d65f58ecabc9d69d3442 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.32/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/5.3.32/_remote.repositories new file mode 100644 index 000000000..4ad9b6d2e --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/5.3.32/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:51 EDT 2024 +spring-framework-bom-5.3.32.pom>central= diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom b/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom new file mode 100644 index 000000000..18b667c4c --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom @@ -0,0 +1,157 @@ + + + + + + + + 4.0.0 + org.springframework + spring-framework-bom + 5.3.32 + pom + Spring Framework (Bill of Materials) + Spring Framework (Bill of Materials) + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + + org.springframework + spring-aop + 5.3.32 + + + org.springframework + spring-aspects + 5.3.32 + + + org.springframework + spring-beans + 5.3.32 + + + org.springframework + spring-context + 5.3.32 + + + org.springframework + spring-context-indexer + 5.3.32 + + + org.springframework + spring-context-support + 5.3.32 + + + org.springframework + spring-core + 5.3.32 + + + org.springframework + spring-expression + 5.3.32 + + + org.springframework + spring-instrument + 5.3.32 + + + org.springframework + spring-jcl + 5.3.32 + + + org.springframework + spring-jdbc + 5.3.32 + + + org.springframework + spring-jms + 5.3.32 + + + org.springframework + spring-messaging + 5.3.32 + + + org.springframework + spring-orm + 5.3.32 + + + org.springframework + spring-oxm + 5.3.32 + + + org.springframework + spring-r2dbc + 5.3.32 + + + org.springframework + spring-test + 5.3.32 + + + org.springframework + spring-tx + 5.3.32 + + + org.springframework + spring-web + 5.3.32 + + + org.springframework + spring-webflux + 5.3.32 + + + org.springframework + spring-webmvc + 5.3.32 + + + org.springframework + spring-websocket + 5.3.32 + + + + diff --git a/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom.sha1 new file mode 100644 index 000000000..e29248427 --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom.sha1 @@ -0,0 +1 @@ +8825605fc0859103e7bd289754d257b30c80eb28 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.11/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/6.0.11/_remote.repositories new file mode 100644 index 000000000..49e626d49 --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/6.0.11/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:31 EDT 2024 +spring-framework-bom-6.0.11.pom>ohdsi= diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom b/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom new file mode 100644 index 000000000..ed09f93ff --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom @@ -0,0 +1,163 @@ + + + + + + + + 4.0.0 + org.springframework + spring-framework-bom + 6.0.11 + pom + Spring Framework (Bill of Materials) + Spring Framework (Bill of Materials) + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + + org.springframework + spring-aop + 6.0.11 + + + org.springframework + spring-aspects + 6.0.11 + + + org.springframework + spring-beans + 6.0.11 + + + org.springframework + spring-context + 6.0.11 + + + org.springframework + spring-context-indexer + 6.0.11 + + + org.springframework + spring-context-support + 6.0.11 + + + org.springframework + spring-core + 6.0.11 + + + org.springframework + spring-core-test + 6.0.11 + + + org.springframework + spring-expression + 6.0.11 + + + org.springframework + spring-instrument + 6.0.11 + + + org.springframework + spring-jcl + 6.0.11 + + + org.springframework + spring-jdbc + 6.0.11 + + + org.springframework + spring-jms + 6.0.11 + + + org.springframework + spring-messaging + 6.0.11 + + + org.springframework + spring-orm + 6.0.11 + + + org.springframework + spring-oxm + 6.0.11 + + + org.springframework + spring-r2dbc + 6.0.11 + + + org.springframework + spring-test + 6.0.11 + + + org.springframework + spring-tx + 6.0.11 + + + org.springframework + spring-web + 6.0.11 + + + org.springframework + spring-webflux + 6.0.11 + + + org.springframework + spring-webmvc + 6.0.11 + + + org.springframework + spring-websocket + 6.0.11 + + + + diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.lastUpdated b/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.lastUpdated new file mode 100644 index 000000000..351434f09 --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:31 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework\:spring-framework-bom\:pom\:6.0.11 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139871470 +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139871480 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139871581 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139871719 diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.sha1 new file mode 100644 index 000000000..35dd381da --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.sha1 @@ -0,0 +1 @@ +274d5a7cb6ff23281a5dffbb7419bc912b8804f1 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.15/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/6.0.15/_remote.repositories new file mode 100644 index 000000000..e4e735a58 --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/6.0.15/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:53 EDT 2024 +spring-framework-bom-6.0.15.pom>central= diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom b/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom new file mode 100644 index 000000000..bf820bc58 --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom @@ -0,0 +1,163 @@ + + + + + + + + 4.0.0 + org.springframework + spring-framework-bom + 6.0.15 + pom + Spring Framework (Bill of Materials) + Spring Framework (Bill of Materials) + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + + org.springframework + spring-aop + 6.0.15 + + + org.springframework + spring-aspects + 6.0.15 + + + org.springframework + spring-beans + 6.0.15 + + + org.springframework + spring-context + 6.0.15 + + + org.springframework + spring-context-indexer + 6.0.15 + + + org.springframework + spring-context-support + 6.0.15 + + + org.springframework + spring-core + 6.0.15 + + + org.springframework + spring-core-test + 6.0.15 + + + org.springframework + spring-expression + 6.0.15 + + + org.springframework + spring-instrument + 6.0.15 + + + org.springframework + spring-jcl + 6.0.15 + + + org.springframework + spring-jdbc + 6.0.15 + + + org.springframework + spring-jms + 6.0.15 + + + org.springframework + spring-messaging + 6.0.15 + + + org.springframework + spring-orm + 6.0.15 + + + org.springframework + spring-oxm + 6.0.15 + + + org.springframework + spring-r2dbc + 6.0.15 + + + org.springframework + spring-test + 6.0.15 + + + org.springframework + spring-tx + 6.0.15 + + + org.springframework + spring-web + 6.0.15 + + + org.springframework + spring-webflux + 6.0.15 + + + org.springframework + spring-webmvc + 6.0.15 + + + org.springframework + spring-websocket + 6.0.15 + + + + diff --git a/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom.sha1 new file mode 100644 index 000000000..5170997e3 --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom.sha1 @@ -0,0 +1 @@ +938ff10f13eecf5266da6426f3d2366130d376d8 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-framework-bom/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-framework-bom/6.1.6/_remote.repositories new file mode 100644 index 000000000..42ec55f4a --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:41 EDT 2024 +spring-framework-bom-6.1.6.pom>ohdsi= diff --git a/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom b/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom new file mode 100644 index 000000000..c368b1d3b --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom @@ -0,0 +1,163 @@ + + + + + + + + 4.0.0 + org.springframework + spring-framework-bom + 6.1.6 + pom + Spring Framework (Bill of Materials) + Spring Framework (Bill of Materials) + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + + org.springframework + spring-aop + 6.1.6 + + + org.springframework + spring-aspects + 6.1.6 + + + org.springframework + spring-beans + 6.1.6 + + + org.springframework + spring-context + 6.1.6 + + + org.springframework + spring-context-indexer + 6.1.6 + + + org.springframework + spring-context-support + 6.1.6 + + + org.springframework + spring-core + 6.1.6 + + + org.springframework + spring-core-test + 6.1.6 + + + org.springframework + spring-expression + 6.1.6 + + + org.springframework + spring-instrument + 6.1.6 + + + org.springframework + spring-jcl + 6.1.6 + + + org.springframework + spring-jdbc + 6.1.6 + + + org.springframework + spring-jms + 6.1.6 + + + org.springframework + spring-messaging + 6.1.6 + + + org.springframework + spring-orm + 6.1.6 + + + org.springframework + spring-oxm + 6.1.6 + + + org.springframework + spring-r2dbc + 6.1.6 + + + org.springframework + spring-test + 6.1.6 + + + org.springframework + spring-tx + 6.1.6 + + + org.springframework + spring-web + 6.1.6 + + + org.springframework + spring-webflux + 6.1.6 + + + org.springframework + spring-webmvc + 6.1.6 + + + org.springframework + spring-websocket + 6.1.6 + + + + diff --git a/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.lastUpdated b/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.lastUpdated new file mode 100644 index 000000000..139f5d3ee --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:41 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework\:spring-framework-bom\:pom\:6.1.6 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139821049 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139821144 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139821244 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139821369 diff --git a/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.sha1 new file mode 100644 index 000000000..a6cd3eaa5 --- /dev/null +++ b/code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.sha1 @@ -0,0 +1 @@ +ba0d9d29a791a57557f650b0e9c4751fe4182afe \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-jcl/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-jcl/6.1.6/_remote.repositories new file mode 100644 index 000000000..a1d6b95ae --- /dev/null +++ b/code/arachne/org/springframework/spring-jcl/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:47 EDT 2024 +spring-jcl-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom b/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom new file mode 100644 index 000000000..f865d1ba9 --- /dev/null +++ b/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom @@ -0,0 +1,43 @@ + + + + + + + + 4.0.0 + org.springframework + spring-jcl + 6.1.6 + Spring Commons Logging Bridge + Spring Commons Logging Bridge + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + diff --git a/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom.sha1 new file mode 100644 index 000000000..60c488c01 --- /dev/null +++ b/code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom.sha1 @@ -0,0 +1 @@ +80402bc6a0bcc74f75eb7af1eaeae1a9cf1fc335 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-jdbc/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-jdbc/6.1.6/_remote.repositories new file mode 100644 index 000000000..b866943da --- /dev/null +++ b/code/arachne/org/springframework/spring-jdbc/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:53 EDT 2024 +spring-jdbc-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom b/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom new file mode 100644 index 000000000..076e8456f --- /dev/null +++ b/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom @@ -0,0 +1,62 @@ + + + + + + + + 4.0.0 + org.springframework + spring-jdbc + 6.1.6 + Spring JDBC + Spring JDBC + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-beans + 6.1.6 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + org.springframework + spring-tx + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom.sha1 new file mode 100644 index 000000000..7cfca4527 --- /dev/null +++ b/code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom.sha1 @@ -0,0 +1 @@ +f266d9024768472d2fae626b8142a098b4c48437 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-messaging/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-messaging/6.1.6/_remote.repositories new file mode 100644 index 000000000..fcea5ee1e --- /dev/null +++ b/code/arachne/org/springframework/spring-messaging/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:13 EDT 2024 +spring-messaging-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom b/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom new file mode 100644 index 000000000..a1d480991 --- /dev/null +++ b/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom @@ -0,0 +1,56 @@ + + + + + + + + 4.0.0 + org.springframework + spring-messaging + 6.1.6 + Spring Messaging + Spring Messaging + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-beans + 6.1.6 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom.sha1 new file mode 100644 index 000000000..45a0d0bab --- /dev/null +++ b/code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom.sha1 @@ -0,0 +1 @@ +fa6e6c42871bc09a5d62efaced8b4bbc41966aea \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-orm/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-orm/6.1.6/_remote.repositories new file mode 100644 index 000000000..7f4dfd0cd --- /dev/null +++ b/code/arachne/org/springframework/spring-orm/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:03 EDT 2024 +spring-orm-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom b/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom new file mode 100644 index 000000000..ab765ae5d --- /dev/null +++ b/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom @@ -0,0 +1,69 @@ + + + + + + + + 4.0.0 + org.springframework + spring-orm + 6.1.6 + Spring Object/Relational Mapping + Spring Object/Relational Mapping + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-beans + 6.1.6 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + org.springframework + spring-jdbc + 6.1.6 + compile + + + org.springframework + spring-tx + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom.sha1 new file mode 100644 index 000000000..eda8c68fe --- /dev/null +++ b/code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom.sha1 @@ -0,0 +1 @@ +6424347785e842ea80eff31af66961f3b56c7b10 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-oxm/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-oxm/6.1.6/_remote.repositories new file mode 100644 index 000000000..6a7864331 --- /dev/null +++ b/code/arachne/org/springframework/spring-oxm/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:16 EDT 2024 +spring-oxm-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom b/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom new file mode 100644 index 000000000..3875716af --- /dev/null +++ b/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom @@ -0,0 +1,57 @@ + + + + + + + + 4.0.0 + org.springframework + spring-oxm + 6.1.6 + Spring Object/XML Marshalling + Spring Object/XML Marshalling + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-beans + 6.1.6 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom.sha1 new file mode 100644 index 000000000..a3fbc28be --- /dev/null +++ b/code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom.sha1 @@ -0,0 +1 @@ +1b7f3856c5398440407f6d5c97dd4837de8aff63 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-test/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-test/6.1.6/_remote.repositories new file mode 100644 index 000000000..70a34b20d --- /dev/null +++ b/code/arachne/org/springframework/spring-test/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:10 EDT 2024 +spring-test-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom b/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom new file mode 100644 index 000000000..aa4a7429c --- /dev/null +++ b/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom @@ -0,0 +1,50 @@ + + + + + + + + 4.0.0 + org.springframework + spring-test + 6.1.6 + Spring TestContext Framework + Spring TestContext Framework + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-core + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom.sha1 new file mode 100644 index 000000000..1bc295161 --- /dev/null +++ b/code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom.sha1 @@ -0,0 +1 @@ +be9c9731bd87530412ab2306d772e89005ce2c49 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-tx/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-tx/6.1.6/_remote.repositories new file mode 100644 index 000000000..c134304d0 --- /dev/null +++ b/code/arachne/org/springframework/spring-tx/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:53 EDT 2024 +spring-tx-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom b/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom new file mode 100644 index 000000000..47c3cfc1c --- /dev/null +++ b/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom @@ -0,0 +1,56 @@ + + + + + + + + 4.0.0 + org.springframework + spring-tx + 6.1.6 + Spring Transaction + Spring Transaction + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-beans + 6.1.6 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom.sha1 new file mode 100644 index 000000000..f57534edf --- /dev/null +++ b/code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom.sha1 @@ -0,0 +1 @@ +61888eb2e71a53afe048f4ea3f452728e3ade791 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-web/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-web/6.1.6/_remote.repositories new file mode 100644 index 000000000..87e6009fa --- /dev/null +++ b/code/arachne/org/springframework/spring-web/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:51 EDT 2024 +spring-web-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom b/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom new file mode 100644 index 000000000..cc1ced7bc --- /dev/null +++ b/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom @@ -0,0 +1,62 @@ + + + + + + + + 4.0.0 + org.springframework + spring-web + 6.1.6 + Spring Web + Spring Web + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-beans + 6.1.6 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + io.micrometer + micrometer-observation + 1.12.5 + compile + + + diff --git a/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom.sha1 new file mode 100644 index 000000000..d39f9dc48 --- /dev/null +++ b/code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom.sha1 @@ -0,0 +1 @@ +9635da275865bd9b0d136b7f560199ff49e6fc81 \ No newline at end of file diff --git a/code/arachne/org/springframework/spring-webmvc/6.1.6/_remote.repositories b/code/arachne/org/springframework/spring-webmvc/6.1.6/_remote.repositories new file mode 100644 index 000000000..3b6f84332 --- /dev/null +++ b/code/arachne/org/springframework/spring-webmvc/6.1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:52 EDT 2024 +spring-webmvc-6.1.6.pom>central= diff --git a/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom b/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom new file mode 100644 index 000000000..ce98fdef9 --- /dev/null +++ b/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom @@ -0,0 +1,80 @@ + + + + + + + + 4.0.0 + org.springframework + spring-webmvc + 6.1.6 + Spring Web MVC + Spring Web MVC + https://github.com/spring-projects/spring-framework + + Spring IO + https://spring.io/projects/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-aop + 6.1.6 + compile + + + org.springframework + spring-beans + 6.1.6 + compile + + + org.springframework + spring-context + 6.1.6 + compile + + + org.springframework + spring-core + 6.1.6 + compile + + + org.springframework + spring-expression + 6.1.6 + compile + + + org.springframework + spring-web + 6.1.6 + compile + + + diff --git a/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom.sha1 b/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom.sha1 new file mode 100644 index 000000000..5ffa7d286 --- /dev/null +++ b/code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom.sha1 @@ -0,0 +1 @@ +1c8900b8eb7c020133b728b1367f31fcdaab101b \ No newline at end of file diff --git a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/_remote.repositories b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/_remote.repositories new file mode 100644 index 000000000..10668f9c8 --- /dev/null +++ b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:43 EDT 2024 +spring-ws-bom-4.0.10.pom>ohdsi= diff --git a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom new file mode 100644 index 000000000..187bcd080 --- /dev/null +++ b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom @@ -0,0 +1,92 @@ + + + 4.0.0 + org.springframework.ws + spring-ws-bom + 4.0.10 + pom + Spring Web Services - BOM + Spring WS - Bill of Materials (BOM) + https://spring.io/projects/spring-ws + + VMware, Inc. + https://www.spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + Copyright 2005-2022 the original author or authors. + + 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 + + https://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. + + + + + gturnquist + Greg Turnquist + gturnquist(at)vmware.com + VMware, Inc. + https://spring.io + + Project Lead + + -6 + + + + scm:git:git://github.com/spring-projects/spring-ws.git + scm:git:ssh://git@github.com:spring-projects/spring-ws.git + https://github.com/spring-projects/spring-ws + + + GitHub + https://github.com/spring-projects/spring-ws/issues + + + true + true + true + + + + + org.springframework.ws + spring-ws-core + 4.0.10 + + + org.springframework.ws + spring-ws-security + 4.0.10 + + + org.springframework.ws + spring-ws-support + 4.0.10 + + + org.springframework.ws + spring-ws-test + 4.0.10 + + + org.springframework.ws + spring-xml + 4.0.10 + + + + diff --git a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.lastUpdated b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.lastUpdated new file mode 100644 index 000000000..d3218b776 --- /dev/null +++ b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:43 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.springframework.ws\:spring-ws-bom\:pom\:4.0.10 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139823225 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139823411 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139823533 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139823660 diff --git a/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.sha1 b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.sha1 new file mode 100644 index 000000000..7b4ca203c --- /dev/null +++ b/code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.sha1 @@ -0,0 +1 @@ +2899677d829f498efc5f829426495e5cea632ed0 \ No newline at end of file diff --git a/code/arachne/org/testcontainers/database-commons/1.19.7/_remote.repositories b/code/arachne/org/testcontainers/database-commons/1.19.7/_remote.repositories new file mode 100644 index 000000000..48215bb34 --- /dev/null +++ b/code/arachne/org/testcontainers/database-commons/1.19.7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:12 EDT 2024 +database-commons-1.19.7.pom>central= diff --git a/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom b/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom new file mode 100644 index 000000000..ac96cee6b --- /dev/null +++ b/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom @@ -0,0 +1,40 @@ + + + 4.0.0 + org.testcontainers + database-commons + 1.19.7 + Testcontainers :: Database-Commons + Isolated container management for Java code testing + https://java.testcontainers.org + + GitHub + https://github.com/testcontainers/testcontainers-java/issues + + + + MIT + http://opensource.org/licenses/MIT + + + + https://github.com/testcontainers/testcontainers-java/ + scm:git:git://github.com/testcontainers/testcontainers-java.git + scm:git:ssh://git@github.com/testcontainers/testcontainers-java.git + + + + rnorth + Richard North + rich.north@gmail.com + + + + + org.testcontainers + testcontainers + 1.19.7 + compile + + + diff --git a/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom.sha1 b/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom.sha1 new file mode 100644 index 000000000..3972df7e5 --- /dev/null +++ b/code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom.sha1 @@ -0,0 +1 @@ +5f4492389345bb00f72a3d68141c61aca21ef356 \ No newline at end of file diff --git a/code/arachne/org/testcontainers/jdbc/1.19.7/_remote.repositories b/code/arachne/org/testcontainers/jdbc/1.19.7/_remote.repositories new file mode 100644 index 000000000..e5e82f014 --- /dev/null +++ b/code/arachne/org/testcontainers/jdbc/1.19.7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:12 EDT 2024 +jdbc-1.19.7.pom>central= diff --git a/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom b/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom new file mode 100644 index 000000000..65bc2137f --- /dev/null +++ b/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom @@ -0,0 +1,40 @@ + + + 4.0.0 + org.testcontainers + jdbc + 1.19.7 + Testcontainers :: JDBC + Isolated container management for Java code testing + https://java.testcontainers.org + + GitHub + https://github.com/testcontainers/testcontainers-java/issues + + + + MIT + http://opensource.org/licenses/MIT + + + + https://github.com/testcontainers/testcontainers-java/ + scm:git:git://github.com/testcontainers/testcontainers-java.git + scm:git:ssh://git@github.com/testcontainers/testcontainers-java.git + + + + rnorth + Richard North + rich.north@gmail.com + + + + + org.testcontainers + database-commons + 1.19.7 + compile + + + diff --git a/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom.sha1 b/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom.sha1 new file mode 100644 index 000000000..a4d6096cd --- /dev/null +++ b/code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom.sha1 @@ -0,0 +1 @@ +ac3b9359388ccb1a055b4031ee87ff54a190f194 \ No newline at end of file diff --git a/code/arachne/org/testcontainers/postgresql/1.19.7/_remote.repositories b/code/arachne/org/testcontainers/postgresql/1.19.7/_remote.repositories new file mode 100644 index 000000000..6d87533a6 --- /dev/null +++ b/code/arachne/org/testcontainers/postgresql/1.19.7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:12 EDT 2024 +postgresql-1.19.7.pom>central= diff --git a/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom b/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom new file mode 100644 index 000000000..5d5f759b5 --- /dev/null +++ b/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom @@ -0,0 +1,40 @@ + + + 4.0.0 + org.testcontainers + postgresql + 1.19.7 + Testcontainers :: JDBC :: PostgreSQL + Isolated container management for Java code testing + https://java.testcontainers.org + + GitHub + https://github.com/testcontainers/testcontainers-java/issues + + + + MIT + http://opensource.org/licenses/MIT + + + + https://github.com/testcontainers/testcontainers-java/ + scm:git:git://github.com/testcontainers/testcontainers-java.git + scm:git:ssh://git@github.com/testcontainers/testcontainers-java.git + + + + rnorth + Richard North + rich.north@gmail.com + + + + + org.testcontainers + jdbc + 1.19.7 + compile + + + diff --git a/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom.sha1 b/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom.sha1 new file mode 100644 index 000000000..924d16713 --- /dev/null +++ b/code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom.sha1 @@ -0,0 +1 @@ +5f6926317d0a507206113135f8043a71acd16879 \ No newline at end of file diff --git a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/_remote.repositories b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/_remote.repositories new file mode 100644 index 000000000..d85a100e7 --- /dev/null +++ b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:44 EDT 2024 +testcontainers-bom-1.19.7.pom>ohdsi= diff --git a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom new file mode 100644 index 000000000..4dba74ec7 --- /dev/null +++ b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom @@ -0,0 +1,318 @@ + + + 4.0.0 + org.testcontainers + testcontainers-bom + 1.19.7 + pom + Testcontainers :: BOM + Isolated container management for Java code testing + https://java.testcontainers.org + + GitHub + https://github.com/testcontainers/testcontainers-java/issues + + + + MIT + http://opensource.org/licenses/MIT + + + + https://github.com/testcontainers/testcontainers-java/ + scm:git:git://github.com/testcontainers/testcontainers-java.git + scm:git:ssh://git@github.com/testcontainers/testcontainers-java.git + + + + rnorth + Richard North + rich.north@gmail.com + + + + + + + org.testcontainers + activemq + 1.19.7 + + + org.testcontainers + azure + 1.19.7 + + + org.testcontainers + cassandra + 1.19.7 + + + org.testcontainers + chromadb + 1.19.7 + + + org.testcontainers + clickhouse + 1.19.7 + + + org.testcontainers + cockroachdb + 1.19.7 + + + org.testcontainers + consul + 1.19.7 + + + org.testcontainers + couchbase + 1.19.7 + + + org.testcontainers + cratedb + 1.19.7 + + + org.testcontainers + database-commons + 1.19.7 + + + org.testcontainers + db2 + 1.19.7 + + + org.testcontainers + dynalite + 1.19.7 + + + org.testcontainers + elasticsearch + 1.19.7 + + + org.testcontainers + gcloud + 1.19.7 + + + org.testcontainers + hivemq + 1.19.7 + + + org.testcontainers + influxdb + 1.19.7 + + + org.testcontainers + jdbc + 1.19.7 + + + org.testcontainers + junit-jupiter + 1.19.7 + + + org.testcontainers + k3s + 1.19.7 + + + org.testcontainers + k6 + 1.19.7 + + + org.testcontainers + kafka + 1.19.7 + + + org.testcontainers + localstack + 1.19.7 + + + org.testcontainers + mariadb + 1.19.7 + + + org.testcontainers + milvus + 1.19.7 + + + org.testcontainers + minio + 1.19.7 + + + org.testcontainers + mockserver + 1.19.7 + + + org.testcontainers + mongodb + 1.19.7 + + + org.testcontainers + mssqlserver + 1.19.7 + + + org.testcontainers + mysql + 1.19.7 + + + org.testcontainers + neo4j + 1.19.7 + + + org.testcontainers + nginx + 1.19.7 + + + org.testcontainers + oceanbase + 1.19.7 + + + org.testcontainers + ollama + 1.19.7 + + + org.testcontainers + openfga + 1.19.7 + + + org.testcontainers + oracle-free + 1.19.7 + + + org.testcontainers + oracle-xe + 1.19.7 + + + org.testcontainers + orientdb + 1.19.7 + + + org.testcontainers + postgresql + 1.19.7 + + + org.testcontainers + presto + 1.19.7 + + + org.testcontainers + pulsar + 1.19.7 + + + org.testcontainers + qdrant + 1.19.7 + + + org.testcontainers + questdb + 1.19.7 + + + org.testcontainers + r2dbc + 1.19.7 + + + org.testcontainers + rabbitmq + 1.19.7 + + + org.testcontainers + redpanda + 1.19.7 + + + org.testcontainers + selenium + 1.19.7 + + + org.testcontainers + solace + 1.19.7 + + + org.testcontainers + solr + 1.19.7 + + + org.testcontainers + spock + 1.19.7 + + + org.testcontainers + testcontainers + 1.19.7 + + + org.testcontainers + tidb + 1.19.7 + + + org.testcontainers + toxiproxy + 1.19.7 + + + org.testcontainers + trino + 1.19.7 + + + org.testcontainers + vault + 1.19.7 + + + org.testcontainers + weaviate + 1.19.7 + + + org.testcontainers + yugabytedb + 1.19.7 + + + + diff --git a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.lastUpdated b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.lastUpdated new file mode 100644 index 000000000..9f10648b3 --- /dev/null +++ b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.lastUpdated @@ -0,0 +1,9 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:44 EDT 2024 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= +http\://0.0.0.0/.error=Could not transfer artifact org.testcontainers\:testcontainers-bom\:pom\:1.19.7 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] +@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139823668 +https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139823769 +https\://repo.fusesource.com/nexus/content/groups/public/.error= +https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139823868 +https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139824007 diff --git a/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.sha1 b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.sha1 new file mode 100644 index 000000000..590ea710d --- /dev/null +++ b/code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.sha1 @@ -0,0 +1 @@ +27b708ef5fa4d0fa87532bfdba5a9b53ab93ca94 \ No newline at end of file diff --git a/code/arachne/org/testcontainers/testcontainers/1.19.7/_remote.repositories b/code/arachne/org/testcontainers/testcontainers/1.19.7/_remote.repositories new file mode 100644 index 000000000..26add0380 --- /dev/null +++ b/code/arachne/org/testcontainers/testcontainers/1.19.7/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:25:12 EDT 2024 +testcontainers-1.19.7.pom>central= diff --git a/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom b/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom new file mode 100644 index 000000000..1eb02c608 --- /dev/null +++ b/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom @@ -0,0 +1,76 @@ + + + 4.0.0 + org.testcontainers + testcontainers + 1.19.7 + Testcontainers Core + Isolated container management for Java code testing + https://java.testcontainers.org + + GitHub + https://github.com/testcontainers/testcontainers-java/issues + + + + MIT + http://opensource.org/licenses/MIT + + + + https://github.com/testcontainers/testcontainers-java/ + scm:git:git://github.com/testcontainers/testcontainers-java.git + scm:git:ssh://git@github.com/testcontainers/testcontainers-java.git + + + + rnorth + Richard North + rich.north@gmail.com + + + + + junit + junit + 4.13.2 + compile + + + org.slf4j + slf4j-api + 1.7.36 + compile + + + org.apache.commons + commons-compress + 1.24.0 + compile + + + org.rnorth.duct-tape + duct-tape + 1.0.8 + compile + + + com.github.docker-java + docker-java-api + 3.3.6 + compile + + + com.github.docker-java + docker-java-transport-zerodep + 3.3.6 + compile + + + com.google.cloud.tools + jib-core + 0.23.0 + provided + + + diff --git a/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom.sha1 b/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom.sha1 new file mode 100644 index 000000000..4bed55a06 --- /dev/null +++ b/code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom.sha1 @@ -0,0 +1 @@ +0411f413de2a98fcc8223c0fa2ace25f04d377e7 \ No newline at end of file diff --git a/code/arachne/org/xmlunit/xmlunit-core/2.9.1/_remote.repositories b/code/arachne/org/xmlunit/xmlunit-core/2.9.1/_remote.repositories new file mode 100644 index 000000000..c39028963 --- /dev/null +++ b/code/arachne/org/xmlunit/xmlunit-core/2.9.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:10 EDT 2024 +xmlunit-core-2.9.1.pom>central= diff --git a/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom b/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom new file mode 100644 index 000000000..ee7ac8026 --- /dev/null +++ b/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom @@ -0,0 +1,78 @@ + + + + 4.0.0 + + + org.xmlunit + xmlunit-parent + 2.9.1 + + + org.xmlunit + xmlunit-core + jar + org.xmlunit:xmlunit-core + XMLUnit for Java + https://www.xmlunit.org/ + + + ${project.groupId} + + + + + junit + junit + test + + + org.hamcrest + hamcrest-core + test + + + org.hamcrest + hamcrest-library + test + + + org.mockito + mockito-core + test + + + + + + java9+ + + [9,) + + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.glassfish.jaxb + jaxb-runtime + runtime + true + + + + + diff --git a/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom.sha1 b/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom.sha1 new file mode 100644 index 000000000..1c5899a3b --- /dev/null +++ b/code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom.sha1 @@ -0,0 +1 @@ +3a122da8c1358e2beed232f53fe02ecdf399c86a \ No newline at end of file diff --git a/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/_remote.repositories b/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/_remote.repositories new file mode 100644 index 000000000..3dbd0fd8c --- /dev/null +++ b/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:10 EDT 2024 +xmlunit-parent-2.9.1.pom>central= diff --git a/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom b/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom new file mode 100644 index 000000000..a78d566a5 --- /dev/null +++ b/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom @@ -0,0 +1,587 @@ + + + + 4.0.0 + + org.xmlunit + xmlunit-parent + pom + 2.9.1 + org.xmlunit:xmlunit-parent + Parent POM for all artifacts of XMLUnit + https://www.xmlunit.org/ + + + 1.7 + 1.7 + UTF-8 + UTF-8 + UTF-8 + + + ${project.build.directory}/osgi/MANIFEST.MF + + + + + + 8 + + 2.22.0 + + + 2.3.3 + + + 2001 + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + XMLUnit + https://www.xmlunit.org/ + + + + scm:git:git@github.com:xmlunit/xmlunit.git + scm:git:git@github.com:xmlunit/xmlunit.git + git@github.com:xmlunit/xmlunit.git + + + + GitHub + https://github.com/xmlunit/xmlunit/issues + + + + + XMLUnit General Mailing list + https://lists.sourceforge.net/lists/listinfo/xmlunit-general + https://lists.sourceforge.net/lists/listinfo/xmlunit-general + https://sourceforge.net/p/xmlunit/mailman/xmlunit-general/ + + + + + xmlunit-core + xmlunit-assertj + xmlunit-matchers + xmlunit-legacy + xmlunit-placeholders + + + + + XMLUnit + XMLUnit Contributors + xmlunit-general@lists.sourceforge.net + XMLUnit + https://www.xmlunit.org/ + + + + + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jakarta.xml.bind.version} + + + org.glassfish.jaxb + jaxb-runtime + ${jakarta.xml.bind.version} + + + junit + junit + 4.13.1 + + + org.hamcrest + hamcrest-library + 1.3 + + + org.hamcrest + hamcrest-core + 1.3 + + + org.xmlunit + xmlunit-core + ${project.version} + + + org.xmlunit + xmlunit-core + tests + ${project.version} + + + org.xmlunit + xmlunit-matchers + ${project.version} + + + org.xmlunit + xmlunit-assertj + ${project.version} + + + org.xmlunit + xmlunit-assertj3 + ${project.version} + + + org.xmlunit + xmlunit-jakarta-jaxb-impl + ${project.version} + + + org.mockito + mockito-core + 2.1.0 + test + + + + org.assertj + assertj-core + 2.9.0 + + + net.bytebuddy + byte-buddy + 1.10.10 + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.6.0 + + ${maven.compile.source} + ${maven.compile.target} + ${project.build.sourceEncoding} + + + **/package-info.java + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + true + {0,date,yyyy-MM-dd HH:mm:ssa} + + + + validate + + create + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + ${manifestfile} + + true + true + + + ${maven.compile.source} + ${maven.compile.target} + ${maven.build.timestamp} + ${buildNumber} (Branch ${scmBranch}) + ${automatic.module.name} + + + + + + + test-jar + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven.surefire.plugin.version} + + + org.apache.maven.plugins + maven-shade-plugin + 2.4.3 + + + org.apache.felix + maven-bundle-plugin + 3.2.0 + true + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.4.1 + + XMLUnit for Java ${project.version} API + XMLUnit for Java ${project.version} API + + + XMLUnit Core ${project.version} + org.xmlunit* + + + XMLUnit Hamcrest Matchers ${project.version} + org.xmlunit.matchers* + + + XMLUnit AssertJ 3.x Assertions ${project.version} + org.xmlunit.assertj3* + + + XMLUnit AssertJ 2.x/3.x Assertions ${project.version} + org.xmlunit.assertj* + + + XMLUnit Legacy ${project.version} + org.custommonkey.xmlunit* + + + XMLUnit Placeholders ${project.version} + org.xmlunit.placeholder* + + + XMLUnit Jakarta XML Binding Support ${project.version} + org.xmlunit.builder.jakarta_jaxb* + + + true + ${maven.javadoc.source} + ${project.build.sourceEncoding} + ${project.build.sourceEncoding} + true + + https://docs.oracle.com/javase/8/docs/api/ + + ${javadoc.additionalparam} + + + + org.jacoco + jacoco-maven-plugin + 0.8.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + org.cyclonedx + cyclonedx-maven-plugin + 2.7.3 + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + true + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME + org.xmlunit.${project.artifactId} + ${project.description} + org.xmlunit.*;version=${project.version};-noimport:=true + + * + + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + maven-assembly-plugin + 3.0.0 + false + + + project + + false + xmlunit-${project.version}-src + posix + false + + + + make-assembly + package + + single + + + + + + + + + jacoco + + + + org.jacoco + jacoco-maven-plugin + + + prepare-agent + + prepare-agent + + + + + + org.eluder.coveralls + coveralls-maven-plugin + 3.2.1 + + + + + + sonatype-oss-release + + + sonatype-nexus-snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + sonatype-nexus-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + ${maven.compile.source} + ${project.build.sourceEncoding} + ${project.build.sourceEncoding} + true + + http://docs.oracle.com/javase/6/docs/api/ + + ${javadoc.additionalparam} + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + release + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-no-snapshots + + enforce + + + + + No Snapshots Allowed! + + + true + + + + + + + + + java8+ + + false + [1.8,) + + + xmlunit-assertj3 + xmlunit-jakarta-jaxb-impl + + + -Xdoclint:html,syntax,accessibility,reference + false + + + + + org.cyclonedx + cyclonedx-maven-plugin + + + build-cyclonedx + package + + makeBom + + + + + all + ${project.artifactId}-${project.version}-cyclonedx + + + + + + + java9+ + + [9,) + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + jakarta.xml.bind + jakarta.xml.bind-api + ${jakarta.xml.bind.version} + + + + + + + + + java14+ + + false + [14,) + + + + + org.mockito + mockito-core + 3.3.3 + test + + + + + + diff --git a/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom.sha1 b/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom.sha1 new file mode 100644 index 000000000..c2a02ca4e --- /dev/null +++ b/code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom.sha1 @@ -0,0 +1 @@ +5f2bf29d274cb3f7f3db0e807058520ef03a27c9 \ No newline at end of file diff --git a/code/arachne/org/yaml/snakeyaml/2.2/_remote.repositories b/code/arachne/org/yaml/snakeyaml/2.2/_remote.repositories new file mode 100644 index 000000000..f5dfd3076 --- /dev/null +++ b/code/arachne/org/yaml/snakeyaml/2.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:48 EDT 2024 +snakeyaml-2.2.pom>central= diff --git a/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom b/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom new file mode 100644 index 000000000..97c7a222c --- /dev/null +++ b/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom @@ -0,0 +1,495 @@ + + + 4.0.0 + org.yaml + snakeyaml + 2.2 + bundle + + UTF-8 + bitbucket + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + https://oss.sonatype.org/content/repositories/snapshots/ + 7 + 7 + 7 + false + 5.1.8 + 3.1.0 + 3.12.1 + 3.0.0-M7 + deny + + SnakeYAML + YAML 1.1 parser and emitter for Java + 2008 + https://bitbucket.org/snakeyaml/snakeyaml + + Bitbucket + https://bitbucket.org/snakeyaml/snakeyaml/issues + + + + SnakeYAML developers and users List + snakeyaml-core@googlegroups.com + + + + scm:git:http://bitbucket.org/snakeyaml/snakeyaml + scm:git:ssh://git@bitbucket.org/snakeyaml/snakeyaml + https://bitbucket.org/snakeyaml/snakeyaml/src + snakeyaml-2.2 + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + asomov + Andrey Somov + public.somov@gmail.com + + + maslovalex + Alexander Maslov + alexander.maslov@gmail.com + + + + + junit + junit + 4.13.2 + test + + + org.apache.velocity + velocity-engine-core + 2.3 + test + + + joda-time + joda-time + 2.11.1 + test + + + org.projectlombok + lombok + 1.18.24 + test + + + org.openjdk.jmh + jmh-core + 1.36 + test + + + org.openjdk.jmh + jmh-generator-annprocess + 1.36 + test + + + + + sonatype-nexus-staging + Nexus Release Repository + ${release.repo.url} + + + sonatype-nexus-staging + Sonatype Nexus Snapshots + ${snapshot.repo.url} + false + + + + + + ${basedir}/src/test/resources + true + + + + + + org.apache.maven.plugins + maven-resources-plugin + ${maven-resources-plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.4.1 + + org.yaml.snakeyaml.external.* + + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + + org.codehaus.mojo + build-helper-maven-plugin + 3.3.0 + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + EnvironmentValue1 + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.1.0 + + + enforce-maven + + enforce + + + + + 3.3.0 + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${project.build.sourceEncoding} + + + + module-info-compile + compile + + 9 + ${project.basedir}/src/main/java9 + true + + [11,) + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + -Xmx512m + + **/*Test.java + + + **/StressTest.java + **/ParallelTest.java + + + + + org.apache.maven.plugins + maven-eclipse-plugin + 2.10 + + bin + + + + org.apache.maven.plugins + maven-changes-plugin + 2.12.1 + + + validate-changes + pre-site + + changes-validate + + + true + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.4.1 + + + attach-javadocs + + jar + + + + + + com.mycila.maven-license-plugin + maven-license-plugin + 1.10.b1 + +
    src/etc/header.txt
    + false + true + false + + src/**/*.java + + + src/main/java/org/yaml/snakeyaml/external/** + + true + true + true + UTF-8 +
    + + + site + + format + + + +
    + + org.apache.felix + maven-bundle-plugin + ${maven-bundle-plugin.version} + true + + + <_nouses>true + + !org.yaml.snakeyaml.external*, + org.yaml.snakeyaml.*;version=${project.version} + + true + + + + + maven-site-plugin + ${maven-site-plugin.version} + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + true + false + release + deploy nexus-staging:release + + + + org.sonatype.plugins + nexus-staging-maven-plugin + + 1.6.8 + true + + sonatype-nexus-staging + https://oss.sonatype.org/ + false + true + true + + + + net.revelc.code.formatter + formatter-maven-plugin + 2.20.0 + + + + format + + + src/etc/eclipse-java-google-style.xml + UTF-8 + + + + +
    +
    + + + + org.apache.maven.plugins + maven-changes-plugin + 2.12.1 + + https://bitbucket.org/snakeyaml/snakeyaml/issues/%ISSUE% + + + + + changes-report + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${maven-surefire-plugin.version} + + true + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + html + + API for ${project.name} ${project.version} + API for ${project.name} ${project.version} + Test API for ${project.name} ${project.version} + Test API for ${project.name} ${project.version} + + + javadoc + + + + + + + + + with-java11-tests + + 11 + 11 + 11 + + + + + org.apache.maven.plugins + maven-surefire-plugin + + --illegal-access=${jdk11-illegal-access-level} -Xmx512m + + + + org.apache.maven.plugins + maven-compiler-plugin + + + -Xlint:deprecation + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-java11-test-source + generate-test-sources + + add-test-source + + + + ${basedir}/src/test/java8/ + ${basedir}/src/test/java11/ + + + + + + + + + + release + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + + + + + +
    diff --git a/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom.sha1 b/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom.sha1 new file mode 100644 index 000000000..1357685aa --- /dev/null +++ b/code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom.sha1 @@ -0,0 +1 @@ +7822ad1166dc36cfcbe1eb85434695ac6b549669 \ No newline at end of file diff --git a/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom b/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom new file mode 100644 index 000000000..e87f3df18 --- /dev/null +++ b/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom @@ -0,0 +1,208 @@ + + 4.0.0 + + oss-parent + org.sonatype.oss + 9 + + pl.pragmatists + JUnitParams + 1.1.0 + jar + JUnitParams + Better parameterised tests for JUnit + https://github.com/Pragmatists/JUnitParams + + + pawel.lipinski + Pawel Lipinski + pawel.lipinski@pragmatists.pl + Pragmatists + http://pragmatists.pl + + + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + A business-friendly OSS license + + + + GitHub Issues + https://github.com/Pragmatists/JUnitParams/issues + + + scm:git:git://github.com/Pragmatists/JUnitParams.git + scm:git:git@github.com:Pragmatists/JUnitParams.git + https://github.com/Pragmatists/JUnitParams + JUnitParams-1.1.0 + + + Pragmatists + http://pragmatists.pl + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.6 + true + + ossrh + https://oss.sonatype.org/ + false + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.3 + + 1.6 + 1.6 + UTF-8 + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.3 + + ${project.basedir}/src/main/javadoc;${project.basedir}/src/main/java + ${project.basedir} + false + ${javadoc-parameters} + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.17 + + + org.apache.maven.plugins + maven-jar-plugin + 2.6 + + + + 2 + pl.pragmatists.JUnitParams + ${project.version} + junitparams;version="${project.version}";uses:="org.junit" + org.junit;bundle-version="4.11.0" + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.14 + + + check-java16-sun + test + + check + + + + + + org.codehaus.mojo.signature + java16 + 1.1 + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + release + + + + + + + release + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + java8 + + 1.8 + + + -Xdoclint:none + + + + + + junit + junit + 4.12 + + + org.assertj + assertj-core + 1.7.1 + test + + + diff --git a/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom.sha1 b/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom.sha1 new file mode 100644 index 000000000..881008817 --- /dev/null +++ b/code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom.sha1 @@ -0,0 +1 @@ +65f7bacd5775963c59d6a8ba8128e162151e4644 \ No newline at end of file diff --git a/code/arachne/pl/pragmatists/JUnitParams/1.1.0/_remote.repositories b/code/arachne/pl/pragmatists/JUnitParams/1.1.0/_remote.repositories new file mode 100644 index 000000000..ec0ca8099 --- /dev/null +++ b/code/arachne/pl/pragmatists/JUnitParams/1.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:59 EDT 2024 +JUnitParams-1.1.0.pom>central= diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/_remote.repositories b/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/_remote.repositories new file mode 100644 index 000000000..4c30ca38a --- /dev/null +++ b/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:44 EDT 2024 +git-commit-id-plugin-parent-4.0.0.pom>central= diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom b/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom new file mode 100644 index 000000000..3687255e7 --- /dev/null +++ b/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom @@ -0,0 +1,282 @@ + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + pl.project13.maven + git-commit-id-plugin-parent + pom + 4.0.0 + Git Commit Id Plugin Parent + http://www.blog.project13.pl + + + + ktoso + Konrad Malawski + konrad.malawski@java.pl + project13.pl + http://blog.project13.pl + + + + + + GNU Lesser General Public License 3.0 + http://www.gnu.org/licenses/lgpl-3.0.txt + + + + + git@github.com/ktoso/maven-git-commit-id-plugin.git + scm:git:https://github.com/ktoso/maven-git-commit-id-plugin + scm:git:git@github.com:ktoso/maven-git-commit-id-plugin.git + v4.0.0 + + + + UTF-8 + UTF-8 + + 1.8 + + + + core + maven + + + + + + ${project.groupId} + git-commit-id-plugin-core + ${project.version} + + + com.google.guava + guava + 28.0-jre + + + + + + + + + maven-antrun-plugin + 1.8 + + + maven-assembly-plugin + 3.1.0 + + + maven-dependency-plugin + 3.1.1 + + + maven-release-plugin + 2.5.3 + + + maven-enforcer-plugin + 1.4.1 + + + maven-compiler-plugin + 3.8.0 + + + maven-gpg-plugin + 1.6 + + + maven-clean-plugin + 3.1.0 + + + maven-resources-plugin + 3.1.0 + + + maven-jar-plugin + 3.1.0 + + + maven-plugin-plugin + ${maven-plugin-plugin.version} + + + maven-surefire-plugin + 2.22.0 + + + maven-install-plugin + 2.5.2 + + + maven-deploy-plugin + 2.8.2 + + + maven-site-plugin + 3.7.1 + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${java.target} + ${java.target} + -Xlint:deprecation + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + gpg + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + coveralls + + + + org.eluder.coveralls + coveralls-maven-plugin + 4.3.0 + + + + + org.jacoco + jacoco-maven-plugin + 0.8.2 + + + prepare-agent + + prepare-agent + + + + + + + + + checkstyle + + 3.1.0 + + 8.25 + ${basedir}/.github/.checkstyle + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven-checkstyle-plugin.version} + + + com.puppycrawl.tools + checkstyle + ${checkstyle.version} + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven-checkstyle-plugin.version} + + + validate + verify + + check + + + ${checkstyle.config.path}/google_checks_checkstyle_${checkstyle.version}.xml + ${checkstyle.config.path}/checkstyle-suppressions.xml + samedir=${checkstyle.config.path} + true + ${project.reporting.outputEncoding} + true + warning + true + true + false + + + + + + + + + + checkstyle-root-dir + + + ${basedir}/../.github/.checkstyle + + + + ${basedir}/../.github/.checkstyle + + + + diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom.sha1 b/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom.sha1 new file mode 100644 index 000000000..628801b70 --- /dev/null +++ b/code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom.sha1 @@ -0,0 +1 @@ +75d1af95d6609fcab3c66b3bf9129d73358b8bd0 \ No newline at end of file diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/_remote.repositories b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/_remote.repositories new file mode 100644 index 000000000..4a11a62eb --- /dev/null +++ b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:45 EDT 2024 +git-commit-id-plugin-4.0.0.pom>central= +git-commit-id-plugin-4.0.0.jar>central= diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..ce7c6c7bf67d133b5f95c1cae32952d8126b3913 GIT binary patch literal 39013 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 C1V+vP literal 0 HcmV?d00001 diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar.sha1 b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar.sha1 new file mode 100644 index 000000000..28753c989 --- /dev/null +++ b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar.sha1 @@ -0,0 +1 @@ +617c292e0684828446cc765fb349bdbf4cacb0ce \ No newline at end of file diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom new file mode 100644 index 000000000..ebcac3b6f --- /dev/null +++ b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom @@ -0,0 +1,306 @@ + + 4.0.0 + + + pl.project13.maven + git-commit-id-plugin-parent + 4.0.0 + ../pom.xml + + + git-commit-id-plugin + maven-plugin + 4.0.0 + Git Commit Id Maven Plugin + + This plugin makes basic repository information available through maven resources. This can be used to display + "what version is this?" or "who has deployed this and when, from which branch?" information at runtime, making + it easy to find things like "oh, that isn't deployed yet, I'll test it tomorrow" and making both testers and + developers life easier. See https://github.com/git-commit-id/maven-git-commit-id-plugin + + + + [${maven-plugin-api.version},) + + + + UTF-8 + UTF-8 + + 1.8 + + 3.0 + 3.6.0 + + 5.5.1 + 3.1.0 + + 1.4 + + + + + + org.apache.maven + maven-plugin-api + ${maven-plugin-api.version} + + + org.apache.maven + maven-core + ${maven-plugin-api.version} + + + + ${project.groupId} + git-commit-id-plugin-core + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${maven-plugin-plugin.version} + provided + + + + + com.google.guava + guava + + + + + org.junit.jupiter + junit-jupiter-api + ${junit.version} + test + + + + org.easytesting + fest-assert + ${fest-assert.version} + test + + + + org.codehaus.plexus + plexus-utils + 3.3.0 + test + + + + org.mockito + mockito-core + ${mockito.version} + test + + + + commons-io + commons-io + 2.6 + jar + test + + + + pl.pragmatists + JUnitParams + 1.1.1 + test + + + + com.github.stefanbirkner + system-rules + 1.19.0 + test + + + + + org.slf4j + slf4j-simple + 1.7.25 + test + + + + + + + + src/main/resources + true + + **/*.properties + **/*.xml + + + + + + src/test/resources + + _git_*/** + README.md + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${java.target} + ${java.target} + -Xlint:deprecation + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + default-descriptor + process-classes + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + + + + gpg + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + demo + + + + pl.project13.maven + git-commit-id-plugin + ${project.version} + + + + get-the-git-infos + + revision + + + + validate-the-git-infos + + validateRevision + + package + + + + true + false + git + ${project.basedir}/.git + true + target/testing.properties + yyyy-MM-dd'T'HH:mm:ssZ + GMT-08:00 + false + 7 + properties + true + + false + false + 7 + * + -DEVEL + false + + + git.commit.* + git.remote.origin.url + + + + git.branch + something + ^([^\/]*)\/([^\/]*)$ + $1-$2 + + + BEFORE + UPPER_CASE + + + + + false + true + + + + validating project version + ${project.version} + + + + + validating git dirty + ${git.dirty} + false + + + true + + + + + + + diff --git a/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom.sha1 b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom.sha1 new file mode 100644 index 000000000..a1a62a99c --- /dev/null +++ b/code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom.sha1 @@ -0,0 +1 @@ +6394fe43b16b1e21b9ff58ee3e1c83db071b51e8 \ No newline at end of file diff --git a/code/arachne/stax/stax-api/1.0.1/_remote.repositories b/code/arachne/stax/stax-api/1.0.1/_remote.repositories new file mode 100644 index 000000000..b9dcb438a --- /dev/null +++ b/code/arachne/stax/stax-api/1.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:24:59 EDT 2024 +stax-api-1.0.1.pom>central= diff --git a/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom b/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom new file mode 100644 index 000000000..f61bcd3b6 --- /dev/null +++ b/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom @@ -0,0 +1,51 @@ + + 4.0.0 + stax + stax-api + StAX API + 1.0.1 + StAX API is the standard java XML processing API defined by JSR-173 + http://stax.codehaus.org/ + + http://jira.codehaus.org/browse/STAX + + + + + +
    dev@stax.codehaus.org
    +
    +
    +
    +
    + 2005 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + StAX Builders List + stax_builders-subscribe@yahoogroups.com + stax_builders-unsubscribe@yahoogroups.com + http://groups.yahoo.com/group/stax_builders/ + + + + + aslom + Aleksander Slominski + + Indiana University + + + chris + Chris Fry + + + + +
    \ No newline at end of file diff --git a/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom.sha1 b/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom.sha1 new file mode 100644 index 000000000..62fc4a564 --- /dev/null +++ b/code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom.sha1 @@ -0,0 +1 @@ +e3a933099229a34b22e9e78b2b999e1eb03b3e4e \ No newline at end of file diff --git a/code/arachne/xmlpull/xmlpull/1.1.3.1/_remote.repositories b/code/arachne/xmlpull/xmlpull/1.1.3.1/_remote.repositories new file mode 100644 index 000000000..780ee37ff --- /dev/null +++ b/code/arachne/xmlpull/xmlpull/1.1.3.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Tue Jul 16 10:23:54 EDT 2024 +xmlpull-1.1.3.1.pom>central= diff --git a/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom b/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom new file mode 100644 index 000000000..04c3a6621 --- /dev/null +++ b/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom @@ -0,0 +1,16 @@ + + 4.0.0 + xmlpull + xmlpull + 1.1.3.1 + XML Pull Parsing API + http://www.xmlpull.org + + + + Public Domain + http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt + + + + \ No newline at end of file diff --git a/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.sha1 b/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.sha1 new file mode 100644 index 000000000..fc773f24c --- /dev/null +++ b/code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.sha1 @@ -0,0 +1 @@ +02727a9a35d75a77344fea0e9866477aff7c19d6 \ No newline at end of file diff --git a/pom.xml b/pom.xml index c0108f7be..9918e00c8 100644 --- a/pom.xml +++ b/pom.xml @@ -539,6 +539,10 @@ true + + mdaca-OHDSI + https://mdaca-201959883603.d.codeartifact.us-east-2.amazonaws.com/maven/OHDSI/ + @@ -1506,7 +1510,7 @@ lower(email) = lower(?) - + webapi-docker unknown From b00cd25de947c236067f47c4e7455f5597c6ff15 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:27:01 -0400 Subject: [PATCH 057/141] Delete .github/workflows/release.yaml --- .github/workflows/release.yaml | 108 --------------------------------- 1 file changed, 108 deletions(-) delete mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml deleted file mode 100644 index a9624b5e1..000000000 --- a/.github/workflows/release.yaml +++ /dev/null @@ -1,108 +0,0 @@ -# Create release files -name: Release - -on: - release: - types: [published] - -env: - DOCKER_IMAGE: ohdsi/webapi - -jobs: - upload: - env: - MAVEN_PROFILE: webapi-postgresql - - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - - uses: actions/setup-java@v1 - with: - java-version: 8 - - - name: Maven cache - uses: actions/cache@v2 - with: - # Cache gradle directories - path: ~/.m2 - # Key for restoring and saving the cache - key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- - - - name: Build code - run: mvn -B -DskipTests=true -DskipUnitTests=true -P${{ env.MAVEN_PROFILE }} package - - # Upload it to GitHub - - name: Upload to GitHub - uses: AButler/upload-release-assets@v2.0 - with: - files: 'target/WebAPI.war' - repo-token: ${{ secrets.GITHUB_TOKEN }} - - # Build and push tagged release docker image to - # ohdsi/atlas: and ohdsi/atlas:latest. - docker: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - - uses: actions/checkout@v2 - - # Add Docker labels and tags - - name: Docker meta - id: docker_meta - uses: crazy-max/ghaction-docker-meta@v1 - with: - images: ${{ env.DOCKER_IMAGE }} - tag-match: v(.*) - tag-match-group: 1 - - # Setup docker build environment - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - - name: Login to DockerHub - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKER_HUB_USERNAME }} - password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} - - - name: Set build parameters - id: build_params - run: | - echo "::set-output name=sha8::${GITHUB_SHA::8}" - - - name: Build and push - id: docker_build - uses: docker/build-push-action@v2 - with: - context: ./ - file: ./Dockerfile - # Allow running the image on the architectures supported by nginx-unprivileged:alpine. - platforms: linux/amd64,linux/arm64 - push: true - build-args: | - GIT_BRANCH=${{ steps.docker_meta.outputs.version }} - GIT_COMMIT_ID_ABBREV=${{ steps.build_params.outputs.sha8 }} - tags: ${{ steps.docker_meta.outputs.tags }} - # Use runtime labels from docker_meta as well as fixed labels - labels: | - ${{ steps.docker_meta.outputs.labels }} - maintainer=Joris Borgdorff , Lee Evans - www.ltscomputingllc.com - org.opencontainers.image.authors=Joris Borgdorff , Lee Evans - www.ltscomputingllc.com - org.opencontainers.image.vendor=OHDSI - org.opencontainers.image.licenses=Apache-2.0 - - - name: Inspect image - run: | - docker pull ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }} - docker image inspect ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }} From 7160afc8f3c06f90518e22e3b992632cddd2b995 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:27:14 -0400 Subject: [PATCH 058/141] Update ci.yaml --- .github/workflows/ci.yaml | 131 -------------------------------------- 1 file changed, 131 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a06eecce1..8b1378917 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,132 +1 @@ -# Continuous integration -name: CI -# Run in master and dev branches and in all pull requests to those branches -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -env: - DOCKER_IMAGE: ohdsi/webapi - -jobs: - # Build and test the code - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - env: - MAVEN_PROFILE: webapi-postgresql - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - - uses: actions/setup-java@v1 - with: - java-version: 8 - - - name: Maven cache - uses: actions/cache@v2 - with: - # Cache gradle directories - path: ~/.m2 - # Key for restoring and saving the cache - key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- - - - name: Build code - run: mvn -B -DskipTests=true -DskipUnitTests=true -P${{ env.MAVEN_PROFILE }} package - - - name: Test - # Skipping unit and integration tests for now, because they keep failing. - run: mvn -B -DskipUnitTests=true -DskipITtests=true -P${{ env.MAVEN_PROFILE }} test - - # Check that the docker image builds correctly - # Push to ohdsi/atlas:master for commits on master. - docker: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - - name: Cache Docker layers - uses: actions/cache@v2 - with: - path: /tmp/.buildx-cache - key: ${{ runner.os }}-buildx-${{ github.sha }} - restore-keys: | - ${{ runner.os }}-buildx- - - # Add Docker labels and tags - - name: Docker meta - id: docker_meta - uses: crazy-max/ghaction-docker-meta@v1 - with: - images: ${{ env.DOCKER_IMAGE }} - - # Setup docker build environment - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - - name: Set build parameters - id: build_params - run: | - echo "::set-output name=sha8::${GITHUB_SHA::8}" - if [ ${{ github.event_name == 'pull_request' }} ]; then - echo "::set-output name=push::false" - echo "::set-output name=load::true" - echo "::set-output name=platforms::linux/amd64" - else - echo "::set-output name=push::true" - echo "::set-output name=load::false" - echo "::set-output name=platforms::linux/amd64,linux/arm64" - fi - - - name: Login to DockerHub - uses: docker/login-action@v1 - if: steps.build_params.outputs.push == 'true' - with: - username: ${{ secrets.DOCKER_HUB_USERNAME }} - password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} - - - name: Build and push - id: docker_build - uses: docker/build-push-action@v2 - with: - context: ./ - file: ./Dockerfile - cache-from: type=local,src=/tmp/.buildx-cache - cache-to: type=local,dest=/tmp/.buildx-cache,mode=max - platforms: ${{ steps.build_params.outputs.platforms }} - push: ${{ steps.build_params.outputs.push }} - load: ${{ steps.build_params.outputs.load }} - build-args: | - GIT_BRANCH=${{ steps.docker_meta.outputs.version }} - GIT_COMMIT_ID_ABBREV=${{ steps.build_params.outputs.sha8 }} - tags: ${{ steps.docker_meta.outputs.tags }} - # Use runtime labels from docker_meta as well as fixed labels - labels: | - ${{ steps.docker_meta.outputs.labels }} - maintainer=Joris Borgdorff , Lee Evans - www.ltscomputingllc.com - org.opencontainers.image.authors=Joris Borgdorff , Lee Evans - www.ltscomputingllc.com - org.opencontainers.image.vendor=OHDSI - org.opencontainers.image.licenses=Apache-2.0 - - # If the image was pushed, we need to pull it again to inspect it - - name: Pull image - if: steps.build_params.outputs.push == 'true' - run: docker pull ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }} - - - name: Inspect image - run: | - docker image inspect ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }} From 9109a1b790b8d817c2f72abd8b72b8b9e6f641d8 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:58:55 -0400 Subject: [PATCH 059/141] Update pom.xml --- pom.xml | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/pom.xml b/pom.xml index 9918e00c8..02cfe815c 100644 --- a/pom.xml +++ b/pom.xml @@ -2081,5 +2081,62 @@ --> + + webapi-docker-mdaca-codeartifact + + unknown + unknown + true + none + true + org.postgresql.Driver + jdbc:postgresql://54.209.111.128:5432/vocabularyv5 + USER + PASS + postgresql + ohdsi + ${datasource.driverClassName} + ${datasource.url} + userWithWritesToOhdsiSchema + PASS + ${datasource.ohdsi.schema} + ${datasource.ohdsi.schema} + classpath:db/migration/postgresql + ${datasource.ohdsi.schema}.BATCH_ + org.hibernate.dialect.PostgreSQL9Dialect + ${datasource.url} + ${datasource.driverClassName} + ${datasource.username} + ${datasource.password} + select password from ${security.db.datasource.schema}.users_data where \ + lower(email) = lower(?) + + + + + ohdsi.snapshots + repo.ohdsi.org-snapshots + https://repo.ohdsi.org/nexus/content/repositories/snapshots + + false + + + true + + + + + mdaca-OHDSI + AWS CodeArtifact MDACA OHDSI Repository + https://mdaca-201959883603.d.codeartifact.us-east-2.amazonaws.com/maven/OHDSI/ + + true + + + false + + + + From ba96db96554441f0e11055585a3fa1826e6b26ae Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:07:17 -0400 Subject: [PATCH 060/141] Create settings.xml --- .m2/settings.xml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .m2/settings.xml diff --git a/.m2/settings.xml b/.m2/settings.xml new file mode 100644 index 000000000..4f28f0d51 --- /dev/null +++ b/.m2/settings.xml @@ -0,0 +1,24 @@ + + + + codeartifact + aws + ${env.CODEARTIFACT_AUTH_TOKEN} + + + + + + codeartifact + + true + + + + mdaca-OHDSI + https://mdaca-201959883603.d.codeartifact.us-east-2.amazonaws.com/maven/OHDSI/ + + + + + From 8b9ca7ebf5e327c3283c6b1a77864d684802e6c6 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:13:04 -0400 Subject: [PATCH 061/141] Create Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 1 + 1 file changed, 1 insertion(+) create mode 100644 Dockerfile-mvn-no-local diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/Dockerfile-mvn-no-local @@ -0,0 +1 @@ + From e2ba15c8de22a29804d060f5d2adbfae98dfd04a Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:24:45 -0400 Subject: [PATCH 062/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 62 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 8b1378917..3e1362404 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -1 +1,63 @@ +FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder +WORKDIR /code +ARG MAVEN_PROFILE=webapi-docker +ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true + +# Install curl +RUN apk add --no-cache curl + +ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 +RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar + + + +# OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 +# FROM openjdk:17-jdk-slim +# FROM eclipse-temurin:17-jre-alpine +ARG BASE_REGISTRY=201959883603.dkr.ecr.us-east-2.amazonaws.com +ARG BASE_IMAGE_PATH=mdaca/base-images/ironbank-alpine-java +ARG BASE_TAG=3.20.2_jdk17 +ARG BASE_IMAGE=${BASE_REGISTRY}/${BASE_IMAGE_PATH}:${BASE_TAG} +ARG $BASE_IMAGE +FROM $BASE_IMAGE + +# Any Java options to pass along, e.g. memory, garbage collection, etc. +ENV JAVA_OPTS="" +# Additional classpath parameters to pass along. If provided, start with colon ":" +ENV CLASSPATH="" +# Default Java options. The first entry is a fix for when java reads secure random numbers: +# in a containerized system using /dev/random may reduce entropy too much, causing slowdowns. +# https://ruleoftech.com/2016/avoiding-jvm-delays-caused-by-random-number-generation +ENV DEFAULT_JAVA_OPTS="-Djava.security.egd=file:///dev/./urandom" + +# set working directory to a fixed WebAPI directory +WORKDIR /var/lib/ohdsi/webapi + +COPY --from=builder /code/opentelemetry-javaagent.jar . + +# deploy the just built OHDSI WebAPI war file +# copy resources in order of fewest changes to most changes. +# This way, the libraries step is not duplicated if the dependencies +# do not change. +COPY --from=builder /code/war/WEB-INF/lib*/* WEB-INF/lib/ +COPY --from=builder /code/war/org org +COPY --from=builder /code/war/WEB-INF/classes WEB-INF/classes +COPY --from=builder /code/war/META-INF META-INF + +ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://host.docker.internal:5432/OHDSI?currentSchema=webapi" +# ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://10.0.21.93:32000/OHDSI?currentSchema=webapi" +ENV WEBAPI_DATASOURCE_USERNAME=ohdsi_app_user +ENV WEBAPI_DATASOURCE_PASSWORD=app1 +ENV WEBAPI_SCHEMA=webapi +ENV FLYWAY_DATASOURCE_USERNAME=ohdsi_admin_user +ENV FLYWAY_DATASOURCE_PASSWORD=admin1 + +EXPOSE 8080 + +USER 101 + +# Directly run the code as a WAR. +CMD exec java ${DEFAULT_JAVA_OPTS} ${JAVA_OPTS} \ + -cp ".:WebAPI.jar:WEB-INF/lib/*.jar${CLASSPATH}" \ + org.springframework.boot.loader.launch.WarLauncher From 6eb654dcda9b0600519391bc5f7bbe557897881c Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:25:50 -0400 Subject: [PATCH 063/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 3e1362404..eb21f8b0e 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -13,14 +13,7 @@ RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentat # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 -# FROM openjdk:17-jdk-slim -# FROM eclipse-temurin:17-jre-alpine -ARG BASE_REGISTRY=201959883603.dkr.ecr.us-east-2.amazonaws.com -ARG BASE_IMAGE_PATH=mdaca/base-images/ironbank-alpine-java -ARG BASE_TAG=3.20.2_jdk17 -ARG BASE_IMAGE=${BASE_REGISTRY}/${BASE_IMAGE_PATH}:${BASE_TAG} -ARG $BASE_IMAGE -FROM $BASE_IMAGE +FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.2_jdk17 # Any Java options to pass along, e.g. memory, garbage collection, etc. ENV JAVA_OPTS="" From 3a082d7195a3bc8d3c2092d2dc774696a6cee2ae Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:27:22 -0400 Subject: [PATCH 064/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index eb21f8b0e..7144a9587 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -2,14 +2,29 @@ FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder WORKDIR /code ARG MAVEN_PROFILE=webapi-docker -ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true - -# Install curl -RUN apk add --no-cache curl +ARG MAVEN_PARAMS="" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar +# Download dependencies +COPY pom.xml /code/ +RUN mkdir .git \ + && mvn package \ + -P${MAVEN_PROFILE} + +ARG GIT_BRANCH=unknown +ARG GIT_COMMIT_ID_ABBREV=unknown + +# Compile code and repackage it +COPY src /code/src +RUN mvn package ${MAVEN_PARAMS} \ + -P${MAVEN_PROFILE} \ + && mkdir war \ + && mv target/WebAPI.war war \ + && cd war \ + && jar -xf WebAPI.war \ + && rm WebAPI.war # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 From 2526f3be3697c50631331708b03abd5da947886b Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:28:42 -0400 Subject: [PATCH 065/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 7144a9587..8ad43ed35 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -20,11 +20,6 @@ ARG GIT_COMMIT_ID_ABBREV=unknown COPY src /code/src RUN mvn package ${MAVEN_PARAMS} \ -P${MAVEN_PROFILE} \ - && mkdir war \ - && mv target/WebAPI.war war \ - && cd war \ - && jar -xf WebAPI.war \ - && rm WebAPI.war # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 From ac6725362ee8e61b4b0fc81bacd371bdf963a5fc Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:30:11 -0400 Subject: [PATCH 066/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 8ad43ed35..81f947f6f 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -2,7 +2,7 @@ FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder WORKDIR /code ARG MAVEN_PROFILE=webapi-docker -ARG MAVEN_PARAMS="" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true +ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar @@ -13,9 +13,6 @@ RUN mkdir .git \ && mvn package \ -P${MAVEN_PROFILE} -ARG GIT_BRANCH=unknown -ARG GIT_COMMIT_ID_ABBREV=unknown - # Compile code and repackage it COPY src /code/src RUN mvn package ${MAVEN_PARAMS} \ From 7801312025c4bd29062c70f33c0be83b7ad4a894 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:39:03 -0400 Subject: [PATCH 067/141] Update ci.yaml --- .github/workflows/ci.yaml | 105 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8b1378917..dd8f0d36d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1 +1,106 @@ +name: Docker Maven Build and Push Docker Image to MDACA ECR +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Build and Push Docker Image + env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + AWS_REGION: us-east-2 + IMAGE_TAG: 3.0.1 + ECR_REPOSITORY: mdaca/ohdsi/webapi + run: | + # Set ENV for AW Cred + aws configure set aws_access_key_id $AWS_ACCESS_KEY_ID + aws configure set aws_secret_access_key $AWS_SECRET_ACCESS_KEY + aws configure set default.region $AWS_REGION + + # Get token from ECR and Docker login + aws ecr get-login-password --region $AWS_REGION | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com + IMAGE_TAG=3.20.2 + + # Set ENV for Docker build + ECR_REPOSITORY=mdaca/ohdsi/webapi + REPOSITORY=$ECR_REPOSITORY + REGISTRY=201959883603.dkr.ecr.us-east-2.amazonaws.com + + # Build the Docker image + docker build -f Dockerfile-mvn-no-local -t $REGISTRY/$REPOSITORY:$IMAGE_TAG . + + # Push the Docker image + docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG + + security: + runs-on: ubuntu-latest + needs: build + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + + - name: Download Docker Image from ECR + env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + AWS_REGION: ${{ secrets.AWS_REGION }} + IMAGE_TAG: 3.0.1 + ECR_REPOSITORY: mdaca/ohdsi/webapi + run: | + # Set ENV for AW Cred + aws configure set aws_access_key_id $AWS_ACCESS_KEY_ID + aws configure set aws_secret_access_key $AWS_SECRET_ACCESS_KEY + aws configure set default.region $AWS_REGION + + # Get token from ECR and Docker login + aws ecr get-login-password --region $AWS_REGION | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com + IMAGE_TAG=3.0.1 + + docker pull ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG + docker images + - name: Install Trivy + run: | + curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sudo sh -s -- -b /usr/local/bin + + - name: Scan Docker Image with Trivy + env: + AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} + AWS_REGION: ${{ secrets.AWS_REGION }} + IMAGE_TAG: 3.0.1 + ECR_REPOSITORY: mdaca/ohdsi/webapi + run: | + trivy image --exit-code 1 --severity HIGH,CRITICAL $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG + + - name: Install Syft + run: | + curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sudo sh -s -- -b /usr/local/bin + + - name: Generate SBOM with Syft + env: + AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} + AWS_REGION: ${{ secrets.AWS_REGION }} + IMAGE_TAG: 3.0.1 + ECR_REPOSITORY: mdaca/ohdsi/webapi + run: | + syft $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG + syft $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG > OHDSI-WEBAPI-sbom.tf + + - name: Upload SBOM + uses: actions/upload-artifact@v3 + with: + name: sbom + path: OHDSI-WEBAPI-sbom.tf From a1749488158004a8650b6de923ae4b6cbe55f748 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:40:06 -0400 Subject: [PATCH 068/141] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index dd8f0d36d..99c0a6867 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,7 +3,7 @@ name: Docker Maven Build and Push Docker Image to MDACA ECR on: push: branches: - - main + - mdaca-3.0.1 jobs: build: From 74363d97bfe685394b1d575fb7c61568af55462f Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:42:40 -0400 Subject: [PATCH 069/141] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 99c0a6867..3f386bbe5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,7 +31,7 @@ jobs: # Get token from ECR and Docker login aws ecr get-login-password --region $AWS_REGION | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com - IMAGE_TAG=3.20.2 + IMAGE_TAG=3.0.1 # Set ENV for Docker build ECR_REPOSITORY=mdaca/ohdsi/webapi From 5a8f838c921303a3a4fa09ffa1a747bb5213bd7e Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:47:23 -0400 Subject: [PATCH 070/141] Update ci.yaml --- .github/workflows/ci.yaml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3f386bbe5..45329eadf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,16 +18,24 @@ jobs: - name: Build and Push Docker Image env: - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - AWS_REGION: us-east-2 IMAGE_TAG: 3.0.1 ECR_REPOSITORY: mdaca/ohdsi/webapi + AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + AWS_REGION: ${{ secrets.AWS_REGION }} run: | - # Set ENV for AW Cred + # Set ENV for AWS ECR and CodeArtifact Creds aws configure set aws_access_key_id $AWS_ACCESS_KEY_ID aws configure set aws_secret_access_key $AWS_SECRET_ACCESS_KEY aws configure set default.region $AWS_REGION + echo "Running Maven Build" + export CODEARTIFACT_AUTH_TOKEN=$(aws codeartifact get-authorization-token \ + --domain ${{ secrets.CODEARTIFACT_DOMAIN }} \ + --domain-owner $AWS_ACCOUNT_ID \ + --region $AWS_REGION \ + --query authorizationToken \ + --output text) # Get token from ECR and Docker login aws ecr get-login-password --region $AWS_REGION | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com From 5ee01409491f70369196bf2a2b6bff89b9ebf127 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:49:48 -0400 Subject: [PATCH 071/141] Update ci.yaml --- .github/workflows/ci.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 45329eadf..94e03528a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -47,7 +47,12 @@ jobs: REGISTRY=201959883603.dkr.ecr.us-east-2.amazonaws.com # Build the Docker image - docker build -f Dockerfile-mvn-no-local -t $REGISTRY/$REPOSITORY:$IMAGE_TAG . + docker build --build-arg CODEARTIFACT_AUTH_TOKEN=$(aws codeartifact get-authorization-token \ + --domain ${{ secrets.CODEARTIFACT_DOMAIN }} \ + --domain-owner $AWS_ACCOUNT_ID \ + --region $AWS_REGION \ + --query authorizationToken \ + --output text) -f Dockerfile-mvn-no-local -t $REGISTRY/$REPOSITORY:$IMAGE_TAG . # Push the Docker image docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG From c5c0d36625e504167170fee9dd6db6dd1d09b935 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:50:51 -0400 Subject: [PATCH 072/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 81f947f6f..6d4df9080 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -1,10 +1,11 @@ FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder WORKDIR /code - +ARG $CODE ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 +ENV $(CODE RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar # Download dependencies From b936eca3b2102c638969a47e5292bd226ee08252 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:51:44 -0400 Subject: [PATCH 073/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 6d4df9080..84b0f3bb8 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -1,11 +1,11 @@ FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder WORKDIR /code -ARG $CODE +ARG $CODEARTIFACT_AUTH_TOKEN ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 -ENV $(CODE +ENV $(CODEARTIFACT_AUTH_TOKEN) RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar # Download dependencies From d21239bb62b516f004aa49eb144f3f858c1eabfc Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:53:30 -0400 Subject: [PATCH 074/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 84b0f3bb8..a8d1c67ad 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -5,7 +5,7 @@ ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 -ENV $(CODEARTIFACT_AUTH_TOKEN) +ENV CODEARTIFACT_AUTH_TOKEN=$(CODEARTIFACT_AUTH_TOKEN) RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar # Download dependencies From 843b8c35d05c2f76bac8220dcfb3dde27dd6428f Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 19:58:01 -0400 Subject: [PATCH 075/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index a8d1c67ad..04832c0df 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -1,24 +1,21 @@ FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder WORKDIR /code -ARG $CODEARTIFACT_AUTH_TOKEN +ARG CODEARTIFACT_AUTH_TOKEN ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 -ENV CODEARTIFACT_AUTH_TOKEN=$(CODEARTIFACT_AUTH_TOKEN) +ENV CODEARTIFACT_AUTH_TOKEN=${CODEARTIFACT_AUTH_TOKEN} RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar # Download dependencies COPY pom.xml /code/ RUN mkdir .git \ - && mvn package \ - -P${MAVEN_PROFILE} + && mvn package -P${MAVEN_PROFILE} # Compile code and repackage it COPY src /code/src -RUN mvn package ${MAVEN_PARAMS} \ - -P${MAVEN_PROFILE} \ - +RUN mvn package ${MAVEN_PARAMS} -P${MAVEN_PROFILE} # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.2_jdk17 From 8c4c6c4fce28d594a9adeef9d1b895f4b507c1a6 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:06:13 -0400 Subject: [PATCH 076/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 04832c0df..7ed4a7545 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -3,7 +3,7 @@ WORKDIR /code ARG CODEARTIFACT_AUTH_TOKEN ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true - +ARG MAVEN_M2="m2/settings.xml" ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 ENV CODEARTIFACT_AUTH_TOKEN=${CODEARTIFACT_AUTH_TOKEN} RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar @@ -11,11 +11,11 @@ RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentat # Download dependencies COPY pom.xml /code/ RUN mkdir .git \ - && mvn package -P${MAVEN_PROFILE} + && mvn package -s ${MAVEN_M2} -P${MAVEN_PROFILE} # Compile code and repackage it COPY src /code/src -RUN mvn package ${MAVEN_PARAMS} -P${MAVEN_PROFILE} +RUN mvn package -s ${MAVEN_PARAMS} -P${MAVEN_PROFILE} # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.2_jdk17 From 0f73208b54609f405d78c0d5dc9946e8ec1efca3 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:09:17 -0400 Subject: [PATCH 077/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 7ed4a7545..40c9bf8ff 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -3,7 +3,7 @@ WORKDIR /code ARG CODEARTIFACT_AUTH_TOKEN ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true -ARG MAVEN_M2="m2/settings.xml" +ARG MAVEN_M2=".m2/settings.xml" ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 ENV CODEARTIFACT_AUTH_TOKEN=${CODEARTIFACT_AUTH_TOKEN} RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar From fade00405ffe4f89e6229bd93368ae41776a5d0b Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:12:55 -0400 Subject: [PATCH 078/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 40c9bf8ff..da5f3b65b 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -3,11 +3,13 @@ WORKDIR /code ARG CODEARTIFACT_AUTH_TOKEN ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true -ARG MAVEN_M2=".m2/settings.xml" +ARG MAVEN_M2="~/.m2/settings.xml" ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 ENV CODEARTIFACT_AUTH_TOKEN=${CODEARTIFACT_AUTH_TOKEN} RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar +# Copy .m2 folder +COPY .m2 /root # Download dependencies COPY pom.xml /code/ RUN mkdir .git \ From 4ce36a6dd2696813395f593c5042d1d95e346cfd Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:14:59 -0400 Subject: [PATCH 079/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index da5f3b65b..8e8b594c4 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -3,7 +3,7 @@ WORKDIR /code ARG CODEARTIFACT_AUTH_TOKEN ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true -ARG MAVEN_M2="~/.m2/settings.xml" +ARG MAVEN_M2="/root/.m2/settings.xml" ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 ENV CODEARTIFACT_AUTH_TOKEN=${CODEARTIFACT_AUTH_TOKEN} RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar From b302323333acb5096fd45a1f1000d38951fc2d22 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:19:17 -0400 Subject: [PATCH 080/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 8e8b594c4..6123f6249 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -3,13 +3,14 @@ WORKDIR /code ARG CODEARTIFACT_AUTH_TOKEN ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true -ARG MAVEN_M2="/root/.m2/settings.xml" +ARG MAVEN_M2="/code/.m2/settings.xml" ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 ENV CODEARTIFACT_AUTH_TOKEN=${CODEARTIFACT_AUTH_TOKEN} RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar # Copy .m2 folder -COPY .m2 /root +COPY .m2 .m2 + # Download dependencies COPY pom.xml /code/ RUN mkdir .git \ @@ -17,7 +18,7 @@ RUN mkdir .git \ # Compile code and repackage it COPY src /code/src -RUN mvn package -s ${MAVEN_PARAMS} -P${MAVEN_PROFILE} +RUN mvn package -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.2_jdk17 From fbfdf5b4d08dfc70df4c498a6e6efd3bc57c54bd Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:24:39 -0400 Subject: [PATCH 081/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 6123f6249..73a23ebe5 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -13,12 +13,7 @@ COPY .m2 .m2 # Download dependencies COPY pom.xml /code/ -RUN mkdir .git \ - && mvn package -s ${MAVEN_M2} -P${MAVEN_PROFILE} - -# Compile code and repackage it -COPY src /code/src -RUN mvn package -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} +RUN echo "$CODEARTIFACT_AUTH_TOKEN" && cat .m2/settings.xml && $mvn package -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.2_jdk17 From 8193b05f77b40f8041f721ece5dcea59217b05b5 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:30:10 -0400 Subject: [PATCH 082/141] Update ci.yaml --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 94e03528a..6a1076ff9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,7 +30,7 @@ jobs: aws configure set aws_secret_access_key $AWS_SECRET_ACCESS_KEY aws configure set default.region $AWS_REGION echo "Running Maven Build" - export CODEARTIFACT_AUTH_TOKEN=$(aws codeartifact get-authorization-token \ + export GET_CODEARTIFACT_AUTH_TOKEN=$(aws codeartifact get-authorization-token \ --domain ${{ secrets.CODEARTIFACT_DOMAIN }} \ --domain-owner $AWS_ACCOUNT_ID \ --region $AWS_REGION \ @@ -47,7 +47,7 @@ jobs: REGISTRY=201959883603.dkr.ecr.us-east-2.amazonaws.com # Build the Docker image - docker build --build-arg CODEARTIFACT_AUTH_TOKEN=$(aws codeartifact get-authorization-token \ + docker build --build-arg CODEARTIFACT_AUTH_TOKEN=$GET_CODEARTIFACT_AUTH_TOKEN \ --domain ${{ secrets.CODEARTIFACT_DOMAIN }} \ --domain-owner $AWS_ACCOUNT_ID \ --region $AWS_REGION \ From a2b6ba8b9cccda31d15c53dbc7e7aa7229acfe24 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:34:33 -0400 Subject: [PATCH 083/141] Update ci.yaml --- .github/workflows/ci.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6a1076ff9..9c85fe573 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -47,12 +47,7 @@ jobs: REGISTRY=201959883603.dkr.ecr.us-east-2.amazonaws.com # Build the Docker image - docker build --build-arg CODEARTIFACT_AUTH_TOKEN=$GET_CODEARTIFACT_AUTH_TOKEN \ - --domain ${{ secrets.CODEARTIFACT_DOMAIN }} \ - --domain-owner $AWS_ACCOUNT_ID \ - --region $AWS_REGION \ - --query authorizationToken \ - --output text) -f Dockerfile-mvn-no-local -t $REGISTRY/$REPOSITORY:$IMAGE_TAG . + docker build --build-arg CODEARTIFACT_AUTH_TOKEN=$GET_CODEARTIFACT_AUTH_TOKEN -f Dockerfile-mvn-no-local -t $REGISTRY/$REPOSITORY:$IMAGE_TAG . # Push the Docker image docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG From bc153d0ea13e8fd03bdac1a3f37ab0ec18bf4913 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:50:25 -0400 Subject: [PATCH 084/141] Update ci.yaml --- .github/workflows/ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9c85fe573..9e4a4ec2d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,7 +35,8 @@ jobs: --domain-owner $AWS_ACCOUNT_ID \ --region $AWS_REGION \ --query authorizationToken \ - --output text) + --output text) > codeartifcact-auth + export CODEARTIFACT_AUTH_TOKEN=$(cat codeartifcact-auth) # Get token from ECR and Docker login aws ecr get-login-password --region $AWS_REGION | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com @@ -47,7 +48,7 @@ jobs: REGISTRY=201959883603.dkr.ecr.us-east-2.amazonaws.com # Build the Docker image - docker build --build-arg CODEARTIFACT_AUTH_TOKEN=$GET_CODEARTIFACT_AUTH_TOKEN -f Dockerfile-mvn-no-local -t $REGISTRY/$REPOSITORY:$IMAGE_TAG . + docker build --build-arg CODEARTIFACT_AUTH_TOKEN=$CODEARTIFACT_AUTH_TOKEN -f Dockerfile-mvn-no-local -t $REGISTRY/$REPOSITORY:$IMAGE_TAG . # Push the Docker image docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG From 4a81413538d18a86cab8eb5a0f06ec34aeeb4cef Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:56:02 -0400 Subject: [PATCH 085/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 73a23ebe5..247bcc904 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -6,14 +6,14 @@ ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # ca ARG MAVEN_M2="/code/.m2/settings.xml" ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 ENV CODEARTIFACT_AUTH_TOKEN=${CODEARTIFACT_AUTH_TOKEN} -RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar +RUN "$CODEARTIFACT_AUTH_TOKEN && curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar # Copy .m2 folder COPY .m2 .m2 # Download dependencies COPY pom.xml /code/ -RUN echo "$CODEARTIFACT_AUTH_TOKEN" && cat .m2/settings.xml && $mvn package -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} +RUN mvn package -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.2_jdk17 From d69f190e9b8a05d83aa3a58ced19dbe42914263d Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:59:18 -0400 Subject: [PATCH 086/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 247bcc904..807dcce82 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -6,10 +6,10 @@ ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # ca ARG MAVEN_M2="/code/.m2/settings.xml" ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 ENV CODEARTIFACT_AUTH_TOKEN=${CODEARTIFACT_AUTH_TOKEN} -RUN "$CODEARTIFACT_AUTH_TOKEN && curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar +RUN echo $CODEARTIFACT_AUTH_TOKEN && curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar # Copy .m2 folder -COPY .m2 .m2 +COPY .m2 /code/.m2 # Download dependencies COPY pom.xml /code/ From 846f213bc2f247785701fb2bc0e3a3d4478379a9 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:05:43 -0400 Subject: [PATCH 087/141] Update ci.yaml --- .github/workflows/ci.yaml | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9e4a4ec2d..b6391d945 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,29 +29,31 @@ jobs: aws configure set aws_access_key_id $AWS_ACCESS_KEY_ID aws configure set aws_secret_access_key $AWS_SECRET_ACCESS_KEY aws configure set default.region $AWS_REGION + echo "Running Maven Build" - export GET_CODEARTIFACT_AUTH_TOKEN=$(aws codeartifact get-authorization-token \ + CODEARTIFACT_TOKEN_FILE=${{ github.workspace }}/codeartifact-auth + + aws codeartifact get-authorization-token \ --domain ${{ secrets.CODEARTIFACT_DOMAIN }} \ --domain-owner $AWS_ACCOUNT_ID \ --region $AWS_REGION \ --query authorizationToken \ - --output text) > codeartifcact-auth - export CODEARTIFACT_AUTH_TOKEN=$(cat codeartifcact-auth) - + --output text > $CODEARTIFACT_TOKEN_FILE + + export CODEARTIFACT_AUTH_TOKEN=$(cat $CODEARTIFACT_TOKEN_FILE) + echo "$CODEARTIFACT_AUTH_TOKEN" + # Get token from ECR and Docker login - aws ecr get-login-password --region $AWS_REGION | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com - IMAGE_TAG=3.0.1 - - # Set ENV for Docker build - ECR_REPOSITORY=mdaca/ohdsi/webapi - REPOSITORY=$ECR_REPOSITORY - REGISTRY=201959883603.dkr.ecr.us-east-2.amazonaws.com + aws ecr get-login-password --region $AWS_REGION | docker login --username AWS --password-stdin $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com + + REGISTRY=$AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com # Build the Docker image - docker build --build-arg CODEARTIFACT_AUTH_TOKEN=$CODEARTIFACT_AUTH_TOKEN -f Dockerfile-mvn-no-local -t $REGISTRY/$REPOSITORY:$IMAGE_TAG . + docker build --build-arg CODEARTIFACT_AUTH_TOKEN=$CODEARTIFACT_AUTH_TOKEN -f Dockerfile-mvn-no-local -t $REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . # Push the Docker image - docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG + docker push $REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG + security: runs-on: ubuntu-latest From 50227d97277e2e96dc3cca38966200f50a384b2d Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:15:31 -0400 Subject: [PATCH 088/141] Update pom.xml --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 02cfe815c..d340522f5 100644 --- a/pom.xml +++ b/pom.xml @@ -540,7 +540,7 @@ - mdaca-OHDSI + codeartifact https://mdaca-201959883603.d.codeartifact.us-east-2.amazonaws.com/maven/OHDSI/ @@ -2126,7 +2126,7 @@ - mdaca-OHDSI + codeartifact AWS CodeArtifact MDACA OHDSI Repository https://mdaca-201959883603.d.codeartifact.us-east-2.amazonaws.com/maven/OHDSI/ From 13c2b43fd70bb9cae30aa0052adb30b3a9058f2b Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:15:54 -0400 Subject: [PATCH 089/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 807dcce82..1d64ef8d5 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -1,7 +1,7 @@ FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder WORKDIR /code ARG CODEARTIFACT_AUTH_TOKEN -ARG MAVEN_PROFILE=webapi-docker +ARG MAVEN_PROFILE=webapi-docker-mdaca-codeartifact ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true ARG MAVEN_M2="/code/.m2/settings.xml" ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 From 2b26c2d64e08c43a81ce2658b5bf3fd9d82ec400 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:26:56 -0400 Subject: [PATCH 090/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 1d64ef8d5..4323fe406 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -13,8 +13,8 @@ COPY .m2 /code/.m2 # Download dependencies COPY pom.xml /code/ -RUN mvn package -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} - +RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} +COPY src /code/src # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.2_jdk17 From 649be12e3ed9215c72153015bb6e59de0d8f5eb2 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:29:12 -0400 Subject: [PATCH 091/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 4323fe406..363a9ebe3 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -15,6 +15,8 @@ COPY .m2 /code/.m2 COPY pom.xml /code/ RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} COPY src /code/src +RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} + # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.2_jdk17 From 22cc5ff9c04806c8ca13676e1dd4b19c0c103bbc Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:36:24 -0400 Subject: [PATCH 092/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 363a9ebe3..dac7fbce6 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -15,7 +15,12 @@ COPY .m2 /code/.m2 COPY pom.xml /code/ RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} COPY src /code/src -RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} +RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} && \ + && mkdir war \ + && mv target/WebAPI.war war \ + && cd war \ + && jar -xf WebAPI.war \ + && rm WebAPI.war # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.2_jdk17 From 509bb691967d9549d6edcce9be93fdd1f2bcc901 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:40:39 -0400 Subject: [PATCH 093/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index dac7fbce6..6f0722549 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -34,19 +34,20 @@ ENV CLASSPATH="" # https://ruleoftech.com/2016/avoiding-jvm-delays-caused-by-random-number-generation ENV DEFAULT_JAVA_OPTS="-Djava.security.egd=file:///dev/./urandom" -# set working directory to a fixed WebAPI directory +# Create and make working directory to a fixed WebAPI directory +RUN mkdir -p WORKDIR /var/lib/ohdsi/webapi && chown -R 101:101 /var/lib/ohdsi/webapi WORKDIR /var/lib/ohdsi/webapi -COPY --from=builder /code/opentelemetry-javaagent.jar . +COPY --from=builder --chown=101 /code/opentelemetry-javaagent.jar . # deploy the just built OHDSI WebAPI war file # copy resources in order of fewest changes to most changes. # This way, the libraries step is not duplicated if the dependencies # do not change. -COPY --from=builder /code/war/WEB-INF/lib*/* WEB-INF/lib/ -COPY --from=builder /code/war/org org -COPY --from=builder /code/war/WEB-INF/classes WEB-INF/classes -COPY --from=builder /code/war/META-INF META-INF +COPY --from=builder --chown=101 /code/war/WEB-INF/lib*/* WEB-INF/lib/ +COPY --from=builder --chown=101 /code/war/org org +COPY --from=builder --chown=101 /code/war/WEB-INF/classes WEB-INF/classes +COPY --from=builder --chown=101 /code/war/META-INF META-INF ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://host.docker.internal:5432/OHDSI?currentSchema=webapi" # ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://10.0.21.93:32000/OHDSI?currentSchema=webapi" From 043e7f04f4595cad532f3ad570cecb23af863127 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:49:18 -0400 Subject: [PATCH 094/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 6f0722549..248c9481c 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -35,7 +35,7 @@ ENV CLASSPATH="" ENV DEFAULT_JAVA_OPTS="-Djava.security.egd=file:///dev/./urandom" # Create and make working directory to a fixed WebAPI directory -RUN mkdir -p WORKDIR /var/lib/ohdsi/webapi && chown -R 101:101 /var/lib/ohdsi/webapi +RUN addgroup -S webapi && adduser -S -G webapi webapi && mkdir -p /var/lib/ohdsi/webapi && chown -R webapi:webapi /var/lib/ohdsi/webapi WORKDIR /var/lib/ohdsi/webapi COPY --from=builder --chown=101 /code/opentelemetry-javaagent.jar . @@ -44,10 +44,10 @@ COPY --from=builder --chown=101 /code/opentelemetry-javaagent.jar . # copy resources in order of fewest changes to most changes. # This way, the libraries step is not duplicated if the dependencies # do not change. -COPY --from=builder --chown=101 /code/war/WEB-INF/lib*/* WEB-INF/lib/ -COPY --from=builder --chown=101 /code/war/org org -COPY --from=builder --chown=101 /code/war/WEB-INF/classes WEB-INF/classes -COPY --from=builder --chown=101 /code/war/META-INF META-INF +COPY --from=builder --chown=webapi /code/war/WEB-INF/lib*/* WEB-INF/lib/ +COPY --from=builder --chown=webapi /code/war/org org +COPY --from=builder --chown=webapi /code/war/WEB-INF/classes WEB-INF/classes +COPY --from=builder --chown=webapi /code/war/META-INF META-INF ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://host.docker.internal:5432/OHDSI?currentSchema=webapi" # ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://10.0.21.93:32000/OHDSI?currentSchema=webapi" @@ -59,7 +59,7 @@ ENV FLYWAY_DATASOURCE_PASSWORD=admin1 EXPOSE 8080 -USER 101 +USER webapi # Directly run the code as a WAR. CMD exec java ${DEFAULT_JAVA_OPTS} ${JAVA_OPTS} \ From 6b2c19f6cb294a33ff9d308ee0db428c2f594009 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:55:38 -0400 Subject: [PATCH 095/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 248c9481c..2cbfd083d 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -16,11 +16,11 @@ COPY pom.xml /code/ RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} COPY src /code/src RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} && \ - && mkdir war \ - && mv target/WebAPI.war war \ - && cd war \ - && jar -xf WebAPI.war \ - && rm WebAPI.war + mkdir war && \ + mv target/WebAPI.war war && \ + cd war && \ + jar -xf WebAPI.war && \ + rm WebAPI.war # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.2_jdk17 @@ -35,7 +35,11 @@ ENV CLASSPATH="" ENV DEFAULT_JAVA_OPTS="-Djava.security.egd=file:///dev/./urandom" # Create and make working directory to a fixed WebAPI directory -RUN addgroup -S webapi && adduser -S -G webapi webapi && mkdir -p /var/lib/ohdsi/webapi && chown -R webapi:webapi /var/lib/ohdsi/webapi +RUN addgroup -S webapi && \ + adduser -S -G webapi webapi && \ + mkdir -p /var/lib/ohdsi/webapi && \ + chown -R webapi:webapi /var/lib/ohdsi/webapi + WORKDIR /var/lib/ohdsi/webapi COPY --from=builder --chown=101 /code/opentelemetry-javaagent.jar . From 582fcf825c62a9e2cc5a0538983ec4e20d6a4c8a Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Thu, 19 Sep 2024 13:27:38 -0400 Subject: [PATCH 096/141] updated telemetry version for security scan --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1025ef4c7..d770237e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,8 @@ ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # ca # Install curl RUN apk add --no-cache curl -ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 +# ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 +ARG OPENTELEMETRY_JAVA_AGENT_VERSION=2.8.0 RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar RUN mkdir war From 6ef5daf28cc1f51dc1090e02d11b08879f05ba70 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Thu, 19 Sep 2024 20:37:29 -0400 Subject: [PATCH 097/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 2cbfd083d..b171871b9 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -4,7 +4,7 @@ ARG CODEARTIFACT_AUTH_TOKEN ARG MAVEN_PROFILE=webapi-docker-mdaca-codeartifact ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true ARG MAVEN_M2="/code/.m2/settings.xml" -ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 +ARG OPENTELEMETRY_JAVA_AGENT_VERSION=2.8.0 ENV CODEARTIFACT_AUTH_TOKEN=${CODEARTIFACT_AUTH_TOKEN} RUN echo $CODEARTIFACT_AUTH_TOKEN && curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar From 7a8adbe973104b1107577b633f4a07659ff73791 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Fri, 20 Sep 2024 04:57:26 -0400 Subject: [PATCH 098/141] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b6391d945..5ff3b14c5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -95,7 +95,7 @@ jobs: ECR_REPOSITORY: mdaca/ohdsi/webapi run: | trivy image --exit-code 1 --severity HIGH,CRITICAL $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG - + continue-on-error: true - name: Install Syft run: | curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sudo sh -s -- -b /usr/local/bin From a033b192d4e0f145ec2b5b3d33b150619fc99867 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Sun, 22 Sep 2024 18:11:09 -0400 Subject: [PATCH 099/141] Update ci.yaml --- .github/workflows/ci.yaml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5ff3b14c5..1a973fdbb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -54,6 +54,11 @@ jobs: # Push the Docker image docker push $REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG + # Add latest tag + docker tag $REGISTRY/$REPOSITORY:$IMAGE_TAG $REGISTRY/$REPOSITORY:latest + + # push latest Docker Image + docker push $REGISTRY/$REPOSITORY:latest security: runs-on: ubuntu-latest @@ -93,9 +98,11 @@ jobs: AWS_REGION: ${{ secrets.AWS_REGION }} IMAGE_TAG: 3.0.1 ECR_REPOSITORY: mdaca/ohdsi/webapi + run: | - trivy image --exit-code 1 --severity HIGH,CRITICAL $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG - continue-on-error: true + trivy image --severity HIGH,CRITICAL $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG + trivy image --format json $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG > OHDSI-Webapi.json + jq -r '.Results[] | select(.Vulnerabilities != null) | .Vulnerabilities[] | [.SeveritySource, .VulnerabilityID, .PkgName, .PkgPath, .InstalledVersion, .FixedVersion, .Status, .Severity] | @csv' OHDSI-Webapi.json > OHDSI-Webapi-Trivy.csv - name: Install Syft run: | curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sudo sh -s -- -b /usr/local/bin @@ -110,8 +117,10 @@ jobs: syft $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG syft $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG > OHDSI-WEBAPI-sbom.tf - - name: Upload SBOM - uses: actions/upload-artifact@v3 + - name: Upload Reports + uses: actions/upload-artifact@v4 with: - name: sbom - path: OHDSI-WEBAPI-sbom.tf + name: trivy-and-sbom-reports + path: | + OHDSI-Webapi.csv + OHDSI-Webapi-sbom.tf From 3bee9c90df0c184312e9224dfa5644e45bfe5482 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Sun, 22 Sep 2024 18:11:55 -0400 Subject: [PATCH 100/141] Update ci.yaml --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1a973fdbb..d0407e582 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -55,10 +55,10 @@ jobs: docker push $REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG # Add latest tag - docker tag $REGISTRY/$REPOSITORY:$IMAGE_TAG $REGISTRY/$REPOSITORY:latest + docker tag $REGISTRY/$REPOSITORY:$IMAGE_TAG $REGISTRY/$REPOSITORY:latest - # push latest Docker Image - docker push $REGISTRY/$REPOSITORY:latest + # push latest Docker Image + docker push $REGISTRY/$REPOSITORY:latest security: runs-on: ubuntu-latest From 7b007f280b39d0522e51847ff99d5a64e91012e8 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Sun, 22 Sep 2024 18:14:25 -0400 Subject: [PATCH 101/141] Update ci.yaml --- .github/workflows/ci.yaml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d0407e582..589fff972 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,26 +24,28 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_REGION: ${{ secrets.AWS_REGION }} + CODEARTIFACT_DOMAIN: ${{ secrets.CODEARTIFACT_DOMAIN }} run: | - # Set ENV for AWS ECR and CodeArtifact Creds + # Set AWS credentials for ECR and CodeArtifact aws configure set aws_access_key_id $AWS_ACCESS_KEY_ID aws configure set aws_secret_access_key $AWS_SECRET_ACCESS_KEY aws configure set default.region $AWS_REGION - + echo "Running Maven Build" CODEARTIFACT_TOKEN_FILE=${{ github.workspace }}/codeartifact-auth + # Fetch CodeArtifact authorization token aws codeartifact get-authorization-token \ - --domain ${{ secrets.CODEARTIFACT_DOMAIN }} \ + --domain $CODEARTIFACT_DOMAIN \ --domain-owner $AWS_ACCOUNT_ID \ --region $AWS_REGION \ --query authorizationToken \ --output text > $CODEARTIFACT_TOKEN_FILE - + export CODEARTIFACT_AUTH_TOKEN=$(cat $CODEARTIFACT_TOKEN_FILE) echo "$CODEARTIFACT_AUTH_TOKEN" - # Get token from ECR and Docker login + # Login to ECR aws ecr get-login-password --region $AWS_REGION | docker login --username AWS --password-stdin $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com REGISTRY=$AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com @@ -51,14 +53,15 @@ jobs: # Build the Docker image docker build --build-arg CODEARTIFACT_AUTH_TOKEN=$CODEARTIFACT_AUTH_TOKEN -f Dockerfile-mvn-no-local -t $REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . - # Push the Docker image + # Push the Docker image to ECR docker push $REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG - # Add latest tag - docker tag $REGISTRY/$REPOSITORY:$IMAGE_TAG $REGISTRY/$REPOSITORY:latest + # Tag the image as 'latest' + docker tag $REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG $REGISTRY/$ECR_REPOSITORY:latest + + # Push the 'latest' tag to ECR + docker push $REGISTRY/$ECR_REPOSITORY:latest - # push latest Docker Image - docker push $REGISTRY/$REPOSITORY:latest security: runs-on: ubuntu-latest From 7b9cfa64c50c5f8959fff41072f0cf2a9ac781ae Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Sun, 22 Sep 2024 18:30:25 -0400 Subject: [PATCH 102/141] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 589fff972..f849660be 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -125,5 +125,5 @@ jobs: with: name: trivy-and-sbom-reports path: | - OHDSI-Webapi.csv + OHDSI-Webapi-Trivy.csv OHDSI-Webapi-sbom.tf From c322b94ab55cad163414b6e5ea5f207aa38f842f Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Sun, 22 Sep 2024 18:33:44 -0400 Subject: [PATCH 103/141] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f849660be..d951eb985 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -118,7 +118,7 @@ jobs: ECR_REPOSITORY: mdaca/ohdsi/webapi run: | syft $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG - syft $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG > OHDSI-WEBAPI-sbom.tf + syft $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG > OHDSI-Webapi-sbom.tf - name: Upload Reports uses: actions/upload-artifact@v4 From e451e2bbdd3dd5bf62279e5b4066970393b1fb6b Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Thu, 14 Nov 2024 22:35:09 -0500 Subject: [PATCH 104/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index b171871b9..7846a1a0c 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -23,7 +23,7 @@ RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} && \ rm WebAPI.war # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 -FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.2_jdk17 +FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.3_jdk17 # Any Java options to pass along, e.g. memory, garbage collection, etc. ENV JAVA_OPTS="" From 325e65e42c9e387817fbcb85e30c78e38cbd83e1 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Thu, 14 Nov 2024 22:36:30 -0500 Subject: [PATCH 105/141] Update ci.yaml --- .github/workflows/ci.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d951eb985..401535c7b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,8 @@ name: Docker Maven Build and Push Docker Image to MDACA ECR on: + schedule: + - cron: '0 23 * * 0' push: branches: - mdaca-3.0.1 @@ -18,7 +20,7 @@ jobs: - name: Build and Push Docker Image env: - IMAGE_TAG: 3.0.1 + IMAGE_TAG: 3.0.1.1 ECR_REPOSITORY: mdaca/ohdsi/webapi AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} @@ -77,7 +79,7 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.1 + IMAGE_TAG: 3.0.1.1 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | # Set ENV for AW Cred @@ -99,7 +101,7 @@ jobs: env: AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.1 + IMAGE_TAG: 3.0.1.1 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | @@ -114,7 +116,7 @@ jobs: env: AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.1 + IMAGE_TAG: 3.0.1.1 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | syft $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG From 44994b87f5a56b21db256d475968f5ce25d37cbf Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Thu, 14 Nov 2024 22:37:09 -0500 Subject: [PATCH 106/141] Update Dockerfile-mvn-no-local --- Dockerfile-mvn-no-local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-mvn-no-local b/Dockerfile-mvn-no-local index 7846a1a0c..b9e39f726 100644 --- a/Dockerfile-mvn-no-local +++ b/Dockerfile-mvn-no-local @@ -1,7 +1,7 @@ FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder WORKDIR /code ARG CODEARTIFACT_AUTH_TOKEN -ARG MAVEN_PROFILE=webapi-docker-mdaca-codeartifact +ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true ARG MAVEN_M2="/code/.m2/settings.xml" ARG OPENTELEMETRY_JAVA_AGENT_VERSION=2.8.0 From 77afd2ac24bb9fc238f9486b328fe8a9a63cb428 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Thu, 21 Nov 2024 10:19:05 -0500 Subject: [PATCH 107/141] security scan version fix --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d340522f5..4dd85270b 100644 --- a/pom.xml +++ b/pom.xml @@ -712,7 +712,7 @@ com.thoughtworks.xstream xstream - 1.4.20 + 1.4.21 org.springframework.boot From 884bba41d2cbd296373b0c8a34e2315b15668214 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Mon, 25 Nov 2024 16:37:56 -0500 Subject: [PATCH 108/141] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 401535c7b..e4e394c44 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -105,7 +105,7 @@ jobs: ECR_REPOSITORY: mdaca/ohdsi/webapi run: | - trivy image --severity HIGH,CRITICAL $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG + trivy image $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG trivy image --format json $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG > OHDSI-Webapi.json jq -r '.Results[] | select(.Vulnerabilities != null) | .Vulnerabilities[] | [.SeveritySource, .VulnerabilityID, .PkgName, .PkgPath, .InstalledVersion, .FixedVersion, .Status, .Severity] | @csv' OHDSI-Webapi.json > OHDSI-Webapi-Trivy.csv - name: Install Syft From 684aa351abf14fd6f811c6f6610dc0bd59fd5dd3 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Tue, 26 Nov 2024 14:19:56 -0500 Subject: [PATCH 109/141] updated xmlsec dependency version for security scan. cleaned up pom of old migration comments --- pom.xml | 99 +++++++++++---------------------------------------------- 1 file changed, 19 insertions(+), 80 deletions(-) diff --git a/pom.xml b/pom.xml index 4dd85270b..ddf3afe4a 100644 --- a/pom.xml +++ b/pom.xml @@ -13,18 +13,18 @@ UTF-8 3.2.5 - 2.23.0 + 2.23.0 4.2.0 2.2.1 5.5.0 8.0.1.Final 42.3.7 1.69 - 2.0.1 + 2.0.1 2.1.3 0.4.0 3.2.0 - 10.1.25 + 10.1.25 1.5 @@ -32,8 +32,8 @@ 2.35 1.16.1 3.1.2 - 6.0.3 - 2.14.3 + 6.0.3 + 2.14.3 org.ohdsi.webapi.WebApi false false @@ -202,7 +202,7 @@ /WebAPI 3.x-MDACA - 2.29.1 + 2.29.1 600000 12 10000 @@ -349,7 +349,7 @@ org.apache.maven.plugins maven-dependency-plugin - 3.6.1 + 3.6.1 pl.project13.maven @@ -376,8 +376,8 @@ org.codehaus.gmaven - groovy-maven-plugin - 2.1.1 + groovy-maven-plugin + 2.1.1 + 1.5.4 com.fasterxml.jackson.core jackson-databind - com.fasterxml.jackson.core @@ -650,8 +649,6 @@ spring-plugin-core 3.0.0 - org.springframework.boot spring-boot-starter @@ -667,7 +664,6 @@ org.yaml snakeyaml - org.springframework.boot @@ -827,7 +823,6 @@ net.minidev json-smart - org.apache.commons @@ -836,12 +831,7 @@ org.flywaydb flyway-core - - org.apache.httpcomponents.client5 httpclient5 @@ -872,7 +862,7 @@ log4j - commons-collections + commons-collections commons-collections @@ -888,7 +878,6 @@ org.postgresql postgresql - jar @@ -899,7 +888,6 @@ com.microsoft.sqlserver mssql-jdbc - com.microsoft.azure @@ -946,51 +934,6 @@ ${shiro.version} jakarta - - - - com.github.waffle waffle-shiro @@ -1067,7 +1010,6 @@ 8.0.1 - org.pac4j pac4j-jakartaee @@ -1124,15 +1066,15 @@ - org.pac4j pac4j-saml-opensamlv5 - 5.7.4 + 5.7.7 + + + org.apache.santuario + xmlsec + 3.0.3 org.ohdsi @@ -1163,7 +1105,7 @@ org.json json - 20231013 + 20231013 org.ohdsi @@ -1187,7 +1129,6 @@ com.google.code.gson gson - org.jasypt @@ -1314,7 +1255,6 @@ org.glassfish.jersey.media jersey-media-multipart - org.springframework.ldap @@ -1422,7 +1362,7 @@ com.opentable.components otj-pg-embedded - 1.0.3 + 1.0.3 test @@ -1487,7 +1427,6 @@ webapi-postgresql org.postgresql.Driver - jdbc:postgresql://localhost:5432/OHDSI ohdsi_app_user app1 From 06a9ab1ad37e38eb8773f4fc869a95ed3b78f22c Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Tue, 26 Nov 2024 15:37:36 -0500 Subject: [PATCH 110/141] update dependency for security scan --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index ddf3afe4a..8af4ff9f6 100644 --- a/pom.xml +++ b/pom.xml @@ -19,7 +19,7 @@ 5.5.0 8.0.1.Final 42.3.7 - 1.69 + 1.78 2.0.1 2.1.3 0.4.0 @@ -1167,7 +1167,7 @@ org.bouncycastle - bcprov-jdk15on + bcprov-jdk18on ${bouncycastle.version} @@ -1267,7 +1267,7 @@ org.bouncycastle - bcprov-jdk15 + bcprov-jdk18 From 4bfeec13b44304c560fbe610f5cdeea68637532f Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Wed, 27 Nov 2024 15:50:17 -0500 Subject: [PATCH 111/141] remove bcprov 1.63 from cas-core dependency --- pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pom.xml b/pom.xml index 8af4ff9f6..a75ecafe4 100644 --- a/pom.xml +++ b/pom.xml @@ -990,6 +990,12 @@ org.jasig.cas.client cas-client-core 3.6.1 + + + org.bouncycastle + bcprov-jdk15on + + From 013e6a5e806d769796e380cd83908dfec1478035 Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Thu, 5 Dec 2024 13:18:28 -0500 Subject: [PATCH 112/141] Update ci.yaml --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e4e394c44..fbeac1962 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: - name: Build and Push Docker Image env: - IMAGE_TAG: 3.0.1.1 + IMAGE_TAG: 3.0.1.2 ECR_REPOSITORY: mdaca/ohdsi/webapi AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} @@ -79,7 +79,7 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.1.1 + IMAGE_TAG: 3.0.1.2 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | # Set ENV for AW Cred @@ -101,7 +101,7 @@ jobs: env: AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.1.1 + IMAGE_TAG: 3.0.1.2 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | @@ -116,7 +116,7 @@ jobs: env: AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_REGION: ${{ secrets.AWS_REGION }} - IMAGE_TAG: 3.0.1.1 + IMAGE_TAG: 3.0.1.2 ECR_REPOSITORY: mdaca/ohdsi/webapi run: | syft $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG From df210b4f8dbda35e1921c8bb5ffc5639bcf6646c Mon Sep 17 00:00:00 2001 From: stevensrtw <50691414+stevensrtw@users.noreply.github.com> Date: Thu, 5 Dec 2024 13:19:00 -0500 Subject: [PATCH 113/141] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fbeac1962..4fa8f7546 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -89,7 +89,7 @@ jobs: # Get token from ECR and Docker login aws ecr get-login-password --region $AWS_REGION | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com - IMAGE_TAG=3.0.1 + IMAGE_TAG=3.0.1.2 docker pull ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/$ECR_REPOSITORY:$IMAGE_TAG docker images From eeeb23b7db58d6436494b2f40c057aae659a2a73 Mon Sep 17 00:00:00 2001 From: SSStanleyZ Date: Fri, 6 Dec 2024 17:44:23 -0500 Subject: [PATCH 114/141] add local mvn dockerfile --- Dockerfile | 58 +- Dockerfile-mvn-local | 65 + .../arachne-common-types-3.x-MDACA.jar | Bin 5356 -> 5275 bytes .../arachne-common-utils-3.x-MDACA.jar | Bin 11623 -> 11542 bytes arachnejars/arachne-commons-3.x-MDACA.jar | Bin 162934 -> 162858 bytes ...handler-found-exception-util-3.x-MDACA.jar | Bin 5247 -> 5180 bytes arachnejars/arachne-scheduler-3.x-MDACA.jar | Bin 22289 -> 22208 bytes arachnejars/arachne-storage-3.x-MDACA.jar | Bin 32155 -> 32076 bytes .../arachne-sys-settings-3.x-MDACA.jar | Bin 25137 -> 25058 bytes arachnejars/data-source-manager-3.x-MDACA.jar | Bin 27341 -> 27264 bytes .../execution-engine-commons-3.x-MDACA.jar | Bin 36429 -> 36354 bytes arachnejars/logging-3.x-MDACA.jar | Bin 22034 -> 21951 bytes .../arachne-common-types-3.x-MDACA.jar | Bin 5356 -> 5275 bytes .../arachne-common-utils-3.x-MDACA.jar | Bin 11623 -> 11542 bytes code/arachne/arachne-commons-3.x-MDACA.jar | Bin 162934 -> 162858 bytes ...handler-found-exception-util-3.x-MDACA.jar | Bin 5247 -> 5180 bytes code/arachne/arachne-scheduler-3.x-MDACA.jar | Bin 22289 -> 22208 bytes code/arachne/arachne-storage-3.x-MDACA.jar | Bin 32155 -> 32076 bytes .../arachne-sys-settings-3.x-MDACA.jar | Bin 25137 -> 25058 bytes .../1.4.14/_remote.repositories | 3 - .../1.4.14/logback-classic-1.4.14.pom | 367 -- .../1.4.14/logback-classic-1.4.14.pom.sha1 | 1 - .../logback-core/1.4.14/_remote.repositories | 3 - .../1.4.14/logback-core-1.4.14.pom | 158 - .../1.4.14/logback-core-1.4.14.pom.sha1 | 1 - .../1.4.14/_remote.repositories | 3 - .../1.4.14/logback-parent-1.4.14.pom | 587 --- .../1.4.14/logback-parent-1.4.14.pom.sha1 | 1 - .../1.2.10.1009/_remote.repositories | 3 - .../redshift-jdbc42-no-awssdk-1.2.10.1009.pom | 31 - ...bc42-no-awssdk-1.2.10.1009.pom.lastUpdated | 11 - ...hift-jdbc42-no-awssdk-1.2.10.1009.pom.sha1 | 1 - .../2.1.0.29/_remote.repositories | 3 - .../2.1.0.29/redshift-jdbc42-2.1.0.29.pom | 134 - .../redshift-jdbc42-2.1.0.29.pom.sha1 | 1 - .../0.15.2/_remote.repositories | 3 - .../commonmark-ext-gfm-tables-0.15.2.pom | 43 - .../commonmark-ext-gfm-tables-0.15.2.pom.sha1 | 1 - .../0.15.2/_remote.repositories | 3 - .../0.15.2/commonmark-parent-0.15.2.pom | 214 -- .../0.15.2/commonmark-parent-0.15.2.pom.sha1 | 1 - .../commonmark/0.15.2/_remote.repositories | 3 - .../commonmark/0.15.2/commonmark-0.15.2.pom | 73 - .../0.15.2/commonmark-0.15.2.pom.sha1 | 1 - .../pom/base-pom/5.0.13/_remote.repositories | 3 - .../pom/base-pom/5.0.13/base-pom-5.0.13.pom | 691 ---- .../base-pom/5.0.13/base-pom-5.0.13.pom.sha1 | 1 - .../central-pom/5.0.13/_remote.repositories | 3 - .../central-pom/5.0.13/central-pom-5.0.13.pom | 88 - .../5.0.13/central-pom-5.0.13.pom.sha1 | 1 - .../8/_remote.repositories | 3 - .../8/cloudbees-oss-parent-8.pom | 359 -- .../8/cloudbees-oss-parent-8.pom.sha1 | 1 - .../1.1.7/_remote.repositories | 3 - .../1.1.7/syslog-java-client-1.1.7.pom | 111 - .../1.1.7/syslog-java-client-1.1.7.pom.sha1 | 1 - .../3.2.2/_remote.repositories | 3 - ...ing-data-jpa-entity-graph-parent-3.2.2.pom | 347 -- ...ata-jpa-entity-graph-parent-3.2.2.pom.sha1 | 1 - .../3.2.2/_remote.repositories | 3 - .../spring-data-jpa-entity-graph-3.2.2.pom | 124 - ...pring-data-jpa-entity-graph-3.2.2.pom.sha1 | 1 - .../4.17.0/_remote.repositories | 3 - .../4.17.0/java-driver-bom-4.17.0.pom | 110 - .../java-driver-bom-4.17.0.pom.lastUpdated | 9 - .../4.17.0/java-driver-bom-4.17.0.pom.sha1 | 1 - .../4.6.1/_remote.repositories | 3 - .../4.6.1/java-driver-bom-4.6.1.pom | 100 - .../java-driver-bom-4.6.1.pom.lastUpdated | 11 - .../4.6.1/java-driver-bom-4.6.1.pom.sha1 | 1 - .../classmate/1.6.0/_remote.repositories | 3 - .../classmate/1.6.0/classmate-1.6.0.pom | 187 - .../classmate/1.6.0/classmate-1.6.0.pom.sha1 | 1 - .../2.15.4/_remote.repositories | 3 - .../2.15.4/jackson-annotations-2.15.4.pom | 198 - .../jackson-annotations-2.15.4.pom.sha1 | 1 - .../jackson-core/2.15.4/_remote.repositories | 3 - .../2.15.4/jackson-core-2.15.4.pom | 250 -- .../2.15.4/jackson-core-2.15.4.pom.sha1 | 1 - .../2.15.4/_remote.repositories | 3 - .../2.15.4/jackson-databind-2.15.4.pom | 500 --- .../2.15.4/jackson-databind-2.15.4.pom.sha1 | 1 - .../2.15.4/_remote.repositories | 3 - .../2.15.4/jackson-dataformat-toml-2.15.4.pom | 85 - .../jackson-dataformat-toml-2.15.4.pom.sha1 | 1 - .../2.15.4/_remote.repositories | 3 - .../jackson-dataformats-text-2.15.4.pom | 103 - .../jackson-dataformats-text-2.15.4.pom.sha1 | 1 - .../2.15.4/_remote.repositories | 3 - .../2.15.4/jackson-datatype-jdk8-2.15.4.pom | 64 - .../jackson-datatype-jdk8-2.15.4.pom.sha1 | 1 - .../2.15.4/_remote.repositories | 3 - .../2.15.4/jackson-datatype-jsr310-2.15.4.pom | 123 - .../jackson-datatype-jsr310-2.15.4.pom.sha1 | 1 - .../jackson-base/2.15.4/_remote.repositories | 3 - .../2.15.4/jackson-base-2.15.4.pom | 331 -- .../2.15.4/jackson-base-2.15.4.pom.sha1 | 1 - .../jackson-bom/2.11.0/_remote.repositories | 3 - .../jackson-bom/2.11.0/jackson-bom-2.11.0.pom | 310 -- .../2.11.0/jackson-bom-2.11.0.pom.lastUpdated | 11 - .../2.11.0/jackson-bom-2.11.0.pom.sha1 | 1 - .../jackson-bom/2.15.2/_remote.repositories | 3 - .../jackson-bom/2.15.2/jackson-bom-2.15.2.pom | 441 --- .../2.15.2/jackson-bom-2.15.2.pom.sha1 | 1 - .../jackson-bom/2.15.4/_remote.repositories | 3 - .../jackson-bom/2.15.4/jackson-bom-2.15.4.pom | 441 --- .../2.15.4/jackson-bom-2.15.4.pom.lastUpdated | 9 - .../2.15.4/jackson-bom-2.15.4.pom.sha1 | 1 - .../jackson-bom/2.16.1/_remote.repositories | 3 - .../jackson-bom/2.16.1/jackson-bom-2.16.1.pom | 446 --- .../2.16.1/jackson-bom-2.16.1.pom.sha1 | 1 - .../jackson-parent/2.11/_remote.repositories | 3 - .../2.11/jackson-parent-2.11.pom | 208 -- .../2.11/jackson-parent-2.11.pom.lastUpdated | 11 - .../2.11/jackson-parent-2.11.pom.sha1 | 1 - .../jackson-parent/2.15/_remote.repositories | 3 - .../2.15/jackson-parent-2.15.pom | 169 - .../2.15/jackson-parent-2.15.pom.lastUpdated | 9 - .../2.15/jackson-parent-2.15.pom.sha1 | 1 - .../jackson-parent/2.16/_remote.repositories | 3 - .../2.16/jackson-parent-2.16.pom | 169 - .../2.16/jackson-parent-2.16.pom.sha1 | 1 - .../2.15.4/_remote.repositories | 3 - ...ule-jakarta-xmlbind-annotations-2.15.4.pom | 93 - ...akarta-xmlbind-annotations-2.15.4.pom.sha1 | 1 - .../2.15.4/_remote.repositories | 3 - .../jackson-module-parameter-names-2.15.4.pom | 117 - ...son-module-parameter-names-2.15.4.pom.sha1 | 1 - .../2.15.4/_remote.repositories | 3 - .../2.15.4/jackson-modules-base-2.15.4.pom | 115 - .../jackson-modules-base-2.15.4.pom.sha1 | 1 - .../2.15.4/_remote.repositories | 3 - .../2.15.4/jackson-modules-java8-2.15.4.pom | 92 - .../jackson-modules-java8-2.15.4.pom.sha1 | 1 - .../oss-parent/38/_remote.repositories | 3 - .../fasterxml/oss-parent/38/oss-parent-38.pom | 642 ---- .../38/oss-parent-38.pom.lastUpdated | 11 - .../oss-parent/38/oss-parent-38.pom.sha1 | 1 - .../oss-parent/50/_remote.repositories | 3 - .../fasterxml/oss-parent/50/oss-parent-50.pom | 665 ---- .../50/oss-parent-50.pom.lastUpdated | 9 - .../oss-parent/50/oss-parent-50.pom.sha1 | 1 - .../oss-parent/55/_remote.repositories | 3 - .../fasterxml/oss-parent/55/oss-parent-55.pom | 658 ---- .../oss-parent/55/oss-parent-55.pom.sha1 | 1 - .../oss-parent/56/_remote.repositories | 3 - .../fasterxml/oss-parent/56/oss-parent-56.pom | 658 ---- .../oss-parent/56/oss-parent-56.pom.sha1 | 1 - .../caffeine/3.1.8/_remote.repositories | 3 - .../caffeine/3.1.8/caffeine-3.1.8.pom | 54 - .../caffeine/3.1.8/caffeine-3.1.8.pom.sha1 | 1 - .../3.3.6/_remote.repositories | 3 - .../3.3.6/docker-java-api-3.3.6.pom | 90 - .../3.3.6/docker-java-api-3.3.6.pom.sha1 | 1 - .../3.3.6/_remote.repositories | 3 - .../3.3.6/docker-java-parent-3.3.6.pom | 363 -- .../3.3.6/docker-java-parent-3.3.6.pom.sha1 | 1 - .../3.3.6/_remote.repositories | 3 - .../docker-java-transport-zerodep-3.3.6.pom | 109 - ...cker-java-transport-zerodep-3.3.6.pom.sha1 | 1 - .../3.3.6/_remote.repositories | 3 - .../3.3.6/docker-java-transport-3.3.6.pom | 59 - .../docker-java-transport-3.3.6.pom.sha1 | 1 - .../4.0.6/_remote.repositories | 3 - .../4.0.6/handlebars.java-4.0.6.pom | 489 --- .../4.0.6/handlebars.java-4.0.6.pom.sha1 | 1 - .../handlebars/4.0.6/_remote.repositories | 3 - .../handlebars/4.0.6/handlebars-4.0.6.pom | 196 - .../4.0.6/handlebars-4.0.6.pom.sha1 | 1 - .../dbunit-plus/2.0.1/_remote.repositories | 3 - .../dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom | 479 --- .../2.0.1/dbunit-plus-2.0.1.pom.sha1 | 1 - .../8.3.3/_remote.repositories | 3 - .../8.3.3/scribejava-apis-8.3.3.pom | 73 - .../8.3.3/scribejava-apis-8.3.3.pom.sha1 | 1 - .../8.3.3/_remote.repositories | 3 - .../8.3.3/scribejava-core-8.3.3.pom | 62 - .../8.3.3/scribejava-core-8.3.3.pom.sha1 | 1 - .../8.3.3/_remote.repositories | 3 - .../8.3.3/scribejava-java8-8.3.3.pom | 33 - .../8.3.3/scribejava-java8-8.3.3.pom.sha1 | 1 - .../scribejava/8.3.3/_remote.repositories | 3 - .../scribejava/8.3.3/scribejava-8.3.3.pom | 305 -- .../8.3.3/scribejava-8.3.3.pom.sha1 | 1 - .../1.3.0/_remote.repositories | 3 - .../1.3.0/spring-test-dbunit-1.3.0.pom | 343 -- .../1.3.0/spring-test-dbunit-1.3.0.pom.sha1 | 1 - .../1.0-1/_remote.repositories | 3 - .../1.0-1/jcip-annotations-1.0-1.pom | 174 - .../1.0-1/jcip-annotations-1.0-1.pom.sha1 | 1 - .../curvesapi/1.04/_remote.repositories | 3 - .../curvesapi/1.04/curvesapi-1.04.pom | 123 - .../curvesapi/1.04/curvesapi-1.04.pom.sha1 | 1 - .../waffle-jna/2.2.1/_remote.repositories | 3 - .../waffle-jna/2.2.1/waffle-jna-2.2.1.pom | 109 - .../2.2.1/waffle-jna-2.2.1.pom.sha1 | 1 - .../waffle-parent/2.2.1/_remote.repositories | 3 - .../2.2.1/waffle-parent-2.2.1.pom | 1558 -------- .../2.2.1/waffle-parent-2.2.1.pom.sha1 | 1 - .../waffle-shiro/2.2.1/_remote.repositories | 3 - .../waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom | 108 - .../2.2.1/waffle-shiro-2.2.1.pom.sha1 | 1 - .../java-semver/0.9.0/_remote.repositories | 3 - .../java-semver/0.9.0/java-semver-0.9.0.pom | 75 - .../0.9.0/java-semver-0.9.0.pom.sha1 | 1 - .../3.0.1/_remote.repositories | 3 - .../3.0.1/findbugs-annotations-3.0.1.pom | 193 - .../3.0.1/findbugs-annotations-3.0.1.pom.sha1 | 1 - .../jsr305/3.0.2/_remote.repositories | 3 - .../findbugs/jsr305/3.0.2/jsr305-3.0.2.pom | 135 - .../jsr305/3.0.2/jsr305-3.0.2.pom.sha1 | 1 - .../gson-parent/2.10.1/_remote.repositories | 3 - .../gson-parent/2.10.1/gson-parent-2.10.1.pom | 306 -- .../2.10.1/gson-parent-2.10.1.pom.sha1 | 1 - .../gson/gson/2.10.1/_remote.repositories | 3 - .../code/gson/gson/2.10.1/gson-2.10.1.pom | 253 -- .../gson/gson/2.10.1/gson-2.10.1.pom.sha1 | 1 - .../2.1.3/_remote.repositories | 3 - .../2.1.3/error_prone_annotations-2.1.3.pom | 58 - .../error_prone_annotations-2.1.3.pom.sha1 | 1 - .../2.11.0/_remote.repositories | 3 - .../2.11.0/error_prone_annotations-2.11.0.pom | 69 - .../error_prone_annotations-2.11.0.pom.sha1 | 1 - .../2.18.0/_remote.repositories | 3 - .../2.18.0/error_prone_annotations-2.18.0.pom | 69 - .../error_prone_annotations-2.18.0.pom.sha1 | 1 - .../2.21.1/_remote.repositories | 3 - .../2.21.1/error_prone_annotations-2.21.1.pom | 59 - .../error_prone_annotations-2.21.1.pom.sha1 | 1 - .../2.26.1/_remote.repositories | 3 - .../2.26.1/error_prone_annotations-2.26.1.pom | 129 - .../error_prone_annotations-2.26.1.pom.sha1 | 1 - .../2.3.4/_remote.repositories | 3 - .../2.3.4/error_prone_annotations-2.3.4.pom | 68 - .../error_prone_annotations-2.3.4.pom.sha1 | 1 - .../2.1.3/_remote.repositories | 3 - .../2.1.3/error_prone_parent-2.1.3.pom | 163 - .../2.1.3/error_prone_parent-2.1.3.pom.sha1 | 1 - .../2.11.0/_remote.repositories | 3 - .../2.11.0/error_prone_parent-2.11.0.pom | 298 -- .../2.11.0/error_prone_parent-2.11.0.pom.sha1 | 1 - .../2.18.0/_remote.repositories | 3 - .../2.18.0/error_prone_parent-2.18.0.pom | 306 -- .../2.18.0/error_prone_parent-2.18.0.pom.sha1 | 1 - .../2.21.1/_remote.repositories | 3 - .../2.21.1/error_prone_parent-2.21.1.pom | 357 -- .../2.21.1/error_prone_parent-2.21.1.pom.sha1 | 1 - .../2.26.1/_remote.repositories | 3 - .../2.26.1/error_prone_parent-2.26.1.pom | 367 -- .../2.26.1/error_prone_parent-2.26.1.pom.sha1 | 1 - .../2.3.4/_remote.repositories | 3 - .../2.3.4/error_prone_parent-2.3.4.pom | 169 - .../2.3.4/error_prone_parent-2.3.4.pom.sha1 | 1 - .../failureaccess/1.0.1/_remote.repositories | 3 - .../1.0.1/failureaccess-1.0.1.pom | 68 - .../1.0.1/failureaccess-1.0.1.pom.sha1 | 1 - .../failureaccess/1.0.2/_remote.repositories | 3 - .../1.0.2/failureaccess-1.0.2.pom | 100 - .../1.0.2/failureaccess-1.0.2.pom.sha1 | 1 - .../25.1-jre/_remote.repositories | 3 - .../25.1-jre/guava-parent-25.1-jre.pom | 302 -- .../25.1-jre/guava-parent-25.1-jre.pom.sha1 | 1 - .../26.0-android/_remote.repositories | 3 - .../guava-parent-26.0-android.pom | 293 -- .../guava-parent-26.0-android.pom.sha1 | 1 - .../29.0-jre/_remote.repositories | 3 - .../29.0-jre/guava-parent-29.0-jre.pom | 376 -- .../29.0-jre/guava-parent-29.0-jre.pom.sha1 | 1 - .../31.1-jre/_remote.repositories | 3 - .../31.1-jre/guava-parent-31.1-jre.pom | 415 --- .../31.1-jre/guava-parent-31.1-jre.pom.sha1 | 1 - .../32.1.2-jre/_remote.repositories | 3 - .../32.1.2-jre/guava-parent-32.1.2-jre.pom | 493 --- .../guava-parent-32.1.2-jre.pom.sha1 | 1 - .../33.2.0-jre/_remote.repositories | 3 - .../33.2.0-jre/guava-parent-33.2.0-jre.pom | 482 --- .../guava-parent-33.2.0-jre.pom.sha1 | 1 - .../guava/guava/25.1-jre/_remote.repositories | 3 - .../guava/guava/25.1-jre/guava-25.1-jre.pom | 180 - .../guava/25.1-jre/guava-25.1-jre.pom.sha1 | 1 - .../guava/guava/29.0-jre/_remote.repositories | 3 - .../guava/guava/29.0-jre/guava-29.0-jre.pom | 252 -- .../guava/29.0-jre/guava-29.0-jre.pom.sha1 | 1 - .../guava/guava/31.1-jre/_remote.repositories | 3 - .../guava/guava/31.1-jre/guava-31.1-jre.pom | 253 -- .../guava/31.1-jre/guava-31.1-jre.pom.sha1 | 1 - .../guava/32.1.2-jre/_remote.repositories | 3 - .../guava/32.1.2-jre/guava-32.1.2-jre.pom | 309 -- .../32.1.2-jre/guava-32.1.2-jre.pom.sha1 | 1 - .../guava/33.2.0-jre/_remote.repositories | 3 - .../guava/33.2.0-jre/guava-33.2.0-jre.pom | 225 -- .../33.2.0-jre/guava-33.2.0-jre.pom.sha1 | 1 - .../_remote.repositories | 3 - ...9.0-empty-to-avoid-conflict-with-guava.pom | 56 - ...mpty-to-avoid-conflict-with-guava.pom.sha1 | 1 - .../1.1/_remote.repositories | 3 - .../1.1/j2objc-annotations-1.1.pom | 87 - .../1.1/j2objc-annotations-1.1.pom.sha1 | 1 - .../1.3/_remote.repositories | 3 - .../1.3/j2objc-annotations-1.3.pom | 87 - .../1.3/j2objc-annotations-1.3.pom.sha1 | 1 - .../2.8/_remote.repositories | 3 - .../2.8/j2objc-annotations-2.8.pom | 94 - .../2.8/j2objc-annotations-2.8.pom.sha1 | 1 - .../3.0.0/_remote.repositories | 3 - .../3.0.0/j2objc-annotations-3.0.0.pom | 158 - .../3.0.0/j2objc-annotations-3.0.0.pom.sha1 | 1 - .../ibm/icu/icu4j/62.1/_remote.repositories | 3 - .../com/ibm/icu/icu4j/62.1/icu4j-62.1.pom | 146 - .../ibm/icu/icu4j/62.1/icu4j-62.1.pom.sha1 | 1 - .../json-path/2.9.0/_remote.repositories | 3 - .../json-path/2.9.0/json-path-2.9.0.pom | 49 - .../json-path/2.9.0/json-path-2.9.0.pom.sha1 | 1 - .../azure/msal4j/1.9.0/_remote.repositories | 3 - .../azure/msal4j/1.9.0/msal4j-1.9.0.pom | 286 -- .../azure/msal4j/1.9.0/msal4j-1.9.0.pom.sha1 | 1 - .../12.4.2.jre11/_remote.repositories | 3 - .../12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom | 589 --- .../mssql-jdbc-12.4.2.jre11.pom.sha1 | 1 - .../content-type/2.1/_remote.repositories | 3 - .../content-type/2.1/content-type-2.1.pom | 226 -- .../2.1/content-type-2.1.pom.sha1 | 1 - .../content-type/2.3/_remote.repositories | 3 - .../content-type/2.3/content-type-2.3.pom | 223 -- .../2.3/content-type-2.3.pom.sha1 | 1 - .../lang-tag/1.4.4/_remote.repositories | 3 - .../lang-tag/1.4.4/lang-tag-1.4.4.pom | 251 -- .../lang-tag/1.4.4/lang-tag-1.4.4.pom.sha1 | 1 - .../lang-tag/1.7/_remote.repositories | 3 - .../nimbusds/lang-tag/1.7/lang-tag-1.7.pom | 236 -- .../lang-tag/1.7/lang-tag-1.7.pom.sha1 | 1 - .../nimbus-jose-jwt/8.18/_remote.repositories | 3 - .../8.18/nimbus-jose-jwt-8.18.pom | 318 -- .../8.18/nimbus-jose-jwt-8.18.pom.sha1 | 1 - .../9.37.3/_remote.repositories | 3 - .../9.37.3/nimbus-jose-jwt-9.37.3.pom | 381 -- .../9.37.3/nimbus-jose-jwt-9.37.3.pom.sha1 | 1 - .../9.39.1/_remote.repositories | 3 - .../9.39.1/nimbus-jose-jwt-9.39.1.pom | 478 --- .../9.39.1/nimbus-jose-jwt-9.39.1.pom.sha1 | 1 - .../nimbus-jose-jwt/9.40/_remote.repositories | 3 - .../9.40/nimbus-jose-jwt-9.40.pom | 478 --- .../9.40/nimbus-jose-jwt-9.40.pom.sha1 | 1 - .../11.12/_remote.repositories | 3 - .../11.12/oauth2-oidc-sdk-11.12.pom | 522 --- .../11.12/oauth2-oidc-sdk-11.12.pom.sha1 | 1 - .../8.23.1/_remote.repositories | 3 - .../8.23.1/oauth2-oidc-sdk-8.23.1.pom | 390 -- .../8.23.1/oauth2-oidc-sdk-8.23.1.pom.sha1 | 1 - .../1.16.2-SNAPSHOT/_remote.repositories | 3 - ...common-utils-1.16.2-20200914.105631-15.pom | 68 - ...-1.16.2-20200914.105631-15.pom.lastUpdated | 9 - ...n-utils-1.16.2-20200914.105631-15.pom.sha1 | 1 - .../arachne-common-utils-1.16.2-SNAPSHOT.pom | 68 - .../maven-metadata-ohdsi.snapshots.xml | 25 - .../maven-metadata-ohdsi.snapshots.xml.sha1 | 1 - .../1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml | 25 - .../maven-metadata-ohdsi.xml.sha1 | 1 - .../resolver-status.properties | 14 - .../arachne-common-utils-3.x-MDACA.jar | Bin 11623 -> 0 bytes ...hne-common-utils-3.x-MDACA.pom.lastUpdated | 16 - .../1.16.2-SNAPSHOT/_remote.repositories | 3 - ...mmons-bundle-1.16.2-20200914.105632-15.pom | 63 - ...-bundle-1.16.2-20200914.105632-15.pom.sha1 | 1 - ...arachne-commons-bundle-1.16.2-SNAPSHOT.pom | 63 - .../maven-metadata-ohdsi.snapshots.xml | 20 - .../maven-metadata-ohdsi.snapshots.xml.sha1 | 1 - .../1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml | 20 - .../maven-metadata-ohdsi.xml.sha1 | 1 - .../resolver-status.properties | 14 - ...rachne-scheduler-3.x-MDACA.pom.lastUpdated | 16 - .../arachne-sys-settings-3.x-MDACA.jar | Bin 25137 -> 0 bytes .../execution-engine-commons-3.x-MDACA.jar | Bin 36429 -> 0 bytes ...n-engine-commons-3.x-MDACA.pom.lastUpdated | 16 - .../data-source-manager-3.x-MDACA.jar | Bin 27341 -> 0 bytes ...a-source-manager-3.x-MDACA.pom.lastUpdated | 16 - .../logging/3.x-MDACA/logging-3.x-MDACA.jar | Bin 22034 -> 0 bytes .../logging-3.x-MDACA.pom.lastUpdated | 16 - .../opencsv/opencsv/3.7/_remote.repositories | 3 - .../com/opencsv/opencsv/3.7/opencsv-3.7.pom | 380 -- .../opencsv/opencsv/3.7/opencsv-3.7.pom.sha1 | 1 - .../1.0.3/_remote.repositories | 3 - .../1.0.3/otj-pg-embedded-1.0.3.pom | 341 -- .../1.0.3/otj-pg-embedded-1.0.3.pom.sha1 | 1 - .../ojdbc-bom/21.9.0.0/_remote.repositories | 3 - .../ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom | 278 -- .../ojdbc-bom-21.9.0.0.pom.lastUpdated | 9 - .../21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 | 1 - .../1.5.0/_remote.repositories | 3 - .../1.5.0/miredot-annotations-1.5.0.pom | 37 - .../miredot-annotations-1.5.0.pom.lastUpdated | 11 - .../1.5.0/miredot-annotations-1.5.0.pom.sha1 | 1 - .../querydsl-bom/5.0.0/_remote.repositories | 3 - .../querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom | 217 -- .../5.0.0/querydsl-bom-5.0.0.pom.lastUpdated | 9 - .../5.0.0/querydsl-bom-5.0.0.pom.sha1 | 1 - .../okhttp-bom/4.12.0/_remote.repositories | 3 - .../okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom | 81 - .../4.12.0/okhttp-bom-4.12.0.pom.lastUpdated | 9 - .../4.12.0/okhttp-bom-4.12.0.pom.sha1 | 1 - .../activation/all/1.2.0/_remote.repositories | 3 - .../sun/activation/all/1.2.0/all-1.2.0.pom | 641 ---- .../activation/all/1.2.0/all-1.2.0.pom.sha1 | 1 - .../4.1.2/_remote.repositories | 3 - .../4.1.2/istack-commons-runtime-4.1.2.pom | 49 - .../istack-commons-runtime-4.1.2.pom.sha1 | 1 - .../istack-commons/4.1.2/_remote.repositories | 3 - .../4.1.2/istack-commons-4.1.2.pom | 624 ---- .../4.1.2/istack-commons-4.1.2.pom.sha1 | 1 - .../jaxb-bom-ext/4.0.5/_remote.repositories | 3 - .../jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom | 92 - .../4.0.5/jaxb-bom-ext-4.0.5.pom.sha1 | 1 - .../jaxb-parent/4.0.5/_remote.repositories | 3 - .../jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom | 777 ---- .../4.0.5/jaxb-parent-4.0.5.pom.sha1 | 1 - .../4.0.5/_remote.repositories | 3 - .../4.0.5/jaxb-runtime-parent-4.0.5.pom | 36 - .../4.0.5/jaxb-runtime-parent-4.0.5.pom.sha1 | 1 - .../4.0.5/_remote.repositories | 3 - .../4.0.5/jaxb-txw-parent-4.0.5.pom | 36 - .../4.0.5/jaxb-txw-parent-4.0.5.pom.sha1 | 1 - .../1.0/_remote.repositories | 3 - .../1.0/xml-security-impl-1.0.pom | 103 - .../1.0/xml-security-impl-1.0.pom.sha1 | 1 - .../1.4.19/_remote.repositories | 3 - .../1.4.19/xstream-parent-1.4.19.pom | 1191 ------ .../1.4.19/xstream-parent-1.4.19.pom.sha1 | 1 - .../xstream/1.4.19/_remote.repositories | 3 - .../xstream/xstream/1.4.19/xstream-1.4.19.pom | 669 ---- .../xstream/1.4.19/xstream-1.4.19.pom.sha1 | 1 - .../zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom | 654 ---- .../HikariCP/5.0.1/HikariCP-5.0.1.pom.sha1 | 1 - .../HikariCP/5.0.1/_remote.repositories | 3 - .../1.9.4/_remote.repositories | 3 - .../1.9.4/commons-beanutils-1.9.4.pom | 517 --- .../1.9.4/commons-beanutils-1.9.4.pom.sha1 | 1 - .../commons-codec/1.16.1/_remote.repositories | 3 - .../1.16.1/commons-codec-1.16.1.pom | 446 --- .../1.16.1/commons-codec-1.16.1.pom.sha1 | 1 - .../3.2.2/_remote.repositories | 3 - .../3.2.2/commons-collections-3.2.2.pom | 454 --- .../3.2.2/commons-collections-3.2.2.pom.sha1 | 1 - .../commons-dbutils/1.6/_remote.repositories | 3 - .../1.6/commons-dbutils-1.6.pom | 327 -- .../1.6/commons-dbutils-1.6.pom.sha1 | 1 - .../1.3.1/_remote.repositories | 3 - .../1.3.1/commons-fileupload-1.3.1.pom | 298 -- .../1.3.1/commons-fileupload-1.3.1.pom.sha1 | 1 - .../1.5/_remote.repositories | 3 - .../1.5/commons-fileupload-1.5.pom | 457 --- .../1.5/commons-fileupload-1.5.pom.sha1 | 1 - .../commons-io/1.3.2/_remote.repositories | 3 - .../commons-io/1.3.2/commons-io-1.3.2.pom | 318 -- .../1.3.2/commons-io-1.3.2.pom.sha1 | 1 - .../commons-io/2.11.0/_remote.repositories | 3 - .../commons-io/2.11.0/commons-io-2.11.0.pom | 601 --- .../2.11.0/commons-io-2.11.0.pom.sha1 | 1 - .../commons-io/2.15.1/_remote.repositories | 3 - .../commons-io/2.15.1/commons-io-2.15.1.pom | 603 --- .../2.15.1/commons-io-2.15.1.pom.sha1 | 1 - .../commons-io/2.2/_remote.repositories | 3 - .../commons-io/2.2/commons-io-2.2.pom | 346 -- .../commons-io/2.2/commons-io-2.2.pom.sha1 | 1 - .../commons-io/2.4/_remote.repositories | 3 - .../commons-io/2.4/commons-io-2.4.pom | 323 -- .../commons-io/2.4/commons-io-2.4.pom.sha1 | 1 - .../commons-io/2.5/_remote.repositories | 3 - .../commons-io/2.5/commons-io-2.5.pom | 422 --- .../commons-io/2.5/commons-io-2.5.pom.sha1 | 1 - .../commons-io/2.7/_remote.repositories | 3 - .../commons-io/2.7/commons-io-2.7.pom | 473 --- .../commons-io/2.7/commons-io-2.7.pom.sha1 | 1 - .../commons-lang/2.6/_remote.repositories | 3 - .../commons-lang/2.6/commons-lang-2.6.pom | 545 --- .../2.6/commons-lang-2.6.pom.sha1 | 1 - .../commons-logging/1.2/_remote.repositories | 3 - .../1.2/commons-logging-1.2.pom | 547 --- .../1.2/commons-logging-1.2.pom.sha1 | 1 - .../arachne/data-source-manager-3.x-MDACA.jar | Bin 27341 -> 27264 bytes .../execution-engine-commons-3.x-MDACA.jar | Bin 36429 -> 36354 bytes .../buji-pac4j/9.0.1/_remote.repositories | 3 - .../buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom | 262 -- .../9.0.1/buji-pac4j-9.0.1.pom.sha1 | 1 - .../buji/buji-parent/1/_remote.repositories | 3 - .../io/buji/buji-parent/1/buji-parent-1.pom | 31 - .../buji/buji-parent/1/buji-parent-1.pom.sha1 | 1 - .../metrics-bom/4.1.7/_remote.repositories | 3 - .../metrics-bom/4.1.7/metrics-bom-4.1.7.pom | 121 - .../4.1.7/metrics-bom-4.1.7.pom.lastUpdated | 11 - .../4.1.7/metrics-bom-4.1.7.pom.sha1 | 1 - .../metrics-bom/4.2.19/_remote.repositories | 3 - .../metrics-bom/4.2.19/metrics-bom-4.2.19.pom | 176 - .../4.2.19/metrics-bom-4.2.19.pom.lastUpdated | 9 - .../4.2.19/metrics-bom-4.2.19.pom.sha1 | 1 - .../metrics-bom/4.2.25/_remote.repositories | 3 - .../metrics-bom/4.2.25/metrics-bom-4.2.25.pom | 191 - .../4.2.25/metrics-bom-4.2.25.pom.lastUpdated | 9 - .../4.2.25/metrics-bom-4.2.25.pom.sha1 | 1 - .../metrics-core/4.2.25/_remote.repositories | 3 - .../4.2.25/metrics-core-4.2.25.pom | 70 - .../4.2.25/metrics-core-4.2.25.pom.sha1 | 1 - .../metrics-json/4.2.25/_remote.repositories | 3 - .../4.2.25/metrics-json-4.2.25.pom | 86 - .../4.2.25/metrics-json-4.2.25.pom.sha1 | 1 - .../metrics-parent/4.1.7/_remote.repositories | 3 - .../4.1.7/metrics-parent-4.1.7.pom | 381 -- .../metrics-parent-4.1.7.pom.lastUpdated | 11 - .../4.1.7/metrics-parent-4.1.7.pom.sha1 | 1 - .../4.2.19/_remote.repositories | 3 - .../4.2.19/metrics-parent-4.2.19.pom | 468 --- .../metrics-parent-4.2.19.pom.lastUpdated | 9 - .../4.2.19/metrics-parent-4.2.19.pom.sha1 | 1 - .../4.2.25/_remote.repositories | 3 - .../4.2.25/metrics-parent-4.2.25.pom | 478 --- .../metrics-parent-4.2.25.pom.lastUpdated | 9 - .../4.2.25/metrics-parent-4.2.25.pom.sha1 | 1 - .../5.12.4/_remote.repositories | 3 - .../5.12.4/kubernetes-client-bom-5.12.4.pom | 636 ---- .../kubernetes-client-bom-5.12.4.pom.sha1 | 1 - .../mxparser/1.2.2/_remote.repositories | 3 - .../mxparser/1.2.2/mxparser-1.2.2.pom | 639 ---- .../mxparser/1.2.2/mxparser-1.2.2.pom.sha1 | 1 - .../jjwt/0.9.1/_remote.repositories | 3 - .../io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom | 481 --- .../jjwt/0.9.1/jjwt-0.9.1.pom.sha1 | 1 - .../1.12.5/_remote.repositories | 3 - .../1.12.5/micrometer-bom-1.12.5.pom | 207 -- .../micrometer-bom-1.12.5.pom.lastUpdated | 9 - .../1.12.5/micrometer-bom-1.12.5.pom.sha1 | 1 - .../micrometer-bom/1.5.1/_remote.repositories | 3 - .../1.5.1/micrometer-bom-1.5.1.pom | 174 - .../micrometer-bom-1.5.1.pom.lastUpdated | 11 - .../1.5.1/micrometer-bom-1.5.1.pom.sha1 | 1 - .../1.12.5/_remote.repositories | 3 - .../1.12.5/micrometer-commons-1.12.5.pom | 78 - .../1.12.5/micrometer-commons-1.12.5.pom.sha1 | 1 - .../1.12.5/_remote.repositories | 3 - .../1.12.5/micrometer-core-1.12.5.pom | 304 -- .../1.12.5/micrometer-core-1.12.5.pom.sha1 | 1 - .../1.12.5/_remote.repositories | 3 - .../1.12.5/micrometer-observation-1.12.5.pom | 91 - .../micrometer-observation-1.12.5.pom.sha1 | 1 - .../1.2.5/_remote.repositories | 3 - .../1.2.5/micrometer-tracing-bom-1.2.5.pom | 109 - ...crometer-tracing-bom-1.2.5.pom.lastUpdated | 9 - .../micrometer-tracing-bom-1.2.5.pom.sha1 | 1 - .../4.1.107.Final/_remote.repositories | 3 - .../4.1.107.Final/netty-bom-4.1.107.Final.pom | 387 -- .../netty-bom-4.1.107.Final.pom.sha1 | 1 - .../4.1.109.Final/_remote.repositories | 3 - .../4.1.109.Final/netty-bom-4.1.109.Final.pom | 387 -- .../netty-bom-4.1.109.Final.pom.lastUpdated | 9 - .../netty-bom-4.1.109.Final.pom.sha1 | 1 - .../4.1.49.Final/_remote.repositories | 3 - .../4.1.49.Final/netty-bom-4.1.49.Final.pom | 235 -- .../netty-bom-4.1.49.Final.pom.lastUpdated | 11 - .../netty-bom-4.1.49.Final.pom.sha1 | 1 - .../4.1.97.Final/_remote.repositories | 3 - .../4.1.97.Final/netty-bom-4.1.97.Final.pom | 375 -- .../netty-bom-4.1.97.Final.pom.sha1 | 1 - .../1.31.0/_remote.repositories | 3 - .../1.31.0/opentelemetry-bom-1.31.0.pom | 184 - .../opentelemetry-bom-1.31.0.pom.lastUpdated | 9 - .../1.31.0/opentelemetry-bom-1.31.0.pom.sha1 | 1 - .../reactor-bom/2023.0.5/_remote.repositories | 3 - .../2023.0.5/reactor-bom-2023.0.5.pom | 133 - .../reactor-bom-2023.0.5.pom.lastUpdated | 9 - .../2023.0.5/reactor-bom-2023.0.5.pom.sha1 | 1 - .../Dysprosium-SR7/_remote.repositories | 3 - .../reactor-bom-Dysprosium-SR7.pom | 117 - ...reactor-bom-Dysprosium-SR7.pom.lastUpdated | 11 - .../reactor-bom-Dysprosium-SR7.pom.sha1 | 1 - .../reactor-core/3.6.5/_remote.repositories | 3 - .../reactor-core/3.6.5/reactor-core-3.6.5.pom | 56 - .../3.6.5/reactor-core-3.6.5.pom.sha1 | 1 - .../parent/0.16.0/_remote.repositories | 3 - .../parent/0.16.0/parent-0.16.0.pom | 313 -- .../0.16.0/parent-0.16.0.pom.lastUpdated | 9 - .../parent/0.16.0/parent-0.16.0.pom.sha1 | 1 - .../0.16.0/_remote.repositories | 3 - .../0.16.0/simpleclient_bom-0.16.0.pom | 146 - .../simpleclient_bom-0.16.0.pom.lastUpdated | 9 - .../0.16.0/simpleclient_bom-0.16.0.pom.sha1 | 1 - .../r2dbc-bom/Arabba-SR3/_remote.repositories | 3 - .../Arabba-SR3/r2dbc-bom-Arabba-SR3.pom | 99 - .../r2dbc-bom-Arabba-SR3.pom.lastUpdated | 11 - .../Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.sha1 | 1 - .../5.3.2/_remote.repositories | 3 - .../5.3.2/rest-assured-bom-5.3.2.pom | 112 - .../rest-assured-bom-5.3.2.pom.lastUpdated | 9 - .../5.3.2/rest-assured-bom-5.3.2.pom.sha1 | 1 - .../rsocket-bom/1.0.0/_remote.repositories | 3 - .../rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom | 84 - .../1.0.0/rsocket-bom-1.0.0.pom.lastUpdated | 11 - .../1.0.0/rsocket-bom-1.0.0.pom.sha1 | 1 - .../rsocket-bom/1.1.3/_remote.repositories | 3 - .../rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom | 79 - .../1.1.3/rsocket-bom-1.1.3.pom.lastUpdated | 9 - .../1.1.3/rsocket-bom-1.1.3.pom.sha1 | 1 - .../jandex-parent/3.1.2/_remote.repositories | 3 - .../3.1.2/jandex-parent-3.1.2.pom | 185 - .../3.1.2/jandex-parent-3.1.2.pom.sha1 | 1 - .../jandex/3.1.2/_remote.repositories | 3 - .../io/smallrye/jandex/3.1.2/jandex-3.1.2.pom | 172 - .../jandex/3.1.2/jandex-3.1.2.pom.sha1 | 1 - .../39/_remote.repositories | 3 - .../39/smallrye-build-parent-39.pom | 815 ----- .../39/smallrye-build-parent-39.pom.sha1 | 1 - .../brave-bom/5.16.0/_remote.repositories | 3 - .../brave-bom/5.16.0/brave-bom-5.16.0.pom | 335 -- .../5.16.0/brave-bom-5.16.0.pom.lastUpdated | 9 - .../5.16.0/brave-bom-5.16.0.pom.sha1 | 1 - .../2.16.3/_remote.repositories | 3 - .../2.16.3/zipkin-reporter-bom-2.16.3.pom | 199 - ...zipkin-reporter-bom-2.16.3.pom.lastUpdated | 9 - .../zipkin-reporter-bom-2.16.3.pom.sha1 | 1 - .../2.1.3/_remote.repositories | 3 - .../2.1.3/jakarta.activation-api-2.1.3.pom | 421 --- .../jakarta.activation-api-2.1.3.pom.sha1 | 1 - .../2.1.1/_remote.repositories | 3 - .../2.1.1/jakarta.annotation-api-2.1.1.pom | 366 -- .../jakarta.annotation-api-2.1.1.pom.sha1 | 1 - .../3.0.0/_remote.repositories | 3 - .../jakarta.authentication-api-3.0.0.pom | 290 -- .../jakarta.authentication-api-3.0.0.pom.sha1 | 1 - .../2.1.0/_remote.repositories | 3 - .../2.1.0/jakarta.authorization-api-2.1.0.pom | 310 -- .../jakarta.authorization-api-2.1.0.pom.sha1 | 1 - .../2.1.1/_remote.repositories | 3 - .../2.1.1/batch-api-parent-2.1.1.pom | 236 -- .../2.1.1/batch-api-parent-2.1.1.pom.sha1 | 1 - .../2.1.1/_remote.repositories | 3 - .../2.1.1/jakarta.batch-api-2.1.1.pom | 142 - .../2.1.1/jakarta.batch-api-2.1.1.pom.sha1 | 1 - .../4.0.1/_remote.repositories | 3 - .../4.0.1/jakarta.ejb-api-4.0.1.pom | 436 --- .../4.0.1/jakarta.ejb-api-4.0.1.pom.sha1 | 1 - .../jakarta.el-api/5.0.1/_remote.repositories | 3 - .../5.0.1/jakarta.el-api-5.0.1.pom | 283 -- .../5.0.1/jakarta.el-api-5.0.1.pom.sha1 | 1 - .../4.0.1/_remote.repositories | 3 - .../jakarta.enterprise.cdi-api-4.0.1.pom | 412 --- .../jakarta.enterprise.cdi-api-4.0.1.pom.sha1 | 1 - .../4.0.1/_remote.repositories | 3 - .../jakarta.enterprise.cdi-parent-4.0.1.pom | 82 - ...karta.enterprise.cdi-parent-4.0.1.pom.sha1 | 1 - .../4.0.1/_remote.repositories | 3 - .../jakarta.enterprise.lang-model-4.0.1.pom | 120 - ...karta.enterprise.lang-model-4.0.1.pom.sha1 | 1 - .../4.0.1/_remote.repositories | 3 - .../4.0.1/jakarta.faces-api-4.0.1.pom | 165 - .../4.0.1/jakarta.faces-api-4.0.1.pom.sha1 | 1 - .../2.0.1/_remote.repositories | 3 - .../2.0.1/jakarta.inject-api-2.0.1.pom | 188 - .../2.0.1/jakarta.inject-api-2.0.1.pom.sha1 | 1 - .../2.1.0/_remote.repositories | 3 - .../2.1.0/jakarta.interceptor-api-2.1.0.pom | 300 -- .../jakarta.interceptor-api-2.1.0.pom.sha1 | 1 - .../3.1.0/_remote.repositories | 3 - .../3.1.0/jakarta.jms-api-3.1.0.pom | 228 -- .../3.1.0/jakarta.jms-api-3.1.0.pom.sha1 | 1 - .../3.0.1/_remote.repositories | 3 - .../3.0.1/jakarta.json.bind-api-3.0.1.pom | 491 --- .../jakarta.json.bind-api-3.0.1.pom.sha1 | 1 - .../2.1.3/_remote.repositories | 3 - .../2.1.3/jakarta.json-api-2.1.3.pom | 417 --- .../2.1.3/jakarta.json-api-2.1.3.pom.sha1 | 1 - .../2.1.3/_remote.repositories | 3 - .../2.1.3/jakarta.mail-api-2.1.3.pom | 501 --- .../2.1.3/jakarta.mail-api-2.1.3.pom.sha1 | 1 - .../3.1.0/_remote.repositories | 3 - .../3.1.0/jakarta.persistence-api-3.1.0.pom | 359 -- .../jakarta.persistence-api-3.1.0.pom.sha1 | 1 - .../10.0.0/_remote.repositories | 3 - .../10.0.0/jakarta.jakartaee-api-10.0.0.pom | 215 -- .../jakarta.jakartaee-api-10.0.0.pom.sha1 | 1 - .../9.1.0/_remote.repositories | 3 - .../9.1.0/jakarta.jakartaee-bom-9.1.0.pom | 220 -- .../jakarta.jakartaee-bom-9.1.0.pom.sha1 | 1 - .../10.0.0/_remote.repositories | 3 - .../jakarta.jakartaee-web-api-10.0.0.pom | 349 -- .../jakarta.jakartaee-web-api-10.0.0.pom.sha1 | 1 - .../9.1.0/_remote.repositories | 3 - .../9.1.0/jakartaee-api-parent-9.1.0.pom | 320 -- .../9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 | 1 - .../2.1.0/_remote.repositories | 3 - .../2.1.0/jakarta.resource-api-2.1.0.pom | 296 -- .../2.1.0/jakarta.resource-api-2.1.0.pom.sha1 | 1 - .../3.0.0/_remote.repositories | 3 - .../jakarta.security.enterprise-api-3.0.0.pom | 336 -- ...rta.security.enterprise-api-3.0.0.pom.sha1 | 1 - .../6.0.0/_remote.repositories | 3 - .../6.0.0/jakarta.servlet-api-6.0.0.pom | 462 --- .../6.0.0/jakarta.servlet-api-6.0.0.pom.sha1 | 1 - .../3.1.0/_remote.repositories | 3 - .../3.1.0/jakarta.servlet.jsp-api-3.1.0.pom | 289 -- .../jakarta.servlet.jsp-api-3.1.0.pom.sha1 | 1 - .../3.0.0/_remote.repositories | 3 - .../jakarta.servlet.jsp.jstl-api-3.0.0.pom | 310 -- ...akarta.servlet.jsp.jstl-api-3.0.0.pom.sha1 | 1 - .../2.0.1/_remote.repositories | 3 - .../2.0.1/jakarta.transaction-api-2.0.1.pom | 329 -- .../jakarta.transaction-api-2.0.1.pom.sha1 | 1 - .../3.0.2/_remote.repositories | 3 - .../3.0.2/jakarta.validation-api-3.0.2.pom | 277 -- .../jakarta.validation-api-3.0.2.pom.sha1 | 1 - .../2.1.1/_remote.repositories | 3 - .../2.1.1/jakarta.websocket-all-2.1.1.pom | 263 -- .../jakarta.websocket-all-2.1.1.pom.sha1 | 1 - .../2.1.1/_remote.repositories | 3 - .../2.1.1/jakarta.websocket-api-2.1.1.pom | 115 - .../jakarta.websocket-api-2.1.1.pom.sha1 | 1 - .../2.1.1/_remote.repositories | 3 - .../jakarta.websocket-client-api-2.1.1.pom | 106 - ...akarta.websocket-client-api-2.1.1.pom.sha1 | 1 - .../ws/rs/all/3.1.0/_remote.repositories | 3 - .../jakarta/ws/rs/all/3.1.0/all-3.1.0.pom | 87 - .../ws/rs/all/3.1.0/all-3.1.0.pom.sha1 | 1 - .../3.1.0/_remote.repositories | 3 - .../3.1.0/jakarta.ws.rs-api-3.1.0.pom | 407 --- .../3.1.0/jakarta.ws.rs-api-3.1.0.pom.sha1 | 1 - .../4.0.2/_remote.repositories | 3 - .../jakarta.xml.bind-api-parent-4.0.2.pom | 238 -- ...jakarta.xml.bind-api-parent-4.0.2.pom.sha1 | 1 - .../4.0.2/_remote.repositories | 3 - .../4.0.2/jakarta.xml.bind-api-4.0.2.pom | 274 -- .../4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 | 1 - .../1.2.0/_remote.repositories | 3 - .../1.2.0/javax.activation-api-1.2.0.pom | 146 - .../1.2.0/javax.activation-api-1.2.0.pom.sha1 | 1 - .../2.3.1/_remote.repositories | 3 - .../2.3.1/jaxb-api-parent-2.3.1.pom | 213 -- .../2.3.1/jaxb-api-parent-2.3.1.pom.sha1 | 1 - .../bind/jaxb-api/2.3.1/_remote.repositories | 3 - .../bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom | 426 --- .../jaxb-api/2.3.1/jaxb-api-2.3.1.pom.sha1 | 1 - .../joda-time/2.12.1/_remote.repositories | 3 - .../joda-time/2.12.1/joda-time-2.12.1.pom | 1090 ------ .../2.12.1/joda-time-2.12.1.pom.sha1 | 1 - .../joda-time/2.5/_remote.repositories | 3 - .../joda-time/joda-time/2.5/joda-time-2.5.pom | 750 ---- .../joda-time/2.5/joda-time-2.5.pom.sha1 | 1 - .../junit/junit/4.13.2/_remote.repositories | 3 - .../junit/junit/4.13.2/junit-4.13.2.pom | 633 ---- .../junit/junit/4.13.2/junit-4.13.2.pom.sha1 | 1 - code/arachne/logging-3.x-MDACA.jar | Bin 22034 -> 21951 bytes .../1.14.13/_remote.repositories | 3 - .../1.14.13/byte-buddy-agent-1.14.13.pom | 231 -- .../1.14.13/byte-buddy-agent-1.14.13.pom.sha1 | 1 - .../1.14.13/_remote.repositories | 3 - .../1.14.13/byte-buddy-parent-1.14.13.pom | 1345 ------- .../byte-buddy-parent-1.14.13.pom.sha1 | 1 - .../byte-buddy/1.14.13/_remote.repositories | 3 - .../byte-buddy/1.14.13/byte-buddy-1.14.13.pom | 384 -- .../1.14.13/byte-buddy-1.14.13.pom.sha1 | 1 - .../jna-platform/5.5.0/_remote.repositories | 3 - .../jna-platform/5.5.0/jna-platform-5.5.0.pom | 61 - .../5.5.0/jna-platform-5.5.0.pom.sha1 | 1 - .../dev/jna/jna/5.13.0/_remote.repositories | 3 - .../java/dev/jna/jna/5.13.0/jna-5.13.0.pom | 63 - .../dev/jna/jna/5.13.0/jna-5.13.0.pom.sha1 | 1 - .../dev/jna/jna/5.5.0/_remote.repositories | 3 - .../net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom | 53 - .../java/dev/jna/jna/5.5.0/jna-5.5.0.pom.sha1 | 1 - .../java/jvnet-parent/1/_remote.repositories | 3 - .../java/jvnet-parent/1/jvnet-parent-1.pom | 157 - .../jvnet-parent/1/jvnet-parent-1.pom.sha1 | 1 - .../java/jvnet-parent/5/_remote.repositories | 3 - .../java/jvnet-parent/5/jvnet-parent-5.pom | 265 -- .../jvnet-parent/5/jvnet-parent-5.pom.sha1 | 1 - .../jcip-annotations/1.0/_remote.repositories | 3 - .../1.0/jcip-annotations-1.0.pom | 14 - .../1.0/jcip-annotations-1.0.pom.sha1 | 1 - .../2.5.1/_remote.repositories | 3 - .../2.5.1/accessors-smart-2.5.1.pom | 252 -- .../2.5.1/accessors-smart-2.5.1.pom.sha1 | 1 - .../json-smart/2.5.1/_remote.repositories | 3 - .../json-smart/2.5.1/json-smart-2.5.1.pom | 270 -- .../2.5.1/json-smart-2.5.1.pom.sha1 | 1 - .../parent/17.0.1/_remote.repositories | 3 - .../parent/17.0.1/parent-17.0.1.pom | 1268 ------- .../17.0.1/parent-17.0.1.pom.lastUpdated | 11 - .../parent/17.0.1/parent-17.0.1.pom.sha1 | 1 - .../9.0.0/_remote.repositories | 3 - .../9.0.0/shib-networking-9.0.0.pom | 84 - .../shib-networking-9.0.0.pom.lastUpdated | 11 - .../9.0.0/shib-networking-9.0.0.pom.sha1 | 1 - .../shib-security/9.0.0/_remote.repositories | 3 - .../9.0.0/shib-security-9.0.0.pom | 93 - .../9.0.0/shib-security-9.0.0.pom.lastUpdated | 11 - .../9.0.0/shib-security-9.0.0.pom.sha1 | 1 - .../9.0.0/_remote.repositories | 3 - .../9.0.0/shib-shared-bom-9.0.0.pom | 85 - .../shib-shared-bom-9.0.0.pom.lastUpdated | 11 - .../9.0.0/shib-shared-bom-9.0.0.pom.sha1 | 1 - .../9.0.0/_remote.repositories | 3 - .../9.0.0/shib-shared-parent-9.0.0.pom | 142 - .../shib-shared-parent-9.0.0.pom.lastUpdated | 11 - .../9.0.0/shib-shared-parent-9.0.0.pom.sha1 | 1 - .../shib-support/9.0.0/_remote.repositories | 3 - .../shib-support/9.0.0/shib-support-9.0.0.pom | 70 - .../9.0.0/shib-support-9.0.0.pom.lastUpdated | 11 - .../9.0.0/shib-support-9.0.0.pom.sha1 | 1 - .../shib-velocity/9.0.0/_remote.repositories | 3 - .../9.0.0/shib-velocity-9.0.0.pom | 58 - .../9.0.0/shib-velocity-9.0.0.pom.lastUpdated | 11 - .../9.0.0/shib-velocity-9.0.0.pom.sha1 | 1 - .../antlr4-master/4.13.0/_remote.repositories | 3 - .../4.13.0/antlr4-master-4.13.0.pom | 181 - .../4.13.0/antlr4-master-4.13.0.pom.sha1 | 1 - .../4.5.1-1/_remote.repositories | 3 - .../4.5.1-1/antlr4-master-4.5.1-1.pom | 128 - .../4.5.1-1/antlr4-master-4.5.1-1.pom.sha1 | 1 - .../4.13.0/_remote.repositories | 3 - .../4.13.0/antlr4-runtime-4.13.0.pom | 121 - .../4.13.0/antlr4-runtime-4.13.0.pom.sha1 | 1 - .../4.5.1-1/_remote.repositories | 3 - .../4.5.1-1/antlr4-runtime-4.5.1-1.pom | 66 - .../4.5.1-1/antlr4-runtime-4.5.1-1.pom.sha1 | 1 - .../org/apache/apache/13/_remote.repositories | 3 - .../org/apache/apache/13/apache-13.pom | 384 -- .../org/apache/apache/13/apache-13.pom.sha1 | 1 - .../org/apache/apache/16/_remote.repositories | 3 - .../org/apache/apache/16/apache-16.pom | 415 --- .../org/apache/apache/16/apache-16.pom.sha1 | 1 - .../org/apache/apache/17/_remote.repositories | 3 - .../org/apache/apache/17/apache-17.pom | 426 --- .../org/apache/apache/17/apache-17.pom.sha1 | 1 - .../org/apache/apache/18/_remote.repositories | 3 - .../org/apache/apache/18/apache-18.pom | 416 --- .../apache/18/apache-18.pom.lastUpdated | 11 - .../org/apache/apache/18/apache-18.pom.sha1 | 1 - .../org/apache/apache/19/_remote.repositories | 3 - .../org/apache/apache/19/apache-19.pom | 420 --- .../org/apache/apache/19/apache-19.pom.sha1 | 1 - .../org/apache/apache/21/_remote.repositories | 3 - .../org/apache/apache/21/apache-21.pom | 460 --- .../apache/21/apache-21.pom.lastUpdated | 9 - .../org/apache/apache/21/apache-21.pom.sha1 | 1 - .../org/apache/apache/23/_remote.repositories | 3 - .../org/apache/apache/23/apache-23.pom | 492 --- .../org/apache/apache/23/apache-23.pom.sha1 | 1 - .../org/apache/apache/24/_remote.repositories | 3 - .../org/apache/apache/24/apache-24.pom | 519 --- .../org/apache/apache/24/apache-24.pom.sha1 | 1 - .../org/apache/apache/25/_remote.repositories | 3 - .../org/apache/apache/25/apache-25.pom | 536 --- .../org/apache/apache/25/apache-25.pom.sha1 | 1 - .../org/apache/apache/27/_remote.repositories | 3 - .../org/apache/apache/27/apache-27.pom | 531 --- .../org/apache/apache/27/apache-27.pom.sha1 | 1 - .../org/apache/apache/29/_remote.repositories | 3 - .../org/apache/apache/29/apache-29.pom | 538 --- .../org/apache/apache/29/apache-29.pom.sha1 | 1 - .../org/apache/apache/30/_remote.repositories | 3 - .../org/apache/apache/30/apache-30.pom | 561 --- .../apache/30/apache-30.pom.lastUpdated | 9 - .../org/apache/apache/30/apache-30.pom.sha1 | 1 - .../org/apache/apache/31/_remote.repositories | 3 - .../org/apache/apache/31/apache-31.pom | 567 --- .../org/apache/apache/31/apache-31.pom.sha1 | 1 - .../org/apache/apache/32/_remote.repositories | 3 - .../org/apache/apache/32/apache-32.pom | 582 --- .../org/apache/apache/32/apache-32.pom.sha1 | 1 - .../org/apache/apache/4/_remote.repositories | 3 - code/arachne/org/apache/apache/4/apache-4.pom | 113 - .../org/apache/apache/4/apache-4.pom.sha1 | 1 - .../org/apache/apache/7/_remote.repositories | 3 - code/arachne/org/apache/apache/7/apache-7.pom | 369 -- .../org/apache/apache/7/apache-7.pom.sha1 | 1 - .../org/apache/apache/9/_remote.repositories | 3 - code/arachne/org/apache/apache/9/apache-9.pom | 393 -- .../org/apache/apache/9/apache-9.pom.sha1 | 1 - .../4.1/_remote.repositories | 3 - .../4.1/commons-collections4-4.1.pom | 731 ---- .../4.1/commons-collections4-4.1.pom.sha1 | 1 - .../1.24.0/_remote.repositories | 3 - .../1.24.0/commons-compress-1.24.0.pom | 637 ---- .../1.24.0/commons-compress-1.24.0.pom.sha1 | 1 - .../1.26.0/_remote.repositories | 3 - .../1.26.0/commons-compress-1.26.0.pom | 642 ---- .../1.26.0/commons-compress-1.26.0.pom.sha1 | 1 - .../commons-csv/1.9.0/_remote.repositories | 3 - .../commons-csv/1.9.0/commons-csv-1.9.0.pom | 527 --- .../1.9.0/commons-csv-1.9.0.pom.sha1 | 1 - .../commons-io/1.3.2/_remote.repositories | 3 - .../commons-io/1.3.2/commons-io-1.3.2.pom | 14 - .../1.3.2/commons-io-1.3.2.pom.sha1 | 1 - .../commons-lang3/3.13.0/_remote.repositories | 3 - .../3.13.0/commons-lang3-3.13.0.pom | 1003 ----- .../3.13.0/commons-lang3-3.13.0.pom.sha1 | 1 - .../commons-parent/17/_remote.repositories | 3 - .../commons-parent/17/commons-parent-17.pom | 785 ---- .../17/commons-parent-17.pom.sha1 | 1 - .../commons-parent/24/_remote.repositories | 3 - .../commons-parent/24/commons-parent-24.pom | 1187 ------ .../24/commons-parent-24.pom.sha1 | 1 - .../commons-parent/25/_remote.repositories | 3 - .../commons-parent/25/commons-parent-25.pom | 1214 ------ .../25/commons-parent-25.pom.sha1 | 1 - .../commons-parent/3/_remote.repositories | 3 - .../commons-parent/3/commons-parent-3.pom | 325 -- .../3/commons-parent-3.pom.sha1 | 1 - .../commons-parent/32/_remote.repositories | 3 - .../commons-parent/32/commons-parent-32.pom | 1301 ------- .../32/commons-parent-32.pom.sha1 | 1 - .../commons-parent/34/_remote.repositories | 3 - .../commons-parent/34/commons-parent-34.pom | 1386 ------- .../34/commons-parent-34.pom.sha1 | 1 - .../commons-parent/38/_remote.repositories | 3 - .../commons-parent/38/commons-parent-38.pom | 1559 -------- .../38/commons-parent-38.pom.sha1 | 1 - .../commons-parent/39/_remote.repositories | 3 - .../commons-parent/39/commons-parent-39.pom | 1503 -------- .../39/commons-parent-39.pom.sha1 | 1 - .../commons-parent/47/_remote.repositories | 3 - .../commons-parent/47/commons-parent-47.pom | 1944 ---------- .../47/commons-parent-47.pom.sha1 | 1 - .../commons-parent/50/_remote.repositories | 3 - .../commons-parent/50/commons-parent-50.pom | 1879 ---------- .../50/commons-parent-50.pom.sha1 | 1 - .../commons-parent/52/_remote.repositories | 3 - .../commons-parent/52/commons-parent-52.pom | 1943 ---------- .../52/commons-parent-52.pom.sha1 | 1 - .../commons-parent/56/_remote.repositories | 3 - .../commons-parent/56/commons-parent-56.pom | 1995 ---------- .../56/commons-parent-56.pom.sha1 | 1 - .../commons-parent/58/_remote.repositories | 3 - .../commons-parent/58/commons-parent-58.pom | 2007 ---------- .../58/commons-parent-58.pom.sha1 | 1 - .../commons-parent/61/_remote.repositories | 3 - .../commons-parent/61/commons-parent-61.pom | 1953 ---------- .../61/commons-parent-61.pom.sha1 | 1 - .../commons-parent/64/_remote.repositories | 3 - .../commons-parent/64/commons-parent-64.pom | 1876 ---------- .../64/commons-parent-64.pom.sha1 | 1 - .../commons-parent/65/_remote.repositories | 3 - .../commons-parent/65/commons-parent-65.pom | 1876 ---------- .../65/commons-parent-65.pom.sha1 | 1 - .../commons-parent/66/_remote.repositories | 3 - .../commons-parent/66/commons-parent-66.pom | 1880 ---------- .../66/commons-parent-66.pom.sha1 | 1 - .../commons-parent/69/_remote.repositories | 3 - .../commons-parent/69/commons-parent-69.pom | 1880 ---------- .../69/commons-parent-69.pom.sha1 | 1 - .../commons-text/1.11.0/_remote.repositories | 3 - .../1.11.0/commons-text-1.11.0.pom | 528 --- .../1.11.0/commons-text-1.11.0.pom.sha1 | 1 - .../commons-text/1.12.0/_remote.repositories | 3 - .../1.12.0/commons-text-1.12.0.pom | 558 --- .../1.12.0/commons-text-1.12.0.pom.sha1 | 1 - .../groovy-bom/4.0.21/_remote.repositories | 3 - .../groovy-bom/4.0.21/groovy-bom-4.0.21.pom | 996 ----- .../4.0.21/groovy-bom-4.0.21.pom.lastUpdated | 9 - .../4.0.21/groovy-bom-4.0.21.pom.sha1 | 1 - .../5.2.3/_remote.repositories | 3 - .../5.2.3/httpclient5-cache-5.2.3.pom | 131 - .../5.2.3/httpclient5-cache-5.2.3.pom.sha1 | 1 - .../5.2.3/_remote.repositories | 3 - .../5.2.3/httpclient5-parent-5.2.3.pom | 448 --- .../5.2.3/httpclient5-parent-5.2.3.pom.sha1 | 1 - .../httpclient5/5.2.3/_remote.repositories | 3 - .../httpclient5/5.2.3/httpclient5-5.2.3.pom | 183 - .../5.2.3/httpclient5-5.2.3.pom.sha1 | 1 - .../httpcore5-h2/5.2.4/_remote.repositories | 3 - .../httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom | 102 - .../5.2.4/httpcore5-h2-5.2.4.pom.sha1 | 1 - .../5.2.4/_remote.repositories | 3 - .../5.2.4/httpcore5-parent-5.2.4.pom | 368 -- .../5.2.4/httpcore5-parent-5.2.4.pom.sha1 | 1 - .../httpcore5/5.2.4/_remote.repositories | 3 - .../core5/httpcore5/5.2.4/httpcore5-5.2.4.pom | 119 - .../httpcore5/5.2.4/httpcore5-5.2.4.pom.sha1 | 1 - .../13/_remote.repositories | 3 - .../13/httpcomponents-parent-13.pom | 917 ----- .../13/httpcomponents-parent-13.pom.sha1 | 1 - .../log4j-api/2.23.0/_remote.repositories | 3 - .../log4j-api/2.23.0/log4j-api-2.23.0.pom | 104 - .../2.23.0/log4j-api-2.23.0.pom.sha1 | 1 - .../log4j-bom/2.13.2/_remote.repositories | 3 - .../log4j-bom/2.13.2/log4j-bom-2.13.2.pom | 210 -- .../2.13.2/log4j-bom-2.13.2.pom.lastUpdated | 11 - .../2.13.2/log4j-bom-2.13.2.pom.sha1 | 1 - .../log4j-bom/2.21.1/_remote.repositories | 3 - .../log4j-bom/2.21.1/log4j-bom-2.21.1.pom | 372 -- .../2.21.1/log4j-bom-2.21.1.pom.lastUpdated | 9 - .../2.21.1/log4j-bom-2.21.1.pom.sha1 | 1 - .../log4j-bom/2.23.0/_remote.repositories | 3 - .../log4j-bom/2.23.0/log4j-bom-2.23.0.pom | 367 -- .../2.23.0/log4j-bom-2.23.0.pom.sha1 | 1 - .../log4j-core/2.23.0/_remote.repositories | 3 - .../log4j-core/2.23.0/log4j-core-2.23.0.pom | 269 -- .../2.23.0/log4j-core-2.23.0.pom.sha1 | 1 - .../log4j-jul/2.21.1/_remote.repositories | 3 - .../log4j-jul/2.21.1/log4j-jul-2.21.1.pom | 130 - .../2.21.1/log4j-jul-2.21.1.pom.sha1 | 1 - .../2.21.1/_remote.repositories | 3 - .../2.21.1/log4j-slf4j2-impl-2.21.1.pom | 155 - .../2.21.1/log4j-slf4j2-impl-2.21.1.pom.sha1 | 1 - .../2.21.1/_remote.repositories | 3 - .../2.21.1/log4j-to-slf4j-2.21.1.pom | 122 - .../2.21.1/log4j-to-slf4j-2.21.1.pom.sha1 | 1 - .../log4j/log4j/2.21.1/_remote.repositories | 3 - .../log4j/log4j/2.21.1/log4j-2.21.1.pom | 957 ----- .../log4j/log4j/2.21.1/log4j-2.21.1.pom.sha1 | 1 - .../log4j/log4j/2.23.0/_remote.repositories | 3 - .../log4j/log4j/2.23.0/log4j-2.23.0.pom | 996 ----- .../log4j/log4j/2.23.0/log4j-2.23.0.pom.sha1 | 1 - .../logging-parent/1/_remote.repositories | 3 - .../logging-parent/1/logging-parent-1.pom | 84 - .../1/logging-parent-1.pom.lastUpdated | 11 - .../1/logging-parent-1.pom.sha1 | 1 - .../10.1.1/_remote.repositories | 3 - .../10.1.1/logging-parent-10.1.1.pom | 973 ----- .../logging-parent-10.1.1.pom.lastUpdated | 9 - .../10.1.1/logging-parent-10.1.1.pom.sha1 | 1 - .../10.6.0/_remote.repositories | 3 - .../10.6.0/logging-parent-10.6.0.pom | 1337 ------- .../10.6.0/logging-parent-10.6.0.pom.sha1 | 1 - .../maven-parent/33/_remote.repositories | 3 - .../maven/maven-parent/33/maven-parent-33.pom | 1388 ------- .../33/maven-parent-33.pom.lastUpdated | 9 - .../maven-parent/33/maven-parent-33.pom.sha1 | 1 - .../maven-parent/34/_remote.repositories | 3 - .../maven/maven-parent/34/maven-parent-34.pom | 1362 ------- .../maven-parent/34/maven-parent-34.pom.sha1 | 1 - .../maven-parent/35/_remote.repositories | 3 - .../maven/maven-parent/35/maven-parent-35.pom | 1446 -------- .../maven-parent/35/maven-parent-35.pom.sha1 | 1 - .../maven-parent/39/_remote.repositories | 3 - .../maven/maven-parent/39/maven-parent-39.pom | 1531 -------- .../maven-parent/39/maven-parent-39.pom.sha1 | 1 - .../maven/maven/3.6.3/_remote.repositories | 3 - .../apache/maven/maven/3.6.3/maven-3.6.3.pom | 736 ---- .../maven/3.6.3/maven-3.6.3.pom.lastUpdated | 9 - .../maven/maven/3.6.3/maven-3.6.3.pom.sha1 | 1 - .../3.2.0/_remote.repositories | 4 - .../3.2.0/maven-clean-plugin-3.2.0.jar | Bin 35678 -> 0 bytes .../3.2.0/maven-clean-plugin-3.2.0.jar.sha1 | 1 - .../3.2.0/maven-clean-plugin-3.2.0.pom | 153 - .../3.2.0/maven-clean-plugin-3.2.0.pom.sha1 | 1 - .../3.10.1/_remote.repositories | 4 - .../3.10.1/maven-compiler-plugin-3.10.1.jar | Bin 61899 -> 0 bytes .../maven-compiler-plugin-3.10.1.jar.sha1 | 1 - .../3.10.1/maven-compiler-plugin-3.10.1.pom | 362 -- .../maven-compiler-plugin-3.10.1.pom.sha1 | 1 - .../3.1.2/_remote.repositories | 4 - .../3.1.2/maven-failsafe-plugin-3.1.2.jar | Bin 53828 -> 0 bytes .../maven-failsafe-plugin-3.1.2.jar.sha1 | 1 - .../3.1.2/maven-failsafe-plugin-3.1.2.pom | 296 -- .../maven-failsafe-plugin-3.1.2.pom.sha1 | 1 - .../maven-plugins/34/_remote.repositories | 3 - .../maven-plugins/34/maven-plugins-34.pom | 289 -- .../34/maven-plugins-34.pom.sha1 | 1 - .../maven-plugins/35/_remote.repositories | 3 - .../maven-plugins/35/maven-plugins-35.pom | 273 -- .../35/maven-plugins-35.pom.sha1 | 1 - .../maven-plugins/39/_remote.repositories | 3 - .../maven-plugins/39/maven-plugins-39.pom | 236 -- .../39/maven-plugins-39.pom.sha1 | 1 - .../3.3.1/_remote.repositories | 4 - .../3.3.1/maven-resources-plugin-3.3.1.jar | Bin 30951 -> 0 bytes .../maven-resources-plugin-3.3.1.jar.sha1 | 1 - .../3.3.1/maven-resources-plugin-3.3.1.pom | 237 -- .../maven-resources-plugin-3.3.1.pom.sha1 | 1 - .../3.1.2/_remote.repositories | 4 - .../3.1.2/maven-surefire-plugin-3.1.2.jar | Bin 43294 -> 0 bytes .../maven-surefire-plugin-3.1.2.jar.sha1 | 1 - .../3.1.2/maven-surefire-plugin-3.1.2.pom | 174 - .../maven-surefire-plugin-3.1.2.pom.sha1 | 1 - .../3.3.1/_remote.repositories | 4 - .../3.3.1/maven-war-plugin-3.3.1.jar | Bin 82457 -> 0 bytes .../3.3.1/maven-war-plugin-3.3.1.jar.sha1 | 1 - .../3.3.1/maven-war-plugin-3.3.1.pom | 263 -- .../3.3.1/maven-war-plugin-3.3.1.pom.sha1 | 1 - .../surefire/3.1.2/_remote.repositories | 3 - .../surefire/3.1.2/surefire-3.1.2.pom | 569 --- .../surefire/3.1.2/surefire-3.1.2.pom.sha1 | 1 - .../3.17/_remote.repositories | 3 - .../3.17/poi-ooxml-schemas-3.17.pom | 68 - .../3.17/poi-ooxml-schemas-3.17.pom.sha1 | 1 - .../poi/poi-ooxml/3.17/_remote.repositories | 3 - .../poi/poi-ooxml/3.17/poi-ooxml-3.17.pom | 78 - .../poi-ooxml/3.17/poi-ooxml-3.17.pom.sha1 | 1 - .../apache/poi/poi/3.17/_remote.repositories | 3 - .../org/apache/poi/poi/3.17/poi-3.17.pom | 101 - .../org/apache/poi/poi/3.17/poi-3.17.pom.sha1 | 1 - .../xmlsec/3.0.2/_remote.repositories | 3 - .../santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom | 666 ---- .../xmlsec/3.0.2/xmlsec-3.0.2.pom.sha1 | 1 - .../2.0.1/_remote.repositories | 3 - .../2.0.1/shiro-crypto-support-2.0.1.pom | 41 - .../2.0.1/shiro-crypto-support-2.0.1.pom.sha1 | 1 - .../2.0.1/_remote.repositories | 3 - .../2.0.1/shiro-hashes-argon2-2.0.1.pom | 99 - .../2.0.1/shiro-hashes-argon2-2.0.1.pom.sha1 | 1 - .../2.0.1/_remote.repositories | 3 - .../2.0.1/shiro-hashes-bcrypt-2.0.1.pom | 99 - .../2.0.1/shiro-hashes-bcrypt-2.0.1.pom.sha1 | 1 - .../shiro-cache/1.13.0/_remote.repositories | 3 - .../shiro-cache/1.13.0/shiro-cache-1.13.0.pom | 60 - .../1.13.0/shiro-cache-1.13.0.pom.sha1 | 1 - .../shiro-cache/2.0.1/_remote.repositories | 3 - .../shiro-cache/2.0.1/shiro-cache-2.0.1.pom | 65 - .../2.0.1/shiro-cache-2.0.1.pom.sha1 | 1 - .../1.13.0/_remote.repositories | 3 - .../1.13.0/shiro-config-core-1.13.0.pom | 60 - .../1.13.0/shiro-config-core-1.13.0.pom.sha1 | 1 - .../2.0.1/_remote.repositories | 3 - .../2.0.1/shiro-config-core-2.0.1.pom | 66 - .../2.0.1/shiro-config-core-2.0.1.pom.sha1 | 1 - .../1.13.0/_remote.repositories | 3 - .../1.13.0/shiro-config-ogdl-1.13.0.pom | 105 - .../1.13.0/shiro-config-ogdl-1.13.0.pom.sha1 | 1 - .../2.0.1/_remote.repositories | 3 - .../2.0.1/shiro-config-ogdl-2.0.1.pom | 114 - .../2.0.1/shiro-config-ogdl-2.0.1.pom.sha1 | 1 - .../shiro-config/1.13.0/_remote.repositories | 3 - .../1.13.0/shiro-config-1.13.0.pom | 40 - .../1.13.0/shiro-config-1.13.0.pom.sha1 | 1 - .../shiro-config/2.0.1/_remote.repositories | 3 - .../shiro-config/2.0.1/shiro-config-2.0.1.pom | 40 - .../2.0.1/shiro-config-2.0.1.pom.sha1 | 1 - .../shiro-core/1.13.0/_remote.repositories | 3 - .../shiro-core/1.13.0/shiro-core-1.13.0.pom | 135 - .../1.13.0/shiro-core-1.13.0.pom.sha1 | 1 - .../shiro-core/2.0.1/_remote.repositories | 3 - .../shiro-core/2.0.1/shiro-core-2.0.1.pom | 205 -- .../2.0.1/shiro-core-2.0.1.pom.sha1 | 1 - .../1.13.0/_remote.repositories | 3 - .../1.13.0/shiro-crypto-cipher-1.13.0.pom | 85 - .../shiro-crypto-cipher-1.13.0.pom.sha1 | 1 - .../2.0.1/_remote.repositories | 3 - .../2.0.1/shiro-crypto-cipher-2.0.1.pom | 91 - .../2.0.1/shiro-crypto-cipher-2.0.1.pom.sha1 | 1 - .../1.13.0/_remote.repositories | 3 - .../1.13.0/shiro-crypto-core-1.13.0.pom | 59 - .../1.13.0/shiro-crypto-core-1.13.0.pom.sha1 | 1 - .../2.0.1/_remote.repositories | 3 - .../2.0.1/shiro-crypto-core-2.0.1.pom | 65 - .../2.0.1/shiro-crypto-core-2.0.1.pom.sha1 | 1 - .../1.13.0/_remote.repositories | 3 - .../1.13.0/shiro-crypto-hash-1.13.0.pom | 81 - .../1.13.0/shiro-crypto-hash-1.13.0.pom.sha1 | 1 - .../2.0.1/_remote.repositories | 3 - .../2.0.1/shiro-crypto-hash-2.0.1.pom | 94 - .../2.0.1/shiro-crypto-hash-2.0.1.pom.sha1 | 1 - .../shiro-crypto/1.13.0/_remote.repositories | 3 - .../1.13.0/shiro-crypto-1.13.0.pom | 41 - .../1.13.0/shiro-crypto-1.13.0.pom.sha1 | 1 - .../shiro-crypto/2.0.1/_remote.repositories | 3 - .../shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom | 42 - .../2.0.1/shiro-crypto-2.0.1.pom.sha1 | 1 - .../shiro-event/1.13.0/_remote.repositories | 3 - .../shiro-event/1.13.0/shiro-event-1.13.0.pom | 60 - .../1.13.0/shiro-event-1.13.0.pom.sha1 | 1 - .../shiro-event/2.0.1/_remote.repositories | 3 - .../shiro-event/2.0.1/shiro-event-2.0.1.pom | 65 - .../2.0.1/shiro-event-2.0.1.pom.sha1 | 1 - .../shiro-lang/1.13.0/_remote.repositories | 3 - .../shiro-lang/1.13.0/shiro-lang-1.13.0.pom | 79 - .../1.13.0/shiro-lang-1.13.0.pom.sha1 | 1 - .../shiro-lang/2.0.1/_remote.repositories | 3 - .../shiro-lang/2.0.1/shiro-lang-2.0.1.pom | 88 - .../2.0.1/shiro-lang-2.0.1.pom.sha1 | 1 - .../shiro-root/1.13.0/_remote.repositories | 3 - .../shiro-root/1.13.0/shiro-root-1.13.0.pom | 1710 --------- .../1.13.0/shiro-root-1.13.0.pom.sha1 | 1 - .../shiro-root/2.0.1/_remote.repositories | 3 - .../shiro-root/2.0.1/shiro-root-2.0.1.pom | 1848 ---------- .../2.0.1/shiro-root-2.0.1.pom.sha1 | 1 - .../shiro-spring/2.0.1/_remote.repositories | 3 - .../shiro-spring/2.0.1/shiro-spring-2.0.1.pom | 121 - .../2.0.1/shiro-spring-2.0.1.pom.sha1 | 1 - .../shiro-support/2.0.1/_remote.repositories | 3 - .../2.0.1/shiro-support-2.0.1.pom | 48 - .../2.0.1/shiro-support-2.0.1.pom.sha1 | 1 - .../shiro-web/1.13.0/_remote.repositories | 3 - .../shiro-web/1.13.0/shiro-web-1.13.0.pom | 116 - .../1.13.0/shiro-web-1.13.0.pom.sha1 | 1 - .../shiro-web/2.0.1/_remote.repositories | 3 - .../shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom | 126 - .../shiro-web/2.0.1/shiro-web-2.0.1.pom.sha1 | 1 - .../10.1.20/_remote.repositories | 3 - .../10.1.20/tomcat-embed-core-10.1.20.pom | 43 - .../tomcat-embed-core-10.1.20.pom.sha1 | 1 - .../10.1.20/_remote.repositories | 3 - .../10.1.20/tomcat-embed-el-10.1.20.pom | 35 - .../10.1.20/tomcat-embed-el-10.1.20.pom.sha1 | 1 - .../10.1.20/_remote.repositories | 3 - .../tomcat-embed-websocket-10.1.20.pom | 43 - .../tomcat-embed-websocket-10.1.20.pom.sha1 | 1 - .../2.3/_remote.repositories | 3 - .../2.3/velocity-engine-core-2.3.pom | 293 -- .../2.3/velocity-engine-core-2.3.pom.sha1 | 1 - .../2.3/_remote.repositories | 3 - .../2.3/velocity-engine-parent-2.3.pom | 371 -- .../2.3/velocity-engine-parent-2.3.pom.sha1 | 1 - .../velocity-master/4/_remote.repositories | 3 - .../velocity-master/4/velocity-master-4.pom | 246 -- .../4/velocity-master-4.pom.sha1 | 1 - .../xmlbeans/2.6.0/_remote.repositories | 3 - .../xmlbeans/2.6.0/xmlbeans-2.6.0.pom | 99 - .../xmlbeans/2.6.0/xmlbeans-2.6.0.pom.sha1 | 1 - .../4.0.4/_remote.repositories | 3 - .../4.0.4/cas-client-core-4.0.4.pom | 106 - .../4.0.4/cas-client-core-4.0.4.pom.sha1 | 1 - .../4.0.4/_remote.repositories | 3 - .../4.0.4/cas-client-support-saml-4.0.4.pom | 58 - .../cas-client-support-saml-4.0.4.pom.sha1 | 1 - .../cas-client/4.0.4/_remote.repositories | 3 - .../cas-client/4.0.4/cas-client-4.0.4.pom | 273 -- .../4.0.4/cas-client-4.0.4.pom.sha1 | 1 - .../1.1.2/_remote.repositories | 3 - .../1.1.2/apiguardian-api-1.1.2.pom | 34 - .../1.1.2/apiguardian-api-1.1.2.pom.sha1 | 1 - .../aspectjrt/1.9.22/_remote.repositories | 3 - .../aspectjrt/1.9.22/aspectjrt-1.9.22.pom | 60 - .../1.9.22/aspectjrt-1.9.22.pom.sha1 | 1 - .../aspectjweaver/1.9.22/_remote.repositories | 3 - .../1.9.22/aspectjweaver-1.9.22.pom | 60 - .../1.9.22/aspectjweaver-1.9.22.pom.sha1 | 1 - .../assertj-bom/3.24.2/_remote.repositories | 3 - .../assertj-bom/3.24.2/assertj-bom-3.24.2.pom | 124 - .../3.24.2/assertj-bom-3.24.2.pom.lastUpdated | 9 - .../3.24.2/assertj-bom-3.24.2.pom.sha1 | 1 - .../assertj-build/3.24.2/_remote.repositories | 3 - .../3.24.2/assertj-build-3.24.2.pom | 277 -- .../3.24.2/assertj-build-3.24.2.pom.sha1 | 1 - .../assertj-core/3.24.2/_remote.repositories | 3 - .../3.24.2/assertj-core-3.24.2.pom | 535 --- .../3.24.2/assertj-core-3.24.2.pom.sha1 | 1 - .../3.24.2/_remote.repositories | 3 - .../3.24.2/assertj-parent-3.24.2.pom | 358 -- .../3.24.2/assertj-parent-3.24.2.pom.sha1 | 1 - .../4.2.1/_remote.repositories | 3 - .../4.2.1/awaitility-parent-4.2.1.pom | 297 -- .../4.2.1/awaitility-parent-4.2.1.pom.sha1 | 1 - .../awaitility/4.2.1/_remote.repositories | 3 - .../awaitility/4.2.1/awaitility-4.2.1.pom | 86 - .../4.2.1/awaitility-4.2.1.pom.sha1 | 1 - .../55/_remote.repositories | 3 - .../55/basepom-foundation-55.pom | 1181 ------ .../55/basepom-foundation-55.pom.sha1 | 1 - .../basepom-minimal/55/_remote.repositories | 3 - .../basepom-minimal/55/basepom-minimal-55.pom | 344 -- .../55/basepom-minimal-55.pom.sha1 | 1 - .../bcpkix-jdk15on/1.63/_remote.repositories | 3 - .../1.63/bcpkix-jdk15on-1.63.pom | 40 - .../1.63/bcpkix-jdk15on-1.63.pom.sha1 | 1 - .../bcpkix-jdk15on/1.70/_remote.repositories | 3 - .../1.70/bcpkix-jdk15on-1.70.pom | 46 - .../1.70/bcpkix-jdk15on-1.70.pom.sha1 | 1 - .../bcpkix-jdk18on/1.76/_remote.repositories | 3 - .../1.76/bcpkix-jdk18on-1.76.pom | 46 - .../1.76/bcpkix-jdk18on-1.76.pom.sha1 | 1 - .../bcprov-jdk15on/1.63/_remote.repositories | 3 - .../1.63/bcprov-jdk15on-1.63.pom | 32 - .../1.63/bcprov-jdk15on-1.63.pom.sha1 | 1 - .../bcprov-jdk15on/1.69/_remote.repositories | 3 - .../1.69/bcprov-jdk15on-1.69.pom | 32 - .../1.69/bcprov-jdk15on-1.69.pom.sha1 | 1 - .../bcprov-jdk15on/1.70/_remote.repositories | 3 - .../1.70/bcprov-jdk15on-1.70.pom | 32 - .../1.70/bcprov-jdk15on-1.70.pom.sha1 | 1 - .../bcprov-jdk18on/1.71/_remote.repositories | 3 - .../1.71/bcprov-jdk18on-1.71.pom | 32 - .../1.71/bcprov-jdk18on-1.71.pom.sha1 | 1 - .../bcprov-jdk18on/1.76/_remote.repositories | 3 - .../1.76/bcprov-jdk18on-1.76.pom | 32 - .../1.76/bcprov-jdk18on-1.76.pom.sha1 | 1 - .../1.78.1/_remote.repositories | 3 - .../1.78.1/bcprov-jdk18on-1.78.1.pom | 32 - .../1.78.1/bcprov-jdk18on-1.78.1.pom.sha1 | 1 - .../bcutil-jdk15on/1.70/_remote.repositories | 3 - .../1.70/bcutil-jdk15on-1.70.pom | 40 - .../1.70/bcutil-jdk15on-1.70.pom.sha1 | 1 - .../bcutil-jdk18on/1.76/_remote.repositories | 3 - .../1.76/bcutil-jdk18on-1.76.pom | 40 - .../1.76/bcutil-jdk18on-1.76.pom.sha1 | 1 - .../checker-qual/2.0.0/_remote.repositories | 3 - .../checker-qual/2.0.0/checker-qual-2.0.0.pom | 103 - .../2.0.0/checker-qual-2.0.0.pom.sha1 | 1 - .../checker-qual/2.11.1/_remote.repositories | 3 - .../2.11.1/checker-qual-2.11.1.pom | 65 - .../2.11.1/checker-qual-2.11.1.pom.sha1 | 1 - .../checker-qual/3.12.0/_remote.repositories | 3 - .../3.12.0/checker-qual-3.12.0.pom | 47 - .../3.12.0/checker-qual-3.12.0.pom.sha1 | 1 - .../checker-qual/3.31.0/_remote.repositories | 3 - .../3.31.0/checker-qual-3.31.0.pom | 47 - .../3.31.0/checker-qual-3.31.0.pom.sha1 | 1 - .../checker-qual/3.33.0/_remote.repositories | 3 - .../3.33.0/checker-qual-3.33.0.pom | 47 - .../3.33.0/checker-qual-3.33.0.pom.sha1 | 1 - .../checker-qual/3.37.0/_remote.repositories | 3 - .../3.37.0/checker-qual-3.37.0.pom | 47 - .../3.37.0/checker-qual-3.37.0.pom.sha1 | 1 - .../checker-qual/3.42.0/_remote.repositories | 3 - .../3.42.0/checker-qual-3.42.0.pom | 47 - .../3.42.0/checker-qual-3.42.0.pom.sha1 | 1 - .../codehaus-parent/4/_remote.repositories | 3 - .../codehaus-parent/4/codehaus-parent-4.pom | 155 - .../4/codehaus-parent-4.pom.sha1 | 1 - .../groovy-bom/3.0.19/_remote.repositories | 3 - .../groovy-bom/3.0.19/groovy-bom-3.0.19.pom | 975 ----- .../3.0.19/groovy-bom-3.0.19.pom.sha1 | 1 - .../groovy-bom/3.0.20/_remote.repositories | 3 - .../groovy-bom/3.0.20/groovy-bom-3.0.20.pom | 975 ----- .../3.0.20/groovy-bom-3.0.20.pom.sha1 | 1 - .../jettison/1.5.4/_remote.repositories | 3 - .../jettison/1.5.4/jettison-1.5.4.pom | 209 -- .../jettison/1.5.4/jettison-1.5.4.pom.sha1 | 1 - .../1.14/_remote.repositories | 3 - .../1.14/animal-sniffer-annotations-1.14.pom | 70 - .../animal-sniffer-annotations-1.14.pom.sha1 | 1 - .../1.14/_remote.repositories | 3 - .../1.14/animal-sniffer-parent-1.14.pom | 123 - .../1.14/animal-sniffer-parent-1.14.pom.sha1 | 1 - .../mojo/mojo-parent/34/_remote.repositories | 3 - .../mojo/mojo-parent/34/mojo-parent-34.pom | 667 ---- .../mojo-parent/34/mojo-parent-34.pom.sha1 | 1 - .../cryptacular/1.2.5/_remote.repositories | 3 - .../cryptacular/1.2.5/cryptacular-1.2.5.pom | 399 -- .../1.2.5/cryptacular-1.2.5.pom.sha1 | 1 - .../cryptacular/1.2.6/_remote.repositories | 3 - .../cryptacular/1.2.6/cryptacular-1.2.6.pom | 400 -- .../1.2.6/cryptacular-1.2.6.pom.sha1 | 1 - .../dbunit/dbunit/2.7.0/_remote.repositories | 3 - .../org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom | 1460 -------- .../dbunit/dbunit/2.7.0/dbunit-2.7.0.pom.sha1 | 1 - .../dom4j/dom4j/2.1.3/_remote.repositories | 3 - .../org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom | 77 - .../dom4j/dom4j/2.1.3/dom4j-2.1.3.pom.sha1 | 1 - .../2.0.2/_remote.repositories | 3 - .../2.0.2/angus-activation-project-2.0.2.pom | 496 --- .../angus-activation-project-2.0.2.pom.sha1 | 1 - .../2.0.2/_remote.repositories | 3 - .../2.0.2/angus-activation-2.0.2.pom | 108 - .../2.0.2/angus-activation-2.0.2.pom.sha1 | 1 - .../8.0.0/_remote.repositories | 3 - .../8.0.0/eclipse-collections-api-8.0.0.pom | 171 - .../eclipse-collections-api-8.0.0.pom.sha1 | 1 - .../8.0.0/_remote.repositories | 3 - .../eclipse-collections-parent-8.0.0.pom | 657 ---- .../eclipse-collections-parent-8.0.0.pom.sha1 | 1 - .../8.0.0/_remote.repositories | 3 - .../8.0.0/eclipse-collections-8.0.0.pom | 177 - .../8.0.0/eclipse-collections-8.0.0.pom.sha1 | 1 - .../ee4j/project/1.0.5/_remote.repositories | 3 - .../ee4j/project/1.0.5/project-1.0.5.pom | 311 -- .../ee4j/project/1.0.5/project-1.0.5.pom.sha1 | 1 - .../ee4j/project/1.0.6/_remote.repositories | 3 - .../ee4j/project/1.0.6/project-1.0.6.pom | 313 -- .../ee4j/project/1.0.6/project-1.0.6.pom.sha1 | 1 - .../ee4j/project/1.0.7/_remote.repositories | 3 - .../ee4j/project/1.0.7/project-1.0.7.pom | 332 -- .../ee4j/project/1.0.7/project-1.0.7.pom.sha1 | 1 - .../ee4j/project/1.0.8/_remote.repositories | 3 - .../ee4j/project/1.0.8/project-1.0.8.pom | 339 -- .../1.0.8/project-1.0.8.pom.lastUpdated | 9 - .../ee4j/project/1.0.8/project-1.0.8.pom.sha1 | 1 - .../ee4j/project/1.0.9/_remote.repositories | 3 - .../ee4j/project/1.0.9/project-1.0.9.pom | 381 -- .../1.0.9/project-1.0.9.pom.lastUpdated | 9 - .../ee4j/project/1.0.9/project-1.0.9.pom.sha1 | 1 - .../ee4j/project/1.0/_remote.repositories | 3 - .../eclipse/ee4j/project/1.0/project-1.0.pom | 272 -- .../ee4j/project/1.0/project-1.0.pom.sha1 | 1 - .../12.0.8/_remote.repositories | 3 - .../12.0.8/jetty-ee10-bom-12.0.8.pom | 252 -- .../jetty-ee10-bom-12.0.8.pom.lastUpdated | 9 - .../12.0.8/jetty-ee10-bom-12.0.8.pom.sha1 | 1 - .../jetty-bom/12.0.8/_remote.repositories | 3 - .../jetty-bom/12.0.8/jetty-bom-12.0.8.pom | 402 -- .../12.0.8/jetty-bom-12.0.8.pom.lastUpdated | 9 - .../12.0.8/jetty-bom-12.0.8.pom.sha1 | 1 - .../9.4.28.v20200408/_remote.repositories | 3 - .../jetty-bom-9.4.28.v20200408.pom | 473 --- ...jetty-bom-9.4.28.v20200408.pom.lastUpdated | 11 - .../jetty-bom-9.4.28.v20200408.pom.sha1 | 1 - .../9.4.53.v20231009/_remote.repositories | 3 - .../jetty-bom-9.4.53.v20231009.pom | 481 --- .../jetty-bom-9.4.53.v20231009.pom.sha1 | 1 - .../9.4.54.v20240208/_remote.repositories | 3 - .../jetty-bom-9.4.54.v20240208.pom | 481 --- .../jetty-bom-9.4.54.v20240208.pom.sha1 | 1 - .../flyway-core/9.22.3/_remote.repositories | 3 - .../flyway-core/9.22.3/flyway-core-9.22.3.pom | 300 -- .../9.22.3/flyway-core-9.22.3.pom.sha1 | 1 - .../flyway-parent/9.22.3/_remote.repositories | 3 - .../9.22.3/flyway-parent-9.22.3.pom | 1503 -------- .../9.22.3/flyway-parent-9.22.3.pom.sha1 | 1 - .../freemarker/2.3.32/_remote.repositories | 3 - .../freemarker/2.3.32/freemarker-2.3.32.pom | 92 - .../2.3.32/freemarker-2.3.32.pom.sha1 | 1 - .../expressly/5.0.0/_remote.repositories | 3 - .../expressly/5.0.0/expressly-5.0.0.pom | 244 -- .../expressly/5.0.0/expressly-5.0.0.pom.sha1 | 1 - .../class-model/3.0.6/_remote.repositories | 3 - .../class-model/3.0.6/class-model-3.0.6.pom | 116 - .../3.0.6/class-model-3.0.6.pom.sha1 | 1 - .../hk2/external/3.0.6/_remote.repositories | 3 - .../hk2/external/3.0.6/external-3.0.6.pom | 41 - .../external/3.0.6/external-3.0.6.pom.sha1 | 1 - .../3.0.6/_remote.repositories | 3 - .../3.0.6/aopalliance-repackaged-3.0.6.pom | 136 - .../aopalliance-repackaged-3.0.6.pom.sha1 | 1 - .../hk2/hk2-api/3.0.6/_remote.repositories | 3 - .../hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom | 99 - .../hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom.sha1 | 1 - .../hk2/hk2-core/3.0.6/_remote.repositories | 3 - .../hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom | 108 - .../hk2-core/3.0.6/hk2-core-3.0.6.pom.sha1 | 1 - .../hk2-locator/3.0.6/_remote.repositories | 3 - .../hk2-locator/3.0.6/hk2-locator-3.0.6.pom | 110 - .../3.0.6/hk2-locator-3.0.6.pom.sha1 | 1 - .../hk2/hk2-parent/3.0.6/_remote.repositories | 3 - .../hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom | 951 ----- .../3.0.6/hk2-parent-3.0.6.pom.sha1 | 1 - .../hk2-runlevel/3.0.6/_remote.repositories | 3 - .../hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom | 110 - .../3.0.6/hk2-runlevel-3.0.6.pom.sha1 | 1 - .../hk2/hk2-utils/3.0.6/_remote.repositories | 3 - .../hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom | 127 - .../hk2-utils/3.0.6/hk2-utils-3.0.6.pom.sha1 | 1 - .../hk2/hk2/3.0.6/_remote.repositories | 3 - .../org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom | 120 - .../hk2/hk2/3.0.6/hk2-3.0.6.pom.sha1 | 1 - .../1.0.3/_remote.repositories | 3 - .../1.0.3/osgi-resource-locator-1.0.3.pom | 193 - .../osgi-resource-locator-1.0.3.pom.sha1 | 1 - .../spring-bridge/3.0.6/_remote.repositories | 3 - .../3.0.6/spring-bridge-3.0.6.pom | 97 - .../3.0.6/spring-bridge-3.0.6.pom.sha1 | 1 - .../jakarta.el/3.0.3/_remote.repositories | 3 - .../jakarta.el/3.0.3/jakarta.el-3.0.3.pom | 328 -- .../3.0.3/jakarta.el-3.0.3.pom.sha1 | 1 - .../jakarta.json/2.0.1/_remote.repositories | 3 - .../jakarta.json/2.0.1/jakarta.json-2.0.1.pom | 248 -- .../2.0.1/jakarta.json-2.0.1.pom.sha1 | 1 - .../jaxb/jaxb-bom/4.0.5/_remote.repositories | 3 - .../jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom | 292 -- .../4.0.5/jaxb-bom-4.0.5.pom.lastUpdated | 9 - .../jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 | 1 - .../jaxb/jaxb-core/4.0.5/_remote.repositories | 3 - .../jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom | 104 - .../jaxb-core/4.0.5/jaxb-core-4.0.5.pom.sha1 | 1 - .../jaxb-runtime/4.0.5/_remote.repositories | 3 - .../jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom | 228 -- .../4.0.5/jaxb-runtime-4.0.5.pom.sha1 | 1 - .../jaxb/txw2/4.0.5/_remote.repositories | 3 - .../glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom | 55 - .../jaxb/txw2/4.0.5/txw2-4.0.5.pom.sha1 | 1 - .../3.1.6/_remote.repositories | 3 - .../jersey-container-servlet-core-3.1.6.pom | 86 - ...rsey-container-servlet-core-3.1.6.pom.sha1 | 1 - .../3.1.6/_remote.repositories | 3 - .../3.1.6/jersey-container-servlet-3.1.6.pom | 88 - .../jersey-container-servlet-3.1.6.pom.sha1 | 1 - .../project/3.1.6/_remote.repositories | 3 - .../project/3.1.6/project-3.1.6.pom | 87 - .../project/3.1.6/project-3.1.6.pom.sha1 | 1 - .../jersey-client/3.1.6/_remote.repositories | 3 - .../3.1.6/jersey-client-3.1.6.pom | 178 - .../3.1.6/jersey-client-3.1.6.pom.sha1 | 1 - .../jersey-common/3.1.6/_remote.repositories | 3 - .../3.1.6/jersey-common-3.1.6.pom | 298 -- .../3.1.6/jersey-common-3.1.6.pom.sha1 | 1 - .../jersey-server/3.1.6/_remote.repositories | 3 - .../3.1.6/jersey-server-3.1.6.pom | 306 -- .../3.1.6/jersey-server-3.1.6.pom.sha1 | 1 - .../3.1.6/_remote.repositories | 3 - .../3.1.6/jersey-bean-validation-3.1.6.pom | 156 - .../jersey-bean-validation-3.1.6.pom.sha1 | 1 - .../3.1.6/_remote.repositories | 3 - .../3.1.6/jersey-entity-filtering-3.1.6.pom | 90 - .../jersey-entity-filtering-3.1.6.pom.sha1 | 1 - .../jersey-spring6/3.1.6/_remote.repositories | 3 - .../3.1.6/jersey-spring6-3.1.6.pom | 391 -- .../3.1.6/jersey-spring6-3.1.6.pom.sha1 | 1 - .../ext/project/3.1.6/_remote.repositories | 3 - .../ext/project/3.1.6/project-3.1.6.pom | 79 - .../ext/project/3.1.6/project-3.1.6.pom.sha1 | 1 - .../jersey-hk2/3.1.6/_remote.repositories | 3 - .../jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom | 133 - .../3.1.6/jersey-hk2-3.1.6.pom.sha1 | 1 - .../inject/project/3.1.6/_remote.repositories | 3 - .../inject/project/3.1.6/project-3.1.6.pom | 40 - .../project/3.1.6/project-3.1.6.pom.sha1 | 1 - .../jersey-bom/2.30.1/_remote.repositories | 3 - .../jersey-bom/2.30.1/jersey-bom-2.30.1.pom | 425 --- .../2.30.1/jersey-bom-2.30.1.pom.lastUpdated | 11 - .../2.30.1/jersey-bom-2.30.1.pom.sha1 | 1 - .../jersey-bom/3.1.6/_remote.repositories | 3 - .../jersey-bom/3.1.6/jersey-bom-3.1.6.pom | 462 --- .../3.1.6/jersey-bom-3.1.6.pom.lastUpdated | 9 - .../3.1.6/jersey-bom-3.1.6.pom.sha1 | 1 - .../3.1.6/_remote.repositories | 3 - .../3.1.6/jersey-media-json-jackson-3.1.6.pom | 187 - .../jersey-media-json-jackson-3.1.6.pom.sha1 | 1 - .../3.1.6/_remote.repositories | 3 - .../3.1.6/jersey-media-multipart-3.1.6.pom | 139 - .../jersey-media-multipart-3.1.6.pom.sha1 | 1 - .../media/project/3.1.6/_remote.repositories | 3 - .../media/project/3.1.6/project-3.1.6.pom | 58 - .../project/3.1.6/project-3.1.6.pom.sha1 | 1 - .../jersey/project/3.1.6/_remote.repositories | 3 - .../jersey/project/3.1.6/project-3.1.6.pom | 2324 ------------ .../project/3.1.6/project-3.1.6.pom.sha1 | 1 - .../glassfish/json/2.0.1/_remote.repositories | 3 - .../org/glassfish/json/2.0.1/json-2.0.1.pom | 464 --- .../glassfish/json/2.0.1/json-2.0.1.pom.sha1 | 1 - .../1.0.0-rc15/_remote.repositories | 3 - .../1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom | 36 - .../js-scriptengine-1.0.0-rc15.pom.sha1 | 1 - .../js/js/1.0.0-rc15/_remote.repositories | 3 - .../js/js/1.0.0-rc15/js-1.0.0-rc15.pom | 80 - .../js/js/1.0.0-rc15/js-1.0.0-rc15.pom.sha1 | 1 - .../regex/1.0.0-rc15/_remote.repositories | 3 - .../regex/1.0.0-rc15/regex-1.0.0-rc15.pom | 36 - .../1.0.0-rc15/regex-1.0.0-rc15.pom.sha1 | 1 - .../graal-sdk/1.0.0-rc15/_remote.repositories | 3 - .../1.0.0-rc15/graal-sdk-1.0.0-rc15.pom | 30 - .../1.0.0-rc15/graal-sdk-1.0.0-rc15.pom.sha1 | 1 - .../1.0.0-rc15/_remote.repositories | 3 - .../1.0.0-rc15/truffle-api-1.0.0-rc15.pom | 37 - .../truffle-api-1.0.0-rc15.pom.sha1 | 1 - .../hamcrest-core/2.2/_remote.repositories | 3 - .../hamcrest-core/2.2/hamcrest-core-2.2.pom | 43 - .../2.2/hamcrest-core-2.2.pom.sha1 | 1 - .../hamcrest/2.2/_remote.repositories | 3 - .../hamcrest/hamcrest/2.2/hamcrest-2.2.pom | 35 - .../hamcrest/2.2/hamcrest-2.2.pom.sha1 | 1 - .../2.1.12/HdrHistogram-2.1.12.pom | 268 -- .../2.1.12/HdrHistogram-2.1.12.pom.sha1 | 1 - .../HdrHistogram/2.1.12/_remote.repositories | 3 - .../6.0.6.Final/_remote.repositories | 3 - ...ernate-commons-annotations-6.0.6.Final.pom | 45 - ...e-commons-annotations-6.0.6.Final.pom.sha1 | 1 - .../8.0.1.Final/_remote.repositories | 3 - .../hibernate-validator-8.0.1.Final.pom | 25 - .../hibernate-validator-8.0.1.Final.pom.sha1 | 1 - .../6.4.4.Final/_remote.repositories | 3 - .../hibernate-core-6.4.4.Final.pom | 183 - .../hibernate-core-6.4.4.Final.pom.sha1 | 1 - .../8.0.1.Final/_remote.repositories | 3 - ...hibernate-validator-parent-8.0.1.Final.pom | 1562 -------- ...nate-validator-parent-8.0.1.Final.pom.sha1 | 1 - .../8.0.1.Final/_remote.repositories | 3 - ...rnate-validator-relocation-8.0.1.Final.pom | 27 - ...-validator-relocation-8.0.1.Final.pom.sha1 | 1 - .../8.0.1.Final/_remote.repositories | 3 - .../hibernate-validator-8.0.1.Final.pom | 349 -- .../hibernate-validator-8.0.1.Final.pom.sha1 | 1 - .../14.0.27.Final/_remote.repositories | 3 - .../infinispan-bom-14.0.27.Final.pom | 560 --- ...finispan-bom-14.0.27.Final.pom.lastUpdated | 9 - .../infinispan-bom-14.0.27.Final.pom.sha1 | 1 - .../14.0.27.Final/_remote.repositories | 3 - ...ild-configuration-parent-14.0.27.Final.pom | 519 --- ...ation-parent-14.0.27.Final.pom.lastUpdated | 9 - ...onfiguration-parent-14.0.27.Final.pom.sha1 | 1 - .../3.6.1/_remote.repositories | 3 - .../3.6.1/cas-client-core-3.6.1.pom | 116 - .../3.6.1/cas-client-core-3.6.1.pom.sha1 | 1 - .../cas-client/3.6.1/_remote.repositories | 3 - .../cas-client/3.6.1/cas-client-3.6.1.pom | 318 -- .../3.6.1/cas-client-3.6.1.pom.sha1 | 1 - .../jasig-parent/41/_remote.repositories | 3 - .../jasig-parent/41/jasig-parent-41.pom | 404 -- .../jasig-parent/41/jasig-parent-41.pom.sha1 | 1 - .../1.9.2/_remote.repositories | 3 - .../1.9.2/jasypt-hibernate4-1.9.2.pom | 267 -- .../1.9.2/jasypt-hibernate4-1.9.2.pom.sha1 | 1 - .../jasypt/jasypt/1.9.2/_remote.repositories | 3 - .../org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom | 270 -- .../jasypt/jasypt/1.9.2/jasypt-1.9.2.pom.sha1 | 1 - .../javassist/3.28.0-GA/_remote.repositories | 3 - .../3.28.0-GA/javassist-3.28.0-GA.pom | 335 -- .../3.28.0-GA/javassist-3.28.0-GA.pom.sha1 | 1 - .../javassist/3.30.2-GA/_remote.repositories | 3 - .../3.30.2-GA/javassist-3.30.2-GA.pom | 337 -- .../3.30.2-GA/javassist-3.30.2-GA.pom.sha1 | 1 - .../1.7.0.Alpha10/_remote.repositories | 3 - .../arquillian-bom-1.7.0.Alpha10.pom | 296 -- .../arquillian-bom-1.7.0.Alpha10.pom.sha1 | 1 - .../jboss-parent/39/_remote.repositories | 3 - .../jboss/jboss-parent/39/jboss-parent-39.pom | 1521 -------- .../39/jboss-parent-39.pom.lastUpdated | 5 - .../jboss-parent/39/jboss-parent-39.pom.sha1 | 1 - .../3.5.3.Final/_remote.repositories | 3 - .../3.5.3.Final/jboss-logging-3.5.3.Final.pom | 404 -- .../jboss-logging-3.5.3.Final.pom.sha1 | 1 - .../1.0.1.Final/_remote.repositories | 3 - .../logging-parent-1.0.1.Final.pom | 134 - .../logging-parent-1.0.1.Final.pom.sha1 | 1 - .../2.0.0/_remote.repositories | 3 - .../shrinkwrap-descriptors-bom-2.0.0.pom | 135 - .../shrinkwrap-descriptors-bom-2.0.0.pom.sha1 | 1 - .../3.1.4/_remote.repositories | 3 - .../3.1.4/shrinkwrap-resolver-bom-3.1.4.pom | 203 -- .../shrinkwrap-resolver-bom-3.1.4.pom.sha1 | 1 - .../shrinkwrap-bom/1.2.6/_remote.repositories | 3 - .../1.2.6/shrinkwrap-bom-1.2.6.pom | 127 - .../1.2.6/shrinkwrap-bom-1.2.6.pom.sha1 | 1 - .../annotations/17.0.0/_remote.repositories | 3 - .../annotations/17.0.0/annotations-17.0.0.pom | 30 - .../17.0.0/annotations-17.0.0.pom.sha1 | 1 - .../kotlin-bom/1.3.72/_remote.repositories | 3 - .../kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom | 219 -- .../1.3.72/kotlin-bom-1.3.72.pom.lastUpdated | 11 - .../1.3.72/kotlin-bom-1.3.72.pom.sha1 | 1 - .../kotlin-bom/1.9.23/_remote.repositories | 3 - .../kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom | 225 -- .../1.9.23/kotlin-bom-1.9.23.pom.lastUpdated | 9 - .../1.9.23/kotlin-bom-1.9.23.pom.sha1 | 1 - .../1.3.6/_remote.repositories | 3 - .../1.3.6/kotlinx-coroutines-bom-1.3.6.pom | 142 - ...tlinx-coroutines-bom-1.3.6.pom.lastUpdated | 11 - .../kotlinx-coroutines-bom-1.3.6.pom.sha1 | 1 - .../1.7.3/_remote.repositories | 3 - .../1.7.3/kotlinx-coroutines-bom-1.7.3.pom | 119 - ...tlinx-coroutines-bom-1.7.3.pom.lastUpdated | 9 - .../kotlinx-coroutines-bom-1.7.3.pom.sha1 | 1 - .../1.6.3/_remote.repositories | 3 - .../1.6.3/kotlinx-serialization-bom-1.6.3.pom | 99 - ...nx-serialization-bom-1.6.3.pom.lastUpdated | 9 - .../kotlinx-serialization-bom-1.6.3.pom.sha1 | 1 - .../json/json/20170516/_remote.repositories | 3 - .../org/json/json/20170516/json-20170516.pom | 181 - .../json/json/20170516/json-20170516.pom.sha1 | 1 - .../json/json/20220924/_remote.repositories | 3 - .../org/json/json/20220924/json-20220924.pom | 170 - .../json/json/20220924/json-20220924.pom.sha1 | 1 - .../json/json/20230227/_remote.repositories | 3 - .../org/json/json/20230227/json-20230227.pom | 170 - .../json/json/20230227/json-20230227.pom.sha1 | 1 - .../junit-bom/5.10.0/_remote.repositories | 3 - .../junit-bom/5.10.0/junit-bom-5.10.0.pom | 159 - .../5.10.0/junit-bom-5.10.0.pom.sha1 | 1 - .../junit-bom/5.10.1/_remote.repositories | 3 - .../junit-bom/5.10.1/junit-bom-5.10.1.pom | 159 - .../5.10.1/junit-bom-5.10.1.pom.sha1 | 1 - .../junit-bom/5.10.2/_remote.repositories | 3 - .../junit-bom/5.10.2/junit-bom-5.10.2.pom | 159 - .../5.10.2/junit-bom-5.10.2.pom.lastUpdated | 9 - .../5.10.2/junit-bom-5.10.2.pom.sha1 | 1 - .../junit-bom/5.6.2/_remote.repositories | 3 - .../junit/junit-bom/5.6.2/junit-bom-5.6.2.pom | 139 - .../5.6.2/junit-bom-5.6.2.pom.lastUpdated | 11 - .../junit-bom/5.6.2/junit-bom-5.6.2.pom.sha1 | 1 - .../junit-bom/5.7.2/_remote.repositories | 3 - .../junit/junit-bom/5.7.2/junit-bom-5.7.2.pom | 144 - .../junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 | 1 - .../junit-bom/5.9.1/_remote.repositories | 3 - .../junit/junit-bom/5.9.1/junit-bom-5.9.1.pom | 159 - .../junit-bom/5.9.1/junit-bom-5.9.1.pom.sha1 | 1 - .../junit-bom/5.9.2/_remote.repositories | 3 - .../junit/junit-bom/5.9.2/junit-bom-5.9.2.pom | 159 - .../junit-bom/5.9.2/junit-bom-5.9.2.pom.sha1 | 1 - .../junit-bom/5.9.3/_remote.repositories | 3 - .../junit/junit-bom/5.9.3/junit-bom-5.9.3.pom | 159 - .../junit-bom/5.9.3/junit-bom-5.9.3.pom.sha1 | 1 - .../5.10.2/_remote.repositories | 3 - .../5.10.2/junit-jupiter-api-5.10.2.pom | 94 - .../5.10.2/junit-jupiter-api-5.10.2.pom.sha1 | 1 - .../5.10.2/_remote.repositories | 3 - .../5.10.2/junit-jupiter-engine-5.10.2.pom | 94 - .../junit-jupiter-engine-5.10.2.pom.sha1 | 1 - .../5.10.2/_remote.repositories | 3 - .../5.10.2/junit-jupiter-params-5.10.2.pom | 88 - .../junit-jupiter-params-5.10.2.pom.sha1 | 1 - .../junit-jupiter/5.10.2/_remote.repositories | 3 - .../5.10.2/junit-jupiter-5.10.2.pom | 95 - .../5.10.2/junit-jupiter-5.10.2.pom.sha1 | 1 - .../1.10.2/_remote.repositories | 3 - .../1.10.2/junit-platform-commons-1.10.2.pom | 83 - .../junit-platform-commons-1.10.2.pom.sha1 | 1 - .../1.10.2/_remote.repositories | 3 - .../1.10.2/junit-platform-engine-1.10.2.pom | 95 - .../junit-platform-engine-1.10.2.pom.sha1 | 1 - .../mimepull/1.9.15/_remote.repositories | 3 - .../mimepull/1.9.15/mimepull-1.9.15.pom | 410 --- .../mimepull/1.9.15/mimepull-1.9.15.pom.sha1 | 1 - .../LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom | 198 - .../2.0.3/LatencyUtils-2.0.3.pom.sha1 | 1 - .../LatencyUtils/2.0.3/_remote.repositories | 3 - .../mockito-bom/4.11.0/_remote.repositories | 3 - .../mockito-bom/4.11.0/mockito-bom-4.11.0.pom | 103 - .../4.11.0/mockito-bom-4.11.0.pom.sha1 | 1 - .../mockito-bom/5.7.0/_remote.repositories | 3 - .../mockito-bom/5.7.0/mockito-bom-5.7.0.pom | 98 - .../5.7.0/mockito-bom-5.7.0.pom.lastUpdated | 9 - .../5.7.0/mockito-bom-5.7.0.pom.sha1 | 1 - .../mockito-core/5.7.0/_remote.repositories | 3 - .../mockito-core/5.7.0/mockito-core-5.7.0.pom | 83 - .../5.7.0/mockito-core-5.7.0.pom.sha1 | 1 - .../5.7.0/_remote.repositories | 3 - .../5.7.0/mockito-junit-jupiter-5.7.0.pom | 77 - .../mockito-junit-jupiter-5.7.0.pom.sha1 | 1 - .../mozilla/rhino/1.7R4/_remote.repositories | 3 - .../org/mozilla/rhino/1.7R4/rhino-1.7R4.pom | 34 - .../mozilla/rhino/1.7R4/rhino-1.7R4.pom.sha1 | 1 - .../objenesis-parent/3.3/_remote.repositories | 3 - .../3.3/objenesis-parent-3.3.pom | 575 --- .../3.3/objenesis-parent-3.3.pom.sha1 | 1 - .../objenesis/3.3/_remote.repositories | 3 - .../objenesis/objenesis/3.3/objenesis-3.3.pom | 91 - .../objenesis/3.3/objenesis-3.3.pom.sha1 | 1 - .../SkeletonCohortCharacterization-1.2.1.pom | 142 - ...hortCharacterization-1.2.1.pom.lastUpdated | 11 - ...letonCohortCharacterization-1.2.1.pom.sha1 | 1 - .../1.2.1/_remote.repositories | 3 - .../ohdsi/circe/1.11.1/_remote.repositories | 3 - .../org/ohdsi/circe/1.11.1/circe-1.11.1.pom | 202 - .../circe/1.11.1/circe-1.11.1.pom.lastUpdated | 11 - .../ohdsi/circe/1.11.1/circe-1.11.1.pom.sha1 | 1 - .../ohdsi/circe/1.11.2/_remote.repositories | 3 - .../org/ohdsi/circe/1.11.2/circe-1.11.2.pom | 202 - .../circe/1.11.2/circe-1.11.2.pom.lastUpdated | 11 - .../ohdsi/circe/1.11.2/circe-1.11.2.pom.sha1 | 1 - .../3.2.0/_remote.repositories | 3 - .../3.2.0/featureExtraction-3.2.0.pom | 197 - .../featureExtraction-3.2.0.pom.lastUpdated | 11 - .../3.2.0/featureExtraction-3.2.0.pom.sha1 | 1 - .../ohdsi/hydra/0.4.0/_remote.repositories | 3 - .../org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom | 154 - .../hydra/0.4.0/hydra-0.4.0.pom.lastUpdated | 11 - .../ohdsi/hydra/0.4.0/hydra-0.4.0.pom.sha1 | 1 - .../sql/SqlRender/1.16.1/SqlRender-1.16.1.pom | 140 - .../1.16.1/SqlRender-1.16.1.pom.lastUpdated | 11 - .../1.16.1/SqlRender-1.16.1.pom.sha1 | 1 - .../sql/SqlRender/1.16.1/_remote.repositories | 3 - .../1.2.1-SNAPSHOT/_remote.repositories | 3 - .../maven-metadata-ohdsi.snapshots.xml | 25 - .../maven-metadata-ohdsi.snapshots.xml.sha1 | 1 - .../1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml | 25 - .../maven-metadata-ohdsi.xml.sha1 | 1 - .../1.2.1-SNAPSHOT/resolver-status.properties | 14 - ...analysis-specs-1.2.1-20201204.180243-3.pom | 85 - ...cs-1.2.1-20201204.180243-3.pom.lastUpdated | 9 - ...sis-specs-1.2.1-20201204.180243-3.pom.sha1 | 1 - ...dardized-analysis-specs-1.2.1-SNAPSHOT.pom | 85 - .../1.5.0/_remote.repositories | 3 - .../standardized-analysis-specs-1.5.0.pom | 75 - ...dized-analysis-specs-1.5.0.pom.lastUpdated | 11 - ...standardized-analysis-specs-1.5.0.pom.sha1 | 1 - .../1.2.1-SNAPSHOT/_remote.repositories | 3 - .../maven-metadata-ohdsi.snapshots.xml | 25 - .../maven-metadata-ohdsi.snapshots.xml.sha1 | 1 - .../1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml | 25 - .../maven-metadata-ohdsi.xml.sha1 | 1 - .../1.2.1-SNAPSHOT/resolver-status.properties | 14 - ...analysis-utils-1.2.1-20201204.180243-3.pom | 118 - ...ls-1.2.1-20201204.180243-3.pom.lastUpdated | 9 - ...sis-utils-1.2.1-20201204.180243-3.pom.sha1 | 1 - ...dardized-analysis-utils-1.2.1-SNAPSHOT.pom | 118 - .../1.4.0/_remote.repositories | 3 - .../standardized-analysis-utils-1.4.0.pom | 84 - ...dized-analysis-utils-1.4.0.pom.lastUpdated | 11 - ...standardized-analysis-utils-1.4.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-core-api-5.0.0.pom | 96 - .../opensaml-core-api-5.0.0.pom.lastUpdated | 11 - .../5.0.0/opensaml-core-api-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-core-impl-5.0.0.pom | 137 - .../opensaml-core-impl-5.0.0.pom.lastUpdated | 11 - .../5.0.0/opensaml-core-impl-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-messaging-api-5.0.0.pom | 66 - ...ensaml-messaging-api-5.0.0.pom.lastUpdated | 11 - .../opensaml-messaging-api-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-messaging-impl-5.0.0.pom | 81 - ...nsaml-messaging-impl-5.0.0.pom.lastUpdated | 11 - .../opensaml-messaging-impl-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-parent-5.0.0.pom | 178 - .../opensaml-parent-5.0.0.pom.lastUpdated | 11 - .../5.0.0/opensaml-parent-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-profile-api-5.0.0.pom | 98 - ...opensaml-profile-api-5.0.0.pom.lastUpdated | 11 - .../5.0.0/opensaml-profile-api-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-profile-impl-5.0.0.pom | 104 - ...pensaml-profile-impl-5.0.0.pom.lastUpdated | 11 - .../opensaml-profile-impl-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-saml-api-5.0.0.pom | 105 - .../opensaml-saml-api-5.0.0.pom.lastUpdated | 11 - .../5.0.0/opensaml-saml-api-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-saml-impl-5.0.0.pom | 245 -- .../opensaml-saml-impl-5.0.0.pom.lastUpdated | 11 - .../5.0.0/opensaml-saml-impl-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-security-api-5.0.0.pom | 120 - ...pensaml-security-api-5.0.0.pom.lastUpdated | 11 - .../opensaml-security-api-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-security-impl-5.0.0.pom | 143 - ...ensaml-security-impl-5.0.0.pom.lastUpdated | 11 - .../opensaml-security-impl-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-soap-api-5.0.0.pom | 79 - .../opensaml-soap-api-5.0.0.pom.lastUpdated | 11 - .../5.0.0/opensaml-soap-api-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-soap-impl-5.0.0.pom | 129 - .../opensaml-soap-impl-5.0.0.pom.lastUpdated | 11 - .../5.0.0/opensaml-soap-impl-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-storage-api-5.0.0.pom | 53 - ...opensaml-storage-api-5.0.0.pom.lastUpdated | 11 - .../5.0.0/opensaml-storage-api-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-storage-impl-5.0.0.pom | 203 -- ...pensaml-storage-impl-5.0.0.pom.lastUpdated | 11 - .../opensaml-storage-impl-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-xmlsec-api-5.0.0.pom | 83 - .../opensaml-xmlsec-api-5.0.0.pom.lastUpdated | 11 - .../5.0.0/opensaml-xmlsec-api-5.0.0.pom.sha1 | 1 - .../5.0.0/_remote.repositories | 3 - .../5.0.0/opensaml-xmlsec-impl-5.0.0.pom | 118 - ...opensaml-xmlsec-impl-5.0.0.pom.lastUpdated | 11 - .../5.0.0/opensaml-xmlsec-impl-5.0.0.pom.sha1 | 1 - .../opentest4j/1.3.0/_remote.repositories | 3 - .../opentest4j/1.3.0/opentest4j-1.3.0.pom | 54 - .../1.3.0/opentest4j-1.3.0.pom.sha1 | 1 - .../asm-analysis/6.2.1/_remote.repositories | 3 - .../asm-analysis/6.2.1/asm-analysis-6.2.1.pom | 102 - .../6.2.1/asm-analysis-6.2.1.pom.sha1 | 1 - .../asm/asm-analysis/9.6/_remote.repositories | 3 - .../asm/asm-analysis/9.6/asm-analysis-9.6.pom | 83 - .../9.6/asm-analysis-9.6.pom.sha1 | 1 - .../ow2/asm/asm-bom/9.5/_remote.repositories | 3 - .../org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom | 104 - .../ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1 | 1 - .../asm-commons/6.2.1/_remote.repositories | 3 - .../asm-commons/6.2.1/asm-commons-6.2.1.pom | 120 - .../6.2.1/asm-commons-6.2.1.pom.sha1 | 1 - .../asm/asm-commons/9.6/_remote.repositories | 3 - .../asm/asm-commons/9.6/asm-commons-9.6.pom | 89 - .../asm-commons/9.6/asm-commons-9.6.pom.sha1 | 1 - .../asm/asm-tree/6.2.1/_remote.repositories | 3 - .../ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom | 102 - .../asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 | 1 - .../ow2/asm/asm-tree/9.6/_remote.repositories | 3 - .../org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom | 83 - .../asm/asm-tree/9.6/asm-tree-9.6.pom.sha1 | 1 - .../asm/asm-util/6.2.1/_remote.repositories | 3 - .../ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom | 120 - .../asm-util/6.2.1/asm-util-6.2.1.pom.sha1 | 1 - .../ow2/asm/asm-util/9.6/_remote.repositories | 3 - .../org/ow2/asm/asm-util/9.6/asm-util-9.6.pom | 95 - .../asm/asm-util/9.6/asm-util-9.6.pom.sha1 | 1 - .../ow2/asm/asm/6.2.1/_remote.repositories | 3 - .../org/ow2/asm/asm/6.2.1/asm-6.2.1.pom | 96 - .../org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 | 1 - .../org/ow2/asm/asm/9.6/_remote.repositories | 3 - code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom | 75 - .../org/ow2/asm/asm/9.6/asm-9.6.pom.sha1 | 1 - .../org/ow2/ow2/1.5.1/_remote.repositories | 3 - code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom | 309 -- .../org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 | 1 - .../org/ow2/ow2/1.5/_remote.repositories | 3 - code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom | 309 -- code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 | 1 - .../encoder-parent/1.2.3/_remote.repositories | 3 - .../1.2.3/encoder-parent-1.2.3.pom | 492 --- .../1.2.3/encoder-parent-1.2.3.pom.sha1 | 1 - .../encoder/1.2.3/_remote.repositories | 3 - .../encoder/encoder/1.2.3/encoder-1.2.3.pom | 99 - .../encoder/1.2.3/encoder-1.2.3.pom.sha1 | 1 - .../8.0.1/_remote.repositories | 3 - .../8.0.1/jakartaee-pac4j-8.0.1.pom | 30 - .../8.0.1/jakartaee-pac4j-8.0.1.pom.sha1 | 1 - .../8.0.1/_remote.repositories | 3 - .../8.0.1/jee-pac4j-parent-8.0.1.pom | 211 -- .../8.0.1/jee-pac4j-parent-8.0.1.pom.sha1 | 1 - .../pac4j-cas/6.0.3/_remote.repositories | 3 - .../pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom | 75 - .../pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom.sha1 | 1 - .../pac4j-core/5.7.4/_remote.repositories | 3 - .../pac4j-core/5.7.4/pac4j-core-5.7.4.pom | 122 - .../5.7.4/pac4j-core-5.7.4.pom.sha1 | 1 - .../pac4j-core/6.0.2/_remote.repositories | 3 - .../pac4j-core/6.0.2/pac4j-core-6.0.2.pom | 132 - .../6.0.2/pac4j-core-6.0.2.pom.sha1 | 1 - .../pac4j-core/6.0.3/_remote.repositories | 3 - .../pac4j-core/6.0.3/pac4j-core-6.0.3.pom | 132 - .../6.0.3/pac4j-core-6.0.3.pom.sha1 | 1 - .../pac4j-http/6.0.3/_remote.repositories | 3 - .../pac4j-http/6.0.3/pac4j-http-6.0.3.pom | 119 - .../6.0.3/pac4j-http-6.0.3.pom.sha1 | 1 - .../6.0.2/_remote.repositories | 3 - .../6.0.2/pac4j-jakartaee-6.0.2.pom | 77 - .../6.0.2/pac4j-jakartaee-6.0.2.pom.sha1 | 1 - .../6.0.3/_remote.repositories | 3 - .../6.0.3/pac4j-jakartaee-6.0.3.pom | 77 - .../6.0.3/pac4j-jakartaee-6.0.3.pom.sha1 | 1 - .../pac4j-oauth/6.0.3/_remote.repositories | 3 - .../pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom | 78 - .../6.0.3/pac4j-oauth-6.0.3.pom.sha1 | 1 - .../pac4j-oidc/6.0.3/_remote.repositories | 3 - .../pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom | 109 - .../6.0.3/pac4j-oidc-6.0.3.pom.sha1 | 1 - .../pac4j-parent/5.7.4/_remote.repositories | 3 - .../pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom | 633 ---- .../5.7.4/pac4j-parent-5.7.4.pom.sha1 | 1 - .../pac4j-parent/6.0.2/_remote.repositories | 3 - .../pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom | 668 ---- .../6.0.2/pac4j-parent-6.0.2.pom.sha1 | 1 - .../pac4j-parent/6.0.3/_remote.repositories | 3 - .../pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom | 669 ---- .../6.0.3/pac4j-parent-6.0.3.pom.sha1 | 1 - .../5.7.4/_remote.repositories | 3 - .../5.7.4/pac4j-saml-opensamlv5-5.7.4.pom | 285 -- .../pac4j-saml-opensamlv5-5.7.4.pom.sha1 | 1 - .../postgresql/42.6.2/_remote.repositories | 3 - .../postgresql/42.6.2/postgresql-42.6.2.pom | 81 - .../42.6.2/postgresql-42.6.2.pom.sha1 | 1 - .../lombok/1.18.32/_remote.repositories | 3 - .../lombok/1.18.32/lombok-1.18.32.pom | 43 - .../lombok/1.18.32/lombok-1.18.32.pom.sha1 | 1 - .../1.0.4/_remote.repositories | 3 - .../1.0.4/reactive-streams-1.0.4.pom | 30 - .../1.0.4/reactive-streams-1.0.4.pom.sha1 | 1 - .../reflections/0.10.2/_remote.repositories | 3 - .../reflections/0.10.2/reflections-0.10.2.pom | 249 -- .../0.10.2/reflections-0.10.2.pom.sha1 | 1 - .../duct-tape/1.0.8/_remote.repositories | 3 - .../duct-tape/1.0.8/duct-tape-1.0.8.pom | 163 - .../duct-tape/1.0.8/duct-tape-1.0.8.pom.sha1 | 1 - .../selenium-bom/4.14.1/_remote.repositories | 3 - .../4.14.1/selenium-bom-4.14.1.pom | 179 - .../selenium-bom-4.14.1.pom.lastUpdated | 9 - .../4.14.1/selenium-bom-4.14.1.pom.sha1 | 1 - .../semver4j/4.3.0/_remote.repositories | 3 - .../semver4j/4.3.0/semver4j-4.3.0.pom | 230 -- .../semver4j/4.3.0/semver4j-4.3.0.pom.sha1 | 1 - .../jsonassert/1.5.1/_remote.repositories | 3 - .../jsonassert/1.5.1/jsonassert-1.5.1.pom | 147 - .../1.5.1/jsonassert-1.5.1.pom.sha1 | 1 - .../2.0.13/_remote.repositories | 3 - .../2.0.13/jcl-over-slf4j-2.0.13.pom | 58 - .../2.0.13/jcl-over-slf4j-2.0.13.pom.sha1 | 1 - .../jul-to-slf4j/2.0.13/_remote.repositories | 3 - .../2.0.13/jul-to-slf4j-2.0.13.pom | 40 - .../2.0.13/jul-to-slf4j-2.0.13.pom.sha1 | 1 - .../slf4j-api/2.0.13/_remote.repositories | 3 - .../slf4j-api/2.0.13/slf4j-api-2.0.13.pom | 81 - .../2.0.13/slf4j-api-2.0.13.pom.sha1 | 1 - .../slf4j-bom/2.0.13/_remote.repositories | 3 - .../slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom | 249 -- .../2.0.13/slf4j-bom-2.0.13.pom.sha1 | 1 - .../slf4j-parent/2.0.13/_remote.repositories | 3 - .../2.0.13/slf4j-parent-2.0.13.pom | 397 -- .../2.0.13/slf4j-parent-2.0.13.pom.sha1 | 1 - .../oss/oss-parent/7/_remote.repositories | 3 - .../oss/oss-parent/7/oss-parent-7.pom | 155 - .../oss-parent/7/oss-parent-7.pom.lastUpdated | 9 - .../oss/oss-parent/7/oss-parent-7.pom.sha1 | 1 - .../oss/oss-parent/9/_remote.repositories | 3 - .../oss/oss-parent/9/oss-parent-9.pom | 156 - .../oss/oss-parent/9/oss-parent-9.pom.sha1 | 1 - .../3.1.4/_remote.repositories | 3 - .../3.1.4/spring-amqp-bom-3.1.4.pom | 115 - .../spring-amqp-bom-3.1.4.pom.lastUpdated | 9 - .../3.1.4/spring-amqp-bom-3.1.4.pom.sha1 | 1 - .../2.0.0.M1/_remote.repositories | 3 - .../spring-batch-admin-domain-2.0.0.M1.pom | 97 - ...atch-admin-domain-2.0.0.M1.pom.lastUpdated | 11 - ...pring-batch-admin-domain-2.0.0.M1.pom.sha1 | 1 - .../2.0.0.M1/_remote.repositories | 3 - .../spring-batch-admin-manager-2.0.0.M1.pom | 221 -- ...tch-admin-manager-2.0.0.M1.pom.lastUpdated | 11 - ...ring-batch-admin-manager-2.0.0.M1.pom.sha1 | 1 - .../2.0.0.M1/_remote.repositories | 3 - .../spring-batch-admin-parent-2.0.0.M1.pom | 656 ---- ...atch-admin-parent-2.0.0.M1.pom.lastUpdated | 11 - ...pring-batch-admin-parent-2.0.0.M1.pom.sha1 | 1 - .../2.0.0.M1/_remote.repositories | 3 - .../spring-batch-admin-resources-2.0.0.M1.pom | 125 - ...h-admin-resources-2.0.0.M1.pom.lastUpdated | 11 - ...ng-batch-admin-resources-2.0.0.M1.pom.sha1 | 1 - .../5.1.1/_remote.repositories | 3 - .../5.1.1/spring-batch-bom-5.1.1.pom | 104 - .../spring-batch-bom-5.1.1.pom.lastUpdated | 9 - .../5.1.1/spring-batch-bom-5.1.1.pom.sha1 | 1 - .../5.1.1/_remote.repositories | 3 - .../5.1.1/spring-batch-core-5.1.1.pom | 170 - .../5.1.1/spring-batch-core-5.1.1.pom.sha1 | 1 - .../5.1.1/_remote.repositories | 3 - .../spring-batch-infrastructure-5.1.1.pom | 312 -- ...spring-batch-infrastructure-5.1.1.pom.sha1 | 1 - .../5.1.1/_remote.repositories | 3 - .../5.1.1/spring-batch-integration-5.1.1.pom | 133 - .../spring-batch-integration-5.1.1.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-boot-autoconfigure-3.2.5.pom | 50 - .../spring-boot-autoconfigure-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - ...ing-boot-configuration-processor-3.2.5.pom | 43 - ...oot-configuration-processor-3.2.5.pom.sha1 | 1 - .../2.3.0.RELEASE/_remote.repositories | 3 - ...spring-boot-dependencies-2.3.0.RELEASE.pom | 3248 ----------------- ...g-boot-dependencies-2.3.0.RELEASE.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-boot-dependencies-3.2.5.pom | 2951 --------------- ...ng-boot-dependencies-3.2.5.pom.lastUpdated | 5 - .../spring-boot-dependencies-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 4 - .../3.2.5/spring-boot-maven-plugin-3.2.5.jar | Bin 134585 -> 0 bytes .../spring-boot-maven-plugin-3.2.5.jar.sha1 | 1 - .../3.2.5/spring-boot-maven-plugin-3.2.5.pom | 117 - .../spring-boot-maven-plugin-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-boot-starter-aop-3.2.5.pom | 63 - .../spring-boot-starter-aop-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-boot-starter-batch-3.2.5.pom | 63 - .../spring-boot-starter-batch-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-boot-starter-cache-3.2.5.pom | 57 - .../spring-boot-starter-cache-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../spring-boot-starter-data-jpa-3.2.5.pom | 75 - ...pring-boot-starter-data-jpa-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-boot-starter-jdbc-3.2.5.pom | 63 - .../spring-boot-starter-jdbc-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../spring-boot-starter-jersey-3.2.5.pom | 111 - .../spring-boot-starter-jersey-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-boot-starter-json-3.2.5.pom | 81 - .../spring-boot-starter-json-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../spring-boot-starter-log4j2-3.2.5.pom | 63 - .../spring-boot-starter-log4j2-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../spring-boot-starter-logging-3.2.5.pom | 63 - ...spring-boot-starter-logging-3.2.5.pom.sha1 | 1 - .../2.3.0.RELEASE/_remote.repositories | 3 - ...ring-boot-starter-parent-2.3.0.RELEASE.pom | 237 -- ...boot-starter-parent-2.3.0.RELEASE.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-boot-starter-test-3.2.5.pom | 147 - .../spring-boot-starter-test-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../spring-boot-starter-tomcat-3.2.5.pom | 81 - .../spring-boot-starter-tomcat-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../spring-boot-starter-validation-3.2.5.pom | 63 - ...ing-boot-starter-validation-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-boot-starter-web-3.2.5.pom | 75 - .../spring-boot-starter-web-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-boot-starter-3.2.5.pom | 81 - .../3.2.5/spring-boot-starter-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../spring-boot-test-autoconfigure-3.2.5.pom | 63 - ...ing-boot-test-autoconfigure-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-boot-test-3.2.5.pom | 50 - .../3.2.5/spring-boot-test-3.2.5.pom.sha1 | 1 - .../spring-boot/3.2.5/_remote.repositories | 3 - .../spring-boot/3.2.5/spring-boot-3.2.5.pom | 56 - .../3.2.5/spring-boot-3.2.5.pom.sha1 | 1 - .../2.3.0.RELEASE/_remote.repositories | 3 - .../spring-data-build-2.3.0.RELEASE.pom | 270 -- ...g-data-build-2.3.0.RELEASE.pom.lastUpdated | 11 - .../spring-data-build-2.3.0.RELEASE.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-data-build-3.2.5.pom | 259 -- .../3.2.5/spring-data-build-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-data-parent-3.2.5.pom | 1410 ------- .../3.2.5/spring-data-parent-3.2.5.pom.sha1 | 1 - .../2023.1.5/_remote.repositories | 3 - .../2023.1.5/spring-data-bom-2023.1.5.pom | 148 - .../spring-data-bom-2023.1.5.pom.lastUpdated | 9 - .../spring-data-bom-2023.1.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-data-commons-3.2.5.pom | 387 -- .../3.2.5/spring-data-commons-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-data-jpa-parent-3.2.5.pom | 297 -- .../spring-data-jpa-parent-3.2.5.pom.sha1 | 1 - .../3.2.5/_remote.repositories | 3 - .../3.2.5/spring-data-jpa-3.2.5.pom | 407 --- .../3.2.5/spring-data-jpa-3.2.5.pom.sha1 | 1 - .../Neumann-RELEASE/_remote.repositories | 3 - ...ring-data-releasetrain-Neumann-RELEASE.pom | 166 - ...leasetrain-Neumann-RELEASE.pom.lastUpdated | 11 - ...data-releasetrain-Neumann-RELEASE.pom.sha1 | 1 - .../spring-hateoas/2.2.2/_remote.repositories | 3 - .../2.2.2/spring-hateoas-2.2.2.pom | 876 ----- .../2.2.2/spring-hateoas-2.2.2.pom.sha1 | 1 - .../5.3.0.RELEASE/_remote.repositories | 3 - .../spring-integration-bom-5.3.0.RELEASE.pom | 236 -- ...egration-bom-5.3.0.RELEASE.pom.lastUpdated | 11 - ...ing-integration-bom-5.3.0.RELEASE.pom.sha1 | 1 - .../6.2.4/_remote.repositories | 3 - .../6.2.4/spring-integration-bom-6.2.4.pom | 276 -- ...ring-integration-bom-6.2.4.pom.lastUpdated | 9 - .../spring-integration-bom-6.2.4.pom.sha1 | 1 - .../6.2.4/_remote.repositories | 3 - .../6.2.4/spring-integration-core-6.2.4.pom | 214 -- .../spring-integration-core-6.2.4.pom.sha1 | 1 - .../6.2.4/_remote.repositories | 3 - .../6.2.4/spring-integration-file-6.2.4.pom | 75 - .../spring-integration-file-6.2.4.pom.sha1 | 1 - .../6.2.4/_remote.repositories | 3 - .../6.2.4/spring-integration-http-6.2.4.pom | 95 - .../spring-integration-http-6.2.4.pom.sha1 | 1 - .../6.2.4/_remote.repositories | 3 - .../6.2.4/spring-integration-jmx-6.2.4.pom | 69 - .../spring-integration-jmx-6.2.4.pom.sha1 | 1 - .../3.2.3/_remote.repositories | 3 - .../3.2.3/spring-ldap-core-3.2.3.pom | 69 - .../3.2.3/spring-ldap-core-3.2.3.pom.sha1 | 1 - .../1.1.0.RELEASE/_remote.repositories | 3 - .../spring-plugin-core-1.1.0.RELEASE.pom | 50 - .../spring-plugin-core-1.1.0.RELEASE.pom.sha1 | 1 - .../3.0.0/_remote.repositories | 3 - .../3.0.0/spring-plugin-core-3.0.0.pom | 89 - .../3.0.0/spring-plugin-core-3.0.0.pom.sha1 | 1 - .../1.1.0.RELEASE/_remote.repositories | 3 - .../spring-plugin-1.1.0.RELEASE.pom | 216 -- .../spring-plugin-1.1.0.RELEASE.pom.sha1 | 1 - .../1.0.5/_remote.repositories | 3 - .../1.0.5/spring-pulsar-bom-1.0.5.pom | 72 - .../spring-pulsar-bom-1.0.5.pom.lastUpdated | 9 - .../1.0.5/spring-pulsar-bom-1.0.5.pom.sha1 | 1 - .../3.0.1/_remote.repositories | 3 - .../3.0.1/spring-restdocs-bom-3.0.1.pom | 68 - .../spring-restdocs-bom-3.0.1.pom.lastUpdated | 9 - .../3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 | 1 - .../spring-retry/2.0.5/_remote.repositories | 3 - .../spring-retry/2.0.5/spring-retry-2.0.5.pom | 315 -- .../2.0.5/spring-retry-2.0.5.pom.sha1 | 1 - .../5.3.2.RELEASE/_remote.repositories | 3 - .../spring-security-bom-5.3.2.RELEASE.pom | 143 - ...security-bom-5.3.2.RELEASE.pom.lastUpdated | 11 - ...spring-security-bom-5.3.2.RELEASE.pom.sha1 | 1 - .../6.2.4/_remote.repositories | 3 - .../6.2.4/spring-security-bom-6.2.4.pom | 138 - .../spring-security-bom-6.2.4.pom.lastUpdated | 9 - .../6.2.4/spring-security-bom-6.2.4.pom.sha1 | 1 - .../6.2.4/_remote.repositories | 3 - .../6.2.4/spring-security-crypto-6.2.4.pom | 43 - .../spring-security-crypto-6.2.4.pom.sha1 | 1 - .../3.2.2/_remote.repositories | 3 - .../3.2.2/spring-session-bom-3.2.2.pom | 73 - .../spring-session-bom-3.2.2.pom.lastUpdated | 9 - .../3.2.2/spring-session-bom-3.2.2.pom.sha1 | 1 - .../Dragonfruit-RELEASE/_remote.repositories | 3 - ...spring-session-bom-Dragonfruit-RELEASE.pom | 72 - ...on-bom-Dragonfruit-RELEASE.pom.lastUpdated | 11 - ...g-session-bom-Dragonfruit-RELEASE.pom.sha1 | 1 - .../spring-aop/6.1.6/_remote.repositories | 3 - .../spring-aop/6.1.6/spring-aop-6.1.6.pom | 56 - .../6.1.6/spring-aop-6.1.6.pom.sha1 | 1 - .../spring-aspects/6.1.6/_remote.repositories | 3 - .../6.1.6/spring-aspects-6.1.6.pom | 51 - .../6.1.6/spring-aspects-6.1.6.pom.sha1 | 1 - .../spring-beans/6.1.6/_remote.repositories | 3 - .../spring-beans/6.1.6/spring-beans-6.1.6.pom | 50 - .../6.1.6/spring-beans-6.1.6.pom.sha1 | 1 - .../6.1.6/_remote.repositories | 3 - .../6.1.6/spring-context-support-6.1.6.pom | 63 - .../spring-context-support-6.1.6.pom.sha1 | 1 - .../spring-context/6.1.6/_remote.repositories | 3 - .../6.1.6/spring-context-6.1.6.pom | 74 - .../6.1.6/spring-context-6.1.6.pom.sha1 | 1 - .../spring-core/6.1.6/_remote.repositories | 3 - .../spring-core/6.1.6/spring-core-6.1.6.pom | 50 - .../6.1.6/spring-core-6.1.6.pom.sha1 | 1 - .../6.1.6/_remote.repositories | 3 - .../6.1.6/spring-expression-6.1.6.pom | 50 - .../6.1.6/spring-expression-6.1.6.pom.sha1 | 1 - .../5.2.6.RELEASE/_remote.repositories | 3 - .../spring-framework-bom-5.2.6.RELEASE.pom | 147 - ...ramework-bom-5.2.6.RELEASE.pom.lastUpdated | 11 - ...pring-framework-bom-5.2.6.RELEASE.pom.sha1 | 1 - .../5.3.29/_remote.repositories | 3 - .../5.3.29/spring-framework-bom-5.3.29.pom | 157 - .../spring-framework-bom-5.3.29.pom.sha1 | 1 - .../5.3.32/_remote.repositories | 3 - .../5.3.32/spring-framework-bom-5.3.32.pom | 157 - .../spring-framework-bom-5.3.32.pom.sha1 | 1 - .../6.0.11/_remote.repositories | 3 - .../6.0.11/spring-framework-bom-6.0.11.pom | 163 - ...pring-framework-bom-6.0.11.pom.lastUpdated | 9 - .../spring-framework-bom-6.0.11.pom.sha1 | 1 - .../6.0.15/_remote.repositories | 3 - .../6.0.15/spring-framework-bom-6.0.15.pom | 163 - .../spring-framework-bom-6.0.15.pom.sha1 | 1 - .../6.1.6/_remote.repositories | 3 - .../6.1.6/spring-framework-bom-6.1.6.pom | 163 - ...spring-framework-bom-6.1.6.pom.lastUpdated | 9 - .../6.1.6/spring-framework-bom-6.1.6.pom.sha1 | 1 - .../spring-jcl/6.1.6/_remote.repositories | 3 - .../spring-jcl/6.1.6/spring-jcl-6.1.6.pom | 43 - .../6.1.6/spring-jcl-6.1.6.pom.sha1 | 1 - .../spring-jdbc/6.1.6/_remote.repositories | 3 - .../spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom | 62 - .../6.1.6/spring-jdbc-6.1.6.pom.sha1 | 1 - .../6.1.6/_remote.repositories | 3 - .../6.1.6/spring-messaging-6.1.6.pom | 56 - .../6.1.6/spring-messaging-6.1.6.pom.sha1 | 1 - .../spring-orm/6.1.6/_remote.repositories | 3 - .../spring-orm/6.1.6/spring-orm-6.1.6.pom | 69 - .../6.1.6/spring-orm-6.1.6.pom.sha1 | 1 - .../spring-oxm/6.1.6/_remote.repositories | 3 - .../spring-oxm/6.1.6/spring-oxm-6.1.6.pom | 57 - .../6.1.6/spring-oxm-6.1.6.pom.sha1 | 1 - .../spring-test/6.1.6/_remote.repositories | 3 - .../spring-test/6.1.6/spring-test-6.1.6.pom | 50 - .../6.1.6/spring-test-6.1.6.pom.sha1 | 1 - .../spring-tx/6.1.6/_remote.repositories | 3 - .../spring-tx/6.1.6/spring-tx-6.1.6.pom | 56 - .../spring-tx/6.1.6/spring-tx-6.1.6.pom.sha1 | 1 - .../spring-web/6.1.6/_remote.repositories | 3 - .../spring-web/6.1.6/spring-web-6.1.6.pom | 62 - .../6.1.6/spring-web-6.1.6.pom.sha1 | 1 - .../spring-webmvc/6.1.6/_remote.repositories | 3 - .../6.1.6/spring-webmvc-6.1.6.pom | 80 - .../6.1.6/spring-webmvc-6.1.6.pom.sha1 | 1 - .../spring-ws-bom/4.0.10/_remote.repositories | 3 - .../4.0.10/spring-ws-bom-4.0.10.pom | 92 - .../spring-ws-bom-4.0.10.pom.lastUpdated | 9 - .../4.0.10/spring-ws-bom-4.0.10.pom.sha1 | 1 - .../1.19.7/_remote.repositories | 3 - .../1.19.7/database-commons-1.19.7.pom | 40 - .../1.19.7/database-commons-1.19.7.pom.sha1 | 1 - .../jdbc/1.19.7/_remote.repositories | 3 - .../jdbc/1.19.7/jdbc-1.19.7.pom | 40 - .../jdbc/1.19.7/jdbc-1.19.7.pom.sha1 | 1 - .../postgresql/1.19.7/_remote.repositories | 3 - .../postgresql/1.19.7/postgresql-1.19.7.pom | 40 - .../1.19.7/postgresql-1.19.7.pom.sha1 | 1 - .../1.19.7/_remote.repositories | 3 - .../1.19.7/testcontainers-bom-1.19.7.pom | 318 -- .../testcontainers-bom-1.19.7.pom.lastUpdated | 9 - .../1.19.7/testcontainers-bom-1.19.7.pom.sha1 | 1 - .../1.19.7/_remote.repositories | 3 - .../1.19.7/testcontainers-1.19.7.pom | 76 - .../1.19.7/testcontainers-1.19.7.pom.sha1 | 1 - .../xmlunit-core/2.9.1/_remote.repositories | 3 - .../xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom | 78 - .../2.9.1/xmlunit-core-2.9.1.pom.sha1 | 1 - .../xmlunit-parent/2.9.1/_remote.repositories | 3 - .../2.9.1/xmlunit-parent-2.9.1.pom | 587 --- .../2.9.1/xmlunit-parent-2.9.1.pom.sha1 | 1 - .../yaml/snakeyaml/2.2/_remote.repositories | 3 - .../org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom | 495 --- .../yaml/snakeyaml/2.2/snakeyaml-2.2.pom.sha1 | 1 - .../JUnitParams/1.1.0/JUnitParams-1.1.0.pom | 208 -- .../1.1.0/JUnitParams-1.1.0.pom.sha1 | 1 - .../JUnitParams/1.1.0/_remote.repositories | 3 - .../4.0.0/_remote.repositories | 3 - .../git-commit-id-plugin-parent-4.0.0.pom | 282 -- ...git-commit-id-plugin-parent-4.0.0.pom.sha1 | 1 - .../4.0.0/_remote.repositories | 4 - .../4.0.0/git-commit-id-plugin-4.0.0.jar | Bin 39013 -> 0 bytes .../4.0.0/git-commit-id-plugin-4.0.0.jar.sha1 | 1 - .../4.0.0/git-commit-id-plugin-4.0.0.pom | 306 -- .../4.0.0/git-commit-id-plugin-4.0.0.pom.sha1 | 1 - .../stax/stax-api/1.0.1/_remote.repositories | 3 - .../stax/stax-api/1.0.1/stax-api-1.0.1.pom | 51 - .../stax-api/1.0.1/stax-api-1.0.1.pom.sha1 | 1 - .../xmlpull/1.1.3.1/_remote.repositories | 3 - .../xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom | 16 - .../xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.sha1 | 1 - pom.xml | 5 + 2283 files changed, 102 insertions(+), 214319 deletions(-) create mode 100644 Dockerfile-mvn-local delete mode 100644 code/arachne/ch/qos/logback/logback-classic/1.4.14/_remote.repositories delete mode 100644 code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom delete mode 100644 code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom.sha1 delete mode 100644 code/arachne/ch/qos/logback/logback-core/1.4.14/_remote.repositories delete mode 100644 code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom delete mode 100644 code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom.sha1 delete mode 100644 code/arachne/ch/qos/logback/logback-parent/1.4.14/_remote.repositories delete mode 100644 code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom delete mode 100644 code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom.sha1 delete mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/_remote.repositories delete mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom delete mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.lastUpdated delete mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.sha1 delete mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/_remote.repositories delete mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom delete mode 100644 code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom.sha1 delete mode 100644 code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/_remote.repositories delete mode 100644 code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom delete mode 100644 code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom.sha1 delete mode 100644 code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/_remote.repositories delete mode 100644 code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom delete mode 100644 code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom.sha1 delete mode 100644 code/arachne/com/atlassian/commonmark/commonmark/0.15.2/_remote.repositories delete mode 100644 code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom delete mode 100644 code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom.sha1 delete mode 100644 code/arachne/com/atlassian/pom/base-pom/5.0.13/_remote.repositories delete mode 100644 code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom delete mode 100644 code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom.sha1 delete mode 100644 code/arachne/com/atlassian/pom/central-pom/5.0.13/_remote.repositories delete mode 100644 code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom delete mode 100644 code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom.sha1 delete mode 100644 code/arachne/com/cloudbees/cloudbees-oss-parent/8/_remote.repositories delete mode 100644 code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom delete mode 100644 code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom.sha1 delete mode 100644 code/arachne/com/cloudbees/syslog-java-client/1.1.7/_remote.repositories delete mode 100644 code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom delete mode 100644 code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom.sha1 delete mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/_remote.repositories delete mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom delete mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom.sha1 delete mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/_remote.repositories delete mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom delete mode 100644 code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom.sha1 delete mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.17.0/_remote.repositories delete mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom delete mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.lastUpdated delete mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.sha1 delete mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.6.1/_remote.repositories delete mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom delete mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.lastUpdated delete mode 100644 code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/classmate/1.6.0/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom delete mode 100644 code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.lastUpdated delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.lastUpdated delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.11/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.lastUpdated delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.15/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.lastUpdated delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.16/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom delete mode 100644 code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom delete mode 100644 code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/oss-parent/38/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom delete mode 100644 code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.lastUpdated delete mode 100644 code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/oss-parent/50/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom delete mode 100644 code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.lastUpdated delete mode 100644 code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/oss-parent/55/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom delete mode 100644 code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom.sha1 delete mode 100644 code/arachne/com/fasterxml/oss-parent/56/_remote.repositories delete mode 100644 code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom delete mode 100644 code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom.sha1 delete mode 100644 code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/_remote.repositories delete mode 100644 code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom delete mode 100644 code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom.sha1 delete mode 100644 code/arachne/com/github/docker-java/docker-java-api/3.3.6/_remote.repositories delete mode 100644 code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom delete mode 100644 code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom.sha1 delete mode 100644 code/arachne/com/github/docker-java/docker-java-parent/3.3.6/_remote.repositories delete mode 100644 code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom delete mode 100644 code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom.sha1 delete mode 100644 code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/_remote.repositories delete mode 100644 code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom delete mode 100644 code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom.sha1 delete mode 100644 code/arachne/com/github/docker-java/docker-java-transport/3.3.6/_remote.repositories delete mode 100644 code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom delete mode 100644 code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom.sha1 delete mode 100644 code/arachne/com/github/jknack/handlebars.java/4.0.6/_remote.repositories delete mode 100644 code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom delete mode 100644 code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom.sha1 delete mode 100644 code/arachne/com/github/jknack/handlebars/4.0.6/_remote.repositories delete mode 100644 code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom delete mode 100644 code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom.sha1 delete mode 100644 code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/_remote.repositories delete mode 100644 code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom delete mode 100644 code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom.sha1 delete mode 100644 code/arachne/com/github/scribejava/scribejava-apis/8.3.3/_remote.repositories delete mode 100644 code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom delete mode 100644 code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom.sha1 delete mode 100644 code/arachne/com/github/scribejava/scribejava-core/8.3.3/_remote.repositories delete mode 100644 code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom delete mode 100644 code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom.sha1 delete mode 100644 code/arachne/com/github/scribejava/scribejava-java8/8.3.3/_remote.repositories delete mode 100644 code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom delete mode 100644 code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom.sha1 delete mode 100644 code/arachne/com/github/scribejava/scribejava/8.3.3/_remote.repositories delete mode 100644 code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom delete mode 100644 code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom.sha1 delete mode 100644 code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/_remote.repositories delete mode 100644 code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom delete mode 100644 code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom.sha1 delete mode 100644 code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/_remote.repositories delete mode 100644 code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom delete mode 100644 code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom.sha1 delete mode 100644 code/arachne/com/github/virtuald/curvesapi/1.04/_remote.repositories delete mode 100644 code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom delete mode 100644 code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom.sha1 delete mode 100644 code/arachne/com/github/waffle/waffle-jna/2.2.1/_remote.repositories delete mode 100644 code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom delete mode 100644 code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom.sha1 delete mode 100644 code/arachne/com/github/waffle/waffle-parent/2.2.1/_remote.repositories delete mode 100644 code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom delete mode 100644 code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom.sha1 delete mode 100644 code/arachne/com/github/waffle/waffle-shiro/2.2.1/_remote.repositories delete mode 100644 code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom delete mode 100644 code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom.sha1 delete mode 100644 code/arachne/com/github/zafarkhaja/java-semver/0.9.0/_remote.repositories delete mode 100644 code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom delete mode 100644 code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom.sha1 delete mode 100644 code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/_remote.repositories delete mode 100644 code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom delete mode 100644 code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom.sha1 delete mode 100644 code/arachne/com/google/code/findbugs/jsr305/3.0.2/_remote.repositories delete mode 100644 code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom delete mode 100644 code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom.sha1 delete mode 100644 code/arachne/com/google/code/gson/gson-parent/2.10.1/_remote.repositories delete mode 100644 code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom delete mode 100644 code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom.sha1 delete mode 100644 code/arachne/com/google/code/gson/gson/2.10.1/_remote.repositories delete mode 100644 code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom delete mode 100644 code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.1.3/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.11.0/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.18.0/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.21.1/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.26.1/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom.sha1 delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.3.4/_remote.repositories delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom delete mode 100644 code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom.sha1 delete mode 100644 code/arachne/com/google/guava/failureaccess/1.0.1/_remote.repositories delete mode 100644 code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom delete mode 100644 code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom.sha1 delete mode 100644 code/arachne/com/google/guava/failureaccess/1.0.2/_remote.repositories delete mode 100644 code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom delete mode 100644 code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom.sha1 delete mode 100644 code/arachne/com/google/guava/guava-parent/25.1-jre/_remote.repositories delete mode 100644 code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom delete mode 100644 code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom.sha1 delete mode 100644 code/arachne/com/google/guava/guava-parent/26.0-android/_remote.repositories delete mode 100644 code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom delete mode 100644 code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom.sha1 delete mode 100644 code/arachne/com/google/guava/guava-parent/29.0-jre/_remote.repositories delete mode 100644 code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom delete mode 100644 code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom.sha1 delete mode 100644 code/arachne/com/google/guava/guava-parent/31.1-jre/_remote.repositories delete mode 100644 code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom delete mode 100644 code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom.sha1 delete mode 100644 code/arachne/com/google/guava/guava-parent/32.1.2-jre/_remote.repositories delete mode 100644 code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom delete mode 100644 code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom.sha1 delete mode 100644 code/arachne/com/google/guava/guava-parent/33.2.0-jre/_remote.repositories delete mode 100644 code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom delete mode 100644 code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom.sha1 delete mode 100644 code/arachne/com/google/guava/guava/25.1-jre/_remote.repositories delete mode 100644 code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom delete mode 100644 code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom.sha1 delete mode 100644 code/arachne/com/google/guava/guava/29.0-jre/_remote.repositories delete mode 100644 code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom delete mode 100644 code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom.sha1 delete mode 100644 code/arachne/com/google/guava/guava/31.1-jre/_remote.repositories delete mode 100644 code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom delete mode 100644 code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom.sha1 delete mode 100644 code/arachne/com/google/guava/guava/32.1.2-jre/_remote.repositories delete mode 100644 code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom delete mode 100644 code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom.sha1 delete mode 100644 code/arachne/com/google/guava/guava/33.2.0-jre/_remote.repositories delete mode 100644 code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom delete mode 100644 code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom.sha1 delete mode 100644 code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/_remote.repositories delete mode 100644 code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom delete mode 100644 code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom.sha1 delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.1/_remote.repositories delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom.sha1 delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.3/_remote.repositories delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom.sha1 delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/2.8/_remote.repositories delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom.sha1 delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/_remote.repositories delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom delete mode 100644 code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom.sha1 delete mode 100644 code/arachne/com/ibm/icu/icu4j/62.1/_remote.repositories delete mode 100644 code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom delete mode 100644 code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom.sha1 delete mode 100644 code/arachne/com/jayway/jsonpath/json-path/2.9.0/_remote.repositories delete mode 100644 code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom delete mode 100644 code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom.sha1 delete mode 100644 code/arachne/com/microsoft/azure/msal4j/1.9.0/_remote.repositories delete mode 100644 code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom delete mode 100644 code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom.sha1 delete mode 100644 code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/_remote.repositories delete mode 100644 code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom delete mode 100644 code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom.sha1 delete mode 100644 code/arachne/com/nimbusds/content-type/2.1/_remote.repositories delete mode 100644 code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom delete mode 100644 code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom.sha1 delete mode 100644 code/arachne/com/nimbusds/content-type/2.3/_remote.repositories delete mode 100644 code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom delete mode 100644 code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom.sha1 delete mode 100644 code/arachne/com/nimbusds/lang-tag/1.4.4/_remote.repositories delete mode 100644 code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom delete mode 100644 code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom.sha1 delete mode 100644 code/arachne/com/nimbusds/lang-tag/1.7/_remote.repositories delete mode 100644 code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom delete mode 100644 code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom.sha1 delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/_remote.repositories delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom.sha1 delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/_remote.repositories delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom.sha1 delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/_remote.repositories delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom.sha1 delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/_remote.repositories delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom delete mode 100644 code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom.sha1 delete mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/_remote.repositories delete mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom delete mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom.sha1 delete mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/_remote.repositories delete mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom delete mode 100644 code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom.sha1 delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/_remote.repositories delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.lastUpdated delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.sha1 delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-SNAPSHOT.pom delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/resolver-status.properties delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.jar delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.pom.lastUpdated delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/_remote.repositories delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom.sha1 delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-SNAPSHOT.pom delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/resolver-status.properties delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-scheduler/3.x-MDACA/arachne-scheduler-3.x-MDACA.pom.lastUpdated delete mode 100644 code/arachne/com/odysseusinc/arachne/arachne-sys-settings/arachne-sys-settings-3.x-MDACA.jar delete mode 100644 code/arachne/com/odysseusinc/arachne/execution-engine-commons/3.x-MDACA/execution-engine-commons-3.x-MDACA.jar delete mode 100644 code/arachne/com/odysseusinc/arachne/execution-engine-commons/3.x-MDACA/execution-engine-commons-3.x-MDACA.pom.lastUpdated delete mode 100644 code/arachne/com/odysseusinc/data-source-manager/3.x-MDACA/data-source-manager-3.x-MDACA.jar delete mode 100644 code/arachne/com/odysseusinc/data-source-manager/3.x-MDACA/data-source-manager-3.x-MDACA.pom.lastUpdated delete mode 100644 code/arachne/com/odysseusinc/logging/3.x-MDACA/logging-3.x-MDACA.jar delete mode 100644 code/arachne/com/odysseusinc/logging/3.x-MDACA/logging-3.x-MDACA.pom.lastUpdated delete mode 100644 code/arachne/com/opencsv/opencsv/3.7/_remote.repositories delete mode 100644 code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom delete mode 100644 code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom.sha1 delete mode 100644 code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/_remote.repositories delete mode 100644 code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom delete mode 100644 code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom.sha1 delete mode 100644 code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/_remote.repositories delete mode 100644 code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom delete mode 100644 code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.lastUpdated delete mode 100644 code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 delete mode 100644 code/arachne/com/qmino/miredot-annotations/1.5.0/_remote.repositories delete mode 100644 code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom delete mode 100644 code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.lastUpdated delete mode 100644 code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.sha1 delete mode 100644 code/arachne/com/querydsl/querydsl-bom/5.0.0/_remote.repositories delete mode 100644 code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom delete mode 100644 code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.sha1 delete mode 100644 code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/_remote.repositories delete mode 100644 code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom delete mode 100644 code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.lastUpdated delete mode 100644 code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.sha1 delete mode 100644 code/arachne/com/sun/activation/all/1.2.0/_remote.repositories delete mode 100644 code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom delete mode 100644 code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom.sha1 delete mode 100644 code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/_remote.repositories delete mode 100644 code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom delete mode 100644 code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom.sha1 delete mode 100644 code/arachne/com/sun/istack/istack-commons/4.1.2/_remote.repositories delete mode 100644 code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom delete mode 100644 code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom.sha1 delete mode 100644 code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/_remote.repositories delete mode 100644 code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom delete mode 100644 code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom.sha1 delete mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/_remote.repositories delete mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom delete mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom.sha1 delete mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/_remote.repositories delete mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom delete mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom.sha1 delete mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/_remote.repositories delete mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom delete mode 100644 code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom.sha1 delete mode 100644 code/arachne/com/sun/xml/security/xml-security-impl/1.0/_remote.repositories delete mode 100644 code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom delete mode 100644 code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom.sha1 delete mode 100644 code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/_remote.repositories delete mode 100644 code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom delete mode 100644 code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom.sha1 delete mode 100644 code/arachne/com/thoughtworks/xstream/xstream/1.4.19/_remote.repositories delete mode 100644 code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom delete mode 100644 code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom.sha1 delete mode 100644 code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom delete mode 100644 code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom.sha1 delete mode 100644 code/arachne/com/zaxxer/HikariCP/5.0.1/_remote.repositories delete mode 100644 code/arachne/commons-beanutils/commons-beanutils/1.9.4/_remote.repositories delete mode 100644 code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom delete mode 100644 code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom.sha1 delete mode 100644 code/arachne/commons-codec/commons-codec/1.16.1/_remote.repositories delete mode 100644 code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom delete mode 100644 code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom.sha1 delete mode 100644 code/arachne/commons-collections/commons-collections/3.2.2/_remote.repositories delete mode 100644 code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom delete mode 100644 code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom.sha1 delete mode 100644 code/arachne/commons-dbutils/commons-dbutils/1.6/_remote.repositories delete mode 100644 code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom delete mode 100644 code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom.sha1 delete mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.3.1/_remote.repositories delete mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom delete mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom.sha1 delete mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.5/_remote.repositories delete mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom delete mode 100644 code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom.sha1 delete mode 100644 code/arachne/commons-io/commons-io/1.3.2/_remote.repositories delete mode 100644 code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom delete mode 100644 code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 delete mode 100644 code/arachne/commons-io/commons-io/2.11.0/_remote.repositories delete mode 100644 code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom delete mode 100644 code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom.sha1 delete mode 100644 code/arachne/commons-io/commons-io/2.15.1/_remote.repositories delete mode 100644 code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom delete mode 100644 code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom.sha1 delete mode 100644 code/arachne/commons-io/commons-io/2.2/_remote.repositories delete mode 100644 code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom delete mode 100644 code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom.sha1 delete mode 100644 code/arachne/commons-io/commons-io/2.4/_remote.repositories delete mode 100644 code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom delete mode 100644 code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom.sha1 delete mode 100644 code/arachne/commons-io/commons-io/2.5/_remote.repositories delete mode 100644 code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom delete mode 100644 code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1 delete mode 100644 code/arachne/commons-io/commons-io/2.7/_remote.repositories delete mode 100644 code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom delete mode 100644 code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom.sha1 delete mode 100644 code/arachne/commons-lang/commons-lang/2.6/_remote.repositories delete mode 100644 code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom delete mode 100644 code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 delete mode 100644 code/arachne/commons-logging/commons-logging/1.2/_remote.repositories delete mode 100644 code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom delete mode 100644 code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 delete mode 100644 code/arachne/io/buji/buji-pac4j/9.0.1/_remote.repositories delete mode 100644 code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom delete mode 100644 code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom.sha1 delete mode 100644 code/arachne/io/buji/buji-parent/1/_remote.repositories delete mode 100644 code/arachne/io/buji/buji-parent/1/buji-parent-1.pom delete mode 100644 code/arachne/io/buji/buji-parent/1/buji-parent-1.pom.sha1 delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/_remote.repositories delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.lastUpdated delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.sha1 delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/_remote.repositories delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.lastUpdated delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.sha1 delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/_remote.repositories delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.lastUpdated delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.sha1 delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/_remote.repositories delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom.sha1 delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/_remote.repositories delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom.sha1 delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/_remote.repositories delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.lastUpdated delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.sha1 delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/_remote.repositories delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.lastUpdated delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.sha1 delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/_remote.repositories delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.lastUpdated delete mode 100644 code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.sha1 delete mode 100644 code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/_remote.repositories delete mode 100644 code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom delete mode 100644 code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom.sha1 delete mode 100644 code/arachne/io/github/x-stream/mxparser/1.2.2/_remote.repositories delete mode 100644 code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom delete mode 100644 code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom.sha1 delete mode 100644 code/arachne/io/jsonwebtoken/jjwt/0.9.1/_remote.repositories delete mode 100644 code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom delete mode 100644 code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom.sha1 delete mode 100644 code/arachne/io/micrometer/micrometer-bom/1.12.5/_remote.repositories delete mode 100644 code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom delete mode 100644 code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.lastUpdated delete mode 100644 code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.sha1 delete mode 100644 code/arachne/io/micrometer/micrometer-bom/1.5.1/_remote.repositories delete mode 100644 code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom delete mode 100644 code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.lastUpdated delete mode 100644 code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.sha1 delete mode 100644 code/arachne/io/micrometer/micrometer-commons/1.12.5/_remote.repositories delete mode 100644 code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom delete mode 100644 code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom.sha1 delete mode 100644 code/arachne/io/micrometer/micrometer-core/1.12.5/_remote.repositories delete mode 100644 code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom delete mode 100644 code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom.sha1 delete mode 100644 code/arachne/io/micrometer/micrometer-observation/1.12.5/_remote.repositories delete mode 100644 code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom delete mode 100644 code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom.sha1 delete mode 100644 code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/_remote.repositories delete mode 100644 code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom delete mode 100644 code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.lastUpdated delete mode 100644 code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.sha1 delete mode 100644 code/arachne/io/netty/netty-bom/4.1.107.Final/_remote.repositories delete mode 100644 code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom delete mode 100644 code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom.sha1 delete mode 100644 code/arachne/io/netty/netty-bom/4.1.109.Final/_remote.repositories delete mode 100644 code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom delete mode 100644 code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.lastUpdated delete mode 100644 code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.sha1 delete mode 100644 code/arachne/io/netty/netty-bom/4.1.49.Final/_remote.repositories delete mode 100644 code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom delete mode 100644 code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.lastUpdated delete mode 100644 code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.sha1 delete mode 100644 code/arachne/io/netty/netty-bom/4.1.97.Final/_remote.repositories delete mode 100644 code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom delete mode 100644 code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom.sha1 delete mode 100644 code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/_remote.repositories delete mode 100644 code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom delete mode 100644 code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.lastUpdated delete mode 100644 code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.sha1 delete mode 100644 code/arachne/io/projectreactor/reactor-bom/2023.0.5/_remote.repositories delete mode 100644 code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom delete mode 100644 code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.lastUpdated delete mode 100644 code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.sha1 delete mode 100644 code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/_remote.repositories delete mode 100644 code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom delete mode 100644 code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.lastUpdated delete mode 100644 code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.sha1 delete mode 100644 code/arachne/io/projectreactor/reactor-core/3.6.5/_remote.repositories delete mode 100644 code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom delete mode 100644 code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom.sha1 delete mode 100644 code/arachne/io/prometheus/parent/0.16.0/_remote.repositories delete mode 100644 code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom delete mode 100644 code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.lastUpdated delete mode 100644 code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.sha1 delete mode 100644 code/arachne/io/prometheus/simpleclient_bom/0.16.0/_remote.repositories delete mode 100644 code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom delete mode 100644 code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.lastUpdated delete mode 100644 code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.sha1 delete mode 100644 code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/_remote.repositories delete mode 100644 code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom delete mode 100644 code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.lastUpdated delete mode 100644 code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.sha1 delete mode 100644 code/arachne/io/rest-assured/rest-assured-bom/5.3.2/_remote.repositories delete mode 100644 code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom delete mode 100644 code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.lastUpdated delete mode 100644 code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.sha1 delete mode 100644 code/arachne/io/rsocket/rsocket-bom/1.0.0/_remote.repositories delete mode 100644 code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom delete mode 100644 code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.lastUpdated delete mode 100644 code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.sha1 delete mode 100644 code/arachne/io/rsocket/rsocket-bom/1.1.3/_remote.repositories delete mode 100644 code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom delete mode 100644 code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.lastUpdated delete mode 100644 code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.sha1 delete mode 100644 code/arachne/io/smallrye/jandex-parent/3.1.2/_remote.repositories delete mode 100644 code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom delete mode 100644 code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom.sha1 delete mode 100644 code/arachne/io/smallrye/jandex/3.1.2/_remote.repositories delete mode 100644 code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom delete mode 100644 code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom.sha1 delete mode 100644 code/arachne/io/smallrye/smallrye-build-parent/39/_remote.repositories delete mode 100644 code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom delete mode 100644 code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom.sha1 delete mode 100644 code/arachne/io/zipkin/brave/brave-bom/5.16.0/_remote.repositories delete mode 100644 code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom delete mode 100644 code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.lastUpdated delete mode 100644 code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.sha1 delete mode 100644 code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/_remote.repositories delete mode 100644 code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom delete mode 100644 code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.lastUpdated delete mode 100644 code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.sha1 delete mode 100644 code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/_remote.repositories delete mode 100644 code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom delete mode 100644 code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom.sha1 delete mode 100644 code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/_remote.repositories delete mode 100644 code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom delete mode 100644 code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom.sha1 delete mode 100644 code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/_remote.repositories delete mode 100644 code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom delete mode 100644 code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom.sha1 delete mode 100644 code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/_remote.repositories delete mode 100644 code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom delete mode 100644 code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom.sha1 delete mode 100644 code/arachne/jakarta/batch/batch-api-parent/2.1.1/_remote.repositories delete mode 100644 code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom delete mode 100644 code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom.sha1 delete mode 100644 code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/_remote.repositories delete mode 100644 code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom delete mode 100644 code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom.sha1 delete mode 100644 code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/_remote.repositories delete mode 100644 code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom delete mode 100644 code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom.sha1 delete mode 100644 code/arachne/jakarta/el/jakarta.el-api/5.0.1/_remote.repositories delete mode 100644 code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom delete mode 100644 code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom.sha1 delete mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/_remote.repositories delete mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom delete mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom.sha1 delete mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/_remote.repositories delete mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom delete mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom.sha1 delete mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/_remote.repositories delete mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom delete mode 100644 code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom.sha1 delete mode 100644 code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/_remote.repositories delete mode 100644 code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom delete mode 100644 code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom.sha1 delete mode 100644 code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/_remote.repositories delete mode 100644 code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom delete mode 100644 code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom.sha1 delete mode 100644 code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/_remote.repositories delete mode 100644 code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom delete mode 100644 code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom.sha1 delete mode 100644 code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/_remote.repositories delete mode 100644 code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom delete mode 100644 code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom.sha1 delete mode 100644 code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/_remote.repositories delete mode 100644 code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom delete mode 100644 code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom.sha1 delete mode 100644 code/arachne/jakarta/json/jakarta.json-api/2.1.3/_remote.repositories delete mode 100644 code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom delete mode 100644 code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom.sha1 delete mode 100644 code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/_remote.repositories delete mode 100644 code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom delete mode 100644 code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom.sha1 delete mode 100644 code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/_remote.repositories delete mode 100644 code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom delete mode 100644 code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom.sha1 delete mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/_remote.repositories delete mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom delete mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom.sha1 delete mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/_remote.repositories delete mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom delete mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom.sha1 delete mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/_remote.repositories delete mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom delete mode 100644 code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom.sha1 delete mode 100644 code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/_remote.repositories delete mode 100644 code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom delete mode 100644 code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 delete mode 100644 code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/_remote.repositories delete mode 100644 code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom delete mode 100644 code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom.sha1 delete mode 100644 code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/_remote.repositories delete mode 100644 code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom delete mode 100644 code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom.sha1 delete mode 100644 code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/_remote.repositories delete mode 100644 code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom delete mode 100644 code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom.sha1 delete mode 100644 code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/_remote.repositories delete mode 100644 code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom delete mode 100644 code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom.sha1 delete mode 100644 code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/_remote.repositories delete mode 100644 code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom delete mode 100644 code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom.sha1 delete mode 100644 code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/_remote.repositories delete mode 100644 code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom delete mode 100644 code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom.sha1 delete mode 100644 code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/_remote.repositories delete mode 100644 code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom delete mode 100644 code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom.sha1 delete mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/_remote.repositories delete mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom delete mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom.sha1 delete mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/_remote.repositories delete mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom delete mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom.sha1 delete mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/_remote.repositories delete mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom delete mode 100644 code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom.sha1 delete mode 100644 code/arachne/jakarta/ws/rs/all/3.1.0/_remote.repositories delete mode 100644 code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom delete mode 100644 code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom.sha1 delete mode 100644 code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/_remote.repositories delete mode 100644 code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom delete mode 100644 code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom.sha1 delete mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/_remote.repositories delete mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom delete mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom.sha1 delete mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/_remote.repositories delete mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom delete mode 100644 code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 delete mode 100644 code/arachne/javax/activation/javax.activation-api/1.2.0/_remote.repositories delete mode 100644 code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom delete mode 100644 code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom.sha1 delete mode 100644 code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/_remote.repositories delete mode 100644 code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom delete mode 100644 code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom.sha1 delete mode 100644 code/arachne/javax/xml/bind/jaxb-api/2.3.1/_remote.repositories delete mode 100644 code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom delete mode 100644 code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom.sha1 delete mode 100644 code/arachne/joda-time/joda-time/2.12.1/_remote.repositories delete mode 100644 code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom delete mode 100644 code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom.sha1 delete mode 100644 code/arachne/joda-time/joda-time/2.5/_remote.repositories delete mode 100644 code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom delete mode 100644 code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom.sha1 delete mode 100644 code/arachne/junit/junit/4.13.2/_remote.repositories delete mode 100644 code/arachne/junit/junit/4.13.2/junit-4.13.2.pom delete mode 100644 code/arachne/junit/junit/4.13.2/junit-4.13.2.pom.sha1 delete mode 100644 code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/_remote.repositories delete mode 100644 code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom delete mode 100644 code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom.sha1 delete mode 100644 code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/_remote.repositories delete mode 100644 code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom delete mode 100644 code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom.sha1 delete mode 100644 code/arachne/net/bytebuddy/byte-buddy/1.14.13/_remote.repositories delete mode 100644 code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom delete mode 100644 code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom.sha1 delete mode 100644 code/arachne/net/java/dev/jna/jna-platform/5.5.0/_remote.repositories delete mode 100644 code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom delete mode 100644 code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom.sha1 delete mode 100644 code/arachne/net/java/dev/jna/jna/5.13.0/_remote.repositories delete mode 100644 code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom delete mode 100644 code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom.sha1 delete mode 100644 code/arachne/net/java/dev/jna/jna/5.5.0/_remote.repositories delete mode 100644 code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom delete mode 100644 code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom.sha1 delete mode 100644 code/arachne/net/java/jvnet-parent/1/_remote.repositories delete mode 100644 code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom delete mode 100644 code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom.sha1 delete mode 100644 code/arachne/net/java/jvnet-parent/5/_remote.repositories delete mode 100644 code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom delete mode 100644 code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom.sha1 delete mode 100644 code/arachne/net/jcip/jcip-annotations/1.0/_remote.repositories delete mode 100644 code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom delete mode 100644 code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom.sha1 delete mode 100644 code/arachne/net/minidev/accessors-smart/2.5.1/_remote.repositories delete mode 100644 code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom delete mode 100644 code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom.sha1 delete mode 100644 code/arachne/net/minidev/json-smart/2.5.1/_remote.repositories delete mode 100644 code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom delete mode 100644 code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom.sha1 delete mode 100644 code/arachne/net/shibboleth/parent/17.0.1/_remote.repositories delete mode 100644 code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom delete mode 100644 code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.lastUpdated delete mode 100644 code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.sha1 delete mode 100644 code/arachne/net/shibboleth/shib-networking/9.0.0/_remote.repositories delete mode 100644 code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom delete mode 100644 code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.lastUpdated delete mode 100644 code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.sha1 delete mode 100644 code/arachne/net/shibboleth/shib-security/9.0.0/_remote.repositories delete mode 100644 code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom delete mode 100644 code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.lastUpdated delete mode 100644 code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.sha1 delete mode 100644 code/arachne/net/shibboleth/shib-shared-bom/9.0.0/_remote.repositories delete mode 100644 code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom delete mode 100644 code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.lastUpdated delete mode 100644 code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.sha1 delete mode 100644 code/arachne/net/shibboleth/shib-shared-parent/9.0.0/_remote.repositories delete mode 100644 code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom delete mode 100644 code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.lastUpdated delete mode 100644 code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.sha1 delete mode 100644 code/arachne/net/shibboleth/shib-support/9.0.0/_remote.repositories delete mode 100644 code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom delete mode 100644 code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.lastUpdated delete mode 100644 code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.sha1 delete mode 100644 code/arachne/net/shibboleth/shib-velocity/9.0.0/_remote.repositories delete mode 100644 code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom delete mode 100644 code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.lastUpdated delete mode 100644 code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.sha1 delete mode 100644 code/arachne/org/antlr/antlr4-master/4.13.0/_remote.repositories delete mode 100644 code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom delete mode 100644 code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom.sha1 delete mode 100644 code/arachne/org/antlr/antlr4-master/4.5.1-1/_remote.repositories delete mode 100644 code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom delete mode 100644 code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom.sha1 delete mode 100644 code/arachne/org/antlr/antlr4-runtime/4.13.0/_remote.repositories delete mode 100644 code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom delete mode 100644 code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom.sha1 delete mode 100644 code/arachne/org/antlr/antlr4-runtime/4.5.1-1/_remote.repositories delete mode 100644 code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom delete mode 100644 code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/13/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/13/apache-13.pom delete mode 100644 code/arachne/org/apache/apache/13/apache-13.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/16/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/16/apache-16.pom delete mode 100644 code/arachne/org/apache/apache/16/apache-16.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/17/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/17/apache-17.pom delete mode 100644 code/arachne/org/apache/apache/17/apache-17.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/18/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/18/apache-18.pom delete mode 100644 code/arachne/org/apache/apache/18/apache-18.pom.lastUpdated delete mode 100644 code/arachne/org/apache/apache/18/apache-18.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/19/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/19/apache-19.pom delete mode 100644 code/arachne/org/apache/apache/19/apache-19.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/21/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/21/apache-21.pom delete mode 100644 code/arachne/org/apache/apache/21/apache-21.pom.lastUpdated delete mode 100644 code/arachne/org/apache/apache/21/apache-21.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/23/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/23/apache-23.pom delete mode 100644 code/arachne/org/apache/apache/23/apache-23.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/24/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/24/apache-24.pom delete mode 100644 code/arachne/org/apache/apache/24/apache-24.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/25/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/25/apache-25.pom delete mode 100644 code/arachne/org/apache/apache/25/apache-25.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/27/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/27/apache-27.pom delete mode 100644 code/arachne/org/apache/apache/27/apache-27.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/29/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/29/apache-29.pom delete mode 100644 code/arachne/org/apache/apache/29/apache-29.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/30/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/30/apache-30.pom delete mode 100644 code/arachne/org/apache/apache/30/apache-30.pom.lastUpdated delete mode 100644 code/arachne/org/apache/apache/30/apache-30.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/31/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/31/apache-31.pom delete mode 100644 code/arachne/org/apache/apache/31/apache-31.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/32/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/32/apache-32.pom delete mode 100644 code/arachne/org/apache/apache/32/apache-32.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/4/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/4/apache-4.pom delete mode 100644 code/arachne/org/apache/apache/4/apache-4.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/7/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/7/apache-7.pom delete mode 100644 code/arachne/org/apache/apache/7/apache-7.pom.sha1 delete mode 100644 code/arachne/org/apache/apache/9/_remote.repositories delete mode 100644 code/arachne/org/apache/apache/9/apache-9.pom delete mode 100644 code/arachne/org/apache/apache/9/apache-9.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-collections4/4.1/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom delete mode 100644 code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-compress/1.24.0/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom delete mode 100644 code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-compress/1.26.0/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom delete mode 100644 code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-csv/1.9.0/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom delete mode 100644 code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-io/1.3.2/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom delete mode 100644 code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-lang3/3.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom delete mode 100644 code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/17/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/24/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/25/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/3/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/32/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/34/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/38/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/39/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/47/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/50/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/52/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/56/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/58/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/61/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/64/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/65/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/66/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-parent/69/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom delete mode 100644 code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-text/1.11.0/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom delete mode 100644 code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom.sha1 delete mode 100644 code/arachne/org/apache/commons/commons-text/1.12.0/_remote.repositories delete mode 100644 code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom delete mode 100644 code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom.sha1 delete mode 100644 code/arachne/org/apache/groovy/groovy-bom/4.0.21/_remote.repositories delete mode 100644 code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom delete mode 100644 code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.lastUpdated delete mode 100644 code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.sha1 delete mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/_remote.repositories delete mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom delete mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom.sha1 delete mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/_remote.repositories delete mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom delete mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom.sha1 delete mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/_remote.repositories delete mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom delete mode 100644 code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom.sha1 delete mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/_remote.repositories delete mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom delete mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom.sha1 delete mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/_remote.repositories delete mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom delete mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom.sha1 delete mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/_remote.repositories delete mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom delete mode 100644 code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom.sha1 delete mode 100644 code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/_remote.repositories delete mode 100644 code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom delete mode 100644 code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.lastUpdated delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.lastUpdated delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom delete mode 100644 code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.21.1/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom delete mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.23.0/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom delete mode 100644 code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/logging-parent/1/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom delete mode 100644 code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.lastUpdated delete mode 100644 code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/logging-parent/10.1.1/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom delete mode 100644 code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.lastUpdated delete mode 100644 code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.sha1 delete mode 100644 code/arachne/org/apache/logging/logging-parent/10.6.0/_remote.repositories delete mode 100644 code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom delete mode 100644 code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/maven-parent/33/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom delete mode 100644 code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.lastUpdated delete mode 100644 code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/maven-parent/34/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom delete mode 100644 code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/maven-parent/35/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom delete mode 100644 code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/maven-parent/39/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom delete mode 100644 code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/maven/3.6.3/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom delete mode 100644 code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.lastUpdated delete mode 100644 code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar delete mode 100644 code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom delete mode 100644 code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.jar delete mode 100644 code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.jar.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.pom delete mode 100644 code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar delete mode 100644 code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom delete mode 100644 code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/34/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom delete mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/35/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom delete mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/39/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom delete mode 100644 code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar delete mode 100644 code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom delete mode 100644 code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar delete mode 100644 code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom delete mode 100644 code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar delete mode 100644 code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar.sha1 delete mode 100644 code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom delete mode 100644 code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom.sha1 delete mode 100644 code/arachne/org/apache/maven/surefire/surefire/3.1.2/_remote.repositories delete mode 100644 code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom delete mode 100644 code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom.sha1 delete mode 100644 code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/_remote.repositories delete mode 100644 code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom delete mode 100644 code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom.sha1 delete mode 100644 code/arachne/org/apache/poi/poi-ooxml/3.17/_remote.repositories delete mode 100644 code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom delete mode 100644 code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom.sha1 delete mode 100644 code/arachne/org/apache/poi/poi/3.17/_remote.repositories delete mode 100644 code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom delete mode 100644 code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom.sha1 delete mode 100644 code/arachne/org/apache/santuario/xmlsec/3.0.2/_remote.repositories delete mode 100644 code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom delete mode 100644 code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-cache/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-cache/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-config-core/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-config-core/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-config/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-config/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-core/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-core/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-event/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-event/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-lang/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-lang/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-root/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-root/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-spring/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-support/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-web/1.13.0/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom.sha1 delete mode 100644 code/arachne/org/apache/shiro/shiro-web/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom delete mode 100644 code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/_remote.repositories delete mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom delete mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom.sha1 delete mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/_remote.repositories delete mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom delete mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom.sha1 delete mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/_remote.repositories delete mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom delete mode 100644 code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom.sha1 delete mode 100644 code/arachne/org/apache/velocity/velocity-engine-core/2.3/_remote.repositories delete mode 100644 code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom delete mode 100644 code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom.sha1 delete mode 100644 code/arachne/org/apache/velocity/velocity-engine-parent/2.3/_remote.repositories delete mode 100644 code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom delete mode 100644 code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom.sha1 delete mode 100644 code/arachne/org/apache/velocity/velocity-master/4/_remote.repositories delete mode 100644 code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom delete mode 100644 code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom.sha1 delete mode 100644 code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/_remote.repositories delete mode 100644 code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom delete mode 100644 code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom.sha1 delete mode 100644 code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/_remote.repositories delete mode 100644 code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom delete mode 100644 code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom.sha1 delete mode 100644 code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/_remote.repositories delete mode 100644 code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom delete mode 100644 code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom.sha1 delete mode 100644 code/arachne/org/apereo/cas/client/cas-client/4.0.4/_remote.repositories delete mode 100644 code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom delete mode 100644 code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom.sha1 delete mode 100644 code/arachne/org/apiguardian/apiguardian-api/1.1.2/_remote.repositories delete mode 100644 code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom delete mode 100644 code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom.sha1 delete mode 100644 code/arachne/org/aspectj/aspectjrt/1.9.22/_remote.repositories delete mode 100644 code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom delete mode 100644 code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom.sha1 delete mode 100644 code/arachne/org/aspectj/aspectjweaver/1.9.22/_remote.repositories delete mode 100644 code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom delete mode 100644 code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom.sha1 delete mode 100644 code/arachne/org/assertj/assertj-bom/3.24.2/_remote.repositories delete mode 100644 code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom delete mode 100644 code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.lastUpdated delete mode 100644 code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.sha1 delete mode 100644 code/arachne/org/assertj/assertj-build/3.24.2/_remote.repositories delete mode 100644 code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom delete mode 100644 code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom.sha1 delete mode 100644 code/arachne/org/assertj/assertj-core/3.24.2/_remote.repositories delete mode 100644 code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom delete mode 100644 code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom.sha1 delete mode 100644 code/arachne/org/assertj/assertj-parent/3.24.2/_remote.repositories delete mode 100644 code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom delete mode 100644 code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom.sha1 delete mode 100644 code/arachne/org/awaitility/awaitility-parent/4.2.1/_remote.repositories delete mode 100644 code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom delete mode 100644 code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom.sha1 delete mode 100644 code/arachne/org/awaitility/awaitility/4.2.1/_remote.repositories delete mode 100644 code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom delete mode 100644 code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom.sha1 delete mode 100644 code/arachne/org/basepom/basepom-foundation/55/_remote.repositories delete mode 100644 code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom delete mode 100644 code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom.sha1 delete mode 100644 code/arachne/org/basepom/basepom-minimal/55/_remote.repositories delete mode 100644 code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom delete mode 100644 code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom.sha1 delete mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/_remote.repositories delete mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom delete mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom.sha1 delete mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/_remote.repositories delete mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom delete mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom.sha1 delete mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/_remote.repositories delete mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom delete mode 100644 code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom.sha1 delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/_remote.repositories delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom.sha1 delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/_remote.repositories delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom.sha1 delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/_remote.repositories delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom.sha1 delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/_remote.repositories delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom.sha1 delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/_remote.repositories delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom.sha1 delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/_remote.repositories delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom delete mode 100644 code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom.sha1 delete mode 100644 code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/_remote.repositories delete mode 100644 code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom delete mode 100644 code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom.sha1 delete mode 100644 code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/_remote.repositories delete mode 100644 code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom delete mode 100644 code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom.sha1 delete mode 100644 code/arachne/org/checkerframework/checker-qual/2.0.0/_remote.repositories delete mode 100644 code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom delete mode 100644 code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom.sha1 delete mode 100644 code/arachne/org/checkerframework/checker-qual/2.11.1/_remote.repositories delete mode 100644 code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom delete mode 100644 code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom.sha1 delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.12.0/_remote.repositories delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom.sha1 delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.31.0/_remote.repositories delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom.sha1 delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.33.0/_remote.repositories delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom.sha1 delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.37.0/_remote.repositories delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom.sha1 delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.42.0/_remote.repositories delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom delete mode 100644 code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom.sha1 delete mode 100644 code/arachne/org/codehaus/codehaus-parent/4/_remote.repositories delete mode 100644 code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom delete mode 100644 code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 delete mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/_remote.repositories delete mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom delete mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom.sha1 delete mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/_remote.repositories delete mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom delete mode 100644 code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom.sha1 delete mode 100644 code/arachne/org/codehaus/jettison/jettison/1.5.4/_remote.repositories delete mode 100644 code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom delete mode 100644 code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom.sha1 delete mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/_remote.repositories delete mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom delete mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom.sha1 delete mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/_remote.repositories delete mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom delete mode 100644 code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom.sha1 delete mode 100644 code/arachne/org/codehaus/mojo/mojo-parent/34/_remote.repositories delete mode 100644 code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom delete mode 100644 code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom.sha1 delete mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.5/_remote.repositories delete mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom delete mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom.sha1 delete mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.6/_remote.repositories delete mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom delete mode 100644 code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom.sha1 delete mode 100644 code/arachne/org/dbunit/dbunit/2.7.0/_remote.repositories delete mode 100644 code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom delete mode 100644 code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom.sha1 delete mode 100644 code/arachne/org/dom4j/dom4j/2.1.3/_remote.repositories delete mode 100644 code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom delete mode 100644 code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom.sha1 delete mode 100644 code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/_remote.repositories delete mode 100644 code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom delete mode 100644 code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom.sha1 delete mode 100644 code/arachne/org/eclipse/angus/angus-activation/2.0.2/_remote.repositories delete mode 100644 code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom delete mode 100644 code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom.sha1 delete mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/_remote.repositories delete mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom delete mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom.sha1 delete mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/_remote.repositories delete mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom delete mode 100644 code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom.sha1 delete mode 100644 code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/_remote.repositories delete mode 100644 code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom delete mode 100644 code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom.sha1 delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.5/_remote.repositories delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom.sha1 delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.6/_remote.repositories delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom.sha1 delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.7/_remote.repositories delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom.sha1 delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.8/_remote.repositories delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.lastUpdated delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.sha1 delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.9/_remote.repositories delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.lastUpdated delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.sha1 delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0/_remote.repositories delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom delete mode 100644 code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom.sha1 delete mode 100644 code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/_remote.repositories delete mode 100644 code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom delete mode 100644 code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.lastUpdated delete mode 100644 code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.sha1 delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/_remote.repositories delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.lastUpdated delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.sha1 delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/_remote.repositories delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.lastUpdated delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.sha1 delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/_remote.repositories delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom.sha1 delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/_remote.repositories delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom delete mode 100644 code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom.sha1 delete mode 100644 code/arachne/org/flywaydb/flyway-core/9.22.3/_remote.repositories delete mode 100644 code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom delete mode 100644 code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom.sha1 delete mode 100644 code/arachne/org/flywaydb/flyway-parent/9.22.3/_remote.repositories delete mode 100644 code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom delete mode 100644 code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom.sha1 delete mode 100644 code/arachne/org/freemarker/freemarker/2.3.32/_remote.repositories delete mode 100644 code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom delete mode 100644 code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom.sha1 delete mode 100644 code/arachne/org/glassfish/expressly/expressly/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom delete mode 100644 code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/class-model/3.0.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom delete mode 100644 code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/external/3.0.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom delete mode 100644 code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom delete mode 100644 code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/hk2-api/3.0.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom delete mode 100644 code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/hk2-core/3.0.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom delete mode 100644 code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom delete mode 100644 code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom delete mode 100644 code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom delete mode 100644 code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom delete mode 100644 code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/hk2/3.0.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom delete mode 100644 code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom delete mode 100644 code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom.sha1 delete mode 100644 code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom delete mode 100644 code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jakarta.el/3.0.3/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom delete mode 100644 code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jakarta.json/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom delete mode 100644 code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom delete mode 100644 code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.lastUpdated delete mode 100644 code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom delete mode 100644 code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom delete mode 100644 code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jaxb/txw2/4.0.5/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom delete mode 100644 code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/containers/project/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/ext/project/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/inject/project/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom delete mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.lastUpdated delete mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.lastUpdated delete mode 100644 code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/media/project/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/jersey/project/3.1.6/_remote.repositories delete mode 100644 code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom delete mode 100644 code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom.sha1 delete mode 100644 code/arachne/org/glassfish/json/2.0.1/_remote.repositories delete mode 100644 code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom delete mode 100644 code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom.sha1 delete mode 100644 code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/_remote.repositories delete mode 100644 code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom delete mode 100644 code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom.sha1 delete mode 100644 code/arachne/org/graalvm/js/js/1.0.0-rc15/_remote.repositories delete mode 100644 code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom delete mode 100644 code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom.sha1 delete mode 100644 code/arachne/org/graalvm/regex/regex/1.0.0-rc15/_remote.repositories delete mode 100644 code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom delete mode 100644 code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom.sha1 delete mode 100644 code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/_remote.repositories delete mode 100644 code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom delete mode 100644 code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom.sha1 delete mode 100644 code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/_remote.repositories delete mode 100644 code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom delete mode 100644 code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom.sha1 delete mode 100644 code/arachne/org/hamcrest/hamcrest-core/2.2/_remote.repositories delete mode 100644 code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom delete mode 100644 code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom.sha1 delete mode 100644 code/arachne/org/hamcrest/hamcrest/2.2/_remote.repositories delete mode 100644 code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom delete mode 100644 code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom.sha1 delete mode 100644 code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom delete mode 100644 code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom.sha1 delete mode 100644 code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/_remote.repositories delete mode 100644 code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/_remote.repositories delete mode 100644 code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom delete mode 100644 code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom.sha1 delete mode 100644 code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/_remote.repositories delete mode 100644 code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom delete mode 100644 code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 delete mode 100644 code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/_remote.repositories delete mode 100644 code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom delete mode 100644 code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom.sha1 delete mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/_remote.repositories delete mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom delete mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom.sha1 delete mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/_remote.repositories delete mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom delete mode 100644 code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom.sha1 delete mode 100644 code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/_remote.repositories delete mode 100644 code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom delete mode 100644 code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 delete mode 100644 code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/_remote.repositories delete mode 100644 code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom delete mode 100644 code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.lastUpdated delete mode 100644 code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.sha1 delete mode 100644 code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/_remote.repositories delete mode 100644 code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom delete mode 100644 code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.lastUpdated delete mode 100644 code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.sha1 delete mode 100644 code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/_remote.repositories delete mode 100644 code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom delete mode 100644 code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom.sha1 delete mode 100644 code/arachne/org/jasig/cas/client/cas-client/3.6.1/_remote.repositories delete mode 100644 code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom delete mode 100644 code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom.sha1 delete mode 100644 code/arachne/org/jasig/parent/jasig-parent/41/_remote.repositories delete mode 100644 code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom delete mode 100644 code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom.sha1 delete mode 100644 code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/_remote.repositories delete mode 100644 code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom delete mode 100644 code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom.sha1 delete mode 100644 code/arachne/org/jasypt/jasypt/1.9.2/_remote.repositories delete mode 100644 code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom delete mode 100644 code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom.sha1 delete mode 100644 code/arachne/org/javassist/javassist/3.28.0-GA/_remote.repositories delete mode 100644 code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom delete mode 100644 code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom.sha1 delete mode 100644 code/arachne/org/javassist/javassist/3.30.2-GA/_remote.repositories delete mode 100644 code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom delete mode 100644 code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom.sha1 delete mode 100644 code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/_remote.repositories delete mode 100644 code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom delete mode 100644 code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom.sha1 delete mode 100644 code/arachne/org/jboss/jboss-parent/39/_remote.repositories delete mode 100644 code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom delete mode 100644 code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.lastUpdated delete mode 100644 code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.sha1 delete mode 100644 code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/_remote.repositories delete mode 100644 code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom delete mode 100644 code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom.sha1 delete mode 100644 code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/_remote.repositories delete mode 100644 code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom delete mode 100644 code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom.sha1 delete mode 100644 code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/_remote.repositories delete mode 100644 code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom delete mode 100644 code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom.sha1 delete mode 100644 code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/_remote.repositories delete mode 100644 code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom delete mode 100644 code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom.sha1 delete mode 100644 code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/_remote.repositories delete mode 100644 code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom delete mode 100644 code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom.sha1 delete mode 100644 code/arachne/org/jetbrains/annotations/17.0.0/_remote.repositories delete mode 100644 code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom delete mode 100644 code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom.sha1 delete mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/_remote.repositories delete mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom delete mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.lastUpdated delete mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.sha1 delete mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/_remote.repositories delete mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom delete mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.lastUpdated delete mode 100644 code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.sha1 delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/_remote.repositories delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.lastUpdated delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.sha1 delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/_remote.repositories delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.lastUpdated delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.sha1 delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/_remote.repositories delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.lastUpdated delete mode 100644 code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.sha1 delete mode 100644 code/arachne/org/json/json/20170516/_remote.repositories delete mode 100644 code/arachne/org/json/json/20170516/json-20170516.pom delete mode 100644 code/arachne/org/json/json/20170516/json-20170516.pom.sha1 delete mode 100644 code/arachne/org/json/json/20220924/_remote.repositories delete mode 100644 code/arachne/org/json/json/20220924/json-20220924.pom delete mode 100644 code/arachne/org/json/json/20220924/json-20220924.pom.sha1 delete mode 100644 code/arachne/org/json/json/20230227/_remote.repositories delete mode 100644 code/arachne/org/json/json/20230227/json-20230227.pom delete mode 100644 code/arachne/org/json/json/20230227/json-20230227.pom.sha1 delete mode 100644 code/arachne/org/junit/junit-bom/5.10.0/_remote.repositories delete mode 100644 code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom delete mode 100644 code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom.sha1 delete mode 100644 code/arachne/org/junit/junit-bom/5.10.1/_remote.repositories delete mode 100644 code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom delete mode 100644 code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom.sha1 delete mode 100644 code/arachne/org/junit/junit-bom/5.10.2/_remote.repositories delete mode 100644 code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom delete mode 100644 code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.lastUpdated delete mode 100644 code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.sha1 delete mode 100644 code/arachne/org/junit/junit-bom/5.6.2/_remote.repositories delete mode 100644 code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom delete mode 100644 code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.lastUpdated delete mode 100644 code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.sha1 delete mode 100644 code/arachne/org/junit/junit-bom/5.7.2/_remote.repositories delete mode 100644 code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom delete mode 100644 code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 delete mode 100644 code/arachne/org/junit/junit-bom/5.9.1/_remote.repositories delete mode 100644 code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom delete mode 100644 code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom.sha1 delete mode 100644 code/arachne/org/junit/junit-bom/5.9.2/_remote.repositories delete mode 100644 code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom delete mode 100644 code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom.sha1 delete mode 100644 code/arachne/org/junit/junit-bom/5.9.3/_remote.repositories delete mode 100644 code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom delete mode 100644 code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom.sha1 delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/_remote.repositories delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom.sha1 delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/_remote.repositories delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom.sha1 delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/_remote.repositories delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom.sha1 delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/_remote.repositories delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom delete mode 100644 code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom.sha1 delete mode 100644 code/arachne/org/junit/platform/junit-platform-commons/1.10.2/_remote.repositories delete mode 100644 code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom delete mode 100644 code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom.sha1 delete mode 100644 code/arachne/org/junit/platform/junit-platform-engine/1.10.2/_remote.repositories delete mode 100644 code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom delete mode 100644 code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom.sha1 delete mode 100644 code/arachne/org/jvnet/mimepull/mimepull/1.9.15/_remote.repositories delete mode 100644 code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom delete mode 100644 code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom.sha1 delete mode 100644 code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom delete mode 100644 code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom.sha1 delete mode 100644 code/arachne/org/latencyutils/LatencyUtils/2.0.3/_remote.repositories delete mode 100644 code/arachne/org/mockito/mockito-bom/4.11.0/_remote.repositories delete mode 100644 code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom delete mode 100644 code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom.sha1 delete mode 100644 code/arachne/org/mockito/mockito-bom/5.7.0/_remote.repositories delete mode 100644 code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom delete mode 100644 code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.lastUpdated delete mode 100644 code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.sha1 delete mode 100644 code/arachne/org/mockito/mockito-core/5.7.0/_remote.repositories delete mode 100644 code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom delete mode 100644 code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom.sha1 delete mode 100644 code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/_remote.repositories delete mode 100644 code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom delete mode 100644 code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom.sha1 delete mode 100644 code/arachne/org/mozilla/rhino/1.7R4/_remote.repositories delete mode 100644 code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom delete mode 100644 code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom.sha1 delete mode 100644 code/arachne/org/objenesis/objenesis-parent/3.3/_remote.repositories delete mode 100644 code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom delete mode 100644 code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom.sha1 delete mode 100644 code/arachne/org/objenesis/objenesis/3.3/_remote.repositories delete mode 100644 code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom delete mode 100644 code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom.sha1 delete mode 100644 code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom delete mode 100644 code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.lastUpdated delete mode 100644 code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.sha1 delete mode 100644 code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/_remote.repositories delete mode 100644 code/arachne/org/ohdsi/circe/1.11.1/_remote.repositories delete mode 100644 code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom delete mode 100644 code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.lastUpdated delete mode 100644 code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.sha1 delete mode 100644 code/arachne/org/ohdsi/circe/1.11.2/_remote.repositories delete mode 100644 code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom delete mode 100644 code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.lastUpdated delete mode 100644 code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.sha1 delete mode 100644 code/arachne/org/ohdsi/featureExtraction/3.2.0/_remote.repositories delete mode 100644 code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom delete mode 100644 code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.lastUpdated delete mode 100644 code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.sha1 delete mode 100644 code/arachne/org/ohdsi/hydra/0.4.0/_remote.repositories delete mode 100644 code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom delete mode 100644 code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.lastUpdated delete mode 100644 code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.sha1 delete mode 100644 code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom delete mode 100644 code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.lastUpdated delete mode 100644 code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.sha1 delete mode 100644 code/arachne/org/ohdsi/sql/SqlRender/1.16.1/_remote.repositories delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/_remote.repositories delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/resolver-status.properties delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.lastUpdated delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.sha1 delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-SNAPSHOT.pom delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/_remote.repositories delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.lastUpdated delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.sha1 delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/_remote.repositories delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/resolver-status.properties delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.lastUpdated delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.sha1 delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-SNAPSHOT.pom delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/_remote.repositories delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.lastUpdated delete mode 100644 code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-core-api/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-core-impl/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-parent/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-profile-api/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-saml-api/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-security-api/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-security-impl/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-soap-api/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-storage-api/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/_remote.repositories delete mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom delete mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.lastUpdated delete mode 100644 code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.sha1 delete mode 100644 code/arachne/org/opentest4j/opentest4j/1.3.0/_remote.repositories delete mode 100644 code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom delete mode 100644 code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom.sha1 delete mode 100644 code/arachne/org/ow2/asm/asm-analysis/6.2.1/_remote.repositories delete mode 100644 code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom delete mode 100644 code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom.sha1 delete mode 100644 code/arachne/org/ow2/asm/asm-analysis/9.6/_remote.repositories delete mode 100644 code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom delete mode 100644 code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom.sha1 delete mode 100644 code/arachne/org/ow2/asm/asm-bom/9.5/_remote.repositories delete mode 100644 code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom delete mode 100644 code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1 delete mode 100644 code/arachne/org/ow2/asm/asm-commons/6.2.1/_remote.repositories delete mode 100644 code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom delete mode 100644 code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom.sha1 delete mode 100644 code/arachne/org/ow2/asm/asm-commons/9.6/_remote.repositories delete mode 100644 code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom delete mode 100644 code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom.sha1 delete mode 100644 code/arachne/org/ow2/asm/asm-tree/6.2.1/_remote.repositories delete mode 100644 code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom delete mode 100644 code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 delete mode 100644 code/arachne/org/ow2/asm/asm-tree/9.6/_remote.repositories delete mode 100644 code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom delete mode 100644 code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom.sha1 delete mode 100644 code/arachne/org/ow2/asm/asm-util/6.2.1/_remote.repositories delete mode 100644 code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom delete mode 100644 code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom.sha1 delete mode 100644 code/arachne/org/ow2/asm/asm-util/9.6/_remote.repositories delete mode 100644 code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom delete mode 100644 code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom.sha1 delete mode 100644 code/arachne/org/ow2/asm/asm/6.2.1/_remote.repositories delete mode 100644 code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom delete mode 100644 code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 delete mode 100644 code/arachne/org/ow2/asm/asm/9.6/_remote.repositories delete mode 100644 code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom delete mode 100644 code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom.sha1 delete mode 100644 code/arachne/org/ow2/ow2/1.5.1/_remote.repositories delete mode 100644 code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom delete mode 100644 code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 delete mode 100644 code/arachne/org/ow2/ow2/1.5/_remote.repositories delete mode 100644 code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom delete mode 100644 code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 delete mode 100644 code/arachne/org/owasp/encoder/encoder-parent/1.2.3/_remote.repositories delete mode 100644 code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom delete mode 100644 code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom.sha1 delete mode 100644 code/arachne/org/owasp/encoder/encoder/1.2.3/_remote.repositories delete mode 100644 code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom delete mode 100644 code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom.sha1 delete mode 100644 code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/_remote.repositories delete mode 100644 code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom delete mode 100644 code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom.sha1 delete mode 100644 code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/_remote.repositories delete mode 100644 code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom delete mode 100644 code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-cas/6.0.3/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom delete mode 100644 code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-core/5.7.4/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom delete mode 100644 code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.2/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom delete mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.3/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom delete mode 100644 code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-http/6.0.3/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom delete mode 100644 code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom delete mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom delete mode 100644 code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-oauth/6.0.3/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom delete mode 100644 code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-oidc/6.0.3/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom delete mode 100644 code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-parent/5.7.4/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom delete mode 100644 code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.2/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom delete mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.3/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom delete mode 100644 code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom.sha1 delete mode 100644 code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/_remote.repositories delete mode 100644 code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom delete mode 100644 code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom.sha1 delete mode 100644 code/arachne/org/postgresql/postgresql/42.6.2/_remote.repositories delete mode 100644 code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom delete mode 100644 code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom.sha1 delete mode 100644 code/arachne/org/projectlombok/lombok/1.18.32/_remote.repositories delete mode 100644 code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom delete mode 100644 code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom.sha1 delete mode 100644 code/arachne/org/reactivestreams/reactive-streams/1.0.4/_remote.repositories delete mode 100644 code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom delete mode 100644 code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom.sha1 delete mode 100644 code/arachne/org/reflections/reflections/0.10.2/_remote.repositories delete mode 100644 code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom delete mode 100644 code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom.sha1 delete mode 100644 code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/_remote.repositories delete mode 100644 code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom delete mode 100644 code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom.sha1 delete mode 100644 code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/_remote.repositories delete mode 100644 code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom delete mode 100644 code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.lastUpdated delete mode 100644 code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.sha1 delete mode 100644 code/arachne/org/semver4j/semver4j/4.3.0/_remote.repositories delete mode 100644 code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom delete mode 100644 code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom.sha1 delete mode 100644 code/arachne/org/skyscreamer/jsonassert/1.5.1/_remote.repositories delete mode 100644 code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom delete mode 100644 code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom.sha1 delete mode 100644 code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/_remote.repositories delete mode 100644 code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom delete mode 100644 code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom.sha1 delete mode 100644 code/arachne/org/slf4j/jul-to-slf4j/2.0.13/_remote.repositories delete mode 100644 code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom delete mode 100644 code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom.sha1 delete mode 100644 code/arachne/org/slf4j/slf4j-api/2.0.13/_remote.repositories delete mode 100644 code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom delete mode 100644 code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom.sha1 delete mode 100644 code/arachne/org/slf4j/slf4j-bom/2.0.13/_remote.repositories delete mode 100644 code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom delete mode 100644 code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom.sha1 delete mode 100644 code/arachne/org/slf4j/slf4j-parent/2.0.13/_remote.repositories delete mode 100644 code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom delete mode 100644 code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom.sha1 delete mode 100644 code/arachne/org/sonatype/oss/oss-parent/7/_remote.repositories delete mode 100644 code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom delete mode 100644 code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.lastUpdated delete mode 100644 code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 delete mode 100644 code/arachne/org/sonatype/oss/oss-parent/9/_remote.repositories delete mode 100644 code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom delete mode 100644 code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 delete mode 100644 code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/_remote.repositories delete mode 100644 code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom delete mode 100644 code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.sha1 delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/_remote.repositories delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.sha1 delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/_remote.repositories delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.sha1 delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/_remote.repositories delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.sha1 delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/_remote.repositories delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.sha1 delete mode 100644 code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/_remote.repositories delete mode 100644 code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom delete mode 100644 code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.sha1 delete mode 100644 code/arachne/org/springframework/batch/spring-batch-core/5.1.1/_remote.repositories delete mode 100644 code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom delete mode 100644 code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom.sha1 delete mode 100644 code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/_remote.repositories delete mode 100644 code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom delete mode 100644 code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom.sha1 delete mode 100644 code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/_remote.repositories delete mode 100644 code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom delete mode 100644 code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar delete mode 100644 code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-aop/3.2.5/spring-boot-starter-aop-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-batch/3.2.5/spring-boot-starter-batch-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-cache/3.2.5/spring-boot-starter-cache-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-data-jpa/3.2.5/spring-boot-starter-data-jpa-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jdbc/3.2.5/spring-boot-starter-jdbc-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-jersey/3.2.5/spring-boot-starter-jersey-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-json/3.2.5/spring-boot-starter-json-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-log4j2/3.2.5/spring-boot-starter-log4j2-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-logging/3.2.5/spring-boot-starter-logging-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-parent/2.3.0.RELEASE/spring-boot-starter-parent-2.3.0.RELEASE.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-test/3.2.5/spring-boot-starter-test-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-tomcat/3.2.5/spring-boot-starter-tomcat-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-validation/3.2.5/spring-boot-starter-validation-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter-web/3.2.5/spring-boot-starter-web-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-starter/3.2.5/spring-boot-starter-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-test-autoconfigure/3.2.5/spring-boot-test-autoconfigure-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot-test/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot-test/3.2.5/spring-boot-test-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/boot/spring-boot/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom delete mode 100644 code/arachne/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/_remote.repositories delete mode 100644 code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom delete mode 100644 code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/data/build/spring-data-build/2.3.0.RELEASE/spring-data-build-2.3.0.RELEASE.pom.sha1 delete mode 100644 code/arachne/org/springframework/data/build/spring-data-build/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom delete mode 100644 code/arachne/org/springframework/data/build/spring-data-build/3.2.5/spring-data-build-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom delete mode 100644 code/arachne/org/springframework/data/build/spring-data-parent/3.2.5/spring-data-parent-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/data/spring-data-bom/2023.1.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom delete mode 100644 code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/data/spring-data-bom/2023.1.5/spring-data-bom-2023.1.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/data/spring-data-commons/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom delete mode 100644 code/arachne/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom delete mode 100644 code/arachne/org/springframework/data/spring-data-jpa-parent/3.2.5/spring-data-jpa-parent-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/data/spring-data-jpa/3.2.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom delete mode 100644 code/arachne/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/_remote.repositories delete mode 100644 code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom delete mode 100644 code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/data/spring-data-releasetrain/Neumann-RELEASE/spring-data-releasetrain-Neumann-RELEASE.pom.sha1 delete mode 100644 code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/_remote.repositories delete mode 100644 code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom delete mode 100644 code/arachne/org/springframework/hateoas/spring-hateoas/2.2.2/spring-hateoas-2.2.2.pom.sha1 delete mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/_remote.repositories delete mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom delete mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/5.3.0.RELEASE/spring-integration-bom-5.3.0.RELEASE.pom.sha1 delete mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/_remote.repositories delete mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom delete mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/integration/spring-integration-bom/6.2.4/spring-integration-bom-6.2.4.pom.sha1 delete mode 100644 code/arachne/org/springframework/integration/spring-integration-core/6.2.4/_remote.repositories delete mode 100644 code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom delete mode 100644 code/arachne/org/springframework/integration/spring-integration-core/6.2.4/spring-integration-core-6.2.4.pom.sha1 delete mode 100644 code/arachne/org/springframework/integration/spring-integration-file/6.2.4/_remote.repositories delete mode 100644 code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom delete mode 100644 code/arachne/org/springframework/integration/spring-integration-file/6.2.4/spring-integration-file-6.2.4.pom.sha1 delete mode 100644 code/arachne/org/springframework/integration/spring-integration-http/6.2.4/_remote.repositories delete mode 100644 code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom delete mode 100644 code/arachne/org/springframework/integration/spring-integration-http/6.2.4/spring-integration-http-6.2.4.pom.sha1 delete mode 100644 code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/_remote.repositories delete mode 100644 code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom delete mode 100644 code/arachne/org/springframework/integration/spring-integration-jmx/6.2.4/spring-integration-jmx-6.2.4.pom.sha1 delete mode 100644 code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/_remote.repositories delete mode 100644 code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom delete mode 100644 code/arachne/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.pom.sha1 delete mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/_remote.repositories delete mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom delete mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/1.1.0.RELEASE/spring-plugin-core-1.1.0.RELEASE.pom.sha1 delete mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/_remote.repositories delete mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom delete mode 100644 code/arachne/org/springframework/plugin/spring-plugin-core/3.0.0/spring-plugin-core-3.0.0.pom.sha1 delete mode 100644 code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/_remote.repositories delete mode 100644 code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom delete mode 100644 code/arachne/org/springframework/plugin/spring-plugin/1.1.0.RELEASE/spring-plugin-1.1.0.RELEASE.pom.sha1 delete mode 100644 code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom delete mode 100644 code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/pulsar/spring-pulsar-bom/1.0.5/spring-pulsar-bom-1.0.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/_remote.repositories delete mode 100644 code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom delete mode 100644 code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 delete mode 100644 code/arachne/org/springframework/retry/spring-retry/2.0.5/_remote.repositories delete mode 100644 code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom delete mode 100644 code/arachne/org/springframework/retry/spring-retry/2.0.5/spring-retry-2.0.5.pom.sha1 delete mode 100644 code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/_remote.repositories delete mode 100644 code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom delete mode 100644 code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/security/spring-security-bom/5.3.2.RELEASE/spring-security-bom-5.3.2.RELEASE.pom.sha1 delete mode 100644 code/arachne/org/springframework/security/spring-security-bom/6.2.4/_remote.repositories delete mode 100644 code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom delete mode 100644 code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/security/spring-security-bom/6.2.4/spring-security-bom-6.2.4.pom.sha1 delete mode 100644 code/arachne/org/springframework/security/spring-security-crypto/6.2.4/_remote.repositories delete mode 100644 code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom delete mode 100644 code/arachne/org/springframework/security/spring-security-crypto/6.2.4/spring-security-crypto-6.2.4.pom.sha1 delete mode 100644 code/arachne/org/springframework/session/spring-session-bom/3.2.2/_remote.repositories delete mode 100644 code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom delete mode 100644 code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.sha1 delete mode 100644 code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/_remote.repositories delete mode 100644 code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom delete mode 100644 code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/session/spring-session-bom/Dragonfruit-RELEASE/spring-session-bom-Dragonfruit-RELEASE.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-aop/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-aspects/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-beans/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-context-support/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-context-support/6.1.6/spring-context-support-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-context/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-context/6.1.6/spring-context-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-core/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-core/6.1.6/spring-core-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-expression/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom delete mode 100644 code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/spring-framework-bom/5.2.6.RELEASE/spring-framework-bom-5.2.6.RELEASE.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.29/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom delete mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.29/spring-framework-bom-5.3.29.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.32/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom delete mode 100644 code/arachne/org/springframework/spring-framework-bom/5.3.32/spring-framework-bom-5.3.32.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.11/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom delete mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.11/spring-framework-bom-6.0.11.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.15/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom delete mode 100644 code/arachne/org/springframework/spring-framework-bom/6.0.15/spring-framework-bom-6.0.15.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-framework-bom/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/spring-framework-bom/6.1.6/spring-framework-bom-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-jcl/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-jdbc/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-messaging/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-messaging/6.1.6/spring-messaging-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-orm/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-oxm/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-oxm/6.1.6/spring-oxm-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-test/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-test/6.1.6/spring-test-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-tx/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-web/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-web/6.1.6/spring-web-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/spring-webmvc/6.1.6/_remote.repositories delete mode 100644 code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom delete mode 100644 code/arachne/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.pom.sha1 delete mode 100644 code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/_remote.repositories delete mode 100644 code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom delete mode 100644 code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.lastUpdated delete mode 100644 code/arachne/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.sha1 delete mode 100644 code/arachne/org/testcontainers/database-commons/1.19.7/_remote.repositories delete mode 100644 code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom delete mode 100644 code/arachne/org/testcontainers/database-commons/1.19.7/database-commons-1.19.7.pom.sha1 delete mode 100644 code/arachne/org/testcontainers/jdbc/1.19.7/_remote.repositories delete mode 100644 code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom delete mode 100644 code/arachne/org/testcontainers/jdbc/1.19.7/jdbc-1.19.7.pom.sha1 delete mode 100644 code/arachne/org/testcontainers/postgresql/1.19.7/_remote.repositories delete mode 100644 code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom delete mode 100644 code/arachne/org/testcontainers/postgresql/1.19.7/postgresql-1.19.7.pom.sha1 delete mode 100644 code/arachne/org/testcontainers/testcontainers-bom/1.19.7/_remote.repositories delete mode 100644 code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom delete mode 100644 code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.lastUpdated delete mode 100644 code/arachne/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.sha1 delete mode 100644 code/arachne/org/testcontainers/testcontainers/1.19.7/_remote.repositories delete mode 100644 code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom delete mode 100644 code/arachne/org/testcontainers/testcontainers/1.19.7/testcontainers-1.19.7.pom.sha1 delete mode 100644 code/arachne/org/xmlunit/xmlunit-core/2.9.1/_remote.repositories delete mode 100644 code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom delete mode 100644 code/arachne/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.pom.sha1 delete mode 100644 code/arachne/org/xmlunit/xmlunit-parent/2.9.1/_remote.repositories delete mode 100644 code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom delete mode 100644 code/arachne/org/xmlunit/xmlunit-parent/2.9.1/xmlunit-parent-2.9.1.pom.sha1 delete mode 100644 code/arachne/org/yaml/snakeyaml/2.2/_remote.repositories delete mode 100644 code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom delete mode 100644 code/arachne/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom.sha1 delete mode 100644 code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom delete mode 100644 code/arachne/pl/pragmatists/JUnitParams/1.1.0/JUnitParams-1.1.0.pom.sha1 delete mode 100644 code/arachne/pl/pragmatists/JUnitParams/1.1.0/_remote.repositories delete mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/_remote.repositories delete mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom delete mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin-parent/4.0.0/git-commit-id-plugin-parent-4.0.0.pom.sha1 delete mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/_remote.repositories delete mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar delete mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.jar.sha1 delete mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom delete mode 100644 code/arachne/pl/project13/maven/git-commit-id-plugin/4.0.0/git-commit-id-plugin-4.0.0.pom.sha1 delete mode 100644 code/arachne/stax/stax-api/1.0.1/_remote.repositories delete mode 100644 code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom delete mode 100644 code/arachne/stax/stax-api/1.0.1/stax-api-1.0.1.pom.sha1 delete mode 100644 code/arachne/xmlpull/xmlpull/1.1.3.1/_remote.repositories delete mode 100644 code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom delete mode 100644 code/arachne/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.sha1 diff --git a/Dockerfile b/Dockerfile index d770237e3..b9e39f726 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,28 +1,29 @@ -# FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder -FROM mip-sf-harbor.med.osd.ds/mip-sf/jdk17-alpine-images-main:latest AS builder - +FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder WORKDIR /code - +ARG CODEARTIFACT_AUTH_TOKEN ARG MAVEN_PROFILE=webapi-docker ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true - -# Install curl -RUN apk add --no-cache curl - -# ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 +ARG MAVEN_M2="/code/.m2/settings.xml" ARG OPENTELEMETRY_JAVA_AGENT_VERSION=2.8.0 -RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar +ENV CODEARTIFACT_AUTH_TOKEN=${CODEARTIFACT_AUTH_TOKEN} +RUN echo $CODEARTIFACT_AUTH_TOKEN && curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar + +# Copy .m2 folder +COPY .m2 /code/.m2 -RUN mkdir war -COPY WebAPI.war war/WebAPI.war -RUN cd war \ -&& jar -xf WebAPI.war \ - && rm WebAPI.war +# Download dependencies +COPY pom.xml /code/ +RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} +COPY src /code/src +RUN mvn package -q -s ${MAVEN_M2} ${MAVEN_PARAMS} -P${MAVEN_PROFILE} && \ + mkdir war && \ + mv target/WebAPI.war war && \ + cd war && \ + jar -xf WebAPI.war && \ + rm WebAPI.war # OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 -# FROM openjdk:17-jdk-slim -# FROM eclipse-temurin:17-jre-alpine -FROM mip-sf-harbor.med.osd.ds/mip-sf/jdk17-alpine-images-main:latest +FROM 201959883603.dkr.ecr.us-east-2.amazonaws.com/mdaca/base-images/ironbank-alpine-java:3.20.3_jdk17 # Any Java options to pass along, e.g. memory, garbage collection, etc. ENV JAVA_OPTS="" @@ -33,19 +34,24 @@ ENV CLASSPATH="" # https://ruleoftech.com/2016/avoiding-jvm-delays-caused-by-random-number-generation ENV DEFAULT_JAVA_OPTS="-Djava.security.egd=file:///dev/./urandom" -# set working directory to a fixed WebAPI directory +# Create and make working directory to a fixed WebAPI directory +RUN addgroup -S webapi && \ + adduser -S -G webapi webapi && \ + mkdir -p /var/lib/ohdsi/webapi && \ + chown -R webapi:webapi /var/lib/ohdsi/webapi + WORKDIR /var/lib/ohdsi/webapi -COPY --from=builder /code/opentelemetry-javaagent.jar . +COPY --from=builder --chown=101 /code/opentelemetry-javaagent.jar . # deploy the just built OHDSI WebAPI war file # copy resources in order of fewest changes to most changes. # This way, the libraries step is not duplicated if the dependencies # do not change. -COPY --from=builder /code/war/WEB-INF/lib*/* WEB-INF/lib/ -COPY --from=builder /code/war/org org -COPY --from=builder /code/war/WEB-INF/classes WEB-INF/classes -COPY --from=builder /code/war/META-INF META-INF +COPY --from=builder --chown=webapi /code/war/WEB-INF/lib*/* WEB-INF/lib/ +COPY --from=builder --chown=webapi /code/war/org org +COPY --from=builder --chown=webapi /code/war/WEB-INF/classes WEB-INF/classes +COPY --from=builder --chown=webapi /code/war/META-INF META-INF ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://host.docker.internal:5432/OHDSI?currentSchema=webapi" # ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://10.0.21.93:32000/OHDSI?currentSchema=webapi" @@ -57,9 +63,9 @@ ENV FLYWAY_DATASOURCE_PASSWORD=admin1 EXPOSE 8080 -USER 101 +USER webapi # Directly run the code as a WAR. CMD exec java ${DEFAULT_JAVA_OPTS} ${JAVA_OPTS} \ -cp ".:WebAPI.jar:WEB-INF/lib/*.jar${CLASSPATH}" \ - org.springframework.boot.loader.launch.WarLauncher \ No newline at end of file + org.springframework.boot.loader.launch.WarLauncher diff --git a/Dockerfile-mvn-local b/Dockerfile-mvn-local new file mode 100644 index 000000000..d770237e3 --- /dev/null +++ b/Dockerfile-mvn-local @@ -0,0 +1,65 @@ +# FROM maven:3.9.7-eclipse-temurin-17-alpine AS builder +FROM mip-sf-harbor.med.osd.ds/mip-sf/jdk17-alpine-images-main:latest AS builder + +WORKDIR /code + +ARG MAVEN_PROFILE=webapi-docker +ARG MAVEN_PARAMS="-DskipUnitTests -DskipITtests -D\"maven.test.skip\"=true" # can use maven options, e.g. -DskipTests=true -DskipUnitTests=true + +# Install curl +RUN apk add --no-cache curl + +# ARG OPENTELEMETRY_JAVA_AGENT_VERSION=1.17.0 +ARG OPENTELEMETRY_JAVA_AGENT_VERSION=2.8.0 +RUN curl -LSsO https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${OPENTELEMETRY_JAVA_AGENT_VERSION}/opentelemetry-javaagent.jar + +RUN mkdir war +COPY WebAPI.war war/WebAPI.war +RUN cd war \ +&& jar -xf WebAPI.war \ + && rm WebAPI.war + +# OHDSI WebAPI and ATLAS web application running as a Spring Boot application with Java 11 +# FROM openjdk:17-jdk-slim +# FROM eclipse-temurin:17-jre-alpine +FROM mip-sf-harbor.med.osd.ds/mip-sf/jdk17-alpine-images-main:latest + +# Any Java options to pass along, e.g. memory, garbage collection, etc. +ENV JAVA_OPTS="" +# Additional classpath parameters to pass along. If provided, start with colon ":" +ENV CLASSPATH="" +# Default Java options. The first entry is a fix for when java reads secure random numbers: +# in a containerized system using /dev/random may reduce entropy too much, causing slowdowns. +# https://ruleoftech.com/2016/avoiding-jvm-delays-caused-by-random-number-generation +ENV DEFAULT_JAVA_OPTS="-Djava.security.egd=file:///dev/./urandom" + +# set working directory to a fixed WebAPI directory +WORKDIR /var/lib/ohdsi/webapi + +COPY --from=builder /code/opentelemetry-javaagent.jar . + +# deploy the just built OHDSI WebAPI war file +# copy resources in order of fewest changes to most changes. +# This way, the libraries step is not duplicated if the dependencies +# do not change. +COPY --from=builder /code/war/WEB-INF/lib*/* WEB-INF/lib/ +COPY --from=builder /code/war/org org +COPY --from=builder /code/war/WEB-INF/classes WEB-INF/classes +COPY --from=builder /code/war/META-INF META-INF + +ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://host.docker.internal:5432/OHDSI?currentSchema=webapi" +# ENV WEBAPI_DATASOURCE_URL="jdbc:postgresql://10.0.21.93:32000/OHDSI?currentSchema=webapi" +ENV WEBAPI_DATASOURCE_USERNAME=ohdsi_app_user +ENV WEBAPI_DATASOURCE_PASSWORD=app1 +ENV WEBAPI_SCHEMA=webapi +ENV FLYWAY_DATASOURCE_USERNAME=ohdsi_admin_user +ENV FLYWAY_DATASOURCE_PASSWORD=admin1 + +EXPOSE 8080 + +USER 101 + +# Directly run the code as a WAR. +CMD exec java ${DEFAULT_JAVA_OPTS} ${JAVA_OPTS} \ + -cp ".:WebAPI.jar:WEB-INF/lib/*.jar${CLASSPATH}" \ + org.springframework.boot.loader.launch.WarLauncher \ No newline at end of file diff --git a/arachnejars/arachne-common-types-3.x-MDACA.jar b/arachnejars/arachne-common-types-3.x-MDACA.jar index 455b9f2348b967e189e0ae33ff9a145cd5906a29..340fdc3ac67b36806b0433baa1d24d2f411207c4 100644 GIT binary patch delta 941 zcmaE(Ia`x2z?+$ci-CcIf#GXiRpdlISz!?%j|0q$;m-ILz`(!|IML2HL(j`s$J6&> z>8dS3AAEJZ&jx=e;tAq7q3L`6Ot8T5b2FxtY|E<9>*b|H@)oV|@FfD7T3 z%?}vmn34G$tmTZz{7$xwtWf@?K;y{G0=!=tB@p^Uw!W742f8;Dh`ksluNStP9L>)c z@2#VC(#P9J@1xH~UmY)>b0@s7`kp&~_U!q~x+`@&be}!-(m$oI%W#Ux_3Ni#t?uq% z?{4GIlfEukRk`z2P1dQMw zEfkP4UI`CMR0Dv*a3Fxhdh2+4@;(6>xET)xq?mp(Or9txrH$?exGo?=0nQO%cT`kW5zb~5mSB17xRG(PtgsZ^9d=;BdyJFod9<}~d&LIDTxBL;e7L9~ zBFibLNbxii1H(&J1_pb$QU-=4jkQcbKWa?2V`ZN#%Os=&@hd{3rcY+R1|tK*4j{Hh z(YTZqs!?=uzYrTz!kIi@NQy~~9W1+_jZXmCNKitW{8w0t@!{lk!uFHHMR<`MiJGDi WmMv*~zz0iTldp*guubO&Ndf?bNbk!4 delta 1090 zcmbQO`9_m3z?+$civa|*61PQ67Xb)7ia zpDYQRBBp&nrDErt?jT|Bpx~0ZT5CmQxP>Mg2Z`1QpAPyg((_g4i%;dwIbO!aUI#Yq zn|X63<4RSB$)7$eJks11r+L$1^_j0cUwSHbR_tUzbpgmFFu($2BJE^VRE~+Q@fELB!$W+?M(Z&vcJ&zFSM2lY0vjj0@`yT{aStTG0Dv zFHhh1XC~&KL<}dlhBNkBSDu@d?%T^crOEH>+nw+I3g*f!h$?;ZM)>fydv6mCDK+bA zUYs_^Tu6D=P2qHj&DD!fUi~wFMHy$@lTAU7a+c4C`Eb~=u65qA(2?A1#QjY74 z28Nfc3=H;gJq!#>8ZSZh@J`+@B!QF)CO;ICV*150`5>z;Qg}g3o9rbl#Z=7(l+&2p zCoGbT2uUQP8TjEG0fzto&3G6Xd|g8vbv^yu^m7x-QuBc68h0qFqi9a%0j3`#WuO>( z0N9|YTLDrBN@vnY33Kuqplg|UVJXnKAU{{HA~y$NJH%6{=@o7)Fo+oWVR}KScXF$U J0NV?&=K#}R6aoMM diff --git a/arachnejars/arachne-common-utils-3.x-MDACA.jar b/arachnejars/arachne-common-utils-3.x-MDACA.jar index 2cdef56d5b54ebffdab64d63572f10afd2215103..7d25876365f4f5e3bf038818b1babebd39a3867d 100644 GIT binary patch delta 1796 zcmaDJH7$xSz?+$ci-CcIfq|*MDsm#9tgr}>#{uTWaA$lAU|?VfoM>m9q37kRMiiy9}*@3PBDW0sss1IkyF`C2Ka~N$wY>Wmaq^+?w{dSpQC})}kr`QifarNfWWJ`jEsA`B z)M9o%i2WhS=8=2cIQl2QRf?)t44+u`);Zw*ebViK5Ug}2oLa*Cz%TmmX>pA7s zCTsrPTJ<(ME;|tyw9NAahxVz_ROtZ+ZHeO6f7?GC@fE5Ua4J5X-+emc`GbtMZFe{LxK8-DhGTA_ zoAt(vFZLwwH&8md?*6K*sHX{w8+4aS?|Zt$%s_Q}Pni<0!NXM9>oJdC7Wh3|x~FmS zt;pBMk~NxSQc{j@Tm4AH&g7stZ&#~lm+4I#Z#g^uEz9DkyIn8%ZvA%8&(D{R-Cua^ zlH%HM$%6XF8dpS5-F|Rz=U;!pZ<|-`-|(u-yu)*6Px|}S>A@a}>m~#|)H5seTV`w| z`(l=JV#abqgNA9Ze*Erf3|nHmkEvJe^`bku+Ip2dk>!F5pIEA$s%ec`XyEmIZFjPx zw==uFX!e)aBKBLoFR$acSgu~lHhq%Jve{uTOf<^1Z#~sY^odVMKOAYdyC-Yn7pB^i zSGBHLPWOq=znka$fFr-?-s#Hp$F|?*z29eQt+Jk{<#z4U`vnHS*g-i2kuAMscX#;% z^G@jGe$~KuZyl|ZKHffhAAL6Z>UjB_JK=rR_uTojXU|{O)jfGe^Vw4`{Zsn745ye} zzkUkV>h2Eq?l%5B>Fa`3l{-%bb$1zm{+!eMRjZ^nR%WhjazMwAGX^VM{* z6$z8qs~K5B^C>(>0~w%94FLiSZyi?xnUE}wFcqA$rPQSyPD3U0Q!0y#Q%j38^OAvO z0jff%Szt;6&H)+ylVS1#O{vL!>YVUmVV=4alRhI*SZVSdB;hwe;arfg#$*ExuxfC@ zQKK#4_||bFBLjo4Ylx$+r=OdCZem$#9*P@4D&f`w8R~Ej$PM=xC(l*VocvE4VJe@F z1j}1TWhS7610TpQh%#uhgN77SEfd%wVodTn5WgbiGZszx@&)Le^~?+m_HcU`7?w1? zVh3ybt|5<9FU~P}ofI2NfWQh(8=z@B*clj{Q5?5R2^hY1#s&GgdKI}j$gTiI a7(9aj^?0G^3s(i{o9wJB$Hu1yk^unSg)*lA delta 1804 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 delta 13519 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 XCn!l6MZ-2epoUOjik4#A1NJEZqtXla diff --git a/arachnejars/arachne-scheduler-3.x-MDACA.jar b/arachnejars/arachne-scheduler-3.x-MDACA.jar index 0c4c75397c866f98e482661b4579faacb8f5467e..d422ac2d38579f7bc896c619fdb19cc218f48062 100644 GIT binary patch delta 1808 zcmaJ>TSyd97(O$zj%MC!*VQK7ysfo&&C0b+%M4t1ch+@ROGCO~pjmb?Dp13MUb;{$ z2YWCd3JfvQ5PJxTNGQ-!L!%%fC_%RpNu`1`s59$&W{xY(%Y6Si-~at*{{Nff?WUe} zQBf{CBMS#041kd4h6-;~qFjNZFn?6Jy5^S)08rx1%c?QjczqE+diMS!_YAMM4|`_n zBivyF8vgZ=C*xff+j&|$JXAFL(>C}n(rD$`+AY3`@d+A`1&|tkWC&HAtTT}e@BGHl zz-iznDih;F)K-k!C^N<%sNER*Xf6E9hr(_r8zKEHSWR0nsguse*hlZcSj*&Ke6uhe z<0plA7*ke0T&sW?T5G`^8=o|4AVs=m-TQUB@3rgLi< z030j;+h8W02=BOADDx3OF|i?3B6W>hDd5O zjwz&~`wEOpryncHs^~4ZGK|C>7r4u{PBcO{JYjbpu*(S2Hpj?-{jI?{ zV&yf%MTYSSo9U&=0BmZX@7qL2sWPtPma=+MJ(b@wSKo3^8CyN+d(TakeVOkwZ@0|V zQ^+(Ftzbl7LYu=NDUFQ@uR1oD2Hb*ug@9nK#U}<#=XWBwXf#rFi6gvYa3Ey7Lfw|@ zmY)Js5a4hi@PGTKbBtewozlp2R3^-HCjVC@nNX=i{Ivh_bp-zb;)`BB>Ex)Nf&#LC zWat{zf%Y;EFCO<55y7 zd|Q$zE%XP;ZAuJuIvnP?lhQ@8MoU)Qxlr^6p`{E$tWza49PU)b1f77m6o{m{bd+Qc z^h~S*wI1}b8o%ICjXZe&8rpxZ^PjP`cr`qz**bfE6Dk-Te2H_anOG?ydqLmyn(<@F!g8J<* jb`dEWD>8-!Ht&s8iw(dR6`~dr^lh+b?|$~HU0D1Fsa%9X delta 1910 zcmX@GmT}@bM!o=VW)?065HL#I7BP`eRv5(NU@!#o?sbX#6asne6YY%ab-d1<(DBxF z;$VNWBy5V9_5qcOopZW_guR1;OXg~=6_Mcg+%nkb5VyGaAC#_Kc=*b~U2~oV|E+#HW@PSlpe#rKP2bq6g zSf2%%FCihqip)2YEoVgLZl?x~GjhYSQ79@RoFUPaH&wCN4{!w|sl z&B!Fej7UI}e|qa;OXia;eT+h&DGQt~padu#LVy6nTgOvCCL~p&nhH|`q6Od_kd8N# z_xs2w0fj&z1D63Zq~IKoGO5WEePsm#&>gGgE5#TDlv312mxAjCG8Ew)kWqa=^}5(> z)J9Qu7N|^RvVaKJWIjJmc+3j=OEHNtO%`O*6c;qefWtFER%KE!8?uQ4 z!BR|&a$rf1U>RhYJfO@`Rj|ymU?n7n7cKs~bOF$YW}xGZQEbuH1S{v(lEiQtO0j{W zNk$v230R6uX4jFLJRte2Lq@ybFo-*a6PbW=L4o02e<}MdhzlAYOvR<$jw1dWAG9WsNNk# PPx$17uqZYwACMpb#Ra&b diff --git a/arachnejars/arachne-storage-3.x-MDACA.jar b/arachnejars/arachne-storage-3.x-MDACA.jar index 6feeb7447f5347353f1725161c8d3b02b78453a5..106c33211e1f0eb09e0ee97c116973760939187b 100644 GIT binary patch delta 2432 zcmZuyYfKbZ6uvXF>;fXJ@>&NGL>Jg~9|Ytf$Rg~u^X zJok0=yu)A{ubKD8R7YOXIVQ$xa&F`)hdui7v7M9uT1RiJHdQ#3uC3F-dqEb70#ADV zwZKLn1z1jZn^~UGznG;0d6JB?88fx_GKJJ0U@X+W%al`F$CeVC)Q;QOvV;&1RRlwe ztJItDSN;ge$_1?jHjVPE=TfL`;dIn)=Zuv9v@4U^S6xCqg08y7max=9LThUs_MG7m znu)|~@-uOnM}_bBHU<{CK`vU%3Vfj&VWqw&dNe}nKdT;6C5!npRVN~DLHp)m=ZauK z#(+^XtB}aP{WRma8iF&4L^e>Jx;6?Pd{Lt3)VY zXy1v>#6V=uTdX9hqG75q0g{eD(lbKR4sRrW+?f&x=4xbXQ{|^Hp<+nG0)~Q|u(;sA zvF(^bTI@pURJzok+B+M@lMV;QUeky9f2+!?z399dp;>AbaX0kj*X)LUKLWpGgv-0u z;i%?%DWAJp8|EW`!0Rmqoa7R`AOEPy4&X|BzTIALGw4U{HoNH``vr%=YQJ{HcHL+i zHCyd327^}fuVy2%Zl0c=37&l^Df#S&NsSM*v*n2oy&nuEB{n{ozQxb(`fKr0QE|yb zF9SD&VG}s<^5LUyqePhAK784oOON1PFRvMfa+WTRNFbbH^M0PW3eAtluk4SakT!Vx z2;Qb_ktz}Z@X#lnT52>`ZpI$ZCiU`s%y@XF4MLfCf>G+^>J$%#o;rl=A|MKAIp=|6 zk_3e`Iy|6R(PDf9d7d{{pAf<@6ez z?fYQ#$k%|Oy?Jwx;Py7I2vTw|)>4O*7Kcr~4H^G4ZIWbZWw_m!L23~O#YmS%F<0*6 z@a-<1zJvy|XE?l}MJH>%0I2FFfFOyM=txn>!i-GAPBa2!UhHTxOYjUj|7 z5Gr4TP=O45M;!vkgq9|PaOpvweMbZF;?VwzF>#bFU)rTq0BG^9RP74T^B2DV>|GeU z8==`HvMO@2@uWE$U&~5d0ot?uyG{fk4nSoxP@*9Oio@4C)Y3-&-NCb7vk+CA<5p10 zMyHIjE(bt`D*&=FDg)^A;P~4l+qCE9ien>?62&ZU%%}O}rr@&tbXli`Lo{%RXD=6o z;ymsxh>_Jmawblxzs-cN%g<2=k;xZ+2K%0FqrgLl)sk8o$3MDvI31x{2SV0xKKu{% z9k+xa(YVN>k<}xNtY|;ax?hEhnuQ(y6ba=|X+!fjVQHVkj#y-r`x=DwZ~SSYogiZy z{{ciNojBH+B3sbPZ-B@(*ynGCFG83`sK?dCvnm&M`!x7;SF(2L91@cIw)yt^Fd16m iR>ie- z?ri7YQ=8))&(-#Ke2^cY%P+8yrF_c3po*mfD)-=pAaG zJcpl?rh|Kn;kRQ43S%eJyGNJ!_gicGYx^-~22>`VhYf{NbGg!Kfh0K@&4mb+FW}-z zT2952Xt@E`(y{~3pk*GBO3T?qn#j%LiAeoRL4rIIEYx#W)doxu654l}2&UywRxB;= zVJWz-U?(Tyo zRup{)JuL0h?llSInUd){W^g71@o7mWzVR;liUe z{xg4`9Fs2D3_x&9^F!11D-WCdR3iS*yJiY~e*Eu?{@y#8?TQq?LsOHw@f4X+c9h2r z8F?KoypzZXO{rE5^ zEo|b##G>t!&Ifp|4ktu@EN{;Pjal)u$pqDAmG|IgGUz9my=!J514{6RnZ*AA%jOW; zJgkx=NE~dHlX7P~#G0A|&lBzuFd_DDMlR(Lv93cj!{Im%#%;0dI>;CfzfcZRkXa?9 zGcBqjiC_W-j#-x{hQU)rIYfXbb-Z<*qztDnmlK?RkZsvOC$Qf_hRnfXFqT>rr4_Hi zjkKz|J!VoZfK6?-ys-wP136QXJsN?+W?G@lih;x$;aMvn%|;TZ zSX5C#Bl}t8Y_7ED6qe|AivnNP2~bi;9ZBrl z?nYH8l3Y&`bE$5`AIxZj*3>}M9qD%lF3@t=Ysrj&!-Y=Ag?e=V0VUfgQ$Y3|^|WGq8!yNQkYhoG@b8o}DjeD0b)U zQkLuO2P@W{GjBx7`JxegYE?x-!qtP8#0Wx|0M6ba^USvE8!@X}sF;NVRmO+kEZUqp m$Saijb})E&BXVx~69P?lGR!}$aGH-)2teWyp^wc>q5lKMVM*Np diff --git a/arachnejars/arachne-sys-settings-3.x-MDACA.jar b/arachnejars/arachne-sys-settings-3.x-MDACA.jar index 82282e394ab31d485bfc462cf2bc4839ef7bb9c1..d62d0f588bb5cd23e56c960b09accf8a89519dea 100644 GIT binary patch delta 2346 zcmaJ?eN0?_Z zg&B>1NTA;M5u2zi%w;A{v1X_wn~5e41femj`iEaj_=v=9GFc)L;(guY_T4ghNz-%g z`JLZ6=iYPA9sZiR@fD--xMcDS08{|{+jF`ptl6T=!I~Oymf&m&m^}`-t2vv!jn;T1rvq6!a3vG;|WV zK;|cMw`@O=$7K#8v+`OZPeVKE4`rs(kH`-Yh(f^=+0Pdd`7B>e6cO&*0*ugiU((pTB*P-_2q%QU5rY&%5h2BRA0NaFVnS7hT2AIL_nPAjTv zHb(mj^(rajhnC+Mss1LnER*Vy(wnlpB;(+UC42?~5K;h8ix_PQn&Nbb3uQ#-%U`5Y zIk~5jA|9=1r*uozR<$%xz`3+$_Z=&5iWa!fNdsS5SiS1SP36ZwC+g>m(JG&d)JHXK zE_3l1@8Ye0@xyMjlmG6T>$>HVIc}-5n8qet-0X~#8|N%wyl8IjkC_WTecpvP^v7ol z7i#=>x?Vr8&pkdn_Y=F|pI`pMzNccbi@{yZz#Lif;-Jf3%l&Q+y6fFV4xX!LH(w-8 zpF+@9&obZQ-O{1{`gG#*E?)fyuNq2HBVr!%Z6%Tx{8_`j)=**;uMja{VFytJR0o3w z%Ztq$(V8iTPZ;D4S~qmyD2ElnVJG5z$#VAkSm=O>Bj_oXZhe^zpN(NvIyVJ%*Dqk~!tx*Aj#CW+4cdSZyfwO&%=H-RErKm$!3 zl8~M&wkJ;E>C&eJz(FA+228#iZOd1qIzzg6#>o(<`w$CH=ZlyJ*V~t|-B%#mbtrUL zCr$r_!z}#FC|WhB!>ATpFBu_9MkxR;Dz&LXvGq(+$`j2j#3NT|%FE5WBsKQL9)IsV z-qs#GU}`9$G8=|hAy-S5l&GzRh4!+9<)BuHzHG^okWu59BD2}C%Yk)e#D18}_z?r& zVgL}H|Fv(ZH@hN{Y=6iq;g5})xK)gK03S+V4U7MWdV`fBd^0|AB`P_hmnQ8x!ou;Y z1mc!lg*vMqT7M*y7<0!-FoxCwF|aWH2R}6B delta 2532 zcmaJ?eN0nV6unX+d~=gW!M`5O5GEU6H7x1y@@6{ut~-*(L)b$-oiNnK?gT zlwIcBrlJO99aDx~B%Op29LvUFLWmof>5v)!5~Ct>EZf+9ZFzl{8eY=$oclY!bAR`| zbI+T*O7wk4xa+hWt`N|VqWp4xo4dc1_5?tVyjw@tXVxI^{Wev6lU(!j4|1(yi@@bh zXKuS!)X;`H%gJMUsa9{OJr#LD=I7=CycyHG(B_W}^#2XuZ&dh+*th z;yK3NM?BBiLqs}b7ju%}P=L#-W5YZ$n+fS9H7oXqoSYRC7IU^SwuzI$*h`$PjNMBn z!P82&)!C18w=*GkxS29kURwM+5y6ENAAlhV0QvACH;PsUQ+K+Vv-nE>dfR)T1C{5d z`rqXMU~mOsk3G;0ju&{F?~A%QLPwyvL!#rc{Uy)ym~ZmEPO|aC0TU!^qaT~o3Kj?e z#!%%A_KgCdTd~+Y68wZ<6Tc4?V~K8t)d<*le)KHCO58ZP>r59qK_k+dW=-6fAT_td z_G0R{CEUk+Rnj!JNl=Os6R}HKf%(&^fnv4@Lc3_g0f?rXC6O0SzXz-RDo@4OCZ5ht zb4Ov9vd(c>(lZLmzG_0OBj~4rHM~eT%kzYT#7JSD*RHYopWPk()YLB7c>LwAvEY%$s=*r{ zT&*|Gxkz+cf|PL__X6(DRy^(Y!tU%irvGNMsrXTJ6x+SR6QE`0K|N`IBw#-69(rd| zsMfnOd31V;pkSZgH)^$v6(0Q`$T)Ns9g2?%K}&Q~GYB%CWgI%J1%-vcAcM!#LgiTK zlr?n1AeOJCA_n95lW-k>6Pz_T4)ef3k#Eq;O6Q`gaw&3{gl9#Y*W5#e?IGnLf_lx; z;G(LaIwvI*Cs0i0(+|03wg3M7WQJe1Hj&R}sqMQV6xuR@kM8-`6VMjQa02X45bO1;G@yFFP$ z0Y%<@24Pw7Z;8SwVbkx`oiRKBE{ahrV+qxsR?@M;fN;lP)D6bIUPl7Zg2rtI7XE-j z;hW(-UoU43kwp}F&EJlT;o%}rR!VGEVku2Q424(h!=kiTy7u&-@wyjH!W|ez9Li7* z70Xx@^MSq;4*>v14*;|nWkVQD%h?3|!u_0u`nis+#+$7)*jEYTd<&b( LOZexr>Bav6gmzg@ diff --git a/arachnejars/data-source-manager-3.x-MDACA.jar b/arachnejars/data-source-manager-3.x-MDACA.jar index 2728374994ff6a7132806c2b206401e723230a3e..f4b01eea2b2e7454563a2725aa4e5a614dfd4e45 100644 GIT binary patch delta 3023 zcmaJ@2~ZQ+7VQp^O^gTuLaQSX2uKzb6c8nBE`$UOO9+gFov_O~D3-_~*%hzcXbW!Pjy#O-$nCh1g7{jN&Yy?xI;_rCi&@4U`lFsm0N zaM?KBn#Rzf@3|1~2w^&D@sq)>?Cqgdca3S!?xpUujQy!A#z%SG651 z18vu>-6b@ObGHivSR##g=E>J!5 zaJiCma(#7ES!DF89M0y-W`<@?LDH-^&2ECN26R1R>=rGpy;wEf=RjO-ZN4`*-qC#F zNhft9jgF0ZS+R%3WpOun$69k(hpV;HJdH2hEO2Dv^SM2YR4uOZ7BAm5H6P0Kt;irGjwGmRe z(BlB|sK1CD6dl5vAduG9P|Gjx*H#OwQ?+U|6&!+RY!qAP=AOY$eCy)GwLb_JSKON1f9AQ%s#*MseI@S*25MUlBo@Ctt&|Ds zG*psA>K>XO9Xou~?v=K+a1ujJCHkkx9XdK9W3MB>c;w#A@6)_pxnKL>MnB=fx+c$* zrJ}-8&i2_Yv2lKVkFWW9w$k(XT6KC+*EMw;I@e4OnjT6ivzah#J;JJ^Ez9X(6j*1d z8e0|W8H6F{>b1A-+&3cQYu%D<^;f%mB|qQtukWAQbFHzMo144NS&MUFw7hXi zhWB63%>ygbop;#^FI#&yye6hG?CZZ8Ju&cH(#p%9Z5g}Kzb#gjwo-Jd_M7ft@TE*% zA%T4M#~xm<{zyu8v>P?)Wv}vjz4EFPtG7pA{w=v}{du<}XLHes(-38SQ_Q|klCh@^ zjf6`%*?f!9yfv+*JzC=@1v8i4mE|5JguEP$F9^R{xLqwC;^QW>$4!5$7(3p?A0G3iW?nU} z`KUDmlSWrGxV#$rzVwux$p@c-!2YmweUH6?g14WR**kc>`3`Qaw6uJ=W^$-xXif6I z(|`NhZM~l|?tGWubzZkhvS-I+t5%Uu58bkd)+~C^ZF-JjuliHli@;`6p|#i^+>{x= zGe`KMQIcTx)SJ@60@#fuGaA>HpHH}d#Pid4ov1^i&^%sA)gC9q&>by!&h)qn**`}2 z9y9ntUUe#aMV4j+`xV#5gXa9_Lk2#W+@J2Cq|K<(MgVmpDISDVH+@`wsEf%C;+794kp@iE?_p2O%**8E)6 zB$W=i8vSWA0J|e6I|unW0dQcnAxw`U!BsKp0yfS3E{DxwOmZ%}vuLb`^ezj!n@4Y_ zdk34dl|D4=W^vDg4!BVylDESZKDv4pg}RX=CR53xGF_d>5y=zi9q;w*6e17fArA@Ty>`%1L`+21B^JAiN}u@qc-! z3Ow34gvS^WOigTUscKFJLv{f;07#99PmBvmjYvThTfRb6Ol3@nu~_Cv+rz-Diw0B2I&HW;)Brb7)PE(fU6@F3f_o>aLGPWK$PixJ?VX9briIY z#7A}`Idm-}EMdD4yGj%R`l_5;j}$_`CqspTZ}@O5pRDjrp$R85RI1PfALM7CkPzkv z5A%(v*b4vLdPvBn_m~E9tx`yM1`DE%knh}ZegNoyO7Xap!%MR{0?gqDDbEPd;Qs*Q C*2#JR delta 3170 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 delta 1984 zcmZux3rt&87{2$m>jUV+_LkypVIV7mwv0z*8Q~$2VMcGEr7h|LvMh)*%U}-{Qxw98 zF($UM$G=1yw`d|U;+Wa&f)^ z@7(|Y@A*^ov0+;6;U&@}O1KJljy!f$ovs&KSD1Yt#tI+ol~FN`TQD% z{KnuT$5U++8v@Z2L9d?o`VOA7o@UL-I&gRmJ^C-b3v6h~zUbQp#c|5Di2rGJ%j}?UJIKw!Iw%q5=y!y-|)BAuq`3g7|#} zT_Q)xh3Ao6rkaVJM8IdyJyH25O;O2E#Nr3xl#^_Ze~L{>)Ne-*n3yeGMcQ781f zUjC^W3U$`VH>xy3cUxm4uwC~sfqU30hE4eFe(pQTdnnXX5}>sk;1{H74GZs_nDgU8vv((O(JNqOI_1 zle*9Mw0n}zciQXf8@Ijfzg2JNC$InLRm%_b>TQNlh)sEEIK_TCq%yQTUc-h`Laspc zN^qV}F8A$$g|4M}pEVft@j=JJvF@lY=q&z92mGM}rOR`3;qJMymiD3APr}RHBcDEF z7#-gUUA$;{aS#eg@lxoLBBK`w$vLi`Nx+ohqD=q>c2<6Lm|rTN)5Dn zWZ06QIqTtH(GGu0D9S~!ZqrrU%C8L_99FCcgJ9`|c{B(KIzhTR-vO%+XUx(zs^@^DOXn#j04 z1k;I_Ax?~>ZIrDI*T7sb$0TNq9-tjFqwo=;zs`u!N_e)B#Uv*G zUd4nc`94#WjAtuhwvold-D%{Q#Rp<+Dl~XyINR#w7>Pw>CoMW{qU%<_uP}!A4|7Dm z*_Q;2Pmix&@8g&+a$_vsZB%OK{lB62dIuG_gs9pzt0+J3OUH`*&Xv-0`!p0)jw-x` zkY@nxC#vA`bIgr$R^4 zrB+t@wn8V*#mDn7pC(;d8Quzi(OGbjSH_7Mk(d(*n|f{Z6_oImgMU!sO|^*0gNK?_ Y*r|!{-P*3`cd*|N` z>8dS3AAEJZ&jx=e;tAq7q3L`6Ot8T5b2FxtY|E<9>*b|H@)oV|@FfD7T3 z%?}vmn34G$tmTZz{7$xwtWf@?K;y{G0=!=tB@p^Uw!W742f8;Dh`ksluNStP9L>)c z@2#VC(#P9J@1xH~UmY)>b0@s7`kp&~_U!q~x+`@&be}!-(m$oI%W#Ux_3Ni#t?uq% z?{4GIlfEukRk`z2P1dQMw zEfkP4UI`CMR0Dv*a3Fxhdh2+4@;(6>xET)xq?mp(Or9txrH$?exGo?=0nQO%cT`kW5zb~5mSB17xRG(PtgsZ^9d=;BdyJFod9<}~d&LIDTxBL;e7L9~ zBFibLNbxii1H(&J1_pb$QU-=4jkQcbKWa?2V`ZN#%Os=&@hd{3rcY+R1|tK*4j{Hh z(YTZqs!?=uzYrTz!kIi@NQy~~9W1+_jZXmCNKitW{8w0t@!{lk!uFHHMR<`MiJGDi WmMv*~zz0iTldp*guubO&Ndf?bNbk!4 delta 1090 zcmbQO`9_m3z?+$civa|*61PQ67Xb)7ia zpDYQRBBp&nrDErt?jT|Bpx~0ZT5CmQxP>Mg2Z`1QpAPyg((_g4i%;dwIbO!aUI#Yq zn|X63<4RSB$)7$eJks11r+L$1^_j0cUwSHbR_tUzbpgmFFu($2BJE^VRE~+Q@fELB!$W+?M(Z&vcJ&zFSM2lY0vjj0@`yT{aStTG0Dv zFHhh1XC~&KL<}dlhBNkBSDu@d?%T^crOEH>+nw+I3g*f!h$?;ZM)>fydv6mCDK+bA zUYs_^Tu6D=P2qHj&DD!fUi~wFMHy$@lTAU7a+c4C`Eb~=u65qA(2?A1#QjY74 z28Nfc3=H;gJq!#>8ZSZh@J`+@B!QF)CO;ICV*150`5>z;Qg}g3o9rbl#Z=7(l+&2p zCoGbT2uUQP8TjEG0fzto&3G6Xd|g8vbv^yu^m7x-QuBc68h0qFqi9a%0j3`#WuO>( z0N9|YTLDrBN@vnY33Kuqplg|UVJXnKAU{{HA~y$NJH%6{=@o7)Fo+oWVR}KScXF$U J0NV?&=K#}R6aoMM diff --git a/code/arachne/arachne-common-utils-3.x-MDACA.jar b/code/arachne/arachne-common-utils-3.x-MDACA.jar index 2cdef56d5b54ebffdab64d63572f10afd2215103..7d25876365f4f5e3bf038818b1babebd39a3867d 100644 GIT binary patch delta 1796 zcmaDJH7$xSz?+$ci-CcIfq|*MDsm#9tgr}>#{uTWaA$lAU|?VfoM>m9q37kRMiiy9}*@3PBDW0sss1IkyF`C2Ka~N$wY>Wmaq^+?w{dSpQC})}kr`QifarNfWWJ`jEsA`B z)M9o%i2WhS=8=2cIQl2QRf?)t44+u`);Zw*ebViK5Ug}2oLa*Cz%TmmX>pA7s zCTsrPTJ<(ME;|tyw9NAahxVz_ROtZ+ZHeO6f7?GC@fE5Ua4J5X-+emc`GbtMZFe{LxK8-DhGTA_ zoAt(vFZLwwH&8md?*6K*sHX{w8+4aS?|Zt$%s_Q}Pni<0!NXM9>oJdC7Wh3|x~FmS zt;pBMk~NxSQc{j@Tm4AH&g7stZ&#~lm+4I#Z#g^uEz9DkyIn8%ZvA%8&(D{R-Cua^ zlH%HM$%6XF8dpS5-F|Rz=U;!pZ<|-`-|(u-yu)*6Px|}S>A@a}>m~#|)H5seTV`w| z`(l=JV#abqgNA9Ze*Erf3|nHmkEvJe^`bku+Ip2dk>!F5pIEA$s%ec`XyEmIZFjPx zw==uFX!e)aBKBLoFR$acSgu~lHhq%Jve{uTOf<^1Z#~sY^odVMKOAYdyC-Yn7pB^i zSGBHLPWOq=znka$fFr-?-s#Hp$F|?*z29eQt+Jk{<#z4U`vnHS*g-i2kuAMscX#;% z^G@jGe$~KuZyl|ZKHffhAAL6Z>UjB_JK=rR_uTojXU|{O)jfGe^Vw4`{Zsn745ye} zzkUkV>h2Eq?l%5B>Fa`3l{-%bb$1zm{+!eMRjZ^nR%WhjazMwAGX^VM{* z6$z8qs~K5B^C>(>0~w%94FLiSZyi?xnUE}wFcqA$rPQSyPD3U0Q!0y#Q%j38^OAvO z0jff%Szt;6&H)+ylVS1#O{vL!>YVUmVV=4alRhI*SZVSdB;hwe;arfg#$*ExuxfC@ zQKK#4_||bFBLjo4Ylx$+r=OdCZem$#9*P@4D&f`w8R~Ej$PM=xC(l*VocvE4VJe@F z1j}1TWhS7610TpQh%#uhgN77SEfd%wVodTn5WgbiGZszx@&)Le^~?+m_HcU`7?w1? zVh3ybt|5<9FU~P}ofI2NfWQh(8=z@B*clj{Q5?5R2^hY1#s&GgdKI}j$gTiI a7(9aj^?0G^3s(i{o9wJB$Hu1yk^unSg)*lA delta 1804 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 delta 13519 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 XCn!l6MZ-2epoUOjik4#A1NJEZqtXla diff --git a/code/arachne/arachne-scheduler-3.x-MDACA.jar b/code/arachne/arachne-scheduler-3.x-MDACA.jar index 0c4c75397c866f98e482661b4579faacb8f5467e..d422ac2d38579f7bc896c619fdb19cc218f48062 100644 GIT binary patch delta 1808 zcmaJ>TSyd97(O$zj%MC!*VQK7ysfo&&C0b+%M4t1ch+@ROGCO~pjmb?Dp13MUb;{$ z2YWCd3JfvQ5PJxTNGQ-!L!%%fC_%RpNu`1`s59$&W{xY(%Y6Si-~at*{{Nff?WUe} zQBf{CBMS#041kd4h6-;~qFjNZFn?6Jy5^S)08rx1%c?QjczqE+diMS!_YAMM4|`_n zBivyF8vgZ=C*xff+j&|$JXAFL(>C}n(rD$`+AY3`@d+A`1&|tkWC&HAtTT}e@BGHl zz-iznDih;F)K-k!C^N<%sNER*Xf6E9hr(_r8zKEHSWR0nsguse*hlZcSj*&Ke6uhe z<0plA7*ke0T&sW?T5G`^8=o|4AVs=m-TQUB@3rgLi< z030j;+h8W02=BOADDx3OF|i?3B6W>hDd5O zjwz&~`wEOpryncHs^~4ZGK|C>7r4u{PBcO{JYjbpu*(S2Hpj?-{jI?{ zV&yf%MTYSSo9U&=0BmZX@7qL2sWPtPma=+MJ(b@wSKo3^8CyN+d(TakeVOkwZ@0|V zQ^+(Ftzbl7LYu=NDUFQ@uR1oD2Hb*ug@9nK#U}<#=XWBwXf#rFi6gvYa3Ey7Lfw|@ zmY)Js5a4hi@PGTKbBtewozlp2R3^-HCjVC@nNX=i{Ivh_bp-zb;)`BB>Ex)Nf&#LC zWat{zf%Y;EFCO<55y7 zd|Q$zE%XP;ZAuJuIvnP?lhQ@8MoU)Qxlr^6p`{E$tWza49PU)b1f77m6o{m{bd+Qc z^h~S*wI1}b8o%ICjXZe&8rpxZ^PjP`cr`qz**bfE6Dk-Te2H_anOG?ydqLmyn(<@F!g8J<* jb`dEWD>8-!Ht&s8iw(dR6`~dr^lh+b?|$~HU0D1Fsa%9X delta 1910 zcmX@GmT}@bM!o=VW)?065HL#I7BP`eRv5(NU@!#o?sbX#6asne6YY%ab-d1<(DBxF z;$VNWBy5V9_5qcOopZW_guR1;OXg~=6_Mcg+%nkb5VyGaAC#_Kc=*b~U2~oV|E+#HW@PSlpe#rKP2bq6g zSf2%%FCihqip)2YEoVgLZl?x~GjhYSQ79@RoFUPaH&wCN4{!w|sl z&B!Fej7UI}e|qa;OXia;eT+h&DGQt~padu#LVy6nTgOvCCL~p&nhH|`q6Od_kd8N# z_xs2w0fj&z1D63Zq~IKoGO5WEePsm#&>gGgE5#TDlv312mxAjCG8Ew)kWqa=^}5(> z)J9Qu7N|^RvVaKJWIjJmc+3j=OEHNtO%`O*6c;qefWtFER%KE!8?uQ4 z!BR|&a$rf1U>RhYJfO@`Rj|ymU?n7n7cKs~bOF$YW}xGZQEbuH1S{v(lEiQtO0j{W zNk$v230R6uX4jFLJRte2Lq@ybFo-*a6PbW=L4o02e<}MdhzlAYOvR<$jw1dWAG9WsNNk# PPx$17uqZYwACMpb#Ra&b diff --git a/code/arachne/arachne-storage-3.x-MDACA.jar b/code/arachne/arachne-storage-3.x-MDACA.jar index 6feeb7447f5347353f1725161c8d3b02b78453a5..106c33211e1f0eb09e0ee97c116973760939187b 100644 GIT binary patch delta 2432 zcmZuyYfKbZ6uvXF>;fXJ@>&NGL>Jg~9|Ytf$Rg~u^X zJok0=yu)A{ubKD8R7YOXIVQ$xa&F`)hdui7v7M9uT1RiJHdQ#3uC3F-dqEb70#ADV zwZKLn1z1jZn^~UGznG;0d6JB?88fx_GKJJ0U@X+W%al`F$CeVC)Q;QOvV;&1RRlwe ztJItDSN;ge$_1?jHjVPE=TfL`;dIn)=Zuv9v@4U^S6xCqg08y7max=9LThUs_MG7m znu)|~@-uOnM}_bBHU<{CK`vU%3Vfj&VWqw&dNe}nKdT;6C5!npRVN~DLHp)m=ZauK z#(+^XtB}aP{WRma8iF&4L^e>Jx;6?Pd{Lt3)VY zXy1v>#6V=uTdX9hqG75q0g{eD(lbKR4sRrW+?f&x=4xbXQ{|^Hp<+nG0)~Q|u(;sA zvF(^bTI@pURJzok+B+M@lMV;QUeky9f2+!?z399dp;>AbaX0kj*X)LUKLWpGgv-0u z;i%?%DWAJp8|EW`!0Rmqoa7R`AOEPy4&X|BzTIALGw4U{HoNH``vr%=YQJ{HcHL+i zHCyd327^}fuVy2%Zl0c=37&l^Df#S&NsSM*v*n2oy&nuEB{n{ozQxb(`fKr0QE|yb zF9SD&VG}s<^5LUyqePhAK784oOON1PFRvMfa+WTRNFbbH^M0PW3eAtluk4SakT!Vx z2;Qb_ktz}Z@X#lnT52>`ZpI$ZCiU`s%y@XF4MLfCf>G+^>J$%#o;rl=A|MKAIp=|6 zk_3e`Iy|6R(PDf9d7d{{pAf<@6ez z?fYQ#$k%|Oy?Jwx;Py7I2vTw|)>4O*7Kcr~4H^G4ZIWbZWw_m!L23~O#YmS%F<0*6 z@a-<1zJvy|XE?l}MJH>%0I2FFfFOyM=txn>!i-GAPBa2!UhHTxOYjUj|7 z5Gr4TP=O45M;!vkgq9|PaOpvweMbZF;?VwzF>#bFU)rTq0BG^9RP74T^B2DV>|GeU z8==`HvMO@2@uWE$U&~5d0ot?uyG{fk4nSoxP@*9Oio@4C)Y3-&-NCb7vk+CA<5p10 zMyHIjE(bt`D*&=FDg)^A;P~4l+qCE9ien>?62&ZU%%}O}rr@&tbXli`Lo{%RXD=6o z;ymsxh>_Jmawblxzs-cN%g<2=k;xZ+2K%0FqrgLl)sk8o$3MDvI31x{2SV0xKKu{% z9k+xa(YVN>k<}xNtY|;ax?hEhnuQ(y6ba=|X+!fjVQHVkj#y-r`x=DwZ~SSYogiZy z{{ciNojBH+B3sbPZ-B@(*ynGCFG83`sK?dCvnm&M`!x7;SF(2L91@cIw)yt^Fd16m iR>ie- z?ri7YQ=8))&(-#Ke2^cY%P+8yrF_c3po*mfD)-=pAaG zJcpl?rh|Kn;kRQ43S%eJyGNJ!_gicGYx^-~22>`VhYf{NbGg!Kfh0K@&4mb+FW}-z zT2952Xt@E`(y{~3pk*GBO3T?qn#j%LiAeoRL4rIIEYx#W)doxu654l}2&UywRxB;= zVJWz-U?(Tyo zRup{)JuL0h?llSInUd){W^g71@o7mWzVR;liUe z{xg4`9Fs2D3_x&9^F!11D-WCdR3iS*yJiY~e*Eu?{@y#8?TQq?LsOHw@f4X+c9h2r z8F?KoypzZXO{rE5^ zEo|b##G>t!&Ifp|4ktu@EN{;Pjal)u$pqDAmG|IgGUz9my=!J514{6RnZ*AA%jOW; zJgkx=NE~dHlX7P~#G0A|&lBzuFd_DDMlR(Lv93cj!{Im%#%;0dI>;CfzfcZRkXa?9 zGcBqjiC_W-j#-x{hQU)rIYfXbb-Z<*qztDnmlK?RkZsvOC$Qf_hRnfXFqT>rr4_Hi zjkKz|J!VoZfK6?-ys-wP136QXJsN?+W?G@lih;x$;aMvn%|;TZ zSX5C#Bl}t8Y_7ED6qe|AivnNP2~bi;9ZBrl z?nYH8l3Y&`bE$5`AIxZj*3>}M9qD%lF3@t=Ysrj&!-Y=Ag?e=V0VUfgQ$Y3|^|WGq8!yNQkYhoG@b8o}DjeD0b)U zQkLuO2P@W{GjBx7`JxegYE?x-!qtP8#0Wx|0M6ba^USvE8!@X}sF;NVRmO+kEZUqp m$Saijb})E&BXVx~69P?lGR!}$aGH-)2teWyp^wc>q5lKMVM*Np diff --git a/code/arachne/arachne-sys-settings-3.x-MDACA.jar b/code/arachne/arachne-sys-settings-3.x-MDACA.jar index 82282e394ab31d485bfc462cf2bc4839ef7bb9c1..d62d0f588bb5cd23e56c960b09accf8a89519dea 100644 GIT binary patch delta 2346 zcmaJ?eN0?_Z zg&B>1NTA;M5u2zi%w;A{v1X_wn~5e41femj`iEaj_=v=9GFc)L;(guY_T4ghNz-%g z`JLZ6=iYPA9sZiR@fD--xMcDS08{|{+jF`ptl6T=!I~Oymf&m&m^}`-t2vv!jn;T1rvq6!a3vG;|WV zK;|cMw`@O=$7K#8v+`OZPeVKE4`rs(kH`-Yh(f^=+0Pdd`7B>e6cO&*0*ugiU((pTB*P-_2q%QU5rY&%5h2BRA0NaFVnS7hT2AIL_nPAjTv zHb(mj^(rajhnC+Mss1LnER*Vy(wnlpB;(+UC42?~5K;h8ix_PQn&Nbb3uQ#-%U`5Y zIk~5jA|9=1r*uozR<$%xz`3+$_Z=&5iWa!fNdsS5SiS1SP36ZwC+g>m(JG&d)JHXK zE_3l1@8Ye0@xyMjlmG6T>$>HVIc}-5n8qet-0X~#8|N%wyl8IjkC_WTecpvP^v7ol z7i#=>x?Vr8&pkdn_Y=F|pI`pMzNccbi@{yZz#Lif;-Jf3%l&Q+y6fFV4xX!LH(w-8 zpF+@9&obZQ-O{1{`gG#*E?)fyuNq2HBVr!%Z6%Tx{8_`j)=**;uMja{VFytJR0o3w z%Ztq$(V8iTPZ;D4S~qmyD2ElnVJG5z$#VAkSm=O>Bj_oXZhe^zpN(NvIyVJ%*Dqk~!tx*Aj#CW+4cdSZyfwO&%=H-RErKm$!3 zl8~M&wkJ;E>C&eJz(FA+228#iZOd1qIzzg6#>o(<`w$CH=ZlyJ*V~t|-B%#mbtrUL zCr$r_!z}#FC|WhB!>ATpFBu_9MkxR;Dz&LXvGq(+$`j2j#3NT|%FE5WBsKQL9)IsV z-qs#GU}`9$G8=|hAy-S5l&GzRh4!+9<)BuHzHG^okWu59BD2}C%Yk)e#D18}_z?r& zVgL}H|Fv(ZH@hN{Y=6iq;g5})xK)gK03S+V4U7MWdV`fBd^0|AB`P_hmnQ8x!ou;Y z1mc!lg*vMqT7M*y7<0!-FoxCwF|aWH2R}6B delta 2532 zcmaJ?eN0nV6unX+d~=gW!M`5O5GEU6H7x1y@@6{ut~-*(L)b$-oiNnK?gT zlwIcBrlJO99aDx~B%Op29LvUFLWmof>5v)!5~Ct>EZf+9ZFzl{8eY=$oclY!bAR`| zbI+T*O7wk4xa+hWt`N|VqWp4xo4dc1_5?tVyjw@tXVxI^{Wev6lU(!j4|1(yi@@bh zXKuS!)X;`H%gJMUsa9{OJr#LD=I7=CycyHG(B_W}^#2XuZ&dh+*th z;yK3NM?BBiLqs}b7ju%}P=L#-W5YZ$n+fS9H7oXqoSYRC7IU^SwuzI$*h`$PjNMBn z!P82&)!C18w=*GkxS29kURwM+5y6ENAAlhV0QvACH;PsUQ+K+Vv-nE>dfR)T1C{5d z`rqXMU~mOsk3G;0ju&{F?~A%QLPwyvL!#rc{Uy)ym~ZmEPO|aC0TU!^qaT~o3Kj?e z#!%%A_KgCdTd~+Y68wZ<6Tc4?V~K8t)d<*le)KHCO58ZP>r59qK_k+dW=-6fAT_td z_G0R{CEUk+Rnj!JNl=Os6R}HKf%(&^fnv4@Lc3_g0f?rXC6O0SzXz-RDo@4OCZ5ht zb4Ov9vd(c>(lZLmzG_0OBj~4rHM~eT%kzYT#7JSD*RHYopWPk()YLB7c>LwAvEY%$s=*r{ zT&*|Gxkz+cf|PL__X6(DRy^(Y!tU%irvGNMsrXTJ6x+SR6QE`0K|N`IBw#-69(rd| zsMfnOd31V;pkSZgH)^$v6(0Q`$T)Ns9g2?%K}&Q~GYB%CWgI%J1%-vcAcM!#LgiTK zlr?n1AeOJCA_n95lW-k>6Pz_T4)ef3k#Eq;O6Q`gaw&3{gl9#Y*W5#e?IGnLf_lx; z;G(LaIwvI*Cs0i0(+|03wg3M7WQJe1Hj&R}sqMQV6xuR@kM8-`6VMjQa02X45bO1;G@yFFP$ z0Y%<@24Pw7Z;8SwVbkx`oiRKBE{ahrV+qxsR?@M;fN;lP)D6bIUPl7Zg2rtI7XE-j z;hW(-UoU43kwp}F&EJlT;o%}rR!VGEVku2Q424(h!=kiTy7u&-@wyjH!W|ez9Li7* z70Xx@^MSq;4*>v14*;|nWkVQD%h?3|!u_0u`nis+#+$7)*jEYTd<&b( LOZexr>Bav6gmzg@ diff --git a/code/arachne/ch/qos/logback/logback-classic/1.4.14/_remote.repositories b/code/arachne/ch/qos/logback/logback-classic/1.4.14/_remote.repositories deleted file mode 100644 index 9b6601e09..000000000 --- a/code/arachne/ch/qos/logback/logback-classic/1.4.14/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -logback-classic-1.4.14.pom>central= diff --git a/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom b/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom deleted file mode 100644 index 7aff4f82e..000000000 --- a/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom +++ /dev/null @@ -1,367 +0,0 @@ - - - - 4.0.0 - - - ch.qos.logback - logback-parent - 1.4.14 - - - logback-classic - jar - Logback Classic Module - logback-classic module - - - ch.qos.logback.classic - - - - - ch.qos.logback - logback-core - - - org.slf4j - slf4j-api - - - - - - - org.slf4j - slf4j-api - test-jar - ${slf4j.version} - test - - - org.slf4j - log4j-over-slf4j - ${slf4j.version} - test - - - org.slf4j - jul-to-slf4j - ${slf4j.version} - test - - - - ch.qos.reload4j - reload4j - 1.2.18.4 - test - - - - org.dom4j - dom4j - test - - - - jakarta.mail - jakarta.mail-api - compile - true - - - - jakarta.activation - jakarta.activation-api - compile - true - - - - org.eclipse.angus - angus-mail - test - - - - org.codehaus.janino - janino - true - - - - ch.qos.logback - logback-core - test-jar - test - - - jakarta.servlet - jakarta.servlet-api - provided - true - - - - org.apache.felix - org.apache.felix.main - 5.6.10 - test - - - - org.mockito - mockito-core - test - - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - test - - - - - - - - src/main/resources - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - bundle-test-jar - package - - test-jar - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${maven-antrun-plugin.version} - - - org.apache.ant - ant-junit - ${ant.version} - - - org.apache.ant - ant-junitlauncher - ${ant.version} - - - - org.junit.jupiter - junit-jupiter-api - ${junit-jupiter-api.version} - - - - - org.junit.vintage - junit-vintage-engine - ${junit-vintage-engine.version} - - - - org.hamcrest - hamcrest-core - ${hamcrest.version} - - - - - - - - - ant-integration-test - package - - - - - - - - run - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - default-test - - - - --add-modules jakarta.mail - --add-modules jakarta.servlet - --add-opens ch.qos.logback.core/ch.qos.logback.core.testUtil=java.naming - --add-opens ch.qos.logback.classic/ch.qos.logback.classic.testUtil=ch.qos.logback.core - --add-opens ch.qos.logback.classic/ch.qos.logback.classic.jsonTest=ALL-UNNAMED - - classes - 8 - - - 1C - true - plain - false - - - true - - - **/test_osgi/BundleTest.java - org.slf4j.implTest.MultithreadedInitializationTest.java - org.slf4j.implTest.InitializationOutputTest.java - ch.qos.logback.classic.util.ContextInitializerTest.java - ch.qos.logback.classic.spi.InvocationTest.java - - - - - - singleJVM - - test - - - 4 - false - - org.slf4j.implTest.MultithreadedInitializationTest.java - org.slf4j.implTest.InitializationOutputTest.java - ch.qos.logback.classic.util.ContextInitializerTest.java - ch.qos.logback.classic.spi.InvocationTest.java - - - - - - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - ch.qos.logback.classic* - - - ch.qos.logback.classic*;version="${range;[==,+);${version_cleanup;${project.version}}}", - sun.reflect;resolution:=optional, - jakarta.*;resolution:=optional, - org.xml.*;resolution:=optional, - ch.qos.logback.core.rolling, - ch.qos.logback.core.rolling.helper, - ch.qos.logback.core.read, - * - - - =1.0.0)(!(version>=2.0.0)))";resolution:=optional, - osgi.extender;filter:="(&(osgi.extender=osgi.serviceloader.registrar)(version>=1.0.0)(!(version>=2.0.0)))", - osgi.serviceloader;filter:="(osgi.serviceloader=ch.qos.logback.classic.spi.Configurator)";osgi.serviceloader="ch.qos.logback.classic.spi.Configurator";resolution:=optional;cardinality:=multiple - ]]> - ="jakarta.servlet.ServletContainerInitializer";effective:=active, - osgi.service;objectClass:List="org.slf4j.spi.SLF4JServiceProvider";effective:=active, - osgi.serviceloader;osgi.serviceloader="jakarta.servlet.ServletContainerInitializer";register:="ch.qos.logback.classic.servlet.LogbackServletContainerInitializer", - osgi.serviceloader;osgi.serviceloader="org.slf4j.spi.SLF4JServiceProvider";register:="ch.qos.logback.classic.spi.LogbackServiceProvider" - ]]> - - - - - - - - - - - diff --git a/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom.sha1 b/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom.sha1 deleted file mode 100644 index 405d65396..000000000 --- a/code/arachne/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fdd499ceb0bb00612813ac5b16c6329d937086c1 \ No newline at end of file diff --git a/code/arachne/ch/qos/logback/logback-core/1.4.14/_remote.repositories b/code/arachne/ch/qos/logback/logback-core/1.4.14/_remote.repositories deleted file mode 100644 index 6c839fe70..000000000 --- a/code/arachne/ch/qos/logback/logback-core/1.4.14/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:49 EDT 2024 -logback-core-1.4.14.pom>central= diff --git a/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom b/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom deleted file mode 100644 index 6bc4ad563..000000000 --- a/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom +++ /dev/null @@ -1,158 +0,0 @@ - - - - 4.0.0 - - - ch.qos.logback - logback-parent - 1.4.14 - - - logback-core - jar - Logback Core Module - logback-core module - - - ch.qos.logback.core - - - - - - org.codehaus.janino - janino - compile - true - - - org.codehaus.janino - commons-compiler - compile - true - - - org.fusesource.jansi - jansi - true - - - - jakarta.mail - jakarta.mail-api - compile - true - - - - org.eclipse.angus - angus-mail - test - - - - jakarta.servlet - jakarta.servlet-api - compile - true - - - - - org.mockito - mockito-core - test - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - - - - --add-opens ch.qos.logback.core/ch.qos.logback.core.testUtil=java.naming - --add-reads ch.qos.logback.core=ALL-UNNAMED - - classes - 8 - - 1 - true - plain - false - - true - - **/All*Test.java - **/PackageTest.java - - **/ConsoleAppenderTest.java - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - bundle-test-jar - package - - test-jar - - - - - - - org.apache.felix - maven-bundle-plugin - - - - bundle-manifest - process-classes - - manifest - - - - - - ch.qos.logback.core* - - ch.qos.logback.core*;version="${range;[==,+);${version_cleanup;${project.version}}}", - jakarta.*;resolution:=optional, - org.xml.*;resolution:=optional, - org.fusesource.jansi;resolution:=optional, - org.codehaus.janino;resolution:=optional, - org.codehaus.commons.compiler;resolution:=optional, - * - - - - - - - - diff --git a/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom.sha1 b/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom.sha1 deleted file mode 100644 index 162685abb..000000000 --- a/code/arachne/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4b0d34f8f4ffa62296b14d0beba3dd92d3df324c \ No newline at end of file diff --git a/code/arachne/ch/qos/logback/logback-parent/1.4.14/_remote.repositories b/code/arachne/ch/qos/logback/logback-parent/1.4.14/_remote.repositories deleted file mode 100644 index 93d36554f..000000000 --- a/code/arachne/ch/qos/logback/logback-parent/1.4.14/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:49 EDT 2024 -logback-parent-1.4.14.pom>central= diff --git a/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom b/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom deleted file mode 100644 index dea689bb1..000000000 --- a/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom +++ /dev/null @@ -1,587 +0,0 @@ - - - - 4.0.0 - - ch.qos.logback - logback-parent - 1.4.14 - pom - - Logback-Parent - logback project pom.xml file - - http://logback.qos.ch - - - QOS.ch - http://www.qos.ch - - 2005 - - - - Eclipse Public License - v 1.0 - http://www.eclipse.org/legal/epl-v10.html - - - - GNU Lesser General Public License - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html - - - - - https://github.com/qos-ch/logback - scm:git@github.com:qos-ch/logback.git - - - - logback-core - logback-core-blackbox - logback-classic - logback-classic-blackbox - logback-access - logback-examples - - - - - 2023-12-01T11:45:00Z - - - 11 - ${jdk.version} - UTF-8 - - 5.9.1 - 5.9.1 - 5.9.1 - 3.23.1 - 2.2 - 2.1.0 - 2.1.0 - 1.0.0 - - 5.0.0 - 2.0.0-alpha-1 - - 3.1.8 - - 2.0.7 - 0.8.1 - 1.1.0 - 10.0.10 - 11.0.12 - 2.15.0 - - - 2.4.0 - - 4.8.0 - 1.12.14 - - 3.10.1 - 3.0.0-M7 - 3.7.1 - 3.0.0-M1 - 3.3.0 - 3.2.0 - 3.1.0 - 3.0 - 3.2.2 - 3.1.1 - 3.0.0-M4 - 3.0.0-M1 - 3.2.0 - 5.1.8 - 3.1.0 - 1.10.12 - 2.7 - - - - - ceki - Ceki Gulcu - ceki@qos.ch - - - - hixi - Joern Huxhorn - huxi@undisclosed.org - - - - - - - org.assertj - assertj-core - ${assertj-core.version} - test - - - org.junit.jupiter - junit-jupiter-api - ${junit-jupiter-api.version} - test - - - - org.junit.jupiter - junit-jupiter-engine - ${junit-jupiter-api.version} - test - - - - org.hamcrest - hamcrest-library - ${hamcrest.version} - test - - - - - - - - - - - ch.qos.logback - logback-core - ${project.version} - - - ch.qos.logback - logback-classic - ${project.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - ch.qos.logback - logback-access - ${project.version} - - - ch.qos.logback - logback-core - ${project.version} - test-jar - - - - - org.codehaus.janino - janino - ${janino.version} - - - org.codehaus.janino - commons-compiler - ${janino.version} - - - - org.fusesource.jansi - jansi - ${jansi.version} - - - - jakarta.mail - jakarta.mail-api - ${jakarta.mail.version} - - - - jakarta.activation - jakarta.activation-api - ${jakarta.activation.version} - - - - org.eclipse.angus - angus-mail - ${jakarta.angus-mail.version} - - - - jakarta.servlet - jakarta.servlet-api - ${jakarta.servlet.version} - - - - com.icegreen - greenmail - ${greenmail.version} - - - - org.dom4j - dom4j - 2.0.3 - - - org.apache.tomcat - tomcat-catalina - ${tomcat.version} - - - org.apache.tomcat - tomcat-coyote - ${tomcat.version} - - - org.eclipse.jetty - jetty-server - ${jetty.version} - - - org.mockito - mockito-core - ${mockito-core.version} - - - - net.bytebuddy - byte-buddy - ${byte-buddy.version} - - - - - - - - - - org.apache.maven.wagon - wagon-ssh - 2.10 - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - - org.apache.maven.plugins - maven-deploy-plugin - ${maven-deploy-plugin.version} - - - org.apache.maven.plugins - maven-install-plugin - ${maven-install-plugin.version} - - - org.apache.maven.plugins - maven-resources-plugin - ${maven-resources-plugin.version} - - - org.apache.maven.plugins - maven-site-plugin - ${maven-site-plugin.version} - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - ${project.build.outputTimestamp} - - true - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - org.apache.maven.plugins - maven-dependency-plugin - ${maven-dependency-plugin.version} - - - org.apache.maven.plugins - maven-release-plugin - ${maven-release-plugin.version} - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.4 - - - org.apache.felix - maven-bundle-plugin - ${maven-bundle-plugin.version} - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - ${jdk.version} - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - test-jar - - - - - - - - - - - - - sonatype-nexus-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${maven-jxr-plugin.version} - - true - target/site/apidocs/ - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - true - true - true - none - - **/module-info.java - - - - http://docs.oracle.com/javase/7/docs/api/ - - - - - - Logback Core - ch.qos.logback.core:ch.qos.logback.core.* - - - - Logback Classic - - ch.qos.logback:ch.qos.logback.classic:ch.qos.logback.classic.* - - - - Logback Access - ch.qos.logback.access:ch.qos.logback.access.* - - - - Examples - chapter*:joran* - - - - - - - - - - - - testSkip - - true - - - - license - - - - com.mycila - license-maven-plugin - ${license-maven-plugin.version} - -
    src/main/licenseHeader.txt
    - false - true - true - - src/**/*.java - src/**/*.groovy - - true - true - - 1999 - - - src/main/javadocHeaders.xml - -
    -
    -
    -
    -
    - - - javadocjar - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - attach-javadocs - - jar - - - - - none - - **/module-info.java - - - - - - - - - sign-artifacts - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - -
    - -
    diff --git a/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom.sha1 b/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom.sha1 deleted file mode 100644 index 347b06bb1..000000000 --- a/code/arachne/ch/qos/logback/logback-parent/1.4.14/logback-parent-1.4.14.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9f4f6d81eaa879854903c20f0d436e7057d400b1 \ No newline at end of file diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/_remote.repositories b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/_remote.repositories deleted file mode 100644 index 999dc61ca..000000000 --- a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:58 EDT 2024 -redshift-jdbc42-no-awssdk-1.2.10.1009.pom>ohdsi= diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom deleted file mode 100644 index 4ab85210b..000000000 --- a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - com.amazon.redshift - redshift-jdbc42-no-awssdk - 1.2.10.1009 - - - com.amazonaws - aws-java-sdk-core - 1.11.118 - runtime - true - - - com.amazonaws - aws-java-sdk-redshift - 1.11.118 - runtime - true - - - com.amazonaws - aws-java-sdk-sts - 1.11.118 - runtime - true - - - diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.lastUpdated b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.lastUpdated deleted file mode 100644 index 4d97c33c7..000000000 --- a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:58 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact com.amazon.redshift\:redshift-jdbc42-no-awssdk\:pom\:1.2.10.1009 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139898115 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139898119 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139898258 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139898383 -https\://repo1.maven.org/maven2/.lastUpdated=1721139897953 diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.sha1 b/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.sha1 deleted file mode 100644 index ee53f2dd1..000000000 --- a/code/arachne/com/amazon/redshift/redshift-jdbc42-no-awssdk/1.2.10.1009/redshift-jdbc42-no-awssdk-1.2.10.1009.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9129ba3dac42065ce12b78db42beaff9a2206a2b \ No newline at end of file diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/_remote.repositories b/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/_remote.repositories deleted file mode 100644 index 4faab3b81..000000000 --- a/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -redshift-jdbc42-2.1.0.29.pom>central= diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom b/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom deleted file mode 100644 index 75a38efaa..000000000 --- a/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom +++ /dev/null @@ -1,134 +0,0 @@ - - - 4.0.0 - com.amazon.redshift - redshift-jdbc42 - 2.1.0.29 - jar - - amazon-redshift-jdbc-driver - Java JDBC 4.2 (JRE 8+) driver for Redshift database - https://github.com/aws/amazon-redshift-jdbc-driver - - - Amazon.com Inc. - https://aws.amazon.com/redshift/ - - - - - Apache License, Version 2.0 - https://github.com/aws/amazon-redshift-jdbc-driver/blob/master/LICENSE - repo - - - - - scm:git:git://github.com/amazon-redshift-jdbc-driver - scm:git:git://github.com/amazon-redshift-jdbc-driver - HEAD - https://github.com/aws/amazon-redshift-jdbc-driver - - - - - iggarish - iggarish@amazon.com - - - bomaksym - bomaksym@amazon.com - - - whbrook - whbrook@amazon.com - - - sjn - sjn@amazon.com - - - bhvkshah - bhvkshah@amazon.com - - - - - - com.amazonaws - aws-java-sdk-core - 1.12.577 - runtime - true - - - com.amazonaws - aws-java-sdk-redshift - 1.12.577 - runtime - true - - - com.amazonaws - aws-java-sdk-redshiftserverless - 1.12.577 - runtime - true - - - com.amazonaws - aws-java-sdk-sts - 1.12.577 - runtime - true - - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 3.0.0-M1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.0.1 - - com.amazon.redshift - 2g - false - false - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - - - - - staging-repo - aws-sonatype - https://aws.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - diff --git a/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom.sha1 b/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom.sha1 deleted file mode 100644 index 52ddbf406..000000000 --- a/code/arachne/com/amazon/redshift/redshift-jdbc42/2.1.0.29/redshift-jdbc42-2.1.0.29.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -46bec8a7e613c3648cc8f4eb16e577ef4de37673 \ No newline at end of file diff --git a/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/_remote.repositories b/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/_remote.repositories deleted file mode 100644 index 7f835719e..000000000 --- a/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:11 EDT 2024 -commonmark-ext-gfm-tables-0.15.2.pom>central= diff --git a/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom b/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom deleted file mode 100644 index 0f6fd4411..000000000 --- a/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - 4.0.0 - - com.atlassian.commonmark - commonmark-parent - 0.15.2 - - - commonmark-ext-gfm-tables - commonmark-java extension for tables - commonmark-java extension for GFM tables using "|" pipes (GitHub Flavored Markdown) - - - - com.atlassian.commonmark - commonmark - - - - com.atlassian.commonmark - commonmark-test-util - test - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - org.commonmark.ext.gfm.tables - - - - - - - - diff --git a/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom.sha1 b/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom.sha1 deleted file mode 100644 index 0c2971a86..000000000 --- a/code/arachne/com/atlassian/commonmark/commonmark-ext-gfm-tables/0.15.2/commonmark-ext-gfm-tables-0.15.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -61df569a130db89e5425742468b2e0e39a706e34 \ No newline at end of file diff --git a/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/_remote.repositories b/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/_remote.repositories deleted file mode 100644 index 66ccb2eec..000000000 --- a/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:11 EDT 2024 -commonmark-parent-0.15.2.pom>central= diff --git a/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom b/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom deleted file mode 100644 index 7f3adec72..000000000 --- a/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom +++ /dev/null @@ -1,214 +0,0 @@ - - - 4.0.0 - - com.atlassian.pom - central-pom - 5.0.13 - - - pom - - com.atlassian.commonmark - commonmark-parent - 0.15.2 - commonmark-java parent - - Java implementation of CommonMark, a specification of the Markdown format for turning plain text into formatted - text. - - https://github.com/atlassian/commonmark-java - - - commonmark - commonmark-ext-autolink - commonmark-ext-gfm-strikethrough - commonmark-ext-gfm-tables - commonmark-ext-heading-anchor - commonmark-ext-image-attributes - commonmark-ext-ins - commonmark-ext-task-list-items - commonmark-ext-yaml-front-matter - commonmark-integration-test - commonmark-test-util - - - - UTF-8 - ${project.basedir}/../commonmark/target/apidocs/ - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 7 - 7 - - - - org.apache.maven.plugins - maven-jar-plugin - 3.0.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - - *.internal,*.internal.* - - false - - - http://static.javadoc.io/com.atlassian.commonmark/commonmark/${project.version}/ - ${commonmark.javadoc.location} - - - - - - org.apache.maven.plugins - maven-release-plugin - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.1 - - - - - - - - - - com.atlassian.commonmark - commonmark - 0.15.2 - - - com.atlassian.commonmark - commonmark-ext-autolink - 0.15.2 - - - com.atlassian.commonmark - commonmark-ext-image-attributes - 0.15.2 - - - com.atlassian.commonmark - commonmark-ext-ins - 0.15.2 - - - com.atlassian.commonmark - commonmark-ext-gfm-strikethrough - 0.15.2 - - - com.atlassian.commonmark - commonmark-ext-gfm-tables - 0.15.2 - - - com.atlassian.commonmark - commonmark-ext-heading-anchor - 0.15.2 - - - com.atlassian.commonmark - commonmark-ext-task-list-items - 0.15.2 - - - com.atlassian.commonmark - commonmark-ext-yaml-front-matter - 0.15.2 - - - com.atlassian.commonmark - commonmark-test-util - 0.15.2 - - - - - junit - junit - 4.12 - - - org.openjdk.jmh - jmh-core - 1.17.5 - - - org.openjdk.jmh - jmh-generator-annprocess - 1.17.5 - - - - - - - coverage - - - - org.jacoco - jacoco-maven-plugin - 0.7.9 - - - - org/commonmark/spec/* - org/commonmark/test/* - - - - - prepare-agent - - prepare-agent - - - - - - - - - - - - BSD 2-Clause License - http://opensource.org/licenses/BSD-2-Clause - repo - - - - - - Robin Stocker - rstocker@atlassian.com - Atlassian - https://www.atlassian.com/ - - - - - scm:git:git@github.com:atlassian/commonmark-java.git - - scm:git:[fetch=]git@github.com:atlassian/commonmark-java.git[push=]git@bitbucket.org:atlassian/commonmark-java.git - https://github.com/atlassian/commonmark-java - commonmark-parent-0.15.2 - - - diff --git a/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom.sha1 b/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom.sha1 deleted file mode 100644 index 460d880b6..000000000 --- a/code/arachne/com/atlassian/commonmark/commonmark-parent/0.15.2/commonmark-parent-0.15.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -849524c56e2a9a6ed0e49bbab5d2903d31cef550 \ No newline at end of file diff --git a/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/_remote.repositories b/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/_remote.repositories deleted file mode 100644 index 94c9627f3..000000000 --- a/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:11 EDT 2024 -commonmark-0.15.2.pom>central= diff --git a/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom b/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom deleted file mode 100644 index 1a9f1385e..000000000 --- a/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom +++ /dev/null @@ -1,73 +0,0 @@ - - - 4.0.0 - - com.atlassian.commonmark - commonmark-parent - 0.15.2 - - - commonmark - commonmark-java core - Core of commonmark-java (implementation of CommonMark for parsing markdown and rendering to HTML) - - - - com.atlassian.commonmark - commonmark-test-util - test - - - org.openjdk.jmh - jmh-core - test - - - org.openjdk.jmh - jmh-generator-annprocess - test - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - org.commonmark - - - - - - - - - - benchmark - - exec:exec - - - org.codehaus.mojo - exec-maven-plugin - 1.5.0 - - java - test - - -classpath - - org.commonmark.test.SpecBenchmark - - - - - - - - - diff --git a/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom.sha1 b/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom.sha1 deleted file mode 100644 index c765e0b29..000000000 --- a/code/arachne/com/atlassian/commonmark/commonmark/0.15.2/commonmark-0.15.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9cd52149b57ee233c6c9afb36928fb95ee168356 \ No newline at end of file diff --git a/code/arachne/com/atlassian/pom/base-pom/5.0.13/_remote.repositories b/code/arachne/com/atlassian/pom/base-pom/5.0.13/_remote.repositories deleted file mode 100644 index b66a3e333..000000000 --- a/code/arachne/com/atlassian/pom/base-pom/5.0.13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:11 EDT 2024 -base-pom-5.0.13.pom>central= diff --git a/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom b/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom deleted file mode 100644 index 19fbdda7e..000000000 --- a/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom +++ /dev/null @@ -1,691 +0,0 @@ - - - 4.0.0 - - com.atlassian.pom - base-pom - 5.0.13 - pom - - Atlassian Base POM - Base POM for Atlassian projects - https://www.atlassian.com/ - - - Atlassian Customer Agreement - https://www.atlassian.com/legal/customer-agreement - repo - - - - - - charlie - Charlie - devrel@atlassian.com - - - - Atlassian - https://www.atlassian.com/ - - - - 3.0.5 - - - - scm:git:ssh://git@bitbucket.org/atlassian/parent-poms.git - scm:git:ssh://git@bitbucket.org/atlassian/parent-poms.git - https://bitbucket.org/atlassian/parent-poms - HEAD - - - - JIRA - https://jira.atlassian.com/browse/ABPOM - - - Bamboo - https://staging-bamboo.internal.atlassian.com/browse/OTHER-BASEPOM - - - - maven-atlassian-com - Atlassian Private Repository - https://packages.atlassian.com/maven/central - - - maven-atlassian-com - Atlassian Private Snapshot Repository - https://packages.atlassian.com/maven/central-snapshot - - - - - - UTF-8 - UTF-8 - - - 1.8 - 1.8 - 3.1.5 - - 3.0.0-M1 - 2.5 - 2.9 - - - true - - true - - - -Xdoclint:all -Xdoclint:-missing - - - 6.9 - - false - maven-atlassian-com - maven-staging-local - maven-central-local - - true - - - - - - org.apache.maven.wagon - wagon-ssh-external - 1.0 - - - - - org.apache.maven.plugins - maven-deploy-plugin - false - - - org.apache.maven.plugins - maven-enforcer-plugin - - - com.atlassian.maven.enforcer - maven-enforcer-rules - 1.4.0 - - - - - enforce-build-environment - compile - - enforce - - - - - 1.8 - - - [3.2.5,) - - - Best Practice is to always define plugin versions! - - - - - - - - ban-milestones-and-release-candidates - - compile - - enforce - - - - - Milestone and Release Candidate dependencies are not allowed in releases. - - - (?i)^.*-(rc|m)-?[0-9]+(-.+)?$ - - - (?i)^.*-m-?[0-9]+(-.+)?$ - ${banVersionDeps.noFailSnapshots} - - - false - - - true - - - ${failOnMilestoneOrReleaseCandidateDeps} - - - - - - org.apache.maven.plugins - maven-resources-plugin - - 2.6 - - - copy-license - process-sources - - copy-resources - - - ${project.build.outputDirectory}/META-INF - true - - - ${user.dir} - - LICENSE.txt - NOTICE.txt - license.txt - notice.txt - - true - - - - - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-failsafe-plugin - - 2.18.1 - - - org.apache.maven.plugins - maven-resources-plugin - - 2.6 - - UTF-8 - - tif - tiff - pdf - swf - - - - - org.apache.maven.plugins - maven-site-plugin - 3.6 - - - org.apache.maven.plugins - maven-verifier-plugin - 1.1 - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven.javadoc.plugin.version} - - ${javadoc.additional.params} - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.7.0 - - - maven-surefire-plugin - 2.20.1 - - - **/*$* - - - - - - - - org.apache.maven.plugins - maven-ear-plugin - 2.10.1 - - - org.apache.maven.plugins - maven-jar-plugin - 3.0.2 - - - org.apache.maven.plugins - maven-rar-plugin - 2.4 - - - org.apache.maven.plugins - maven-war-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-shade-plugin - 3.0.0 - - - - - - org.codehaus.cargo - cargo-maven2-plugin - 1.6.3 - - ${maven.test.skip} - - - - - org.mortbay.jetty - jetty-maven-plugin - 8.1.16.v20140903 - - - org.eclipse.jetty - jetty-maven-plugin - 9.4.6.v20170531 - - - - - - com.atlassian.maven.plugins - maven-upload-plugin - 1.1 - - - com.atlassian.maven.plugins - maven-atlassian-source-distribution-plugin - 4.2.6 - - - org.apache.maven.plugins - maven-ant-plugin - 2.2 - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - org.apache.maven.plugins - maven-archetype-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M1 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - org.apache.maven.plugins - maven-invoker-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-patch-plugin - 1.2 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.5 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - true - true - true - release - true - clean install - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - 3 - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.5 - - - org.apache.maven.plugins - maven-repository-plugin - 2.4 - - - org.apache.maven.plugins - maven-scm-plugin - 1.9.5 - - - org.apache.felix - maven-bundle-plugin - 3.3.0 - - - com.atlassian.maven.plugins - maven-atlassian-buildutils-plugin - 0.2 - - - net.alchim31.maven - yuicompressor-maven-plugin - 1.5.1 - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${maven.jxr.plugin.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.20.1 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.2 - - true - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.17 - - - com.puppycrawl.tools - checkstyle - ${checkstyle.version} - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven.project-info-reports.plugin.version} - - - - - com.atlassian.maven.plugins - license-maven-plugin - 0.39 - - - - com.atlassian.maven.plugins - artifactory-staging-maven-plugin - 1.0.4 - true - - ${artifactory.staging.skip} - ${artifactory.staging.serverId} - ${artifactory.staging.repo} - ${artifactory.target.repo} - https://packages.atlassian.com - - - - staging - validate - - staging - - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - false - - - sign-artifacts - verify - - sign - - - - - - - - - checkstyle - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - ${project.build.directory}/codestyle - - com.atlassian.codestyle:${atlassian.codestyle}:jar - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - verify - verify - - check - - - ${project.build.directory}/codestyle/checkstyle-rules.xml - configdir=${project.build.directory}/codestyle - - - - - - - - - sox - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-reports-plugin} - - - - issue-tracking - license - index - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven.javadoc.plugin.version} - - - - diff --git a/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom.sha1 b/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom.sha1 deleted file mode 100644 index b3e433c21..000000000 --- a/code/arachne/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5a79940efff632b0bfc541be63c5c23a9cc7be86 \ No newline at end of file diff --git a/code/arachne/com/atlassian/pom/central-pom/5.0.13/_remote.repositories b/code/arachne/com/atlassian/pom/central-pom/5.0.13/_remote.repositories deleted file mode 100644 index d65f6e4ba..000000000 --- a/code/arachne/com/atlassian/pom/central-pom/5.0.13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:11 EDT 2024 -central-pom-5.0.13.pom>central= diff --git a/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom b/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom deleted file mode 100644 index eaa726d73..000000000 --- a/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom +++ /dev/null @@ -1,88 +0,0 @@ - - - 4.0.0 - - - com.atlassian.pom - base-pom - 5.0.13 - ../base-pom - - - central-pom - pom - - Atlassian Central POM - - - - maven-atlassian-com - Atlassian Central Repository - https://packages.atlassian.com/maven/central - - - maven-atlassian-com - Atlassian Central Snapshot Repository - https://packages.atlassian.com/maven/central-snapshot - - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - JIRA - https://jira.atlassian.com/browse/APUBPOM - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${maven.jxr.plugin.version} - - - - - - maven-central-local - - - - - - - release - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.maven.plugins - maven-source-plugin - - - - - - - diff --git a/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom.sha1 b/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom.sha1 deleted file mode 100644 index ddfe47944..000000000 --- a/code/arachne/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0b42bf0dec16e8519d299f2b66b1481ffac1cd59 \ No newline at end of file diff --git a/code/arachne/com/cloudbees/cloudbees-oss-parent/8/_remote.repositories b/code/arachne/com/cloudbees/cloudbees-oss-parent/8/_remote.repositories deleted file mode 100644 index 7ff77ee1b..000000000 --- a/code/arachne/com/cloudbees/cloudbees-oss-parent/8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:13 EDT 2024 -cloudbees-oss-parent-8.pom>central= diff --git a/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom b/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom deleted file mode 100644 index a70dc87ea..000000000 --- a/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom +++ /dev/null @@ -1,359 +0,0 @@ - - - - - 4.0.0 - - com.cloudbees - cloudbees-oss-parent - 8 - pom - - cloudbees-oss-parent - The CloudBees OSS Parent Project - https://github.com/cloudbees/cloudbees-oss-parent - 2011 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - stephenc - Stephen Connolly - - - - - - - - scm:git:git://github.com/cloudbees/cloudbees-oss-parent.git - scm:git:ssh://git@github.com/cloudbees/cloudbees-oss-parent.git - http://github.com/cloudbees/cloudbees-oss-parent/tree/master/ - cloudbees-oss-parent-8 - - - - - - cloudbees-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - cloudbees-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - UTF-8 - UTF-8 - UTF-8 - https://oss.sonatype.org/content/repositories/snapshots/ - - git - 1.9.4 - - - - - - cloudbees-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - false - - - true - - - - - - - - - com.google.code.findbugs - annotations - 3.0.0 - provided - true - - - - - - - - - maven-assembly-plugin - 2.5.5 - - - maven-clean-plugin - 2.6.1 - - - maven-compiler-plugin - 3.3 - - - maven-dependency-plugin - 2.10 - - - maven-deploy-plugin - 2.8.2 - - - maven-enforcer-plugin - 1.4 - - - maven-failsafe-plugin - 2.18.1 - - - maven-gpg-plugin - 1.6 - - - maven-install-plugin - 2.5.2 - - - maven-jar-plugin - 2.6 - - - maven-javadoc-plugin - 2.10.3 - - - maven-resources-plugin - 2.7 - - - maven-release-plugin - 2.5.2 - - forked-path - false - -P+cloudbees-oss-release ${arguments} - - - - maven-site-plugin - 3.4 - - - maven-source-plugin - 2.4 - - - maven-surefire-plugin - 2.18.1 - - - maven-war-plugin - 2.6 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.1 - - - findbugs - - check - - verify - - - - true - false - - - - - - - - - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [3.0,) - Maven 2.x is end of life - - - (,3.0),[3.0.4,) - Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin. - - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.5 - true - - cloudbees-nexus-snapshots - https://oss.sonatype.org/ - true - - - - - - - - - - cloudbees-oss-release - - - - maven-source-plugin - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - jgit-scm-provider - - - git.provider - jgit - - - - - - maven-release-plugin - - - ${git.provider} - - - - - org.apache.maven.scm - maven-scm-provider-jgit - ${maven-scm.version} - - - - - maven-scm-plugin - ${maven-scm.version} - - - ${git.provider} - - - - - org.apache.maven.scm - maven-scm-provider-jgit - ${maven-scm.version} - - - - - - - - findbugs-exclusion-file - - - ${basedir}/src/findbugs/excludesFilter.xml - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - - - findbugs - - ${project.basedir}/src/findbugs/excludesFilter.xml - - - - - - - - - - diff --git a/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom.sha1 b/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom.sha1 deleted file mode 100644 index 374bddd31..000000000 --- a/code/arachne/com/cloudbees/cloudbees-oss-parent/8/cloudbees-oss-parent-8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fd0627f1471102927c3533000f2b1bedcefaf7bb \ No newline at end of file diff --git a/code/arachne/com/cloudbees/syslog-java-client/1.1.7/_remote.repositories b/code/arachne/com/cloudbees/syslog-java-client/1.1.7/_remote.repositories deleted file mode 100644 index 419687562..000000000 --- a/code/arachne/com/cloudbees/syslog-java-client/1.1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:13 EDT 2024 -syslog-java-client-1.1.7.pom>central= diff --git a/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom b/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom deleted file mode 100644 index c74ffb56c..000000000 --- a/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom +++ /dev/null @@ -1,111 +0,0 @@ - - - 4.0.0 - - - com.cloudbees - cloudbees-oss-parent - 8 - - - syslog-java-client - bundle - 1.1.7 - - syslog-java-client - Syslog Java Client - https://github.com/CloudBees-community/syslog-java-client - 2014 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Cyrille Le Clerc - cleclerc@cloudbees.com - - - - - 3.5.0 - - - - scm:git:git://github.com/CloudBees-community/syslog-java-client.git - scm:git:git@github.com:CloudBees-community/syslog-java-client.git - https://github.com/CloudBees-community/syslog-java-client - syslog-java-client-1.1.7 - - - - com.github.spotbugs - spotbugs-annotations - 3.1.10 - true - - - junit - junit - 4.12 - test - - - org.hamcrest - hamcrest-all - 1.3 - test - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - 1.7 - 1.7 - - - - org.apache.felix - maven-bundle-plugin - 4.1.0 - true - - - com.github.spotbugs - spotbugs-maven-plugin - 3.1.10 - - - analyze-compile - compile - - check - - - - - - - diff --git a/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom.sha1 b/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom.sha1 deleted file mode 100644 index 5ee263624..000000000 --- a/code/arachne/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4c9098483d6a41c77013837bcc64dd7563bce3a1 \ No newline at end of file diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/_remote.repositories b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/_remote.repositories deleted file mode 100644 index 84b1fb018..000000000 --- a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:10 EDT 2024 -spring-data-jpa-entity-graph-parent-3.2.2.pom>central= diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom deleted file mode 100644 index bc971b774..000000000 --- a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom +++ /dev/null @@ -1,347 +0,0 @@ - - - 4.0.0 - - Spring Data JPA EntityGraph Parent - A Spring Data JPA extension allowing full usage of JPA EntityGraph on repositories - https://github.com/Cosium/spring-data-jpa-entity-graph - - com.cosium.spring.data - spring-data-jpa-entity-graph-parent - 3.2.2 - pom - - - core - generator - - - - 17 - - 3.2.1 - 5.0.0 - - 2.7.3 - 1.3.0 - 6.1.2 - 6.3.1.Final - 2.7.2 - 3.24.2 - 1.4.14 - 5.10.1 - 1.1.1 - 5.1 - - - - - - jakarta.persistence - jakarta.persistence-api - 3.1.0 - - - org.springframework.data - spring-data-jpa - ${spring.data.jpa} - - - - com.querydsl - querydsl-apt - ${querydsl} - jakarta - - - - org.hibernate.orm - hibernate-jpamodelgen - ${hibernate.version} - - - org.hibernate.orm - hibernate-core - ${hibernate.version} - - - - com.querydsl - querydsl-jpa - ${querydsl} - jakarta - - - - org.hsqldb - hsqldb - ${hsqldb.version} - - - - org.junit - junit-bom - ${junit.version} - pom - import - - - com.github.springtestdbunit - spring-test-dbunit - ${spring-test-dbunit} - - - org.springframework - spring-test - ${spring.framework.version} - - - org.dbunit - dbunit - ${dbunit} - - - org.assertj - assertj-core - ${assertj} - - - ch.qos.logback - logback-classic - ${logback} - - - - com.google.auto.service - auto-service - ${auto-service.version} - - - - com.squareup - javapoet - 1.13.0 - - - - - - - - com.cosium.code - git-code-format-maven-plugin - ${git-code-format-maven-plugin.version} - - - - install-formatter-hook - - install-hooks - - - - - validate-code-format - - validate-code-format - - - - - - - com.cosium.code - google-java-format - ${git-code-format-maven-plugin.version} - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - true - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - - attach-javadocs - - jar - - - - - false - -Xdoclint:none - - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.3 - - false - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - false - true - true - true - release - deploy - @{project.version} - - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - - prepare-agent - - - - report - test - - report - - - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - true - - ossrh - https://oss.sonatype.org/ - true - true - - - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - central - central - https://repo1.maven.org/maven2 - - - spring-snapshot-local - spring-snapshot-local - https://repo.spring.io/libs-snapshot-local - - - spring-milestone-local - spring-milestone-local - https://repo.spring.io/libs-milestone-local - - - - - scm:git:https://github.com/Cosium/spring-data-jpa-entity-graph - scm:git:https://github.com/Cosium/spring-data-jpa-entity-graph - https://github.com/Cosium/spring-data-jpa-entity-graph - 3.2.2 - - - - Cosium - https://www.cosium.com - - - - - reda-alaoui - Réda Housni Alaoui - reda-alaoui@hey.com - https://github.com/reda-alaoui - - - - - - MIT License - https://www.opensource.org/licenses/mit-license.php - repo - - - - diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom.sha1 b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom.sha1 deleted file mode 100644 index 77135eabf..000000000 --- a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph-parent/3.2.2/spring-data-jpa-entity-graph-parent-3.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -37ebf120b8c69f8227e8875948e44bd5b609b8a7 \ No newline at end of file diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/_remote.repositories b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/_remote.repositories deleted file mode 100644 index def25cf65..000000000 --- a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:10 EDT 2024 -spring-data-jpa-entity-graph-3.2.2.pom>central= diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom deleted file mode 100644 index 02ca2a575..000000000 --- a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom +++ /dev/null @@ -1,124 +0,0 @@ - - - 4.0.0 - - - com.cosium.spring.data - spring-data-jpa-entity-graph-parent - 3.2.2 - - - Spring Data JPA EntityGraph - spring-data-jpa-entity-graph - - - - - javax.xml.bind - jaxb-api - 2.4.0-b180830.0359 - provided - - - - org.springframework.data - spring-data-jpa - provided - - - - - javax.annotation - javax.annotation-api - 1.3.2 - provided - - - - com.querydsl - querydsl-apt - jakarta - provided - - - - org.hibernate.orm - hibernate-jpamodelgen - provided - - - - ${project.groupId} - spring-data-jpa-entity-graph-generator - ${project.version} - provided - - - - com.querydsl - querydsl-jpa - jakarta - true - - - - - org.hsqldb - hsqldb - test - - - org.hibernate.orm - hibernate-core - test - - - org.junit.jupiter - junit-jupiter - test - - - com.github.springtestdbunit - spring-test-dbunit - test - - - org.springframework - spring-test - test - - - org.dbunit - dbunit - test - - - org.assertj - assertj-core - test - - - ch.qos.logback - logback-classic - test - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - com.cosium.spring.data.jpa.entity.graph.core - - - - - - - - diff --git a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom.sha1 b/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom.sha1 deleted file mode 100644 index c6aeec518..000000000 --- a/code/arachne/com/cosium/spring/data/spring-data-jpa-entity-graph/3.2.2/spring-data-jpa-entity-graph-3.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d465521699f4bb70ed880639af5c8303a2e15202 \ No newline at end of file diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/_remote.repositories b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/_remote.repositories deleted file mode 100644 index ea3f4d3d5..000000000 --- a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:23 EDT 2024 -java-driver-bom-4.17.0.pom>ohdsi= diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom deleted file mode 100644 index 069629581..000000000 --- a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom +++ /dev/null @@ -1,110 +0,0 @@ - - - - 4.0.0 - com.datastax.oss - java-driver-bom - 4.17.0 - pom - DataStax Java driver for Apache Cassandra(R) - Bill Of Materials - A driver for Apache Cassandra(R) 2.1+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's native protocol versions 3 and above. - https://github.com/datastax/java-driver/java-driver-bom - 2017 - - - Apache 2 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - Apache License Version 2.0 - - - - - Various - DataStax - - - - scm:git:git@github.com:datastax/java-driver.git/java-driver-bom - scm:git:git@github.com:datastax/java-driver.git/java-driver-bom - 4.17.0 - https://github.com/datastax/java-driver/java-driver-bom - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - com.datastax.oss - java-driver-core - 4.17.0 - - - com.datastax.oss - java-driver-core-shaded - 4.17.0 - - - com.datastax.oss - java-driver-mapper-processor - 4.17.0 - - - com.datastax.oss - java-driver-mapper-runtime - 4.17.0 - - - com.datastax.oss - java-driver-query-builder - 4.17.0 - - - com.datastax.oss - java-driver-test-infra - 4.17.0 - - - com.datastax.oss - java-driver-metrics-micrometer - 4.17.0 - - - com.datastax.oss - java-driver-metrics-microprofile - 4.17.0 - - - com.datastax.oss - native-protocol - 1.5.1 - - - com.datastax.oss - java-driver-shaded-guava - 25.1-jre-graal-sub-1 - - - - diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.lastUpdated b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.lastUpdated deleted file mode 100644 index ae559d5b0..000000000 --- a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:23 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact com.datastax.oss\:java-driver-bom\:pom\:4.17.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139802478 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139802596 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139802937 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139803076 diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.sha1 b/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.sha1 deleted file mode 100644 index 8e0bd98b6..000000000 --- a/code/arachne/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -72cb0e156be49b4bb64e6c28e1483fae594c0da6 \ No newline at end of file diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/_remote.repositories b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/_remote.repositories deleted file mode 100644 index 357bcb2b0..000000000 --- a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:45 EDT 2024 -java-driver-bom-4.6.1.pom>local-repo= diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom deleted file mode 100644 index 3af47cd60..000000000 --- a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom +++ /dev/null @@ -1,100 +0,0 @@ - - - - 4.0.0 - com.datastax.oss - java-driver-bom - 4.6.1 - pom - DataStax Java driver for Apache Cassandra(R) - Bill Of Materials - A driver for Apache Cassandra(R) 2.1+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's native protocol versions 3 and above. - https://github.com/datastax/java-driver/java-driver-bom - 2017 - - - Apache 2 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - Apache License Version 2.0 - - - - - Various - DataStax - - - - scm:git:git@github.com:datastax/java-driver.git/java-driver-bom - scm:git:git@github.com:datastax/java-driver.git/java-driver-bom - 4.6.1 - https://github.com/datastax/java-driver/java-driver-bom - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - com.datastax.oss - java-driver-core - 4.6.1 - - - com.datastax.oss - java-driver-core-shaded - 4.6.1 - - - com.datastax.oss - java-driver-mapper-processor - 4.6.1 - - - com.datastax.oss - java-driver-mapper-runtime - 4.6.1 - - - com.datastax.oss - java-driver-query-builder - 4.6.1 - - - com.datastax.oss - java-driver-test-infra - 4.6.1 - - - com.datastax.oss - native-protocol - 1.4.10 - - - com.datastax.oss - java-driver-shaded-guava - 25.1-jre - - - - diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.lastUpdated b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.lastUpdated deleted file mode 100644 index 2c8e69e55..000000000 --- a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:45 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139885715 -http\://0.0.0.0/.error=Could not transfer artifact com.datastax.oss\:java-driver-bom\:pom\:4.6.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139885142 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139885148 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139885289 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139885664 diff --git a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.sha1 b/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.sha1 deleted file mode 100644 index cc2f512a3..000000000 --- a/code/arachne/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c70bdb9721ecbd3b3f33ad85db5ddbfdf0b313be \ No newline at end of file diff --git a/code/arachne/com/fasterxml/classmate/1.6.0/_remote.repositories b/code/arachne/com/fasterxml/classmate/1.6.0/_remote.repositories deleted file mode 100644 index 8d7db4ace..000000000 --- a/code/arachne/com/fasterxml/classmate/1.6.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:57 EDT 2024 -classmate-1.6.0.pom>central= diff --git a/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom b/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom deleted file mode 100644 index 4fa8783c7..000000000 --- a/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom +++ /dev/null @@ -1,187 +0,0 @@ - - 4.0.0 - - com.fasterxml - oss-parent - 55 - - classmate - ClassMate - 1.6.0 - bundle - Library for introspecting types with full generic information - including resolving of field and method types. - - https://github.com/FasterXML/java-classmate - - scm:git:git@github.com:FasterXML/java-classmate.git - scm:git:git@github.com:FasterXML/java-classmate.git - https://github.com/FasterXML/java-classmate - classmate-1.6.0 - - - - tatu - Tatu Saloranta - tatu@fasterxml.com - - - blangel - Brian Langel - blangel@ocheyedan.net - - - - - UTF-8 - 1.6 - - com.fasterxml.classmate;version=${project.version}, -com.fasterxml.classmate.*;version=${project.version} - - com.fasterxml.classmate.util.* - - com.fasterxml.classmate - - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - fasterxml.com - https://fasterxml.com - - - - - - junit - junit - ${version.junit} - test - - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - sonatype-nexus-staging - https://oss.sonatype.org/ - - b34f19b9cc6224 - - - - - - org.apache.felix - maven-bundle-plugin - - - ${jdk.module.name} - - - - - - maven-compiler-plugin - - ${version.jdk} - ${version.jdk} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - ${version.jdk} - ${version.jdk} - UTF-8 - - https://docs.oracle.com/javase/8/docs/api/ - - - - - attach-javadocs - verify - - jar - - - - - - - org.moditect - moditect-maven-plugin - - - add-module-infos - package - - add-module-info - - - true - - src/moditect/module-info.java - - - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom.sha1 b/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom.sha1 deleted file mode 100644 index 9892ed264..000000000 --- a/code/arachne/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a49f9e6eaa5cd96d7b9bb6c5bed86537c1d463ea \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/_remote.repositories deleted file mode 100644 index bef163af2..000000000 --- a/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:47 EDT 2024 -jackson-annotations-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom b/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom deleted file mode 100644 index 113ba6f98..000000000 --- a/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson - - jackson-parent - 2.15 - - - com.fasterxml.jackson.core - jackson-annotations - Jackson-annotations - 2.15.4 - jar - Core annotations used for value types, used by Jackson data binding package. - - 2008 - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - https://github.com/FasterXML/jackson - - scm:git:git@github.com:FasterXML/jackson-annotations.git - scm:git:git@github.com:FasterXML/jackson-annotations.git - https://github.com/FasterXML/jackson-annotations - jackson-annotations-2.15.4 - - - - - 1.6 - 1.6 - - 1.6 - 1.6 - - com.fasterxml.jackson.annotation.*;version=${project.version} - - - 2024-02-15T16:58:49Z - - - - - junit - junit - ${version.junit} - test - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - - - - - - - - org.moditect - moditect-maven-plugin - - - add-module-infos - package - - add-module-info - - - true - - src/moditect/module-info.java - - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - true - - sonatype-nexus-staging - https://oss.sonatype.org/ - b34f19b9cc6224 - - - - - - de.jjohannes - gradle-module-metadata-maven-plugin - 0.4.0 - - - - gmm - - - - - - - com.fasterxml.jackson - jackson-bom - ${project.version} - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-resource - generate-resources - - add-resource - - - - - ${project.basedir} - META-INF - - LICENSE - - - - - - - - - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom.sha1 deleted file mode 100644 index 9b258d2dc..000000000 --- a/code/arachne/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -657793cf31fc48360c540b3152e2cc2b63bba8ac \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/_remote.repositories deleted file mode 100644 index aad39b038..000000000 --- a/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:47 EDT 2024 -jackson-core-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom b/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom deleted file mode 100644 index 3a00185fd..000000000 --- a/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom +++ /dev/null @@ -1,250 +0,0 @@ - - - - jackson-base - com.fasterxml.jackson - 2.15.4 - ../pom.xml/pom.xml - - - - - - - 4.0.0 - com.fasterxml.jackson.core - jackson-core - Jackson-core - 2.15.4 - Core Jackson processing abstractions (aka Streaming API), implementation for JSON - https://github.com/FasterXML/jackson-core - 2008 - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:git@github.com:FasterXML/jackson-core.git - scm:git:git@github.com:FasterXML/jackson-core.git - jackson-core-2.15.4 - https://github.com/FasterXML/jackson-core - - - - - org.jacoco - jacoco-maven-plugin - - - - prepare-agent - - - - report - test - - report - - - - - - maven-enforcer-plugin - - - enforce-properties - validate - - enforce - - - - - - maven-site-plugin - - - maven-surefire-plugin - ${version.plugin.surefire} - - ${surefire.redirectTestOutputToFile} - - **/failing/**/*.java - - - - - com.google.code.maven-replacer-plugin - replacer - - - org.moditect - moditect-maven-plugin - - - org.codehaus.mojo - build-helper-maven-plugin - - - maven-shade-plugin - 3.5.1 - - - shade-jackson-core - package - - shade - - - - - ch.randelshofer:fastdoubleparser - - META-INF/versions/**/module-info.* - META-INF/versions/22/**/*.* - - - - - - ch/randelshofer/fastdoubleparser - com/fasterxml/jackson/core/io/doubleparser - - - META-INF/LICENSE - META-INF/FastDoubleParser-LICENSE - - - META-INF/NOTICE - META-INF/FastDoubleParser-NOTICE - - - META-INF/jackson-core-LICENSE - META-INF/LICENSE - - - META-INF/jackson-core-NOTICE - META-INF/NOTICE - - - META-INF/versions/11/ch/randelshofer/fastdoubleparser - META-INF/versions/11/com/fasterxml/jackson/core/io/doubleparser - - - META-INF/versions/17/ch/randelshofer/fastdoubleparser - META-INF/versions/17/com/fasterxml/jackson/core/io/doubleparser - - - META-INF/versions/21/ch/randelshofer/fastdoubleparser - META-INF/versions/21/com/fasterxml/jackson/core/io/doubleparser - - - - - - - true - true - true - - - - de.jjohannes - gradle-module-metadata-maven-plugin - - - - ch.randelshofer - fastdoubleparser - - - - - - maven-jar-plugin - - - - true - - - - - - io.github.floverfelt - find-and-replace-maven-plugin - 1.1.0 - - - exec - package - - find-and-replace - - - file-contents - ${basedir} - <modelVersion>4.0.0</modelVersion> - dependency-reduced-pom.xml - <!-- This module was also published with a richer model, Gradle metadata, --> - <!-- which should be used instead. Do not delete the following line which --> - <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> - <!-- that they should prefer consuming it instead. --> - <!-- do_not_remove: published-with-gradle-metadata --> - <modelVersion>4.0.0</modelVersion> - false - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.22 - - - com.toasttab.android - gummy-bears-api-${version.android.sdk} - ${version.android.sdk.signature} - - - - - - - - - false - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - - - - org.junit - junit-bom - 5.9.2 - pom - import - - - - - 26 - com/fasterxml/jackson/core/json - !ch.randelshofer.fastdoubleparser, * - 0.5.1 - ${project.groupId}.json - com.fasterxml.jackson.core;version=${project.version}, -com.fasterxml.jackson.core.*;version=${project.version} - 2024-02-15T17:07:40Z - - diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom.sha1 deleted file mode 100644 index d050c60bc..000000000 --- a/code/arachne/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -88cfb3d9dc12de7c26caccc26bcec9d7495d1779 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/_remote.repositories deleted file mode 100644 index b33ed7410..000000000 --- a/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:46 EDT 2024 -jackson-databind-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom b/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom deleted file mode 100644 index a6f73db28..000000000 --- a/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom +++ /dev/null @@ -1,500 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson - jackson-base - 2.15.4 - - com.fasterxml.jackson.core - jackson-databind - 2.15.4 - jackson-databind - jar - General data-binding functionality for Jackson: works on core streaming API - https://github.com/FasterXML/jackson - 2008 - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:git@github.com:FasterXML/jackson-databind.git - scm:git:git@github.com:FasterXML/jackson-databind.git - https://github.com/FasterXML/jackson-databind - jackson-databind-2.15.4 - - - - - 1.8 - 1.8 - - - 26 - 0.5.1 - - - com.fasterxml.jackson.databind.*;version=${project.version} - - - org.w3c.dom.bootstrap;resolution:=optional, - * - - - - com/fasterxml/jackson/databind/cfg - com.fasterxml.jackson.databind.cfg - - 2.0.9 - - - 2024-02-15T17:34:22Z - - - - - - com.fasterxml.jackson.core - jackson-annotations - - ${jackson.version.annotations} - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version.core} - - - - - org.junit.vintage - junit-vintage-engine - test - - - org.junit.jupiter - junit-jupiter - test - - - org.powermock - powermock-core - ${version.powermock} - test - - - org.powermock - powermock-module-junit4 - ${version.powermock} - test - - - org.powermock - powermock-api-mockito2 - ${version.powermock} - test - - - com.google.guava - guava-testlib - 31.1-jre - test - - - - javax.measure - jsr-275 - 0.9.1 - test - - - - org.openjdk.jol - jol-core - 0.16 - test - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - - - - - org.junit - junit-bom - 5.9.2 - pom - import - - - - - - - - org.jacoco - jacoco-maven-plugin - - - - prepare-agent - - - - - report - test - - report - - - - - - - - maven-enforcer-plugin - - - enforce-properties - validate - enforce - - - - - - org.apache.maven.plugins - ${version.plugin.surefire} - maven-surefire-plugin - - - javax.measure:jsr-275 - - - com.fasterxml.jackson.databind.MapperFootprintTest - **/failing/**/*.java - - - 4 - classes - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - https://fasterxml.github.io/jackson-annotations/javadoc/2.14 - https://fasterxml.github.io/jackson-core/javadoc/2.14 - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - - - org.moditect - moditect-maven-plugin - - - - org.codehaus.mojo - build-helper-maven-plugin - - - - de.jjohannes - gradle-module-metadata-maven-plugin - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.22 - - - com.toasttab.android - gummy-bears-api-${version.android.sdk} - ${version.android.sdk.signature} - - - - java.beans.ConstructorProperties - java.beans.Transient - - - - - - - - - - release - - true - true - - - - - java14 - - 14 - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-test-source - generate-test-sources - - add-test-source - - - - src/test-jdk14/java - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - true - - true - - 14 - 14 - - -parameters - --enable-preview - - true - true - - - - org.apache.maven.plugins - maven-surefire-plugin - - --enable-preview - - - - - - - - java17 - - 17 - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-test-source - generate-test-sources - - add-test-source - - - - src/test-jdk14/java - src/test-jdk17/java - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - true - - true - - 17 - 17 - - -parameters - --add-opens=java.base/java.lang=ALL-UNNAMED - --add-opens=java.base/java.util=ALL-UNNAMED - - - - - org.apache.maven.plugins - maven-surefire-plugin - - --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED - - - - - - - errorprone - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -XDcompilePolicy=simple - - -Xplugin:ErrorProne - - -XepExcludedPaths:.*/src/test/java/.* - - - - - - - -Xep:BoxedPrimitiveEquality:ERROR - - - - - - - -Xep:UnusedVariable:OFF - - -Xep:EqualsHashCode:OFF - - -Xep:MissingSummary:OFF - -Xep:InvalidInlineTag:OFF - -Xep:EmptyBlockTag:OFF - -Xep:AlmostJavadoc:OFF - -Xep:InvalidLink:OFF - - -Xep:UnnecessaryParentheses:OFF - - -Xep:InconsistentCapitalization:OFF - - -Xep:FallThrough:OFF - - -Xep:BadImport:OFF - - -Xep:MissingCasesInEnumSwitch:OFF - - -Xep:JavaLangClash:OFF - - -Xep:ProtectedMembersInFinalClass:OFF - - -Xep:PublicConstructorForAbstractClass:OFF - - -Xep:EmptyCatch:OFF - -Xep:EqualsGetClass:OFF - - -Xep:MixedMutabilityReturnType:OFF - - -Xep:TypeParameterUnusedInFormals:OFF - - -Xep:JdkObsolete:OFF - - -Xep:JUnit3FloatingPointComparisonWithoutDelta:OFF - - -Xep:StringSplitter:OFF - - -Xep:AnnotateFormatMethod:OFF - -Xep:GuardedBy:OFF - - -Xep:ReferenceEquality:OFF - - - - - com.google.errorprone - error_prone_core - 2.4.0 - - - true - true - - - - - - - - diff --git a/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom.sha1 deleted file mode 100644 index 72e135893..000000000 --- a/code/arachne/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fd9ae9b5ab8f9fb0d3655cbe1714305d0e7d4b51 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/_remote.repositories deleted file mode 100644 index 3a46738f0..000000000 --- a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:11 EDT 2024 -jackson-dataformat-toml-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom deleted file mode 100644 index ccfb3fc65..000000000 --- a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson.dataformat - jackson-dataformats-text - 2.15.4 - - jackson-dataformat-toml - jar - Jackson-dataformat-TOML - Support for reading and writing TOML-encoded data via Jackson abstractions. - - https://github.com/FasterXML/jackson-dataformats-text - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - com/fasterxml/jackson/dataformat/toml - ${project.groupId}.toml - - - - - com.fasterxml.jackson.core - jackson-databind - - - - org.jetbrains - annotations - 20.1.0 - test - - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - org.moditect - moditect-maven-plugin - - - de.jflex - jflex-maven-plugin - 1.9.0 - - - generate-sources - - generate - - - - - false - ${project.build.directory}/generated-sources - ${project.basedir}/src/main/jflex/skeleton-toml - - - - - diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom.sha1 deleted file mode 100644 index 565803a73..000000000 --- a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.4/jackson-dataformat-toml-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b08637cdc4315f54136211892af7391cb7296e8b \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/_remote.repositories deleted file mode 100644 index 82cd53994..000000000 --- a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:11 EDT 2024 -jackson-dataformats-text-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom deleted file mode 100644 index 955eb0d44..000000000 --- a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom +++ /dev/null @@ -1,103 +0,0 @@ - - 4.0.0 - - com.fasterxml.jackson - jackson-base - 2.15.4 - - com.fasterxml.jackson.dataformat - jackson-dataformats-text - Jackson dataformats: Text - 2.15.4 - pom - Parent pom for Jackson text-based dataformats (as opposed to binary). - - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - csv - properties - yaml - toml - - - https://github.com/FasterXML/jackson-dataformats-text - - scm:git:git@github.com:FasterXML/jackson-dataformats-text.git - scm:git:git@github.com:FasterXML/jackson-dataformats-text.git - https://github.com/FasterXML/jackson-dataformats-text - jackson-dataformats-text-2.15.4 - - - https://github.com/FasterXML/jackson-dataformats-text/issues - - - - - 2024-02-15T18:00:30Z - - - - - - com.fasterxml.jackson.core - jackson-core - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - com/fasterxml/jackson/**/failing/*.java - - - - - - - - - - de.jjohannes - gradle-module-metadata-maven-plugin - - - - - diff --git a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom.sha1 deleted file mode 100644 index e4e64efbd..000000000 --- a/code/arachne/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -eb123a07015bb995aca00385f21470c078124ea8 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/_remote.repositories deleted file mode 100644 index c4e677008..000000000 --- a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:51 EDT 2024 -jackson-datatype-jdk8-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom deleted file mode 100644 index 168104994..000000000 --- a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson.module - jackson-modules-java8 - 2.15.4 - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - Jackson datatype: jdk8 - bundle - Add-on module for Jackson (http://jackson.codehaus.org) to support -JDK 8 data types. - - - - - 1.8 - 1.8 - - - com/fasterxml/jackson/datatype/jdk8 - ${project.groupId}.jdk8 - - - - - - org.apache.maven.plugins - ${version.plugin.surefire} - maven-surefire-plugin - - - com/fasterxml/jackson/failing/*.java - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - - org.moditect - moditect-maven-plugin - - - - diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom.sha1 deleted file mode 100644 index 868e270c2..000000000 --- a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bc09f33be6167093fd0e5f4c09077ddbccab1ada \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/_remote.repositories deleted file mode 100644 index 355d2af37..000000000 --- a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -jackson-datatype-jsr310-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom deleted file mode 100644 index 755df9b44..000000000 --- a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson.module - jackson-modules-java8 - 2.15.4 - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - Jackson datatype: JSR310 - bundle - Add-on module to support JSR-310 (Java 8 Date & Time API) data types. - - - beamerblvd - Nick Williams - nicholas@nicholaswilliams.net - -6 - - - - - - -Xdoclint:none - - - com/fasterxml/jackson/datatype/jsr310 - ${project.groupId}.jsr310 - 1.8 - 1.8 - - - - - - - - com.fasterxml.jackson.core - jackson-annotations - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java - validate - - enforce - - - - - [1.8,) - [ERROR] The currently supported version of Java is 1.8 or higher - - - [3.0,) - [ERROR] The currently supported version of Maven is 3.0 or higher - - - true - true - true - clean,deploy,site - [ERROR] Best Practice is to always define plugin versions! - - - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.0 - true - - ${javac.src.version} - ${javac.target.version} - true - true - true - - 10000 - 10000 - - - - - - - org.moditect - moditect-maven-plugin - - - - diff --git a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom.sha1 deleted file mode 100644 index 61bd42688..000000000 --- a/code/arachne/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -92cb4d8a553bdd516b8d35f2e97b376fff96306f \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/_remote.repositories deleted file mode 100644 index 17af532da..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:46 EDT 2024 -jackson-base-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom b/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom deleted file mode 100644 index 8a57d70e5..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom +++ /dev/null @@ -1,331 +0,0 @@ - - - 4.0.0 - - com.fasterxml.jackson - jackson-bom - 2.15.4 - - jackson-base - Jackson Base - pom - Parent pom for components of Jackson dataprocessor: includes base settings as well -as consistent set of dependencies across components. NOTE: NOT to be used by components outside -of Jackson: application code should only rely on `jackson-bom` - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - 1.0.0.Final - - ${project.groupId} - ${project.artifactId} - ${project.version} - - - ${project.parent.version} - - - 2024-02-15T16:54:51Z - - - - - junit - junit - ${version.junit} - test - - - - - - - - javax.activation - javax.activation-api - ${javax.activation.version} - - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java - validate - - enforce - - - - - [3.0,) - [ERROR] The currently supported version of Maven is 3.0 or higher - - - true - true - true - clean,deploy,site - [ERROR] Best Practice is to always define plugin versions! - - - - - - enforce-properties - validate - - - - - - - packageVersion.package - - - packageVersion.dir - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - - - false - - http://docs.oracle.com/javase/8/docs/api/ - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - - org.moditect - moditect-maven-plugin - - - add-module-infos - package - - add-module-info - - - true - - src/moditect/module-info.java - - - - - - - - 9 - - - - - de.jjohannes - gradle-module-metadata-maven-plugin - 0.4.0 - - - - gmm - - - - - - - com.fasterxml.jackson - jackson-bom - ${jackson-bom.version} - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-resource - generate-resources - - add-resource - - - - - ${project.basedir} - META-INF - - LICENSE - - - - - - - - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - - - - - maven-enforcer-plugin - - - enforce-properties - none - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - sonatype-nexus-staging - https://oss.sonatype.org/ - b34f19b9cc6224 - - - - - - - - - moditect - - - 1.9 - - - - - org.moditect - moditect-maven-plugin - - - generate-module-info - generate-sources - - generate-module-info - - - - - - ${moditect.sourceGroup} - ${moditect.sourceArtifact} - ${moditect.sourceVersion} - - - - - - - - - - - - diff --git a/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom.sha1 deleted file mode 100644 index 0d40ff68e..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-base/2.15.4/jackson-base-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5d17a21a197dd7b2271db88f9094fb49f8550eab \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/_remote.repositories deleted file mode 100644 index 15c99ca5c..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:47 EDT 2024 -jackson-bom-2.11.0.pom>local-repo= diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom deleted file mode 100644 index 9271b3cb9..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom +++ /dev/null @@ -1,310 +0,0 @@ - - - 4.0.0 - - - com.fasterxml.jackson - jackson-parent - - 2.11 - - - jackson-bom - 2.11.0 - pom - - - base - - - https://github.com/FasterXML/jackson-bom - - scm:git:git@github.com:FasterXML/jackson-bom.git - scm:git:git@github.com:FasterXML/jackson-bom.git - http://github.com/FasterXML/jackson-bom - jackson-bom-2.11.0 - - - - 2.11.0 - - - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - - ${jackson.version} - ${jackson.version.module} - ${jackson.version.module} - - 1.2.0 - - - - - - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson.version.annotations} - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version.core} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version.databind} - - - - - com.fasterxml.jackson.dataformat - jackson-dataformat-avro - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-cbor - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-csv - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-ion - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-properties - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-protobuf - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-smile - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - ${jackson.version.dataformat} - - - - - com.fasterxml.jackson.datatype - jackson-datatype-guava - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate3 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate4 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hppc - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jaxrs - - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-json-org - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr353 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-pcollections - ${jackson.version.datatype} - - - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-cbor-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-smile-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-xml-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-yaml-provider - ${jackson.version.jaxrs} - - - - - com.fasterxml.jackson.jr - jackson-jr-all - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-objects - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-retrofit2 - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-stree - ${jackson.version.jacksonjr} - - - - - com.fasterxml.jackson.module - jackson-module-afterburner - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-guice - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jsonSchema - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-kotlin - ${jackson.version.module.kotlin} - - - com.fasterxml.jackson.module - jackson-module-mrbean - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-osgi - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-parameter-names - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-paranamer - ${jackson.version.module} - - - - - - com.fasterxml.jackson.module - jackson-module-scala_2.10 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_2.11 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_2.12 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_2.13 - ${jackson.version.module.scala} - - - - - - diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.lastUpdated b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.lastUpdated deleted file mode 100644 index 3dd7f3ce9..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:47 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139887390 -http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml.jackson\:jackson-bom\:pom\:2.11.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139887131 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139887139 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139887234 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139887339 diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.sha1 deleted file mode 100644 index cf9188196..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -33494ae4ec70fa17a153f42f367b36303cff71ff \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/_remote.repositories deleted file mode 100644 index cfea8b003..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:49 EDT 2024 -jackson-bom-2.15.2.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom deleted file mode 100644 index 7f7cc1530..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom +++ /dev/null @@ -1,441 +0,0 @@ - - - 4.0.0 - - - com.fasterxml.jackson - jackson-parent - - 2.15 - - - jackson-bom - Jackson BOM - Bill of Materials pom for getting full, complete set of compatible versions -of Jackson components maintained by FasterXML.com - - 2.15.2 - pom - - - base - - - - FasterXML - http://fasterxml.com/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - cowtowncoder - Tatu Saloranta - tatu@fasterxml.com - - - - https://github.com/FasterXML/jackson-bom - - scm:git:git@github.com:FasterXML/jackson-bom.git - scm:git:git@github.com:FasterXML/jackson-bom.git - https://github.com/FasterXML/jackson-bom - jackson-bom-2.15.2 - - - - 2.15.2 - - - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - - ${jackson.version} - ${jackson.version.module} - ${jackson.version.module} - - 1.2.0 - - - 2023-05-30T20:28:33Z - - - - - - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson.version.annotations} - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version.core} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version.databind} - - - - - com.fasterxml.jackson.dataformat - jackson-dataformat-avro - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-cbor - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-csv - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-ion - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-properties - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-protobuf - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-smile - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-toml - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - ${jackson.version.dataformat} - - - - - com.fasterxml.jackson.datatype - jackson-datatype-eclipse-collections - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-guava - ${jackson.version.datatype} - - - - - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate4 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5-jakarta - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate6 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hppc - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jakarta-jsonp - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jaxrs - - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-joda-money - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-json-org - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr353 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-pcollections - ${jackson.version.datatype} - - - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-cbor-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-smile-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-xml-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-yaml-provider - ${jackson.version.jaxrs} - - - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-base - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-cbor-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-json-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-smile-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-xml-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-yaml-provider - ${jackson.version.jakarta.rs} - - - - - com.fasterxml.jackson.jr - jackson-jr-all - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-annotation-support - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-objects - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-retrofit2 - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-stree - ${jackson.version.jacksonjr} - - - - - com.fasterxml.jackson.module - jackson-module-afterburner - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-blackbird - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-guice - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jakarta-xmlbind-annotations - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jsonSchema - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jsonSchema-jakarta - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-kotlin - ${jackson.version.module.kotlin} - - - com.fasterxml.jackson.module - jackson-module-mrbean - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-no-ctor-deser - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-osgi - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-parameter-names - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-paranamer - ${jackson.version.module} - - - - - - - com.fasterxml.jackson.module - jackson-module-scala_2.11 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_2.12 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_2.13 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_3 - ${jackson.version.module.scala} - - - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom.sha1 deleted file mode 100644 index 7c67b3544..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6cc5b0a22f029413cac375880d7bdcaceaac5010 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/_remote.repositories deleted file mode 100644 index 9cb2e1087..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:28 EDT 2024 -jackson-bom-2.15.4.pom>ohdsi= diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom deleted file mode 100644 index f50068673..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom +++ /dev/null @@ -1,441 +0,0 @@ - - - 4.0.0 - - - com.fasterxml.jackson - jackson-parent - - 2.15 - - - jackson-bom - Jackson BOM - Bill of Materials pom for getting full, complete set of compatible versions -of Jackson components maintained by FasterXML.com - - 2.15.4 - pom - - - base - - - - FasterXML - http://fasterxml.com/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - cowtowncoder - Tatu Saloranta - tatu@fasterxml.com - - - - https://github.com/FasterXML/jackson-bom - - scm:git:git@github.com:FasterXML/jackson-bom.git - scm:git:git@github.com:FasterXML/jackson-bom.git - https://github.com/FasterXML/jackson-bom - jackson-bom-2.15.4 - - - - 2.15.4 - - - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - - ${jackson.version} - ${jackson.version.module} - ${jackson.version.module} - - 1.2.0 - - - 2024-02-15T16:54:51Z - - - - - - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson.version.annotations} - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version.core} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version.databind} - - - - - com.fasterxml.jackson.dataformat - jackson-dataformat-avro - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-cbor - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-csv - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-ion - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-properties - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-protobuf - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-smile - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-toml - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - ${jackson.version.dataformat} - - - - - com.fasterxml.jackson.datatype - jackson-datatype-eclipse-collections - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-guava - ${jackson.version.datatype} - - - - - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate4 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5-jakarta - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate6 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hppc - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jakarta-jsonp - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jaxrs - - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-joda-money - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-json-org - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr353 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-pcollections - ${jackson.version.datatype} - - - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-cbor-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-smile-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-xml-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-yaml-provider - ${jackson.version.jaxrs} - - - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-base - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-cbor-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-json-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-smile-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-xml-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-yaml-provider - ${jackson.version.jakarta.rs} - - - - - com.fasterxml.jackson.jr - jackson-jr-all - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-annotation-support - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-objects - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-retrofit2 - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-stree - ${jackson.version.jacksonjr} - - - - - com.fasterxml.jackson.module - jackson-module-afterburner - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-blackbird - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-guice - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jakarta-xmlbind-annotations - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jsonSchema - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jsonSchema-jakarta - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-kotlin - ${jackson.version.module.kotlin} - - - com.fasterxml.jackson.module - jackson-module-mrbean - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-no-ctor-deser - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-osgi - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-parameter-names - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-paranamer - ${jackson.version.module} - - - - - - - com.fasterxml.jackson.module - jackson-module-scala_2.11 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_2.12 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_2.13 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_3 - ${jackson.version.module.scala} - - - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.lastUpdated b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.lastUpdated deleted file mode 100644 index de2f65961..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:28 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml.jackson\:jackson-bom\:pom\:2.15.4 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139807140 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139807261 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139807773 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139808011 diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.sha1 deleted file mode 100644 index 020720db0..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2ed3947aac4ec7d5a3b8c1c89821056a7203b09b \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/_remote.repositories deleted file mode 100644 index 7d0c88e8d..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:51 EDT 2024 -jackson-bom-2.16.1.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom b/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom deleted file mode 100644 index 0489eae93..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom +++ /dev/null @@ -1,446 +0,0 @@ - - - 4.0.0 - - - com.fasterxml.jackson - jackson-parent - - 2.16 - - - jackson-bom - Jackson BOM - Bill of Materials pom for getting full, complete set of compatible versions -of Jackson components maintained by FasterXML.com - - 2.16.1 - pom - - - base - - - - FasterXML - http://fasterxml.com/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - cowtowncoder - Tatu Saloranta - tatu@fasterxml.com - - - - https://github.com/FasterXML/jackson-bom - - scm:git:git@github.com:FasterXML/jackson-bom.git - scm:git:git@github.com:FasterXML/jackson-bom.git - https://github.com/FasterXML/jackson-bom - jackson-bom-2.16.1 - - - - 2.16.1 - - - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - ${jackson.version} - - ${jackson.version} - ${jackson.version.module} - ${jackson.version.module} - - 1.2.0 - - - 2023-12-24T03:55:12Z - - - - - - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson.version.annotations} - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version.core} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version.databind} - - - - - com.fasterxml.jackson.dataformat - jackson-dataformat-avro - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-cbor - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-csv - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-ion - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-properties - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-protobuf - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-smile - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-toml - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - ${jackson.version.dataformat} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - ${jackson.version.dataformat} - - - - - com.fasterxml.jackson.datatype - jackson-datatype-eclipse-collections - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-guava - ${jackson.version.datatype} - - - - - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate4 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5-jakarta - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate6 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-hppc - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jakarta-jsonp - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jaxrs - - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-joda-money - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-json-org - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr353 - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-pcollections - ${jackson.version.datatype} - - - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-cbor-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-smile-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-xml-provider - ${jackson.version.jaxrs} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-yaml-provider - ${jackson.version.jaxrs} - - - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-base - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-cbor-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-json-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-smile-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-xml-provider - ${jackson.version.jakarta.rs} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-yaml-provider - ${jackson.version.jakarta.rs} - - - - - com.fasterxml.jackson.jr - jackson-jr-all - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-annotation-support - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-objects - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-retrofit2 - ${jackson.version.jacksonjr} - - - com.fasterxml.jackson.jr - jackson-jr-stree - ${jackson.version.jacksonjr} - - - - - com.fasterxml.jackson.module - jackson-module-afterburner - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-android-record - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-blackbird - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-guice - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jakarta-xmlbind-annotations - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jsonSchema - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-jsonSchema-jakarta - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-kotlin - ${jackson.version.module.kotlin} - - - com.fasterxml.jackson.module - jackson-module-mrbean - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-no-ctor-deser - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-osgi - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-parameter-names - ${jackson.version.module} - - - com.fasterxml.jackson.module - jackson-module-paranamer - ${jackson.version.module} - - - - - - - com.fasterxml.jackson.module - jackson-module-scala_2.11 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_2.12 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_2.13 - ${jackson.version.module.scala} - - - com.fasterxml.jackson.module - jackson-module-scala_3 - ${jackson.version.module.scala} - - - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - diff --git a/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom.sha1 deleted file mode 100644 index f9641f2cd..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-bom/2.16.1/jackson-bom-2.16.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0e56871cbeb604dfdce9ffac8ce705d049f478cf \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/_remote.repositories deleted file mode 100644 index 36c48ee66..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:47 EDT 2024 -jackson-parent-2.11.pom>local-repo= diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom deleted file mode 100644 index 842c53f75..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom +++ /dev/null @@ -1,208 +0,0 @@ - - - 4.0.0 - - - com.fasterxml - oss-parent - 38 - - - com.fasterxml.jackson - jackson-parent - 2.11 - pom - - Jackson parent poms - Parent pom for all Jackson components - http://github.com/FasterXML/ - - FasterXML - http://fasterxml.com/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - cowtowncoder - Tatu Saloranta - tatu@fasterxml.com - - - christophercurrie - Christopher Currie - - - - prb - Paul Brown - prb@fasterxml.com - - - - - scm:git:git@github.com:FasterXML/jackson-parent.git - scm:git:git@github.com:FasterXML/jackson-parent.git - http://github.com/FasterXML/jackson-parent - jackson-parent-2.11 - - - - - 1.7 - 1.7 - lines,source,vars - - - ${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in - ${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java - - - - - - junit - junit - ${version.junit} - - - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java - validate - - enforce - - - - - [3.3,) - [ERROR] The currently supported version of Maven is 3.3 or higher - - - true - true - true - clean,deploy,site - [ERROR] Best Practice is to always define plugin versions! - - - - - - - - - com.google.code.maven-replacer-plugin - replacer - ${version.plugin.replacer} - - - process-packageVersion - - replace - - - - - - ${packageVersion.template.input} - ${packageVersion.template.output} - - - @package@ - ${packageVersion.package} - - - @projectversion@ - ${project.version} - - - @projectgroupid@ - ${project.groupId} - - - @projectartifactid@ - ${project.artifactId} - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - com.google.code.maven-replacer-plugin - replacer - [${version.plugin.replacer},) - - replace - - - - - false - - - - - - - - - - - - diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.lastUpdated b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.lastUpdated deleted file mode 100644 index 8a97cff23..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:47 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139887743 -http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml.jackson\:jackson-parent\:pom\:2.11 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139887486 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139887494 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139887594 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139887694 diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.sha1 deleted file mode 100644 index f86c73261..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -89f0f8a7f21a54125e0ae1f72e6cdd50b51c87f3 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/_remote.repositories deleted file mode 100644 index 325f675b7..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:28 EDT 2024 -jackson-parent-2.15.pom>ohdsi= diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom deleted file mode 100644 index 51cb2dbf0..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom +++ /dev/null @@ -1,169 +0,0 @@ - - - 4.0.0 - - - com.fasterxml - oss-parent - 50 - - - com.fasterxml.jackson - jackson-parent - 2.15 - pom - - Jackson parent poms - Parent pom for all Jackson components - http://github.com/FasterXML/ - - FasterXML - http://fasterxml.com/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - cowtowncoder - Tatu Saloranta - tatu@fasterxml.com - - - - - scm:git:git@github.com:FasterXML/jackson-parent.git - scm:git:git@github.com:FasterXML/jackson-parent.git - http://github.com/FasterXML/jackson-parent - jackson-parent-2.15 - - - - - - 1.8 - 1.8 - ${javac.src.version} - ${javac.target.version} - - lines,source,vars - - - ${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in - ${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java - - 2023-04-23T20:09:36Z - - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java - validate - - enforce - - - - - [3.6,) - [ERROR] The currently supported version of Maven is 3.6 or higher - - - true - true - true - clean,deploy,site - [ERROR] Best Practice is to always define plugin versions! - - - - - - - - - com.google.code.maven-replacer-plugin - replacer - ${version.plugin.replacer} - - - process-packageVersion - - replace - - - - - - ${packageVersion.template.input} - ${packageVersion.template.output} - - - @package@ - ${packageVersion.package} - - - @projectversion@ - ${project.version} - - - @projectgroupid@ - ${project.groupId} - - - @projectartifactid@ - ${project.artifactId} - - - - - - - - - diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.lastUpdated b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.lastUpdated deleted file mode 100644 index 3387b7577..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:28 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml.jackson\:jackson-parent\:pom\:2.15 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139808019 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139808126 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139808245 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139808370 diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.sha1 deleted file mode 100644 index 2f7d82b14..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -caffbeb9be9350780ad5407789f43664906042ec \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/_remote.repositories b/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/_remote.repositories deleted file mode 100644 index 64eb65227..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:51 EDT 2024 -jackson-parent-2.16.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom b/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom deleted file mode 100644 index 46dd7b6a0..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom +++ /dev/null @@ -1,169 +0,0 @@ - - - 4.0.0 - - - com.fasterxml - oss-parent - 56 - - - com.fasterxml.jackson - jackson-parent - 2.16 - pom - - Jackson parent poms - Parent pom for all Jackson components - http://github.com/FasterXML/ - - FasterXML - http://fasterxml.com/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - cowtowncoder - Tatu Saloranta - tatu@fasterxml.com - - - - - scm:git:git@github.com:FasterXML/jackson-parent.git - scm:git:git@github.com:FasterXML/jackson-parent.git - http://github.com/FasterXML/jackson-parent - jackson-parent-2.16 - - - - - - 1.8 - 1.8 - ${javac.src.version} - ${javac.target.version} - - lines,source,vars - - - ${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in - ${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java - - 2023-11-15T19:21:06Z - - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java - validate - - enforce - - - - - [3.6,) - [ERROR] The currently supported version of Maven is 3.6 or higher - - - true - true - true - clean,deploy,site - [ERROR] Best Practice is to always define plugin versions! - - - - - - - - - com.google.code.maven-replacer-plugin - replacer - ${version.plugin.replacer} - - - process-packageVersion - - replace - - - - - - ${packageVersion.template.input} - ${packageVersion.template.output} - - - @package@ - ${packageVersion.package} - - - @projectversion@ - ${project.version} - - - @projectgroupid@ - ${project.groupId} - - - @projectartifactid@ - ${project.artifactId} - - - - - - - - - diff --git a/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom.sha1 b/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom.sha1 deleted file mode 100644 index d07a742d6..000000000 --- a/code/arachne/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -712d723d9a99b84ce364361e155857377c16de96 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/_remote.repositories deleted file mode 100644 index db08e9699..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -jackson-module-jakarta-xmlbind-annotations-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom b/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom deleted file mode 100644 index 5382f7d0d..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson.module - jackson-modules-base - 2.15.4 - - jackson-module-jakarta-xmlbind-annotations - Jackson module: Jakarta XML Bind Annotations (jakarta.xml.bind) - bundle - - Support for using Jakarta XML Bind (aka JAXB 3.0) annotations as an alternative - to "native" Jackson annotations, for configuring data-binding. - - https://github.com/FasterXML/jackson-modules-base - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - com/fasterxml/jackson/module/jakarta/xmlbind - ${project.groupId}.jakarta.xmlbind - - javax.activation;resolution:=optional,* - - 3.0.1 - - - - - com.fasterxml.jackson.core - jackson-annotations - - - com.fasterxml.jackson.core - jackson-core - - - com.fasterxml.jackson.core - jackson-databind - - - - - jakarta.xml.bind - jakarta.xml.bind-api - ${version.xmlbind.api} - - - - jakarta.activation - jakarta.activation-api - 2.1.0 - - - - - org.glassfish.jaxb - jaxb-runtime - ${version.xmlbind.api} - test - - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - org.moditect - moditect-maven-plugin - - - - - diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom.sha1 deleted file mode 100644 index 6580e15ea..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e2983636e3d8e5ac6eb68cd01ea550a6e65595ce \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/_remote.repositories deleted file mode 100644 index 4015544c4..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -jackson-module-parameter-names-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom b/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom deleted file mode 100644 index 0c1caab83..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson.module - jackson-modules-java8 - 2.15.4 - - jackson-module-parameter-names - Jackson-module-parameter-names - bundle - Add-on module for Jackson (http://jackson.codehaus.org) to support -introspection of method/constructor parameter names, without having to add explicit property name annotation. - - - - - 1.8 - 1.8 - - com/fasterxml/jackson/module/paramnames - ${project.groupId}.paramnames - - 3.8.0 - 4.5.0 - - - - - org.assertj - assertj-core - ${assertj-core.version} - test - - - org.mockito - mockito-core - ${mockito-core.version} - test - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java - validate - - enforce - - - - - [1.8,) - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.2 - true - - ${javac.src.version} - ${javac.target.version} - true - true - true - - -Xlint - -parameters - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.plugin.surefire} - - - ${packageVersion.dir}/failing/*.java - - - - - - org.moditect - moditect-maven-plugin - - - - diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom.sha1 deleted file mode 100644 index 7d0ba890f..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c5a8decdd8e47454120ed4180d72a1f1ebb2a329 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/_remote.repositories deleted file mode 100644 index e39d1e54c..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -jackson-modules-base-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom b/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom deleted file mode 100644 index 7c7754c30..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom +++ /dev/null @@ -1,115 +0,0 @@ - - 4.0.0 - - com.fasterxml.jackson - jackson-base - 2.15.4 - - com.fasterxml.jackson.module - jackson-modules-base - Jackson modules: Base - 2.15.4 - pom - Parent pom for Jackson "base" modules: modules that build directly on databind, and are -not datatype, data format, or JAX-RS provider modules. - - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - afterburner - blackbird - guice - jakarta-xmlbind - jaxb - mrbean - osgi - paranamer - - no-ctor-deser - - - https://github.com/FasterXML/jackson-modules-base - - scm:git:git@github.com:FasterXML/jackson-modules-base.git - scm:git:git@github.com:FasterXML/jackson-modules-base.git - https://github.com/FasterXML/jackson-modules-base - jackson-modules-base-2.15.4 - - - https://github.com/FasterXML/jackson-modules-base/issues - - - - UTF-8 - - - - 9.5 - - - - - - - org.ow2.asm - asm - ${version.asm} - - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - com/fasterxml/jackson/**/failing/*.java - - - - - - - - - de.jjohannes - gradle-module-metadata-maven-plugin - - - - - diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom.sha1 deleted file mode 100644 index 22f4ce86e..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -52c35ee2989bab5f60186b12d3bd833599e17948 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/_remote.repositories b/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/_remote.repositories deleted file mode 100644 index a2e04a85e..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:51 EDT 2024 -jackson-modules-java8-2.15.4.pom>central= diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom b/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom deleted file mode 100644 index 03d6dfa3a..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom +++ /dev/null @@ -1,92 +0,0 @@ - - 4.0.0 - - com.fasterxml.jackson - jackson-base - 2.15.4 - - com.fasterxml.jackson.module - jackson-modules-java8 - Jackson modules: Java 8 - 2.15.4 - pom - Parent pom for Jackson modules needed to support Java 8 features and types - - - - parameter-names - datatypes - datetime - - - https://github.com/FasterXML/jackson-modules-java8 - - scm:git:git@github.com:FasterXML/jackson-modules-java8.git - scm:git:git@github.com:FasterXML/jackson-modules-java8.git - http://github.com/FasterXML/jackson-modules-java8 - jackson-modules-java8-2.15.4 - - - https://github.com/FasterXML/jackson-modules-java8/issues - - - - - com.fasterxml.jackson.core - jackson-core - - - com.fasterxml.jackson.core - jackson-databind - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - com/fasterxml/jackson/**/failing/*.java - - - - - - - - - - de.jjohannes - gradle-module-metadata-maven-plugin - - - - - diff --git a/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom.sha1 b/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom.sha1 deleted file mode 100644 index 2062808ad..000000000 --- a/code/arachne/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -030e6e7879efe2082eebf3d88edd4559872385cb \ No newline at end of file diff --git a/code/arachne/com/fasterxml/oss-parent/38/_remote.repositories b/code/arachne/com/fasterxml/oss-parent/38/_remote.repositories deleted file mode 100644 index 221ffdf89..000000000 --- a/code/arachne/com/fasterxml/oss-parent/38/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:48 EDT 2024 -oss-parent-38.pom>local-repo= diff --git a/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom b/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom deleted file mode 100644 index fe1baf05c..000000000 --- a/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom +++ /dev/null @@ -1,642 +0,0 @@ - - - - 4.0.0 - - com.fasterxml - oss-parent - 38 - pom - - FasterXML.com parent pom - FasterXML.com parent pom - http://github.com/FasterXML/ - - FasterXML - http://fasterxml.com/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - cowtowncoder - Tatu Saloranta - tatu@fasterxml.com - - - - - scm:git:git@github.com:FasterXML/oss-parent.git - scm:git:git@github.com:FasterXML/oss-parent.git - http://github.com/FasterXML/oss-parent - oss-parent-38 - - - GitHub Issue Management - https://github.com/FasterXML/${project.artifactId}/issues - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - UTF-8 - UTF-8 - UTF-8 - - ${project.build.directory}/generated-sources - - 1g - - - 1.6 - 1.6 - - - lines,source,vars - yyyy-MM-dd HH:mm:ssZ - - ${project.groupId}.*;version=${project.version} - * - - - - ${range;[===,=+);${@}} - {maven-resources} - - - - - - - 4.2.0 - - 2.6.1 - 2.7 - - - 3.8.0 - 3.0.0-M1 - - 1.6 - - - 3.0.0-M1 - - 3.0.0-M1 - 3.1.2 - - - 3.0.1 - - - 1.0.0.Beta2 - - 2.5.3 - 1.5.3 - 2.7 - - - 3.2.1 - 3.1 - - - 3.0.1 - - - - 2.22.2 - - - 4.12 - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.7 - - - org.apache.maven.plugins - maven-clean-plugin - ${version.plugin.clean} - - - org.apache.maven.plugins - maven-dependency-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.plugin.deploy} - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.plugin.gpg} - - - org.apache.maven.plugins - maven-install-plugin - ${version.plugin.install} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - - - org.moditect - moditect-maven-plugin - ${version.plugin.moditect} - - - - - com.google.code.maven-replacer-plugin - replacer - - ${version.plugin.replacer} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.plugin.resources} - - - - org.apache.maven.plugins - maven-shade-plugin - ${version.plugin.shade} - - - org.apache.maven.plugins - maven-site-plugin - ${version.plugin.site} - - - org.codehaus.mojo - cobertura-maven-plugin - ${version.plugin.cobertura} - - - - org.apache.felix - maven-bundle-plugin - ${version.plugin.bundle} - - - - - - - <_removeheaders>Include-Resource,JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME - <_versionpolicy>${osgi.versionpolicy} - ${project.name} - ${project.groupId}.${project.artifactId} - ${project.description} - ${osgi.export} - ${osgi.private} - ${osgi.import} - ${osgi.dynamicImport} - ${osgi.includeResource} - ${project.url} - ${osgi.requiredExecutionEnvironment} - - ${maven.build.timestamp} - ${javac.src.version} - ${javac.target.version} - - ${project.name} - ${project.version} - ${project.groupId} - ${project.organization.name} - - ${project.name} - ${project.version} - ${project.organization.name} - - ${osgi.mainClass} - - - - - - - - org.apache.maven.plugins - maven-release-plugin - ${version.plugin.release} - - forked-path - false - -Prelease - - - - org.sonatype.plugins - nexus-maven-plugin - 2.1 - - https://oss.sonatype.org/ - sonatype-nexus-staging - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.plugin.enforcer} - - - enforce-java - validate - - enforce - - - - - - [1.6,) - [ERROR] The currently supported version of Java is 1.6 or higher - - - [3.0,) - [ERROR] The currently supported version of Maven is 3.0 or higher - - - true - true - true - clean,deploy,site - [ERROR] Best Practice is to always define plugin versions! - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.plugin.compiler} - - - - org.ow2.asm - asm - 7.0 - - - - ${javac.src.version} - ${javac.target.version} - true - true - true - - true - ${javac.debuglevel} - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-generated-sources - generate-sources - - add-source - - - - ${generatedSourcesDir} - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.plugin.surefire} - - - - org.apache.felix - maven-bundle-plugin - ${version.plugin.bundle} - true - - - - org.apache.maven.plugins - maven-jar-plugin - ${version.plugin.jar} - - - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - org.apache.maven.plugins - maven-scm-plugin - 1.9.1 - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.9.1 - - - - - - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.9.1 - - - - org.apache.maven.scm - maven-scm-manager-plexus - 1.9.1 - - - - - org.kathrynhuxtable.maven.wagon - wagon-gitsite - 0.3.1 - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - ${sun.boot.class.path} - com.google.doclava.Doclava - false - -J-Xmx1024m - ${javadoc.maxmemory} - - http://docs.oracle.com/javase/7/docs/api/ - - - com.google.doclava - doclava - 1.0.3 - - - -hdf project.name "${project.name}" - -d ${project.reporting.outputDirectory}/apidocs - - - - - default - - javadoc - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.5 - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0 - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.plugin.surefire} - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.7.1 - - true - 100 - 1.5 - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - - - Todo Work - - - TODO - ignoreCase - - - FIXME - ignoreCase - - - - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-source-plugin - ${version.plugin.source} - - - attach-sources - - jar-no-fork - - - - - true - true - - - ${maven.build.timestamp} - ${javac.src.version} - ${javac.target.version} - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - - attach-javadocs - - jar - - - true - - - true - true - - - ${maven.build.timestamp} - ${javac.src.version} - ${javac.target.version} - - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.lastUpdated b/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.lastUpdated deleted file mode 100644 index 8bf67a564..000000000 --- a/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:48 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139888108 -http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml\:oss-parent\:pom\:38 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139887848 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139887854 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139887953 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139888079 diff --git a/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.sha1 b/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.sha1 deleted file mode 100644 index c0158fd84..000000000 --- a/code/arachne/com/fasterxml/oss-parent/38/oss-parent-38.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ff6b9e9e40c23235f87a44b463995b47adca8dc9 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/oss-parent/50/_remote.repositories b/code/arachne/com/fasterxml/oss-parent/50/_remote.repositories deleted file mode 100644 index 139571df5..000000000 --- a/code/arachne/com/fasterxml/oss-parent/50/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:28 EDT 2024 -oss-parent-50.pom>ohdsi= diff --git a/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom b/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom deleted file mode 100644 index 1a14a57a8..000000000 --- a/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom +++ /dev/null @@ -1,665 +0,0 @@ - - - - 4.0.0 - - com.fasterxml - oss-parent - 50 - pom - - FasterXML.com parent pom - FasterXML.com parent pom - http://github.com/FasterXML/ - - FasterXML - http://fasterxml.com/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - cowtowncoder - Tatu Saloranta - tatu@fasterxml.com - - - - - scm:git:git@github.com:FasterXML/oss-parent.git - scm:git:git@github.com:FasterXML/oss-parent.git - http://github.com/FasterXML/oss-parent - oss-parent-50 - - - GitHub Issue Management - https://github.com/FasterXML/${project.artifactId}/issues - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - UTF-8 - UTF-8 - UTF-8 - - 2023-03-05T04:38:31Z - - ${project.build.directory}/generated-sources - - 1g - - - 1.6 - 1.6 - - - lines,source,vars - yyyy-MM-dd HH:mm:ssZ - - ${project.groupId}.*;version=${project.version} - * - - - - ${range;[===,=+);${@}} - {maven-resources} - - - - - - - 5.1.8 - - 3.2.0 - 2.7 - - - 3.10.1 - 3.1.0 - - - 3.2.1 - 3.0.1 - - 3.1.0 - 0.8.8 - 3.3.0 - - 3.5.0 - - - 1.0.0.RC2 - - 3.0.0-M7 - 1.5.3 - 3.3.0 - - 3.4.1 - 3.12.1 - - 3.2.1 - - 3.0.0-M9 - - 3.1.1 - - - - - 4.13.2 - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-clean-plugin - ${version.plugin.clean} - - - org.apache.maven.plugins - maven-dependency-plugin - 3.5.0 - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.plugin.deploy} - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.plugin.gpg} - - - org.apache.maven.plugins - maven-install-plugin - ${version.plugin.install} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.plugin.resources} - - - - org.apache.maven.plugins - maven-shade-plugin - ${version.plugin.shade} - - - org.apache.maven.plugins - maven-site-plugin - ${version.plugin.site} - - - org.apache.maven.plugins - maven-source-plugin - ${version.plugin.source} - - - org.apache.maven.plugins - maven-wrapper-plugin - ${version.plugin.wrapper} - - - - - org.moditect - moditect-maven-plugin - ${version.plugin.moditect} - - - - - com.google.code.maven-replacer-plugin - replacer - - ${version.plugin.replacer} - - - org.codehaus.mojo - cobertura-maven-plugin - ${version.plugin.cobertura} - - - - org.apache.felix - maven-bundle-plugin - ${version.plugin.bundle} - - - - - - - <_removeheaders>Include-Resource,JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME - <_versionpolicy>${osgi.versionpolicy} - ${project.name} - ${project.groupId}.${project.artifactId} - ${project.description} - ${osgi.export} - ${osgi.private} - ${osgi.import} - ${osgi.dynamicImport} - ${osgi.includeResource} - ${project.url} - ${osgi.requiredExecutionEnvironment} - - ${javac.src.version} - ${javac.target.version} - - ${project.name} - ${project.version} - ${project.groupId} - ${project.organization.name} - - ${project.name} - ${project.version} - ${project.organization.name} - - ${osgi.mainClass} - - - - - - - - org.apache.maven.plugins - maven-release-plugin - ${version.plugin.release} - - forked-path - false - -Prelease - - - - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-generated-sources - generate-sources - - add-source - - - - ${generatedSourcesDir} - - - - - - - - org.jacoco - jacoco-maven-plugin - ${version.plugin.jacoco} - - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.plugin.compiler} - - - - org.ow2.asm - asm - 9.4 - - - - ${javac.src.version} - ${javac.target.version} - true - true - true - - true - ${javac.debuglevel} - - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.plugin.enforcer} - - - enforce-java - validate - - enforce - - - - - - [1.6,) - [ERROR] The currently supported version of Java is 1.6 or higher - - - [3.0,) - [ERROR] The currently supported version of Maven is 3.0 or higher - - - true - true - true - clean,deploy,site - [ERROR] Best Practice is to always define plugin versions! - - - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - - org.apache.maven.plugins - maven-jar-plugin - ${version.plugin.jar} - - - - org.apache.maven.plugins - maven-scm-plugin - 1.13.0 - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.13.0 - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.plugin.surefire} - - - - - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.13.0 - - - - org.apache.maven.scm - maven-scm-manager-plexus - 1.13.0 - - - - - org.kathrynhuxtable.maven.wagon - wagon-gitsite - 0.3.1 - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - ${sun.boot.class.path} - com.google.doclava.Doclava - false - -J-Xmx1024m - ${javadoc.maxmemory} - - http://docs.oracle.com/javase/8/docs/api/ - - - com.google.doclava - doclava - 1.0.3 - - - -hdf project.name "${project.name}" - -d ${project.reporting.outputDirectory}/apidocs - - - - - default - - javadoc - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.4.2 - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.3.0 - - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0 - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.plugin.surefire} - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.20.0 - - true - 100 - 1.5 - - - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - - - Todo Work - - - TODO - ignoreCase - - - FIXME - ignoreCase - - - - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-source-plugin - ${version.plugin.source} - - - attach-sources - - jar-no-fork - - - - - true - true - - - ${javac.src.version} - ${javac.target.version} - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - - attach-javadocs - - jar - - - true - - - true - true - - - ${javac.src.version} - ${javac.target.version} - - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.lastUpdated b/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.lastUpdated deleted file mode 100644 index 18906fd0e..000000000 --- a/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:28 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact com.fasterxml\:oss-parent\:pom\:50 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139808381 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139808500 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139808621 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139808798 diff --git a/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.sha1 b/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.sha1 deleted file mode 100644 index 10f9f2c3d..000000000 --- a/code/arachne/com/fasterxml/oss-parent/50/oss-parent-50.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2e5ec5928fa4a136254d3dfeb8c56f47b049d8ed \ No newline at end of file diff --git a/code/arachne/com/fasterxml/oss-parent/55/_remote.repositories b/code/arachne/com/fasterxml/oss-parent/55/_remote.repositories deleted file mode 100644 index 1b743f48a..000000000 --- a/code/arachne/com/fasterxml/oss-parent/55/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:57 EDT 2024 -oss-parent-55.pom>central= diff --git a/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom b/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom deleted file mode 100644 index 452755230..000000000 --- a/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom +++ /dev/null @@ -1,658 +0,0 @@ - - - - 4.0.0 - - com.fasterxml - oss-parent - 55 - pom - - FasterXML.com parent pom - FasterXML.com parent pom - http://github.com/FasterXML/ - - FasterXML - http://fasterxml.com/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - cowtowncoder - Tatu Saloranta - tatu@fasterxml.com - - - - - scm:git:git@github.com:FasterXML/oss-parent.git - scm:git:git@github.com:FasterXML/oss-parent.git - http://github.com/FasterXML/oss-parent - oss-parent-55 - - - GitHub Issue Management - https://github.com/FasterXML/${project.artifactId}/issues - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - UTF-8 - UTF-8 - UTF-8 - - 2023-09-26T22:48:41Z - - ${project.build.directory}/generated-sources - - 1g - - - 1.6 - 1.6 - - - lines,source,vars - yyyy-MM-dd HH:mm:ssZ - - ${project.groupId}.*;version=${project.version} - * - - - - ${range;[===,=+);${@}} - {maven-resources} - - - - - - 5.1.9 - - 3.3.1 - 3.6.0 - 2.7 - 3.11.0 - 3.1.1 - 3.4.1 - 3.1.0 - - 3.1.1 - 0.8.10 - 3.3.0 - - 3.6.0 - - - 1.0.0.Final - - 3.21.0 - 3.0.1 - 1.5.3 - 3.3.1 - - 2.0.1 - 3.5.1 - 4.0.0-M9 - - 3.3.0 - - 3.1.2 - - 3.2.0 - - - - - 4.13.2 - - 3.24.2 - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-clean-plugin - ${version.plugin.clean} - - - org.apache.maven.plugins - maven-dependency-plugin - ${version.plugin.dependency} - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.plugin.deploy} - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.plugin.gpg} - - - org.apache.maven.plugins - maven-install-plugin - ${version.plugin.install} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.plugin.resources} - - - - org.apache.maven.plugins - maven-shade-plugin - ${version.plugin.shade} - - - org.apache.maven.plugins - maven-site-plugin - ${version.plugin.site} - - - org.apache.maven.plugins - maven-source-plugin - ${version.plugin.source} - - - org.apache.maven.plugins - maven-wrapper-plugin - ${version.plugin.wrapper} - - - - - org.moditect - moditect-maven-plugin - ${version.plugin.moditect} - - - - - com.google.code.maven-replacer-plugin - replacer - - ${version.plugin.replacer} - - - org.codehaus.mojo - cobertura-maven-plugin - ${version.plugin.cobertura} - - - - org.apache.felix - maven-bundle-plugin - ${version.plugin.bundle} - - - - - - - <_removeheaders>Include-Resource,JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME - <_versionpolicy>${osgi.versionpolicy} - ${project.name} - ${project.groupId}.${project.artifactId} - ${project.description} - ${osgi.export} - ${osgi.private} - ${osgi.import} - ${osgi.dynamicImport} - ${osgi.includeResource} - ${project.url} - ${osgi.requiredExecutionEnvironment} - - ${javac.src.version} - ${javac.target.version} - - ${project.name} - ${project.version} - ${project.groupId} - ${project.organization.name} - - ${project.name} - ${project.version} - ${project.organization.name} - - ${osgi.mainClass} - - - - - - - - org.apache.maven.plugins - maven-release-plugin - ${version.plugin.release} - - forked-path - false - -Prelease - - - - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-generated-sources - generate-sources - - add-source - - - - ${generatedSourcesDir} - - - - - - - - org.jacoco - jacoco-maven-plugin - ${version.plugin.jacoco} - - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.plugin.compiler} - - - - org.ow2.asm - asm - 9.5 - - - - ${javac.src.version} - ${javac.target.version} - true - true - - true - ${javac.debuglevel} - - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.plugin.enforcer} - - - enforce-java - validate - - enforce - - - - - - [1.6,) - [ERROR] The currently supported version of Java is 1.6 or higher - - - [3.0,) - [ERROR] The currently supported version of Maven is 3.0 or higher - - - true - true - true - clean,deploy,site - [ERROR] Best Practice is to always define plugin versions! - - - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - - org.apache.maven.plugins - maven-jar-plugin - ${version.plugin.jar} - - - - org.apache.maven.plugins - maven-scm-plugin - ${version.plugin.scm} - - - org.apache.maven.scm - maven-scm-provider-gitexe - ${version.plugin.scm} - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.plugin.surefire} - - - - - - - org.apache.maven.scm - maven-scm-provider-gitexe - ${version.plugin.scm} - - - - org.apache.maven.scm - maven-scm-manager-plexus - ${version.plugin.scm} - - - - - org.kathrynhuxtable.maven.wagon - wagon-gitsite - 0.3.1 - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - ${sun.boot.class.path} - com.google.doclava.Doclava - false - -J-Xmx1024m - ${javadoc.maxmemory} - - http://docs.oracle.com/javase/8/docs/api/ - - - com.google.doclava - doclava - 1.0.3 - - - -hdf project.name "${project.name}" - -d ${project.reporting.outputDirectory}/apidocs - - - - - default - - javadoc - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.4.5 - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.3.0 - - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0 - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.plugin.surefire} - - - - org.apache.maven.plugins - maven-pmd-plugin - ${version.plugin.pmd} - - true - 100 - 1.5 - - - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - - - Todo Work - - - TODO - ignoreCase - - - FIXME - ignoreCase - - - - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-source-plugin - ${version.plugin.source} - - - attach-sources - - jar-no-fork - - - - - true - true - - - ${javac.src.version} - ${javac.target.version} - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - - attach-javadocs - - jar - - - true - - - true - true - - - ${javac.src.version} - ${javac.target.version} - - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom.sha1 b/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom.sha1 deleted file mode 100644 index 72f9549f1..000000000 --- a/code/arachne/com/fasterxml/oss-parent/55/oss-parent-55.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -24ad110e0e507856ae662736d6c6ef5b101a1689 \ No newline at end of file diff --git a/code/arachne/com/fasterxml/oss-parent/56/_remote.repositories b/code/arachne/com/fasterxml/oss-parent/56/_remote.repositories deleted file mode 100644 index 9ccb9324a..000000000 --- a/code/arachne/com/fasterxml/oss-parent/56/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:51 EDT 2024 -oss-parent-56.pom>central= diff --git a/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom b/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom deleted file mode 100644 index 39d67a520..000000000 --- a/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom +++ /dev/null @@ -1,658 +0,0 @@ - - - - 4.0.0 - - com.fasterxml - oss-parent - 56 - pom - - FasterXML.com parent pom - FasterXML.com parent pom - http://github.com/FasterXML/ - - FasterXML - http://fasterxml.com/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - cowtowncoder - Tatu Saloranta - tatu@fasterxml.com - - - - - scm:git:git@github.com:FasterXML/oss-parent.git - scm:git:git@github.com:FasterXML/oss-parent.git - http://github.com/FasterXML/oss-parent - oss-parent-56 - - - GitHub Issue Management - https://github.com/FasterXML/${project.artifactId}/issues - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - UTF-8 - UTF-8 - UTF-8 - - 2023-11-07T02:34:42Z - - ${project.build.directory}/generated-sources - - 1g - - - 1.6 - 1.6 - - - lines,source,vars - yyyy-MM-dd HH:mm:ssZ - - ${project.groupId}.*;version=${project.version} - * - - - - ${range;[===,=+);${@}} - {maven-resources} - - - - - - 5.1.9 - - 3.3.2 - 3.6.1 - 2.7 - 3.11.0 - 3.1.1 - 3.4.1 - 3.1.0 - - 3.1.1 - 0.8.10 - 3.3.0 - - 3.6.0 - - - 1.1.0 - - 3.21.2 - 3.0.1 - 1.5.3 - 3.3.1 - - 2.0.1 - 3.5.1 - 4.0.0-M11 - - 3.3.0 - - 3.2.1 - - 3.2.0 - - - - - 4.13.2 - - 3.24.2 - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-clean-plugin - ${version.plugin.clean} - - - org.apache.maven.plugins - maven-dependency-plugin - ${version.plugin.dependency} - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.plugin.deploy} - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.plugin.gpg} - - - org.apache.maven.plugins - maven-install-plugin - ${version.plugin.install} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.plugin.resources} - - - - org.apache.maven.plugins - maven-shade-plugin - ${version.plugin.shade} - - - org.apache.maven.plugins - maven-site-plugin - ${version.plugin.site} - - - org.apache.maven.plugins - maven-source-plugin - ${version.plugin.source} - - - org.apache.maven.plugins - maven-wrapper-plugin - ${version.plugin.wrapper} - - - - - org.moditect - moditect-maven-plugin - ${version.plugin.moditect} - - - - - com.google.code.maven-replacer-plugin - replacer - - ${version.plugin.replacer} - - - org.codehaus.mojo - cobertura-maven-plugin - ${version.plugin.cobertura} - - - - org.apache.felix - maven-bundle-plugin - ${version.plugin.bundle} - - - - - - - <_removeheaders>Include-Resource,JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME - <_versionpolicy>${osgi.versionpolicy} - ${project.name} - ${project.groupId}.${project.artifactId} - ${project.description} - ${osgi.export} - ${osgi.private} - ${osgi.import} - ${osgi.dynamicImport} - ${osgi.includeResource} - ${project.url} - ${osgi.requiredExecutionEnvironment} - - ${javac.src.version} - ${javac.target.version} - - ${project.name} - ${project.version} - ${project.groupId} - ${project.organization.name} - - ${project.name} - ${project.version} - ${project.organization.name} - - ${osgi.mainClass} - - - - - - - - org.apache.maven.plugins - maven-release-plugin - ${version.plugin.release} - - forked-path - false - -Prelease - - - - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-generated-sources - generate-sources - - add-source - - - - ${generatedSourcesDir} - - - - - - - - org.jacoco - jacoco-maven-plugin - ${version.plugin.jacoco} - - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.plugin.compiler} - - - - org.ow2.asm - asm - 9.6 - - - - ${javac.src.version} - ${javac.target.version} - true - true - - true - ${javac.debuglevel} - - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.plugin.enforcer} - - - enforce-java - validate - - enforce - - - - - - [1.6,) - [ERROR] The currently supported version of Java is 1.6 or higher - - - [3.0,) - [ERROR] The currently supported version of Maven is 3.0 or higher - - - true - true - true - clean,deploy,site - [ERROR] Best Practice is to always define plugin versions! - - - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - - org.apache.maven.plugins - maven-jar-plugin - ${version.plugin.jar} - - - - org.apache.maven.plugins - maven-scm-plugin - ${version.plugin.scm} - - - org.apache.maven.scm - maven-scm-provider-gitexe - ${version.plugin.scm} - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.plugin.surefire} - - - - - - - org.apache.maven.scm - maven-scm-provider-gitexe - ${version.plugin.scm} - - - - org.apache.maven.scm - maven-scm-manager-plexus - ${version.plugin.scm} - - - - - org.kathrynhuxtable.maven.wagon - wagon-gitsite - 0.3.1 - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - ${sun.boot.class.path} - com.google.doclava.Doclava - false - -J-Xmx1024m - ${javadoc.maxmemory} - - http://docs.oracle.com/javase/8/docs/api/ - - - com.google.doclava - doclava - 1.0.3 - - - -hdf project.name "${project.name}" - -d ${project.reporting.outputDirectory}/apidocs - - - - - default - - javadoc - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.4.5 - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.3.1 - - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0 - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.plugin.surefire} - - - - org.apache.maven.plugins - maven-pmd-plugin - ${version.plugin.pmd} - - true - 100 - 1.5 - - - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - - - Todo Work - - - TODO - ignoreCase - - - FIXME - ignoreCase - - - - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-source-plugin - ${version.plugin.source} - - - attach-sources - - jar-no-fork - - - - - true - true - - - ${javac.src.version} - ${javac.target.version} - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - - attach-javadocs - - jar - - - true - - - true - true - - - ${javac.src.version} - ${javac.target.version} - - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom.sha1 b/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom.sha1 deleted file mode 100644 index b95b42274..000000000 --- a/code/arachne/com/fasterxml/oss-parent/56/oss-parent-56.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -355a98a7c92b8dd838bf0b32b04fd991bec14570 \ No newline at end of file diff --git a/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/_remote.repositories b/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/_remote.repositories deleted file mode 100644 index 606edb3a8..000000000 --- a/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:22 EDT 2024 -caffeine-3.1.8.pom>central= diff --git a/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom b/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom deleted file mode 100644 index 3823db33b..000000000 --- a/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - 4.0.0 - com.github.ben-manes.caffeine - caffeine - 3.1.8 - Caffeine cache - A high performance caching library - https://github.com/ben-manes/caffeine - 2014 - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - ben-manes - Ben Manes - ben.manes@gmail.com - - owner - developer - - - - - scm:git:https://github.com/ben-manes/caffeine.git - scm:git:ssh://git@github.com/ben-manes/caffeine.git - https://github.com/ben-manes/caffeine - - - - org.checkerframework - checker-qual - 3.37.0 - compile - - - com.google.errorprone - error_prone_annotations - 2.21.1 - compile - - - diff --git a/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom.sha1 b/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom.sha1 deleted file mode 100644 index 7d9492dfb..000000000 --- a/code/arachne/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5ae9f193f45f0eb867d52ae3347637b38534a0ef \ No newline at end of file diff --git a/code/arachne/com/github/docker-java/docker-java-api/3.3.6/_remote.repositories b/code/arachne/com/github/docker-java/docker-java-api/3.3.6/_remote.repositories deleted file mode 100644 index dd7f29512..000000000 --- a/code/arachne/com/github/docker-java/docker-java-api/3.3.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:13 EDT 2024 -docker-java-api-3.3.6.pom>central= diff --git a/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom b/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom deleted file mode 100644 index 16cd32758..000000000 --- a/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom +++ /dev/null @@ -1,90 +0,0 @@ - - 4.0.0 - - - com.github.docker-java - docker-java-parent - 3.3.6 - ../pom.xml - - - docker-java-api - jar - - docker-java-api - https://github.com/docker-java/docker-java - Java API Client for Docker - - - com.github.dockerjava.api - - - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson.version} - - - - org.slf4j - slf4j-api - ${slf4j-api.version} - - - - com.google.code.findbugs - annotations - 3.0.1u2 - provided - - - - org.projectlombok - lombok - 1.18.30 - provided - - - - - org.junit.jupiter - junit-jupiter - 5.10.0 - test - - - - com.tngtech.archunit - archunit-junit5 - 0.18.0 - test - - - - com.tngtech.archunit - archunit - 0.18.0 - test - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - com.github.dockerjava.api.* - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - diff --git a/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom.sha1 b/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom.sha1 deleted file mode 100644 index dfb3a6f4f..000000000 --- a/code/arachne/com/github/docker-java/docker-java-api/3.3.6/docker-java-api-3.3.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ea55cdb21d2bc1001f01a3ce05eb68a1d1ec72a0 \ No newline at end of file diff --git a/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/_remote.repositories b/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/_remote.repositories deleted file mode 100644 index 5c42ee79a..000000000 --- a/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:13 EDT 2024 -docker-java-parent-3.3.6.pom>central= diff --git a/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom b/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom deleted file mode 100644 index 7f5226e45..000000000 --- a/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom +++ /dev/null @@ -1,363 +0,0 @@ - - 4.0.0 - - com.github.docker-java - docker-java-parent - pom - 3.3.6 - - docker-java-parent - https://github.com/docker-java/docker-java - Java API Client for Docker - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:git@github.com:docker-java/docker-java.git - git@github.com:docker-java/docker-java.git - scm:git:git@github.com:docker-java/docker-java.git - HEAD - - - - - marcuslinke - Marcus Linke - marcus.linke@gmx.de - - - kostyasha - Kanstantsin Shautsou - kanstantsin.sha@gmail.com - - - kpelykh - Konstantin Pelykh - kpelykh@gmail.com - - - bsideup - Sergei Egorov - bsideup@gmail.com - - - - - UTF-8 - UTF-8 - true - false - 1.8 - 1.8 - - 2.30.1 - 2.10.3 - 2.10.3 - 4.5.12 - 1.21 - 2.13.0 - 3.12.0 - 1.7.30 - - 1.76 - 2.6.1 - 19.0 - - - 1.2.3 - 4.1.46.Final - 2.2 - 1.8 - 2.3.3 - 3.3.0 - - - 3.0.2 - 3.8.1 - 3.0.0-M1 - 3.0.0-M4 - 3.0.0-M4 - 1.8 - 1.1.2.RELEASE - 3.0.0 - 1.6.8 - - - - docker-java-api - docker-java-bom - docker-java-core - docker-java-transport - docker-java-transport-tck - docker-java-transport-netty - docker-java-transport-jersey - docker-java-transport-okhttp - docker-java-transport-httpclient5 - docker-java-transport-zerodep - docker-java - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-deploy-plugin - 3.0.0-M1 - - - org.apache.maven.plugins - maven-resources-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - org.apache.maven.plugins - maven-install-plugin - 3.0.0-M1 - - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - ${jdk.source} - ${jdk.target} - ${jdk.debug} - ${jdk.optimize} - - - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - - test-jar - - - - - - - ${automatic.module.name} - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${maven-antrun-plugin.version} - - - validate - - run - - - - ******************************************************************* - ******************************************************************* - [project.name] : ${project.name} - [project.basedir] : ${project.basedir} - [project.version] : ${project.version} - [project.artifactId] ${project.artifactId} - [project.build.directory] ${project.build.directory} - [jdk.source] : ${jdk.source} - [jdk.target] : ${jdk.target} - [jdk.debug] : ${jdk.debug} - [jdk.optimize] : ${jdk.optimize} - [source encoding]: ${project.build.sourceEncoding} - [LocalRepository] : ${settings.localRepository} - ******************************************************************* - ******************************************************************* - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - -Xdoclint:none - - - - attach-javadocs - - jar - - - - - - org.apache.felix - maven-bundle-plugin - 4.2.1 - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - 0.18.3 - - - - com.github.docker-java - ${project.artifactId} - 3.3.4 - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.jar - - - - true - public - true - - - METHOD_NEW_DEFAULT - true - true - - - METHOD_ABSTRACT_NOW_DEFAULT - true - true - - - - - - - verify - - cmp - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.maven.plugins - maven-source-plugin - - - - - - docker-java-analyses - - true - - - - - maven-checkstyle-plugin - 2.17 - - - checkstyle - validate - - check - - - - - UTF-8 - true - true - false - - - ${maven.multiModuleProjectDirectory}/src/test/resources/checkstyle/checkstyle-config.xml - - - - - - - - - diff --git a/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom.sha1 b/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom.sha1 deleted file mode 100644 index 0f43a5975..000000000 --- a/code/arachne/com/github/docker-java/docker-java-parent/3.3.6/docker-java-parent-3.3.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fe218b62edab61693cd459c77cd3e19cbe934dd7 \ No newline at end of file diff --git a/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/_remote.repositories b/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/_remote.repositories deleted file mode 100644 index 8c26e6f34..000000000 --- a/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:13 EDT 2024 -docker-java-transport-zerodep-3.3.6.pom>central= diff --git a/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom b/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom deleted file mode 100644 index 7b1e64bc9..000000000 --- a/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom +++ /dev/null @@ -1,109 +0,0 @@ - - - - docker-java-parent - com.github.docker-java - 3.3.6 - - 4.0.0 - docker-java-transport-zerodep - docker-java-transport-zerodep - Java API Client for Docker - https://github.com/docker-java/docker-java - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - true - - - - org.apache.felix - maven-bundle-plugin - true - - - com.github.dockerjava.zerodep.* - - - - - maven-shade-plugin - - - package - - shade - - - - - true - true - true - - - com.github.docker-java:docker-java-transport - net.java.dev.jna:jna-platform - net.java.dev.jna:* - org.slf4j:slf4j-api - - - - - com.github.docker-java:docker-java-transport-httpclient5 - - com/github/dockerjava/httpclient5/ApacheDockerHttpClient.class - com/github/dockerjava/httpclient5/ApacheDockerHttpClient$* - - - - org.apache.httpcomponents.client5:httpclient5 - - mozilla/* - - - - - - org.apache - com.github.dockerjava.zerodep.shaded.org.apache - - - com.github.dockerjava.httpclient5 - com.github.dockerjava.zerodep - - - - - - - - - - - - com.github.docker-java - docker-java-transport - 3.3.6 - compile - - - org.slf4j - slf4j-api - 1.7.25 - compile - - - net.java.dev.jna - jna - 5.13.0 - compile - - - - com.github.dockerjava.transport.zerodep - - diff --git a/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom.sha1 b/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom.sha1 deleted file mode 100644 index f5774ca1e..000000000 --- a/code/arachne/com/github/docker-java/docker-java-transport-zerodep/3.3.6/docker-java-transport-zerodep-3.3.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e957328b88d4e08770bbd5ffbe3907d2ab773685 \ No newline at end of file diff --git a/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/_remote.repositories b/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/_remote.repositories deleted file mode 100644 index 66fcce20f..000000000 --- a/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:13 EDT 2024 -docker-java-transport-3.3.6.pom>central= diff --git a/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom b/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom deleted file mode 100644 index bd34e13db..000000000 --- a/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom +++ /dev/null @@ -1,59 +0,0 @@ - - 4.0.0 - - - com.github.docker-java - docker-java-parent - 3.3.6 - ../pom.xml - - - docker-java-transport - jar - - docker-java-transport - https://github.com/docker-java/docker-java - Java API Client for Docker - - - com.github.dockerjava.transport - - - - - com.google.code.findbugs - annotations - 3.0.1u2 - provided - - - - org.immutables - value - 2.8.2 - provided - - - - net.java.dev.jna - jna - 5.13.0 - provided - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - com.github.dockerjava.transport.* - - - - - - diff --git a/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom.sha1 b/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom.sha1 deleted file mode 100644 index ebfe52e9c..000000000 --- a/code/arachne/com/github/docker-java/docker-java-transport/3.3.6/docker-java-transport-3.3.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -18cde50c6be9c26da626d0d02c992ad3e34d0d44 \ No newline at end of file diff --git a/code/arachne/com/github/jknack/handlebars.java/4.0.6/_remote.repositories b/code/arachne/com/github/jknack/handlebars.java/4.0.6/_remote.repositories deleted file mode 100644 index 168120ad5..000000000 --- a/code/arachne/com/github/jknack/handlebars.java/4.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:09 EDT 2024 -handlebars.java-4.0.6.pom>central= diff --git a/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom b/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom deleted file mode 100644 index 9edd8253c..000000000 --- a/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom +++ /dev/null @@ -1,489 +0,0 @@ - - - - 4.0.0 - com.github.jknack - handlebars.java - 4.0.6 - pom - - Handlebars.java - Logic-less and semantic templates with Java - - https://github.com/jknack/handlebars.java - - - handlebars - handlebars-helpers - handlebars-springmvc - handlebars-jackson2 - handlebars-markdown - handlebars-humanize - handlebars-proto - handlebars-guava-cache - handlebars-maven-plugin - handlebars-maven-plugin-tests - integration-tests - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - jknack - Edgar Espina - https://github.com/jknack - - - - - scm:git:git@github.com:jknack/handlebars.java.git - scm:git:git@github.com:jknack/handlebars.java.git - scm:git:git@github.com:jknack/handlebars.java.git - HEAD - - - - - ossrh - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - ossrh - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - org.apache.commons - commons-lang3 - 3.1 - - - - - com.google.guava - guava - 14.0.1 - - - - org.springframework - spring-webmvc - 3.1.1.RELEASE - - - - org.springframework - spring-test - 3.1.1.RELEASE - test - - - - - org.mozilla - rhino - 1.7R4 - - - - - org.slf4j - slf4j-api - 1.6.4 - - - - - javax.servlet - servlet-api - 2.5 - provided - - - - - org.codehaus.jackson - jackson-mapper-asl - ${jackson-version} - - - - - com.fasterxml.jackson.core - jackson-databind - ${jackson2-version} - - - - - org.pegdown - pegdown - 1.2.1 - - - - - com.github.mfornos - humanize-slim - 1.1.1 - - - - - ch.qos.logback - logback-classic - 1.0.3 - test - - - - junit - junit - test - 4.11 - - - - org.yaml - snakeyaml - 1.10 - test - - - - org.easymock - easymock - 3.1 - - - - org.powermock - powermock-api-easymock - 1.5.2 - test - - - org.easymock - easymock - - - - - - org.powermock - powermock-module-junit4 - 1.5.2 - test - - - - - - - - - - maven-compiler-plugin - 3.1 - - 1.7 - 1.7 - - - - - maven-jar-plugin - 2.4 - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.16 - - - -Duser.language=en -Duser.country=US - - **/*Test.java - **/Issue*.java - **/Hbs*.java - - - **/*BenchTest.java - - - - - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.9 - - true - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - true - checkstyle.xml - true - **/HbsServer* - - - - checkstyle - verify - - checkstyle - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.6 - - xml - 256m - true - - - com.github.jknack.handlebars.server.* - - - com/github/jknack/handlebars/internal/Hbs*.class - com/github/jknack/handlebars/server/Hbs*.class - - - - - - - org.eluder.coveralls - coveralls-maven-plugin - 2.1.0 - - - - com.mycila.maven-license-plugin - maven-license-plugin - 1.10.b1 - -
    LICENSE
    - true - true - - src/main/java/**/*.java - -
    - - - verify - - format - - - -
    - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.3 - true - - ossrh - https://oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.1 - - -
    -
    - - - - jdk8 - - handlebars - handlebars-helpers - handlebars-springmvc - handlebars-jackson2 - handlebars-markdown - handlebars-humanize - handlebars-proto - handlebars-guava-cache - handlebars-maven-plugin - handlebars-maven-plugin-tests - integration-tests - handlebars-jdk8-tests - - - [1.8,) - - - - bench - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.12.3 - false - - - **/*BenchTest.java - - - - run.bench - true - - - - - - - - - - sonatype-oss-release - - - - - org.codehaus.mojo - exec-maven-plugin - 1.2.1 - - - initialize - invoke build - - exec - - - - - git - - submodule - update - --init - --recursive - - - 0 - - 1 - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - attach-sources - - jar-no-fork - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - attach-javadocs - - jar - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - sign-artifacts - verify - - sign - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.4.2 - - forked-path - false - -Psonatype-oss-release - true - v@{project.version} - release - deploy - - - - - - - - - 3.0 - - - - - UTF-8 - 2.1.4 - 1.9.12 - yyyy-MM-dd HH:mm:ssa - ${maven.build.timestamp} - -
    diff --git a/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom.sha1 b/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom.sha1 deleted file mode 100644 index 988d4c47b..000000000 --- a/code/arachne/com/github/jknack/handlebars.java/4.0.6/handlebars.java-4.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b3d9c9891b71b24b8e9dbe681e2cd9843c7dca9c \ No newline at end of file diff --git a/code/arachne/com/github/jknack/handlebars/4.0.6/_remote.repositories b/code/arachne/com/github/jknack/handlebars/4.0.6/_remote.repositories deleted file mode 100644 index 4c6585bd1..000000000 --- a/code/arachne/com/github/jknack/handlebars/4.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:09 EDT 2024 -handlebars-4.0.6.pom>central= diff --git a/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom b/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom deleted file mode 100644 index a896307c5..000000000 --- a/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom +++ /dev/null @@ -1,196 +0,0 @@ - - - - - com.github.jknack - handlebars.java - 4.0.6 - - - 4.0.0 - com.github.jknack - handlebars - - Handlebars - Logic-less and semantic templates with Java - - - - - org.antlr - antlr4-maven-plugin - ${antlr-version} - - src/main/antlr4 - target/antlr4 - true - - - - - antlr4 - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.7 - - - add-antlr-source - generate-sources - - add-source - - - - src/main/antlr4 - target/antlr4 - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - test-jar - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.2 - - - none - - findbugs - check - - - - - - - org.apache.felix - maven-bundle-plugin - 2.5.4 - - - bundle-manifest - process-classes - - manifest - - - - - - - - - - - org.apache.commons - commons-lang3 - - - - - org.antlr - antlr4-runtime - ${antlr-version} - - - org.abego.treelayout - org.abego.treelayout.core - - - - - - - org.mozilla - rhino - - - - - org.slf4j - slf4j-api - - - - - javax.servlet - servlet-api - provided - - - - - ch.qos.logback - logback-classic - test - - - - junit - junit - test - - - - org.yaml - snakeyaml - test - - - - org.easymock - easymock - test - - - - org.apache.commons - commons-io - 1.3.2 - test - - - - org.powermock - powermock-api-easymock - test - - - - org.powermock - powermock-module-junit4 - test - - - - - - 4.5.1-1 - - diff --git a/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom.sha1 b/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom.sha1 deleted file mode 100644 index 8b87d74ba..000000000 --- a/code/arachne/com/github/jknack/handlebars/4.0.6/handlebars-4.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b660ac12670b7fd25ea231de9f772a3903814d82 \ No newline at end of file diff --git a/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/_remote.repositories b/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/_remote.repositories deleted file mode 100644 index 8ad3cf74e..000000000 --- a/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:13 EDT 2024 -dbunit-plus-2.0.1.pom>central= diff --git a/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom b/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom deleted file mode 100644 index 29e3281eb..000000000 --- a/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom +++ /dev/null @@ -1,479 +0,0 @@ - - - - - - - 4.0.0 - com.github.mjeanroy - dbunit-plus - 2.0.1 - dbunit-plus - DbUnit extension (provide simple integration with JUnit, Spring and Liquibase). - jar - https://github.com/mjeanroy/dbunit-plus - - - - MIT License - http://www.opensource.org/licenses/mit-license.php - repo - - - - - - mjeanroy - Mickael Jeanroy - mickael.jeanroy@gmail.com - - - - - scm:git:git@github.com:mjeanroy/dbunit-plus.git - scm:git:git@github.com:mjeanroy/dbunit-plus.git - https://github.com/mjeanroy/dbunit-plus - dbunit-plus-2.0.1 - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2 - - - - - com.github.mjeanroy.dbunit - - - UTF-8 - 1.8 - ${java.version} - ${java.version} - ${java.source.version} - ${java.source.version} - ${java.target.version} - ${java.target.version} - - - 3.1.0 - 2.22.2 - 3.8.0 - 1.4.1 - 2.5.3 - 1.6 - 3.0.1 - 3.1.0 - 2.5.2 - 3.1.1 - 3.1.0 - 2.8.2 - 3.7.1 - 2.7 - - - 1.7.26 - 2.11.2 - 4.12 - 5.4.2 - 2.6.0 - 1.9.13 - 2.9.8 - 2.8.5 - 1.24 - 2.4.1 - 5.1.6.RELEASE - 3.6.3 - 27.1-jre - - - 3.12.2 - 2.27.0 - 1.2.3 - 2.23.2 - 3.1.8 - - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven-gpg-plugin.version} - - - sign-artifacts - verify - - sign - - - - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - - jar-no-fork - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${maven-enforcer-plugin.version} - - - enforce-maven - - enforce - - - - - [1.8.0,) - - - - - - - - - - - - - - test-repo - file://${project.basedir}/test-repo - - - - - - org.slf4j - slf4j-api - ${slf4j.version} - true - - - - org.apache.logging.log4j - log4j-api - ${log4j.version} - true - - - org.apache.logging.log4j - log4j-core - ${log4j.version} - true - - - - junit - junit - ${junit.version} - provided - - - org.junit.jupiter - junit-jupiter-api - ${jupiter.version} - provided - - - org.dbunit - dbunit - ${dbunit.version} - provided - - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - true - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - ${jackson.version} - true - - - com.google.code.gson - gson - ${gson.version} - true - - - org.codehaus.jackson - jackson-mapper-asl - ${jackson1.version} - true - - - org.yaml - snakeyaml - ${snakeyaml.version} - true - - - com.google.guava - guava - ${guava.version} - true - - - - org.springframework - spring-test - ${spring.version} - true - - - org.springframework - spring-jdbc - ${spring.version} - true - - - org.springframework - spring-context - ${spring.version} - true - - - - org.hsqldb - hsqldb - ${hsqldb.version} - true - - - org.liquibase - liquibase-core - ${liquibase.version} - true - - - - org.junit.jupiter - junit-jupiter-engine - ${jupiter.version} - test - - - org.junit.vintage - junit-vintage-engine - ${jupiter.version} - test - - - org.assertj - assertj-core - ${assertj.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - ch.qos.logback - logback-classic - ${logback.version} - test - - - com.github.tomakehurst - wiremock - ${wiremock.version} - test - - - com.github.mjeanroy - dbunit-dataset - 0.1.0 - test - - - nl.jqno.equalsverifier - equalsverifier - ${equalsverifier.version} - test - - - - - - - org.apache.maven.plugins - maven-clean-plugin - ${maven-clean-plugin.version} - - - org.apache.maven.plugins - maven-install-plugin - ${maven-install-plugin.version} - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - - ${java-module-name} - - - - - - org.apache.maven.plugins - maven-resources-plugin - ${maven-resources-plugin.version} - - - org.apache.maven.plugins - maven-deploy-plugin - ${maven-deploy-plugin.version} - - - org.apache.maven.plugins - maven-site-plugin - ${maven-site-plugin.version} - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - ${project.build.sourceEncoding} - ${maven.compiler.source} - ${maven.compiler.target} - ${maven.compiler.testSource} - ${maven.compiler.testTarget} - true - - - - org.codehaus.mojo - versions-maven-plugin - ${versions-maven-plugin.version} - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${maven-enforcer-plugin.version} - - - enforce-maven - - enforce - - - - - 3.0 - - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven-gpg-plugin.version} - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - org.apache.maven.plugins - maven-release-plugin - ${maven-release-plugin.version} - - true - forked-path - false - -Prelease - - - - - \ No newline at end of file diff --git a/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom.sha1 b/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom.sha1 deleted file mode 100644 index 9d0e56228..000000000 --- a/code/arachne/com/github/mjeanroy/dbunit-plus/2.0.1/dbunit-plus-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -23e943062edd364bceda6cdaf0664150ab272267 \ No newline at end of file diff --git a/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/_remote.repositories b/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/_remote.repositories deleted file mode 100644 index e33a4101f..000000000 --- a/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -scribejava-apis-8.3.3.pom>central= diff --git a/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom b/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom deleted file mode 100644 index e0899df6b..000000000 --- a/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom +++ /dev/null @@ -1,73 +0,0 @@ - - - 4.0.0 - - - com.github.scribejava - scribejava - 8.3.3 - ../pom.xml - - - com.github.scribejava - scribejava-apis - ScribeJava APIs - jar - - - - com.github.scribejava - scribejava-core - ${project.version} - - - com.github.scribejava - scribejava-httpclient-ahc - ${project.version} - test - - - com.github.scribejava - scribejava-httpclient-ning - ${project.version} - test - - - com.github.scribejava - scribejava-httpclient-okhttp - ${project.version} - test - - - com.github.scribejava - scribejava-httpclient-apache - ${project.version} - test - - - com.github.scribejava - scribejava-httpclient-armeria - ${project.version} - test - - - io.netty - netty-resolver - 4.1.84.Final - test - - - - - - - org.apache.felix - maven-bundle-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - - diff --git a/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom.sha1 b/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom.sha1 deleted file mode 100644 index 57e777190..000000000 --- a/code/arachne/com/github/scribejava/scribejava-apis/8.3.3/scribejava-apis-8.3.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -25bbd03e878f58b82a248fc4ac83ee164ec7a64b \ No newline at end of file diff --git a/code/arachne/com/github/scribejava/scribejava-core/8.3.3/_remote.repositories b/code/arachne/com/github/scribejava/scribejava-core/8.3.3/_remote.repositories deleted file mode 100644 index b4b9cd808..000000000 --- a/code/arachne/com/github/scribejava/scribejava-core/8.3.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -scribejava-core-8.3.3.pom>central= diff --git a/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom b/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom deleted file mode 100644 index 237d120c8..000000000 --- a/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom +++ /dev/null @@ -1,62 +0,0 @@ - - - 4.0.0 - - - com.github.scribejava - scribejava - 8.3.3 - ../pom.xml - - - com.github.scribejava - scribejava-core - ScribeJava Core - jar - - - - com.github.scribejava - scribejava-java8 - ${project.version} - - - commons-codec - commons-codec - 1.15 - true - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - true - - - javax.xml.bind - jaxb-api - 2.3.0 - true - - - - - - - org.apache.felix - maven-bundle-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - diff --git a/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom.sha1 b/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom.sha1 deleted file mode 100644 index 86d93aeb9..000000000 --- a/code/arachne/com/github/scribejava/scribejava-core/8.3.3/scribejava-core-8.3.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -29ef7c43f4bb0368e1e74712e5720cf813a722d7 \ No newline at end of file diff --git a/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/_remote.repositories b/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/_remote.repositories deleted file mode 100644 index 4c3c30fb6..000000000 --- a/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -scribejava-java8-8.3.3.pom>central= diff --git a/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom b/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom deleted file mode 100644 index 27da11d77..000000000 --- a/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom +++ /dev/null @@ -1,33 +0,0 @@ - - - 4.0.0 - - - com.github.scribejava - scribejava - 8.3.3 - ../pom.xml - - - com.github.scribejava - scribejava-java8 - ScribeJava Java 8+ compatibility stuff - jar - - - - - org.apache.felix - maven-bundle-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - - - - 8 - - diff --git a/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom.sha1 b/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom.sha1 deleted file mode 100644 index e3f903084..000000000 --- a/code/arachne/com/github/scribejava/scribejava-java8/8.3.3/scribejava-java8-8.3.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f9f4ed0b8364af269009f56795989be2565d899a \ No newline at end of file diff --git a/code/arachne/com/github/scribejava/scribejava/8.3.3/_remote.repositories b/code/arachne/com/github/scribejava/scribejava/8.3.3/_remote.repositories deleted file mode 100644 index ba82d361a..000000000 --- a/code/arachne/com/github/scribejava/scribejava/8.3.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -scribejava-8.3.3.pom>central= diff --git a/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom b/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom deleted file mode 100644 index b438813a2..000000000 --- a/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom +++ /dev/null @@ -1,305 +0,0 @@ - - 4.0.0 - com.github.scribejava - scribejava - pom - 8.3.3 - ScribeJava OAuth Library - The best OAuth library out there - https://github.com/scribejava/scribejava - - - org.sonatype.oss - oss-parent - 9 - - - - scribejava-core - scribejava-java8 - scribejava-apis - scribejava-httpclient-ahc - scribejava-httpclient-ning - scribejava-httpclient-okhttp - scribejava-httpclient-apache - scribejava-httpclient-armeria - - - - - MIT - https://github.com/scribejava/scribejava/blob/master/LICENSE.txt - - - - - scm:git:https://github.com/scribejava/scribejava - scm:git:https://github.com/scribejava/scribejava - https://github.com/scribejava/scribejava - scribejava-8.3.3 - - - - - kullfar - Stanislav Gromov - kullfar@gmail.com - - all - - +3 - - - - - - com.fasterxml.jackson.core - jackson-databind - 2.14.0 - - - junit - junit - 4.13.2 - test - - - com.squareup.okhttp3 - mockwebserver - 4.10.0 - test - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.2.0 - - - com.puppycrawl.tools - checkstyle - 10.4 - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - true - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - - org.apache.maven.plugins - maven-clean-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-install-plugin - 3.0.1 - - - - - - maven-compiler-plugin - 3.10.1 - - UTF-8 - ${java.release} - true - - -Xlint:-options - - - - - maven-deploy-plugin - 3.0.0 - - - default-deploy - deploy - - deploy - - - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.0 - - UTF-8 - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.1 - - ${java.home}/bin/javadoc - UTF-8 - -html5 - all,-missing - - - - attach-javadoc - - jar - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - validate - validate - - - ${basedir}/src - - checkstyle.xml - UTF-8 - true - - - check - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.19.0 - - - net.sourceforge.pmd - pmd-core - ${pmdVersion} - - - net.sourceforge.pmd - pmd-java - ${pmdVersion} - - - net.sourceforge.pmd - pmd-javascript - ${pmdVersion} - - - net.sourceforge.pmd - pmd-jsp - ${pmdVersion} - - - - 1.${java.release} - false - - ../pmd.xml - - true - true - true - - - - - check - - - - - - - - - 7 - 6.51.0 - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - - - - - - diff --git a/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom.sha1 b/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom.sha1 deleted file mode 100644 index 1ae2ffb83..000000000 --- a/code/arachne/com/github/scribejava/scribejava/8.3.3/scribejava-8.3.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1f8a65e8fac107fc1a35a26154dfeda3ce50139d \ No newline at end of file diff --git a/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/_remote.repositories b/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/_remote.repositories deleted file mode 100644 index b62319680..000000000 --- a/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:59 EDT 2024 -spring-test-dbunit-1.3.0.pom>central= diff --git a/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom b/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom deleted file mode 100644 index 24515574c..000000000 --- a/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom +++ /dev/null @@ -1,343 +0,0 @@ - - 4.0.0 - - org.sonatype.oss - oss-parent - 9 - - - com.github.springtestdbunit - spring-test-dbunit - 1.3.0 - jar - Spring Test DBUnit - Integration between the Spring testing framework and DBUnit - https://springtestdbunit.github.com/spring-test-dbunit - - https://github.com/springtestdbunit/spring-test-dbunit/issues - GitHub Issues - - - - Apache 2 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - https://github.com/springtestdbunit/spring-test-dbunit - scm:git:git://github.com/springtestdbunit/spring-test-dbunit.git - scm:git:git@github.com:springtestdbunit/spring-test-dbunit.git - spring-test-dbunit-1.3.0 - - - 3.2.3 - - - UTF-8 - 1.5 - 4.2.5.RELEASE - - - - Phillip Webb - https://github.com/philwebb - - - Mario Zagar - https://github.com/mzagar - - - - - - maven-antrun-plugin - 1.7 - - - copy-readme - pre-site - - run - - - - - - - - - fix-page-titles - site - - run - - - - - - - - - - - - - maven-clean-plugin - 2.5 - - - maven-javadoc-plugin - 2.9.1 - - - maven-compiler-plugin - 3.1 - - ${java.version} - ${java.version} - 1.8 - 1.8 - - - - maven-deploy-plugin - 2.8.2 - - - maven-eclipse-plugin - 2.9 - - - - .settings/org.eclipse.jdt.ui.prefs - ../eclipse/org.eclipse.jdt.ui.prefs - - - .settings/org.eclipse.jdt.core.prefs - ../eclipse/org.eclipse.jdt.core.prefs - - - - - - maven-install-plugin - 2.5.2 - - - maven-jar-plugin - 2.5 - - - maven-release-plugin - 2.5 - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.9.1 - - - - - default - - perform - - - spring-test-dbunit/pom.xml - - - - - - maven-resources-plugin - 2.6 - - - maven-site-plugin - 3.5 - - - org.apache.maven.doxia - doxia-module-markdown - 1.7 - - - - - - maven-javadoc-plugin - 2.10.3 - - - maven-jxr-plugin - 2.5 - - - maven-pmd-plugin - 3.6 - - ${java.version} - - - - maven-project-info-reports-plugin - 2.9 - - - maven-surefire-report-plugin - 2.19.1 - - - org.codehaus.mojo - cobertura-maven-plugin - 2.7 - - - xml - html - - - - - - - - maven-surefire-plugin - 2.17 - - - maven-source-plugin - 2.3 - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - 2.10.3 - - - attach-javadocs - - jar - - - - - - com.github.github - site-maven-plugin - 0.12 - - Creating site for ${project.version} - - - - - site - - site - - - - - - - - - junit - junit - 4.12 - provided - - - org.dbunit - dbunit - 2.5.2 - jar - provided - - - junit - junit - - - - - org.springframework - spring-beans - ${spring.version} - provided - - - org.springframework - spring-context - ${spring.version} - provided - - - org.springframework - spring-jdbc - ${spring.version} - provided - - - org.springframework - spring-test - ${spring.version} - provided - - - - - org.hibernate - hibernate-entitymanager - 4.3.6.Final - test - - - org.hsqldb - hsqldb - 2.3.3 - test - - - org.mockito - mockito-core - 1.9.5 - jar - test - - - org.slf4j - slf4j-api - 1.7.21 - test - - - org.slf4j - slf4j-log4j12 - 1.7.21 - test - - - org.springframework - spring-aop - ${spring.version} - provided - - - org.springframework - spring-orm - ${spring.version} - test - - - diff --git a/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom.sha1 b/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom.sha1 deleted file mode 100644 index 65ee953c5..000000000 --- a/code/arachne/com/github/springtestdbunit/spring-test-dbunit/1.3.0/spring-test-dbunit-1.3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cba270d51500198b5e80c7fb2f3bc9af1ab9db8b \ No newline at end of file diff --git a/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/_remote.repositories b/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/_remote.repositories deleted file mode 100644 index bf704ae83..000000000 --- a/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:10 EDT 2024 -jcip-annotations-1.0-1.pom>central= diff --git a/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom b/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom deleted file mode 100644 index 75be98511..000000000 --- a/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom +++ /dev/null @@ -1,174 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - com.github.stephenc.jcip - jcip-annotations - 1.0-1 - - JCIP Annotations under Apache License - - A clean room implementation of the JCIP Annotations based entirely on the specification provided by the javadocs. - - http://stephenc.github.com/jcip-annotations - 2013 - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - stephenc - Stephen Connolly - - developer - - - - - - 2.2.1 - - - - scm:git:git://github.com/stephenc/jcip-annotations.git - scm:git:git@github.com:stephenc/jcip-annotations.git - http://github.com/stephenc/jcip-annotations/tree/master/ - jcip-annotations-1.0-1 - - - github - http://github.com/stephenc/jcip-annotations/issues - - - - github.com - gitsite:git@github.com/stephenc/jcip-annotations.git - - - - - UTF-8 - UTF-8 - UTF-8 - - - - - junit - junit - 4.8.2 - test - - - - - - - - maven-clean-plugin - 2.5 - - - maven-compiler-plugin - 3.0 - - - maven-deploy-plugin - 2.7 - - - maven-install-plugin - 2.4 - - - maven-jar-plugin - 2.4 - - - maven-release-plugin - 2.4 - - - maven-resources-plugin - 2.6 - - - maven-site-plugin - 3.2 - - - com.github.stephenc.wagon - wagon-gitsite - 0.4.1 - - - org.apache.maven.doxia - doxia-module-markdown - 1.3 - - - - - maven-surefire-plugin - 2.13 - - - - - - maven-compiler-plugin - - 1.5 - 1.5 - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.6 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - - - - diff --git a/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom.sha1 b/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom.sha1 deleted file mode 100644 index 6ba1cd854..000000000 --- a/code/arachne/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bdccebfbbbdd66fe56dcdf3bdee7b97a853cccc5 \ No newline at end of file diff --git a/code/arachne/com/github/virtuald/curvesapi/1.04/_remote.repositories b/code/arachne/com/github/virtuald/curvesapi/1.04/_remote.repositories deleted file mode 100644 index ebd10fc83..000000000 --- a/code/arachne/com/github/virtuald/curvesapi/1.04/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:59 EDT 2024 -curvesapi-1.04.pom>central= diff --git a/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom b/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom deleted file mode 100644 index 2f06f7f2c..000000000 --- a/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom +++ /dev/null @@ -1,123 +0,0 @@ - - 4.0.0 - com.github.virtuald - curvesapi - 1.04 - curvesapi - Implementation of various mathematical curves that define themselves over a set of control points. The API is written in Java. The curves supported are: Bezier, B-Spline, Cardinal Spline, Catmull-Rom Spline, Lagrange, Natural Cubic Spline, and NURBS. - https://github.com/virtuald/curvesapi - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - - - - - - - - release - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.3 - true - - ossrh - https://oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.3 - - - attach-javadocs - - jar - - - -Xdoclint:none - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - - - - BSD License - http://opensource.org/licenses/BSD-3-Clause - repo - - - - - https://github.com/virtuald/curvesapi - scm:git:git://github.com/virtuald/curvesapi.git - scm:git:git@github.com/virtuald/curvesapi.git - - - - - stormdollar - http://sourceforge.net/u/stormdollar/profile/ - stormdollar - - - Dustin Spicuzza - https://github.com/virtuald - virtuald - - - - - - junit - junit - 4.12 - test - - - - diff --git a/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom.sha1 b/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom.sha1 deleted file mode 100644 index 2f79334c9..000000000 --- a/code/arachne/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2354cc58a022248c4f7fc925574e73176db87eea \ No newline at end of file diff --git a/code/arachne/com/github/waffle/waffle-jna/2.2.1/_remote.repositories b/code/arachne/com/github/waffle/waffle-jna/2.2.1/_remote.repositories deleted file mode 100644 index 5d270369c..000000000 --- a/code/arachne/com/github/waffle/waffle-jna/2.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:22 EDT 2024 -waffle-jna-2.2.1.pom>central= diff --git a/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom b/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom deleted file mode 100644 index 48a3888f0..000000000 --- a/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom +++ /dev/null @@ -1,109 +0,0 @@ - - - - 4.0.0 - - - com.github.waffle - waffle-parent - 2.2.1 - - - waffle-jna - 2.2.1 - jar - - waffle-jna - WAFFLE JNA implementation - https://waffle.github.com/waffle/ - - - scm:git:ssh://git@github.com/waffle/waffle.git - scm:git:ssh://git@github.com/waffle/waffle.git - https://github.com/Waffle/waffle - waffle-parent-2.2.1 - - - - - 2.8.1 - 5.5.0 - 2.0.4 - 4.0.3 - - - waffle.jna - - - - - - - net.java.dev.jna - jna - ${jna.version} - - - net.java.dev.jna - jna-platform - ${jna.version} - - - - - - - net.java.dev.jna - jna - - - net.java.dev.jna - jna-platform - - - jakarta.servlet - jakarta.servlet-api - ${servlet.version} - provided - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.slf4j - slf4j-simple - ${slf4j.version} - true - - - com.github.ben-manes.caffeine - caffeine - ${caffeine.version} - - - org.powermock - powermock-reflect - ${powermock.version} - test - - - diff --git a/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom.sha1 b/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom.sha1 deleted file mode 100644 index 749e8fb46..000000000 --- a/code/arachne/com/github/waffle/waffle-jna/2.2.1/waffle-jna-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -887237273feb4a0c9de0c06eba45f33047abd052 \ No newline at end of file diff --git a/code/arachne/com/github/waffle/waffle-parent/2.2.1/_remote.repositories b/code/arachne/com/github/waffle/waffle-parent/2.2.1/_remote.repositories deleted file mode 100644 index d84e1d614..000000000 --- a/code/arachne/com/github/waffle/waffle-parent/2.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:21 EDT 2024 -waffle-parent-2.2.1.pom>central= diff --git a/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom b/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom deleted file mode 100644 index 1f92473e0..000000000 --- a/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom +++ /dev/null @@ -1,1558 +0,0 @@ - - - - 4.0.0 - - com.github.waffle - waffle-parent - 2.2.1 - pom - - waffle-parent - Parent POM for WAFFLE - https://waffle.github.io/waffle/ - 2010 - - com.github.waffle - https://github.com/waffle/ - - - - Eclipse Public License - https://raw.github.com/Waffle/waffle/master/LICENSE - repo - - - - - - dblock - Daniel Doubrovkine - dblock@dblock.org - https://github.com/dblock/ - dblock - http://code.dblock.org - - Architect - Developer - - -5 - - https://avatars3.githubusercontent.com/u/542335?s=400 - - - - - - Jeremy Landis - jeremylandis@hotmail.com - https://www.linkedin.com/in/jeremy-landis-548b2719 - hazendaz - https://github.com/hazendaz - - Developer - - -5 - - https://avatars0.githubusercontent.com/u/975267 - - - - - - waffle-demo - waffle-distro - waffle-jetty - waffle-jna - waffle-shiro - waffle-spring-boot - waffle-spring-boot2 - waffle-spring-security4 - waffle-spring-security5 - waffle-tests - waffle-tomcat7 - waffle-tomcat85 - waffle-tomcat9 - - - - scm:git:ssh://git@github.com/waffle/waffle.git - scm:git:ssh://git@github.com/waffle/waffle.git - https://github.com/Waffle/waffle - waffle-parent-2.2.1 - - - Github - https://github.com/Waffle/waffle/issues - - - travis - https://travis-ci.org/Waffle/waffle/ - - - - gh-pages - Waffle GitHub Pages - github:ssh://waffle.github.io/waffle/ - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - 2020 - - - 0.0 - - - yyyy-MM-dd HH:mm:ss - - 1.8 - 1.8 - 1.8 - 1.8 - - 3.6.3 - - UTF-8 - UTF-8 - UTF-8 - - - waffle.parent - - - checkstyle.xml - - - 3.14.0 - 2.3.4 - 1.3 - 1.23 - 1.49 - 3.0.2 - 5.6.0 - 2.0.0-alpha1 - - - java18 - 1.0 - - - 1.18 - 1.8 - 3.2.0 - 3.0.0 - 2.3 - 2.12.1 - 3.1.0 - 3.1.0 - 3.8.1 - 4.3.0 - 3.1.1 - 5.3.0 - 3.0.0-M1 - 0.3.1 - 3.0.0-M3 - 2.11.0 - 4.0.0 - 1.6 - 1.4.1 - 1.3.2 - 3.0.0-M1 - 0.8.5 - 3.2.0 - 3.1.1 - 2.0 - 3.0.0 - 3.0 - 2.0.0 - 1.6.8 - 3.12.0 - 3.0.0 - 3.0.0-M1 - 3.1.0 - 1.11.2 - 3.2.1 - 3.1.12.2 - 3.8.2 - 3.7.0.1746 - 3.0.0-M4 - 2.4 - 1.1.0 - 2.7 - 2.0.0 - 3.2.3 - 1.5.1 - - - 1.5.0 - 1.2.2 - 8.28 - 1.9 - 7.4.7 - 1.10.1 - 1.8 - 1.6.6 - 9+181-r4173-1 - 5.6.0.201912101111-r - 2.0.3 - 3.3.4 - 2.4.8 - - - 1.0.0 - - - -javaagent:${settings.localRepository}/org/jmockit/jmockit/${jmockit.version}/jmockit-${jmockit.version}.jar -Djdk.attach.allowAttachSelf - - - - - org.slf4j - slf4j-simple - ${slf4j.version} - test - - - - - com.google.code.findbugs - jsr305 - ${jsr305.version} - provided - - - com.google.errorprone - error_prone_annotations - ${error-prone.version} - provided - - - com.google.j2objc - j2objc-annotations - ${j2objc.version} - provided - - - - - org.assertj - assertj-core - ${assertj.version} - test - - - org.jmockit - jmockit - ${jmockit.version} - test - - - org.junit.jupiter - junit-jupiter-engine - ${junit.version} - test - - - - - org.openjdk.jmh - jmh-core - ${jmh.version} - test - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh.version} - test - - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - ${clean.plugin} - - - org.apache.maven.plugins - maven-compiler-plugin - ${compiler.plugin} - - - - com.google.errorprone - error_prone_core - ${error-prone.version} - - - - - -XDcompilePolicy=simple - -Xplugin:ErrorProne - - - true - true - - - false - - - - org.apache.maven.plugins - maven-deploy-plugin - ${deploy.plugin} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${enforcer.plugin} - - - org.apache.maven.plugins - maven-gpg-plugin - ${gpg.plugin} - - - org.apache.maven.plugins - maven-install-plugin - ${install.plugin} - - - org.apache.maven.plugins - maven-resources-plugin - ${resources.plugin} - - - org.apache.maven.plugins - maven-site-plugin - ${site.plugin} - - - org.apache.maven.doxia - doxia-module-markdown - ${doxia.version} - - - net.trajano.wagon - wagon-git - ${wagon-git.version} - - - org.apache.maven.wagon - wagon-ssh - ${wagon-ssh.version} - - - - org.apache.maven.skins - maven-fluido-skin - ${fluido.version} - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.plugin} - - - **/*Test.java - **/*Tests.java - - - **/*LoadTests.java - - - - - - pl.project13.maven - git-commit-id-plugin - ${git-commit-id.plugin} - - false - - - true - - true - - - - org.codehaus.mojo - build-helper-maven-plugin - ${build-helper.plugin} - - - - org.apache.maven.plugins - maven-jar-plugin - ${jar.plugin} - - - - true - true - true - - - ${module.name} - ${maven.build.timestamp} - ${copyright} - ${git.commit.id} - ${os.name} - ${os.arch} - ${os.version} - ${maven.compiler.source} - ${maven.compiler.target} - - - true - - - - org.apache.maven.plugins - maven-war-plugin - ${war.plugin} - - - - true - true - true - - - ${buildNumber} - ${maven.build.timestamp} - ${copyright} - ${git.commit.id} - ${os.name} - ${os.arch} - ${os.version} - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstyle.plugin} - - ${checkstyle.config} - false - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${javadoc.plugin} - - - - true - true - - - ${maven.build.timestamp} - ${copyright} - ${git.commit.id} - ${os.name} - ${os.arch} - ${os.version} - ${maven.compiler.source} - ${maven.compiler.target} - - - true - false - - - - org.apache.maven.plugins - maven-pmd-plugin - ${pmd.plugin} - - true - false - - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${antrun.plugin} - - - org.apache.maven.plugins - maven-assembly-plugin - ${assembly.plugin} - - - ${project.basedir}/src/assembly/assembly.xml - - - - - org.apache.maven.plugins - maven-dependency-plugin - ${dependency.plugin} - - - org.apache.maven.plugins - maven-release-plugin - ${release.plugin} - - true - release - - - - org.apache.maven.plugins - maven-source-plugin - ${source.plugin} - - - - true - true - true - - - ${maven.build.timestamp} - ${copyright} - ${git.commit.id} - ${os.name} - ${os.arch} - ${os.version} - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.plugin} - - max - true - false - - - com.mebigfatguy.sb-contrib - sb-contrib - ${sb-contrib.version} - - - com.h3xstream.findsecbugs - findsecbugs-plugin - ${findsecbugs.version} - - - jp.skypencil.findbugs.slf4j - bug-pattern - ${bug-pattern.version} - - - - - - com.github.hazendaz.maven - htmlcompressor-maven-plugin - ${htmlcompressor.plugin} - - - com.github.hazendaz - htmlcompressor - ${htmlcompressor.version} - - - com.yahoo.platform.yui - yuicompressor - ${yuicompressor.version} - - - - - org.jacoco - jacoco-maven-plugin - ${jacoco.plugin} - - - org.eluder.coveralls - coveralls-maven-plugin - ${coveralls.plugin} - - - org.codehaus.mojo - tidy-maven-plugin - ${tidy.plugin} - - - net.alchim31.maven - yuicompressor-maven-plugin - ${yuicompressor.plugin} - - - com.yahoo.platform.yui - yuicompressor - ${yuicompressor.version} - - - - - net.revelc.code.formatter - formatter-maven-plugin - ${formatter.plugin} - - - com.github.hazendaz - build-tools - ${build-tools.version} - - - - - net.revelc.code - impsort-maven-plugin - ${impsort.plugin} - - com,java,javax,mockit,org,waffle - java,* - true - - - - com.mycila - license-maven-plugin - ${license.plugin} - -
    ${main.basedir}/license.txt
    - - .factorypath - .gitattributes - license.txt - - - DOUBLESLASH_STYLE - DOUBLESLASH_STYLE - -
    - - - com.mycila - license-maven-plugin-git - ${license.plugin} - - -
    - - - - org.codehaus.mojo - jdepend-maven-plugin - ${jdepend.plugin} - - - org.apache.maven.plugins - maven-changelog-plugin - ${changelog.plugin} - - - org.apache.maven.plugins - maven-changes-plugin - ${changes.plugin} - - - org.eclipse.jgit - org.eclipse.jgit - ${jgit.version} - - - org.apache.maven.scm - maven-scm-provider-jgit - ${scm.plugin} - - - - https - 443 - - - - org.apache.maven.plugins - maven-jxr-plugin - ${jxr.plugin} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${project-info-reports.plugin} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${surefire.plugin} - - - org.codehaus.mojo - taglist-maven-plugin - ${taglist.plugin} - - - - - FIXME Work - - - fixme - ignoreCase - - - @fixme - ignoreCase - - - - - Todo Work - - - todo - ignoreCase - - - @todo - ignoreCase - - - - - Deprecated Work - - - @deprecated - ignoreCase - - - - - - - - - org.codehaus.mojo - versions-maven-plugin - ${versions.plugin} - - - - - org.apache.maven.plugins - maven-scm-plugin - ${scm.plugin} - - - org.eclipse.jgit - org.eclipse.jgit - ${jgit.version} - - - org.apache.maven.scm - maven-scm-provider-jgit - ${scm.plugin} - - - - - - - org.sonarsource.scanner.maven - sonar-maven-plugin - ${sonar.plugin} - - - - - org.codehaus.mojo - wagon-maven-plugin - ${wagon.plugin} - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${animal-sniffer.plugin} - - - org.codehaus.mojo.signature - ${signature.artifact} - ${signature.version} - - - - - - - org.owasp - dependency-check-maven - ${dependency-check.plugin} - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${nexus-staging.plugin} - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - org.commonjava.maven.plugins - directory-maven-plugin - ${directory.plugin} - - - org.gaul - modernizer-maven-plugin - ${modernizer.plugin} - - ${maven.compiler.target} - - -
    -
    - - - - - - org.apache.maven.plugins - maven-clean-plugin - - true - - - ${project.build.directory} - - **/* - - - - - - - - - pl.project13.maven - git-commit-id-plugin - - - git-commit-id - - revision - - validate - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - attach-jars - - test-jar - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - test-jar - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - test-jar - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - - [${maven.min-version},) - - - - - - enforce-maven - - enforce - - - - enforce-clean - pre-clean - - enforce - - - - enforce-site - pre-site - - enforce - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - test-sniffer - test - - check - - - - - - com.mycila - license-maven-plugin - - - compile - - format - - - - - - org.jacoco - jacoco-maven-plugin - - - prepare-agent - - prepare-agent - - - - report - - report - - - - - - - - org.commonjava.maven.plugins - directory-maven-plugin - - - directories - - highest-basedir - - initialize - - main.basedir - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - com.puppycrawl.tools - checkstyle - ${checkstyle.version} - - - - - org.gaul - modernizer-maven-plugin - - - modernizer - verify - - modernizer - - - - - - - - - org.apache.maven.wagon - wagon-ssh - ${wagon-ssh.version} - - -
    - - - - - org.apache.maven.plugins - maven-changelog-plugin - - - org.apache.maven.plugins - maven-changes-plugin - - - - github-report - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - com.github.spotbugs - spotbugs-maven-plugin - - - org.jacoco - jacoco-maven-plugin - - - org.codehaus.mojo - versions-maven-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - org.codehaus.mojo - jdepend-maven-plugin - - - org.owasp - dependency-check-maven - - - - aggregate - - - - - - - - - - checks - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - - check - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - - check - cpd-check - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - - verify - - check - - - - - - org.jacoco - jacoco-maven-plugin - - - check - - check - - - - - BUNDLE - - - COMPLEXITY - COVEREDRATIO - ${jacoco.minimum.coverage} - - - - - - - - - - org.owasp - dependency-check-maven - - - - check - - - - - - - - - - compression - - - compression.xml - - - - - - com.github.hazendaz.maven - htmlcompressor-maven-plugin - - - default-compile - compile - - html - - - - - true - true - false - true - true - ${project.basedir}/src/main/resources - ${project.basedir}/target/classes - - html - jsp - xhtml - xml - - - - - net.alchim31.maven - yuicompressor-maven-plugin - - - default-compile - compile - - compress - - - - - true - true - - **/*.min.js - **/*.min.css - - - - - - - - - eclipse - - - m2e.version - - - - - - - - org.eclipse.m2e - lifecycle-mapping - ${lifecycle.version} - - - - - - com.github.hazendaz.maven - htmlcompressor-maven-plugin - [${htmlcompressor.plugin},) - - html - - - - - - - - - org.commonjava.maven.plugins - directory-maven-plugin - [${directory.plugin},) - - highest-basedir - - - - - true - true - - - - - - net.alchim31.maven - yuicompressor-maven-plugin - [${yuicompressor.plugin},) - - compress - - - - - - - - - com.mycila - license-maven-plugin - [${license.plugin},) - - format - - - - - true - true - - - - - - org.jacoco - jacoco-maven-plugin - [${jacoco.plugin},) - - prepare-agent - - - - - - - - - net.revelc.code.formatter - formatter-maven-plugin - [${formatter.plugin},) - - format - - - - - - - - - net.revelc.code - impsort-maven-plugin - [${impsort.plugin},) - - sort - - - - - true - true - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - [${enforcer.plugin},) - - enforce - - - - - - - - - - - - - - - - - format - - - format.xml - - - - - - net.revelc.code.formatter - formatter-maven-plugin - - eclipse-formatter-config.xml - - - - - format - - - - - - net.revelc.code - impsort-maven-plugin - - - - sort - - - - - - - - - - jdk8 - - 1.8 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - - -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar - - - - - - - - - - jdk9on - - [9,) - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - -html5 - - - - - - - - - sort - - - - org.codehaus.mojo - tidy-maven-plugin - - - verify - - pom - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - -
    diff --git a/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom.sha1 b/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom.sha1 deleted file mode 100644 index 68e5e03c4..000000000 --- a/code/arachne/com/github/waffle/waffle-parent/2.2.1/waffle-parent-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -395b06d242934eb04f6d407c44c400f235d01260 \ No newline at end of file diff --git a/code/arachne/com/github/waffle/waffle-shiro/2.2.1/_remote.repositories b/code/arachne/com/github/waffle/waffle-shiro/2.2.1/_remote.repositories deleted file mode 100644 index f4c89a563..000000000 --- a/code/arachne/com/github/waffle/waffle-shiro/2.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:21 EDT 2024 -waffle-shiro-2.2.1.pom>central= diff --git a/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom b/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom deleted file mode 100644 index 5fc6a9716..000000000 --- a/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom +++ /dev/null @@ -1,108 +0,0 @@ - - - - 4.0.0 - - - com.github.waffle - waffle-parent - 2.2.1 - - - waffle-shiro - 2.2.1 - jar - - waffle-shiro - Shiro integration for WAFFLE - https://waffle.github.com/waffle/ - - - scm:git:ssh://git@github.com/waffle/waffle.git - scm:git:ssh://git@github.com/waffle/waffle.git - https://github.com/Waffle/waffle - waffle-parent-2.2.1 - - - - - 1.9.4 - 2.0.4 - 4.0.3 - 1.4.2 - - - waffle.shiro - - - - - ${project.groupId} - waffle-jna - ${project.version} - compile - - - ${project.groupId} - waffle-tests - ${project.version} - test - - - org.apache.shiro - shiro-web - ${shiro.version} - provided - - - jakarta.servlet - jakarta.servlet-api - ${servlet.version} - provided - - - commons-beanutils - commons-beanutils - ${beanutils.version} - provided - - - commons-logging - commons-logging - - - commons-collections - commons-collections - - - - - org.powermock - powermock-reflect - ${powermock.version} - test - - - net.bytebuddy - byte-buddy - - - net.bytebuddy - byte-buddy-agent - - - - - diff --git a/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom.sha1 b/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom.sha1 deleted file mode 100644 index 0e8a04204..000000000 --- a/code/arachne/com/github/waffle/waffle-shiro/2.2.1/waffle-shiro-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -03db2109cabbe327befc5aea482d8e22ca7720fb \ No newline at end of file diff --git a/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/_remote.repositories b/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/_remote.repositories deleted file mode 100644 index 5c0ef43c2..000000000 --- a/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -java-semver-0.9.0.pom>central= diff --git a/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom b/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom deleted file mode 100644 index 032a87d9b..000000000 --- a/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom +++ /dev/null @@ -1,75 +0,0 @@ - - 4.0.0 - - - org.sonatype.oss - oss-parent - 9 - - - com.github.zafarkhaja - java-semver - 0.9.0 - jar - - Java SemVer - Java implementation of the SemVer Specification - https://github.com/zafarkhaja/jsemver - - - - The MIT License - http://www.opensource.org/licenses/mit-license.php - repo - - - - - - zafarkhaja - Zafar Khaja - zafarkhaja@gmail.com - +3 - - - - - https://github.com/zafarkhaja/jsemver - scm:git:git://github.com/zafarkhaja/jsemver.git - scm:git:ssh://git@github.com/zafarkhaja/jsemver.git - - - - - junit - junit - 4.12 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.2 - - 1.6 - 1.6 - UTF-8 - -Xlint:all - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.2 - - -Xdoclint:none - - - - - diff --git a/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom.sha1 b/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom.sha1 deleted file mode 100644 index 2c8bb7e4e..000000000 --- a/code/arachne/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -09713a0c7f2c8eca691eccbb780d793aa6990bf0 \ No newline at end of file diff --git a/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/_remote.repositories b/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/_remote.repositories deleted file mode 100644 index 68401f80c..000000000 --- a/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:25 EDT 2024 -findbugs-annotations-3.0.1.pom>central= diff --git a/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom b/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom deleted file mode 100644 index c6cae7122..000000000 --- a/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom +++ /dev/null @@ -1,193 +0,0 @@ - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - - - com.google.code.findbugs - findbugs-annotations - 3.0.1 - jar - - http://findbugs.sourceforge.net/ - FindBugs-Native-Annotations - Annotation defined by the FindBugs tool - - - GNU Lesser Public License - http://www.gnu.org/licenses/lgpl.html - repo - - - - - 3.0 - - - - scm:git:https://github.com/findbugsproject/findbugs/ - scm:git:https://github.com/findbugsproject/findbugs/ - https://github.com/findbugsproject/findbugs/ - - - - - com.google.code.findbugs - jsr305 - 3.0.1 - compile - true - - - - - - bp - Bill Pugh - pugh at cs.umd.edu - http://www.cs.umd.edu/~pugh/ - - Project Lead - Primary Developer - - -5 - - - al - Andrey Loskutov - Loskutov@gmx.de - http://andrei.gmxhome.de/privat.html - - Eclipse plugin - - +1 - - - bp - Keith Lea - - http://keithlea.com/ - - web cloud - - -5 - - - - - ${basedir}/../../findbugs/src/java/ - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - package - - jar - - - edu.umd.cs.findbugs.annotations:net.jcip.annotations:javax.annotation:javax.annotation.meta:javax.annotation.concurrent - true - true - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.0 - - 1.5 - 1.5 - - edu/umd/cs/findbugs/annotations/*.java - - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - attach-sources - - jar-no-fork - - - - - - edu/umd/cs/findbugs/annotations/*.java - - - - - org.apache.felix - maven-bundle-plugin - 2.4.0 - true - - - bundle-manifest - process-classes - - manifest - - - - - - edu.umd.cs.findbugs.annotations - 3.0.1 - ${project.name} - J2SE-1.5 - - edu.umd.cs.findbugs.annotations - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.3 - true - - ossrh - https://oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - - diff --git a/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom.sha1 b/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom.sha1 deleted file mode 100644 index 6e31a8507..000000000 --- a/code/arachne/com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8485bf05817d5361dab424b3cc1e9e27ac719dd7 \ No newline at end of file diff --git a/code/arachne/com/google/code/findbugs/jsr305/3.0.2/_remote.repositories b/code/arachne/com/google/code/findbugs/jsr305/3.0.2/_remote.repositories deleted file mode 100644 index afa965e7d..000000000 --- a/code/arachne/com/google/code/findbugs/jsr305/3.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -jsr305-3.0.2.pom>central= diff --git a/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom b/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom deleted file mode 100644 index e89c2e51f..000000000 --- a/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom +++ /dev/null @@ -1,135 +0,0 @@ - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - - - com.google.code.findbugs - jsr305 - 3.0.2 - jar - - http://findbugs.sourceforge.net/ - FindBugs-jsr305 - JSR305 Annotations for Findbugs - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - 3.0 - - - - scm:git:https://code.google.com/p/jsr-305/ - scm:git:https://code.google.com/p/jsr-305/ - https://code.google.com/p/jsr-305/ - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - package - - jar - - - true - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.0 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - attach-sources - - jar-no-fork - - - - - - org.apache.felix - maven-bundle-plugin - 2.4.0 - true - - - bundle-manifest - process-classes - - manifest - - - - - - org.jsr-305 - ${project.name} - javax.annotation;javax.annotation.concurrent;javax.annotation.meta - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.3 - true - - ossrh - https://oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - - diff --git a/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom.sha1 b/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom.sha1 deleted file mode 100644 index f650c32cb..000000000 --- a/code/arachne/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8d93cdf4d84d7e1de736df607945c6df0730a10f \ No newline at end of file diff --git a/code/arachne/com/google/code/gson/gson-parent/2.10.1/_remote.repositories b/code/arachne/com/google/code/gson/gson-parent/2.10.1/_remote.repositories deleted file mode 100644 index 4e5549f18..000000000 --- a/code/arachne/com/google/code/gson/gson-parent/2.10.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:11 EDT 2024 -gson-parent-2.10.1.pom>central= diff --git a/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom b/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom deleted file mode 100644 index b75c97907..000000000 --- a/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom +++ /dev/null @@ -1,306 +0,0 @@ - - - - 4.0.0 - - com.google.code.gson - gson-parent - 2.10.1 - pom - - Gson Parent - Gson JSON library - https://github.com/google/gson - - - gson - extras - metrics - proto - - - - UTF-8 - 7 - - - - https://github.com/google/gson/ - scm:git:https://github.com/google/gson.git - scm:git:git@github.com:google/gson.git - gson-parent-2.10.1 - - - - - google - Google - https://www.google.com - - - - - GitHub Issues - https://github.com/google/gson/issues - - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - junit - junit - 4.13.2 - test - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - true - true - true - - - -Xlint:all,-options - - - [11,) - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.1 - - - [11,) - - - 11 - - all,-missing - - false - - https://docs.oracle.com/en/java/javase/11/docs/api/ - - - false - - true - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M7 - - true - - false - release - - - - clean verify - antrun:run@replace-version-placeholders - antrun:run@replace-old-version-references - antrun:run@git-add-changed - - - - - maven-antrun-plugin - 3.1.0 - - - - replace-version-placeholders - - run - - - - - - - - - - - - - replace-old-version-references - - run - - - - - - - - - - - - - - - false - - - - - git-add-changed - - run - - - - - - - - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - 0.17.1 - - - - ${project.groupId} - ${project.artifactId} - - JAPICMP-OLD - - - - - ${project.build.directory}/${project.build.finalName}.${project.packaging} - - - - true - true - - com.google.gson.internal - - true - true - true - - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - diff --git a/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom.sha1 b/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom.sha1 deleted file mode 100644 index 524a4eb3f..000000000 --- a/code/arachne/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -67ea6db077285dc50a9b0a627763764f0ef4a770 \ No newline at end of file diff --git a/code/arachne/com/google/code/gson/gson/2.10.1/_remote.repositories b/code/arachne/com/google/code/gson/gson/2.10.1/_remote.repositories deleted file mode 100644 index 1dd6f33b4..000000000 --- a/code/arachne/com/google/code/gson/gson/2.10.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:11 EDT 2024 -gson-2.10.1.pom>central= diff --git a/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom b/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom deleted file mode 100644 index d66e1dcb5..000000000 --- a/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom +++ /dev/null @@ -1,253 +0,0 @@ - - 4.0.0 - - - com.google.code.gson - gson-parent - 2.10.1 - - - gson - Gson - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - **/Java17* - - - - - junit - junit - test - - - - - - - - org.codehaus.mojo - templating-maven-plugin - 1.0.0 - - - filtering-java-templates - - filter-sources - - - ${basedir}/src/main/java-templates - ${project.build.directory}/generated-sources/java-templates - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - - - - module-info.java - - - - - default-testCompile - test-compile - - testCompile - - - - ${excludeTestCompilation} - - - - - - - biz.aQute.bnd - bnd-maven-plugin - 6.4.0 - - - - bnd-process - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0-M7 - - - - --illegal-access=deny - - - - com.coderplus.maven.plugins - copy-rename-maven-plugin - 1.0.1 - - - pre-obfuscate-class - process-test-classes - - rename - - - - - ${project.build.directory}/test-classes/com/google/gson/functional/EnumWithObfuscatedTest.class - ${project.build.directory}/test-classes-obfuscated-injar/com/google/gson/functional/EnumWithObfuscatedTest.class - - - ${project.build.directory}/test-classes/com/google/gson/functional/EnumWithObfuscatedTest$Gender.class - ${project.build.directory}/test-classes-obfuscated-injar/com/google/gson/functional/EnumWithObfuscatedTest$Gender.class - - - - - - - - com.github.wvengen - proguard-maven-plugin - 2.6.0 - - - obfuscate-test-class - process-test-classes - - proguard - - - - - true - test-classes-obfuscated-injar - test-classes-obfuscated-outjar - **/*.class - ${basedir}/src/test/resources/testcases-proguard.conf - - ${project.build.directory}/classes - ${java.home}/jmods/java.base.jmod - - - - - maven-resources-plugin - 3.3.0 - - - post-obfuscate-class - process-test-classes - - copy-resources - - - ${project.build.directory}/test-classes/com/google/gson/functional - - - ${project.build.directory}/test-classes-obfuscated-outjar/com/google/gson/functional - - EnumWithObfuscatedTest.class - EnumWithObfuscatedTest$Gender.class - - - - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - - org.moditect - moditect-maven-plugin - 1.0.0.RC2 - - - add-module-info - package - - add-module-info - - - 9 - - ${project.build.sourceDirectory}/module-info.java - - - true - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - com.google.gson.internal:com.google.gson.internal.bind - - - - - - - JDK17 - - [17,) - - - 17 - - - - - diff --git a/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom.sha1 b/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom.sha1 deleted file mode 100644 index 4285bc051..000000000 --- a/code/arachne/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce159faf33c1e665e1f3a785a5d678a2b20151bc \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/_remote.repositories deleted file mode 100644 index 3cc259ad3..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:05 EDT 2024 -error_prone_annotations-2.1.3.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom deleted file mode 100644 index ffb63a4d7..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom +++ /dev/null @@ -1,58 +0,0 @@ - - - - - 4.0.0 - - - com.google.errorprone - error_prone_parent - 2.1.3 - - - error-prone annotations - error_prone_annotations - - - - junit - junit - ${junit.version} - test - - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.7 - 1.7 - - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom.sha1 deleted file mode 100644 index bdab9dfeb..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -02d1529fa92342313d1c98beb8ca261e36a2d319 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/_remote.repositories deleted file mode 100644 index 30485e7f2..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:44 EDT 2024 -error_prone_annotations-2.11.0.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom deleted file mode 100644 index a453c8595..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - - 4.0.0 - - - com.google.errorprone - error_prone_parent - 2.11.0 - - - error-prone annotations - error_prone_annotations - - - - junit - junit - ${junit.version} - test - - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.7 - 1.7 - - - - - maven-jar-plugin - - - - com.google.errorprone.annotations - - - - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom.sha1 deleted file mode 100644 index 688aafae8..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ced1afa200bbf344ccdef14b92aa84f7863f395c \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/_remote.repositories deleted file mode 100644 index 4bf0c2451..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:32 EDT 2024 -error_prone_annotations-2.18.0.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom deleted file mode 100644 index 6858876b5..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - - 4.0.0 - - - com.google.errorprone - error_prone_parent - 2.18.0 - - - error-prone annotations - error_prone_annotations - - - - junit - junit - ${junit.version} - test - - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 8 - 8 - - - - - maven-jar-plugin - - - - com.google.errorprone.annotations - - - - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom.sha1 deleted file mode 100644 index a60726ee7..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6d7bbfd3d7567e4c18e981a675ecda707e8a2db1 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/_remote.repositories deleted file mode 100644 index 34f7c417a..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:22 EDT 2024 -error_prone_annotations-2.21.1.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom deleted file mode 100644 index 8419ea984..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom +++ /dev/null @@ -1,59 +0,0 @@ - - - - - 4.0.0 - - - com.google.errorprone - error_prone_parent - 2.21.1 - - - error-prone annotations - error_prone_annotations - - - - junit - junit - ${junit.version} - test - - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 8 - 8 - - - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom.sha1 deleted file mode 100644 index 4a9298935..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e3d7e7e5c6e7b24256bd55642344a8d99b64e599 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/_remote.repositories deleted file mode 100644 index c6bb5e29f..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:27 EDT 2024 -error_prone_annotations-2.26.1.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom deleted file mode 100644 index 07d179008..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom +++ /dev/null @@ -1,129 +0,0 @@ - - - - - 4.0.0 - - - com.google.errorprone - error_prone_parent - 2.26.1 - - - error-prone annotations - error_prone_annotations - - - - junit - junit - ${junit.version} - test - - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - - - default-compile - - 1.8 - 1.8 - - module-info.java - - - - - compile-java9 - - compile - - - 9 - 9 - 9 - true - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - true - - - - /META-INF/versions/9/com/**/*.class - - - - - biz.aQute.bnd - bnd-maven-plugin - 6.4.0 - - - generate-OSGi-manifest - none - - - generate-OSGi-manifest-annotations - - bnd-process - - - - - - - - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom.sha1 deleted file mode 100644 index f68dc910a..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.26.1/error_prone_annotations-2.26.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2e23702f7c5f6c85252ed22bf7e96b474fe48086 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/_remote.repositories deleted file mode 100644 index 931b391d8..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:03 EDT 2024 -error_prone_annotations-2.3.4.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom b/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom deleted file mode 100644 index 9b7753bc3..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - - - 4.0.0 - - - com.google.errorprone - error_prone_parent - 2.3.4 - - - error-prone annotations - error_prone_annotations - - - - junit - junit - ${junit.version} - test - - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.7 - 1.7 - - - - maven-jar-plugin - - - - com.google.errorprone.annotations - - - - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom.sha1 deleted file mode 100644 index 6bd13dbda..000000000 --- a/code/arachne/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9a23fcb83bc8ed502506a8e6c648bf763dc5bcf9 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/_remote.repositories deleted file mode 100644 index 09a9a8413..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:05 EDT 2024 -error_prone_parent-2.1.3.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom deleted file mode 100644 index 3ece575fb..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - Maven parent POM - com.google.errorprone - error_prone_parent - 2.1.3 - pom - - - UTF-8 - 22.0 - 0.36 - 9-dev-r4023-3 - 1.3 - 4.13-SNAPSHOT - - - - check_api - test_helpers - core - annotation - annotations - docgen - docgen_processor - ant - refaster - - - - scm:git:https://github.com/google/error-prone.git - scm:git:git@github.com:google/error-prone.git - https://github.com/google/error-prone - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - src/main/java - - **/*.properties - - - - - - src/test/java - - **/testdata/** - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 2.1 - - ${project.build.directory}/dependency-reduced-pom.xml - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - true - - - - org.codehaus.plexus - plexus-io - 2.0.9 - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.6.2 - - 1.8 - 1.8 - - - **/testdata/** - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - package - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.3 - - - attach-descriptor - - attach-descriptor - - - - - - maven-project-info-reports-plugin - 2.9 - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom.sha1 deleted file mode 100644 index 0d7e431dd..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fa65cf11b2b7e955eb3862eb01d5bae721e458c0 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/_remote.repositories deleted file mode 100644 index 5ac8a5c9c..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:44 EDT 2024 -error_prone_parent-2.11.0.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom deleted file mode 100644 index c6f4c9c4e..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom +++ /dev/null @@ -1,298 +0,0 @@ - - - - - 4.0.0 - - Error Prone parent POM - com.google.errorprone - error_prone_parent - 2.11.0 - pom - - Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time. - https://errorprone.info - - - UTF-8 - 31.0.1-jre - 2.8.2 - 1.1.3 - 1.0-rc6 - 1.9 - 4.13.1 - 3.15.0 - 3.12.4 - 0.19 - 2.8.8 - 0.6 - 3.1.0 - 3.2.1 - 1.6.7 - 3.19.2 - 1.43.2 - - - - Google LLC - http://www.google.com - - - - - Eddie Aftandilian - - - - - check_api - test_helpers - core - annotation - annotations - type_annotations - docgen - docgen_processor - refaster - - - - scm:git:https://github.com/google/error-prone.git - scm:git:git@github.com:google/error-prone.git - https://github.com/google/error-prone - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - src/main/java - - **/*.properties - **/*.binarypb - - - - - - src/test/java - - **/testdata/** - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 2.1 - - ${project.build.directory}/dependency-reduced-pom.xml - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.0.5 - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.1.1 - - 8 - true - Error Prone ${project.version} API - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 11 - 11 - - - --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - - - **/testdata/** - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - package - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.7.1 - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - - -Xmx1g - --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - --add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - --add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - --add-opens=java.base/java.math=ALL-UNNAMED - --add-opens=java.base/java.nio=ALL-UNNAMED - - false - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots/ - - - - - - release - - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${nexus-staging-maven-plugin.version} - true - - ossrh - https://oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom.sha1 deleted file mode 100644 index 9cc871517..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bd585f378139da5b5e670840892c48e75d03cf7b \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/_remote.repositories deleted file mode 100644 index e74d7ee48..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:32 EDT 2024 -error_prone_parent-2.18.0.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom deleted file mode 100644 index 617e038bb..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom +++ /dev/null @@ -1,306 +0,0 @@ - - - - - 4.0.0 - - Error Prone parent POM - com.google.errorprone - error_prone_parent - 2.18.0 - pom - - Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time. - https://errorprone.info - - - UTF-8 - 31.0.1-jre - 2.10.0 - 1.1.3 - 1.0.1 - 1.9 - 4.13.2 - 3.27.0 - 4.9.0 - 0.19 - 3.0.5 - 0.7.4 - 3.3.1 - 3.2.1 - 1.6.8 - 3.19.2 - 1.43.2 - 0.2.0 - - - - Google LLC - http://www.google.com - - - - - Eddie Aftandilian - - - - - check_api - test_helpers - core - annotation - annotations - type_annotations - docgen - docgen_processor - refaster - - - - scm:git:https://github.com/google/error-prone.git - scm:git:git@github.com:google/error-prone.git - https://github.com/google/error-prone - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - src/main/java - - **/*.properties - **/*.binarypb - - - - - - src/test/java - - **/testdata/** - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 2.1 - - ${project.build.directory}/dependency-reduced-pom.xml - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.0.5 - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - 8 - true - Error Prone ${project.version} API - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - 11 - 11 - - - --add-exports=java.base/jdk.internal.javac=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - - - **/testdata/** - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - package - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.10.0 - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - - -Xmx1g - --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - --add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - --add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - --add-opens=java.base/java.math=ALL-UNNAMED - --add-opens=java.base/java.nio=ALL-UNNAMED - - false - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots/ - - - - - - release - - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${nexus-staging-maven-plugin.version} - true - - ossrh - https://oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom.sha1 deleted file mode 100644 index 7d3757290..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b1779a677965027cd2a3de91e61a80102086bb30 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/_remote.repositories deleted file mode 100644 index 1f131cdd4..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:22 EDT 2024 -error_prone_parent-2.21.1.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom deleted file mode 100644 index 5ad995dfd..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom +++ /dev/null @@ -1,357 +0,0 @@ - - - - - 4.0.0 - - Error Prone parent POM - com.google.errorprone - error_prone_parent - 2.21.1 - pom - - Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time. - https://errorprone.info - - - UTF-8 - 32.1.1-jre - 2.10.0 - 1.1.3 - 1.0.1 - 1.9 - 4.13.2 - 3.34.0-eisop1 - 4.9.0 - 0.19 - 3.0.5 - 0.7.4 - 3.3.1 - 3.2.1 - 1.6.13 - 3.19.6 - 1.43.3 - 0.2.0 - 5.1.0 - - - - Google LLC - http://www.google.com - - - - - Eddie Aftandilian - - - - - check_api - test_helpers - core - annotation - annotations - type_annotations - docgen - docgen_processor - refaster - - - - scm:git:https://github.com/google/error-prone.git - scm:git:git@github.com:google/error-prone.git - https://github.com/google/error-prone - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - src/main/java - - **/*.properties - **/*.binarypb - - - - - - src/test/java - - **/testdata/** - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 2.1 - - ${project.build.directory}/dependency-reduced-pom.xml - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.0.5 - - - - - - - - biz.aQute.bnd - bnd-maven-plugin - 6.4.0 - - - generate-OSGi-manifest - - bnd-process - - - ;_;.> - Automatic-Module-Name: $ - -exportcontents: com.google.errorprone* - -noextraheaders: true - -removeheaders: Private-Package - ]]> - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - 8 - true - Error Prone ${project.version} API - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - 11 - 11 - - - --add-exports=java.base/jdk.internal.javac=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - - - **/testdata/** - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - package - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.10.0 - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.1.0 - - - -Xmx1g - --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - --add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - --add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - --add-opens=java.base/java.math=ALL-UNNAMED - --add-opens=java.base/java.nio=ALL-UNNAMED - - false - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots/ - - - - - - release - - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${nexus-staging-maven-plugin.version} - true - - ossrh - https://oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - custom-test-runtime-version - - - surefire.jdk-toolchain-version - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${surefire.jdk-toolchain-version} - - - - - - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom.sha1 deleted file mode 100644 index e7f7f6cc6..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e5a62220a9c871cb1283dde6e52b7f1f21c84207 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/_remote.repositories deleted file mode 100644 index 367df4ab4..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:27 EDT 2024 -error_prone_parent-2.26.1.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom deleted file mode 100644 index 6eb146499..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom +++ /dev/null @@ -1,367 +0,0 @@ - - - - - 4.0.0 - - Error Prone parent POM - com.google.errorprone - error_prone_parent - 2.26.1 - pom - - Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time. - https://errorprone.info - - - UTF-8 - 32.1.1-jre - 2.10.0 - 1.4.0 - 1.0.1 - 1.9 - 4.13.2 - 3.41.0-eisop1 - 4.9.0 - 0.21.0 - 3.0.5 - 0.7.4 - 3.3.1 - 3.2.1 - 1.6.13 - 3.19.6 - 1.43.3 - 0.3.0 - 5.1.0 - - - - Google LLC - http://www.google.com - - - - - Eddie Aftandilian - - - - - check_api - test_helpers - core - annotation - annotations - type_annotations - docgen - docgen_processor - refaster - - - - scm:git:https://github.com/google/error-prone.git - scm:git:git@github.com:google/error-prone.git - https://github.com/google/error-prone - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - src/main/java - - **/*.properties - **/*.binarypb - - - - - - src/test/java - - **/testdata/** - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 2.1 - - ${project.build.directory}/dependency-reduced-pom.xml - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.0.5 - - - - - - - - biz.aQute.bnd - bnd-maven-plugin - 6.4.0 - - - generate-OSGi-manifest - - bnd-process - - - ;_;.> - Automatic-Module-Name: $ - -exportcontents: com.google.errorprone* - -noextraheaders: true - -removeheaders: Private-Package - ]]> - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - 8 - true - Error Prone ${project.version} API - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - 11 - 11 - - - --add-exports=java.base/jdk.internal.javac=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - - - **/testdata/** - - - - - default-compile - - - -Xlint:-options - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - package - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.10.0 - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.1.0 - - - -Xmx1g - --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - --add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - --add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - --add-opens=java.base/java.math=ALL-UNNAMED - --add-opens=java.base/java.nio=ALL-UNNAMED - - false - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots/ - - - - - - release - - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${nexus-staging-maven-plugin.version} - true - - ossrh - https://oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - custom-test-runtime-version - - - surefire.jdk-toolchain-version - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${surefire.jdk-toolchain-version} - - - - - - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom.sha1 deleted file mode 100644 index a2f3db242..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.26.1/error_prone_parent-2.26.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b881c4c0f53eef367689790e18dc033d8a75bd52 \ No newline at end of file diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/_remote.repositories b/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/_remote.repositories deleted file mode 100644 index a9b10381e..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:03 EDT 2024 -error_prone_parent-2.3.4.pom>central= diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom b/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom deleted file mode 100644 index f5a7fb9be..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom +++ /dev/null @@ -1,169 +0,0 @@ - - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - Error Prone parent POM - com.google.errorprone - error_prone_parent - 2.3.4 - pom - - - UTF-8 - 27.0.1-jre - 2.8.2 - 0.45 - 9+181-r4173-1 - 1.5.3 - 4.13-beta-1 - 3.0.0 - 2.25.0 - 0.18 - 2.7.0 - - - - check_api - test_helpers - core - annotation - annotations - type_annotations - docgen - docgen_processor - refaster - - - - scm:git:https://github.com/google/error-prone.git - scm:git:git@github.com:google/error-prone.git - https://github.com/google/error-prone - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - src/main/java - - **/*.properties - **/*.binarypb - - - - - - src/test/java - - **/testdata/** - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 2.1 - - ${project.build.directory}/dependency-reduced-pom.xml - - - - maven-surefire-plugin - - alphabetical - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.0.0 - - true - Error Prone ${project.version} API - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.6.2 - - 1.8 - 1.8 - - - **/testdata/** - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - package - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.3 - - - attach-descriptor - - attach-descriptor - - - - - - maven-project-info-reports-plugin - 2.9 - - - - diff --git a/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom.sha1 b/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom.sha1 deleted file mode 100644 index 72490df18..000000000 --- a/code/arachne/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a9b9dd42d174a5f96d6c195525877fc6d0b2028a \ No newline at end of file diff --git a/code/arachne/com/google/guava/failureaccess/1.0.1/_remote.repositories b/code/arachne/com/google/guava/failureaccess/1.0.1/_remote.repositories deleted file mode 100644 index d95f53c97..000000000 --- a/code/arachne/com/google/guava/failureaccess/1.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:31 EDT 2024 -failureaccess-1.0.1.pom>central= diff --git a/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom b/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom deleted file mode 100644 index 6cce78255..000000000 --- a/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 26.0-android - - failureaccess - 1.0.1 - bundle - Guava InternalFutureFailureAccess and InternalFutures - - Contains - com.google.common.util.concurrent.internal.InternalFutureFailureAccess and - InternalFutures. Most users will never need to use this artifact. Its - classes is conceptually a part of Guava, but they're in this separate - artifact so that Android libraries can use them without pulling in all of - Guava (just as they can use ListenableFuture by depending on the - listenablefuture artifact). - - - - - maven-source-plugin - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - true - org.apache.felix - maven-bundle-plugin - 2.5.0 - - - bundle-manifest - process-classes - - manifest - - - - - - com.google.common.util.concurrent.internal - https://github.com/google/guava/ - - - - - maven-javadoc-plugin - - - attach-docs - - - generate-javadoc-site-report - site - javadoc - - - - - - diff --git a/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom.sha1 b/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom.sha1 deleted file mode 100644 index f2c78c82f..000000000 --- a/code/arachne/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e8160e78fdaaf7088621dc1649d9dd2dfcf8d0e8 \ No newline at end of file diff --git a/code/arachne/com/google/guava/failureaccess/1.0.2/_remote.repositories b/code/arachne/com/google/guava/failureaccess/1.0.2/_remote.repositories deleted file mode 100644 index 60238b2d0..000000000 --- a/code/arachne/com/google/guava/failureaccess/1.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -failureaccess-1.0.2.pom>central= diff --git a/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom b/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom deleted file mode 100644 index 8886a4b2f..000000000 --- a/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom +++ /dev/null @@ -1,100 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 26.0-android - - failureaccess - 1.0.2 - bundle - Guava InternalFutureFailureAccess and InternalFutures - - Contains - com.google.common.util.concurrent.internal.InternalFutureFailureAccess and - InternalFutures. Most users will never need to use this artifact. Its - classes are conceptually a part of Guava, but they're in this separate - artifact so that Android libraries can use them without pulling in all of - Guava (just as they can use ListenableFuture by depending on the - listenablefuture artifact). - - - - - maven-jar-plugin - - - - com.google.common.util.concurrent.internal - - - - - - maven-source-plugin - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - true - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - bundle-manifest - process-classes - - manifest - - - - - - com.google.common.util.concurrent.internal - https://github.com/google/guava/ - - - - - maven-javadoc-plugin - - - attach-docs - - - generate-javadoc-site-report - site - javadoc - - - - - - - - sonatype-oss-release - - - - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - - - - - - diff --git a/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom.sha1 b/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom.sha1 deleted file mode 100644 index 3c7ab029c..000000000 --- a/code/arachne/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2df7ebe307b885a222be352d3bffd5fcf0428ad4 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/25.1-jre/_remote.repositories b/code/arachne/com/google/guava/guava-parent/25.1-jre/_remote.repositories deleted file mode 100644 index 3e2aa4e30..000000000 --- a/code/arachne/com/google/guava/guava-parent/25.1-jre/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:05 EDT 2024 -guava-parent-25.1-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom b/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom deleted file mode 100644 index aba1c746b..000000000 --- a/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom +++ /dev/null @@ -1,302 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 9 - - com.google.guava - guava-parent - 25.1-jre - pom - Guava Maven Parent - https://github.com/google/guava - - - %regex[.*.class] - 0.35 - 1.14 - 3.0.0 - - - GitHub Issues - https://github.com/google/guava/issues - - 2010 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - 3.0.3 - - - scm:git:https://github.com/google/guava.git - scm:git:git@github.com:google/guava.git - https://github.com/google/guava - - - - kevinb9n - Kevin Bourrillion - kevinb@google.com - Google - http://www.google.com - - owner - developer - - -8 - - - - Travis CI - https://travis-ci.org/google/guava - - - guava - guava-gwt - guava-testlib - guava-tests - - - - src - test - - - src - - **/*.java - - - - - - test - - **/*.java - - - - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - - - - maven-compiler-plugin - 3.6.1 - - 1.8 - 1.8 - - - - maven-jar-plugin - 3.0.2 - - - **/ForceGuavaCompilation* - - - - - maven-source-plugin - 2.1.2 - - - attach-sources - post-integration-test - jar - - - - - **/ForceGuavaCompilation* - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${animal.sniffer.version} - - - org.codehaus.mojo.signature - java18 - 1.0 - - - - - check-java-version-compatibility - test - - check - - - - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - true - true - UTF-8 - UTF-8 - UTF-8 - - -XDignore.symbol.file - -Xdoclint:-html - - true - - - - attach-docs - post-integration-test - jar - - - - - maven-dependency-plugin - 2.10 - - - maven-antrun-plugin - 1.6 - - - maven-surefire-plugin - 2.7.2 - - - ${test.include} - - - - - %regex[.*PackageSanityTests.*.class] - - %regex[.*Tester.class] - - %regex[.*[$]\d+.class] - - true - alphabetical - - - -Xmx1536M -Duser.language=hi -Duser.country=IN - - - - - - - - guava-site - Guava Documentation Site - scp://dummy.server/dontinstall/usestaging - - - - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - org.checkerframework - checker-qual - 2.0.0 - - - com.google.errorprone - error_prone_annotations - 2.1.3 - - - com.google.j2objc - j2objc-annotations - 1.1 - - - junit - junit - 4.11 - test - - - org.easymock - easymock - 3.0 - test - - - org.mockito - mockito-core - 2.7.19 - test - - - com.google.jimfs - jimfs - 1.1 - test - - - com.google.truth - truth - ${truth.version} - test - - - - com.google.guava - guava - - - - - com.google.truth.extensions - truth-java8-extension - ${truth.version} - test - - - - com.google.guava - guava - - - - - com.google.caliper - caliper - 1.0-beta-2 - test - - - - com.google.guava - guava - - - - - - diff --git a/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom.sha1 b/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom.sha1 deleted file mode 100644 index 4916286dd..000000000 --- a/code/arachne/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -802065dc15ff936f7c040c339111793dafcf02f0 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/26.0-android/_remote.repositories b/code/arachne/com/google/guava/guava-parent/26.0-android/_remote.repositories deleted file mode 100644 index 404d93661..000000000 --- a/code/arachne/com/google/guava/guava-parent/26.0-android/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:27 EDT 2024 -guava-parent-26.0-android.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom b/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom deleted file mode 100644 index 7fd8054dd..000000000 --- a/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom +++ /dev/null @@ -1,293 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 9 - - com.google.guava - guava-parent - 26.0-android - pom - Guava Maven Parent - https://github.com/google/guava - - - %regex[.*.class] - 0.41 - 1.14 - 3.0.0 - - - GitHub Issues - https://github.com/google/guava/issues - - 2010 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - 3.0.3 - - - scm:git:https://github.com/google/guava.git - scm:git:git@github.com:google/guava.git - https://github.com/google/guava - - - - kevinb9n - Kevin Bourrillion - kevinb@google.com - Google - http://www.google.com - - owner - developer - - -8 - - - - Travis CI - https://travis-ci.org/google/guava - - - guava - guava-testlib - guava-tests - - - - src - test - - - src - - **/*.java - - - - - - test - - **/*.java - - - - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - - - - maven-compiler-plugin - 3.6.1 - - 1.7 - 1.7 - - - - maven-jar-plugin - 3.0.2 - - - **/ForceGuavaCompilation* - - - - - maven-source-plugin - 2.1.2 - - - attach-sources - post-integration-test - jar - - - - - **/ForceGuavaCompilation* - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${animal.sniffer.version} - - - org.codehaus.mojo.signature - java16-sun - 1.10 - - - - sun.misc.Unsafe - - - - - check-java-version-compatibility - test - - check - - - - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - true - true - UTF-8 - UTF-8 - UTF-8 - - -XDignore.symbol.file - -Xdoclint:-html - - true - - - - attach-docs - post-integration-test - jar - - - - - maven-dependency-plugin - 2.10 - - - maven-antrun-plugin - 1.6 - - - maven-surefire-plugin - 2.7.2 - - - ${test.include} - - - - - %regex[.*PackageSanityTests.*.class] - - %regex[.*Tester.class] - - %regex[.*[$]\d+.class] - - true - alphabetical - - - -Xmx1536M -Duser.language=hi -Duser.country=IN - - - - - - - - guava-site - Guava Documentation Site - scp://dummy.server/dontinstall/usestaging - - - - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - org.checkerframework - checker-compat-qual - 2.5.2 - - - com.google.errorprone - error_prone_annotations - 2.1.3 - - - com.google.j2objc - j2objc-annotations - 1.1 - - - junit - junit - 4.11 - test - - - org.easymock - easymock - 3.0 - test - - - org.mockito - mockito-core - 2.19.0 - test - - - com.google.jimfs - jimfs - 1.1 - test - - - com.google.truth - truth - ${truth.version} - test - - - - com.google.guava - guava - - - - - com.google.caliper - caliper - 1.0-beta-2 - test - - - - com.google.guava - guava - - - - - - diff --git a/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom.sha1 b/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom.sha1 deleted file mode 100644 index 5db21c7f9..000000000 --- a/code/arachne/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a2c0df489614352b7e8e503e274bd1dee5c42a64 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/29.0-jre/_remote.repositories b/code/arachne/com/google/guava/guava-parent/29.0-jre/_remote.repositories deleted file mode 100644 index 063aaf7fc..000000000 --- a/code/arachne/com/google/guava/guava-parent/29.0-jre/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:03 EDT 2024 -guava-parent-29.0-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom b/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom deleted file mode 100644 index 886ddace5..000000000 --- a/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom +++ /dev/null @@ -1,376 +0,0 @@ - - - - 4.0.0 - com.google.guava - guava-parent - 29.0-jre - pom - Guava Maven Parent - Parent for guava artifacts - https://github.com/google/guava - - - %regex[.*.class] - 1.0 - 1.18 - 3.1.0 - 3.2.0 - UTF-8 - - - GitHub Issues - https://github.com/google/guava/issues - - 2010 - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:https://github.com/google/guava.git - scm:git:git@github.com:google/guava.git - https://github.com/google/guava - - - - kevinb9n - Kevin Bourrillion - kevinb@google.com - Google - http://www.google.com - - owner - developer - - -8 - - - - Travis CI - https://travis-ci.org/google/guava - - - guava - guava-bom - guava-gwt - guava-testlib - guava-tests - - - - src - test - - - src - - **/*.java - - - - - - test - - **/*.java - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - 3.0.5 - - - 1.8.0 - - - - - - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - - - - maven-compiler-plugin - 3.8.1 - - 1.8 - 1.8 - - - - maven-jar-plugin - 3.2.0 - - - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - post-integration-test - jar - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${animal.sniffer.version} - - com.google.common.util.concurrent.IgnoreJRERequirement - - org.codehaus.mojo.signature - java18 - 1.0 - - - - - check-java-version-compatibility - test - - check - - - - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - true - true - UTF-8 - UTF-8 - UTF-8 - - -XDignore.symbol.file - -Xdoclint:-html - - true - 8 - - - - attach-docs - post-integration-test - jar - - - - - maven-dependency-plugin - 3.1.1 - - - maven-antrun-plugin - 1.6 - - - maven-surefire-plugin - 2.7.2 - - - ${test.include} - - - - - %regex[.*PackageSanityTests.*.class] - - %regex[.*Tester.class] - - %regex[.*[$]\d+.class] - - true - alphabetical - - - -Xmx1536M -Duser.language=hi -Duser.country=IN - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M2 - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - guava-site - Guava Documentation Site - scp://dummy.server/dontinstall/usestaging - - - - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - org.checkerframework - checker-qual - 2.11.1 - - - com.google.errorprone - error_prone_annotations - 2.3.4 - - - com.google.j2objc - j2objc-annotations - 1.3 - - - junit - junit - 4.13 - test - - - org.easymock - easymock - 3.0 - test - - - org.mockito - mockito-core - 2.19.0 - test - - - com.google.jimfs - jimfs - 1.1 - test - - - com.google.truth - truth - ${truth.version} - test - - - - com.google.guava - guava - - - - - com.google.truth.extensions - truth-java8-extension - ${truth.version} - test - - - - com.google.guava - guava - - - - - com.google.caliper - caliper - 1.0-beta-2 - test - - - - com.google.guava - guava - - - - - - - - sonatype-oss-release - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - diff --git a/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom.sha1 b/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom.sha1 deleted file mode 100644 index 77a5c9c01..000000000 --- a/code/arachne/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bd26677407fe1a325335f7c0b96ed42417198250 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/31.1-jre/_remote.repositories b/code/arachne/com/google/guava/guava-parent/31.1-jre/_remote.repositories deleted file mode 100644 index 0d720705e..000000000 --- a/code/arachne/com/google/guava/guava-parent/31.1-jre/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:43 EDT 2024 -guava-parent-31.1-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom b/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom deleted file mode 100644 index 13dd0985d..000000000 --- a/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom +++ /dev/null @@ -1,415 +0,0 @@ - - - - 4.0.0 - com.google.guava - guava-parent - 31.1-jre - pom - Guava Maven Parent - Parent for guava artifacts - https://github.com/google/guava - - - %regex[.*.class] - 1.1.2 - 3.12.0 - 1.20 - 3.1.0 - - - 3.2.1 - UTF-8 - - - GitHub Issues - https://github.com/google/guava/issues - - 2010 - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:https://github.com/google/guava.git - scm:git:git@github.com:google/guava.git - https://github.com/google/guava - - - - kevinb9n - Kevin Bourrillion - kevinb@google.com - Google - http://www.google.com - - owner - developer - - -8 - - - - GitHub Actions - https://github.com/google/guava/actions - - - guava - guava-bom - guava-gwt - guava-testlib - guava-tests - - - - src - test - - - src - - **/*.java - **/*.sw* - - - - - - test - - **/*.java - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - 3.0.5 - - - 1.8.0 - - - - - - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - - - - maven-compiler-plugin - 3.8.1 - - 1.8 - 1.8 - - - -sourcepath - doesnotexist - - - - - maven-jar-plugin - 3.2.0 - - - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - post-integration-test - jar - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${animal.sniffer.version} - - true - - org.codehaus.mojo.signature - java18 - 1.0 - - - - - check-java-version-compatibility - test - - check - - - - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - true - true - UTF-8 - UTF-8 - UTF-8 - - -XDignore.symbol.file - -Xdoclint:-html - - true - 8 - ${maven-javadoc-plugin.additionalJOptions} - - - - attach-docs - post-integration-test - jar - - - - - maven-dependency-plugin - 3.1.1 - - - maven-antrun-plugin - 1.6 - - - maven-surefire-plugin - 2.7.2 - - - ${test.include} - - - - - %regex[.*PackageSanityTests.*.class] - - %regex[.*Tester.class] - - %regex[.*[$]\d+.class] - - true - alphabetical - - - -Xmx1536M -Duser.language=hi -Duser.country=IN - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - guava-site - Guava Documentation Site - scp://dummy.server/dontinstall/usestaging - - - - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - org.checkerframework - checker-qual - ${checker-framework.version} - - - org.checkerframework - checker-qual - ${checker-framework.version} - sources - - - com.google.errorprone - error_prone_annotations - 2.11.0 - - - com.google.j2objc - j2objc-annotations - 1.3 - - - junit - junit - 4.13.2 - test - - - org.easymock - easymock - 4.3 - test - - - org.mockito - mockito-core - 3.9.0 - test - - - com.google.jimfs - jimfs - 1.2 - test - - - com.google.truth - truth - ${truth.version} - test - - - - com.google.guava - guava - - - - - com.google.truth.extensions - truth-java8-extension - ${truth.version} - test - - - - com.google.guava - guava - - - - - com.google.caliper - caliper - 1.0-beta-2 - test - - - - com.google.guava - guava - - - - - - - - sonatype-oss-release - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - - javadocs-jdk9-12 - - [9,13) - - - --no-module-directories - - - - diff --git a/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom.sha1 b/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom.sha1 deleted file mode 100644 index 25206d12a..000000000 --- a/code/arachne/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -99dae234b84eeaafa621086b6fff3530fb7e45d3 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/32.1.2-jre/_remote.repositories b/code/arachne/com/google/guava/guava-parent/32.1.2-jre/_remote.repositories deleted file mode 100644 index dabd12353..000000000 --- a/code/arachne/com/google/guava/guava-parent/32.1.2-jre/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:31 EDT 2024 -guava-parent-32.1.2-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom b/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom deleted file mode 100644 index 38df75f49..000000000 --- a/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom +++ /dev/null @@ -1,493 +0,0 @@ - - - - 4.0.0 - com.google.guava - guava-parent - 32.1.2-jre - pom - Guava Maven Parent - Parent for guava artifacts - https://github.com/google/guava - - - %regex[.*.class] - 1.1.3 - 3.4.1 - 9+181-r4173-1 - - - 3.2.1 - 2023-07-31T21:01:01Z - UTF-8 - - release - standard-jvm - jre - 32.1.2-android - android - android - - - GitHub Issues - https://github.com/google/guava/issues - - 2010 - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:https://github.com/google/guava.git - scm:git:git@github.com:google/guava.git - https://github.com/google/guava - - - - kevinb9n - Kevin Bourrillion - kevinb@google.com - Google - http://www.google.com - - owner - developer - - -8 - - - - GitHub Actions - https://github.com/google/guava/actions - - - guava - guava-bom - guava-gwt - guava-testlib - guava-tests - - - - src - test - - - .. - - LICENSE - - META-INF - - - - - test - - **/*.java - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - 3.0.5 - - - 1.8.0 - - - - - - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - ${java.specification.version} - - - - - - - maven-compiler-plugin - 3.8.1 - - 1.8 - 1.8 - UTF-8 - true - - - -sourcepath - doesnotexist - - -XDcompilePolicy=simple - - - - - com.google.errorprone - error_prone_core - 2.16 - - - - true - - - - maven-jar-plugin - 3.2.0 - - - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - post-integration-test - jar - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.23 - - com.google.common.collect.IgnoreJRERequirement,com.google.common.hash.IgnoreJRERequirement,com.google.common.io.IgnoreJRERequirement,com.google.common.reflect.IgnoreJRERequirement,com.google.common.testing.IgnoreJRERequirement - true - - org.codehaus.mojo.signature - java18 - 1.0 - - - - - check-java-version-compatibility - test - - check - - - - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - true - true - UTF-8 - UTF-8 - UTF-8 - - -XDignore.symbol.file - -Xdoclint:-html - - true - 8 - ${maven-javadoc-plugin.additionalJOptions} - - - - attach-docs - post-integration-test - jar - - - - - maven-dependency-plugin - 3.1.1 - - - maven-antrun-plugin - 1.6 - - - maven-surefire-plugin - 2.7.2 - - - ${test.include} - - - - - %regex[.*PackageSanityTests.*.class] - - %regex[.*Tester.class] - - %regex[.*[$]\d+.class] - - true - alphabetical - - - -Xmx1536M -Duser.language=hi -Duser.country=IN ${test.add.opens} - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - maven-resources-plugin - 3.3.1 - - - org.codehaus.mojo - build-helper-maven-plugin - 3.4.0 - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - guava-site - Guava Documentation Site - scp://dummy.server/dontinstall/usestaging - - - - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - org.checkerframework - checker-qual - 3.33.0 - - - com.google.errorprone - error_prone_annotations - 2.18.0 - - - com.google.j2objc - j2objc-annotations - 2.8 - - - - - - - sonatype-oss-release - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - - - - - - - javadocs-jdk11-12 - - [11,13) - - - --no-module-directories - - - - open-jre-modules - - [9,] - - - - - --add-opens java.base/java.lang=ALL-UNNAMED - --add-opens java.base/java.util=ALL-UNNAMED - --add-opens java.base/sun.security.jca=ALL-UNNAMED - - - - - javac9-for-jdk8 - - 1.8 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar - - - - - - - - run-error-prone - - - [11,12),[16,) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - - -Xplugin:ErrorProne -Xep:NullArgumentForNonNullParameter:OFF -Xep:Java8ApiChecker:ERROR - - - -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - - - - - - - - diff --git a/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom.sha1 b/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom.sha1 deleted file mode 100644 index 1af063e7f..000000000 --- a/code/arachne/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c03ed8c8693d7c2e3c26f11bb35ca2523919b0dc \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava-parent/33.2.0-jre/_remote.repositories b/code/arachne/com/google/guava/guava-parent/33.2.0-jre/_remote.repositories deleted file mode 100644 index 242ba143b..000000000 --- a/code/arachne/com/google/guava/guava-parent/33.2.0-jre/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -guava-parent-33.2.0-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom b/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom deleted file mode 100644 index 0728b767a..000000000 --- a/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom +++ /dev/null @@ -1,482 +0,0 @@ - - - - 4.0.0 - com.google.guava - guava-parent - 33.2.0-jre - pom - Guava Maven Parent - Parent for guava artifacts - https://github.com/google/guava - - - %regex[.*.class] - 1.4.2 - 3.0.2 - 3.42.0 - 2.26.1 - 3.0.0 - 9+181-r4173-1 - - - 2024-05-01T19:45:47Z - UTF-8 - - - release - standard-jvm - jre - 33.2.0-android - android - android - - - GitHub Issues - https://github.com/google/guava/issues - - 2010 - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:https://github.com/google/guava.git - scm:git:git@github.com:google/guava.git - https://github.com/google/guava - - - - kevinb9n - Kevin Bourrillion - kevinb@google.com - Google - http://www.google.com - - owner - developer - - -8 - - - - GitHub Actions - https://github.com/google/guava/actions - - - guava - guava-bom - guava-gwt - guava-testlib - guava-tests - - - - src - test - - - .. - - LICENSE - - META-INF - - - - - test - - **/*.java - - - - - - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - 3.0.5 - - - 1.8.0 - - - - - - - - - - - maven-compiler-plugin - 3.8.1 - - 1.8 - 1.8 - UTF-8 - true - - - -sourcepath - doesnotexist - - -XDcompilePolicy=simple - - - - - com.google.errorprone - error_prone_core - 2.23.0 - - - - true - - - - maven-jar-plugin - 3.2.0 - - - maven-source-plugin - 3.3.0 - - - attach-sources - - jar-no-fork - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.23 - - - org.ow2.asm - asm - 9.6 - - - - com.google.common.base.IgnoreJRERequirement,com.google.common.collect.IgnoreJRERequirement,com.google.common.hash.IgnoreJRERequirement,com.google.common.io.IgnoreJRERequirement,com.google.common.reflect.IgnoreJRERequirement,com.google.common.testing.IgnoreJRERequirement - true - - org.codehaus.mojo.signature - java18 - 1.0 - - - - - check-java-version-compatibility - test - - check - - - - - - maven-javadoc-plugin - 3.5.0 - - true - true - UTF-8 - UTF-8 - UTF-8 - - -XDignore.symbol.file - -Xdoclint:-html - - true - ${java.specification.version} - ${maven-javadoc-plugin.additionalJOptions} - - - - attach-docs - jar - - - - - maven-dependency-plugin - 3.1.1 - - - maven-antrun-plugin - 1.6 - - - maven-surefire-plugin - 2.7.2 - - - ${test.include} - - - - - %regex[.*PackageSanityTests.*.class] - - %regex[.*Tester.class] - - %regex[.*[$]\d+.class] - - true - alphabetical - - - -Xmx1536M -Duser.language=hi -Duser.country=IN ${test.add.args} ${test.add.opens} - - - - maven-enforcer-plugin - 3.0.0-M3 - - - maven-resources-plugin - 3.3.1 - - - org.codehaus.mojo - build-helper-maven-plugin - 3.4.0 - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - guava-site - Guava Documentation Site - scp://dummy.server/dontinstall/usestaging - - - - - - com.google.code.findbugs - jsr305 - ${jsr305.version} - - - org.checkerframework - checker-qual - ${checker.version} - - - com.google.errorprone - error_prone_annotations - ${errorprone.version} - - - com.google.j2objc - j2objc-annotations - ${j2objc.version} - - - - - - - sonatype-oss-release - - - - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - - - - - - - javadocs-jdk11-12 - - [11,13) - - - --no-module-directories - - - - open-jre-modules - - [9,] - - - - - --add-opens java.base/java.lang=ALL-UNNAMED - --add-opens java.base/java.util=ALL-UNNAMED - --add-opens java.base/sun.security.jca=ALL-UNNAMED - - - - - javac9-for-jdk8 - - 1.8 - - - - - maven-compiler-plugin - - - - -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar - - - - - - - - run-error-prone - - - [11,12),[16,) - - - - - maven-compiler-plugin - - - - - -Xplugin:ErrorProne -Xep:NullArgumentForNonNullParameter:OFF -Xep:Java8ApiChecker:ERROR - - - -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - - - - - - - - javac-for-jvm18plus - - - [18,] - - - -Djava.security.manager=allow - - - - diff --git a/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom.sha1 b/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom.sha1 deleted file mode 100644 index c1b4b99c4..000000000 --- a/code/arachne/com/google/guava/guava-parent/33.2.0-jre/guava-parent-33.2.0-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f5bfac48964350d7ad36aa378acff0ed379f816b \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava/25.1-jre/_remote.repositories b/code/arachne/com/google/guava/guava/25.1-jre/_remote.repositories deleted file mode 100644 index 296202f35..000000000 --- a/code/arachne/com/google/guava/guava/25.1-jre/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:05 EDT 2024 -guava-25.1-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom b/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom deleted file mode 100644 index 7095e0404..000000000 --- a/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom +++ /dev/null @@ -1,180 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 25.1-jre - - guava - bundle - Guava: Google Core Libraries for Java - - Guava is a suite of core and expanded libraries that include - utility classes, google's collections, io classes, and much - much more. - - - - com.google.code.findbugs - jsr305 - - - org.checkerframework - checker-qual - - - com.google.errorprone - error_prone_annotations - - - com.google.j2objc - j2objc-annotations - - - org.codehaus.mojo - animal-sniffer-annotations - ${animal.sniffer.version} - - - - - - - - maven-jar-plugin - - - - com.google.common - - - - - - true - org.apache.felix - maven-bundle-plugin - 2.5.0 - - - bundle-manifest - process-classes - - manifest - - - - - - !com.google.common.base.internal,com.google.common.* - - javax.annotation;resolution:=optional, - javax.crypto.*;resolution:=optional, - sun.misc.*;resolution:=optional - - https://github.com/google/guava/ - - - - - maven-compiler-plugin - - - maven-source-plugin - - - - maven-dependency-plugin - - - unpack-jdk-sources - generate-sources - unpack-dependencies - - srczip - ${project.build.directory}/jdk-sources - false - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - maven-javadoc-plugin - - - - - ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources - - com.google.common - com.google.common.base.internal - - - - false - - - - - https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/ - ${project.basedir}/javadoc-link/jsr305 - - - https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/ - ${project.basedir}/javadoc-link/j2objc-annotations - - - - https://docs.oracle.com/javase/9/docs/api/ - https://docs.oracle.com/javase/9/docs/api/ - - - - https://checkerframework.org/api/ - ${project.basedir}/javadoc-link/checker-framework - - - - https://errorprone.info/api/latest/ - - - - - attach-docs - - - generate-javadoc-site-report - site - javadoc - - - - - - - - srczip - - - ${java.home}/../src.zip - - - - - jdk - srczip - 999 - system - ${java.home}/../src.zip - true - - - - - diff --git a/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom.sha1 b/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom.sha1 deleted file mode 100644 index 7636b4d7b..000000000 --- a/code/arachne/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5dd13f6c0d56f05059c5eba88a20a8699ece583d \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava/29.0-jre/_remote.repositories b/code/arachne/com/google/guava/guava/29.0-jre/_remote.repositories deleted file mode 100644 index f926b3af8..000000000 --- a/code/arachne/com/google/guava/guava/29.0-jre/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:03 EDT 2024 -guava-29.0-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom b/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom deleted file mode 100644 index 7483f5720..000000000 --- a/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom +++ /dev/null @@ -1,252 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 29.0-jre - - guava - bundle - Guava: Google Core Libraries for Java - - Guava is a suite of core and expanded libraries that include - utility classes, google's collections, io classes, and much - much more. - - - - com.google.guava - failureaccess - 1.0.1 - - - com.google.guava - listenablefuture - 9999.0-empty-to-avoid-conflict-with-guava - - - com.google.code.findbugs - jsr305 - - - org.checkerframework - checker-qual - - - com.google.errorprone - error_prone_annotations - - - com.google.j2objc - j2objc-annotations - - - - - - - - maven-jar-plugin - - - - com.google.common - - - - - - true - org.apache.felix - maven-bundle-plugin - 2.5.0 - - - bundle-manifest - process-classes - - manifest - - - - - - - !com.google.common.base.internal, - !com.google.common.util.concurrent.internal, - com.google.common.* - - - com.google.common.util.concurrent.internal, - javax.annotation;resolution:=optional, - javax.crypto.*;resolution:=optional, - sun.misc.*;resolution:=optional - - https://github.com/google/guava/ - - - - - maven-compiler-plugin - - - maven-source-plugin - - - - maven-dependency-plugin - - - unpack-jdk-sources - generate-sources - unpack-dependencies - - srczip - ${project.build.directory}/jdk-sources - false - - **/module-info.java,**/java/io/FileDescriptor.java - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - maven-javadoc-plugin - - - - - ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources - - - - - com.google.common.base.internal,com.google.common.base.internal.*,com.google.thirdparty.publicsuffix,com.google.thirdparty.publicsuffix.*,com.oracle.*,com.sun.*,java.*,javax.*,jdk,jdk.*,org.*,sun.* - - - - - apiNote - X - - - implNote - X - - - implSpec - X - - - jls - X - - - revised - X - - - spec - X - - - - - - false - - - - - https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/ - ${project.basedir}/javadoc-link/jsr305 - - - https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/ - ${project.basedir}/javadoc-link/j2objc-annotations - - - - https://docs.oracle.com/javase/9/docs/api/ - https://docs.oracle.com/javase/9/docs/api/ - - - - https://checkerframework.org/api/ - ${project.basedir}/javadoc-link/checker-framework - - - - https://errorprone.info/api/latest/ - - - - - attach-docs - - - generate-javadoc-site-report - site - javadoc - - - - - - - - srczip-parent - - - ${java.home}/../src.zip - - - - - jdk - srczip - 999 - system - ${java.home}/../src.zip - true - - - - - srczip-lib - - - ${java.home}/lib/src.zip - - - - - jdk - srczip - 999 - system - ${java.home}/lib/src.zip - true - - - - - - maven-javadoc-plugin - - - ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources/java.base - - - - - - - diff --git a/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom.sha1 b/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom.sha1 deleted file mode 100644 index 9d2fb6e9c..000000000 --- a/code/arachne/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e40cdee0d70244df1e963daac53a16241aea4585 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava/31.1-jre/_remote.repositories b/code/arachne/com/google/guava/guava/31.1-jre/_remote.repositories deleted file mode 100644 index 6d0a3253e..000000000 --- a/code/arachne/com/google/guava/guava/31.1-jre/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:43 EDT 2024 -guava-31.1-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom b/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom deleted file mode 100644 index 81a2005c7..000000000 --- a/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom +++ /dev/null @@ -1,253 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 31.1-jre - - guava - bundle - Guava: Google Core Libraries for Java - https://github.com/google/guava - - Guava is a suite of core and expanded libraries that include - utility classes, Google's collections, I/O classes, and - much more. - - - - com.google.guava - failureaccess - 1.0.1 - - - com.google.guava - listenablefuture - 9999.0-empty-to-avoid-conflict-with-guava - - - com.google.code.findbugs - jsr305 - - - org.checkerframework - checker-qual - - - com.google.errorprone - error_prone_annotations - - - com.google.j2objc - j2objc-annotations - - - - - - - - maven-jar-plugin - - - - com.google.common - - - - - - true - org.apache.felix - maven-bundle-plugin - 2.5.0 - - - bundle-manifest - process-classes - - manifest - - - - - - - !com.google.common.base.internal, - !com.google.common.util.concurrent.internal, - com.google.common.* - - - com.google.common.util.concurrent.internal, - javax.annotation;resolution:=optional, - javax.crypto.*;resolution:=optional, - sun.misc.*;resolution:=optional - - https://github.com/google/guava/ - - - - - maven-compiler-plugin - - - maven-source-plugin - - - - maven-dependency-plugin - - - unpack-jdk-sources - generate-sources - unpack-dependencies - - srczip - ${project.build.directory}/jdk-sources - false - - **/module-info.java,**/java/io/FileDescriptor.java - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - maven-javadoc-plugin - - - - - ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources - - - - - com.azul.tooling.in,com.google.common.base.internal,com.google.common.base.internal.*,com.google.thirdparty.publicsuffix,com.google.thirdparty.publicsuffix.*,com.oracle.*,com.sun.*,java.*,javax.*,jdk,jdk.*,org.*,sun.* - - - - - apiNote - X - - - implNote - X - - - implSpec - X - - - jls - X - - - revised - X - - - spec - X - - - - - - false - - - - - https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/ - ${project.basedir}/javadoc-link/jsr305 - - - https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/ - ${project.basedir}/javadoc-link/j2objc-annotations - - - - https://docs.oracle.com/javase/9/docs/api/ - https://docs.oracle.com/javase/9/docs/api/ - - - - https://checkerframework.org/api/ - ${project.basedir}/javadoc-link/checker-framework - - - - https://errorprone.info/api/latest/ - - - - - attach-docs - - - generate-javadoc-site-report - site - javadoc - - - - - - - - srczip-parent - - - ${java.home}/../src.zip - - - - - jdk - srczip - 999 - system - ${java.home}/../src.zip - true - - - - - srczip-lib - - - ${java.home}/lib/src.zip - - - - - jdk - srczip - 999 - system - ${java.home}/lib/src.zip - true - - - - - - maven-javadoc-plugin - - - ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources/java.base - - - - - - - diff --git a/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom.sha1 b/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom.sha1 deleted file mode 100644 index e3b406e5a..000000000 --- a/code/arachne/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -03a6ac93765fbbc416179f7c7127b9ddddbf38d9 \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava/32.1.2-jre/_remote.repositories b/code/arachne/com/google/guava/guava/32.1.2-jre/_remote.repositories deleted file mode 100644 index 55c668973..000000000 --- a/code/arachne/com/google/guava/guava/32.1.2-jre/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:31 EDT 2024 -guava-32.1.2-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom b/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom deleted file mode 100644 index d87aa8952..000000000 --- a/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom +++ /dev/null @@ -1,309 +0,0 @@ - - - - 4.0.0 - - com.google.guava - guava-parent - 32.1.2-jre - - guava - bundle - Guava: Google Core Libraries for Java - https://github.com/google/guava - - Guava is a suite of core and expanded libraries that include - utility classes, Google's collections, I/O classes, and - much more. - - - - com.google.guava - failureaccess - 1.0.1 - - - com.google.guava - listenablefuture - 9999.0-empty-to-avoid-conflict-with-guava - - - com.google.code.findbugs - jsr305 - - - org.checkerframework - checker-qual - - - com.google.errorprone - error_prone_annotations - - - com.google.j2objc - j2objc-annotations - - - - - - - - .. - - LICENSE - proguard/* - - META-INF - - - - - maven-jar-plugin - - - - com.google.common - - - - - - true - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - bundle-manifest - process-classes - - manifest - - - - - - - !com.google.common.base.internal, - !com.google.common.util.concurrent.internal, - com.google.common.* - - - com.google.common.util.concurrent.internal, - javax.annotation;resolution:=optional, - javax.crypto.*;resolution:=optional, - sun.misc.*;resolution:=optional - - https://github.com/google/guava/ - - - - - maven-compiler-plugin - - - maven-source-plugin - - - - maven-dependency-plugin - - - unpack-jdk-sources - generate-sources - unpack-dependencies - - srczip - ${project.build.directory}/jdk-sources - false - - **/module-info.java,**/java/io/FileDescriptor.java - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - maven-javadoc-plugin - - - - - ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources - - - - - com.azul.tooling.in,com.google.common.base.internal,com.google.common.base.internal.*,com.google.thirdparty.publicsuffix,com.google.thirdparty.publicsuffix.*,com.oracle.*,com.sun.*,java.*,javax.*,jdk,jdk.*,org.*,sun.* - - - - - apiNote - X - - - implNote - X - - - implSpec - X - - - jls - X - - - revised - X - - - spec - X - - - - - - false - - - - - https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/ - ${project.basedir}/javadoc-link/jsr305 - - - https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/ - ${project.basedir}/javadoc-link/j2objc-annotations - - - - https://docs.oracle.com/javase/9/docs/api/ - https://docs.oracle.com/javase/9/docs/api/ - - - - https://checkerframework.org/api/ - ${project.basedir}/javadoc-link/checker-framework - - - - https://errorprone.info/api/latest/ - - ../overview.html - - - - attach-docs - - - generate-javadoc-site-report - site - javadoc - - - - - maven-resources-plugin - - - gradle-module-metadata - compile - - copy-resources - - - target/publish - - - . - - module.json - - true - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - attach-gradle-module-metadata - - attach-artifact - - - - - target/publish/module.json - module - - - - - - - - - - - srczip-parent - - - ${java.home}/../src.zip - - - - - jdk - srczip - 999 - system - ${java.home}/../src.zip - true - - - - - srczip-lib - - - ${java.home}/lib/src.zip - - - - - jdk - srczip - 999 - system - ${java.home}/lib/src.zip - true - - - - - - maven-javadoc-plugin - - - ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources/java.base - - - - - - - diff --git a/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom.sha1 b/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom.sha1 deleted file mode 100644 index 42e741b19..000000000 --- a/code/arachne/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a72008cdb1474c77bc2876919a5ee5fbf0fb79bc \ No newline at end of file diff --git a/code/arachne/com/google/guava/guava/33.2.0-jre/_remote.repositories b/code/arachne/com/google/guava/guava/33.2.0-jre/_remote.repositories deleted file mode 100644 index d6cb7218f..000000000 --- a/code/arachne/com/google/guava/guava/33.2.0-jre/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -guava-33.2.0-jre.pom>central= diff --git a/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom b/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom deleted file mode 100644 index 18debc3c0..000000000 --- a/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom +++ /dev/null @@ -1,225 +0,0 @@ - - - - 4.0.0 - - com.google.guava - guava-parent - 33.2.0-jre - - guava - bundle - Guava: Google Core Libraries for Java - https://github.com/google/guava - - Guava is a suite of core and expanded libraries that include - utility classes, Google's collections, I/O classes, and - much more. - - - - com.google.guava - failureaccess - 1.0.2 - - - com.google.guava - listenablefuture - 9999.0-empty-to-avoid-conflict-with-guava - - - com.google.code.findbugs - jsr305 - - - org.checkerframework - checker-qual - - - com.google.errorprone - error_prone_annotations - - - com.google.j2objc - j2objc-annotations - - - - - - .. - - LICENSE - proguard/* - - META-INF - - - - - maven-jar-plugin - - - - com.google.common - - - - - - true - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - bundle-manifest - process-classes - - manifest - - - - - - - !com.google.common.base.internal, - !com.google.common.util.concurrent.internal, - com.google.common.* - - - com.google.common.util.concurrent.internal, - javax.annotation;resolution:=optional, - javax.crypto.*;resolution:=optional, - sun.misc.*;resolution:=optional - - https://github.com/google/guava/ - - - - - maven-compiler-plugin - - - maven-source-plugin - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - maven-javadoc-plugin - - - - - com.azul.tooling.in,com.google.common.base.internal,com.google.common.base.internal.*,com.google.thirdparty.publicsuffix,com.google.thirdparty.publicsuffix.*,com.oracle.*,com.sun.*,java.*,javax.*,jdk,jdk.*,org.*,sun.* - - - - - apiNote - X - - - implNote - X - - - implSpec - X - - - jls - X - - - revised - X - - - spec - X - - - - - - false - - - - - https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/ - ${project.basedir}/javadoc-link/jsr305 - - - https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/ - ${project.basedir}/javadoc-link/j2objc-annotations - - - - https://docs.oracle.com/javase/9/docs/api/ - https://docs.oracle.com/javase/9/docs/api/ - - - - https://checkerframework.org/api/ - ${project.basedir}/javadoc-link/checker-framework - - - - https://errorprone.info/api/latest/ - - ../overview.html - - - - maven-resources-plugin - - - gradle-module-metadata - compile - - copy-resources - - - target/publish - - - . - - module.json - - true - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - attach-gradle-module-metadata - - attach-artifact - - - - - target/publish/module.json - module - - - - - - - - - diff --git a/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom.sha1 b/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom.sha1 deleted file mode 100644 index 41ceafa9e..000000000 --- a/code/arachne/com/google/guava/guava/33.2.0-jre/guava-33.2.0-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e78e6bc096ac140596ce47c2cd6e90f12a417779 \ No newline at end of file diff --git a/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/_remote.repositories b/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/_remote.repositories deleted file mode 100644 index 6493b3c1a..000000000 --- a/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:27 EDT 2024 -listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom>central= diff --git a/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom b/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom deleted file mode 100644 index ad3f23ec6..000000000 --- a/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 26.0-android - - listenablefuture - 9999.0-empty-to-avoid-conflict-with-guava - Guava ListenableFuture only - - An empty artifact that Guava depends on to signal that it is providing - ListenableFuture -- but is also available in a second "version" that - contains com.google.common.util.concurrent.ListenableFuture class, without - any other Guava classes. The idea is: - - - If users want only ListenableFuture, they depend on listenablefuture-1.0. - - - If users want all of Guava, they depend on guava, which, as of Guava - 27.0, depends on - listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-... - version number is enough for some build systems (notably, Gradle) to select - that empty artifact over the "real" listenablefuture-1.0 -- avoiding a - conflict with the copy of ListenableFuture in guava itself. If users are - using an older version of Guava or a build system other than Gradle, they - may see class conflicts. If so, they can solve them by manually excluding - the listenablefuture artifact or manually forcing their build systems to - use 9999.0-.... - - - - - maven-source-plugin - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - maven-javadoc-plugin - - - attach-docs - - - generate-javadoc-site-report - site - javadoc - - - - - - diff --git a/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom.sha1 b/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom.sha1 deleted file mode 100644 index f6a54cf0f..000000000 --- a/code/arachne/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1b77ba79f9b2b7dfd4e15ea7bb0d568d5eb9cb8d \ No newline at end of file diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.1/_remote.repositories b/code/arachne/com/google/j2objc/j2objc-annotations/1.1/_remote.repositories deleted file mode 100644 index 77336ae1d..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:06 EDT 2024 -j2objc-annotations-1.1.pom>central= diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom b/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom deleted file mode 100644 index b640c5143..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom +++ /dev/null @@ -1,87 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - com.google.j2objc - j2objc-annotations - jar - 1.1 - - J2ObjC Annotations - - A set of annotations that provide additional information to the J2ObjC - translator to modify the result of translation. - - https://github.com/google/j2objc/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.3 - - - generate-docs - package - jar - - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - generate-sources - package - jar-no-fork - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - sign - - - - - - diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom.sha1 b/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom.sha1 deleted file mode 100644 index af8dd7d30..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b964a9414771661bdf35a3f10692a2fb0dd2c866 \ No newline at end of file diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.3/_remote.repositories b/code/arachne/com/google/j2objc/j2objc-annotations/1.3/_remote.repositories deleted file mode 100644 index ecd18b9a3..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:44 EDT 2024 -j2objc-annotations-1.3.pom>central= diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom b/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom deleted file mode 100644 index d32414aa5..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom +++ /dev/null @@ -1,87 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - com.google.j2objc - j2objc-annotations - jar - 1.3 - - J2ObjC Annotations - - A set of annotations that provide additional information to the J2ObjC - translator to modify the result of translation. - - https://github.com/google/j2objc/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.3 - - - generate-docs - package - jar - - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - generate-sources - package - jar-no-fork - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - sign - - - - - - diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom.sha1 b/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom.sha1 deleted file mode 100644 index ca9eed8a0..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -47e0dd93285dcc6b33181713bc7e8aed66742964 \ No newline at end of file diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/2.8/_remote.repositories b/code/arachne/com/google/j2objc/j2objc-annotations/2.8/_remote.repositories deleted file mode 100644 index 48a136969..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/2.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:32 EDT 2024 -j2objc-annotations-2.8.pom>central= diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom b/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom deleted file mode 100644 index 80d656d55..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom +++ /dev/null @@ -1,94 +0,0 @@ - - - - 4.0.0 - - - 1.7 - 1.7 - - - - org.sonatype.oss - oss-parent - 9 - - - com.google.j2objc - j2objc-annotations - jar - 2.8 - - J2ObjC Annotations - - A set of annotations that provide additional information to the J2ObjC - translator to modify the result of translation. - - https://github.com/google/j2objc/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.3 - - - generate-docs - package - jar - - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - generate-sources - package - jar-no-fork - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - - - - diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom.sha1 b/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom.sha1 deleted file mode 100644 index 50eacf675..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c8daacea97066c6826844e2175ec89857e598122 \ No newline at end of file diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/_remote.repositories b/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/_remote.repositories deleted file mode 100644 index ee5c1f35f..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:27 EDT 2024 -j2objc-annotations-3.0.0.pom>central= diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom b/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom deleted file mode 100644 index 84abf479d..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom +++ /dev/null @@ -1,158 +0,0 @@ - - - - 4.0.0 - - - 1.7 - 1.7 - - - com.google.j2objc - j2objc-annotations - jar - 3.0.0 - - J2ObjC Annotations - - A set of annotations that provide additional information to the J2ObjC - translator to modify the result of translation. - - https://github.com/google/j2objc/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - http://github.com/google/j2objc - scm:git:git://github.com/google/j2objc.git - scm:git:ssh://git@github.com/google/j2objc.git - - - - - tomball - Tom Ball - tball@google.com - Google - https://www.google.com - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - - default-compile - - 1.8 - 1.8 - - module-info.java - - - - - compile-java9 - compile - - compile - - - 9 - true - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - true - - - - META-INF/versions/9/com/** - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - - generate-docs - package - jar - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - generate-sources - package - jar-no-fork - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - verify - sign - - - - - - diff --git a/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom.sha1 b/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom.sha1 deleted file mode 100644 index c979a2bde..000000000 --- a/code/arachne/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -45cbaa9d129a696907d1e5bc56c707b6a0043181 \ No newline at end of file diff --git a/code/arachne/com/ibm/icu/icu4j/62.1/_remote.repositories b/code/arachne/com/ibm/icu/icu4j/62.1/_remote.repositories deleted file mode 100644 index 1a38b3a53..000000000 --- a/code/arachne/com/ibm/icu/icu4j/62.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:08 EDT 2024 -icu4j-62.1.pom>central= diff --git a/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom b/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom deleted file mode 100644 index 419b100f6..000000000 --- a/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom +++ /dev/null @@ -1,146 +0,0 @@ - - - - 4.0.0 - - com.ibm.icu - icu4j - 62.1 - - ICU4J - - International Component for Unicode for Java (ICU4J) is a mature, widely used Java library - providing Unicode and Globalization support - - http://icu-project.org/ - 2001 - - - Unicode/ICU License - http://source.icu-project.org/repos/icu/trunk/icu4j/main/shared/licenses/LICENSE - repo - - - - - - mark - Mark Davis - Google - - PMC Member - - - - emmons - John Emmons - IBM Corporation - - PMC Member - - - - doug - Doug Felt - Google - - PMC Member - - - - deborah - Deborah Goldsmith - Apple - - PMC Member - - - - srl - Steven Loomis - IBM Corporation - - PMC Member - - - - markus - Markus Scherer - Google - - PMC Member - - - - pedberg - Peter Edberg - Apple - - PMC Member - - - - yoshito - Yoshito Umaoka - IBM Corporation - - PMC Member - - - - - - - icu-support - https://lists.sourceforge.net/lists/listinfo/icu-support - https://lists.sourceforge.net/lists/listinfo/icu-support - icu-support@lists.sourceforge.net - http://sourceforge.net/mailarchive/forum.php?forum_name=icu-support - - - icu-announce - https://lists.sourceforge.net/lists/listinfo/icu-announce - https://lists.sourceforge.net/lists/listinfo/icu-announce - icu-announce@lists.sourceforge.net - http://sourceforge.net/mailarchive/forum.php?forum_name=icu-announce - - - icu-design - https://lists.sourceforge.net/lists/listinfo/icu-design - https://lists.sourceforge.net/lists/listinfo/icu-design - icu-design@lists.sourceforge.net - http://sourceforge.net/mailarchive/forum.php?forum_name=icu-design - - - - - scm:svn:http://source.icu-project.org/repos/icu/trunk/icu4j - scm:svn:http://source.icu-project.org/repos/icu/trunk/icu4j - http://source.icu-project.org/repos/icu/trunk/icu4j - - - Trac - http://bugs.icu-project.org/trac/ - - - - - icu4j-releases - ICU4J Central Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2 - - - icu4j-snapshots - ICU4J Central Development Repository - https://oss.sonatype.org/content/repositories/snapshots - - - diff --git a/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom.sha1 b/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom.sha1 deleted file mode 100644 index eda137412..000000000 --- a/code/arachne/com/ibm/icu/icu4j/62.1/icu4j-62.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e7bfed634332fc5f886afc887b8522fad044beb7 \ No newline at end of file diff --git a/code/arachne/com/jayway/jsonpath/json-path/2.9.0/_remote.repositories b/code/arachne/com/jayway/jsonpath/json-path/2.9.0/_remote.repositories deleted file mode 100644 index fecdd7b80..000000000 --- a/code/arachne/com/jayway/jsonpath/json-path/2.9.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -json-path-2.9.0.pom>central= diff --git a/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom b/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom deleted file mode 100644 index ed8e872b5..000000000 --- a/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - 4.0.0 - com.jayway.jsonpath - json-path - 2.9.0 - json-path - A library to query and verify JSON - https://github.com/jayway/JsonPath - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - kalle.stenflo - Kalle Stenflo - kalle.stenflo (a) gmail.com - - - - scm:git:git://github.com/jayway/JsonPath.git - scm:git:git://github.com/jayway/JsonPath.git - scm:git:git://github.com/jayway/JsonPath.git - - - - net.minidev - json-smart - 2.5.0 - runtime - - - org.slf4j - slf4j-api - 2.0.11 - runtime - - - diff --git a/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom.sha1 b/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom.sha1 deleted file mode 100644 index 1ed4b4274..000000000 --- a/code/arachne/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e614d3178d8dddfb44c871fc195fba3c5c212cbf \ No newline at end of file diff --git a/code/arachne/com/microsoft/azure/msal4j/1.9.0/_remote.repositories b/code/arachne/com/microsoft/azure/msal4j/1.9.0/_remote.repositories deleted file mode 100644 index 69376fd69..000000000 --- a/code/arachne/com/microsoft/azure/msal4j/1.9.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:18 EDT 2024 -msal4j-1.9.0.pom>central= diff --git a/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom b/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom deleted file mode 100644 index de2143bdf..000000000 --- a/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom +++ /dev/null @@ -1,286 +0,0 @@ - - 4.0.0 - com.microsoft.azure - msal4j - 1.9.0 - jar - msal4j - - Microsoft Authentication Library for Java gives you the ability to obtain tokens from Azure AD v2 (work and school - accounts, MSA) and Azure AD B2C, gaining access to Microsoft Cloud API and any other API secured by Microsoft - identities - - https://github.com/AzureAD/microsoft-authentication-library-for-java - - - msopentech - Microsoft Open Technologies, Inc. - - - - - MIT License - - - 2013 - - https://github.com/AzureAD/microsoft-authentication-library-for-java - - - - UTF-8 - - - - - com.nimbusds - oauth2-oidc-sdk - 8.23.1 - - - org.slf4j - slf4j-api - 1.7.28 - - - org.projectlombok - lombok - 1.18.6 - provided - - - com.fasterxml.jackson.core - jackson-databind - 2.10.1 - - - - - org.apache.commons - commons-text - 1.7 - test - - - org.testng - testng - 7.1.0 - test - - - org.powermock - powermock-module-testng - 2.0.0 - test - - - org.powermock - powermock-api-easymock - 2.0.0 - test - - - org.easymock - easymock - 4.0.2 - test - - - org.skyscreamer - jsonassert - 1.5.0 - test - - - org.apache.httpcomponents - httpclient - 4.5.9 - test - - - com.microsoft.azure - azure-keyvault - 1.2.1 - test - - - org.seleniumhq.selenium - selenium-java - 3.14.0 - test - - - com.google.guava - guava - 26.0-jre - test - - - ch.qos.logback - logback-classic - 1.2.3 - test - - - commons-io - commons-io - 2.6 - test - - - - - - - central - https://repo1.maven.org/maven2 - - false - - - - - - central - https://repo1.maven.org/maven2 - - false - - - - - - ${project.build.directory}/delombok - - - org.projectlombok - lombok-maven-plugin - 1.18.2.0 - - - - delombok - - - - - src/main/java - ${project.build.directory}/delombok - false - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - - true - true - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.10 - - -noverify - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.1.0 - - ${project.build.directory}/delombok - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - attach-sources - - jar - - - - - - com.github.spotbugs - spotbugs-maven-plugin - 3.1.11 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.7.0 - - 8 - 8 - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.10 - - - add-test-source - process-resources - - add-test-source - - - - src/integrationtest/java - - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.22.1 - - - - integration-test - verify - - - - - - biz.aQute.bnd - bnd-maven-plugin - 4.3.1 - - - - bnd-process - - - - - - - diff --git a/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom.sha1 b/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom.sha1 deleted file mode 100644 index 19b4ee001..000000000 --- a/code/arachne/com/microsoft/azure/msal4j/1.9.0/msal4j-1.9.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3fd96d19d2137ab17d24afbda24a1e64522ea063 \ No newline at end of file diff --git a/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/_remote.repositories b/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/_remote.repositories deleted file mode 100644 index 91d6011f2..000000000 --- a/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -mssql-jdbc-12.4.2.jre11.pom>central= diff --git a/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom b/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom deleted file mode 100644 index 137407483..000000000 --- a/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom +++ /dev/null @@ -1,589 +0,0 @@ - - - 4.0.0 - com.microsoft.sqlserver - mssql-jdbc - 12.4.2.jre11 - jar - Microsoft JDBC Driver for SQL Server - - Microsoft JDBC Driver for SQL Server. - - https://github.com/Microsoft/mssql-jdbc - - - MIT License - http://www.opensource.org/licenses/mit-license.php - - - - Microsoft Corporation - - - - Microsoft - http://www.microsoft.com - - - - https://github.com/Microsoft/mssql-jdbc - - - - xSQLv12,xSQLv15,NTLM,MSI,reqExternalSetup,clientCertAuth,fedAuth - - - - 6.0.0 - 4.6.1 - 1.9.0 - 1.13.8 - 1.1.0 - 4.9.3 - 2.10.1 - 1.70 - 1.70 - - [1.3.2, 1.9.0] - 5.8.2 - 3.4.2 - 2.7.0 - 1.7.30 - 2.1.0.RELEASE - 2.1.214 - UTF-8 - ${project.build.sourceEncoding} - false - - - - com.azure - azure-security-keyvault-keys - ${azure-security-keyvault-keys.version} - true - - - com.azure - azure-identity - ${azure-identity.version} - true - - - stax - stax-api - - - - - com.microsoft.azure - msal4j - ${msal.version} - true - - - - org.antlr - antlr4-runtime - ${antlr-runtime.version} - true - - - - com.google.code.gson - gson - ${com.google.code.gson.version} - true - - - org.bouncycastle - bcprov-jdk15on - ${bcprov-jdk15on.version} - true - - - - org.bouncycastle - bcpkix-jdk15on - ${bcpkix-jdk15on.version} - true - - - - org.osgi - org.osgi.core - ${org.osgi.core.version} - provided - - - org.osgi - org.osgi.service.jdbc - ${osgi.jdbc.version} - provided - - - - org.junit.platform - junit-platform-console - ${junit.platform.version} - test - - - org.junit.platform - junit-platform-commons - ${junit.platform.version} - test - - - org.junit.platform - junit-platform-engine - ${junit.platform.version} - test - - - org.junit.platform - junit-platform-launcher - ${junit.platform.version} - test - - - org.junit.platform - junit-platform-runner - ${junit.platform.version} - test - - - org.junit.platform - junit-platform-surefire-provider - ${junit.platform.version} - test - - - org.junit.jupiter - junit-jupiter-api - ${junit.jupiter.version} - test - - - org.junit.jupiter - junit-jupiter-engine - ${junit.jupiter.version} - test - - - com.zaxxer - HikariCP - ${hikaricp.version} - test - - - org.apache.commons - commons-dbcp2 - ${dbcp2.version} - test - - - org.slf4j - slf4j-nop - ${slf4j.nop.version} - test - - - org.eclipse.gemini.blueprint - gemini-blueprint-mock - ${gemini.mock.version} - test - - - com.h2database - h2 - ${h2.version} - test - - - org.junit.jupiter - junit-jupiter-params - ${junit.jupiter.version} - test - - - - - jre8 - - ${project.artifactId}-${project.version}.jre8${releaseExt} - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - - **/com/microsoft/sqlserver/jdbc/ISQLServerConnection43.java - **/com/microsoft/sqlserver/jdbc/SQLServerConnection43.java - **/com/microsoft/sqlserver/jdbc/SQLServerJdbc43.java - - - **/com/microsoft/sqlserver/jdbc/connection/ConnectionWrapper43Test.java - **/com/microsoft/sqlserver/jdbc/connection/RequestBoundaryMethodsTest.java - **/com/microsoft/sqlserver/jdbc/JDBC43Test.java - - 1.8 - 1.8 - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 8 - - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.1 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0-M1 - - - ${excludedGroups}, xJDBC42 - - - - - - - jre11 - - ${project.artifactId}-${project.version}.jre11${releaseExt} - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - - **/com/microsoft/sqlserver/jdbc/SQLServerJdbc42.java - - 11 - 11 - - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.1 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - com.microsoft.sqlserver.jdbc - - - - - - - - - jre17 - - ${project.artifactId}-${project.version}.jre17${releaseExt} - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - - **/com/microsoft/sqlserver/jdbc/SQLServerJdbc42.java - - 17 - 17 - - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.1 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - com.microsoft.sqlserver.jdbc - - - - - - - - - jre20 - - true - - - ${project.artifactId}-${project.version}.jre20${releaseExt} - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - - **/com/microsoft/sqlserver/jdbc/SQLServerJdbc42.java - - 20 - 20 - - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.1 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - com.microsoft.sqlserver.jdbc - - - - - - - - - - - - ${basedir} - - META-INF/services/java.sql.Driver - - - - - - src/test/resources - - **/*.csv - - - - AE_Certificates - - **/*.txt - **/*.jks - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M2 - - - enforce-versions - - enforce - - - - - - WARN - - org.apache.maven.plugins:maven-verifier-plugin - - Please consider using the maven-invoker-plugin - (http://maven.apache.org/plugins/maven-invoker-plugin/)! - - - 3.5.0 - - - 11 - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0-M1 - - 3 - true - ${argLine} -Xmx1024m -Djava.library.path=${dllPath} - - ${excludedGroups} - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - attach-sources - - jar - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.1 - true - - - <_exportcontents> - com.microsoft.sqlserver.jdbc, - com.microsoft.sqlserver.jdbc.osgi, - com.microsoft.sqlserver.jdbc.dataclassification, - microsoft.sql - - !microsoft.sql,jdk.net;resolution:=optional,* - com.microsoft.sqlserver.jdbc.osgi.Activator - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - true - mssql.* - - - - attach-javadocs - - jar - - - - - - org.codehaus.mojo - versions-maven-plugin - 2.5 - true - - outdated-dependencies.txt - file:///${session.executionRootDirectory}/maven-version-rules.xml - - - - org.jacoco - jacoco-maven-plugin - 0.8.9 - - - pre-test - - prepare-agent - - - - default-report - prepare-package - - report - - - - - - **/mssql/googlecode/**/* - **/mssql/security/**/* - - - - jacoco-execs/ - - **/*.exec - - - - - ${project.build.directory}/jacoco.exec - - - - org.apache.maven.plugins - maven-clean-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-resources-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-site-plugin - 3.7.1 - - - org.apache.maven - maven-archiver - 3.4.0 - - - - diff --git a/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom.sha1 b/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom.sha1 deleted file mode 100644 index b3a37519f..000000000 --- a/code/arachne/com/microsoft/sqlserver/mssql-jdbc/12.4.2.jre11/mssql-jdbc-12.4.2.jre11.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -70d487ee6dd908c60527158246d03baf18269511 \ No newline at end of file diff --git a/code/arachne/com/nimbusds/content-type/2.1/_remote.repositories b/code/arachne/com/nimbusds/content-type/2.1/_remote.repositories deleted file mode 100644 index c1ff8047d..000000000 --- a/code/arachne/com/nimbusds/content-type/2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:18 EDT 2024 -content-type-2.1.pom>central= diff --git a/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom b/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom deleted file mode 100644 index 0fb6cd7d7..000000000 --- a/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom +++ /dev/null @@ -1,226 +0,0 @@ - - - - 4.0.0 - - com.nimbusds - content-type - 2.1 - jar - - Nimbus Content Type - Java library for Content (Media) Type representation - https://bitbucket.org/connect2id/nimbus-content-type - - - Connect2id Ltd. - https://connect2id.com - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:https://bitbucket.org/connect2id/nimbus-content-type.git - scm:git:git@bitbucket.org:connect2id/nimbus-content-type.git - https://bitbucket.org/connect2id/nimbus-content-type - 2.1 - - - - - vdzhuvinov - Vladimir Dzhuvinov - vladimir@dzhuvinov.com - - - - - UTF-8 - - - - - junit - junit - 4.12 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 1.7 - 1.7 - true - -Xlint - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - - ${timestamp} - ${buildNumber} - ${project.scm.tag} - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - true - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - 1.7 - true - true - true - true - Nimbus Content Type v${project.version} - - Nimbus Content Type v${project.version} - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - false - deploy - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - - sign-artifacts - verify - - sign - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - - validate - - create - - - - - true - false - false - {0,date,yyyyMMdd.HHmmss.SSS} - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - - org.apache.felix - maven-bundle-plugin - 2.5.4 - true - - - com.nimbusds.common.contenttype.* - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - diff --git a/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom.sha1 b/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom.sha1 deleted file mode 100644 index 926f72bde..000000000 --- a/code/arachne/com/nimbusds/content-type/2.1/content-type-2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -83827d3e200372469b2c7a6375a45e6308c69921 \ No newline at end of file diff --git a/code/arachne/com/nimbusds/content-type/2.3/_remote.repositories b/code/arachne/com/nimbusds/content-type/2.3/_remote.repositories deleted file mode 100644 index 1a784f103..000000000 --- a/code/arachne/com/nimbusds/content-type/2.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:10 EDT 2024 -content-type-2.3.pom>central= diff --git a/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom b/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom deleted file mode 100644 index 20d33fd9a..000000000 --- a/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom +++ /dev/null @@ -1,223 +0,0 @@ - - - - 4.0.0 - - com.nimbusds - content-type - 2.3 - jar - - Nimbus Content Type - Java library for Content (Media) Type representation - https://bitbucket.org/connect2id/nimbus-content-type - - - Connect2id Ltd. - https://connect2id.com - - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:https://bitbucket.org/connect2id/nimbus-content-type.git - scm:git:git@bitbucket.org:connect2id/nimbus-content-type.git - https://bitbucket.org/connect2id/nimbus-content-type - 2.3 - - - - - vdzhuvinov - Vladimir Dzhuvinov - vladimir@dzhuvinov.com - - - - - UTF-8 - - - - - junit - junit - 4.13.2 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - 1.7 - 1.7 - true - -Xlint - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - ${timestamp} - ${buildNumber} - ${project.scm.tag} - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - true - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.0 - - 1.7 - true - true - true - true - Nimbus Content Type v${project.version} - - Nimbus Content Type v${project.version} - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - false - deploy - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - verify - - sign - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.2.0 - - - validate - - create - - - - - true - false - false - {0,date,yyyyMMdd.HHmmss.SSS} - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.1.2 - - - org.apache.felix - maven-bundle-plugin - 3.5.1 - true - - - com.nimbusds.common.contenttype.* - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - diff --git a/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom.sha1 b/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom.sha1 deleted file mode 100644 index f46bedc6d..000000000 --- a/code/arachne/com/nimbusds/content-type/2.3/content-type-2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2d2bb41036b46dd3f40aebf9dfb989271f672f1e \ No newline at end of file diff --git a/code/arachne/com/nimbusds/lang-tag/1.4.4/_remote.repositories b/code/arachne/com/nimbusds/lang-tag/1.4.4/_remote.repositories deleted file mode 100644 index 973ec0234..000000000 --- a/code/arachne/com/nimbusds/lang-tag/1.4.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:18 EDT 2024 -lang-tag-1.4.4.pom>central= diff --git a/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom b/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom deleted file mode 100644 index 6f03e06df..000000000 --- a/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom +++ /dev/null @@ -1,251 +0,0 @@ - - - - 4.0.0 - - com.nimbusds - lang-tag - 1.4.4 - jar - - Nimbus LangTag - Java implementation of "Tags for Identifying Languages" - (RFC 5646). - - - https://bitbucket.org/connect2id/nimbus-language-tags - - - Connect2id Ltd. - http://connect2id.com/ - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - scm:git:https://bitbucket.org/connect2id/nimbus-language-tags.git - - - scm:git:git@bitbucket.org:connect2id/nimbus-language-tags.git - - https://bitbucket.org/connect2id/nimbus-language-tags.git - 1.4.4 - - - - - vdzhuvinov - Vladimir Dzhuvinov - vladimir@dzhuvinov.com - - - - - UTF-8 - - - - - net.minidev - json-smart - 2.3 - test - - - junit - junit - 4.12 - test - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.5.1 - - 1.6 - 1.6 - -Xlint - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.3 - - - validate - - create - - - - - true - false - false - {0,date,yyyyMMdd.HHmmss.SSS} - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.0 - - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - ${timestamp} - ${buildNumber} - ${project.scm.tag} - - - true - - true - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - true - true - true - true - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.felix - maven-bundle-plugin - - - lang-tag - - com.nimbusds.langtag.*;version=${project.version} - - * - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - false - deploy - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - - org.apache.felix - maven-bundle-plugin - 2.5.0 - true - - - bundle-manifest - process-classes - - manifest - - - - - - - jar - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.7 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - diff --git a/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom.sha1 b/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom.sha1 deleted file mode 100644 index fe7b5fe27..000000000 --- a/code/arachne/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b7c28bf974eff8da6a73f3d3d30677c8026d32cb \ No newline at end of file diff --git a/code/arachne/com/nimbusds/lang-tag/1.7/_remote.repositories b/code/arachne/com/nimbusds/lang-tag/1.7/_remote.repositories deleted file mode 100644 index 6979a0ca2..000000000 --- a/code/arachne/com/nimbusds/lang-tag/1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:10 EDT 2024 -lang-tag-1.7.pom>central= diff --git a/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom b/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom deleted file mode 100644 index 6de6cc5dd..000000000 --- a/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom +++ /dev/null @@ -1,236 +0,0 @@ - - - - 4.0.0 - - com.nimbusds - lang-tag - 1.7 - jar - - Nimbus LangTag - Java implementation of "Tags for Identifying Languages" (RFC 5646) - - https://bitbucket.org/connect2id/nimbus-language-tags - - - Connect2id Ltd. - https://connect2id.com/ - - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:https://bitbucket.org/connect2id/nimbus-language-tags.git - scm:git:git@bitbucket.org:connect2id/nimbus-language-tags.git - https://bitbucket.org/connect2id/nimbus-language-tags.git - 1.7 - - - - - vdzhuvinov - Vladimir Dzhuvinov - vladimir@dzhuvinov.com - - - - - UTF-8 - - - - - net.minidev - json-smart - 2.4.8 - test - - - junit - junit - 4.13.2 - test - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 1.6 - 1.6 - -Xlint - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - - validate - - create - - - - - true - false - false - {0,date,yyyyMMdd.HHmmss.SSS} - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - ${timestamp} - ${buildNumber} - ${project.scm.tag} - - - true - - true - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.1.1 - - true - true - true - true - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - false - deploy - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - - org.apache.felix - maven-bundle-plugin - 2.5.4 - true - - - bundle-manifest - process-classes - - manifest - - - - - - lang-tag - com.nimbusds.langtag.*;version=${project.version} - * - - - - jar - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - diff --git a/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom.sha1 b/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom.sha1 deleted file mode 100644 index 3c4b238fc..000000000 --- a/code/arachne/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2de15dcb52c78653ca3eb3c9855513b9948e7efc \ No newline at end of file diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/_remote.repositories b/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/_remote.repositories deleted file mode 100644 index df5bcdbc0..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:18 EDT 2024 -nimbus-jose-jwt-8.18.pom>central= diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom b/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom deleted file mode 100644 index 381ce3f57..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom +++ /dev/null @@ -1,318 +0,0 @@ - - - - 4.0.0 - - com.nimbusds - nimbus-jose-jwt - 8.18 - jar - - Nimbus JOSE+JWT - - Java library for Javascript Object Signing and Encryption (JOSE) and - JSON Web Tokens (JWT) - - https://bitbucket.org/connect2id/nimbus-jose-jwt - - - Connect2id Ltd. - http://connect2id.com - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:https://bitbucket.org/connect2id/nimbus-jose-jwt.git - scm:git:git@bitbucket.org:connect2id/nimbus-jose-jwt.git - https://bitbucket.org/connect2id/nimbus-jose-jwt - 8.18 - - - - - vdzhuvinov - Vladimir Dzhuvinov - vladimir@dzhuvinov.com - - - - - UTF-8 - - - - - com.github.stephenc.jcip - jcip-annotations - 1.0-1 - - - net.minidev - json-smart - [1.3.1,2.3] - - - org.bouncycastle - bcprov-jdk15on - [1.52,) - true - - - org.bouncycastle - bcpkix-jdk15on - [1.52,) - true - - - org.bitbucket.b_c - jose4j - 0.4.1 - test - - - net.jadler - jadler-all - 1.1.1 - test - - - junit - junit - 4.12 - test - - - com.google.crypto.tink - tink - 1.2.2 - true - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.5.1 - - 1.7 - 1.7 - true - -Xlint - - - - - org.codehaus.plexus - plexus-compiler-eclipse - 2.5 - - - - - default-compile - - - jdk6-compile - compile - - compile - - - 1.7 - 1.6 - eclipse - ${project.build.outputDirectory}_jdk6 - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.0 - - - - ${timestamp} - ${buildNumber} - ${project.scm.tag} - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - true - - - - - - default-jar - - - jdk6-jar - - jar - - - ${project.build.outputDirectory}_jdk6 - jdk6 - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.0 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.3 - - true - true - true - true - Nimbus JOSE + JWT v${project.version} - - Nimbus JOSE + JWT v${project.version} - ${basedir}/src/main/javadoc/overview.html - - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - false - deploy - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - - sign-artifacts - verify - - sign - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.3 - - - validate - - create - - - - - true - false - false - {0,date,yyyyMMdd.HHmmss.SSS} - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - - false - - - - org.apache.felix - maven-bundle-plugin - 2.5.0 - true - - - com.nimbusds.jose.*,com.nimbusds.jwt.* - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.7 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom.sha1 b/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom.sha1 deleted file mode 100644 index c65157b76..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/8.18/nimbus-jose-jwt-8.18.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5f3ceada1d3d8f2c9fadd048fced4251b07b950f \ No newline at end of file diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/_remote.repositories b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/_remote.repositories deleted file mode 100644 index 4e3e89460..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:10 EDT 2024 -nimbus-jose-jwt-9.37.3.pom>central= diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom deleted file mode 100644 index 599c8b842..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom +++ /dev/null @@ -1,381 +0,0 @@ - - - 4.0.0 - com.nimbusds - nimbus-jose-jwt - Nimbus JOSE+JWT - 9.37.3 - Java library for Javascript Object Signing and Encryption (JOSE) and - JSON Web Tokens (JWT) - https://bitbucket.org/connect2id/nimbus-jose-jwt - - - vdzhuvinov - Vladimir Dzhuvinov - vladimir@dzhuvinov.com - - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:https://bitbucket.org/connect2id/nimbus-jose-jwt.git - scm:git:git@bitbucket.org:connect2id/nimbus-jose-jwt.git - 9.37.3 - https://bitbucket.org/connect2id/nimbus-jose-jwt - - - Connect2id Ltd. - https://connect2id.com - - - - - maven-compiler-plugin - 3.5.1 - - - default-compile - - - - - org.codehaus.plexus - plexus-compiler-eclipse - 2.5 - - - - 1.7 - 1.7 - true - -Xlint - - - - maven-shade-plugin - 3.4.1 - - - package - - shade - - - - - - - com.google.gson - com.nimbusds.jose.shaded.gson - - - - - com.google.code.gson:gson - - - - - com.google.code.gson:gson - - **/module-info.class - - - - - - - maven-jar-plugin - 3.1.0 - - - default-jar - - - - - - ${timestamp} - ${buildNumber} - ${project.scm.tag} - com.nimbusds.jose.jwt - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - true - - - - - - maven-source-plugin - 3.0.0 - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - 2.10.3 - - - attach-javadocs - - jar - - - - - true - true - true - true - Nimbus JOSE + JWT v${project.version} - Nimbus JOSE + JWT v${project.version} - ${basedir}/src/main/javadoc/overview.html - - - - maven-deploy-plugin - 2.8.2 - - - maven-release-plugin - 2.5.3 - - false - deploy - - - - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.3 - - - validate - - create - - - - - true - false - false - {0,date,yyyyMMdd.HHmmss.SSS} - - - - maven-surefire-plugin - 2.22.2 - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - jacoco-init - - prepare-agent - - - - jacoco-report - test - - report - - - - - - org.apache.felix - maven-bundle-plugin - 2.5.0 - true - - - bundle-manifest - process-classes - - manifest - - - - - - com.nimbusds.jose.*,com.nimbusds.jwt.* - !net.minidev.json*,* - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.7 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - com.github.stephenc.jcip - jcip-annotations - 1.0-1 - compile - - - org.bouncycastle - bcprov-jdk18on - 1.77 - compile - true - - - org.bouncycastle - bcutil-jdk18on - 1.77 - compile - true - - - org.bouncycastle - bc-fips - [1.0.2,2.0.0) - compile - true - - - org.bouncycastle - bcpkix-jdk18on - 1.77 - compile - true - - - com.google.crypto.tink - tink - 1.12.0 - compile - - - protobuf-java - com.google.protobuf - - - gson - com.google.code.gson - - - true - - - org.bitbucket.b_c - jose4j - 0.9.2 - test - - - slf4j-api - org.slf4j - - - - - net.jadler - jadler-all - 1.3.1 - test - - - jadler-core - net.jadler - - - jadler-jetty - net.jadler - - - jadler-junit - net.jadler - - - - - junit - junit - 4.13.2 - test - - - hamcrest-core - org.hamcrest - - - - - org.mockito - mockito-core - 2.25.0 - test - - - byte-buddy - net.bytebuddy - - - byte-buddy-agent - net.bytebuddy - - - objenesis - org.objenesis - - - - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - UTF-8 - - diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom.sha1 b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom.sha1 deleted file mode 100644 index a99ddd9d7..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bf365bde37338a7aef7928b3a8fbaef259458213 \ No newline at end of file diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/_remote.repositories b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/_remote.repositories deleted file mode 100644 index 427545052..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:10 EDT 2024 -nimbus-jose-jwt-9.39.1.pom>central= diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom deleted file mode 100644 index d4cbf2287..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom +++ /dev/null @@ -1,478 +0,0 @@ - - - 4.0.0 - com.nimbusds - nimbus-jose-jwt - Nimbus JOSE+JWT - 9.39.1 - Java library for Javascript Object Signing and Encryption (JOSE) and - JSON Web Tokens (JWT) - https://bitbucket.org/connect2id/nimbus-jose-jwt - - - vdzhuvinov - Vladimir Dzhuvinov - vladimir@dzhuvinov.com - - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:https://bitbucket.org/connect2id/nimbus-jose-jwt.git - scm:git:git@bitbucket.org:connect2id/nimbus-jose-jwt.git - 9.39.1 - https://bitbucket.org/connect2id/nimbus-jose-jwt - - - Connect2id Ltd. - https://connect2id.com - - - - - maven-compiler-plugin - 3.13.0 - - - default-compile - - - ${project.build.sourceDirectory} - ${java7path} - - - - - java9 - compile - - compile - - - 9 - - ${java9path} - - true - - - - - - org.codehaus.plexus - plexus-compiler-eclipse - 2.15.0 - - - - 1.7 - 1.7 - true - -Xlint - - - - maven-shade-plugin - 3.5.3 - - - package - - shade - - - - - ${jar.attachClassifier} - ${jar.classifier} - - - com.google.gson - com.nimbusds.jose.shaded.gson - - - net.jcip.annotations - com.nimbusds.jose.shaded.jcip - - - - - com.google.code.gson:gson - com.github.stephenc.jcip:jcip-annotations - - - - - com.google.code.gson:gson - - **/module-info.class - - - - - - - maven-jar-plugin - 3.3.0 - - - default-jar - - - - - - true - ${timestamp} - ${buildNumber} - ${project.scm.tag} - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - true - - - - - - maven-source-plugin - 3.3.1 - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - 3.6.3 - - - attach-javadocs - - jar - - - - - 7 - true - true - true - true - Nimbus JOSE + JWT v${project.version} - Nimbus JOSE + JWT v${project.version} - ${basedir}/src/main/javadoc/overview.html - - - - maven-deploy-plugin - 3.1.2 - - - maven-release-plugin - 3.0.1 - - false - deploy - - - - maven-gpg-plugin - 3.2.4 - - - sign-artifacts - verify - - sign - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.2.0 - - - validate - - create - - - - - true - false - false - {0,date,yyyyMMdd.HHmmss.SSS} - - - - maven-surefire-plugin - 3.2.5 - - - ${test.profile} - - - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - jacoco-init - - prepare-agent - - - - jacoco-report - test - - report - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - true - - - bundle-manifest - process-classes - - manifest - - - - - - com.nimbusds.jose.*,com.nimbusds.jwt.* - !net.minidev.json*,* - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - - - org.bouncycastle - bcprov-jdk18on - 1.78 - compile - true - - - org.bouncycastle - bcutil-jdk18on - 1.78 - compile - true - - - org.bouncycastle - bcpkix-jdk18on - 1.78 - compile - true - - - - ${project.basedir}/src/main/java7 - false - ${project.basedir}/src/main/java9 - - - - fips - - - - maven-surefire-plugin - - - org.bouncycastle:bcprov-jdk18on - - - **/ECParameterTableTest.java - - - - - - - - org.bouncycastle - bc-fips - 1.0.2.5 - true - - - org.bouncycastle - bcpkix-fips - 1.0.7 - true - - - - ${project.basedir}/src/main/java7-fips - true - fips - fips - ${project.basedir}/src/main/java9-fips - - - - - - com.google.crypto.tink - tink - 1.13.0 - compile - - - protobuf-java - com.google.protobuf - - - gson - com.google.code.gson - - - true - - - org.bouncycastle - bcprov-jdk18on - 1.78 - compile - true - - - org.bitbucket.b_c - jose4j - 0.9.6 - test - - - slf4j-api - org.slf4j - - - - - net.jadler - jadler-all - 1.3.1 - test - - - jadler-core - net.jadler - - - jadler-jetty - net.jadler - - - jadler-junit - net.jadler - - - - - org.hamcrest - hamcrest-core - 2.2 - test - - - hamcrest - org.hamcrest - - - - - junit - junit - 4.13.2 - test - - - org.mockito - mockito-core - 2.25.0 - test - - - byte-buddy - net.bytebuddy - - - byte-buddy-agent - net.bytebuddy - - - objenesis - org.objenesis - - - - - org.bouncycastle - bcutil-jdk18on - 1.78 - compile - true - - - org.bouncycastle - bcpkix-jdk18on - 1.78 - compile - true - - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - UTF-8 - - diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom.sha1 b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom.sha1 deleted file mode 100644 index f0a2aedfa..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.39.1/nimbus-jose-jwt-9.39.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7b7871bdaf071229785e8843800bc588b682c878 \ No newline at end of file diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/_remote.repositories b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/_remote.repositories deleted file mode 100644 index 2c3b101fb..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:10 EDT 2024 -nimbus-jose-jwt-9.40.pom>central= diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom deleted file mode 100644 index a0f661337..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom +++ /dev/null @@ -1,478 +0,0 @@ - - - 4.0.0 - com.nimbusds - nimbus-jose-jwt - Nimbus JOSE+JWT - 9.40 - Java library for Javascript Object Signing and Encryption (JOSE) and - JSON Web Tokens (JWT) - https://bitbucket.org/connect2id/nimbus-jose-jwt - - - vdzhuvinov - Vladimir Dzhuvinov - vladimir@dzhuvinov.com - - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:https://bitbucket.org/connect2id/nimbus-jose-jwt.git - scm:git:git@bitbucket.org:connect2id/nimbus-jose-jwt.git - 9.40 - https://bitbucket.org/connect2id/nimbus-jose-jwt - - - Connect2id Ltd. - https://connect2id.com - - - - - maven-compiler-plugin - 3.13.0 - - - default-compile - - - ${project.build.sourceDirectory} - ${java7path} - - - - - java9 - compile - - compile - - - 9 - - ${java9path} - - true - - - - - - org.codehaus.plexus - plexus-compiler-eclipse - 2.15.0 - - - - 1.7 - 1.7 - true - -Xlint - - - - maven-shade-plugin - 3.5.3 - - - package - - shade - - - - - ${jar.attachClassifier} - ${jar.classifier} - - - com.google.gson - com.nimbusds.jose.shaded.gson - - - net.jcip.annotations - com.nimbusds.jose.shaded.jcip - - - - - com.google.code.gson:gson - com.github.stephenc.jcip:jcip-annotations - - - - - com.google.code.gson:gson - - **/module-info.class - - - - - - - maven-jar-plugin - 3.3.0 - - - default-jar - - - - - - true - ${timestamp} - ${buildNumber} - ${project.scm.tag} - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - true - - - - - - maven-source-plugin - 3.3.1 - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - 3.6.3 - - - attach-javadocs - - jar - - - - - 7 - true - true - true - true - Nimbus JOSE + JWT v${project.version} - Nimbus JOSE + JWT v${project.version} - ${basedir}/src/main/javadoc/overview.html - - - - maven-deploy-plugin - 3.1.2 - - - maven-release-plugin - 3.0.1 - - false - deploy - - - - maven-gpg-plugin - 3.2.4 - - - sign-artifacts - verify - - sign - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.2.0 - - - validate - - create - - - - - true - false - false - {0,date,yyyyMMdd.HHmmss.SSS} - - - - maven-surefire-plugin - 3.2.5 - - - ${test.profile} - - - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - jacoco-init - - prepare-agent - - - - jacoco-report - test - - report - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - true - - - bundle-manifest - process-classes - - manifest - - - - - - com.nimbusds.jose.*,com.nimbusds.jwt.* - !net.minidev.json*,* - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - - - org.bouncycastle - bcprov-jdk18on - 1.78 - compile - true - - - org.bouncycastle - bcutil-jdk18on - 1.78 - compile - true - - - org.bouncycastle - bcpkix-jdk18on - 1.78 - compile - true - - - - ${project.basedir}/src/main/java7 - false - ${project.basedir}/src/main/java9 - - - - fips - - - - maven-surefire-plugin - - - org.bouncycastle:bcprov-jdk18on - - - **/ECParameterTableTest.java - - - - - - - - org.bouncycastle - bc-fips - 1.0.2.5 - true - - - org.bouncycastle - bcpkix-fips - 1.0.7 - true - - - - ${project.basedir}/src/main/java7-fips - true - fips - fips - ${project.basedir}/src/main/java9-fips - - - - - - com.google.crypto.tink - tink - 1.13.0 - compile - - - protobuf-java - com.google.protobuf - - - gson - com.google.code.gson - - - true - - - org.bouncycastle - bcprov-jdk18on - 1.78 - compile - true - - - org.bitbucket.b_c - jose4j - 0.9.6 - test - - - slf4j-api - org.slf4j - - - - - net.jadler - jadler-all - 1.3.1 - test - - - jadler-core - net.jadler - - - jadler-jetty - net.jadler - - - jadler-junit - net.jadler - - - - - org.hamcrest - hamcrest-core - 2.2 - test - - - hamcrest - org.hamcrest - - - - - junit - junit - 4.13.2 - test - - - org.mockito - mockito-core - 2.25.0 - test - - - byte-buddy - net.bytebuddy - - - byte-buddy-agent - net.bytebuddy - - - objenesis - org.objenesis - - - - - org.bouncycastle - bcutil-jdk18on - 1.78 - compile - true - - - org.bouncycastle - bcpkix-jdk18on - 1.78 - compile - true - - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - UTF-8 - - diff --git a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom.sha1 b/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom.sha1 deleted file mode 100644 index 3c350ac43..000000000 --- a/code/arachne/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dce91186ec8fa908460eedc2207a9ff4a94911ec \ No newline at end of file diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/_remote.repositories b/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/_remote.repositories deleted file mode 100644 index de6623222..000000000 --- a/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:10 EDT 2024 -oauth2-oidc-sdk-11.12.pom>central= diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom b/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom deleted file mode 100644 index ee2991b13..000000000 --- a/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom +++ /dev/null @@ -1,522 +0,0 @@ - - - - 4.0.0 - - com.nimbusds - oauth2-oidc-sdk - 11.12 - jar - - OAuth 2.0 SDK with OpenID Connect extensions - - OAuth 2.0 SDK with OpenID Connection extensions for developing client - and server applications. - - https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions - - - Connect2id Ltd. - https://connect2id.com - - - - - Apache License, version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.html - repo - - - - - scm:git:https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions.git - scm:git:git@bitbucket.org:connect2id/oauth-2.0-sdk-with-openid-connect-extensions.git - https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions - 11.12 - - - - - vdzhuvinov - Vladimir Dzhuvinov - vd@connect2id.com - - - - - UTF-8 - - - - - shibboleth-repo - Shibboleth repo for OpenSAML dependencies - https://build.shibboleth.net/nexus/content/repositories/releases/ - - - - - - com.github.stephenc.jcip - jcip-annotations - 1.0-1 - - - com.nimbusds - content-type - 2.3 - - - net.minidev - json-smart - 2.5.1 - - - com.nimbusds - lang-tag - 1.7 - - - com.nimbusds - nimbus-jose-jwt - 9.39.1 - - - com.google.crypto.tink - tink - 1.13.0 - true - - - org.bouncycastle - bcprov-jdk18on - 1.78 - true - - - org.bouncycastle - bcpkix-jdk18on - 1.78 - true - - - org.cryptomator - siv-mode - 1.4.4 - true - - - org.opensaml - opensaml-core - 3.4.6 - true - - - org.bouncycastle - bcprov-jdk15on - - - - - org.opensaml - opensaml-saml-api - 3.4.6 - true - - - - org.bouncycastle - bcprov-jdk15on - - - - - org.opensaml - opensaml-saml-impl - 3.4.6 - true - - - - org.bouncycastle - bcprov-jdk15on - - - - org.apache.velocity - velocity - - - - org.apache.httpcomponents - httpclient - - - - - - org.apache.santuario - xmlsec - 2.3.4 - true - - - - com.fasterxml.woodstox - woodstox-core - 6.4.0 - true - - - - com.google.guava - guava - 32.0.1-jre - true - - - - commons-codec - commons-codec - 1.15 - true - - - jakarta.servlet - jakarta.servlet-api - 5.0.0 - provided - true - - - javax.servlet - javax.servlet-api - 3.0.1 - provided - true - - - junit - junit - 4.13.2 - test - - - net.jadler - jadler-all - 1.3.1 - test - - - org.apache.commons - commons-math3 - 3.6.1 - test - - - org.mockito - mockito-core - 2.25.0 - test - - - com.thetransactioncompany - pretty-json - 1.5 - test - - - org.apache.httpcomponents - httpclient - 4.5.14 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - 1.7 - 1.7 - true - -Xlint - - - - - org.codehaus.plexus - plexus-compiler-eclipse - 2.14.2 - - - - - default-compile - - - jdk8-compile - compile - - compile - - - 1.7 - 1.8 - ${project.build.outputDirectory}_jdk8 - - - - jdk11-compile - compile - - compile - - - 1.7 - 11 - ${project.build.outputDirectory}_jdk11 - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - ${timestamp} - ${buildNumber} - ${project.scm.tag} - connect2id - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - true - - - - - - default-jar - - - jdk8-jar - - jar - - - ${project.build.outputDirectory}_jdk8 - jdk8 - - - - jdk11-jar - - jar - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - com.nimbusds.oauth2.sdk - - - ${project.build.outputDirectory}_jdk11 - jdk11 - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - 8 - true - true - true - true - Nimbus OAuth 2.0 SDK with OpenID Connect 1.0 extensions v${project.version} - - Nimbus OAuth 2.0 SDK with OpenID Connect 1.0 extensions v${project.version} - ${basedir}/src/main/javadoc/overview.html - - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - false - deploy - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - verify - - sign - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.1.0 - - - validate - - create - - - - - true - false - false - {0,date,yyyyMMdd.HHmmss.SSS} - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.3 - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - jacoco-init - - prepare-agent - - - - jacoco-report - test - - report - - - - - - biz.aQute.bnd - bnd-maven-plugin - 6.3.1 - true - - - bnd-process - - bnd-process - - - - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - org.owasp - dependency-check-maven - 9.0.7 - - - - check - - - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom.sha1 b/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom.sha1 deleted file mode 100644 index 3249db7c7..000000000 --- a/code/arachne/com/nimbusds/oauth2-oidc-sdk/11.12/oauth2-oidc-sdk-11.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -55e227da0da2d9ba5cb54cd4085205274874e76f \ No newline at end of file diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/_remote.repositories b/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/_remote.repositories deleted file mode 100644 index 6be0f28aa..000000000 --- a/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:18 EDT 2024 -oauth2-oidc-sdk-8.23.1.pom>central= diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom b/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom deleted file mode 100644 index c4348dd02..000000000 --- a/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom +++ /dev/null @@ -1,390 +0,0 @@ - - - - 4.0.0 - - com.nimbusds - oauth2-oidc-sdk - 8.23.1 - jar - - OAuth 2.0 SDK with OpenID Connect extensions - - OAuth 2.0 SDK with OpenID Connection extensions for developing - client and server applications. - - - https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions - - - Connect2id Ltd. - https://connect2id.com - - - - - Apache License, version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html‎ - repo - - - - - scm:git:https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions.git - scm:git:git@bitbucket.org:connect2id/oauth-2.0-sdk-with-openid-connect-extensions.git - https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions - 8.23.1 - - - - - vdzhuvinov - Vladimir Dzhuvinov - vd@connect2id.com - - - - - UTF-8 - - - - - com.github.stephenc.jcip - jcip-annotations - 1.0-1 - - - com.nimbusds - content-type - 2.1 - - - net.minidev - json-smart - [1.3.1,2.3] - - - com.nimbusds - lang-tag - 1.4.4 - - - com.nimbusds - nimbus-jose-jwt - 8.18 - - - org.bouncycastle - bcprov-jdk15on - 1.65 - true - - - org.bouncycastle - bcpkix-jdk15on - 1.65 - true - - - org.cryptomator - siv-mode - 1.3.2 - true - - - org.opensaml - opensaml-core - 3.4.5 - true - - - org.opensaml - opensaml-saml-api - 3.4.5 - true - - - org.opensaml - opensaml-saml-impl - 3.4.5 - true - - - javax.servlet - javax.servlet-api - 3.0.1 - provided - true - - - junit - junit - 4.12 - test - - - net.jadler - jadler-all - 1.3.0 - test - - - org.apache.commons - commons-math3 - 3.6.1 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.5.1 - - 1.7 - 1.7 - true - -Xlint - - - - - org.codehaus.plexus - plexus-compiler-eclipse - 2.5 - - - - - default-compile - - - jdk8-compile - compile - - compile - - - 1.7 - 1.8 - ${project.build.outputDirectory}_jdk8 - - - - jdk10-compile - compile - - compile - - - 1.7 - 10 - ${project.build.outputDirectory}_jdk10 - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.0 - - - - ${timestamp} - ${buildNumber} - ${project.scm.tag} - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - true - - - - - - default-jar - - - jdk8-jar - - jar - - - ${project.build.outputDirectory}_jdk8 - jdk8 - - - - jdk10-jar - - jar - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - com.nimbusds.oauth2.sdk - - - ${project.build.outputDirectory}_jdk10 - jdk10 - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.0.1 - - 8 - true - true - true - true - Nimbus OAuth 2.0 SDK with OpenID Connect 1.0 extensions v${project.version} - - Nimbus OAuth 2.0 SDK with OpenID Connect 1.0 extensions v${project.version} - ${basedir}/src/main/javadoc/overview.html - - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - false - deploy - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - - sign-artifacts - verify - - sign - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.3 - - - validate - - create - - - - - true - false - false - {0,date,yyyyMMdd.HHmmss.SSS} - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.0 - - - false - - - - org.apache.felix - maven-bundle-plugin - 3.5.1 - true - - - ${project.artifactId} - ${project.version} - com.nimbusds.oauth2.*;version=${project.version},com.nimbusds.openid.*;version=${project.version} - * - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.7 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - diff --git a/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom.sha1 b/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom.sha1 deleted file mode 100644 index e7f8f2089..000000000 --- a/code/arachne/com/nimbusds/oauth2-oidc-sdk/8.23.1/oauth2-oidc-sdk-8.23.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a736be50f6bb265d234c2ca02be8c760243a86ce \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/_remote.repositories b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/_remote.repositories deleted file mode 100644 index cc28ea949..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:09 EDT 2024 -arachne-common-utils-1.16.2-20200914.105631-15.pom>ohdsi.snapshots= diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom deleted file mode 100644 index a2fbd3a10..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - - arachne-commons-bundle - com.odysseusinc.arachne - 1.16.2-SNAPSHOT - ../pom.xml - - 4.0.0 - - arachne-common-utils - - - 1.8 - 5.1.7.RELEASE - 4.0.6 - 2.5 - - - - - com.github.jknack - handlebars - ${handlebars.version} - - - commons-io - commons-io - ${commons.io.version} - - - junit - junit - 4.12 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.7.0 - - ${java.version} - ${java.version} - - - - - - - - artifactory - Odysseus community snapshots - http://repo.odysseusinc.com/artifactory/community-libs-snapshot-local - - - artifactory - Odysseus community releases - http://repo.odysseusinc.com/artifactory/community-libs-release-local - - - - \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.lastUpdated b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.lastUpdated deleted file mode 100644 index e829607c8..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:09 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -https\://repo.ohdsi.org/nexus/content/repositories/snapshots/.lastUpdated=1721139909117 -http\://0.0.0.0/.error=Could not transfer artifact com.odysseusinc.arachne\:arachne-common-utils\:pom\:1.16.2-20200914.105631-15 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139909039 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139909046 -https\://repo1.maven.org/maven2/.lastUpdated=1721139908938 diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.sha1 deleted file mode 100644 index c4db1a0d0..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-20200914.105631-15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ef66778a9f78e7c0a00e9cd08225c696abe6e98b \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-SNAPSHOT.pom b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-SNAPSHOT.pom deleted file mode 100644 index a2fbd3a10..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/arachne-common-utils-1.16.2-SNAPSHOT.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - - arachne-commons-bundle - com.odysseusinc.arachne - 1.16.2-SNAPSHOT - ../pom.xml - - 4.0.0 - - arachne-common-utils - - - 1.8 - 5.1.7.RELEASE - 4.0.6 - 2.5 - - - - - com.github.jknack - handlebars - ${handlebars.version} - - - commons-io - commons-io - ${commons.io.version} - - - junit - junit - 4.12 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.7.0 - - ${java.version} - ${java.version} - - - - - - - - artifactory - Odysseus community snapshots - http://repo.odysseusinc.com/artifactory/community-libs-snapshot-local - - - artifactory - Odysseus community releases - http://repo.odysseusinc.com/artifactory/community-libs-release-local - - - - \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml deleted file mode 100644 index 6410e76ab..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - com.odysseusinc.arachne - arachne-common-utils - 1.16.2-SNAPSHOT - - - 20200914.105631 - 15 - - 20200914105631 - - - jar - 1.16.2-20200914.105631-15 - 20200914105631 - - - pom - 1.16.2-20200914.105631-15 - 20200914105631 - - - - diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 deleted file mode 100644 index 5578e2f4e..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -ae2ed7ad75810a1ec448dfc404e6c3e5a266e4ad \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml deleted file mode 100644 index 6410e76ab..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - com.odysseusinc.arachne - arachne-common-utils - 1.16.2-SNAPSHOT - - - 20200914.105631 - 15 - - 20200914105631 - - - jar - 1.16.2-20200914.105631-15 - 20200914105631 - - - pom - 1.16.2-20200914.105631-15 - 20200914105631 - - - - diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 deleted file mode 100644 index 5578e2f4e..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -ae2ed7ad75810a1ec448dfc404e6c3e5a266e4ad \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/resolver-status.properties b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/resolver-status.properties deleted file mode 100644 index 5d28366fd..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/1.16.2-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,14 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 12:51:19 EDT 2024 -maven-metadata-ohdsi.snapshots.xml.lastUpdated=1721139908805 -maven-metadata-maven-default-http-blocker.xml.error=Could not transfer metadata com.odysseusinc.arachne\:arachne-common-utils\:1.16.2-SNAPSHOT/maven-metadata.xml from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots)] -maven-metadata-jboss-public-repository-group.xml.error= -maven-metadata-jboss-public-repository-group.xml.lastUpdated=1721139908792 -maven-metadata-central.xml.error= -maven-metadata-maven-default-http-blocker.xml/@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148679237 -maven-metadata-jitpack.io.xml.lastUpdated=1721139908812 -maven-metadata-local-repo.xml.error= -maven-metadata-local-repo.xml.lastUpdated=1721139908814 -maven-metadata-central.xml.lastUpdated=1721139908788 -maven-metadata-ohdsi.xml.lastUpdated=1721139908809 -maven-metadata-jitpack.io.xml.error= diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.jar b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.jar deleted file mode 100644 index 2cdef56d5b54ebffdab64d63572f10afd2215103..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11623 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 diff --git a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.pom.lastUpdated b/code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.pom.lastUpdated deleted file mode 100644 index f2a05b78a..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-common-utils/3.x-MDACA/arachne-common-utils-3.x-MDACA.pom.lastUpdated +++ /dev/null @@ -1,16 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 12:51:17 EDT 2024 -file\:///code/arachne/.lastUpdated=1721139899991 -http\://0.0.0.0/.error=Could not transfer artifact com.odysseusinc.arachne\:arachne-common-utils\:pom\:3.x-MDACA from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148677714 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139899905 -https\://jitpack.io/.error= -https\://repo1.maven.org/maven2/.lastUpdated=1721139899624 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -https\://repo.ohdsi.org/nexus/content/groups/public/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139899742 -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139899854 -file\:///code/arachne/.error= -https\://jitpack.io/.lastUpdated=1721139899980 diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/_remote.repositories b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/_remote.repositories deleted file mode 100644 index a6ca4032d..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:09 EDT 2024 -arachne-commons-bundle-1.16.2-20200914.105632-15.pom>ohdsi.snapshots= diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom deleted file mode 100644 index e4e80b52f..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - 4.0.0 - - arachne-commons-bundle - com.odysseusinc.arachne - 1.16.2-SNAPSHOT - pom - - - arachne-commons - arachne-sys-settings - execution-engine-commons - arachne-storage - arachne-no-handler-found-exception-util - logging - data-source-manager - arachne-scheduler - arachne-common-types - arachne-common-utils - - - - 5.1.17.RELEASE - 1.2.0.RELEASE - 1.5.22.RELEASE - 8.5.55 - 1.8 - 1.8 - 1.8 - - - - - artifactory - Odysseus community snapshots - http://repo.odysseusinc.com/artifactory/community-libs-snapshot-local - - - artifactory - Odysseus community releases - http://repo.odysseusinc.com/artifactory/community-libs-release-local - - - - - - - org.springframework - spring-webmvc - ${spring.version} - - - org.apache.tomcat.embed - tomcat-embed-core - ${tomcat.version} - - - - - \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom.sha1 deleted file mode 100644 index 90427653f..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-20200914.105632-15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4aed478a4fb8152dee53f83847a4fa60e3a22028 \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-SNAPSHOT.pom b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-SNAPSHOT.pom deleted file mode 100644 index e4e80b52f..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/arachne-commons-bundle-1.16.2-SNAPSHOT.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - 4.0.0 - - arachne-commons-bundle - com.odysseusinc.arachne - 1.16.2-SNAPSHOT - pom - - - arachne-commons - arachne-sys-settings - execution-engine-commons - arachne-storage - arachne-no-handler-found-exception-util - logging - data-source-manager - arachne-scheduler - arachne-common-types - arachne-common-utils - - - - 5.1.17.RELEASE - 1.2.0.RELEASE - 1.5.22.RELEASE - 8.5.55 - 1.8 - 1.8 - 1.8 - - - - - artifactory - Odysseus community snapshots - http://repo.odysseusinc.com/artifactory/community-libs-snapshot-local - - - artifactory - Odysseus community releases - http://repo.odysseusinc.com/artifactory/community-libs-release-local - - - - - - - org.springframework - spring-webmvc - ${spring.version} - - - org.apache.tomcat.embed - tomcat-embed-core - ${tomcat.version} - - - - - \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml deleted file mode 100644 index 6cd55f549..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - com.odysseusinc.arachne - arachne-commons-bundle - 1.16.2-SNAPSHOT - - - 20200914.105632 - 15 - - 20200914105632 - - - pom - 1.16.2-20200914.105632-15 - 20200914105632 - - - - diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 deleted file mode 100644 index 588a9b5ad..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -137f00295f30676450383aefcdb8627ca466c912 \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml deleted file mode 100644 index 6cd55f549..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - com.odysseusinc.arachne - arachne-commons-bundle - 1.16.2-SNAPSHOT - - - 20200914.105632 - 15 - - 20200914105632 - - - pom - 1.16.2-20200914.105632-15 - 20200914105632 - - - - diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 deleted file mode 100644 index 588a9b5ad..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -137f00295f30676450383aefcdb8627ca466c912 \ No newline at end of file diff --git a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/resolver-status.properties b/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/resolver-status.properties deleted file mode 100644 index 1bdc8f599..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-commons-bundle/1.16.2-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,14 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 12:51:19 EDT 2024 -maven-metadata-ohdsi.snapshots.xml.lastUpdated=1721139909405 -maven-metadata-maven-default-http-blocker.xml.error=Could not transfer metadata com.odysseusinc.arachne\:arachne-commons-bundle\:1.16.2-SNAPSHOT/maven-metadata.xml from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots)] -maven-metadata-jboss-public-repository-group.xml.error= -maven-metadata-jboss-public-repository-group.xml.lastUpdated=1721139909393 -maven-metadata-central.xml.error= -maven-metadata-maven-default-http-blocker.xml/@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148679582 -maven-metadata-jitpack.io.xml.lastUpdated=1721139909411 -maven-metadata-local-repo.xml.error= -maven-metadata-local-repo.xml.lastUpdated=1721139909413 -maven-metadata-central.xml.lastUpdated=1721139909388 -maven-metadata-ohdsi.xml.lastUpdated=1721139909408 -maven-metadata-jitpack.io.xml.error= diff --git a/code/arachne/com/odysseusinc/arachne/arachne-scheduler/3.x-MDACA/arachne-scheduler-3.x-MDACA.pom.lastUpdated b/code/arachne/com/odysseusinc/arachne/arachne-scheduler/3.x-MDACA/arachne-scheduler-3.x-MDACA.pom.lastUpdated deleted file mode 100644 index 6ca796541..000000000 --- a/code/arachne/com/odysseusinc/arachne/arachne-scheduler/3.x-MDACA/arachne-scheduler-3.x-MDACA.pom.lastUpdated +++ /dev/null @@ -1,16 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 12:51:17 EDT 2024 -file\:///code/arachne/.lastUpdated=1721139901517 -http\://0.0.0.0/.error=Could not transfer artifact com.odysseusinc.arachne\:arachne-scheduler\:pom\:3.x-MDACA from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148677881 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139901441 -https\://jitpack.io/.error= -https\://repo1.maven.org/maven2/.lastUpdated=1721139901019 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -https\://repo.ohdsi.org/nexus/content/groups/public/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139901116 -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139901390 -file\:///code/arachne/.error= -https\://jitpack.io/.lastUpdated=1721139901504 diff --git a/code/arachne/com/odysseusinc/arachne/arachne-sys-settings/arachne-sys-settings-3.x-MDACA.jar b/code/arachne/com/odysseusinc/arachne/arachne-sys-settings/arachne-sys-settings-3.x-MDACA.jar deleted file mode 100644 index 82282e394ab31d485bfc462cf2bc4839ef7bb9c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25137 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 bAr$j)z;OerZ^790W=Qw=Ii^Q^!2oakgG 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 diff --git a/code/arachne/com/odysseusinc/data-source-manager/3.x-MDACA/data-source-manager-3.x-MDACA.pom.lastUpdated b/code/arachne/com/odysseusinc/data-source-manager/3.x-MDACA/data-source-manager-3.x-MDACA.pom.lastUpdated deleted file mode 100644 index 174c2daf1..000000000 --- a/code/arachne/com/odysseusinc/data-source-manager/3.x-MDACA/data-source-manager-3.x-MDACA.pom.lastUpdated +++ /dev/null @@ -1,16 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 12:51:17 EDT 2024 -file\:///code/arachne/.lastUpdated=1721139902939 -http\://0.0.0.0/.error=Could not transfer artifact com.odysseusinc\:data-source-manager\:pom\:3.x-MDACA from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148677974 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139902867 -https\://jitpack.io/.error= -https\://repo1.maven.org/maven2/.lastUpdated=1721139902453 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -https\://repo.ohdsi.org/nexus/content/groups/public/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139902576 -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139902820 -file\:///code/arachne/.error= -https\://jitpack.io/.lastUpdated=1721139902925 diff --git a/code/arachne/com/odysseusinc/logging/3.x-MDACA/logging-3.x-MDACA.jar b/code/arachne/com/odysseusinc/logging/3.x-MDACA/logging-3.x-MDACA.jar deleted file mode 100644 index a92e6207019dad41511a68f0cd97bb6ec27e800b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22034 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 diff --git a/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom b/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom deleted file mode 100644 index 116f8376d..000000000 --- a/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom +++ /dev/null @@ -1,380 +0,0 @@ - - 4.0.0 - com.opencsv - opencsv - bundle - 3.7 - opencsv - A simple library for reading and writing CSV in Java - http://opencsv.sf.net - - - 2.19 - 0.7.5.201505241946 - ${project.build.directory}/jacoco-it.exec - 2.10.3 - - - - - Apache 2 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - A business-friendly OSS license - - - - scm:git:ssh://git.code.sf.net/p/opencsv/source - https://sourceforge.net/p/opencsv/source/ci/master/tree/ - - - - glen-smith - Glen Smith - glen_a_smith@users.sourceforge.net - http://blogs.bytecode.com.au/glen - +10 - - Creator - architect - - - - scott_conway - Scott Conway - sconway@users.sourceforge.net - -6 - - project keeper - architect - developer - - - - - - Tom Squires - tom@tomsquires.com - - Developed Annotation-based bean logic. - - - - Maciek Opala - maciek.opala@gmail.com - - developer - version 3.0 - - - - J.C. Romanda - j_hah@users.sf.net - - developer - - - - Sean Sullivan - sullis@users.sourceforge.net - - developer - - - - Kyle Miller - - Developed bean logic. - - - - - Sourceforge - https://sourceforge.net/p/opencsv/_list/tickets - - - - - - maven-site-plugin - 3.4 - - - org.apache.maven.doxia - doxia-core - 1.6 - - - org.apache.maven.doxia - doxia-module-twiki - 1.6 - - - - - maven-assembly-plugin - 2.4.1 - - - - - - maven-compiler-plugin - 3.3 - - 1.7 - 1.7 - true - true - 256m - 768m - - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven.surefire.version} - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - attach-sources - package - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven.javadoc.version} - - - attach-javadocs - package - - jar - - - - - - maven-assembly-plugin - 2.4.1 - - - project - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - enforce-versions - install - - enforce - - - - - [1.7,1.8) - - - - - - - - org.apache.felix - maven-bundle-plugin - 3.0.1 - true - - - JavaSE-1.7 - com.opencsv.*;version="${project.version}" - - - - - org.jacoco - jacoco-maven-plugin - ${jacoco.version} - - ${jacoco.datafile} - ${jacoco.datafile} - - - - jacoco-initialize - initialize - - prepare-agent - - - jacoco.agent.argLine - - - - default-report - verify - - report - - - - - - - - org.apache.maven.wagon - wagon-ssh - 2.8 - - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - - - - junit - junit - 4.12 - test - - - org.apache.commons - commons-lang3 - 3.3.2 - - - org.mockito - mockito-core - 1.10.19 - test - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.8.1 - - false - false - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.5 - - - pmd-ruleset.xml - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.17 - - ${project.build.sourceDirectory} - checkstyle-suppressions.xml - checkstyle.suppressions.file - checkstyle.xml - - - - - checkstyle - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${maven.surefire.version} - - report-only - ${jacoco.agent.argLine} - - - - org.jacoco - jacoco-maven-plugin - ${jacoco.version} - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.3 - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven.javadoc.version} - - - org.apache.maven.plugins - maven-jxr-plugin - 2.5 - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0 - - - - - - - opencsv.sf.net - scp://shell.sourceforge.net/home/project-web/opencsv/htdocs/ - - - diff --git a/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom.sha1 b/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom.sha1 deleted file mode 100644 index 0ea881b0d..000000000 --- a/code/arachne/com/opencsv/opencsv/3.7/opencsv-3.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3389d1f8bc35462a232f1109569b4671ce69de07 \ No newline at end of file diff --git a/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/_remote.repositories b/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/_remote.repositories deleted file mode 100644 index 5634ee542..000000000 --- a/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:11 EDT 2024 -otj-pg-embedded-1.0.3.pom>central= diff --git a/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom b/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom deleted file mode 100644 index bac4e8eb5..000000000 --- a/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom +++ /dev/null @@ -1,341 +0,0 @@ - - - - - - 4.0.0 - - - org.basepom - basepom-minimal - 55 - - - - scm:git:git://github.com/opentable/otj-pg-embedded.git - scm:git:git@github.com:opentable/otj-pg-embedded.git - http://github.com/opentable/otj-pg-embedded - otj-pg-embedded-1.0.3 - - - com.opentable.components - otj-pg-embedded - 1.0.3 - Embedded PostgreSQL driver - - - 3.1.0 - 4.2 - validate - true - basepom.oss-release,oss-build - - ${basepom.check.skip-extended} - ${basepom.check.fail-extended} - true - 11 - ${project.build.targetJdk} - ${project.build.targetJdk} - 1.19.6 - 42.7.2 - 4.23.1 - 1.7.36 - 9.16.3 - 3.14.0 - 1.26.0 - 4.13.2 - 5.8.2 - 1800 - false - true - false - false - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - A business-friendly OSS license - - - - - - org.slf4j - slf4j-api - ${dep.slf4j.version} - - - - org.apache.commons - commons-lang3 - ${dep.commons-lang.version} - - - org.apache.commons - commons-compress - ${dep.commons-compress.version} - runtime - - - - org.flywaydb - flyway-core - true - ${dep.flyway.version} - - - - org.liquibase - liquibase-core - ${dep.liquibase.version} - true - - - - org.postgresql - postgresql - ${dep.postgres-jdbc.version} - - - - org.testcontainers - postgresql - - - org.testcontainers - testcontainers - - - - junit - junit - ${dep.junit.version} - provided - true - - - - org.junit.jupiter - junit-jupiter-api - ${dep.junit5.version} - provided - true - - - - org.slf4j - slf4j-simple - ${dep.slf4j.version} - test - - - - - - - org.testcontainers - postgresql - ${dep.testcontainers.version} - - - org.testcontainers - testcontainers - ${dep.testcontainers.version} - - - - - - - oss-build - - - .oss-build - - - - - - - opentable.snapshot - opentable-snapshots - true - https://artifactory.otenv.com/snapshots - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - org.apache.maven.plugins - maven-release-plugin - - - ${basepom.release.profiles} - - - - - - com.mycila - license-maven-plugin - ${dep.plugin.license.version} - - - org.basepom - basepom-policy - ${dep.basepom-policy.version} - - - - ${basepom.check.skip-license} - ${basepom.license.skip-existing} - ${basepom.check.fail-license} -
    license/basepom-apache-license-header.txt
    - - license/xml-prefix.xml - - - XML_PREFIX - SLASHSTAR_STYLE - SCRIPT_STYLE - - true - true - true - ${project.build.sourceEncoding} - - .*/** - **/*.md - **/*.rst - **/*.adoc - **/*.sh - **/*.txt - **/*.thrift - **/*.proto - **/*.g - **/*.releaseBackup - **/*.vm - **/*.st - **/*.raw - **/*.ser - **/src/license/** - - - src/** - **/pom.xml - -
    -
    - - - - org.apache.maven.plugins - maven-gpg-plugin - ${dep.plugin.gpg.version} - - true - - -
    -
    - - - - - com.mycila - license-maven-plugin - - - basepom.default - ${basepom.check.phase-license} - - check - - - - - -
    -
    - - - - basepom.oss-release - - - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - package - - jar - - - - - - - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - basepom.sign-artifacts - verify - - sign - - - - - - - -
    - -
    diff --git a/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom.sha1 b/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom.sha1 deleted file mode 100644 index 56d15efa7..000000000 --- a/code/arachne/com/opentable/components/otj-pg-embedded/1.0.3/otj-pg-embedded-1.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fd30120bbda345c104b3f944301f06803bda21d3 \ No newline at end of file diff --git a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/_remote.repositories b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/_remote.repositories deleted file mode 100644 index 51e5a7a3f..000000000 --- a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:36 EDT 2024 -ojdbc-bom-21.9.0.0.pom>ohdsi= diff --git a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom deleted file mode 100644 index 3ad1c3dcf..000000000 --- a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom +++ /dev/null @@ -1,278 +0,0 @@ - - - 4.0.0 - com.oracle.database.jdbc - ojdbc-bom - 21.9.0.0 - pom - - - 21.9.0.0 - - - - ojdbc-bom - Bill of Materials (BOM) for JDBC driver and other additional jars - https://www.oracle.com/database/technologies/maven-central-guide.html - 1997 - - - - Oracle Free Use Terms and Conditions (FUTC) - https://www.oracle.com/downloads/licenses/oracle-free-license.html - - - - - - Oracle America, Inc. - http://www.oracle.com - - - - - - - - - - - - com.oracle.database.jdbc - ojdbc11 - ${version.lib.ojdbc} - - - - com.oracle.database.jdbc - ojdbc8 - ${version.lib.ojdbc} - - - - com.oracle.database.jdbc - ucp - ${version.lib.ojdbc} - - - - com.oracle.database.jdbc - ucp11 - ${version.lib.ojdbc} - - - - com.oracle.database.jdbc - rsi - ${version.lib.ojdbc} - - - - - - com.oracle.database.security - oraclepki - ${version.lib.ojdbc} - - - - com.oracle.database.security - osdt_core - ${version.lib.ojdbc} - - - - com.oracle.database.security - osdt_cert - ${version.lib.ojdbc} - - - - - - com.oracle.database.ha - simplefan - ${version.lib.ojdbc} - - - - com.oracle.database.ha - ons - ${version.lib.ojdbc} - - - - com.oracle.database.nls - orai18n - ${version.lib.ojdbc} - - - - com.oracle.database.xml - xdb - ${version.lib.ojdbc} - - - - com.oracle.database.xml - xmlparserv2 - ${version.lib.ojdbc} - - - - com.oracle.database.jdbc.debug - ojdbc11_g - ${version.lib.ojdbc} - - - - com.oracle.database.jdbc.debug - ojdbc8_g - ${version.lib.ojdbc} - - - - com.oracle.database.jdbc.debug - ojdbc8dms_g - ${version.lib.ojdbc} - - - - com.oracle.database.jdbc.debug - ojdbc11dms_g - ${version.lib.ojdbc} - - - - com.oracle.database.observability - dms - ${version.lib.ojdbc} - - - - com.oracle.database.observability - ojdbc11dms - ${version.lib.ojdbc} - - - - com.oracle.database.observability - ojdbc8dms - ${version.lib.ojdbc} - - - - com.oracle.database.jdbc - ojdbc11-production - ${version.lib.ojdbc} - pom - - - - com.oracle.database.jdbc - ojdbc8-production - ${version.lib.ojdbc} - pom - - - - com.oracle.database.observability - ojdbc8-observability - ${version.lib.ojdbc} - pom - - - - com.oracle.database.observability - ojdbc11-observability - ${version.lib.ojdbc} - pom - - - - com.oracle.database.jdbc.debug - ojdbc8-debug - ${version.lib.ojdbc} - pom - - - - com.oracle.database.jdbc.debug - ojdbc11-debug - ${version.lib.ojdbc} - pom - - - - com.oracle.database.jdbc.debug - ojdbc8-observability-debug - ${version.lib.ojdbc} - pom - - - - com.oracle.database.jdbc.debug - ojdbc11-observability-debug - ${version.lib.ojdbc} - pom - - - - - - diff --git a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.lastUpdated b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.lastUpdated deleted file mode 100644 index 9849889c0..000000000 --- a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:36 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact com.oracle.database.jdbc\:ojdbc-bom\:pom\:21.9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139816461 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139816558 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139816660 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139816790 diff --git a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 b/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 deleted file mode 100644 index eebccc0b1..000000000 --- a/code/arachne/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5448ed38b62dbc922bf9d5fa12eece0a0ca2f5f4 \ No newline at end of file diff --git a/code/arachne/com/qmino/miredot-annotations/1.5.0/_remote.repositories b/code/arachne/com/qmino/miredot-annotations/1.5.0/_remote.repositories deleted file mode 100644 index 75bdd6e1e..000000000 --- a/code/arachne/com/qmino/miredot-annotations/1.5.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:11 EDT 2024 -miredot-annotations-1.5.0.pom>ohdsi= diff --git a/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom b/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom deleted file mode 100644 index 10957ea71..000000000 --- a/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom +++ /dev/null @@ -1,37 +0,0 @@ - - 4.0.0 - com.qmino - miredot-annotations - jar - 1.5.0 - Miredot Annotations - - UTF-8 - UTF-8 - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - - - - - - miredot - MireDot Releases - http://nexus.qmino.com/content/repositories/miredot - false - - - miredot-snapshots - MireDot Snapshots - http://nexus.qmino.com/content/repositories/miredot-snapshots - true - - - diff --git a/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.lastUpdated b/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.lastUpdated deleted file mode 100644 index 68c2aa29d..000000000 --- a/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:11 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact com.qmino\:miredot-annotations\:pom\:1.5.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139910996 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139911002 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139911116 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139911248 -https\://repo1.maven.org/maven2/.lastUpdated=1721139910893 diff --git a/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.sha1 b/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.sha1 deleted file mode 100644 index 5d9df47bb..000000000 --- a/code/arachne/com/qmino/miredot-annotations/1.5.0/miredot-annotations-1.5.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6b34ae5c6dbd3f1bbafa54c0efa1a978b716b30d \ No newline at end of file diff --git a/code/arachne/com/querydsl/querydsl-bom/5.0.0/_remote.repositories b/code/arachne/com/querydsl/querydsl-bom/5.0.0/_remote.repositories deleted file mode 100644 index 8d826486f..000000000 --- a/code/arachne/com/querydsl/querydsl-bom/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:38 EDT 2024 -querydsl-bom-5.0.0.pom>ohdsi= diff --git a/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom b/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom deleted file mode 100644 index 14db2601d..000000000 --- a/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom +++ /dev/null @@ -1,217 +0,0 @@ - - - 4.0.0 - com.querydsl - querydsl-bom - 5.0.0 - pom - Querydsl - Bill of materials - Bill of materials - http://www.querydsl.com - 2007 - - Querydsl - http://www.querydsl.com - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - timowest - Timo Westkämper - Mysema Ltd - - Project Manager - Architect - - - - ssaarela - Samppa Saarela - Mysema Ltd - - Developer - - - - ponzao - Vesa Marttila - Mysema Ltd - - Developer - - - - mangolas - Lassi Immonen - Mysema Ltd - - Developer - - - - Shredder121 - Ruben Dijkstra - - Developer - - - - johnktims - John Tims - - Developer - - - - robertandrewbain - Robert Bain - - Developer - - - - jwgmeligmeyling - Jan-Willem Gmelig Meyling - - Developer - - - - - scm:git:git@github.com:querydsl/querydsl.git/querydsl-bom - scm:git:git@github.com:querydsl/querydsl.git/querydsl-bom - http://github.com/querydsl/querydsl/querydsl-bom - - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - - - - ${project.groupId} - querydsl-core - ${project.version} - - - ${project.groupId} - querydsl-codegen - ${project.version} - - - ${project.groupId} - querydsl-codegen-utils - ${project.version} - - - ${project.groupId} - querydsl-spatial - ${project.version} - - - ${project.groupId} - querydsl-apt - ${project.version} - - - ${project.groupId} - querydsl-collections - ${project.version} - - - ${project.groupId} - querydsl-guava - ${project.version} - - - ${project.groupId} - querydsl-sql - ${project.version} - - - ${project.groupId} - querydsl-sql-spatial - ${project.version} - - - ${project.groupId} - querydsl-sql-codegen - ${project.version} - - - ${project.groupId} - querydsl-sql-spring - ${project.version} - - - ${project.groupId} - querydsl-jpa - ${project.version} - - - ${project.groupId} - querydsl-jpa-codegen - ${project.version} - - - ${project.groupId} - querydsl-jdo - ${project.version} - - - ${project.groupId} - querydsl-kotlin-codegen - ${project.version} - - - ${project.groupId} - querydsl-lucene3 - ${project.version} - - - ${project.groupId} - querydsl-lucene4 - ${project.version} - - - ${project.groupId} - querydsl-lucene5 - ${project.version} - - - ${project.groupId} - querydsl-hibernate-search - ${project.version} - - - ${project.groupId} - querydsl-mongodb - ${project.version} - - - ${project.groupId} - querydsl-scala - ${project.version} - - - ${project.groupId} - querydsl-kotlin - ${project.version} - - - - diff --git a/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.lastUpdated b/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.lastUpdated deleted file mode 100644 index c43017f99..000000000 --- a/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:38 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact com.querydsl\:querydsl-bom\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139817615 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139817726 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139817943 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139818079 diff --git a/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.sha1 b/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.sha1 deleted file mode 100644 index 588f25f9b..000000000 --- a/code/arachne/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bba4d94262a15eb93f93126e9e42dd7177ee6ef3 \ No newline at end of file diff --git a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/_remote.repositories b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/_remote.repositories deleted file mode 100644 index 983fa1788..000000000 --- a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:36 EDT 2024 -okhttp-bom-4.12.0.pom>ohdsi= diff --git a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom deleted file mode 100644 index de4d54583..000000000 --- a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - 4.0.0 - com.squareup.okhttp3 - okhttp-bom - 4.12.0 - pom - okhttp-bom - Square’s meticulous HTTP client for Java and Kotlin. - https://square.github.io/okhttp/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Square, Inc. - - - - scm:git:https://github.com/square/okhttp.git - scm:git:ssh://git@github.com/square/okhttp.git - https://github.com/square/okhttp - - - - - com.squareup.okhttp3 - mockwebserver - 4.12.0 - - - com.squareup.okhttp3 - okcurl - 4.12.0 - - - com.squareup.okhttp3 - okhttp - 4.12.0 - - - com.squareup.okhttp3 - okhttp-brotli - 4.12.0 - - - com.squareup.okhttp3 - okhttp-dnsoverhttps - 4.12.0 - - - com.squareup.okhttp3 - logging-interceptor - 4.12.0 - - - com.squareup.okhttp3 - okhttp-sse - 4.12.0 - - - com.squareup.okhttp3 - okhttp-tls - 4.12.0 - - - com.squareup.okhttp3 - okhttp-urlconnection - 4.12.0 - - - - diff --git a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.lastUpdated b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.lastUpdated deleted file mode 100644 index 1e75ee814..000000000 --- a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:36 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact com.squareup.okhttp3\:okhttp-bom\:pom\:4.12.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139815627 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139815734 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139815932 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139816068 diff --git a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.sha1 b/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.sha1 deleted file mode 100644 index 95a43dac6..000000000 --- a/code/arachne/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -739bd19d4113d096b0470fb179cb2d4bad33dac9 \ No newline at end of file diff --git a/code/arachne/com/sun/activation/all/1.2.0/_remote.repositories b/code/arachne/com/sun/activation/all/1.2.0/_remote.repositories deleted file mode 100644 index eb38841f8..000000000 --- a/code/arachne/com/sun/activation/all/1.2.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:01 EDT 2024 -all-1.2.0.pom>central= diff --git a/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom b/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom deleted file mode 100644 index 143612971..000000000 --- a/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom +++ /dev/null @@ -1,641 +0,0 @@ - - - - - - net.java - jvnet-parent - 1 - - 4.0.0 - com.sun.activation - all - pom - 1.2.0 - JavaBeans Activation Framework distribution - ${project.name} - - - scm:git:https://github.com/javaee/activation.git - scm:git:git@github.com:javaee/activation.git - https://github.com/javaee/activation - - - - GitHub - https://github.com/javaee/activation/issues - - - - - CDDL/GPLv2+CE - https://github.com/javaee/activation/blob/master/LICENSE.txt - repo - CDDL or GPL version 2 plus the Classpath Exception - - - - - Oracle - http://www.oracle.com - - - - 1.2 - - - ${project.groupId}.${project.artifactId} - - - ${project.groupId}.${project.artifactId} - - - ${project.groupId}.${project.artifactId} - - - ${project.groupId}.${project.artifactId} - - - ${project.groupId}.${project.artifactId} - - - ${project.groupId}.${project.artifactId} - - - javax.activation.*; version=${activation.spec.version} - - - * - - - com.sun.activation.* - - - 2.0.0 - iso-8859-1 - - High - - - 3.0.1 - - - true - - - 1.42 - - - - - shannon - Bill Shannon - bill.shannon@oracle.com - Oracle - - lead - - - - - - - - oracle.com - file:/tmp - - - - - activation - activationapi - - - - - - build-only - - demo - - - true - - - - - - deploy-release - - - - org.apache.maven.plugins - maven-surefire-plugin - - true - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - - - - - deploy-snapshot - - - - org.apache.maven.plugins - maven-surefire-plugin - - true - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - 1.5 - - - - maven-compiler-plugin - - - default-compile - - true - ${javac.path} - 1.5 - 1.5 - 1.5 - - - - - - - - - - - install - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-version - - enforce - - - - - [2.2.1,) - - - - - - - - - - org.apache.felix - maven-bundle-plugin - - - - ${activation.bundle.symbolicName} - - - ${activation.packages.export} - - - ${activation.packages.import} - - - ${activation.packages.private} - - - * - - - - - - - osgi-manifest - process-classes - - manifest - - - - - - - - org.glassfish.hk2 - osgiversion-maven-plugin - ${hk2.plugin.version} - - qualifier - activation.osgiversion - - - - compute-osgi-version - - compute-osgi-version - - - - - - - - maven-compiler-plugin - - - default-compile - - 1.5 - 1.5 - - - - default-testCompile - - 1.5 - 1.5 - - - - - - - maven-jar-plugin - - - ${project.artifactId} - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - ${activation.extensionName} - - - ${activation.specificationTitle} - - - ${activation.spec.version} - - - ${project.organization.name} - - - ${activation.implementationTitle} - - - ${project.version} - - - ${project.organization.name} - - - com.sun - - - - ${activation.moduleName} - - - - - **/*.java - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - generate-sources - - add-source - - - - - ${project.build.directory}/sources - - - target/classes - - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - true - - - **/*.class - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - org.codehaus.mojo - build-helper-maven-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.4 - - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.version} - - ${findbugs.skip} - ${findbugs.threshold} - true - - ${findbugs.exclude} - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0 - - - org.apache.felix - maven-bundle-plugin - 2.1.0 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - ${copyright-plugin.version} - - git - true - - copyright-exclude - - - - - - - - - - - com.sun.activation - javax.activation - ${project.version} - - - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.version} - - ${findbugs.skip} - ${findbugs.threshold} - - ${findbugs.exclude} - - - - - - diff --git a/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom.sha1 b/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom.sha1 deleted file mode 100644 index c6ef40c4f..000000000 --- a/code/arachne/com/sun/activation/all/1.2.0/all-1.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9b1023e38195ea19d1a0ac79192d486da1904f97 \ No newline at end of file diff --git a/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/_remote.repositories b/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/_remote.repositories deleted file mode 100644 index a49b3c68d..000000000 --- a/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -istack-commons-runtime-4.1.2.pom>central= diff --git a/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom b/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom deleted file mode 100644 index dc9998046..000000000 --- a/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - - - 4.0.0 - - com.sun.istack - istack-commons - 4.1.2 - ../pom.xml - - istack-commons-runtime - - istack common utility code runtime - - - - jakarta.activation - jakarta.activation-api - provided - true - - - - - - - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - - diff --git a/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom.sha1 b/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom.sha1 deleted file mode 100644 index 4581b9836..000000000 --- a/code/arachne/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -791e64803f294eafcf0f401c399d626ad0721500 \ No newline at end of file diff --git a/code/arachne/com/sun/istack/istack-commons/4.1.2/_remote.repositories b/code/arachne/com/sun/istack/istack-commons/4.1.2/_remote.repositories deleted file mode 100644 index 3f9e4833b..000000000 --- a/code/arachne/com/sun/istack/istack-commons/4.1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -istack-commons-4.1.2.pom>central= diff --git a/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom b/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom deleted file mode 100644 index e92b0e035..000000000 --- a/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom +++ /dev/null @@ -1,624 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.7 - - - - com.sun.istack - istack-commons - 4.1.2 - pom - iStack Common Utility Code - istack common utility code - - - scm:git:ssh://git@github.com/eclipse-ee4j/jaxb-istack-commons.git - scm:git:ssh://git@github.com/eclipse-ee4j/jaxb-istack-commons.git - https://github.com/eclipse-ee4j/jaxb-istack-commons - HEAD - - - - - Eclipse Distribution License - v 1.0 - http://www.eclipse.org/org/documents/edl-v10.php - repo - - - - - - Lukas Jungmann - lukas.jungmann@oracle.com - Oracle Corporation - - - - - github - https://github.com/eclipse-ee4j/jaxb-istack-commons/issues - - - - - Eclipse Implementation of JAXB mailing list - jaxb-impl-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/jaxb-impl-dev - https://dev.eclipse.org/mailman/listinfo/jaxb-impl-dev - https://dev.eclipse.org/mhonarc/lists/jaxb-impl-dev - - - - - ${project.build.directory}/common-resources - ${project.build.commonResourcesDirectory}/legal - ${project.build.commonResourcesDirectory}/config - ${config.dir}/copyright-exclude - false - true - false - ${config.dir}/spotbugs-exclude.xml - false - Low - 4.7.3.4 - - 2.1.1 - 3.9.1 - 1.9.7 - 4.13.2 - 1.10.13 - 4.0.2 - 3.5.1 - 3.8.1 - 7.7.1 - 2.33 - - UTF-8 - ${project.build.sourceEncoding} - 11 - ${maven.compiler.release} - Eclipse Foundation - - - - buildtools - runtime - test - tools - maven-plugin - import-properties-plugin - soimp - - - - - - jakarta.activation - jakarta.activation-api - ${activation.version} - - - junit - junit - ${junit.version} - - - org.apache.ant - ant - ${ant.version} - - - org.apache.ant - ant-junit - ${ant.version} - - - org.glassfish.jaxb - codemodel - ${codemodel.version} - - - org.apache.maven - maven-plugin-api - ${maven.api.version} - - - * - * - - - - - org.apache.maven - maven-core - ${maven.api.version} - - - * - * - - - - - org.apache.maven - maven-artifact - ${maven.api.version} - - - * - * - - - - - org.apache.maven - maven-model - ${maven.api.version} - - - * - * - - - - - org.codehaus.plexus - plexus-utils - ${plexus-utils.version} - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${maven-plugin-annotations.version} - - - * - * - - - - - org.testng - testng - ${testng.version} - - - org.apache.maven - maven-settings - ${maven.api.version} - - - org.apache.maven.resolver - maven-resolver-api - ${maven.resolver.version} - - - * - * - - - - - org.apache.maven.resolver - maven-resolver-impl - ${maven.resolver.version} - - - * - * - - - - - args4j - args4j - ${args4j.version} - - - - - - - junit - junit - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - ${spotbugs.skip} - ${spotbugs.threshold} - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.5.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.5.0 - - - org.codehaus.gmaven - gmaven-plugin - 1.5 - - - org.apache.groovy - groovy - 4.0.11 - - - org.apache.groovy - groovy-xml - 4.0.11 - - - - - org.apache.maven.plugins - maven-invoker-plugin - 3.5.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.8.1 - - - org.jacoco - jacoco-maven-plugin - 0.8.9 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [${maven.compiler.release},) - - - [3.6.0,) - - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - true - false - 7 - - - - validate - - create - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - ${copyright.exclude} - - ${copyright.scmonly} - - ${copyright.update} - - ${copyright.ignoreyear} - false - - - - org.apache.maven.plugins - maven-assembly-plugin - - - common-resources - generate-resources - - single - - false - - - src/main/assembly/resources.xml - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - unpack-resource - generate-resources - - unpack - - - - - ${project.groupId} - istack-commons - ${project.version} - resources - zip - ${project.build.commonResourcesDirectory} - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -Xlint:all - -Xdoclint:all,-missing - -Werror - - true - false - - - - org.apache.felix - maven-bundle-plugin - - - - false - - - - ${vendor.name} - ${project.groupId} - ${project.version} - ${buildNumber} - - true - - pom - maven-plugin - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - false - - - - META-INF/jpms.args - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - all,-missing - true - true - - - - org.apache.maven.plugins - maven-source-plugin - - - - false - - - ${project.version} - ${buildNumber} - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - true - ${spotbugs.exclude} - High - - - - org.apache.maven.plugins - maven-plugin-plugin - - - java-annotations - - - - - - - - - coverage - - - - org.jacoco - jacoco-maven-plugin - - - default-prepare-agent - - prepare-agent - - - - default-report - - report - - - - - - - - - license-check - - - - dash-licenses-snapshots - https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/ - - true - - - - - - - - org.eclipse.dash - license-tool-plugin - 0.0.1-SNAPSHOT - - - - - - org.eclipse.dash - license-tool-plugin - - - license-check - validate - - license-check - - - - - - - - - - diff --git a/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom.sha1 b/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom.sha1 deleted file mode 100644 index 5e49b4c3f..000000000 --- a/code/arachne/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4a568257731f081dd9a566eb5cea0f4fb6c3b20c \ No newline at end of file diff --git a/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/_remote.repositories b/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/_remote.repositories deleted file mode 100644 index 7ac0ec797..000000000 --- a/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:02 EDT 2024 -jaxb-bom-ext-4.0.5.pom>central= diff --git a/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom b/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom deleted file mode 100644 index 3b9323390..000000000 --- a/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom +++ /dev/null @@ -1,92 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jaxb - jaxb-bom - ../bom/pom.xml - 4.0.5 - - - com.sun.xml.bind - jaxb-bom-ext - - pom - JAXB BOM with ALL dependencies - - JAXB Bill of Materials (BOM) with all dependencies. - If you are not sure - DON'T USE THIS BOM. Use com.sun.xml.bind:jaxb-bom instead. - - https://eclipse-ee4j.github.io/jaxb-ri/ - - - ${project.version} - 1.5.1 - ${project.version} - ${project.version} - 1.10.14 - - - - - - com.sun.xml.bind.external - rngom - ${relaxng.version} - - - - org.glassfish.jaxb - xsom - ${xsom.version} - - - com.sun.xml.dtd-parser - dtd-parser - ${dtd-parser.version} - - - com.sun.istack - istack-commons-tools - ${istack.version} - - - org.glassfish.jaxb - codemodel - ${codemodel.version} - - - - org.glassfish.jaxb - txw2 - ${project.version} - - - - org.apache.ant - ant - ${ant.version} - - - com.sun.xml.bind.external - relaxng-datatype - ${relaxng.version} - - - - - diff --git a/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom.sha1 b/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom.sha1 deleted file mode 100644 index b33048f6f..000000000 --- a/code/arachne/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -651882f97b92c0ae166ecdfbb23678993c9e3229 \ No newline at end of file diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/_remote.repositories b/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/_remote.repositories deleted file mode 100644 index ec412db2e..000000000 --- a/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:02 EDT 2024 -jaxb-parent-4.0.5.pom>central= diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom b/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom deleted file mode 100644 index 51f757bab..000000000 --- a/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom +++ /dev/null @@ -1,777 +0,0 @@ - - - - - 4.0.0 - - - com.sun.xml.bind - jaxb-bom-ext - 4.0.5 - boms/bom-ext/pom.xml - - - com.sun.xml.bind.mvn - jaxb-parent - 4.0.5 - pom - Jakarta XML Binding Implementation - - Open source Implementation of Jakarta XML Binding (formerly JSR-222) - - - https://eclipse-ee4j.github.io/jaxb-ri - - scm:git:ssh://git@github.com/eclipse-ee4j/jaxb-ri - scm:git:ssh://git@github.com/eclipse-ee4j/jaxb-ri.git - https://github.com/eclipse-ee4j/jaxb-ri.git - HEAD - - - - - Eclipse Distribution License - v 1.0 - http://www.eclipse.org/org/documents/edl-v10.php - repo - - - - - - Roman Grigoriadi - roman.grigoriadi@oracle.com - Oracle Corporation - - - - - github - https://github.com/eclipse-ee4j/jaxb-ri/issues - - - - - Jakarta XML Binding Implementation mailing list - jaxb-impl-dev@eclipse.org - https://accounts.eclipse.org/mailing-list/jaxb-impl-dev - https://accounts.eclipse.org/mailing-list/jaxb-impl-dev - https://accounts.eclipse.org/mailing-list/jaxb-impl-dev - - - - - ${project.build.directory}/common-resources - ${project.build.commonResourcesDirectory}/legal - ${project.build.commonResourcesDirectory}/config/copyright-exclude - false - true - ${project.build.commonResourcesDirectory}/config/copyright.txt - false - - false - Low - 4.8.3.1 - 1.12.0 - ${maven.build.timestamp} - yyyy-MM-dd HH:mm - - 11 - ${maven.compiler.release} - - 4.13.2 - - ${project.build.directory}/mods - - true - 1.0.0 - 6.0.0 - 2.4.0 - true - Eclipse Foundation - org.eclipse - - -Xlint:all,-rawtypes,-unchecked - - -Xdoclint:all,-missing - 150 - - all,-missing - - -Xlint:none - -Xdoclint:none - 10 - - - - - - - com.github.relaxng - relaxngDatatype - 2011.1 - - - - junit - junit - ${junit.version} - - - - - - - org.checkerframework - compiler - ${compiler.version} - - - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.3.2 - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - \ - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - true - - <_noextraheaders>true - - - pom - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - false - - - - META-INF/jpms.args - - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.6.1 - - - com.sun.istack - istack-commons-maven-plugin - 4.1.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.5 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - - false - - - Jakarta XML Binding - ${xml.bind-api.majorVersion}.${xml.bind-api.minorVersion} - Eclipse Foundation - Eclipse Implementation of JAXB - ${project.version} - ${buildNumber} - ${vendor.name} - ${vendor.id} - ${buildNumber} - ${project.scm.connection} - ${timestamp} - ${project.version} - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.6.0 - - - - false - - - Jakarta XML Binding - ${xml.bind-api.majorVersion}.${xml.bind-api.minorVersion} - Eclipse Foundation - Eclipse Implementation of JAXB - ${project.version} - ${buildNumber} - ${vendor.name} - ${vendor.id} - ${buildNumber} - ${project.scm.connection} - ${timestamp} - ${project.version} - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - - com.sun.xml.bind:* - com.sun.tools.xjc:* - com.sun.tools.jxc:* - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.5.0 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - ${copyright.template} - ${copyright.exclude} - - ${copyright.scmonly} - - ${copyright.update} - - ${copyright.ignoreyear} - false - - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - ${spotbugs.skip} - ${spotbugs.threshold} - - ${spotbugs.exclude} - - - - com.h3xstream.findsecbugs - findsecbugs-plugin - ${findsecbugs.version} - - - - - - org.owasp - dependency-check-maven - 9.0.9 - - 7 - false - - HTML - CSV - - - - - org.codehaus.mojo - properties-maven-plugin - 1.2.1 - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.2.0 - - en-US - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - org.apache.maven.plugins - maven-antrun-plugin - 3.1.0 - - - org.apache.ant - ant - ${ant.version} - - - org.apache.ant - ant-junit - ${ant.version} - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - jaxb.version - - parse-version - - validate - - jaxb - - - - xml.bind-api.version - - parse-version - - validate - - xml.bind-api - ${xml.bind-api.version} - - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - META-INF - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - - - [11,) - - - [3.6.0,) - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - create-buildnumber - - create - - - true - 7 - unknown - - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - common-resources - generate-resources - - single - - false - - - src/main/assembly/resources.xml - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - unpack-resource - generate-resources - - unpack - - - - - com.sun.xml.bind.mvn - jaxb-parent - ${project.version} - resources - zip - ${project.build.commonResourcesDirectory} - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - true - - - - default-compile - - - ${comp.xlint} - ${comp.xdoclint} - -Xmaxwarns - ${warn.limit} - -Xmaxerrs - ${warn.limit} - - - - - default-testCompile - - - ${comp.test.xlint} - ${comp.test.xdoclint} - -Xmaxwarns - ${warn.test.limit} - -Xmaxerrs - ${warn.test.limit} - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - - - - false - - - Jakarta XML Binding - ${xml.bind-api.majorVersion}.${xml.bind-api.minorVersion} - Eclipse Foundation - Eclipse Implementation of JAXB - ${project.version} - ${buildNumber} - ${vendor.name} - ${vendor.id} - ${buildNumber} - ${project.scm.connection} - ${timestamp} - ${project.version} - - - - META-INF/jpms.args - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - false - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${jdoc.doclint} - true - - - false - - - true - true - - - - - - - boms/bom - boms/bom-ext - external - xsom - txw - codemodel - core - runtime - xjc - jxc - bundles - - - - - default-profile - - - !dev - - - - - docs - tools/osgi_tests - - - - oss-release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-no-snapshots - - enforce - - - - - No SNAPSHOT dependency allowed! - - - release version no SNAPSHOT Allowed! - - - ${oss.disallow.snapshots} - - - - - - - - - dev-impl - - - dev - - - - - spotbugs - - - - com.github.spotbugs - spotbugs-maven-plugin - - - verify - - spotbugs - - - - - - - - - dependency-check - - - - org.owasp - dependency-check-maven - - - - check - - - - - - - - - coverage - - - jacoco-build - - - - - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - - - - org.jacoco - jacoco-maven-plugin - - - default-prepare-agent - - prepare-agent - - - - default-report - - report - - - - - - - - - license-check - - - - dash-licenses-snapshots - https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/ - - true - - - - - - - - org.eclipse.dash - license-tool-plugin - 0.0.1-SNAPSHOT - - - - - - org.eclipse.dash - license-tool-plugin - - - license-check - validate - - license-check - - - - - - - - - diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom.sha1 b/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom.sha1 deleted file mode 100644 index 4ad8e2102..000000000 --- a/code/arachne/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -537859c01d9f1f80266cda7eb0f46c7e16a7fd7d \ No newline at end of file diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/_remote.repositories b/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/_remote.repositories deleted file mode 100644 index 82f4b08c3..000000000 --- a/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:02 EDT 2024 -jaxb-runtime-parent-4.0.5.pom>central= diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom b/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom deleted file mode 100644 index 31697f7ae..000000000 --- a/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom +++ /dev/null @@ -1,36 +0,0 @@ - - - - - 4.0.0 - - - com.sun.xml.bind.mvn - jaxb-parent - 4.0.5 - ../pom.xml - - - jaxb-runtime-parent - - pom - JAXB Runtime parent - JAXB Runtime parent module. Contains sources used during runtime processing. - https://eclipse-ee4j.github.io/jaxb-ri/ - - - impl - - - diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom.sha1 b/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom.sha1 deleted file mode 100644 index f86ba8469..000000000 --- a/code/arachne/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -911d77fdae4a8371531993a27c45bb7815627fa9 \ No newline at end of file diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/_remote.repositories b/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/_remote.repositories deleted file mode 100644 index 775e5ad25..000000000 --- a/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -jaxb-txw-parent-4.0.5.pom>central= diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom b/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom deleted file mode 100644 index a3dc36379..000000000 --- a/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom +++ /dev/null @@ -1,36 +0,0 @@ - - - - - 4.0.0 - - - com.sun.xml.bind.mvn - jaxb-parent - 4.0.5 - ../pom.xml - - - jaxb-txw-parent - pom - JAXB TXW parent - JAXB TXW parent module. Contains sources for TXW component. - https://eclipse-ee4j.github.io/jaxb-ri/ - - - compiler - runtime - - - diff --git a/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom.sha1 b/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom.sha1 deleted file mode 100644 index 61299f5b8..000000000 --- a/code/arachne/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5826d93f394ec154ea14512ed0b8bfa98c4b4b2c \ No newline at end of file diff --git a/code/arachne/com/sun/xml/security/xml-security-impl/1.0/_remote.repositories b/code/arachne/com/sun/xml/security/xml-security-impl/1.0/_remote.repositories deleted file mode 100644 index e6b998052..000000000 --- a/code/arachne/com/sun/xml/security/xml-security-impl/1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -xml-security-impl-1.0.pom>central= diff --git a/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom b/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom deleted file mode 100644 index 789eb31c6..000000000 --- a/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - 4.0.0 - com.sun.xml.security - xml-security-impl - 1.0 - jar - - XML Security with Extensions - - - - - org.jvnet.wagon-svn - wagon-svn - 1.8 - - - - - - org.jvnet.maven-antrun-extended-plugin - maven-antrun-extended-plugin - - - package - - run - - - - - - - - - - - - - - - maven2-repository.dev.java.net - Java.net Repository for Maven - http://download.java.net/maven/2/ - - - - - - maven2-repository.dev.java.net - Java.net Repository for Maven - http://download.java.net/maven/2/ - - - - - - false - java.net-maven2-repository - java-net:/maven2-repository/trunk/repository/ - - - diff --git a/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom.sha1 b/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom.sha1 deleted file mode 100644 index d0d507d00..000000000 --- a/code/arachne/com/sun/xml/security/xml-security-impl/1.0/xml-security-impl-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3af96637d47d55f8776e0bf72a02f48a8ac5f909 \ No newline at end of file diff --git a/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/_remote.repositories b/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/_remote.repositories deleted file mode 100644 index cb6767e9a..000000000 --- a/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:54 EDT 2024 -xstream-parent-1.4.19.pom>central= diff --git a/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom b/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom deleted file mode 100644 index 2ac17e71e..000000000 --- a/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom +++ /dev/null @@ -1,1191 +0,0 @@ - - - 4.0.0 - com.thoughtworks.xstream - xstream-parent - pom - 1.4.19 - XStream Parent - http://x-stream.github.io - - XStream is a serialization library from Java objects to XML and back. - - - 2004 - - XStream - http://x-stream.github.io - - - - - xstream - XStream Committers - http://x-stream.github.io/team.html - - - - - - jdk12-ge - - [12,) - - - 1.7 - 1.7 - 1.7 - 1.7 - - - - jdk9-ge-jdk12 - - [9,12) - - - 1.6 - 1.6 - 1.6 - - - - jdk9-ge - - [9,) - - - 3.0.0-M1 - - - - jdk8-ge - - [1.8,) - - - -Xdoclint:-missing - 2.5.4 - - - - jdk8 - - 1.8 - - - 1.4 - 1.4 - - - - jdk6 - - 1.6 - - - 1.16 - - - - - jdk6-ge - - [1.6,) - - - - xstream-jmh - xstream-distribution - - - - - jdk5 - - 1.5 - - - 1.8.0.10 - 3.6.6.Final - - - - - jdk4 - - 1.4 - - - 1.3 - 1.3 - 1.0-beta-1 - http://docs.oracle.com/javase/1.4.2/docs/api/ - - 1.8.0.10 - 3.3.2.GA - 3.6.6.Final - - - - java - - - src/java - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - include-license - generate-resources - - add-resource - - - - - ${project.build.directory}/generated-resources - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - copy-license - generate-resources - - run - - - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.maven.plugins - maven-enforcer-plugin - - ${version.plugin.maven.enforcer} - - - enforce-java-version - - enforce - - - - - ${version.java.enforced} - - - - - - - - - - - java-test - - - src/test - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - copy-license-for-test - generate-test-resources - - run - - - - - - - - - - - - - - osgi - - [1.6,) - - profiles/osgi - - - - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - ${bundle.export.package} - ${bundle.import.package} - - - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - - jar - - - - ${project.build.directory}/OSGi/MANIFEST.MF - - - - - - - - - ${project.groupId}.*;-noimport:=true - * - - - - xstream-release - - [1.8,1.9) - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - coveralls - - - profiles/coveralls - - - - - - org.eluder.coveralls - coveralls-maven-plugin - - - org.jacoco - jacoco-maven-plugin - - - prepare-agent - - prepare-agent - - - - - - - - - - - xstream - xstream-hibernate - xstream-benchmark - - - - - BSD-3-Clause - http://x-stream.github.io/license.html - repo - - - - - github - https://github.com/x-stream/xstream/issues/ - - - Travis - https://travis-ci.org/x-stream/xstream - - - - XStream Users List - xstream-user+subscribe@googlegroups.com - xstream-user+unsubscribe@googlegroups.com - xstream-user@googlegroups.com - https://groups.google.com/forum/#!forum/xstream-user - - http://news.gmane.org/gmane.comp.java.xstream.user - http://markmail.org/search/list:org.codehaus.xstream.user - - - - XStream Notifications List - xstream-notifications+subscribe@googlegroups.com - xstream-notifications+unsubscribe@googlegroups.com - xstream-notifications@googlegroups.com - https://groups.google.com/forum/#!forum/xstream-notifications - - http://news.gmane.org/gmane.comp.java.xstream.scm - - - - Former (pre-2015-06) Development List - http://news.gmane.org/gmane.comp.java.xstream.dev - - http://markmail.org/search/list:org.codehaus.xstream.dev - - - - Former (pre-2015-06) Announcements List - http://markmail.org/search/list:org.codehaus.xstream.announce - - - - - - - com.thoughtworks.xstream - xstream - 1.4.19 - - - com.thoughtworks.xstream - xstream - 1.4.19 - tests - test-jar - test - - - com.thoughtworks.xstream - xstream - 1.4.19 - javadoc - provided - - - com.thoughtworks.xstream - xstream-hibernate - 1.4.19 - - - com.thoughtworks.xstream - xstream-hibernate - 1.4.19 - javadoc - provided - - - com.thoughtworks.xstream - xstream-jmh - 1.4.19 - - - com.thoughtworks.xstream - xstream-jmh - 1.4.19 - javadoc - provided - - - com.thoughtworks.xstream - xstream-benchmark - 1.4.19 - - - com.thoughtworks.xstream - xstream-benchmark - 1.4.19 - javadoc - provided - - - - commons-io - commons-io - ${version.commons.io} - - - - commons-cli - commons-cli - ${version.commons.cli} - - - - commons-lang - commons-lang - ${version.commons.lang} - - - - cglib - cglib-nodep - ${version.cglib.nodep} - - - javassist - javassist - ${version.javaassist} - - - - dom4j - dom4j - ${version.dom4j} - - - xml-apis - xml-apis - - - - - - org.jdom - jdom - ${version.org.jdom} - - - org.jdom - jdom2 - ${version.org.jdom2} - - - - joda-time - joda-time - ${version.joda-time} - - - - com.megginson.sax - xml-writer - ${version.com.megginson.sax.xml-writer} - - - xml-apis - xml-apis - - - - - - stax - stax - ${version.stax} - - - stax - stax-api - ${version.stax.api} - - - - org.codehaus.woodstox - wstx-asl - ${version.org.codehaus.woodstox.asl} - - - - xom - xom - ${version.xom} - - - xerces - xmlParserAPIs - - - xerces - xercesImpl - - - xalan - xalan - - - jaxen - jaxen - - - - - - io.github.x-stream - mxparser - ${version.io.github.x-stream.mxparser} - - - xpp3 - xpp3_min - ${version.xpp3} - - - net.sf.kxml - kxml2-min - ${version.net.sf.kxml.kxml2} - - - net.sf.kxml - kxml2 - ${version.net.sf.kxml.kxml2} - - - xmlpull - xmlpull - ${version.xmlpull} - - - - org.json - json - ${version.org.json} - - - - org.codehaus.jettison - jettison - ${version.org.codehaus.jettison} - - - - xml-apis - xml-apis - ${version.xml-apis} - - - - xerces - xercesImpl - ${version.xerces.impl} - - - - javax.activation - activation - ${version.javax.activation} - - - javax.annotation - javax.annotation-api - ${version.javax.annotation.api} - - - javax.xml.bind - jaxb-api - ${version.javax.xml.bind.api} - - - com.sun.xml.ws - jaxws-rt - ${version.javax.xml.ws.jaxws.rt} - - - - org.hibernate - hibernate-core - ${version.org.hibernate.core} - - - org.hibernate - hibernate-envers - ${version.org.hibernate.envers} - - - cglib - cglib - - - - - org.hsqldb - hsqldb - ${version.hsqldb} - - - org.slf4j - slf4j-api - ${version.org.slf4j} - runtime - - - org.slf4j - slf4j-simple - ${version.org.slf4j} - runtime - - - - org.openjdk.jmh - jmh-core - ${version.org.openjdk.jmh} - - - org.openjdk.jmh - jmh-generator-annprocess - ${version.org.openjdk.jmh} - provided - - - commons-codec - commons-codec - ${version.commons.codec} - - - com.brsanthu - migbase64 - ${version.com.brsanthu.migbase64} - - - - - junit - junit - ${version.junit} - test - - - jmock - jmock - ${version.jmock} - test - - - - - org.apache.felix - org.apache.felix.framework - ${version.org.apache.felix} - test - - - org.glassfish.hk2.external - javax.inject - ${version.javax.inject} - provided - - - org.ops4j.pax.exam - pax-exam-container-native - ${version.org.ops4j.pax.exam} - test - - - org.ops4j.pax.exam - pax-exam-extender-service - ${version.org.ops4j.pax.exam} - test - - - org.ops4j.pax.exam - pax-exam-inject - ${version.org.ops4j.pax.exam} - test - - - org.ops4j.pax.exam - pax-exam-invoker-junit - ${version.org.ops4j.pax.exam} - test - - - org.ops4j.pax.exam - pax-exam-junit4 - ${version.org.ops4j.pax.exam} - test - - - org.ops4j.pax.exam - pax-exam-link-assembly - ${version.org.ops4j.pax.exam} - test - - - org.ops4j.pax.exam - pax-exam-link-mvn - ${version.org.ops4j.pax.exam} - test - - - - - - ${basedir}/src/java - - - ${basedir}/src/java - - **/*.properties - **/*.xml - - - - ${basedir}/src/test - - - ${basedir}/src/test - - **/*.xml - **/*.xsl - **/*.txt - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${version.plugin.maven.antrun} - - - org.apache.maven.plugins - maven-assembly-plugin - ${version.plugin.maven.assembly} - - - org.apache.maven.plugins - maven-clean-plugin - ${version.plugin.maven.clean} - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.plugin.maven.compiler} - - ${version.java.source} - ${version.java.target} - - - - org.apache.maven.plugins - maven-dependency-plugin - ${version.plugin.maven.dependency} - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.plugin.maven.deploy} - - - org.apache.maven.plugins - maven-eclipse-plugin - - true - [artifactId]-1.4.x - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.plugin.maven.enforcer} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${version.plugin.maven.failsafe} - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.plugin.maven.gpg} - - ${gpg.keyname} - ${gpg.keyname} - - - - org.apache.maven.plugins - maven-install-plugin - ${version.plugin.maven.install} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.plugin.maven.jar} - - - - true - true - - - ${project.info.majorVersion}.${project.info.minorVersion} - BSD-3-Clause - ${version.java.source} - ${version.java.target} - Maven ${maven.version} - ${maven.build.timestamp} - ${os.name} - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.maven.javadoc} - - - attach-javadocs - - jar - - - - - false - ${javadoc.xdoclint} - ${version.java.source} - - ${javadoc.link.javase} - - - - true - true - - - ${project.info.majorVersion}.${project.info.minorVersion} - BSD-3-Clause - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${version.plugin.maven.jxr} - - - org.apache.maven.plugins - maven-release-plugin - ${version.plugin.maven.release} - - forked-path - deploy - true - false - -Pxstream-release - - - - org.apache.maven.plugins - maven-resources-plugin - ${version.plugin.maven.resources} - - - org.apache.maven.plugins - maven-site-plugin - ${version.plugin.maven.site} - - - org.apache.maven.plugins - maven-source-plugin - ${version.plugin.maven.source} - - - attach-sources - package - - jar-no-fork - - - - - - - true - true - - - ${project.info.majorVersion}.${project.info.minorVersion} - 2 - ${project.name} Sources - ${project.artifactId}.sources - ${project.organization.name} Sources - ${project.info.osgiVersion} - BSD-3-Clause - ${project.artifactId};version=${project.info.osgiVersion} - ${version.java.source} - ${version.java.target} - Maven ${maven.version} - ${maven.build.timestamp} - ${os.name} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.plugin.maven.surefire} - - once - true - false - - **/*Test.java - **/*TestSuite.java - - - **/Abstract*Test.java - **/*$*.java - - - - java.awt.headless - true - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.plugin.maven.surefire} - - - org.codehaus.mojo - build-helper-maven-plugin - ${version.plugin.mojo.build-helper} - - - org.codehaus.xsite - xsite-maven-plugin - ${version.plugin.codehaus.xsite} - - - com.thoughtworks.xstream - xstream - 1.4.11.1 - - - - - org.apache.felix - maven-bundle-plugin - ${version.plugin.felix.bundle} - - ${project.build.directory}/OSGi - - <_noee>true - <_nouses>true - ${project.artifactId} - BSD-3-Clause - ${project.info.majorVersion}.${project.info.minorVersion} - - - - false - - - - - - org.eluder.coveralls - coveralls-maven-plugin - ${version.plugin.eluder.coveralls} - - - org.jacoco - jacoco-maven-plugin - ${version.plugin.jacoco} - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - versions - initialize - - maven-version - parse-version - - - project.info - - - - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.codehaus.org/xstream/tags - - - - - - - - ossrh-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2 - - - ossrh-snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - - - - http://github.com/x-stream/xstream - scm:git:ssh://git@github.com/x-stream/xstream.git - scm:git:ssh://git@github.com/x-stream/xstream.git - v-1.4.x - - - - UTF-8 - - 1.5 - 1.6 - 1.5 - 1.5 - [1.4,) - - 1.3 - 2.3.7 - 1.1 - 2.1 - 2.2 - 2.1 - 2.1 - 2.3 - 1.4 - 2.22.0 - 3.0.1 - 2.2 - 2.2 - 2.10 - 2.5 - 2.1 - 2.2 - 2.0-beta-6 - 2.1.2 - 2.4.3 - 1.5 - 4.2.0 - 0.8.1 - - 2.2 - 2.2 - 0.2 - 1.1 - 1.10 - 1.4 - 2.4 - 1.6.1 - 2.2.8 - 1.2.2 - 3.12.1.GA - 1.1.1 - 1.3.2 - 2.4.0 - 2.3.1 - 2.2 - 1.0.1 - 1.6 - 3.8.1 - 2.3.0 - 4.4.1 - 1.2 - 3.2.7 - 4.2.5.Final - ${version.org.hibernate.core} - 1.1.3 - 2.0.5 - 20080701 - 1.21 - 3.5.0 - 1.6.1 - 1.2.0 - 1.0.1 - 2.8.1 - 1.3.04 - 1.1.3.1 - 1.1 - 1.1.4c - - http://docs.oracle.com/javase/8/docs/api/ - permit - - ${surefire.argline} - - - - diff --git a/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom.sha1 b/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom.sha1 deleted file mode 100644 index 49616734d..000000000 --- a/code/arachne/com/thoughtworks/xstream/xstream-parent/1.4.19/xstream-parent-1.4.19.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7b2b9553d4ab5172a924d1a946aaf1d2826f8fd0 \ No newline at end of file diff --git a/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/_remote.repositories b/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/_remote.repositories deleted file mode 100644 index ec6c027dc..000000000 --- a/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:54 EDT 2024 -xstream-1.4.19.pom>central= diff --git a/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom b/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom deleted file mode 100644 index 515e856c0..000000000 --- a/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom +++ /dev/null @@ -1,669 +0,0 @@ - - - 4.0.0 - - com.thoughtworks.xstream - xstream-parent - 1.4.19 - - xstream - jar - XStream Core - - - - dom4j - dom4j - true - - - - org.jdom - jdom - true - - - org.jdom - jdom2 - true - - - - joda-time - joda-time - true - - - - org.codehaus.woodstox - wstx-asl - true - - - - stax - stax - true - - - - stax - stax-api - true - - - - xom - xom - true - - - - io.github.x-stream - mxparser - - - - net.sf.kxml - kxml2-min - true - - - - - - xpp3 - xpp3_min - true - - - - cglib - cglib-nodep - true - - - - org.codehaus.jettison - jettison - true - - - - javax.activation - activation - true - - - javax.xml.bind - jaxb-api - provided - - - - - junit - junit - - - - jmock - jmock - - - - org.json - json - test - - - - com.megginson.sax - xml-writer - test - - - - commons-lang - commons-lang - test - - - - com.sun.xml.ws - jaxws-rt - test - - - javax.xml.ws - jaxws-api - - - com.sun.istack - istack-commons-runtime - - - com.sun.xml.bind - jaxb-impl - - - com.sun.xml.messaging.saaj - saaj-impl - - - com.sun.xml.stream.buffer - streambuffer - - - com.sun.xml.ws - policy - - - com.sun.org.apache.xml.internal - resolver - - - org.glassfish.gmbal - gmbal-api-only - - - org.jvnet - mimepull - - - org.jvnet.staxex - stax-ex - - - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - complete-test-classpath - process-test-resources - - copy - - - target/lib - - - proxytoys - proxytoys - 0.2.1 - - - - - - collect-dependencies - package - - copy-dependencies - - - target/dependencies - runtime - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - **/AbstractAcceptanceTest.* - META-INF/LICENSE - - - - ${project.name} Test - ${project.name} Test - BSD-3-Clause - - - - - - - - - - - - jdk17-ge - - [17,) - - - --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.time=ALL-UNNAMED --add-opens java.base/java.time.chrono=ALL-UNNAMED --add-opens java.base/java.lang.invoke=ALL-UNNAMED --add-opens java.base/java.lang.ref=ALL-UNNAMED --add-opens java.base/java.lang.reflect=ALL-UNNAMED --add-opens java.base/java.text=ALL-UNNAMED --add-opens java.base/javax.security.auth.x500=ALL-UNNAMED --add-opens java.base/sun.util.calendar=ALL-UNNAMED --add-opens java.desktop/java.beans=ALL-UNNAMED --add-opens java.desktop/java.awt=ALL-UNNAMED --add-opens java.desktop/java.awt.font=ALL-UNNAMED --add-opens java.desktop/javax.swing=ALL-UNNAMED --add-opens java.desktop/javax.swing.border=ALL-UNNAMED --add-opens java.desktop/javax.swing.event=ALL-UNNAMED --add-opens java.desktop/javax.swing.table=ALL-UNNAMED --add-opens java.desktop/javax.swing.plaf.basic=ALL-UNNAMED --add-opens java.desktop/javax.swing.plaf.metal=ALL-UNNAMED --add-opens java.desktop/javax.imageio=ALL-UNNAMED --add-opens java.desktop/javax.imageio.spi=ALL-UNNAMED --add-opens java.desktop/sun.swing=ALL-UNNAMED --add-opens java.desktop/sun.swing.table=ALL-UNNAMED --add-opens java.xml/javax.xml.datatype=ALL-UNNAMED --add-opens java.xml/com.sun.xml.internal.stream=ALL-UNNAMED --add-opens java.xml/com.sun.org.apache.xerces.internal.parsers=ALL-UNNAMED --add-opens java.xml/com.sun.org.apache.xerces.internal.util=ALL-UNNAMED - - - - jdk11-ge-jdk16 - - [11,17) - - - --illegal-access=${surefire.illegal.access} - - - - jdk11-ge - - [11,) - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - javax.xml.bind - jaxb-api - ${version.javax.xml.bind.api} - - - - - - - - jdk9-ge-jdk10 - - [9,11) - - - --add-modules java.activation,java.xml.bind --illegal-access=${surefire.illegal.access} - - - - jdk8-ge - - [1.8,) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -XDignore.symbol.file - - - **/Lambda** - **/time/** - **/ISO8601JavaTimeConverter.java - **/annotations/* - **/AnnotationMapper* - **/enums/* - **/EnumMapper* - **/*15.java - **/PathConverter.java - **/Base64*Codec.java - **/Types.java - **/JDom2*.java - - - **/Lambda** - **/*18TypesTest.java - **/*17TypesTest.java - **/*15TypesTest.java - **/FieldDictionaryTest.java - **/annotations/* - **/enums/* - - - - - compile-jdk5 - - ${version.java.5} - ${version.java.5} - - **/Lambda** - **/time/** - **/ISO8601JavaTimeConverter.java - - - **/Lambda** - **/*18TypesTest.java - - - - compile - testCompile - - - - compile-jdk8 - - 1.8 - 1.8 - - - - - compile - testCompile - - - - - - - - - jdk8 - - 1.8 - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.8 - com.thoughtworks.xstream.core.util - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.maven.javadoc} - - com.thoughtworks.xstream.core.util - ${javadoc.xdoclint} - false - 1.8 - - ${javadoc.link.javase} - - - - - - - - jdk7 - - 1.7 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -XDignore.symbol.file - - - **/Lambda** - **/time/** - **/ISO8601JavaTimeConverter.java - **/Base64JavaUtilCodec.java - - - **/Lambda** - **/Base64JavaUtilCodecTest.java - **/*18TypesTest.java - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.7 - com.thoughtworks.xstream.core.util - - - - - - - jdk6 - - 1.6 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -XDignore.symbol.file - - - **/Lambda** - **/extended/PathConverter* - **/time/** - **/ISO8601JavaTimeConverter.java - **/Base64JavaUtilCodec.java - - - **/Lambda** - **/extended/*17Test* - **/Base64JavaUtilCodecTest.java - **/acceptance/Extended17TypesTest* - **/acceptance/*18TypesTest.java - - - - - - - - jdk5 - - 1.5 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -XDignore.symbol.file - - - **/Lambda** - **/extended/PathConverter* - **/time/** - **/ISO8601JavaTimeConverter.java - **/Base64JavaUtilCodec.java - **/Base64JAXBCodec.java - - - **/Lambda** - **/extended/*17Test* - **/Base64JavaUtilCodecTest.java - **/Base64JAXBCodecTest.java - **/acceptance/Extended17TypesTest* - **/acceptance/*18TypesTest.java - - - - - - - - jdk6-ge - - [1.6,) - - - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - - jar - - - - ${project.build.directory}/OSGi/MANIFEST.MF - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.felix - maven-bundle-plugin - - - !com.thoughtworks.xstream.core.util,com.thoughtworks.xstream.*;-noimport:=true - - - - - - - - jdk4 - - 1.4 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - **/Lambda** - **/annotations/* - **/AnnotationMapper* - **/EnumMapper* - **/enums/* - **/time/** - **/ISO8601JavaTimeConverter.java - **/Base64JavaUtilCodec.java - **/Base64JAXBCodec.java - **/basic/StringBuilder* - **/basic/UUID* - **/core/util/Types* - **/reflection/*15* - **/extended/*15* - **/extended/PathConverter* - **/io/xml/JDom2* - - - **/Lambda** - **/annotations/* - **/enums/* - **/extended/*17Test* - **/reflection/SunLimitedUnsafeReflectionProviderTest* - **/reflection/PureJavaReflectionProvider15Test* - **/Base64JavaUtilCodecTest.java - **/Base64JAXBCodecTest.java - **/io/xml/JDom2*Test* - **/acceptance/Basic15TypesTest* - **/acceptance/Concurrent15TypesTest* - **/acceptance/Extended17TypesTest* - **/acceptance/*18TypesTest.java - - - - - - - - xml-apis - xml-apis - - - xerces - xercesImpl - - - - 1.0.1 - - - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.plugin.maven.surefire} - - - org.jacoco - jacoco-maven-plugin - ${version.plugin.jacoco} - - - - report - - - - - - - - - !com.thoughtworks.xstream.core.util,com.thoughtworks.xstream.*;-noimport:=true - - org.xmlpull.mxp1;resolution:=optional, - org.xmlpull.v1;resolution:=optional, - io.github.xstream.mxparser.*;resolution:=optional, - com.ibm.*;resolution:=optional, - com.sun.*;resolution:=optional, - javax.*;resolution:=optional, - org.xml.*;resolution:=optional, - sun.*;resolution:=optional, - * - - - - diff --git a/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom.sha1 b/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom.sha1 deleted file mode 100644 index 6fb2bb79f..000000000 --- a/code/arachne/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d9264e8d44203cb65a3fc8f3b3b73de0c6ddcab1 \ No newline at end of file diff --git a/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom b/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom deleted file mode 100644 index a83378412..000000000 --- a/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom +++ /dev/null @@ -1,654 +0,0 @@ - - 4.0.0 - - - UTF-8 - - false - ${project.basedir}/src/main/java11 - ${project.build.directory}/classes-java11 - - - 0.36.0 - 5.1.1 - 6.0.1 - 5.4.16.Final - 3.27.0-GA - 0.11.4.1 - 2.5.3 - 3.2.5 - 1.5.10 - 0.9.0 - 3.7.7 - 4.13.1 - 2.5.4 - 42.2.20 - [2.17.1,) - 1.7.30 - 1.5 - [2.0.206,) - 4.13.1 - 1.15.1 - - - com.zaxxer - HikariCP - 5.0.1 - bundle - - HikariCP - Ultimate JDBC Connection Pool - https://github.com/brettwooldridge/HikariCP - - - Zaxxer.com - https://github.com/brettwooldridge - - - - scm:git:git@github.com:brettwooldridge/HikariCP.git - scm:git:git@github.com:brettwooldridge/HikariCP.git - git@github.com:brettwooldridge/HikariCP.git - HikariCP-5.0.1 - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Brett Wooldridge - brett.wooldridge@gmail.com - - - - - org.sonatype.oss - oss-parent - 9 - - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.apache.logging.log4j - log4j-api - ${log4j.version} - test - - - org.apache.logging.log4j - log4j-core - ${log4j.version} - test - - - org.testcontainers - postgresql - ${testcontainers.version} - test - - - org.apache.commons - commons-csv - ${commons.csv.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - org.hamcrest - hamcrest-core - - - - - junit - junit - ${junit.version} - test - - - org.javassist - javassist - ${javassist.version} - true - - - io.micrometer - micrometer-core - ${micrometer.version} - true - - - org.postgresql - postgresql - ${postgresql.version} - test - - - org.hibernate - hibernate-core - ${hibernate.version} - provided - true - - - jboss-logging - org.jboss.logging - - - jboss-logging-annotations - org.jboss.logging - - - - - io.dropwizard.metrics - metrics-core - ${metrics.version} - provided - true - - - io.dropwizard.metrics - metrics-healthchecks - ${metrics.version} - provided - true - - - io.prometheus - simpleclient - ${simpleclient.version} - provided - true - - - simple-jndi - simple-jndi - ${jndi.version} - test - - - - - javax.inject - javax.inject - 1 - test - - - org.apache.felix - org.apache.felix.framework - ${felix.version} - test - - - org.ops4j.pax.exam - pax-exam-container-native - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-junit4 - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-link-assembly - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-link-mvn - ${pax.exam.version} - test - - - org.ops4j.pax.url - pax-url-aether - ${pax.url.version} - test - - - org.ops4j.pax.url - pax-url-reference - ${pax.url.version} - test - - - com.h2database - h2 - ${h2.version} - test - - - - - - - target/classes - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - enforce-maven - - enforce - - - - - 3.3.9 - - - - - - - - - maven-dependency-plugin - 2.8 - - - generate-sources - - build-classpath - - - maven.compile.classpath - - - - - - - - org.codehaus.mojo - exec-maven-plugin - 1.6.0 - true - - - compile - - - exec - - - - - java - - -cp - ${project.build.outputDirectory}${path.separator}${maven.compile.classpath} - com.zaxxer.hikari.util.JavassistProxyFactory - - - - - - - io.fabric8 - docker-maven-plugin - ${docker.maven.plugin.fabric8.version} - - default - true - - - - db - postgres:11 - - - password - - - database system is ready to accept connections - - - - DB - yellow - - - - - - - - - - start - pre-integration-test - - build - start - - - - stop - post-integration-test - - stop - - - - - - - org.jacoco - jacoco-maven-plugin - 0.8.2 - - - - - prepare-agent - - - - ${project.build.directory}/coverage-reports/jacoco.exec - - surefireArgLine - - **/com/zaxxer/hikari/util/JavassistProxyFactory* - **/com/zaxxer/hikari/pool/HikariProxy* - **/com/zaxxer/hikari/metrics/** - - - - - - report - test - - report - - - - ${project.build.directory}/coverage-reports/jacoco.exec - - **/com/zaxxer/hikari/pool/HikariProxy* - **/com/zaxxer/hikari/metrics/** - - - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - 3.0.0-M3 - - - - integration-test - verify - - - - - - - org.apache.felix - maven-bundle-plugin - ${felix.bundle.plugin.version} - true - - ${artifact.classifier} - - ${automatic.module.name} - true - HikariCP - - com.zaxxer.hikari, - com.zaxxer.hikari.hibernate, - com.zaxxer.hikari.metrics - - com.zaxxer.hikari.* - {maven-resources} - <_exportcontents> - com.zaxxer.hikari.pool, - com.zaxxer.hikari.util - - - javax.management, - javax.naming, - javax.naming.spi, - javax.sql, - javax.sql.rowset, - javax.sql.rowset.serial, - javax.sql.rowset.spi, - com.codahale.metrics;resolution:=optional, - com.codahale.metrics.health;resolution:=optional, - io.micrometer.core.instrument;resolution:=optional, - org.slf4j;version="[1.6,2)", - org.hibernate;resolution:=optional, - org.hibernate.cfg;resolution:=optional, - org.hibernate.engine.jdbc.connections.spi;resolution:=optional, - org.hibernate.service;resolution:=optional, - org.hibernate.service.spi;resolution:=optional - - ${project.groupId}.${project.artifactId} - * - - - - - - - manifest - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 11 - 11 - -Xlint - - - - - org.apache.maven.plugins - maven-release-plugin - ${maven.release.version} - - true - HikariCP-@{project.version} - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0-M5 - - - ${surefireArgLine} ${sureFireOptions11} - ${sureFireForks11} - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - true - - - - attach-sources - - jar - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.0.1 - - public - - com.zaxxer.hikari.hibernate:com.zaxxer.hikari.metrics.*:com.zaxxer.hikari.pool:com.zaxxer.hikari.util - - true - 1024m - - - - bundle-sources - package - - jar - - - - - - - - - - - Java11 - - [11,) - - - - 2.0.0-alpha1 - true - - - - org.apache.logging.log4j - log4j-slf4j18-impl - ${log4j.version} - test - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - - compile-java11 - - compile - - - 11 - - ${project.basedir}/src/main/java11 - - true - - - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - - felix - - true - - pax.exam.framework - felix - - - - felix - none - - - - org.apache.felix - org.apache.felix.framework - ${felix.version} - test - - - - - diff --git a/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom.sha1 b/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom.sha1 deleted file mode 100644 index eb00a2900..000000000 --- a/code/arachne/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -42ce9e94f101b9c19174b556eeee8da5f03b3f2d \ No newline at end of file diff --git a/code/arachne/com/zaxxer/HikariCP/5.0.1/_remote.repositories b/code/arachne/com/zaxxer/HikariCP/5.0.1/_remote.repositories deleted file mode 100644 index 7f0e4481c..000000000 --- a/code/arachne/com/zaxxer/HikariCP/5.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:53 EDT 2024 -HikariCP-5.0.1.pom>central= diff --git a/code/arachne/commons-beanutils/commons-beanutils/1.9.4/_remote.repositories b/code/arachne/commons-beanutils/commons-beanutils/1.9.4/_remote.repositories deleted file mode 100644 index d1793a73a..000000000 --- a/code/arachne/commons-beanutils/commons-beanutils/1.9.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:20 EDT 2024 -commons-beanutils-1.9.4.pom>central= diff --git a/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom b/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom deleted file mode 100644 index 1a4c70d26..000000000 --- a/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom +++ /dev/null @@ -1,517 +0,0 @@ - - - - - org.apache.commons - commons-parent - 47 - - 4.0.0 - commons-beanutils - commons-beanutils - 1.9.4 - Apache Commons BeanUtils - - 2000 - Apache Commons BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection. - https://commons.apache.org/proper/commons-beanutils/ - - - 1.6 - 1.6 - beanutils - 1.9.4 - BEANUTILS - 12310460 - - - -Xmx50M - - false - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-beanutils - site-content - - 3.0.0 - 8.21 - - 3.8 - - 3.1.10 - - 0.8.2 - - - false - - 0.13.0 - false - - - 1.9.3 - RC2 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - Rob Tompkins - B6E73D84EA4FCC47166087253FAAD2CD5ECBB314 - - - - - - jira - https://issues.apache.org/jira/browse/BEANUTILS - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/beanutils/tags/BEANUTILS_1_9_3_RC3 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/beanutils/tags/BEANUTILS_1_9_3_RC3 - http://svn.apache.org/viewvc/commons/proper/beanutils/tags/BEANUTILS_1_9_3_RC3 - - - - - apache.website - Apache Commons Beanutils Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-beanutils - - - - - - Robert Burrell Donkin - rdonkin - rdonkin@apache.org - The Apache Software Foundation - - - Dion Gillard - dion - dion@apache.org - The Apache Software Foundation - - - Craig McClanahan - craigmcc - craigmcc@apache.org - The Apache Software Foundation - - - Geir Magnusson Jr. - geirm - geirm@apache.org - The Apache Software Foundation - - - Scott Sanders - sanders - sanders@apache.org - The Apache Software Foundation - - - James Strachan - jstrachan - jstrachan@apache.org - The Apache Software Foundation - - - Rodney Waldhoff - rwaldhoff - rwaldhoff@apache.org - The Apache Software Foundation - - - Martin van den Bemt - mvdb - mvdb@apache.org - The Apache Software Foundation - - - Yoav Shapira - yoavs - yoavs@apache.org - The Apache Software Foundation - - - Niall Pemberton - niallp - niallp@apache.org - The Apache Software Foundation - - - Simon Kitching - skitching - skitching@apache.org - The Apache Software Foundation - - - James Carman - jcarman - jcarman@apache.org - The Apache Software Foundation - - - Benedikt Ritter - britter - britter@apache.org - The Apache Software Foundation - - - Tim O'Brien - tobrien - tobrien@apache.org - The Apache Software Foundation - - - David Eric Pugh - epugh - epugh@apache.org - The Apache Software Foundation - - - Rodney Waldhoff - rwaldhoff - rwaldhoff@apache.org - The Apache Software Foundation - - - Morgan James Delagrange - morgand - morgand@apache.org - The Apache Software Foundation - - - John E. Conlon - jconlon - jconlon@apache.org - The Apache Software Foundation - - - Stephen Colebourne - scolebourne - scolebourne@apache.org - The Apache Software Foundation - - - Gary Gregory - ggregory - ggregory@apache.org - http://www.garygregory.com - -5 - The Apache Software Foundation - - - stain - Stian Soiland-Reyes - stain@apache.org - http://orcid.org/0000-0001-9842-9718 - +0 - The Apache Software Foundation - - - chtompki - Rob Tompkins - chtompki@apache.org - The Apache Software Foundation - - - - - - Paul Jack - - - - Stephen Colebourne - - - - Berin Loritsch - - - - Alex Crown - - - - Marcus Zander - - - - Paul Hamamnt - - - - Rune Johannesen - - - - Clebert Suconic - - - - Norm Deane - - - - Ralph Schaer - - - - Chris Audley - - - - Rey François - - - - Gregor Raýman - - - - Jan Sorensen - - - - Eric Pabst - - - - Paulo Gaspar - - - - Michael Smith - - - - George Franciscus - - - - Erik Meade - - - - Tomas Viberg - - - - Yauheny Mikulski - - - - Michael Szlapa - - - - Juozas Baliuka - - - - Tommy Tynjä - - - - Bernhard Seebass - - - - Melloware - - - - - - - commons-logging - commons-logging - 1.2 - - - commons-collections - commons-collections - 3.2.2 - - - commons-collections - commons-collections-testframework - 3.2.1 - test - - - junit - junit - 4.12 - test - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - pertest - - ${surefire.argLine} - - **/*TestCase.java - - - - **/*MemoryTestCase.java - - - - true - - org.apache.commons.logging.impl.LogFactoryImpl - org.apache.commons.logging.impl.SimpleLog - WARN - - - - - - maven-assembly-plugin - - - src/main/assembly/bin.xml - src/main/assembly/src.xml - - gnu - - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - - - javadocs** - release-notes** - - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.6 - - ${basedir}/checkstyle.xml - false - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - - http://docs.oracle.com/javase/1.5.0/docs/api/ - http://commons.apache.org/collections/api-release/ - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - %URL%/%ISSUE% - - - - - - changes-report - - - - - - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - prepare-checkout - - run - - pre-site - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom.sha1 b/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom.sha1 deleted file mode 100644 index 706d19e22..000000000 --- a/code/arachne/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -42e7c39331e1735250b294ce2984d0e434ebc955 \ No newline at end of file diff --git a/code/arachne/commons-codec/commons-codec/1.16.1/_remote.repositories b/code/arachne/commons-codec/commons-codec/1.16.1/_remote.repositories deleted file mode 100644 index 715634b11..000000000 --- a/code/arachne/commons-codec/commons-codec/1.16.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:23 EDT 2024 -commons-codec-1.16.1.pom>central= diff --git a/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom b/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom deleted file mode 100644 index 19002c2af..000000000 --- a/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom +++ /dev/null @@ -1,446 +0,0 @@ - - - - - 4.0.0 - - org.apache.commons - commons-parent - 66 - - commons-codec - commons-codec - 1.16.1 - Apache Commons Codec - 2002 - - The Apache Commons Codec component contains encoder and decoders for - various formats such as Base16, Base32, Base64, digest, and Hexadecimal. In addition to these - widely used encoders and decoders, the codec package also maintains a - collection of phonetic encoding utilities. - - https://commons.apache.org/proper/commons-codec/ - - jira - https://issues.apache.org/jira/browse/CODEC - - - scm:git:https://gitbox.apache.org/repos/asf/commons-codec - scm:git:https://gitbox.apache.org/repos/asf/commons-codec - https://github.com/apache/commons-codec - HEAD - - - - stagingSite - Apache Staging Website - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/commons-${commons.componentid}/ - - - - - Henri Yandell - bayard - bayard@apache.org - - - Tim OBrien - tobrien - tobrien@apache.org - -6 - - - Scott Sanders - sanders - sanders@totalsync.com - - - Rodney Waldhoff - rwaldhoff - rwaldhoff@apache.org - - - Daniel Rall - dlr - dlr@finemaltcoding.com - - - Jon S. Stevens - jon - jon@collab.net - - - ggregory - Gary Gregory - ggregory at apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - https://people.apache.org/~ggregory/img/garydgregory80.png - - - - David Graham - dgraham - dgraham@apache.org - - - Julius Davies - julius - julius@apache.org - http://juliusdavies.ca/ - -8 - - - Thomas Neidhart - tn - tn@apache.org - - - Rob Tompkins - chtompki - chtompki@apache.org - - - Matt Sicker - mattsicker - mattsicker@apache.org - https://musigma.blog/ - - - - - Christopher O'Brien - siege@preoccupied.net - - hex - md5 - architecture - - - - Martin Redington - - Representing xml-rpc - - - - Jeffery Dever - - Representing http-client - - - - Steve Zimmermann - steve.zimmermann@heii.com - - Documentation - - - - Benjamin Walstrum - ben@walstrum.com - - - Oleg Kalnichevski - oleg@ural.ru - - Representing http-client - - - - Dave Dribin - apache@dave.dribin.org - - DigestUtil - - - - Alex Karasulu - aok123 at bellsouth.net - - Submitted Binary class and test - - - - Matthew Inger - mattinger at yahoo.com - - Submitted DIFFERENCE algorithm for Soundex and RefinedSoundex - - - - Jochen Wiedmann - jochen@apache.org - - Base64 code [CODEC-69] - - - - Sebastian Bazley - sebb@apache.org - - Streaming Base64 - - - - Matthew Pocock - turingatemyhamster@gmail.com - - Beider-Morse phonetic matching - - - - Colm Rice - colm_rice at hotmail dot com - - Submitted Match Rating Approach (MRA) phonetic encoder and tests [CODEC-161] - - - - Adam Retter - Evolved Binary - - Base16 Input and Output Streams - - - - - - org.apache.commons - commons-lang3 - 3.14.0 - test - - - commons-io - commons-io - 2.15.1 - test - - - org.hamcrest - hamcrest - 2.2 - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - - 1.8 - 1.8 - codec - org.apache.commons.codec - CODEC - 12310464 - - UTF-8 - UTF-8 - UTF-8 - ${basedir}/src/conf/checkstyle-header.txt - ${basedir}/src/conf/checkstyle.xml - false - - 1.16.1 - 1.16.0 - 1.16.2 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - 2024-02-04T15:10:25Z - - - clean verify apache-rat:check japicmp:cmp checkstyle:check javadoc:javadoc - - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${commons.scm-publish.version} - - - archive** - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${checkstyle.config.file} - false - true - NOTICE.txt,LICENSE.txt,**/pom.properties,**/sha512.properties - - - - - - - - org.apache.rat - apache-rat-plugin - - - src/test/resources/org/apache/commons/codec/bla.tar - src/test/resources/org/apache/commons/codec/bla.tar.xz - src/test/resources/org/apache/commons/codec/empty.bin - src/test/resources/org/apache/commons/codec/small.bin - - - - - - - maven-jar-plugin - - - - - ${commons.module.name} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*AbstractTest.java - **/*PerformanceTest.java - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - - maven-javadoc-plugin - - ${maven.compiler.source} - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.23 - - - - java.nio.ByteBuffer - - - - - - - - - org.apache.rat - apache-rat-plugin - - - src/test/resources/org/apache/commons/codec/bla.tar - src/test/resources/org/apache/commons/codec/bla.tar.xz - src/test/resources/org/apache/commons/codec/empty.bin - src/test/resources/org/apache/commons/codec/small.bin - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd.version} - - ${maven.compiler.target} - true - - ${basedir}/src/conf/pmd.xml - - - - - com.github.spotbugs - spotbugs-maven-plugin - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - TODO - NOPMD - NOTE - - - - - org.codehaus.mojo - javancss-maven-plugin - 2.1 - - - - diff --git a/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom.sha1 b/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom.sha1 deleted file mode 100644 index a536228d9..000000000 --- a/code/arachne/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fdca64157d8fd070e24bd7d4ae9b8851d9ed9c0e \ No newline at end of file diff --git a/code/arachne/commons-collections/commons-collections/3.2.2/_remote.repositories b/code/arachne/commons-collections/commons-collections/3.2.2/_remote.repositories deleted file mode 100644 index 11e36daed..000000000 --- a/code/arachne/commons-collections/commons-collections/3.2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:21 EDT 2024 -commons-collections-3.2.2.pom>central= diff --git a/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom b/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom deleted file mode 100644 index d5e4dba41..000000000 --- a/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom +++ /dev/null @@ -1,454 +0,0 @@ - - - - - org.apache.commons - commons-parent - 39 - - 4.0.0 - commons-collections - commons-collections - 3.2.2 - Apache Commons Collections - - 2001 - Types that extend and augment the Java Collections Framework. - - http://commons.apache.org/collections/ - - - jira - http://issues.apache.org/jira/browse/COLLECTIONS - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/collections/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/collections/trunk - http://svn.apache.org/viewvc/commons/proper/collections/trunk - - - - - Stephen Colebourne - scolebourne - - - - - Morgan Delagrange - morgand - - - - - Matthew Hawthorne - matth - - - - - Geir Magnusson - geirm - - - - - Craig McClanahan - craigmcc - - - - - Phil Steitz - psteitz - - - - - Arun M. Thomas - amamment - - - - - Rodney Waldhoff - rwaldhoff - - - - - Henri Yandell - bayard - - - - - James Carman - jcarman - - - - - Robert Burrell Donkin - rdonkin - - - - - - Rafael U. C. Afonso - - - Max Rydahl Andersen - - - Federico Barbieri - - - Arron Bates - - - Nicola Ken Barozzi - - - Sebastian Bazley - - - Matt Benson - - - Ola Berg - - - Christopher Berry - - - Nathan Beyer - - - Janek Bogucki - - - Chuck Burdick - - - Dave Bryson - - - Julien Buret - - - Jonathan Carlson - - - Ram Chidambaram - - - Steve Clark - - - Eric Crampton - - - Dimiter Dimitrov - - - Peter Donald - - - Steve Downey - - - Rich Dougherty - - - Tom Dunham - - - Stefano Fornari - - - Andrew Freeman - - - Gerhard Froehlich - - - Paul Jack - - - Eric Johnson - - - Kent Johnson - - - Marc Johnson - - - Nissim Karpenstein - - - Shinobu Kawai - - - Mohan Kishore - - - Simon Kitching - - - Thomas Knych - - - Serge Knystautas - - - Peter KoBek - - - Jordan Krey - - - Olaf Krische - - - Guilhem Lavaux - - - Paul Legato - - - David Leppik - - - Berin Loritsch - - - Hendrik Maryns - - - Stefano Mazzocchi - - - Brian McCallister - - - Steven Melzer - - - Leon Messerschmidt - - - Mauricio S. Moura - - - Kasper Nielsen - - - Stanislaw Osinski - - - Alban Peignier - - - Mike Pettypiece - - - Steve Phelps - - - Ilkka Priha - - - Jonas Van Poucke - - - Will Pugh - - - Herve Quiroz - - - Daniel Rall - - - Robert Ribnitz - - - Huw Roberts - - - Henning P. Schmiedehausen - - - Howard Lewis Ship - - - Joe Raysa - - - Thomas Schapitz - - - Jon Schewe - - - Andreas Schlosser - - - Christian Siefkes - - - Michael Smith - - - Stephen Smith - - - Jan Sorensen - - - Jon S. Stevens - - - James Strachan - - - Leo Sutic - - - Chris Tilden - - - Neil O'Toole - - - Jeff Turner - - - Kazuya Ujihara - - - Jeff Varszegi - - - Ralph Wagner - - - David Weinrich - - - Dieter Wimberger - - - Serhiy Yevtushenko - - - Jason van Zyl - - - - - - junit - junit - 3.8.1 - test - - - - - 1.2 - 1.2 - collections - 3.2.2 - RC3 - -bin - COLLECTIONS - 12310465 - - - - src/java - src/test - - - org.apache.maven.plugins - maven-surefire-plugin - - - org/apache/commons/collections/TestAllPackages.java - - - - - maven-antrun-plugin - - - package - - - - - - - - - - - - - run - - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - - - - - - org.apache.rat - apache-rat-plugin - - - data/test/* - maven-eclipse.xml - - - - - - - diff --git a/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom.sha1 b/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom.sha1 deleted file mode 100644 index df2a2156a..000000000 --- a/code/arachne/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -02a5ba7cb070a882d2b7bd4bf5223e8e445c0268 \ No newline at end of file diff --git a/code/arachne/commons-dbutils/commons-dbutils/1.6/_remote.repositories b/code/arachne/commons-dbutils/commons-dbutils/1.6/_remote.repositories deleted file mode 100644 index 8f0ae4eb6..000000000 --- a/code/arachne/commons-dbutils/commons-dbutils/1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -commons-dbutils-1.6.pom>central= diff --git a/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom b/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom deleted file mode 100644 index 43c46ccb7..000000000 --- a/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom +++ /dev/null @@ -1,327 +0,0 @@ - - - - - org.apache.commons - commons-parent - 34 - - 4.0.0 - commons-dbutils - commons-dbutils - 1.6 - Apache Commons DbUtils - - 2002 - The Apache Commons DbUtils package is a set of - Java utility classes for easing JDBC development. - - http://commons.apache.org/proper/commons-dbutils/ - - - jira - http://issues.apache.org/jira/browse/DBUTILS - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/dbutils/tags/DBUTILS_1_6 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/dbutils/tags/DBUTILS_1_6 - http://svn.apache.org/viewvc/commons/proper/dbutils/tags/DBUTILS_1_6 - - - - - Juozas Baliuka - baliuka - baliuka@apache.org - - - Java Developer - - - - Steven Caswell - scaswell - steven@caswell.name - - - Java Developer - - - - Dan Fabulich - dfabulich - dan@fabulich.com - - - Java Developer - - - - David Graham - dgraham - dgraham@apache.org - - - Java Developer - - - - Yoav Shapira - yoavs - yoavs@apache.org - - - Java Developer - - - - William Speirs - wspeirs - wspeirs@apache.org - - Java Developer - - - - Simone Tripodi - simonetripodi - simonetripodi at apache dot org - - - Henri Yandell - bayard - bayard@apache.org - - - Java Developer - - - - Benedikt Ritter - britter - britter@apache.org - - - Java Developer - - - - - - - Péter Bagyinszki - - Java Developer - - - - Alan Canon - - Java Developer - - - - Stefan Fleiter - stefan.fleiter@web.de - - Java Developer - - - - Adkins Kendall - - Java Developer - - - - Markus Khouri - mkhouri.list@gmail.com - - Documentation - - - - Uli Kleeberger - ukleeberger@web.de - - Java Developer - - - - Piotr Lakomy - piotrl@cft-inc.net - - Java Developer - - - - Corby Page - - Java Developer - - - - Michael Schuerig - michael@schuerig.de - - Java Developer - - - - Norris Shelton - norrisshelton@yahoo.com - - Java Developer - - - - Stevo Slavic - sslavic at gmail dot com - - - - - - junit - junit - 4.11 - test - - - org.mockito - mockito-core - 1.9.5 - test - - - org.hamcrest - hamcrest-all - 1.3 - test - - - - - - - apache.website - Apache Commons Site - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid} - - - - - 1.6 - 1.6 - dbutils - 1.6 - RC1 - DBUTILS - 12310470 - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/BaseTestCase.java - - - - - maven-assembly-plugin - - - src/main/assembly/bin.xml - src/main/assembly/src.xml - - gnu - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - %URL%/%ISSUE% - - - - - changes-report - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - ${basedir}/checkstyle.xml - false - ${basedir}/license-header.txt - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.4 - - Normal - Default - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.1 - - ${maven.compiler.source} - - ${basedir}/pmd-ruleset.xml - - - - - - - - rc - - - - apache.website - Apache Commons Release Candidate Staging Site - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site - - - - - - diff --git a/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom.sha1 b/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom.sha1 deleted file mode 100644 index a4537d405..000000000 --- a/code/arachne/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -34c8bfacc732c3ace443e62f515e42d45cd23d7e \ No newline at end of file diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.3.1/_remote.repositories b/code/arachne/commons-fileupload/commons-fileupload/1.3.1/_remote.repositories deleted file mode 100644 index 09cb2c0b2..000000000 --- a/code/arachne/commons-fileupload/commons-fileupload/1.3.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:15 EDT 2024 -commons-fileupload-1.3.1.pom>central= diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom b/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom deleted file mode 100644 index 522842306..000000000 --- a/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom +++ /dev/null @@ -1,298 +0,0 @@ - - - - 4.0.0 - - - org.apache.commons - commons-parent - 32 - - - commons-fileupload - commons-fileupload - 1.3.1 - - Apache Commons FileUpload - - The Apache Commons FileUpload component provides a simple yet flexible means of adding support for multipart - file upload functionality to servlets and web applications. - - http://commons.apache.org/proper/commons-fileupload/ - 2002 - - - - Martin Cooper - martinc - martinc@apache.org - Yahoo! - - - dIon Gillard - dion - dion@apache.org - Multitask Consulting - - - John McNally - jmcnally - jmcnally@collab.net - CollabNet - - - Daniel Rall - dlr - dlr@finemaltcoding.com - CollabNet - - - Jason van Zyl - jvanzyl - jason@zenplex.com - Zenplex - - - Robert Burrell Donkin - rdonkin - rdonkin@apache.org - - - - Sean C. Sullivan - sullis - sean |at| seansullivan |dot| com - - - - Jochen Wiedmann - jochen - jochen.wiedmann@gmail.com - - - - Simone Tripodi - simonetripodi - simonetripodi@apache.org - Adobe - - - Gary Gregory - ggregory - ggregory@apache.org - - - - - - - Aaron Freeman - aaron@sendthisfile.com - - - Daniel Fabian - dfabian@google.com - - - Jörg Heinicke - joerg.heinicke@gmx.de - - - Stepan Koltsov - yozh@mx1.ru - - - Michael Macaluso - michael.public@wavecorp.com - - - Amichai Rothman - amichai2@amichais.net - - - Alexander Sova - bird@noir.crocodile.org - - - Paul Spurr - pspurr@gmail.com - - - Thomas Vandahl - tv@apache.org - - - Henry Yandell - bayard@apache.org - - - Jan Novotný - novotnaci@gmail.com - - - frank - mailsurfie@gmail.com - - - Rafal Krzewski - Rafal.Krzewski@e-point.pl - - - Sean Legassick - sean@informage.net - - - Oleg Kalnichevski - oleg@ural.ru - - - David Sean Taylor - taylor@apache.org - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/fileupload/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk - http://svn.apache.org/viewvc/commons/proper/fileupload/trunk - - - jira - http://issues.apache.org/jira/browse/FILEUPLOAD - - - - 1.5 - 1.5 - ISO-8859-1 - fileupload - 1.3.1 - RC1 - FILEUPLOAD - 12310476 - !org.apache.commons.fileupload.util.mime,org.apache.commons.*;version=${project.version};-noimport:=true - !javax.portlet,* - javax.portlet - - - - - junit - junit - 4.11 - test - - - javax.servlet - servlet-api - 2.4 - provided - - - portlet-api - portlet-api - 1.0 - provided - - - commons-io - commons-io - 2.2 - - - - - - - maven-assembly-plugin - - - ${basedir}/src/main/assembly/bin.xml - ${basedir}/src/main/assembly/src.xml - - gnu - - - - maven-release-plugin - - clean site verify - deploy - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - %URL%/../%ISSUE% - - - - - changes-report - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.10 - - ${basedir}/src/checkstyle/fileupload_checks.xml - ${basedir}/src/checkstyle/checkstyle-suppressions.xml - false - ${basedir}/src/checkstyle/license-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.7.1 - - ${maven.compiler.target} - - ${basedir}/src/checkstyle/fileupload_basic.xml - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - - - commons-fileupload - commons-fileupload - 1.3 - - - - - - - - diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom.sha1 b/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom.sha1 deleted file mode 100644 index 30b9b6d91..000000000 --- a/code/arachne/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -909928bd37f1bf2accb0ec2c37252a540671b332 \ No newline at end of file diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.5/_remote.repositories b/code/arachne/commons-fileupload/commons-fileupload/1.5/_remote.repositories deleted file mode 100644 index 1a002c663..000000000 --- a/code/arachne/commons-fileupload/commons-fileupload/1.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -commons-fileupload-1.5.pom>central= diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom b/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom deleted file mode 100644 index 47ef39350..000000000 --- a/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom +++ /dev/null @@ -1,457 +0,0 @@ - - - - 4.0.0 - - - org.apache.commons - commons-parent - 56 - - - commons-fileupload - commons-fileupload - 1.5 - - Apache Commons FileUpload - - The Apache Commons FileUpload component provides a simple yet flexible means of adding support for multipart - file upload functionality to servlets and web applications. - - https://commons.apache.org/proper/commons-fileupload/ - 2002 - - - - Martin Cooper - martinc - martinc@apache.org - Yahoo! - - - dIon Gillard - dion - dion@apache.org - Multitask Consulting - - - John McNally - jmcnally - jmcnally@collab.net - CollabNet - - - Daniel Rall - dlr - dlr@finemaltcoding.com - CollabNet - - - Jason van Zyl - jvanzyl - jason@zenplex.com - Zenplex - - - Robert Burrell Donkin - rdonkin - rdonkin@apache.org - - - - Sean C. Sullivan - sullis - sean |at| seansullivan |dot| com - - - - Jochen Wiedmann - jochen - jochen.wiedmann@gmail.com - - - - Simone Tripodi - simonetripodi - simonetripodi@apache.org - Adobe - - - Gary Gregory - ggregory - ggregory@apache.org - - - - Rob Tompkins - chtompki - chtompki@apache.org - - - - - - Aaron Freeman - aaron@sendthisfile.com - - - Daniel Fabian - dfabian@google.com - - - Jörg Heinicke - joerg.heinicke@gmx.de - - - Stepan Koltsov - yozh@mx1.ru - - - Michael Macaluso - michael.public@wavecorp.com - - - Amichai Rothman - amichai2@amichais.net - - - Alexander Sova - bird@noir.crocodile.org - - - Paul Spurr - pspurr@gmail.com - - - Thomas Vandahl - tv@apache.org - - - Henry Yandell - bayard@apache.org - - - Jan Novotný - novotnaci@gmail.com - - - frank - mailsurfie@gmail.com - - - maxxedev - maxxedev@gmail.com - - - Rafal Krzewski - Rafal.Krzewski@e-point.pl - - - Sean Legassick - sean@informage.net - - - Oleg Kalnichevski - oleg@ural.ru - - - David Sean Taylor - taylor@apache.org - - - fangwentong - fangwentong2012@gmail.com - - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-fileupload.git - scm:git:https://gitbox.apache.org/repos/asf/commons-fileupload.git - https://gitbox.apache.org/repos/asf?p=commons-fileupload.git - commons-fileupload-1.5-RC1 - - - jira - https://issues.apache.org/jira/browse/FILEUPLOAD - - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-fileupload/ - - - - - 1.6 - 1.6 - fileupload - org.apache.commons.fileupload - 1.5 - (requires Java ${maven.compiler.target} or later) - FILEUPLOAD - 12310476 - fileupload - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-fileupload - site-content - !org.apache.commons.fileupload.util.mime,org.apache.commons.*;version=${project.version};-noimport:=true - !javax.portlet,* - javax.portlet - false - - - 1.4 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - Rob Tompkins - B6E73D84EA4FCC47166087253FAAD2CD5ECBB314 - - - - - junit - junit - 4.13.2 - test - - - javax.servlet - servlet-api - 2.4 - provided - - - portlet-api - portlet-api - 1.0 - provided - - - commons-io - commons-io - 2.11.0 - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - validate-main - validate - - ${basedir}/src/checkstyle/fileupload_checks.xml - ${basedir}/src/checkstyle/checkstyle-suppressions.xml - false - false - true - true - false - - - checkstyle - - - - - - maven-assembly-plugin - - - ${basedir}/src/main/assembly/bin.xml - ${basedir}/src/main/assembly/src.xml - - gnu - - - - - - - org.apache.rat - apache-rat-plugin - - - site-content/** - src/site/resources/download_lang.cgi - src/checkstyle/license-header.txt - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.apache.maven.plugins - maven-antrun-plugin - [1.8,) - - run - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - [1.10,) - - parse-version - - - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${basedir}/src/checkstyle/fileupload_checks.xml - ${basedir}/src/checkstyle/checkstyle-suppressions.xml - false - false - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - %URL%/../%ISSUE% - - - - - changes-report - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${basedir}/src/checkstyle/fileupload_checks.xml - ${basedir}/src/checkstyle/checkstyle-suppressions.xml - false - false - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - org.apache.maven.plugins - maven-pmd-plugin - - ${maven.compiler.target} - - ${basedir}/src/checkstyle/fileupload_basic.xml - - - - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - prepare-checkout - pre-site - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - java9 - - 9 - - - - true - - - - diff --git a/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom.sha1 b/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom.sha1 deleted file mode 100644 index 95d5f33bd..000000000 --- a/code/arachne/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a1c27474e1b308025e14e67b31be901859deaa3c \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/1.3.2/_remote.repositories b/code/arachne/commons-io/commons-io/1.3.2/_remote.repositories deleted file mode 100644 index b8c2a3985..000000000 --- a/code/arachne/commons-io/commons-io/1.3.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -commons-io-1.3.2.pom>central= diff --git a/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom b/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom deleted file mode 100644 index b56e64f59..000000000 --- a/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom +++ /dev/null @@ -1,318 +0,0 @@ - - - commons-parent - org.apache.commons - 3 - - 4.0.0 - commons-io - commons-io - Commons IO - 1.3.2 - Commons-IO contains utility classes, stream implementations, file filters, and endian classes. - http://jakarta.apache.org/commons/io/ - - jira - http://issues.apache.org/jira/browse/IO - - 2002 - - - sanders - Scott Sanders - sanders@apache.org - - - Java Developer - - - - dion - dIon Gillard - dion@apache.org - - - Java Developer - - - - nicolaken - Nicola Ken Barozzi - nicolaken@apache.org - - - Java Developer - - - - bayard - Henri Yandell - bayard@apache.org - - - Java Developer - - - - scolebourne - Stephen Colebourne - - - Java Developer - - 0 - - - jeremias - Jeremias Maerki - jeremias@apache.org - - - Java Developer - - +1 - - - matth - Matthew Hawthorne - matth@apache.org - - - Java Developer - - - - martinc - Martin Cooper - martinc@apache.org - - - Java Developer - - - - roxspring - Rob Oxspring - roxspring@apache.org - - - Java Developer - - - - jochen - Jochen Wiedmann - jochen.wiedmann@gmail.com - - - - - Rahul Akolkar - - - Jason Anderson - - - Nathan Beyer - - - Emmanuel Bourg - - - Chris Eldredge - - - Magnus Grimsell - - - Jim Harrington - - - Thomas Ledoux - - - Andy Lehane - - - Marcelo Liberato - - - Alban Peignier - alban.peignier at free.fr - - - Niall Pemberton - - - Ian Springer - - - Masato Tezuka - - - James Urie - - - Frank W. Zammetti - - - - scm:svn:scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk - scm:svn:scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk - http://svn.apache.org/viewvc/jakarta/commons/proper/io/trunk - - - src/java - src/test - - - maven-surefire-plugin - - - **/*Test* - - - **/*AbstractTestCase* - **/AllIOTestSuite* - **/PackageTestSuite* - **/testtools/** - **/*$* - - - - - maven-assembly-plugin - - - src/main/assembly/bin.xml - src/main/assembly/src.xml - - gnu - - - - - - - release - - - - maven-site-plugin - - - package - - site - - - - - - maven-antrun-plugin - - - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - - - maven-assembly-plugin - - - package - - attached - - - - - - - - - rc - - - - maven-site-plugin - - - package - - site - - - - - - maven-assembly-plugin - - - package - - attached - - - - - - - - - - - junit - junit - 3.8.1 - test - - - - - - maven-changes-plugin - - %URL%/../%ISSUE% - - - - - changes-report - jira-report - - - - - - - - deployed - - \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 b/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 deleted file mode 100644 index 56b15539b..000000000 --- a/code/arachne/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6e24d777140826c244c3c3fd3afdd4ffe6e6159f \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.11.0/_remote.repositories b/code/arachne/commons-io/commons-io/2.11.0/_remote.repositories deleted file mode 100644 index 162db0b8f..000000000 --- a/code/arachne/commons-io/commons-io/2.11.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -commons-io-2.11.0.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom b/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom deleted file mode 100644 index d3372ca85..000000000 --- a/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom +++ /dev/null @@ -1,601 +0,0 @@ - - - - - org.apache.commons - commons-parent - 52 - - 4.0.0 - commons-io - commons-io - 2.11.0 - Apache Commons IO - - 2002 - -The Apache Commons IO library contains utility classes, stream implementations, file filters, -file comparators, endian transformation classes, and much more. - - - https://commons.apache.org/proper/commons-io/ - - - jira - https://issues.apache.org/jira/browse/IO - - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/commons-io.git - scm:git:https://gitbox.apache.org/repos/asf/commons-io.git - https://gitbox.apache.org/repos/asf?p=commons-io.git - rel/commons-io-2.11.0 - - - - - Scott Sanders - sanders - sanders@apache.org - - - Java Developer - - - - dIon Gillard - - dion - dion@apache.org - - - Java Developer - - - - Nicola Ken Barozzi - nicolaken - nicolaken@apache.org - - - Java Developer - - - - Henri Yandell - bayard - bayard@apache.org - - - Java Developer - - - - Stephen Colebourne - scolebourne - - - Java Developer - - 0 - - - Jeremias Maerki - jeremias - jeremias@apache.org - - - Java Developer - - +1 - - - Matthew Hawthorne - matth - matth@apache.org - - - Java Developer - - - - Martin Cooper - martinc - martinc@apache.org - - - Java Developer - - - - Rob Oxspring - roxspring - roxspring@apache.org - - - Java Developer - - - - Jochen Wiedmann - jochen - jochen.wiedmann@gmail.com - - - Niall Pemberton - niallp - - Java Developer - - - - Jukka Zitting - jukka - - Java Developer - - - - ggregory - Gary Gregory - ggregory at apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - https://people.apache.org/~ggregory/img/garydgregory80.png - - - - Kristian Rosenvold - krosenvold - krosenvold@apache.org - +1 - - - - - - Rahul Akolkar - - - Jason Anderson - - - Nathan Beyer - - - Emmanuel Bourg - - - Chris Eldredge - - - Magnus Grimsell - - - Jim Harrington - - - Thomas Ledoux - - - Andy Lehane - - - Marcelo Liberato - - - Alban Peignier - alban.peignier at free.fr - - - Adam Retter - Evolved Binary - - - Ian Springer - - - Dominik Stadler - - - Masato Tezuka - - - James Urie - - - Frank W. Zammetti - - - - - - - org.junit - junit-bom - 5.7.2 - pom - import - - - - - - - org.junit.jupiter - junit-jupiter - test - - - org.junit-pioneer - junit-pioneer - 1.4.2 - test - - - org.mockito - mockito-inline - 3.11.2 - test - - - com.google.jimfs - jimfs - 1.2 - test - - - org.apache.commons - commons-lang3 - 3.12.0 - test - - - org.openjdk.jmh - jmh-core - ${jmh.version} - test - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh.version} - test - - - - - 1.8 - 1.8 - io - org.apache.commons.io - RC1 - 2.10.0 - 2.11.0 - (requires Java 8) - IO - 12310477 - - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output;version=1.4.9999;-noimport:=true, - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output; - org.apache.commons.io.*;version=${project.version};-noimport:=true - - - - sun.nio.ch;resolution:=optional, - sun.misc;resolution:=optional, - * - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ - site-content - 3.1.2 - 0.8.7 - 3.0.0-M5 - 0.15.3 - 4.2.3 - 4.3.0 - 1.32 - false - ${env.JACOCO_SKIP} - true - Gary Gregory - 86fdc7e2a11262cb - - - - - clean package apache-rat:check japicmp:cmp checkstyle:check javadoc:javadoc - - - - org.apache.rat - apache-rat-plugin - 0.13 - - - src/test/resources/**/*.bin - src/test/resources/dir-equals-tests/** - test/** - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstyle.plugin.version} - - ${basedir}/checkstyle.xml - false - - - - com.puppycrawl.tools - checkstyle - 8.44 - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - enforce-maven - - enforce - - - - - 3.0.5 - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - ${commons.module.name} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - xerces:xercesImpl - - 1 - false - - ${argLine} -Xmx25M - - - **/*Test*.class - - - **/*AbstractTestCase* - **/testtools/** - - **/*$* - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.plugin.version} - - - com.github.spotbugs - spotbugs - ${spotbugs.impl.version} - - - - ${basedir}/spotbugs-exclude-filter.xml - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.plugin.version} - - ${basedir}/spotbugs-exclude-filter.xml - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 3.0.0 - - - prepare-checkout - pre-site - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - java9+ - - [9,) - - - - true - - - - benchmark - - true - org.apache - - - - - org.codehaus.mojo - exec-maven-plugin - 3.0.0 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - diff --git a/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom.sha1 b/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom.sha1 deleted file mode 100644 index 7049ab8d5..000000000 --- a/code/arachne/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3fe5d6ebed1afb72c3e8c166dba0b0e00fdd1f16 \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.15.1/_remote.repositories b/code/arachne/commons-io/commons-io/2.15.1/_remote.repositories deleted file mode 100644 index 6e6fd6bcf..000000000 --- a/code/arachne/commons-io/commons-io/2.15.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:14 EDT 2024 -commons-io-2.15.1.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom b/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom deleted file mode 100644 index d43ebd2d5..000000000 --- a/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom +++ /dev/null @@ -1,603 +0,0 @@ - - - - - org.apache.commons - commons-parent - 65 - - 4.0.0 - commons-io - commons-io - 2.15.1 - Apache Commons IO - - 2002 - -The Apache Commons IO library contains utility classes, stream implementations, file filters, -file comparators, endian transformation classes, and much more. - - - https://commons.apache.org/proper/commons-io/ - - - jira - https://issues.apache.org/jira/browse/IO - - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/commons-io.git - scm:git:https://gitbox.apache.org/repos/asf/commons-io.git - https://gitbox.apache.org/repos/asf?p=commons-io.git - rel/commons-io-2.15.1 - - - - - Scott Sanders - sanders - sanders@apache.org - - - Java Developer - - - - dIon Gillard - - dion - dion@apache.org - - - Java Developer - - - - Nicola Ken Barozzi - nicolaken - nicolaken@apache.org - - - Java Developer - - - - Henri Yandell - bayard - bayard@apache.org - - - Java Developer - - - - Stephen Colebourne - scolebourne - - - Java Developer - - 0 - - - Jeremias Maerki - jeremias - jeremias@apache.org - - - Java Developer - - +1 - - - Matthew Hawthorne - matth - matth@apache.org - - - Java Developer - - - - Martin Cooper - martinc - martinc@apache.org - - - Java Developer - - - - Rob Oxspring - roxspring - roxspring@apache.org - - - Java Developer - - - - Jochen Wiedmann - jochen - jochen.wiedmann@gmail.com - - - Niall Pemberton - niallp - - Java Developer - - - - Jukka Zitting - jukka - - Java Developer - - - - ggregory - Gary Gregory - ggregory at apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - https://people.apache.org/~ggregory/img/garydgregory80.png - - - - Kristian Rosenvold - krosenvold - krosenvold@apache.org - +1 - - - - - - Rahul Akolkar - - - Jason Anderson - - - Nathan Beyer - - - Emmanuel Bourg - - - Chris Eldredge - - - Magnus Grimsell - - - Jim Harrington - - - Thomas Ledoux - - - Andy Lehane - - - Marcelo Liberato - - - Alban Peignier - alban.peignier at free.fr - - - Adam Retter - Evolved Binary - - - Ian Springer - - - Dominik Stadler - - - Masato Tezuka - - - James Urie - - - Frank W. Zammetti - - - Martin Grigorov - mgrigorov@apache.org - - - Arturo Bernal - - - - - - org.junit.jupiter - junit-jupiter - test - - - org.junit-pioneer - junit-pioneer - 1.9.1 - test - - - - net.bytebuddy - byte-buddy - ${commons.bytebuddy.version} - test - - - - net.bytebuddy - byte-buddy-agent - ${commons.bytebuddy.version} - test - - - org.mockito - mockito-inline - 4.11.0 - test - - - com.google.jimfs - jimfs - 1.3.0 - test - - - org.apache.commons - commons-lang3 - 3.14.0 - test - - - commons-codec - commons-codec - 1.16.0 - test - - - org.openjdk.jmh - jmh-core - ${jmh.version} - test - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh.version} - test - - - - - 1.8 - 1.8 - io - org.apache.commons.io - RC1 - 2.15.0 - 2.15.1 - 2.15.2 - (requires Java 8) - IO - 12310477 - - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output;version=1.4.9999;-noimport:=true, - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output; - org.apache.commons.io.*;version=${project.version};-noimport:=true - - - - sun.nio.ch;resolution:=optional, - sun.misc;resolution:=optional, - * - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ - site-content - ${commons.javadoc8.java.link} - 1.37 - 1.14.10 - false - ${env.JACOCO_SKIP} - true - - - - - clean verify apache-rat:check japicmp:cmp checkstyle:check spotbugs:check pmd:check javadoc:javadoc - - - - org.apache.rat - apache-rat-plugin - 0.15 - - - src/test/resources/**/*.bin - src/test/resources/dir-equals-tests/** - test/** - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${basedir}/src/conf/checkstyle.xml - ${basedir}/src/conf/checkstyle-suppressions.xml - false - true - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - ${commons.module.name} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - xerces:xercesImpl - - 1 - false - - - ${argLine} -Xmx25M - - - **/*Test*.class - - - **/*AbstractTestCase* - **/testtools/** - - **/*$* - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - com.github.spotbugs - spotbugs-maven-plugin - - ${basedir}/src/conf/spotbugs-exclude-filter.xml - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - - org.apache.commons.io.StreamIterator - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - src/conf/maven-pmd-plugin.xml - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - com.github.spotbugs - spotbugs-maven-plugin - - ${basedir}/src/conf/spotbugs-exclude-filter.xml - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - - org.apache.commons.io.StreamIterator - - - - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 3.1.0 - - - prepare-checkout - pre-site - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - java9-compile - - [9,) - - - - true - 8 - - - - benchmark - - true - org.apache - - - - - org.codehaus.mojo - exec-maven-plugin - 3.1.1 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - diff --git a/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom.sha1 b/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom.sha1 deleted file mode 100644 index c3b9841d0..000000000 --- a/code/arachne/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3ec366b41f9e6c0f3f2c413299a0186ad6d093c4 \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.2/_remote.repositories b/code/arachne/commons-io/commons-io/2.2/_remote.repositories deleted file mode 100644 index 4aa0f937f..000000000 --- a/code/arachne/commons-io/commons-io/2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:15 EDT 2024 -commons-io-2.2.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom b/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom deleted file mode 100644 index 83925b626..000000000 --- a/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom +++ /dev/null @@ -1,346 +0,0 @@ - - - - - org.apache.commons - commons-parent - 24 - - 4.0.0 - commons-io - commons-io - 2.2 - Commons IO - - 2002 - -The Commons IO library contains utility classes, stream implementations, file filters, -file comparators, endian transformation classes, and much more. - - - http://commons.apache.org/io/ - - - jira - http://issues.apache.org/jira/browse/IO - - - - - apache.website - Apache Commons IO Site - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid} - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/io/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/io/trunk - http://svn.apache.org/viewvc/commons/proper/io/trunk - - - - - Scott Sanders - sanders - sanders@apache.org - - - Java Developer - - - - dIon Gillard - dion - dion@apache.org - - - Java Developer - - - - Nicola Ken Barozzi - nicolaken - nicolaken@apache.org - - - Java Developer - - - - Henri Yandell - bayard - bayard@apache.org - - - Java Developer - - - - Stephen Colebourne - scolebourne - - - Java Developer - - 0 - - - Jeremias Maerki - jeremias - jeremias@apache.org - - - Java Developer - - +1 - - - Matthew Hawthorne - matth - matth@apache.org - - - Java Developer - - - - Martin Cooper - martinc - martinc@apache.org - - - Java Developer - - - - Rob Oxspring - roxspring - roxspring@apache.org - - - Java Developer - - - - Jochen Wiedmann - jochen - jochen.wiedmann@gmail.com - - - Niall Pemberton - niallp - - Java Developer - - - - Jukka Zitting - jukka - - Java Developer - - - - Gary Gregory - ggregory - ggregory@apache.org - http://www.garygregory.com - -5 - - - - - - Rahul Akolkar - - - Jason Anderson - - - Nathan Beyer - - - Emmanuel Bourg - - - Chris Eldredge - - - Magnus Grimsell - - - Jim Harrington - - - Thomas Ledoux - - - Andy Lehane - - - Marcelo Liberato - - - Alban Peignier - alban.peignier at free.fr - - - Ian Springer - - - Masato Tezuka - - - James Urie - - - Frank W. Zammetti - - - - - - junit - junit - 4.10 - test - - - - - 1.5 - 1.5 - io - 2.2 - RC1 - (requires JDK 1.5+) - 1.4 - (requires JDK 1.3+) - IO - 12310477 - - 2.4 - - - - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - pertest - - -Xmx25M - - - **/*Test*.class - - - **/*AbstractTestCase* - **/testtools/** - - - **/*$* - - - - - maven-assembly-plugin - - - src/main/assembly/bin.xml - src/main/assembly/src.xml - - gnu - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - ${basedir}/checkstyle.xml - false - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.4.0 - - Normal - Default - ${basedir}/findbugs-exclude-filter.xml - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Key DESC,Type,Fix Version DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - 300 - - - - - changes-report - jira-report - - - - - - org.apache.rat - apache-rat-plugin - - - src/test/resources/**/*.bin - .pmd - - - - - - diff --git a/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom.sha1 b/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom.sha1 deleted file mode 100644 index 856e74c86..000000000 --- a/code/arachne/commons-io/commons-io/2.2/commons-io-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1ef24807b2eaf9d51b5587710878146d630cc855 \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.4/_remote.repositories b/code/arachne/commons-io/commons-io/2.4/_remote.repositories deleted file mode 100644 index c498e8fc5..000000000 --- a/code/arachne/commons-io/commons-io/2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:14 EDT 2024 -commons-io-2.4.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom b/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom deleted file mode 100644 index 99bdc7f87..000000000 --- a/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom +++ /dev/null @@ -1,323 +0,0 @@ - - - - - org.apache.commons - commons-parent - 25 - - 4.0.0 - commons-io - commons-io - 2.4 - Commons IO - - 2002 - -The Commons IO library contains utility classes, stream implementations, file filters, -file comparators, endian transformation classes, and much more. - - - http://commons.apache.org/io/ - - - jira - http://issues.apache.org/jira/browse/IO - - - - - apache.website - Apache Commons IO Site - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid} - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/io/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/io/trunk - http://svn.apache.org/viewvc/commons/proper/io/trunk - - - - - Scott Sanders - sanders - sanders@apache.org - - - Java Developer - - - - dIon Gillard - dion - dion@apache.org - - - Java Developer - - - - Nicola Ken Barozzi - nicolaken - nicolaken@apache.org - - - Java Developer - - - - Henri Yandell - bayard - bayard@apache.org - - - Java Developer - - - - Stephen Colebourne - scolebourne - - - Java Developer - - 0 - - - Jeremias Maerki - jeremias - jeremias@apache.org - - - Java Developer - - +1 - - - Matthew Hawthorne - matth - matth@apache.org - - - Java Developer - - - - Martin Cooper - martinc - martinc@apache.org - - - Java Developer - - - - Rob Oxspring - roxspring - roxspring@apache.org - - - Java Developer - - - - Jochen Wiedmann - jochen - jochen.wiedmann@gmail.com - - - Niall Pemberton - niallp - - Java Developer - - - - Jukka Zitting - jukka - - Java Developer - - - - Gary Gregory - ggregory - ggregory@apache.org - http://www.garygregory.com - -5 - - - - - - Rahul Akolkar - - - Jason Anderson - - - Nathan Beyer - - - Emmanuel Bourg - - - Chris Eldredge - - - Magnus Grimsell - - - Jim Harrington - - - Thomas Ledoux - - - Andy Lehane - - - Marcelo Liberato - - - Alban Peignier - alban.peignier at free.fr - - - Ian Springer - - - Masato Tezuka - - - James Urie - - - Frank W. Zammetti - - - - - - junit - junit - 4.10 - test - - - - - 1.6 - 1.6 - io - RC1 - 2.4 - (requires JDK 1.6+) - 2.2 - (requires JDK 1.5+) - IO - 12310477 - - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output;version=1.4.9999;-noimport:=true, - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output; - org.apache.commons.io.*;version=${project.version};-noimport:=true - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - pertest - - -Xmx25M - - - **/*Test*.class - - - **/*AbstractTestCase* - **/testtools/** - - **/*$* - - - - - maven-assembly-plugin - - - src/main/assembly/bin.xml - src/main/assembly/src.xml - - gnu - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - ${basedir}/checkstyle.xml - false - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.4.0 - - Normal - Default - ${basedir}/findbugs-exclude-filter.xml - - - - org.apache.rat - apache-rat-plugin - - - src/test/resources/**/*.bin - .pmd - - - - - - diff --git a/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom.sha1 b/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom.sha1 deleted file mode 100644 index 8d01778d5..000000000 --- a/code/arachne/commons-io/commons-io/2.4/commons-io-2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9ece23effe8bce3904f3797a76b1ba6ab681e1b9 \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.5/_remote.repositories b/code/arachne/commons-io/commons-io/2.5/_remote.repositories deleted file mode 100644 index eb8e21f9d..000000000 --- a/code/arachne/commons-io/commons-io/2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:09 EDT 2024 -commons-io-2.5.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom b/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom deleted file mode 100644 index 8ab814911..000000000 --- a/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom +++ /dev/null @@ -1,422 +0,0 @@ - - - - - org.apache.commons - commons-parent - 39 - - 4.0.0 - commons-io - commons-io - 2.5 - Apache Commons IO - - 2002 - -The Apache Commons IO library contains utility classes, stream implementations, file filters, -file comparators, endian transformation classes, and much more. - - - http://commons.apache.org/proper/commons-io/ - - - jira - http://issues.apache.org/jira/browse/IO - - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-i/ - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/io/tags/commons-io-2.5 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/io/tags/commons-io-2.5 - http://svn.apache.org/viewvc/commons/proper/io/tags/commons-io-2.5 - - - - - Scott Sanders - sanders - sanders@apache.org - - - Java Developer - - - - dIon Gillard - - dion - dion@apache.org - - - Java Developer - - - - Nicola Ken Barozzi - nicolaken - nicolaken@apache.org - - - Java Developer - - - - Henri Yandell - bayard - bayard@apache.org - - - Java Developer - - - - Stephen Colebourne - scolebourne - - - Java Developer - - 0 - - - Jeremias Maerki - jeremias - jeremias@apache.org - - - Java Developer - - +1 - - - Matthew Hawthorne - matth - matth@apache.org - - - Java Developer - - - - Martin Cooper - martinc - martinc@apache.org - - - Java Developer - - - - Rob Oxspring - roxspring - roxspring@apache.org - - - Java Developer - - - - Jochen Wiedmann - jochen - jochen.wiedmann@gmail.com - - - Niall Pemberton - niallp - - Java Developer - - - - Jukka Zitting - jukka - - Java Developer - - - - Gary Gregory - ggregory - ggregory@apache.org - http://www.garygregory.com - -5 - - - Kristian Rosenvold - krosenvold - krosenvold@apache.org - +1 - - - - - - Rahul Akolkar - - - Jason Anderson - - - Nathan Beyer - - - Emmanuel Bourg - - - Chris Eldredge - - - Magnus Grimsell - - - Jim Harrington - - - Thomas Ledoux - - - Andy Lehane - - - Marcelo Liberato - - - Alban Peignier - alban.peignier at free.fr - - - Ian Springer - - - Dominik Stadler - - - Masato Tezuka - - - James Urie - - - Frank W. Zammetti - - - - - - junit - junit - 4.12 - test - - - - - 1.6 - 1.6 - io - RC4 - 2.5 - (requires JDK 1.6+) - IO - 12310477 - - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output;version=1.4.9999;-noimport:=true, - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output; - org.apache.commons.io.*;version=${project.version};-noimport:=true - - - site-content - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.14.1 - - - xerces:xercesImpl - - pertest - - -Xmx25M - - - **/*Test*.class - - - **/*AbstractTestCase* - **/testtools/** - - **/*$* - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - - org.apache.rat - apache-rat-plugin - - - - src/test/resources/**/*.bin - test/** - - - site-content/** - .pmd - src/site/resources/download_*.cgi - - - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.7 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.12.1 - - ${basedir}/checkstyle.xml - false - - - - org.codehaus.mojo - findbugs-maven-plugin - ${commons.findbugs.version} - - Normal - Default - ${basedir}/findbugs-exclude-filter.xml - - - - org.apache.rat - apache-rat-plugin - - - - src/test/resources/**/*.bin - test/** - - - site-content/** - .pmd - src/site/resources/download_*.cgi - - - - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - prepare-checkout - pre-site - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1 b/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1 deleted file mode 100644 index c2e40c07c..000000000 --- a/code/arachne/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7e39112810f6096061c43504188d18edc7d7eece \ No newline at end of file diff --git a/code/arachne/commons-io/commons-io/2.7/_remote.repositories b/code/arachne/commons-io/commons-io/2.7/_remote.repositories deleted file mode 100644 index 7e87f7105..000000000 --- a/code/arachne/commons-io/commons-io/2.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -commons-io-2.7.pom>central= diff --git a/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom b/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom deleted file mode 100644 index 978b23a2d..000000000 --- a/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom +++ /dev/null @@ -1,473 +0,0 @@ - - - - - org.apache.commons - commons-parent - 50 - - 4.0.0 - commons-io - commons-io - 2.7 - Apache Commons IO - - 2002 - -The Apache Commons IO library contains utility classes, stream implementations, file filters, -file comparators, endian transformation classes, and much more. - - - https://commons.apache.org/proper/commons-io/ - - - jira - https://issues.apache.org/jira/browse/IO - - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/commons-io.git - scm:git:https://gitbox.apache.org/repos/asf/commons-io.git - https://gitbox.apache.org/repos/asf?p=commons-io.git - commons-io-2.6 - - - - - Scott Sanders - sanders - sanders@apache.org - - - Java Developer - - - - dIon Gillard - - dion - dion@apache.org - - - Java Developer - - - - Nicola Ken Barozzi - nicolaken - nicolaken@apache.org - - - Java Developer - - - - Henri Yandell - bayard - bayard@apache.org - - - Java Developer - - - - Stephen Colebourne - scolebourne - - - Java Developer - - 0 - - - Jeremias Maerki - jeremias - jeremias@apache.org - - - Java Developer - - +1 - - - Matthew Hawthorne - matth - matth@apache.org - - - Java Developer - - - - Martin Cooper - martinc - martinc@apache.org - - - Java Developer - - - - Rob Oxspring - roxspring - roxspring@apache.org - - - Java Developer - - - - Jochen Wiedmann - jochen - jochen.wiedmann@gmail.com - - - Niall Pemberton - niallp - - Java Developer - - - - Jukka Zitting - jukka - - Java Developer - - - - Gary Gregory - ggregory - ggregory@apache.org - http://www.garygregory.com - -5 - - - Kristian Rosenvold - krosenvold - krosenvold@apache.org - +1 - - - - - - Rahul Akolkar - - - Jason Anderson - - - Nathan Beyer - - - Emmanuel Bourg - - - Chris Eldredge - - - Magnus Grimsell - - - Jim Harrington - - - Thomas Ledoux - - - Andy Lehane - - - Marcelo Liberato - - - Alban Peignier - alban.peignier at free.fr - - - Adam Retter - Evolved Binary - - - Ian Springer - - - Dominik Stadler - - - Masato Tezuka - - - James Urie - - - Frank W. Zammetti - - - - - - org.junit.jupiter - junit-jupiter - 5.6.2 - test - - - org.junit-pioneer - junit-pioneer - 0.6.0 - test - - - org.mockito - mockito-core - 3.3.3 - test - - - com.google.jimfs - jimfs - 1.1 - test - - - org.apache.commons - commons-lang3 - 3.10 - test - - - - - 1.8 - 1.8 - io - org.apache.commons.io - RC1 - 2.6 - 2.7 - (requires Java 8) - IO - 12310477 - - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output;version=1.4.9999;-noimport:=true, - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output; - org.apache.commons.io.*;version=${project.version};-noimport:=true - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ - site-content - 3.1.0 - 0.8.5 - 2.22.2 - 0.14.3 - false - ${env.JACOCO_SKIP} - 2.6 - true - Gary Gregory - 86fdc7e2a11262cb - - - - clean verify apache-rat:check clirr:check checkstyle:check javadoc:javadoc - - - - org.apache.rat - apache-rat-plugin - - - src/test/resources/**/*.bin - src/test/resources/dir-equals-tests/** - test/** - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - ${commons.module.name} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - xerces:xercesImpl - - 1 - false - - ${argLine} -Xmx25M - - - **/*Test*.class - - - **/*AbstractTestCase* - **/testtools/** - - **/*$* - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstyle.plugin.version} - - ${basedir}/checkstyle.xml - false - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstyle.plugin.version} - - ${basedir}/checkstyle.xml - false - - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - Normal - Default - ${basedir}/findbugs-exclude-filter.xml - - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - prepare-checkout - pre-site - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - java9+ - - [9,) - - - - true - - - - diff --git a/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom.sha1 b/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom.sha1 deleted file mode 100644 index 8e31bea04..000000000 --- a/code/arachne/commons-io/commons-io/2.7/commons-io-2.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -60fb89f2e5c6da8e16bdc716dea69a23e9a5c9bf \ No newline at end of file diff --git a/code/arachne/commons-lang/commons-lang/2.6/_remote.repositories b/code/arachne/commons-lang/commons-lang/2.6/_remote.repositories deleted file mode 100644 index 83533bf92..000000000 --- a/code/arachne/commons-lang/commons-lang/2.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:15 EDT 2024 -commons-lang-2.6.pom>central= diff --git a/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom b/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom deleted file mode 100644 index 3ceccf9de..000000000 --- a/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom +++ /dev/null @@ -1,545 +0,0 @@ - - - - - org.apache.commons - commons-parent - 17 - - 4.0.0 - commons-lang - commons-lang - 2.6 - Commons Lang - - 2001 - - Commons Lang, a package of Java utility classes for the - classes that are in java.lang's hierarchy, or are considered to be so - standard as to justify existence in java.lang. - - - http://commons.apache.org/lang/ - - - jira - http://issues.apache.org/jira/browse/LANG - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/lang/branches/LANG_2_X - scm:svn:https://svn.apache.org/repos/asf/commons/proper/lang/branches/LANG_2_X - http://svn.apache.org/viewvc/commons/proper/lang/branches/LANG_2_X - - - - - Daniel Rall - dlr - dlr@finemaltcoding.com - CollabNet, Inc. - - Java Developer - - - - Stephen Colebourne - scolebourne - scolebourne@joda.org - SITA ATS Ltd - 0 - - Java Developer - - - - Henri Yandell - bayard - bayard@apache.org - - - Java Developer - - - - Steven Caswell - scaswell - stevencaswell@apache.org - - - Java Developer - - -5 - - - Robert Burrell Donkin - rdonkin - rdonkin@apache.org - - - Java Developer - - - - Gary D. Gregory - ggregory - ggregory@seagullsw.com - Seagull Software - -8 - - Java Developer - - - - Phil Steitz - psteitz - phil@steitz.com - - - Java Developer - - - - Fredrik Westermarck - fredrik - - - - Java Developer - - - - James Carman - jcarman - jcarman@apache.org - Carman Consulting, Inc. - - Java Developer - - - - Niall Pemberton - niallp - - Java Developer - - - - Matt Benson - mbenson - - Java Developer - - - - Joerg Schaible - joehni - joerg.schaible@gmx.de - - Java Developer - - +1 - - - Oliver Heger - oheger - oheger@apache.org - +1 - - Java Developer - - - - Paul Benedict - pbenedict - pbenedict@apache.org - - Java Developer - - - - - - C. Scott Ananian - - - Chris Audley - - - Stephane Bailliez - - - Michael Becke - - - Benjamin Bentmann - - - Ola Berg - - - Nathan Beyer - - - Stefan Bodewig - - - Janek Bogucki - - - Mike Bowler - - - Sean Brown - - - Alexander Day Chaffee - - - Al Chou - - - Greg Coladonato - - - Maarten Coene - - - Justin Couch - - - Michael Davey - - - Norm Deane - - - Ringo De Smet - - - Russel Dittmar - - - Steve Downey - - - Matthias Eichel - - - Christopher Elkins - - - Chris Feldhacker - - - Pete Gieser - - - Jason Gritman - - - Matthew Hawthorne - - - Michael Heuer - - - Chris Hyzer - - - Marc Johnson - - - Shaun Kalley - - - Tetsuya Kaneuchi - - - Nissim Karpenstein - - - Ed Korthof - - - Holger Krauth - - - Rafal Krupinski - - - Rafal Krzewski - - - Craig R. McClanahan - - - Rand McNeely - - - Hendrik Maryns - - - Dave Meikle - - - Nikolay Metchev - - - Kasper Nielsen - - - Tim O'Brien - - - Brian S O'Neill - - - Andrew C. Oliver - - - Alban Peignier - - - Moritz Petersen - - - Dmitri Plotnikov - - - Neeme Praks - - - Eric Pugh - - - Stephen Putman - - - Travis Reeder - - - Antony Riley - - - Scott Sanders - - - Ralph Schaer - - - Henning P. Schmiedehausen - - - Sean Schofield - - - Robert Scholte - - - Reuben Sivan - - - Ville Skytta - - - Jan Sorensen - - - Glen Stampoultzis - - - Scott Stanchfield - - - Jon S. Stevens - - - Sean C. Sullivan - - - Ashwin Suresh - - - Helge Tesgaard - - - Arun Mammen Thomas - - - Masato Tezuka - - - Jeff Varszegi - - - Chris Webb - - - Mario Winterer - - - Stepan Koltsov - - - Holger Hoffstatte - - - Derek C. Ashmore - - - - - - - junit - junit - 3.8.1 - test - - - - - UTF-8 - UTF-8 - 1.3 - 1.3 - lang - 2.6 - (Java 1.3+) - 3.0-beta - (Java 5.0+) - LANG - 12310481 - **/RandomUtilsFreqTest.java - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Test.java - - - **/EntitiesPerformanceTest.java - ${random.exclude.test} - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - - - - - - test-random-freq - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/RandomUtilsFreqTest.java - - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.3 - - ${basedir}/src/site/changes/changes.xml - %URL%/%ISSUE% - - - - - changes-report - - - - - - maven-checkstyle-plugin - 2.6 - - ${basedir}/checkstyle.xml - false - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.3.1 - - Normal - Default - ${basedir}/findbugs-exclude-filter.xml - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.4 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - 2.5 - info - - - - - - diff --git a/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 b/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 deleted file mode 100644 index 505197df1..000000000 --- a/code/arachne/commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -347d60b180fa80e5699d8e2cb72c99c93dda5454 \ No newline at end of file diff --git a/code/arachne/commons-logging/commons-logging/1.2/_remote.repositories b/code/arachne/commons-logging/commons-logging/1.2/_remote.repositories deleted file mode 100644 index 6886d1e21..000000000 --- a/code/arachne/commons-logging/commons-logging/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:16 EDT 2024 -commons-logging-1.2.pom>central= diff --git a/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom b/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom deleted file mode 100644 index cdad31c28..000000000 --- a/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom +++ /dev/null @@ -1,547 +0,0 @@ - - - - - org.apache.commons - commons-parent - 34 - - 4.0.0 - commons-logging - commons-logging - Apache Commons Logging - 1.2 - Apache Commons Logging is a thin adapter allowing configurable bridging to other, - well known logging systems. - http://commons.apache.org/proper/commons-logging/ - - - JIRA - http://issues.apache.org/jira/browse/LOGGING - - - 2001 - - - - baliuka - Juozas Baliuka - baliuka@apache.org - - Java Developer - - - - morgand - Morgan Delagrange - morgand@apache.org - Apache - - Java Developer - - - - donaldp - Peter Donald - donaldp@apache.org - - - rdonkin - Robert Burrell Donkin - rdonkin@apache.org - The Apache Software Foundation - - - skitching - Simon Kitching - skitching@apache.org - The Apache Software Foundation - - - dennisl - Dennis Lundberg - dennisl@apache.org - The Apache Software Foundation - - - costin - Costin Manolache - costin@apache.org - The Apache Software Foundation - - - craigmcc - Craig McClanahan - craigmcc@apache.org - The Apache Software Foundation - - - tn - Thomas Neidhart - tn@apache.org - The Apache Software Foundation - - - sanders - Scott Sanders - sanders@apache.org - The Apache Software Foundation - - - rsitze - Richard Sitze - rsitze@apache.org - The Apache Software Foundation - - - bstansberry - Brian Stansberry - - - rwaldhoff - Rodney Waldhoff - rwaldhoff@apache.org - The Apache Software Foundation - - - - - Matthew P. Del Buono - - Provided patch - - - - Vince Eagen - vince256 at comcast dot net - - Lumberjack logging abstraction - - - - Peter Lawrey - - Provided patch - - - - Berin Loritsch - bloritsch at apache dot org - - Lumberjack logging abstraction - JDK 1.4 logging abstraction - - - - Philippe Mouawad - - Provided patch - - - - Neeme Praks - neeme at apache dot org - - Avalon logging abstraction - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/logging/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/logging/trunk - http://svn.apache.org/repos/asf/commons/proper/logging/trunk - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - testjar - package - - test-jar - - - commons-logging - - - - - apijar - package - - jar - - - ${project.artifactId}-api-${project.version} - - org/apache/commons/logging/*.class - org/apache/commons/logging/impl/LogFactoryImpl*.class - org/apache/commons/logging/impl/WeakHashtable*.class - org/apache/commons/logging/impl/SimpleLog*.class - org/apache/commons/logging/impl/NoOpLog*.class - org/apache/commons/logging/impl/Jdk14Logger.class - META-INF/LICENSE.txt - META-INF/NOTICE.txt - - - **/package.html - - - - - - adaptersjar - package - - jar - - - ${project.artifactId}-adapters-${project.version} - - org/apache/commons/logging/impl/**.class - META-INF/LICENSE.txt - META-INF/NOTICE.txt - - - org/apache/commons/logging/impl/WeakHashtable*.class - org/apache/commons/logging/impl/LogFactoryImpl*.class - - - - - - - fulljar - package - - jar - - - ${project.artifactId}-${project.version} - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - site.resources - site - - - - - - - - - - - run - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.0 - - - attach-artifacts - package - - attach-artifact - - - - - ${project.build.directory}/${project.artifactId}-adapters-${project.version}.jar - jar - adapters - - - ${project.build.directory}/${project.artifactId}-api-${project.version}.jar - jar - api - - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - true - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - true - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.surefire.version} - - - integration-test - - integration-test - verify - - - ${failsafe.runorder} - - **/*TestCase.java - - - - ${log4j:log4j:jar} - ${logkit:logkit:jar} - ${javax.servlet:servlet-api:jar} - target/${project.build.finalName}.jar - target/${project.artifactId}-api-${project.version}.jar - target/${project.artifactId}-adapters-${project.version}.jar - target/commons-logging-tests.jar - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.3 - - - src/main/assembly/bin.xml - src/main/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.4 - - - - properties - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - commons-logging-** - - - - - - - - - - junit - junit - 3.8.1 - test - - - log4j - log4j - 1.2.17 - true - - - logkit - logkit - 1.0.1 - true - - - avalon-framework - avalon-framework - 4.1.5 - true - - - javax.servlet - servlet-api - 2.3 - provided - true - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.7 - - ${basedir}/checkstyle.xml - false - ${basedir}/license-header.txt - - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-1 - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.2 - - true - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.0.1 - - - 1.3 - true - - ${basedir}/pmd.xml - - - - - - - - - apache.website - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/logging/ - - - - - 1.2 - 1.2 - logging - 1.2 - LOGGING - 12310484 - - RC2 - 2.12 - true - - filesystem - - - javax.servlet;version="[2.1.0, 3.0.0)";resolution:=optional, - org.apache.avalon.framework.logger;version="[4.1.3, 4.1.5]";resolution:=optional, - org.apache.log;version="[1.0.1, 1.0.1]";resolution:=optional, - org.apache.log4j;version="[1.2.15, 2.0.0)";resolution:=optional - - - diff --git a/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 b/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 deleted file mode 100644 index 8cb2a6214..000000000 --- a/code/arachne/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -075c03ba4b01932842a996ef8d3fc1ab61ddeac2 \ No newline at end of file diff --git a/code/arachne/data-source-manager-3.x-MDACA.jar b/code/arachne/data-source-manager-3.x-MDACA.jar index 2728374994ff6a7132806c2b206401e723230a3e..f4b01eea2b2e7454563a2725aa4e5a614dfd4e45 100644 GIT binary patch delta 3023 zcmaJ@2~ZQ+7VQp^O^gTuLaQSX2uKzb6c8nBE`$UOO9+gFov_O~D3-_~*%hzcXbW!Pjy#O-$nCh1g7{jN&Yy?xI;_rCi&@4U`lFsm0N zaM?KBn#Rzf@3|1~2w^&D@sq)>?Cqgdca3S!?xpUujQy!A#z%SG651 z18vu>-6b@ObGHivSR##g=E>J!5 zaJiCma(#7ES!DF89M0y-W`<@?LDH-^&2ECN26R1R>=rGpy;wEf=RjO-ZN4`*-qC#F zNhft9jgF0ZS+R%3WpOun$69k(hpV;HJdH2hEO2Dv^SM2YR4uOZ7BAm5H6P0Kt;irGjwGmRe z(BlB|sK1CD6dl5vAduG9P|Gjx*H#OwQ?+U|6&!+RY!qAP=AOY$eCy)GwLb_JSKON1f9AQ%s#*MseI@S*25MUlBo@Ctt&|Ds zG*psA>K>XO9Xou~?v=K+a1ujJCHkkx9XdK9W3MB>c;w#A@6)_pxnKL>MnB=fx+c$* zrJ}-8&i2_Yv2lKVkFWW9w$k(XT6KC+*EMw;I@e4OnjT6ivzah#J;JJ^Ez9X(6j*1d z8e0|W8H6F{>b1A-+&3cQYu%D<^;f%mB|qQtukWAQbFHzMo144NS&MUFw7hXi zhWB63%>ygbop;#^FI#&yye6hG?CZZ8Ju&cH(#p%9Z5g}Kzb#gjwo-Jd_M7ft@TE*% zA%T4M#~xm<{zyu8v>P?)Wv}vjz4EFPtG7pA{w=v}{du<}XLHes(-38SQ_Q|klCh@^ zjf6`%*?f!9yfv+*JzC=@1v8i4mE|5JguEP$F9^R{xLqwC;^QW>$4!5$7(3p?A0G3iW?nU} z`KUDmlSWrGxV#$rzVwux$p@c-!2YmweUH6?g14WR**kc>`3`Qaw6uJ=W^$-xXif6I z(|`NhZM~l|?tGWubzZkhvS-I+t5%Uu58bkd)+~C^ZF-JjuliHli@;`6p|#i^+>{x= zGe`KMQIcTx)SJ@60@#fuGaA>HpHH}d#Pid4ov1^i&^%sA)gC9q&>by!&h)qn**`}2 z9y9ntUUe#aMV4j+`xV#5gXa9_Lk2#W+@J2Cq|K<(MgVmpDISDVH+@`wsEf%C;+794kp@iE?_p2O%**8E)6 zB$W=i8vSWA0J|e6I|unW0dQcnAxw`U!BsKp0yfS3E{DxwOmZ%}vuLb`^ezj!n@4Y_ zdk34dl|D4=W^vDg4!BVylDESZKDv4pg}RX=CR53xGF_d>5y=zi9q;w*6e17fArA@Ty>`%1L`+21B^JAiN}u@qc-! z3Ow34gvS^WOigTUscKFJLv{f;07#99PmBvmjYvThTfRb6Ol3@nu~_Cv+rz-Diw0B2I&HW;)Brb7)PE(fU6@F3f_o>aLGPWK$PixJ?VX9briIY z#7A}`Idm-}EMdD4yGj%R`l_5;j}$_`CqspTZ}@O5pRDjrp$R85RI1PfALM7CkPzkv z5A%(v*b4vLdPvBn_m~E9tx`yM1`DE%knh}ZegNoyO7Xap!%MR{0?gqDDbEPd;Qs*Q C*2#JR delta 3170 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 diff --git a/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom b/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom deleted file mode 100644 index f2fbcfef7..000000000 --- a/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom +++ /dev/null @@ -1,262 +0,0 @@ - - - - 4.0.0 - buji-pac4j - 9.0.1 - jar - pac4j bridge for Shiro - Bridge from the pac4j security library to Shiro - https://github.com/bujiio/buji-pac4j - - - io.buji - buji-parent - 1 - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - apache-snapshots - Apache Snapshots - https://repository.apache.org/snapshots/ - - false - - - true - - - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:git@github.com:bujiio/buji-pac4j.git - scm:git:git@github.com:bujiio/buji-pac4j.git - https://github.com/bujiio/buji-pac4j - - - - 6.0.1 - 17 - 1.13.0 - 6.55.0 - - - - - org.apache.shiro - shiro-web - ${shiro.version} - - - org.pac4j - pac4j-javaee - ${pac4j.version} - - - org.projectlombok - lombok - 1.18.30 - - - org.slf4j - jcl-over-slf4j - 2.0.12 - test - - - org.pac4j - pac4j-cas - ${pac4j.version} - test - - - junit - junit - 4.13.2 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - ${java.version} - UTF-8 - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - true - - - io.buji.pac4j - io.buji.pac4j*;version=${project.version} - - org.apache.shiro*;version="[1.2, 2)", - org.pac4j*;version="[5.0, 6.0)", - org.scribe*;version="[8.0)", - * - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - UTF-8 - UTF-8 - UTF-8 - - - - attach-javadocs - - jar - - - - - - com.github.spotbugs - spotbugs-maven-plugin - 4.8.3.1 - - Low - Max - true - ${basedir}/spotbugs-exclude.xml - true - - - - run-sportbugs - compile - - check - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.21.2 - - true - true - - - - run-pmd - compile - - check - - - - - - net.sourceforge.pmd - pmd-core - ${pmdVersion} - - - net.sourceforge.pmd - pmd-java - ${pmdVersion} - - - net.sourceforge.pmd - pmd-javascript - ${pmdVersion} - - - net.sourceforge.pmd - pmd-jsp - ${pmdVersion} - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.5 - - - **/*Tests.java - - - - - - - diff --git a/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom.sha1 b/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom.sha1 deleted file mode 100644 index b9f296058..000000000 --- a/code/arachne/io/buji/buji-pac4j/9.0.1/buji-pac4j-9.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2d17492f0acfe13fd5d5fa944687841d1338fde4 \ No newline at end of file diff --git a/code/arachne/io/buji/buji-parent/1/_remote.repositories b/code/arachne/io/buji/buji-parent/1/_remote.repositories deleted file mode 100644 index 2144a99f9..000000000 --- a/code/arachne/io/buji/buji-parent/1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:23 EDT 2024 -buji-parent-1.pom>central= diff --git a/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom b/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom deleted file mode 100644 index e30c02518..000000000 --- a/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - - io.buji - buji-parent - 1 - pom - Buji - http://buji.io - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:git@github.com:bujiio/buji-parent.git - scm:git:git@github.com:bujiio/buji-parent.git - git@github.com:bujiio/buji-parent.git - - - \ No newline at end of file diff --git a/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom.sha1 b/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom.sha1 deleted file mode 100644 index fd9ba8364..000000000 --- a/code/arachne/io/buji/buji-parent/1/buji-parent-1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8686e27c4db0cc924621f5d9a09d0f66e9b906d5 \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/_remote.repositories deleted file mode 100644 index f5389e914..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:46 EDT 2024 -metrics-bom-4.1.7.pom>local-repo= diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom deleted file mode 100644 index bec24c7bb..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom +++ /dev/null @@ -1,121 +0,0 @@ - - - 4.0.0 - - - io.dropwizard.metrics - metrics-parent - 4.1.7 - - - metrics-bom - Metrics BOM - pom - Bill of Materials for Metrics - - - - - io.dropwizard.metrics - metrics-annotation - ${project.version} - - - io.dropwizard.metrics - metrics-core - ${project.version} - - - io.dropwizard.metrics - metrics-collectd - ${project.version} - - - io.dropwizard.metrics - metrics-ehcache - ${project.version} - - - io.dropwizard.metrics - metrics-graphite - ${project.version} - - - io.dropwizard.metrics - metrics-healthchecks - ${project.version} - - - io.dropwizard.metrics - metrics-httpclient - ${project.version} - - - io.dropwizard.metrics - metrics-httpasyncclient - ${project.version} - - - io.dropwizard.metrics - metrics-jcache - ${project.version} - - - io.dropwizard.metrics - metrics-jdbi - ${project.version} - - - io.dropwizard.metrics - metrics-jdbi3 - ${project.version} - - - io.dropwizard.metrics - metrics-jersey2 - ${project.version} - - - io.dropwizard.metrics - metrics-jetty9 - ${project.version} - - - io.dropwizard.metrics - metrics-jmx - ${project.version} - - - io.dropwizard.metrics - metrics-json - ${project.version} - - - io.dropwizard.metrics - metrics-jvm - ${project.version} - - - io.dropwizard.metrics - metrics-log4j2 - ${project.version} - - - io.dropwizard.metrics - metrics-logback - ${project.version} - - - io.dropwizard.metrics - metrics-servlet - ${project.version} - - - io.dropwizard.metrics - metrics-servlets - ${project.version} - - - - - diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.lastUpdated deleted file mode 100644 index d38ea0a8f..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:46 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139886343 -http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-bom\:pom\:4.1.7 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139885908 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139885922 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139886033 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139886287 diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.sha1 deleted file mode 100644 index 60dc981e6..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.1.7/metrics-bom-4.1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -633e023ea985e3ee07215eaab9b55c307fc87e64 \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/_remote.repositories deleted file mode 100644 index 41b93a554..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:30 EDT 2024 -metrics-bom-4.2.19.pom>ohdsi= diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom deleted file mode 100644 index 431ca2dad..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom +++ /dev/null @@ -1,176 +0,0 @@ - - - 4.0.0 - - - io.dropwizard.metrics - metrics-parent - 4.2.19 - - - metrics-bom - Metrics BOM - pom - Bill of Materials for Metrics - - - - - io.dropwizard.metrics - metrics-annotation - ${project.version} - - - io.dropwizard.metrics - metrics-caffeine - ${project.version} - - - io.dropwizard.metrics - metrics-caffeine3 - ${project.version} - - - io.dropwizard.metrics - metrics-core - ${project.version} - - - io.dropwizard.metrics - metrics-collectd - ${project.version} - - - io.dropwizard.metrics - metrics-ehcache - ${project.version} - - - io.dropwizard.metrics - metrics-graphite - ${project.version} - - - io.dropwizard.metrics - metrics-healthchecks - ${project.version} - - - io.dropwizard.metrics - metrics-httpclient - ${project.version} - - - io.dropwizard.metrics - metrics-httpclient5 - ${project.version} - - - io.dropwizard.metrics - metrics-httpasyncclient - ${project.version} - - - io.dropwizard.metrics - metrics-jakarta-servlet - ${project.version} - - - io.dropwizard.metrics - metrics-jakarta-servlets - ${project.version} - - - io.dropwizard.metrics - metrics-jcache - ${project.version} - - - io.dropwizard.metrics - metrics-jdbi - ${project.version} - - - io.dropwizard.metrics - metrics-jdbi3 - ${project.version} - - - io.dropwizard.metrics - metrics-jersey2 - ${project.version} - - - io.dropwizard.metrics - metrics-jersey3 - ${project.version} - - - io.dropwizard.metrics - metrics-jersey31 - ${project.version} - - - io.dropwizard.metrics - metrics-jetty9 - ${project.version} - - - io.dropwizard.metrics - metrics-jetty10 - ${project.version} - - - io.dropwizard.metrics - metrics-jetty11 - ${project.version} - - - io.dropwizard.metrics - metrics-jmx - ${project.version} - - - io.dropwizard.metrics - metrics-json - ${project.version} - - - io.dropwizard.metrics - metrics-jvm - ${project.version} - - - io.dropwizard.metrics - metrics-log4j2 - ${project.version} - - - io.dropwizard.metrics - metrics-logback - ${project.version} - - - io.dropwizard.metrics - metrics-logback13 - ${project.version} - - - io.dropwizard.metrics - metrics-logback14 - ${project.version} - - - io.dropwizard.metrics - metrics-servlet - ${project.version} - - - io.dropwizard.metrics - metrics-servlets - ${project.version} - - - - - diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.lastUpdated deleted file mode 100644 index f886bf297..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:30 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-bom\:pom\:4.2.19 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139870432 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139870443 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139870592 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139870734 diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.sha1 deleted file mode 100644 index bfabfd11a..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.19/metrics-bom-4.2.19.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9ae6a38c9279ba65d21800ec41c535c892dc9cb4 \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/_remote.repositories deleted file mode 100644 index 857a6b5ca..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:23 EDT 2024 -metrics-bom-4.2.25.pom>ohdsi= diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom deleted file mode 100644 index 0ab914d01..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom +++ /dev/null @@ -1,191 +0,0 @@ - - - 4.0.0 - - - io.dropwizard.metrics - metrics-parent - 4.2.25 - - - metrics-bom - Metrics BOM - pom - Bill of Materials for Metrics - - - - - io.dropwizard.metrics - metrics-annotation - ${project.version} - - - io.dropwizard.metrics - metrics-caffeine - ${project.version} - - - io.dropwizard.metrics - metrics-caffeine3 - ${project.version} - - - io.dropwizard.metrics - metrics-core - ${project.version} - - - io.dropwizard.metrics - metrics-collectd - ${project.version} - - - io.dropwizard.metrics - metrics-ehcache - ${project.version} - - - io.dropwizard.metrics - metrics-graphite - ${project.version} - - - io.dropwizard.metrics - metrics-healthchecks - ${project.version} - - - io.dropwizard.metrics - metrics-httpclient - ${project.version} - - - io.dropwizard.metrics - metrics-httpclient5 - ${project.version} - - - io.dropwizard.metrics - metrics-httpasyncclient - ${project.version} - - - io.dropwizard.metrics - metrics-jakarta-servlet - ${project.version} - - - io.dropwizard.metrics - metrics-jakarta-servlet6 - ${project.version} - - - io.dropwizard.metrics - metrics-jakarta-servlets - ${project.version} - - - io.dropwizard.metrics - metrics-jcache - ${project.version} - - - io.dropwizard.metrics - metrics-jdbi - ${project.version} - - - io.dropwizard.metrics - metrics-jdbi3 - ${project.version} - - - io.dropwizard.metrics - metrics-jersey2 - ${project.version} - - - io.dropwizard.metrics - metrics-jersey3 - ${project.version} - - - io.dropwizard.metrics - metrics-jersey31 - ${project.version} - - - io.dropwizard.metrics - metrics-jetty9 - ${project.version} - - - io.dropwizard.metrics - metrics-jetty10 - ${project.version} - - - io.dropwizard.metrics - metrics-jetty11 - ${project.version} - - - io.dropwizard.metrics - metrics-jetty12 - ${project.version} - - - io.dropwizard.metrics - metrics-jetty12-ee10 - ${project.version} - - - io.dropwizard.metrics - metrics-jmx - ${project.version} - - - io.dropwizard.metrics - metrics-json - ${project.version} - - - io.dropwizard.metrics - metrics-jvm - ${project.version} - - - io.dropwizard.metrics - metrics-log4j2 - ${project.version} - - - io.dropwizard.metrics - metrics-logback - ${project.version} - - - io.dropwizard.metrics - metrics-logback13 - ${project.version} - - - io.dropwizard.metrics - metrics-logback14 - ${project.version} - - - io.dropwizard.metrics - metrics-servlet - ${project.version} - - - io.dropwizard.metrics - metrics-servlets - ${project.version} - - - - - diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.lastUpdated deleted file mode 100644 index 9ab9f716d..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:23 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-bom\:pom\:4.2.25 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139803086 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139803187 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139803376 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139803543 diff --git a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.sha1 deleted file mode 100644 index 67affb6a2..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f06ad7963d689e323e56320b4fce38eb8f850503 \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/_remote.repositories deleted file mode 100644 index eadf8d348..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:32 EDT 2024 -metrics-core-4.2.25.pom>central= diff --git a/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom b/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom deleted file mode 100644 index db6d3a9df..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom +++ /dev/null @@ -1,70 +0,0 @@ - - - 4.0.0 - - - io.dropwizard.metrics - metrics-parent - 4.2.25 - - - metrics-core - Metrics Core - bundle - - Metrics is a Java library which gives you unparalleled insight into what your code does in - production. Metrics provides a powerful toolkit of ways to measure the behavior of critical - components in your production environment. - - - - com.codahale.metrics - - - - - - net.bytebuddy - byte-buddy - ${byte-buddy.version} - - - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - junit - junit - ${junit.version} - test - - - org.assertj - assertj-core - ${assertj.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - org.slf4j - slf4j-simple - ${slf4j.version} - test - - - org.apache.commons - commons-lang3 - ${commons-lang3.version} - test - - - diff --git a/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom.sha1 deleted file mode 100644 index c2f4e5ee7..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-core/4.2.25/metrics-core-4.2.25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fcc0a3ff248731ce9d0b46bbcaeddb25992820cd \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/_remote.repositories deleted file mode 100644 index 26568893e..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:39 EDT 2024 -metrics-json-4.2.25.pom>central= diff --git a/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom b/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom deleted file mode 100644 index f24ca3991..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom +++ /dev/null @@ -1,86 +0,0 @@ - - - 4.0.0 - - - io.dropwizard.metrics - metrics-parent - 4.2.25 - - - metrics-json - Jackson Integration for Metrics - bundle - - A set of Jackson modules which provide serializers for most Metrics classes. - - - - com.codahale.metrics.json - 2.12.7 - 2.12.7.1 - - - - - - io.dropwizard.metrics - metrics-bom - ${project.version} - pom - import - - - net.bytebuddy - byte-buddy - ${byte-buddy.version} - - - - - - - io.dropwizard.metrics - metrics-core - - - io.dropwizard.metrics - metrics-healthchecks - true - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson-databind.version} - - - junit - junit - ${junit.version} - test - - - org.assertj - assertj-core - ${assertj.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - org.slf4j - slf4j-simple - ${slf4j.version} - test - - - diff --git a/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom.sha1 deleted file mode 100644 index 212f31b82..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-json/4.2.25/metrics-json-4.2.25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3d982d12512a5907bf2c0d9b68167361ea17a3f8 \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/_remote.repositories deleted file mode 100644 index 0b96f2faa..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:47 EDT 2024 -metrics-parent-4.1.7.pom>local-repo= diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom deleted file mode 100644 index 4faae4b61..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom +++ /dev/null @@ -1,381 +0,0 @@ - - - 4.0.0 - - io.dropwizard.metrics - metrics-parent - 4.1.7 - pom - Metrics Parent - - The Metrics library. - - https://metrics.dropwizard.io - - - docs - metrics-bom - metrics-annotation - metrics-benchmarks - metrics-core - metrics-collectd - metrics-ehcache - metrics-graphite - metrics-healthchecks - metrics-httpclient - metrics-httpclient5 - metrics-httpasyncclient - metrics-jcache - metrics-jcstress - metrics-jdbi - metrics-jdbi3 - metrics-jersey2 - metrics-jetty9 - metrics-jmx - metrics-json - metrics-jvm - metrics-log4j2 - metrics-logback - metrics-servlet - metrics-servlets - - - - UTF-8 - UTF-8 - 1.7.30 - 3.15.0 - 3.3.3 - 4.12 - 3.8.1 - - - - - Coda Hale - coda.hale@gmail.com - America/Los_Angeles - - architect - - - - Ryan Tenney - ryan@10e.us - America/New_York - - committer - - - - Artem Prigoda - prigoda.artem@ya.ru - Europe/Berlin - - committer - - - - - - - Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.html - repo - - - - - scm:git:git://github.com/dropwizard/metrics.git - scm:git:git@github.com:dropwizard/metrics.git - https://github.com/dropwizard/metrics/ - v4.1.7 - - - - github - https://github.com/dropwizard/metrics/issues/ - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - junit - junit - ${junit.version} - test - - - org.assertj - assertj-core - ${assertj.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - org.slf4j - slf4j-simple - ${slf4j.version} - test - - - - - - jdk8 - - 1.8 - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - javac-with-errorprone - true - true - -Xlint:all - 1.8 - 1.8 - true - - -XepExcludedPaths:.*/target/generated-sources/.* - - - - - org.codehaus.plexus - plexus-compiler-javac-errorprone - 2.8.6 - - - - com.google.errorprone - error_prone_core - 2.3.4 - - - - - - - - jdk11 - - 11 - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - 1.8 - 1.8 - true - true - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - --no-tty - - - - - sign-artifacts - verify - - sign - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - - - - org.apache.felix - maven-bundle-plugin - 4.2.1 - true - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - -Djava.net.preferIPv4Stack=true - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4.1 - - - enforce - - - - - - - enforce - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.1.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - 8 - none - true - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - true - forked-path - v@{project.version} - clean test - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - - true - - - ${javaModuleName} - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.1.1 - - checkstyle.xml - true - - - - org.apache.maven.plugins - maven-site-plugin - 3.9.0 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.0.0 - - - - diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.lastUpdated deleted file mode 100644 index 43371bad0..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:47 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139887017 -http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-parent\:pom\:4.1.7 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139886452 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139886462 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139886821 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139886965 diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.sha1 deleted file mode 100644 index e82fd13fb..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.1.7/metrics-parent-4.1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -23c0321484c24c409670affddde4a29a582e38da \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/_remote.repositories deleted file mode 100644 index 20fd25cef..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:31 EDT 2024 -metrics-parent-4.2.19.pom>ohdsi= diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom deleted file mode 100644 index 6192b52fc..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom +++ /dev/null @@ -1,468 +0,0 @@ - - - 4.0.0 - - io.dropwizard.metrics - metrics-parent - 4.2.19 - pom - Metrics Parent - - The Metrics library. - - https://metrics.dropwizard.io - - - docs - metrics-bom - metrics-annotation - metrics-benchmarks - metrics-caffeine - metrics-caffeine3 - metrics-core - metrics-collectd - metrics-ehcache - metrics-graphite - metrics-healthchecks - metrics-httpclient - metrics-httpclient5 - metrics-httpasyncclient - metrics-jakarta-servlet - metrics-jakarta-servlets - metrics-jcache - metrics-jcstress - metrics-jdbi - metrics-jdbi3 - metrics-jersey2 - metrics-jersey3 - metrics-jersey31 - metrics-jetty9 - metrics-jetty10 - metrics-jetty11 - metrics-jmx - metrics-json - metrics-jvm - metrics-log4j2 - metrics-logback - metrics-logback13 - metrics-logback14 - metrics-servlet - metrics-servlets - - - - 2023-06-01T21:00:23Z - UTF-8 - UTF-8 - - 2.12.3 - 9.4.51.v20230217 - 10.0.15 - 11.0.15 - 1.7.36 - 3.24.2 - 1.14.4 - 5.3.1 - 4.13.1 - 1.3 - 3.11.0 - 2.19.1 - 9+181-r4173-1 - - dropwizard_metrics - dropwizard - https://sonarcloud.io - ${project.artifactId} - - - - - Coda Hale - coda.hale@gmail.com - America/Los_Angeles - - architect - - - - Ryan Tenney - ryan@10e.us - America/New_York - - committer - - - - Artem Prigoda - prigoda.artem@ya.ru - Europe/Berlin - - committer - - - - - - - Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.html - repo - - - - - scm:git:git://github.com/dropwizard/metrics.git - scm:git:git@github.com:dropwizard/metrics.git - https://github.com/dropwizard/metrics/ - v4.2.19 - - - - github - https://github.com/dropwizard/metrics/issues/ - - - - - ossrh - Sonatype Nexus Snapshots - https://s01.oss.sonatype.org/content/repositories/snapshots - - - ossrh - Nexus Release Repository - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - jdk8 - - 1.8 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${errorprone.javac.version}/javac-${errorprone.javac.version}.jar - - - - - - - - jdk17 - - [17,) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -Xlint:all - -XDcompilePolicy=simple - -Xplugin:ErrorProne -XepExcludedPaths:.*/target/generated-sources/.* - -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - - - - com.google.errorprone - error_prone_core - ${errorprone.version} - - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - EDA86E9FB607B5FC9223FB767D4868B53E31E7AD - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - 8 - none - true - true - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - --pinentry-mode - loopback - - - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - ossrh - https://s01.oss.sonatype.org/ - true - - - - nexus-deploy - deploy - - deploy - - - - - - org.cyclonedx - cyclonedx-maven-plugin - 2.7.9 - - - package - - makeAggregateBom - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.1 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.8 - 1.8 - true - true - true - - -Xlint:all - -XDcompilePolicy=simple - -Xplugin:ErrorProne -XepExcludedPaths:.*/target/generated-sources/.* - - - - com.google.errorprone - error_prone_core - ${errorprone.version} - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - true - - - - - ${javaModuleName} - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.1.0 - - @{argLine} -Djava.net.preferIPv4Stack=true - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.3.0 - - - enforce - - - - - - - enforce - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.6.0 - - - analyze - - analyze-only - analyze-dep-mgt - analyze-duplicate - - verify - - true - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0 - - true - forked-path - v@{project.version} - clean test - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - true - - - ${javaModuleName} - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.0 - - checkstyle.xml - true - - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.4.4 - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - prepare-agent - - prepare-agent - - - - report - - report - - - - - - - diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.lastUpdated deleted file mode 100644 index 81a48e447..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:31 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-parent\:pom\:4.2.19 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139871067 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139871075 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139871181 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139871365 diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.sha1 deleted file mode 100644 index 41d6e5c15..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.19/metrics-parent-4.2.19.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d025565493834f8033193afcfe480c6c275e5e4d \ No newline at end of file diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/_remote.repositories b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/_remote.repositories deleted file mode 100644 index c912426b2..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:24 EDT 2024 -metrics-parent-4.2.25.pom>ohdsi= diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom deleted file mode 100644 index 87169f2b4..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom +++ /dev/null @@ -1,478 +0,0 @@ - - - 4.0.0 - - io.dropwizard.metrics - metrics-parent - 4.2.25 - pom - Metrics Parent - - The Metrics library. - - https://metrics.dropwizard.io - - - docs - metrics-bom - metrics-annotation - metrics-benchmarks - metrics-caffeine - metrics-caffeine3 - metrics-core - metrics-collectd - metrics-ehcache - metrics-graphite - metrics-healthchecks - metrics-httpclient - metrics-httpclient5 - metrics-httpasyncclient - metrics-jakarta-servlet - metrics-jakarta-servlet6 - metrics-jakarta-servlets - metrics-jcache - metrics-jcstress - metrics-jdbi - metrics-jdbi3 - metrics-jersey2 - metrics-jersey3 - metrics-jersey31 - metrics-jetty9 - metrics-jetty10 - metrics-jetty11 - metrics-jmx - metrics-json - metrics-jvm - metrics-log4j2 - metrics-logback - metrics-logback13 - metrics-logback14 - metrics-servlet - metrics-servlets - - - - 2024-01-24T22:47:57Z - UTF-8 - UTF-8 - - 9.4.53.v20231009 - 10.0.19 - 11.0.19 - 12.0.5 - 1.7.36 - 3.25.2 - 1.14.11 - 5.9.0 - 4.13.1 - 3.14.0 - 3.12.1 - 2.24.1 - 9+181-r4173-1 - 6.0.0 - - dropwizard_metrics - dropwizard - https://sonarcloud.io - ${project.artifactId} - - - - - Coda Hale - coda.hale@gmail.com - America/Los_Angeles - - architect - - - - Ryan Tenney - ryan@10e.us - America/New_York - - committer - - - - Artem Prigoda - prigoda.artem@ya.ru - Europe/Berlin - - committer - - - - - - - Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.html - repo - - - - - scm:git:git://github.com/dropwizard/metrics.git - scm:git:git@github.com:dropwizard/metrics.git - https://github.com/dropwizard/metrics/ - v4.2.25 - - - - github - https://github.com/dropwizard/metrics/issues/ - - - - - ossrh - Sonatype Nexus Snapshots - https://s01.oss.sonatype.org/content/repositories/snapshots - - - ossrh - Nexus Release Repository - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - jdk8 - - 1.8 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${errorprone.javac.version}/javac-${errorprone.javac.version}.jar - - - - - - - - jdk17 - - [17,) - - - metrics-jetty12 - metrics-jetty12-ee10 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -Xlint:all - -XDcompilePolicy=simple - -Xplugin:ErrorProne -XepExcludedPaths:.*/target/generated-sources/.* - -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED - -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED - -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED - -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED - - - - com.google.errorprone - error_prone_core - ${errorprone.version} - - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - EDA86E9FB607B5FC9223FB767D4868B53E31E7AD - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - --pinentry-mode - loopback - - - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - ossrh - https://s01.oss.sonatype.org/ - true - - - - nexus-deploy - deploy - - deploy - - - - - - org.cyclonedx - cyclonedx-maven-plugin - 2.7.11 - - - package - - makeAggregateBom - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - 8 - none - true - true - true - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 8 - true - true - true - - -Xlint:all - -XDcompilePolicy=simple - -Xplugin:ErrorProne -XepExcludedPaths:.*/target/generated-sources/.* - - - - com.google.errorprone - error_prone_core - ${errorprone.version} - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - true - - - - - ${javaModuleName} - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.5 - - @{argLine} -Djava.net.preferIPv4Stack=true - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - enforce - - - - - - - enforce - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.6.1 - - - analyze - - analyze-only - analyze-dep-mgt - analyze-duplicate - - verify - - true - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - true - forked-path - v@{project.version} - clean test - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - true - - - ${javaModuleName} - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.1 - - checkstyle.xml - true - - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.5.0 - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - prepare-agent - - prepare-agent - - - - report - - report - - - - - - - diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.lastUpdated b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.lastUpdated deleted file mode 100644 index ad2455421..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:24 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.dropwizard.metrics\:metrics-parent\:pom\:4.2.25 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139803562 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139803655 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139804184 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139804336 diff --git a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.sha1 b/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.sha1 deleted file mode 100644 index 437bda83b..000000000 --- a/code/arachne/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5912b9400b8fd9d5bf7d46421da7fb8c4226d461 \ No newline at end of file diff --git a/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/_remote.repositories b/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/_remote.repositories deleted file mode 100644 index 82d3fecff..000000000 --- a/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:50 EDT 2024 -kubernetes-client-bom-5.12.4.pom>central= diff --git a/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom b/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom deleted file mode 100644 index 1debbb132..000000000 --- a/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom +++ /dev/null @@ -1,636 +0,0 @@ - - - - - 4.0.0 - - io.fabric8 - kubernetes-client-bom - 5.12.4 - Fabric8 :: Kubernetes :: Bom - pom - Generated Bom - - http://fabric8.io/ - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - scm:git:git@github.com:fabric8io/kubernetes-client.git - scm:git:git@github.com:fabric8io/kubernetes-client.git - http://github.com/fabric8io/kubernetes-client/ - 5.12.4 - - - - - geeks - Fabric8 Development Team - fabric8 - http://fabric8.io/ - - - - - - io.fabric8 - kubernetes-model-common - 5.12.4 - - - io.fabric8 - model-annotator - 5.12.4 - - - io.fabric8 - kubernetes-model-core - 5.12.4 - - - io.fabric8 - kubernetes-model-rbac - 5.12.4 - - - io.fabric8 - kubernetes-model-admissionregistration - 5.12.4 - - - io.fabric8 - kubernetes-model-apps - 5.12.4 - - - io.fabric8 - kubernetes-model-autoscaling - 5.12.4 - - - io.fabric8 - kubernetes-model-apiextensions - 5.12.4 - - - io.fabric8 - kubernetes-model-batch - 5.12.4 - - - io.fabric8 - kubernetes-model-certificates - 5.12.4 - - - io.fabric8 - kubernetes-model-coordination - 5.12.4 - - - io.fabric8 - kubernetes-model-discovery - 5.12.4 - - - io.fabric8 - kubernetes-model-events - 5.12.4 - - - io.fabric8 - kubernetes-model-extensions - 5.12.4 - - - io.fabric8 - kubernetes-model-networking - 5.12.4 - - - io.fabric8 - kubernetes-model-metrics - 5.12.4 - - - io.fabric8 - kubernetes-model-policy - 5.12.4 - - - io.fabric8 - kubernetes-model-scheduling - 5.12.4 - - - io.fabric8 - kubernetes-model-storageclass - 5.12.4 - - - io.fabric8 - openshift-model - 5.12.4 - - - io.fabric8 - kubernetes-model - 5.12.4 - - - io.fabric8 - kubernetes-model-jsonschema2pojo - 5.12.4 - - - io.fabric8 - kubernetes-model-flowcontrol - 5.12.4 - - - io.fabric8 - kubernetes-model-node - 5.12.4 - - - io.fabric8 - openshift-model-clusterautoscaling - 5.12.4 - - - io.fabric8 - openshift-model-hive - 5.12.4 - - - io.fabric8 - openshift-model-installer - 5.12.4 - - - io.fabric8 - openshift-model-operator - 5.12.4 - - - io.fabric8 - openshift-model-operatorhub - 5.12.4 - - - io.fabric8 - openshift-model-machine - 5.12.4 - - - io.fabric8 - openshift-model-monitoring - 5.12.4 - - - io.fabric8 - openshift-model-console - 5.12.4 - - - io.fabric8 - openshift-model-machineconfig - 5.12.4 - - - io.fabric8 - openshift-model-tuned - 5.12.4 - - - io.fabric8 - openshift-model-whereabouts - 5.12.4 - - - io.fabric8 - openshift-model-storageversionmigrator - 5.12.4 - - - io.fabric8 - openshift-model-miscellaneous - 5.12.4 - - - io.fabric8 - kubernetes-client - 5.12.4 - - - io.fabric8 - kubernetes-server-mock - 5.12.4 - - - io.fabric8 - openshift-client - 5.12.4 - - - io.fabric8 - knative-model - 5.12.4 - - - io.fabric8 - knative-client - 5.12.4 - - - io.fabric8 - knative-mock - 5.12.4 - - - io.fabric8 - knative-examples - 5.12.4 - - - io.fabric8 - knative-tests - 5.12.4 - - - io.fabric8 - tekton-model-v1alpha1 - 5.12.4 - - - io.fabric8 - tekton-model-v1beta1 - 5.12.4 - - - io.fabric8 - tekton-model-triggers - 5.12.4 - - - io.fabric8 - tekton-client - 5.12.4 - - - io.fabric8 - tekton-mock - 5.12.4 - - - io.fabric8 - tekton-examples - 5.12.4 - - - io.fabric8 - tekton-tests - 5.12.4 - - - io.fabric8 - servicecatalog-model - 5.12.4 - - - io.fabric8 - servicecatalog-client - 5.12.4 - - - io.fabric8 - servicecatalog-server-mock - 5.12.4 - - - io.fabric8 - service-catalog-examples - 5.12.4 - - - io.fabric8 - servicecatalog-tests - 5.12.4 - - - io.fabric8 - volumesnapshot-model - 5.12.4 - - - io.fabric8 - volumesnapshot-client - 5.12.4 - - - io.fabric8 - volumesnapshot-server-mock - 5.12.4 - - - io.fabric8 - volumesnapshot-examples - 5.12.4 - - - io.fabric8 - volumesnapshot-tests - 5.12.4 - - - io.fabric8 - chaosmesh-model - 5.12.4 - - - io.fabric8 - chaosmesh-client - 5.12.4 - - - io.fabric8 - chaosmesh-server-mock - 5.12.4 - - - io.fabric8 - chaosmesh-examples - 5.12.4 - - - io.fabric8 - chaosmesh-tests - 5.12.4 - - - io.fabric8 - camel-k-model-v1 - 5.12.4 - - - io.fabric8 - camel-k-model-v1alpha1 - 5.12.4 - - - io.fabric8 - camel-k-client - 5.12.4 - - - io.fabric8 - camel-k-mock - 5.12.4 - - - io.fabric8 - camel-k-tests - 5.12.4 - - - io.fabric8 - certmanager-model-v1alpha2 - 5.12.4 - - - io.fabric8 - certmanager-model-v1alpha3 - 5.12.4 - - - io.fabric8 - certmanager-model-v1beta1 - 5.12.4 - - - io.fabric8 - certmanager-model-v1 - 5.12.4 - - - io.fabric8 - certmanager-client - 5.12.4 - - - io.fabric8 - certmanager-server-mock - 5.12.4 - - - io.fabric8 - certmanager-examples - 5.12.4 - - - io.fabric8 - certmanager-tests - 5.12.4 - - - io.fabric8 - verticalpodautoscaler-model-v1 - 5.12.4 - - - io.fabric8 - verticalpodautoscaler-client - 5.12.4 - - - io.fabric8 - verticalpodautoscaler-server-mock - 5.12.4 - - - io.fabric8 - verticalpodautoscaler-examples - 5.12.4 - - - io.fabric8 - verticalpodautoscaler-tests - 5.12.4 - - - io.fabric8 - volcano-model-v1beta1 - 5.12.4 - - - io.fabric8 - volcano-client - 5.12.4 - - - io.fabric8 - volcano-examples - 5.12.4 - - - io.fabric8 - volcano-server-mock - 5.12.4 - - - io.fabric8 - volcano-tests - 5.12.4 - - - io.fabric8 - istio-model-v1alpha3 - 5.12.4 - - - io.fabric8 - istio-model-v1beta1 - 5.12.4 - - - io.fabric8 - istio-client - 5.12.4 - - - io.fabric8 - istio-server-mock - 5.12.4 - - - io.fabric8 - istio-examples - 5.12.4 - - - io.fabric8 - istio-tests - 5.12.4 - - - io.fabric8 - open-cluster-management-apps-model - 5.12.4 - - - io.fabric8 - open-cluster-management-agent-model - 5.12.4 - - - io.fabric8 - open-cluster-management-cluster-model - 5.12.4 - - - io.fabric8 - open-cluster-management-discovery-model - 5.12.4 - - - io.fabric8 - open-cluster-management-observability-model - 5.12.4 - - - io.fabric8 - open-cluster-management-operator-model - 5.12.4 - - - io.fabric8 - open-cluster-management-placementruleapps-model - 5.12.4 - - - io.fabric8 - open-cluster-management-policy-model - 5.12.4 - - - io.fabric8 - open-cluster-management-search-model - 5.12.4 - - - io.fabric8 - open-cluster-management-client - 5.12.4 - - - io.fabric8 - open-cluster-management-server-mock - 5.12.4 - - - io.fabric8 - open-cluster-management-tests - 5.12.4 - - - io.fabric8 - openclustermanagement-examples - 5.12.4 - - - io.fabric8 - openshift-server-mock - 5.12.4 - - - io.fabric8 - kubernetes-examples - 5.12.4 - - - io.fabric8.kubernetes - kubernetes-karaf - 5.12.4 - - - io.fabric8.kubernetes - kubernetes-karaf-itests - 5.12.4 - - - io.fabric8 - crd-generator-api - 5.12.4 - - - io.fabric8 - crd-generator-apt - 5.12.4 - - - io.fabric8 - kubernetes-test - 5.12.4 - - - io.fabric8 - kubernetes-openshift-uberjar - 5.12.4 - - - - - - - - - - - - diff --git a/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom.sha1 b/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom.sha1 deleted file mode 100644 index dad97c7cb..000000000 --- a/code/arachne/io/fabric8/kubernetes-client-bom/5.12.4/kubernetes-client-bom-5.12.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e79360b6c85f975006571e2251496c9677a15d19 \ No newline at end of file diff --git a/code/arachne/io/github/x-stream/mxparser/1.2.2/_remote.repositories b/code/arachne/io/github/x-stream/mxparser/1.2.2/_remote.repositories deleted file mode 100644 index c1ea52ed8..000000000 --- a/code/arachne/io/github/x-stream/mxparser/1.2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:54 EDT 2024 -mxparser-1.2.2.pom>central= diff --git a/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom b/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom deleted file mode 100644 index 870c7ad61..000000000 --- a/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom +++ /dev/null @@ -1,639 +0,0 @@ - - - 4.0.0 - io.github.x-stream - mxparser - jar - 1.2.2 - MXParser - http://x-stream.github.io/mxparser - - MXParser is a fork of xpp3_min 1.1.7 containing only the parser with merged changes of the Plexus fork. - - - 2020 - - - Indiana University Extreme! Lab Software License - https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt - repo - - - - - - mxparser - XStream Committers - http://x-stream.github.io/team.html - - - - - - validate-changes - - - changes.xml - - - - - - org.apache.maven.plugins - maven-changes-plugin - - - validate-changes - package - - changes-validate - - - - - ${basedir}/changes.xml - true - - - - - - - mxparser-release - - [1.8,1.9) - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - - github - https://github.com/x-stream/mxparser/issues/ - - - GitHub Action - https://github.com/x-stream/mxparser/actions?query=workflow%3A%22CI+with+Maven%22 - - - - - - xmlpull - xmlpull - ${version.xmlpull} - - - - - junit - junit - ${version.junit} - test - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${version.plugin.maven.antrun} - - - org.apache.maven.plugins - maven-changes-plugin - ${version.plugin.maven.changes} - - - org.apache.maven.plugins - maven-clean-plugin - ${version.plugin.maven.clean} - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.plugin.maven.compiler} - - ${version.java.source} - ${version.java.target} - - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.plugin.maven.deploy} - - - org.apache.maven.plugins - maven-eclipse-plugin - - true - [artifactId] - - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.plugin.maven.gpg} - - ${gpg.keyname} - ${gpg.keyname} - - - - org.apache.maven.plugins - maven-install-plugin - ${version.plugin.maven.install} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.plugin.maven.jar} - - - - true - true - - - ${project.info.majorVersion}.${project.info.minorVersion} - Indiana University Extreme! Lab Software License - ${jar.module.name} - ${version.java.source} - ${version.java.target} - Maven ${maven.version} - ${maven.build.timestamp} - ${os.name} - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.maven.javadoc} - - - attach-javadocs - - jar - - - - - false - ${javadoc.xdoclint} - ${version.java.source} - - ${javadoc.link.javase} - - - - true - true - - - ${project.info.majorVersion}.${project.info.minorVersion} - Indiana University Extreme! Lab Software License - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${version.plugin.maven.jxr} - - - org.apache.maven.plugins - maven-release-plugin - ${version.plugin.maven.release} - - forked-path - deploy site-deploy - true - false - -Pmxparser-release - - - - org.apache.maven.plugins - maven-resources-plugin - ${version.plugin.maven.resources} - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${version.plugin.maven.scm-publish} - - Update site docs for version ${project.version}. - ${project.build.directory}/site - true - gh-pages - github - - - - org.apache.maven.plugins - maven-site-plugin - ${version.plugin.maven.site} - - true - - - - org.apache.maven.plugins - maven-source-plugin - ${version.plugin.maven.source} - - - attach-sources - package - - jar-no-fork - - - - - - - true - true - - - ${project.info.majorVersion}.${project.info.minorVersion} - 2 - ${project.name} Sources - ${project.artifactId}.sources - ${project.organization.name} Sources - ${project.info.osgiVersion} Sources - Indiana University Extreme! Lab Software License - ${project.artifactId};version=${project.info.osgiVersion} - ${version.java.source} - ${version.java.target} - Maven ${maven.version} - ${maven.build.timestamp} - ${os.name} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.plugin.maven.surefire} - - once - true - false - - - java.awt.headless - true - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.plugin.maven.surefire} - - - org.codehaus.mojo - build-helper-maven-plugin - ${version.plugin.mojo.build-helper} - - - org.apache.felix - maven-bundle-plugin - ${version.plugin.felix.bundle} - - ${project.build.directory}/OSGi - - <_noee>true - <_nouses>true - ${project.artifactId} - Indiana University Extreme! Lab Software License - ${project.info.majorVersion}.${project.info.minorVersion} - - - - false - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - versions - initialize - - maven-version - parse-version - - - project.info - - - - include-license - generate-resources - - add-resource - - - - - ${project.build.directory}/generated-resources - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - copy-license - generate-resources - - run - - - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - push-site - site-deploy - - publish-scm - - - - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - ${bundle.export.package} - ${bundle.import.package} - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-testCompile - - testCompile - - - ${version.java.test.source} - ${version.java.test.target} - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - - jar - - - - ${project.build.directory}/OSGi/MANIFEST.MF - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${version.plugin.maven.project-info-reports} - - - - index - summary - dependencies - issue-management - licenses - scm - - - - - false - - - - org.apache.maven.plugins - maven-changes-plugin - ${version.plugin.maven.changes} - - - - changes-report - - - - - ${basedir}/changes.xml - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.maven.javadoc} - - - - javadoc-no-fork - - - - - false - ${javadoc.xdoclint} - ${version.java.source} - - ${javadoc.link.javase} - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${version.plugin.maven.jxr} - - - - jxr - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.plugin.maven.surefire} - - - - report-only - - - - - - - - - - xmlpull - xmlpull - - - - - junit - junit - - - - - - ossrh-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2 - - - ossrh-snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - github - scm:git:ssh://git@github.com/x-stream/mxparser.git - - - - - https://github.com/x-stream/mxparser - scm:git:ssh://git@github.com/x-stream/mxparser.git - scm:git:ssh://git@github.com/x-stream/mxparser.git - v-1.2.2 - - - - UTF-8 - - 1.4 - 1.4 - 1.5 - 1.5 - - 2.3.7 - 3.0.0 - 2.12.1 - 3.1.0 - 3.8.0 - 3.0.0-M1 - 1.6 - 3.0.0-M1 - 3.2.0 - 3.2.0 - 2.5 - 3.1.0 - 2.5.3 - 3.2.0 - 3.0.0 - 3.9.1 - 3.2.1 - 3.0.0-M5 - 3.2.0 - - 1.1.3.1 - 4.13.1 - - ${jar.module.name};-noimport:=true - * - io.github.xstream.mxparser - http://docs.oracle.com/javase/8/docs/api/ - - - diff --git a/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom.sha1 b/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom.sha1 deleted file mode 100644 index d542012ee..000000000 --- a/code/arachne/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cb8503fb7e26d29467db5d3e4b5c58c3a2b16788 \ No newline at end of file diff --git a/code/arachne/io/jsonwebtoken/jjwt/0.9.1/_remote.repositories b/code/arachne/io/jsonwebtoken/jjwt/0.9.1/_remote.repositories deleted file mode 100644 index 251197cb4..000000000 --- a/code/arachne/io/jsonwebtoken/jjwt/0.9.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:22 EDT 2024 -jjwt-0.9.1.pom>central= diff --git a/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom b/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom deleted file mode 100644 index 0858ccf2e..000000000 --- a/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom +++ /dev/null @@ -1,481 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - io.jsonwebtoken - jjwt - 0.9.1 - JSON Web Token support for the JVM - jar - https://github.com/jwtk/jjwt - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - scm:git:https://github.com/jwtk/jjwt.git - scm:git:git@github.com:jwtk/jjwt.git - git@github.com:jwtk/jjwt.git - 0.9.1 - - - GitHub Issues - https://github.com/jwtk/jjwt/issues - - - TravisCI - https://travis-ci.org/jwtk/jjwt - - - - - - - false - - bintray-jwtk-coveralls-maven-plugin - bintray - https://dl.bintray.com/jwtk/coveralls-maven-plugin - - - - - - false - - bintray-jwtk-coveralls-maven-plugin - bintray-plugins - https://dl.bintray.com/jwtk/coveralls-maven-plugin - - - - - - - 3.0.2 - 3.6.1 - - 1.7 - UTF-8 - ${user.name}-${maven.build.timestamp} - - 2.9.6 - - - 1.56 - - - 2.4.11 - 1.2.3 - 3.5 - 4.12 - 2.0.0-beta.5 - 2.20.1 - 2.20.1 - 4.2.0 - - - - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - - - org.bouncycastle - bcprov-jdk15on - ${bouncycastle.version} - compile - true - - - - - com.google.android - android - 4.1.1.4 - provided - - - commons-logging - commons-logging - - - - - - - ch.qos.logback - logback-classic - ${logback.version} - test - - - org.codehaus.groovy - groovy-all - ${groovy.version} - test - - - org.easymock - easymock - ${easymock.version} - test - - - org.powermock - powermock-module-junit4 - ${powermock.version} - test - - - org.powermock - powermock-api-easymock - ${powermock.version} - test - - - org.powermock - powermock-core - ${powermock.version} - test - - - junit - junit - 4.12 - test - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4.1 - - - enforce-banned-dependencies - - enforce - - - - - true - - commons-logging - - - - true - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven.compiler.version} - - ${jdk.version} - ${jdk.version} - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-jar-plugin - ${maven.jar.version} - - - - true - true - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - org.codehaus.gmaven - gmaven-plugin - 1.5 - - 2.0 - - - - - - generateStubs - compile - generateTestStubs - testCompile - - - - - - org.codehaus.gmaven.runtime - gmaven-runtime-2.0 - 1.5 - - - org.codehaus.groovy - groovy-all - - - - - org.codehaus.groovy - groovy-all - ${groovy.version} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.plugin.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${failsafe.plugin.version} - - - **/*IT.java - **/*IT.groovy - **/*ITCase.java - **/*ITCase.groovy - - - **/*ManualIT.java - **/*ManualIT.groovy - - - - - - integration-test - verify - - - - - - org.openclover - clover-maven-plugin - ${clover.version} - - - **/*Test* - - io/jsonwebtoken/lang/* - - 100% - 100% - 100% - 100% - - - - clover - test - - instrument - check - clover - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.9.5 - - - - forked-path - false - -Psonatype-oss-release -Pdocs -Psign - true - - - - org.apache.felix - maven-bundle-plugin - 3.3.0 - true - - - bundle-manifest - process-classes - - manifest - - - - - - - - - - - - - - org.jwtk.coveralls - coveralls-maven-plugin - 4.4.0 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - - attach-javadocs - - jar - - - - - - - commons-lang - commons-lang - 2.6 - - - - - - - - jdk8 - - 1.8 - - - - -Xdoclint:none - - - - sign - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - docs - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - - attach-javadocs - - jar - - - - - - - commons-lang - commons-lang - 2.6 - - - - - - - - diff --git a/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom.sha1 b/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom.sha1 deleted file mode 100644 index d63c991f4..000000000 --- a/code/arachne/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c897bfecf65a226c8e45e14da346d1ab579217f6 \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-bom/1.12.5/_remote.repositories b/code/arachne/io/micrometer/micrometer-bom/1.12.5/_remote.repositories deleted file mode 100644 index 0ba725520..000000000 --- a/code/arachne/io/micrometer/micrometer-bom/1.12.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:33 EDT 2024 -micrometer-bom-1.12.5.pom>ohdsi= diff --git a/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom b/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom deleted file mode 100644 index 9c64b2fb9..000000000 --- a/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom +++ /dev/null @@ -1,207 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-bom - 1.12.5 - pom - micrometer-bom - Micrometer BOM (Bill of Materials) for managing Micrometer artifact versions - https://github.com/micrometer-metrics/micrometer - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - shakuzen - Tommy Ludwig - tludwig@vmware.com - - - - git@github.com:micrometer-metrics/micrometer.git - - - - - io.micrometer - micrometer-commons - 1.12.5 - - - io.micrometer - micrometer-core - 1.12.5 - - - io.micrometer - micrometer-jakarta9 - 1.12.5 - - - io.micrometer - micrometer-jetty11 - 1.12.5 - - - io.micrometer - micrometer-observation - 1.12.5 - - - io.micrometer - micrometer-observation-test - 1.12.5 - - - io.micrometer - micrometer-registry-appoptics - 1.12.5 - - - io.micrometer - micrometer-registry-atlas - 1.12.5 - - - io.micrometer - micrometer-registry-azure-monitor - 1.12.5 - - - io.micrometer - micrometer-registry-cloudwatch - 1.12.5 - - - io.micrometer - micrometer-registry-cloudwatch2 - 1.12.5 - - - io.micrometer - micrometer-registry-datadog - 1.12.5 - - - io.micrometer - micrometer-registry-dynatrace - 1.12.5 - - - io.micrometer - micrometer-registry-elastic - 1.12.5 - - - io.micrometer - micrometer-registry-ganglia - 1.12.5 - - - io.micrometer - micrometer-registry-graphite - 1.12.5 - - - io.micrometer - micrometer-registry-health - 1.12.5 - - - io.micrometer - micrometer-registry-humio - 1.12.5 - - - io.micrometer - micrometer-registry-influx - 1.12.5 - - - io.micrometer - micrometer-registry-jmx - 1.12.5 - - - io.micrometer - micrometer-registry-kairos - 1.12.5 - - - io.micrometer - micrometer-registry-new-relic - 1.12.5 - - - io.micrometer - micrometer-registry-opentsdb - 1.12.5 - - - io.micrometer - micrometer-registry-otlp - 1.12.5 - - - io.micrometer - micrometer-registry-prometheus - 1.12.5 - - - io.micrometer - micrometer-registry-signalfx - 1.12.5 - - - io.micrometer - micrometer-registry-stackdriver - 1.12.5 - - - io.micrometer - micrometer-registry-statsd - 1.12.5 - - - io.micrometer - micrometer-registry-wavefront - 1.12.5 - - - io.micrometer - micrometer-test - 1.12.5 - - - - - 1.0 - io.micrometer#micrometer-bom;1.12.5 - 1.12.5 - release - circleci - Linux - Etc/UTC - 2024-04-08T13:59:01.330994237Z - 2024-04-08_13:59:01 - 8.6 - /micrometer-bom - git@github.com:micrometer-metrics/micrometer.git - 52d1d12 - 52d1d1249324b691c355a70c53ae1921967449d3 - HEAD - ed5fdb4eabcb - deploy - 32110 - 32110 - https://circleci.com/gh/micrometer-metrics/micrometer/32110 - 21.0.2+13-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - - diff --git a/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.lastUpdated b/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.lastUpdated deleted file mode 100644 index 38dfa45ba..000000000 --- a/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:33 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.micrometer\:micrometer-bom\:pom\:1.12.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139813516 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139813610 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139813714 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139813847 diff --git a/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.sha1 b/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.sha1 deleted file mode 100644 index 09237101f..000000000 --- a/code/arachne/io/micrometer/micrometer-bom/1.12.5/micrometer-bom-1.12.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0e50095d99ff5e1250754a9347adbe1edf910399 \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-bom/1.5.1/_remote.repositories b/code/arachne/io/micrometer/micrometer-bom/1.5.1/_remote.repositories deleted file mode 100644 index e7e629799..000000000 --- a/code/arachne/io/micrometer/micrometer-bom/1.5.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:51 EDT 2024 -micrometer-bom-1.5.1.pom>local-repo= diff --git a/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom b/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom deleted file mode 100644 index 35807f992..000000000 --- a/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom +++ /dev/null @@ -1,174 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-bom - 1.5.1 - pom - - - - io.micrometer - micrometer-core - 1.5.1 - - - io.micrometer - micrometer-jersey2 - 1.5.1 - - - io.micrometer - micrometer-registry-appoptics - 1.5.1 - - - io.micrometer - micrometer-registry-atlas - 1.5.1 - - - io.micrometer - micrometer-registry-azure-monitor - 1.5.1 - - - io.micrometer - micrometer-registry-cloudwatch - 1.5.1 - - - io.micrometer - micrometer-registry-cloudwatch2 - 1.5.1 - - - io.micrometer - micrometer-registry-datadog - 1.5.1 - - - io.micrometer - micrometer-registry-dynatrace - 1.5.1 - - - io.micrometer - micrometer-registry-elastic - 1.5.1 - - - io.micrometer - micrometer-registry-ganglia - 1.5.1 - - - io.micrometer - micrometer-registry-graphite - 1.5.1 - - - io.micrometer - micrometer-registry-humio - 1.5.1 - - - io.micrometer - micrometer-registry-influx - 1.5.1 - - - io.micrometer - micrometer-registry-jmx - 1.5.1 - - - io.micrometer - micrometer-registry-kairos - 1.5.1 - - - io.micrometer - micrometer-registry-new-relic - 1.5.1 - - - io.micrometer - micrometer-registry-opentsdb - 1.5.1 - - - io.micrometer - micrometer-registry-prometheus - 1.5.1 - - - io.micrometer - micrometer-registry-signalfx - 1.5.1 - - - io.micrometer - micrometer-registry-stackdriver - 1.5.1 - - - io.micrometer - micrometer-registry-statsd - 1.5.1 - - - io.micrometer - micrometer-registry-wavefront - 1.5.1 - - - io.micrometer - micrometer-test - 1.5.1 - - - - micrometer-bom - Micrometer BOM (Bill of Materials) for managing Micrometer artifact versions - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - 1.0 - io.micrometer#micrometer-bom;1.5.1 - 1.5.1 - release - circleci - Linux - 2020-05-08_16:43:24 - 6.4 - /micrometer-bom - git@github.com:micrometer-metrics/micrometer.git - 5984c10 - 5984c10fc12b781652e27a9ea95c439f96e73cf8 - 82db0d896427 - LOCAL - LOCAL - LOCAL - 14.0.1+7 (Oracle Corporation) - 14.0.1 - tludwig@vmware.com - tludwig@vmware.com - - https://github.com/micrometer-metrics/micrometer - - git@github.com:micrometer-metrics/micrometer.git - - - - shakuzen - Tommy Ludwig - tludwig@vmware.com - - - diff --git a/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.lastUpdated b/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.lastUpdated deleted file mode 100644 index 0dff39163..000000000 --- a/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:51 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139891613 -http\://0.0.0.0/.error=Could not transfer artifact io.micrometer\:micrometer-bom\:pom\:1.5.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139891254 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139891258 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139891445 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139891559 diff --git a/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.sha1 b/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.sha1 deleted file mode 100644 index 056c15457..000000000 --- a/code/arachne/io/micrometer/micrometer-bom/1.5.1/micrometer-bom-1.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fb57aac12f2370e7115ab8af5265322397cae49e \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-commons/1.12.5/_remote.repositories b/code/arachne/io/micrometer/micrometer-commons/1.12.5/_remote.repositories deleted file mode 100644 index 16ba95d7c..000000000 --- a/code/arachne/io/micrometer/micrometer-commons/1.12.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:47 EDT 2024 -micrometer-commons-1.12.5.pom>central= diff --git a/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom b/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom deleted file mode 100644 index 529e40057..000000000 --- a/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-commons - 1.12.5 - micrometer-commons - Module containing common code - https://github.com/micrometer-metrics/micrometer - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - shakuzen - Tommy Ludwig - tludwig@vmware.com - - - - git@github.com:micrometer-metrics/micrometer.git - - - - com.google.code.findbugs - jsr305 - 3.0.2 - compile - true - - - ch.qos.logback - logback-classic - 1.2.13 - compile - true - - - org.aspectj - aspectjweaver - 1.9.22 - compile - true - - - - 1.0 - io.micrometer#micrometer-commons;1.12.5 - 1.12.5 - release - circleci - Linux - Etc/UTC - 2024-04-08T13:59:01.393716590Z - 2024-04-08_13:59:01 - 8.6 - /micrometer-commons - git@github.com:micrometer-metrics/micrometer.git - 52d1d12 - 52d1d1249324b691c355a70c53ae1921967449d3 - HEAD - ed5fdb4eabcb - deploy - 32110 - 32110 - https://circleci.com/gh/micrometer-metrics/micrometer/32110 - 21.0.2+13-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - 1.8 - 1.8 - 21 - - diff --git a/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom.sha1 b/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom.sha1 deleted file mode 100644 index 83f538def..000000000 --- a/code/arachne/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -282afe1283645b3b6aa96200414dc662b0b23873 \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-core/1.12.5/_remote.repositories b/code/arachne/io/micrometer/micrometer-core/1.12.5/_remote.repositories deleted file mode 100644 index cb9475ffe..000000000 --- a/code/arachne/io/micrometer/micrometer-core/1.12.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:53 EDT 2024 -micrometer-core-1.12.5.pom>central= diff --git a/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom b/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom deleted file mode 100644 index c972efb86..000000000 --- a/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom +++ /dev/null @@ -1,304 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-core - 1.12.5 - micrometer-core - Core module of Micrometer containing instrumentation API and implementation - https://github.com/micrometer-metrics/micrometer - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - shakuzen - Tommy Ludwig - tludwig@vmware.com - - - - git@github.com:micrometer-metrics/micrometer.git - - - - io.micrometer - micrometer-commons - 1.12.5 - compile - - - io.micrometer - micrometer-observation - 1.12.5 - compile - - - org.hdrhistogram - HdrHistogram - 2.1.12 - runtime - - - org.latencyutils - LatencyUtils - 2.0.3 - runtime - - - org.hdrhistogram - HdrHistogram - - - - - com.google.code.findbugs - jsr305 - 3.0.2 - compile - true - - - org.aspectj - aspectjweaver - 1.9.22 - compile - true - - - io.dropwizard.metrics - metrics-core - 4.2.25 - compile - true - - - com.google.guava - guava - 32.1.2-jre - compile - true - - - com.github.ben-manes.caffeine - caffeine - 2.9.3 - compile - true - - - net.sf.ehcache - ehcache - 2.10.9.2 - compile - true - - - javax.cache - cache-api - 1.1.1 - compile - true - - - com.hazelcast - hazelcast - 5.3.2 - compile - true - - - org.hibernate - hibernate-entitymanager - 5.6.15.Final - compile - true - - - org.eclipse.jetty - jetty-server - 9.4.54.v20240208 - compile - true - - - jakarta.servlet - jakarta.servlet-api - 5.0.0 - compile - true - - - org.eclipse.jetty - jetty-client - 9.4.54.v20240208 - compile - true - - - org.apache.tomcat.embed - tomcat-embed-core - 8.5.100 - compile - true - - - org.glassfish.jersey.core - jersey-server - 2.41 - compile - true - - - io.grpc - grpc-api - 1.58.0 - compile - true - - - io.netty - netty-transport - 4.1.108.Final - compile - true - - - org.apache.httpcomponents - httpclient - 4.5.14 - compile - true - - - org.apache.httpcomponents - httpasyncclient - 4.1.5 - compile - true - - - org.apache.httpcomponents.client5 - httpclient5 - 5.2.3 - compile - true - - - com.netflix.hystrix - hystrix-core - 1.5.12 - compile - true - - - ch.qos.logback - logback-classic - 1.2.13 - compile - true - - - org.apache.logging.log4j - log4j-core - 2.21.1 - compile - true - - - com.squareup.okhttp3 - okhttp - 4.11.0 - compile - true - - - org.mongodb - mongodb-driver-sync - 4.11.2 - compile - true - - - org.jooq - jooq - 3.14.16 - compile - true - - - org.apache.kafka - kafka-clients - 2.8.2 - compile - true - - - org.apache.kafka - kafka-streams - 2.8.2 - compile - true - - - io.micrometer - context-propagation - 1.1.1 - compile - true - - - org.jetbrains.kotlin - kotlin-reflect - 1.7.22 - compile - true - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.7.22 - compile - true - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.7.3 - compile - true - - - - 1.0 - io.micrometer#micrometer-core;1.12.5 - 1.12.5 - release - circleci - Linux - Etc/UTC - 2024-04-08T13:59:01.455218596Z - 2024-04-08_13:59:01 - 8.6 - /micrometer-core - git@github.com:micrometer-metrics/micrometer.git - 52d1d12 - 52d1d1249324b691c355a70c53ae1921967449d3 - HEAD - ed5fdb4eabcb - deploy - 32110 - 32110 - https://circleci.com/gh/micrometer-metrics/micrometer/32110 - 21.0.2+13-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - 1.8 - 1.8 - 21 - - diff --git a/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom.sha1 b/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom.sha1 deleted file mode 100644 index 566e36fda..000000000 --- a/code/arachne/io/micrometer/micrometer-core/1.12.5/micrometer-core-1.12.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6f18688e44c532650b2f1067b6e2c6f9ff6d589d \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-observation/1.12.5/_remote.repositories b/code/arachne/io/micrometer/micrometer-observation/1.12.5/_remote.repositories deleted file mode 100644 index a0cc7bb91..000000000 --- a/code/arachne/io/micrometer/micrometer-observation/1.12.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:47 EDT 2024 -micrometer-observation-1.12.5.pom>central= diff --git a/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom b/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom deleted file mode 100644 index 1007fbe0c..000000000 --- a/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-observation - 1.12.5 - micrometer-observation - Module containing Observation related code - https://github.com/micrometer-metrics/micrometer - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - shakuzen - Tommy Ludwig - tludwig@vmware.com - - - - git@github.com:micrometer-metrics/micrometer.git - - - - io.micrometer - micrometer-commons - 1.12.5 - compile - - - com.google.code.findbugs - jsr305 - 3.0.2 - compile - true - - - io.micrometer - context-propagation - 1.1.1 - compile - true - - - javax.servlet - javax.servlet-api - 4.0.1 - compile - true - - - org.aspectj - aspectjweaver - 1.9.22 - compile - true - - - - 1.0 - io.micrometer#micrometer-observation;1.12.5 - 1.12.5 - release - circleci - Linux - Etc/UTC - 2024-04-08T13:59:01.622808235Z - 2024-04-08_13:59:01 - 8.6 - /micrometer-observation - git@github.com:micrometer-metrics/micrometer.git - 52d1d12 - 52d1d1249324b691c355a70c53ae1921967449d3 - HEAD - ed5fdb4eabcb - deploy - 32110 - 32110 - https://circleci.com/gh/micrometer-metrics/micrometer/32110 - 21.0.2+13-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - 1.8 - 1.8 - 21 - - diff --git a/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom.sha1 b/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom.sha1 deleted file mode 100644 index 91e4650ec..000000000 --- a/code/arachne/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6e21f9ef115a4ea4b780bce6094eaf359c87664d \ No newline at end of file diff --git a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/_remote.repositories b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/_remote.repositories deleted file mode 100644 index 192a395eb..000000000 --- a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:34 EDT 2024 -micrometer-tracing-bom-1.2.5.pom>ohdsi= diff --git a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom deleted file mode 100644 index b93940bb0..000000000 --- a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom +++ /dev/null @@ -1,109 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-tracing-bom - 1.2.5 - pom - micrometer-tracing-bom - Micrometer Tracing BOM (Bill of Materials) for managing Micrometer Tracing artifact versions - https://github.com/micrometer-metrics/tracing - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - shakuzen - Tommy Ludwig - tludwig@vmware.com - - - jonatan-ivanov - Jonatan Ivanov - jivanov@vmware.com - - - marcingrzejszczak - Marcin Grzejszczak - mgrzejszczak@vmware.com - - - - git@github.com:micrometer-metrics/tracing.git - - - - - io.micrometer - docs - 1.2.5 - - - io.micrometer - micrometer-tracing - 1.2.5 - - - io.micrometer - micrometer-tracing-bridge-brave - 1.2.5 - - - io.micrometer - micrometer-tracing-bridge-otel - 1.2.5 - - - io.micrometer - micrometer-tracing-integration-test - 1.2.5 - - - io.micrometer - micrometer-tracing-reporter-wavefront - 1.2.5 - - - io.micrometer - micrometer-tracing-test - 1.2.5 - - - io.micrometer - micrometer-bom - 1.12.5 - pom - import - - - - - 1.0 - io.micrometer#micrometer-tracing-bom;1.2.5 - 1.2.5 - release - circleci - Linux - Etc/UTC - 2024-04-08T14:17:34.242591221Z - 2024-04-08_14:17:34 - 8.6 - /micrometer-tracing-bom - git@github.com:micrometer-metrics/tracing.git - 27935c7 - 27935c71f00e51bff3cc818118cbe7b559718a1f - HEAD - de2cf3926638 - deploy - 6378 - 6378 - https://circleci.com/gh/micrometer-metrics/tracing/6378 - 20.0.1+9 (Eclipse Adoptium) - tludwig@vmware.com,jivanov@vmware.com,mgrzejszczak@vmware.com - tludwig@vmware.com,jivanov@vmware.com,mgrzejszczak@vmware.com - - diff --git a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.lastUpdated b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.lastUpdated deleted file mode 100644 index 1a5dd5fc1..000000000 --- a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:34 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.micrometer\:micrometer-tracing-bom\:pom\:1.2.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139813856 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139813954 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139814272 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139814389 diff --git a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.sha1 b/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.sha1 deleted file mode 100644 index 68a0c70d8..000000000 --- a/code/arachne/io/micrometer/micrometer-tracing-bom/1.2.5/micrometer-tracing-bom-1.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2251c42c29811b37b6d785267b8c795c816a71e1 \ No newline at end of file diff --git a/code/arachne/io/netty/netty-bom/4.1.107.Final/_remote.repositories b/code/arachne/io/netty/netty-bom/4.1.107.Final/_remote.repositories deleted file mode 100644 index 1215854e8..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.107.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:51 EDT 2024 -netty-bom-4.1.107.Final.pom>central= diff --git a/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom b/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom deleted file mode 100644 index b16ebdb37..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom +++ /dev/null @@ -1,387 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - - - io.netty - netty-bom - 4.1.107.Final - pom - - Netty/BOM - Netty (Bill of Materials) - https://netty.io/ - - - The Netty Project - https://netty.io/ - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - 2008 - - - https://github.com/netty/netty - scm:git:git://github.com/netty/netty.git - scm:git:ssh://git@github.com/netty/netty.git - netty-4.1.107.Final - - - - - netty.io - The Netty Project Contributors - netty@googlegroups.com - https://netty.io/ - The Netty Project - https://netty.io/ - - - - - - 2.0.61.Final - - - - - - com.commsen.maven - bom-helper-maven-plugin - 0.4.0 - - - - - - - - io.netty - netty-buffer - ${project.version} - - - io.netty - netty-codec - ${project.version} - - - io.netty - netty-codec-dns - ${project.version} - - - io.netty - netty-codec-haproxy - ${project.version} - - - io.netty - netty-codec-http - ${project.version} - - - io.netty - netty-codec-http2 - ${project.version} - - - io.netty - netty-codec-memcache - ${project.version} - - - io.netty - netty-codec-mqtt - ${project.version} - - - io.netty - netty-codec-redis - ${project.version} - - - io.netty - netty-codec-smtp - ${project.version} - - - io.netty - netty-codec-socks - ${project.version} - - - io.netty - netty-codec-stomp - ${project.version} - - - io.netty - netty-codec-xml - ${project.version} - - - io.netty - netty-common - ${project.version} - - - io.netty - netty-dev-tools - ${project.version} - - - io.netty - netty-handler - ${project.version} - - - io.netty - netty-handler-proxy - ${project.version} - - - io.netty - netty-handler-ssl-ocsp - ${project.version} - - - io.netty - netty-resolver - ${project.version} - - - io.netty - netty-resolver-dns - ${project.version} - - - io.netty - netty-transport - ${project.version} - - - io.netty - netty-transport-rxtx - ${project.version} - - - io.netty - netty-transport-sctp - ${project.version} - - - io.netty - netty-transport-udt - ${project.version} - - - io.netty - netty-example - ${project.version} - - - io.netty - netty-all - ${project.version} - - - io.netty - netty-resolver-dns-classes-macos - ${project.version} - - - io.netty - netty-resolver-dns-native-macos - ${project.version} - - - io.netty - netty-resolver-dns-native-macos - ${project.version} - osx-x86_64 - - - io.netty - netty-resolver-dns-native-macos - ${project.version} - osx-aarch_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - - - io.netty - netty-transport-native-unix-common - ${project.version} - linux-aarch_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - linux-riscv64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - linux-x86_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - osx-x86_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - osx-aarch_64 - - - io.netty - netty-transport-classes-epoll - ${project.version} - - - io.netty - netty-transport-native-epoll - ${project.version} - - - io.netty - netty-transport-native-epoll - ${project.version} - linux-aarch_64 - - - io.netty - netty-transport-native-epoll - ${project.version} - linux-riscv64 - - - io.netty - netty-transport-native-epoll - ${project.version} - linux-x86_64 - - - io.netty - netty-transport-classes-kqueue - ${project.version} - - - io.netty - netty-transport-native-kqueue - ${project.version} - - - io.netty - netty-transport-native-kqueue - ${project.version} - osx-x86_64 - - - io.netty - netty-transport-native-kqueue - ${project.version} - osx-aarch_64 - - - - io.netty - netty-tcnative-classes - ${tcnative.version} - - - io.netty - netty-tcnative - ${tcnative.version} - linux-x86_64 - - - io.netty - netty-tcnative - ${tcnative.version} - linux-x86_64-fedora - - - io.netty - netty-tcnative - ${tcnative.version} - linux-aarch_64-fedora - - - io.netty - netty-tcnative - ${tcnative.version} - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - linux-x86_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - linux-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - osx-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - windows-x86_64 - - - - diff --git a/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom.sha1 b/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom.sha1 deleted file mode 100644 index 152649368..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3eaa3b12c0e8140d40c9dc9aabcef31f4b2d320b \ No newline at end of file diff --git a/code/arachne/io/netty/netty-bom/4.1.109.Final/_remote.repositories b/code/arachne/io/netty/netty-bom/4.1.109.Final/_remote.repositories deleted file mode 100644 index a924f3817..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.109.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:35 EDT 2024 -netty-bom-4.1.109.Final.pom>ohdsi= diff --git a/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom b/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom deleted file mode 100644 index af971daee..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom +++ /dev/null @@ -1,387 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - - - io.netty - netty-bom - 4.1.109.Final - pom - - Netty/BOM - Netty (Bill of Materials) - https://netty.io/ - - - The Netty Project - https://netty.io/ - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - 2008 - - - https://github.com/netty/netty - scm:git:git://github.com/netty/netty.git - scm:git:ssh://git@github.com/netty/netty.git - netty-4.1.109.Final - - - - - netty.io - The Netty Project Contributors - netty@googlegroups.com - https://netty.io/ - The Netty Project - https://netty.io/ - - - - - - 2.0.65.Final - - - - - - com.commsen.maven - bom-helper-maven-plugin - 0.4.0 - - - - - - - - io.netty - netty-buffer - ${project.version} - - - io.netty - netty-codec - ${project.version} - - - io.netty - netty-codec-dns - ${project.version} - - - io.netty - netty-codec-haproxy - ${project.version} - - - io.netty - netty-codec-http - ${project.version} - - - io.netty - netty-codec-http2 - ${project.version} - - - io.netty - netty-codec-memcache - ${project.version} - - - io.netty - netty-codec-mqtt - ${project.version} - - - io.netty - netty-codec-redis - ${project.version} - - - io.netty - netty-codec-smtp - ${project.version} - - - io.netty - netty-codec-socks - ${project.version} - - - io.netty - netty-codec-stomp - ${project.version} - - - io.netty - netty-codec-xml - ${project.version} - - - io.netty - netty-common - ${project.version} - - - io.netty - netty-dev-tools - ${project.version} - - - io.netty - netty-handler - ${project.version} - - - io.netty - netty-handler-proxy - ${project.version} - - - io.netty - netty-handler-ssl-ocsp - ${project.version} - - - io.netty - netty-resolver - ${project.version} - - - io.netty - netty-resolver-dns - ${project.version} - - - io.netty - netty-transport - ${project.version} - - - io.netty - netty-transport-rxtx - ${project.version} - - - io.netty - netty-transport-sctp - ${project.version} - - - io.netty - netty-transport-udt - ${project.version} - - - io.netty - netty-example - ${project.version} - - - io.netty - netty-all - ${project.version} - - - io.netty - netty-resolver-dns-classes-macos - ${project.version} - - - io.netty - netty-resolver-dns-native-macos - ${project.version} - - - io.netty - netty-resolver-dns-native-macos - ${project.version} - osx-x86_64 - - - io.netty - netty-resolver-dns-native-macos - ${project.version} - osx-aarch_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - - - io.netty - netty-transport-native-unix-common - ${project.version} - linux-aarch_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - linux-riscv64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - linux-x86_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - osx-x86_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - osx-aarch_64 - - - io.netty - netty-transport-classes-epoll - ${project.version} - - - io.netty - netty-transport-native-epoll - ${project.version} - - - io.netty - netty-transport-native-epoll - ${project.version} - linux-aarch_64 - - - io.netty - netty-transport-native-epoll - ${project.version} - linux-riscv64 - - - io.netty - netty-transport-native-epoll - ${project.version} - linux-x86_64 - - - io.netty - netty-transport-classes-kqueue - ${project.version} - - - io.netty - netty-transport-native-kqueue - ${project.version} - - - io.netty - netty-transport-native-kqueue - ${project.version} - osx-x86_64 - - - io.netty - netty-transport-native-kqueue - ${project.version} - osx-aarch_64 - - - - io.netty - netty-tcnative-classes - ${tcnative.version} - - - io.netty - netty-tcnative - ${tcnative.version} - linux-x86_64 - - - io.netty - netty-tcnative - ${tcnative.version} - linux-x86_64-fedora - - - io.netty - netty-tcnative - ${tcnative.version} - linux-aarch_64-fedora - - - io.netty - netty-tcnative - ${tcnative.version} - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - linux-x86_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - linux-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - osx-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - windows-x86_64 - - - - diff --git a/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.lastUpdated b/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.lastUpdated deleted file mode 100644 index 4a5bfa32f..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:35 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.netty\:netty-bom\:pom\:4.1.109.Final from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139814745 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139814849 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139815044 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139815208 diff --git a/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.sha1 b/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.sha1 deleted file mode 100644 index 085b12211..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.109.Final/netty-bom-4.1.109.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e686c2955652387e7417e8fd0997e9d611ae2362 \ No newline at end of file diff --git a/code/arachne/io/netty/netty-bom/4.1.49.Final/_remote.repositories b/code/arachne/io/netty/netty-bom/4.1.49.Final/_remote.repositories deleted file mode 100644 index 3f377179d..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.49.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:51 EDT 2024 -netty-bom-4.1.49.Final.pom>local-repo= diff --git a/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom b/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom deleted file mode 100644 index f6dcadabf..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom +++ /dev/null @@ -1,235 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - - - io.netty - netty-bom - 4.1.49.Final - pom - - Netty/BOM - Netty (Bill of Materials) - https://netty.io/ - - - The Netty Project - https://netty.io/ - - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - 2008 - - - https://github.com/netty/netty - scm:git:git://github.com/netty/netty.git - scm:git:ssh://git@github.com/netty/netty.git - netty-4.1.49.Final - - - - - netty.io - The Netty Project Contributors - netty@googlegroups.com - https://netty.io/ - The Netty Project - https://netty.io/ - - - - - - - - io.netty - netty-buffer - 4.1.49.Final - - - io.netty - netty-codec - 4.1.49.Final - - - io.netty - netty-codec-dns - 4.1.49.Final - - - io.netty - netty-codec-haproxy - 4.1.49.Final - - - io.netty - netty-codec-http - 4.1.49.Final - - - io.netty - netty-codec-http2 - 4.1.49.Final - - - io.netty - netty-codec-memcache - 4.1.49.Final - - - io.netty - netty-codec-mqtt - 4.1.49.Final - - - io.netty - netty-codec-redis - 4.1.49.Final - - - io.netty - netty-codec-smtp - 4.1.49.Final - - - io.netty - netty-codec-socks - 4.1.49.Final - - - io.netty - netty-codec-stomp - 4.1.49.Final - - - io.netty - netty-codec-xml - 4.1.49.Final - - - io.netty - netty-common - 4.1.49.Final - - - io.netty - netty-dev-tools - 4.1.49.Final - - - io.netty - netty-handler - 4.1.49.Final - - - io.netty - netty-handler-proxy - 4.1.49.Final - - - io.netty - netty-resolver - 4.1.49.Final - - - io.netty - netty-resolver-dns - 4.1.49.Final - - - io.netty - netty-transport - 4.1.49.Final - - - io.netty - netty-transport-rxtx - 4.1.49.Final - - - io.netty - netty-transport-sctp - 4.1.49.Final - - - io.netty - netty-transport-udt - 4.1.49.Final - - - io.netty - netty-example - 4.1.49.Final - - - io.netty - netty-all - 4.1.49.Final - - - io.netty - netty-transport-native-unix-common - 4.1.49.Final - - - io.netty - netty-transport-native-unix-common - 4.1.49.Final - linux-x86_64 - - - io.netty - netty-transport-native-unix-common - 4.1.49.Final - osx-x86_64 - - - io.netty - netty-transport-native-epoll - 4.1.49.Final - - - io.netty - netty-transport-native-epoll - 4.1.49.Final - linux-x86_64 - - - io.netty - netty-transport-native-kqueue - 4.1.49.Final - - - io.netty - netty-transport-native-kqueue - 4.1.49.Final - osx-x86_64 - - - - diff --git a/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.lastUpdated b/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.lastUpdated deleted file mode 100644 index 4a650d5ce..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:51 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139891975 -http\://0.0.0.0/.error=Could not transfer artifact io.netty\:netty-bom\:pom\:4.1.49.Final from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139891702 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139891708 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139891865 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139891927 diff --git a/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.sha1 b/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.sha1 deleted file mode 100644 index 12a925418..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.49.Final/netty-bom-4.1.49.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3d86dbc337441ed287ca9abc91c016aacd1bb4a4 \ No newline at end of file diff --git a/code/arachne/io/netty/netty-bom/4.1.97.Final/_remote.repositories b/code/arachne/io/netty/netty-bom/4.1.97.Final/_remote.repositories deleted file mode 100644 index 60b86e8ed..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.97.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:50 EDT 2024 -netty-bom-4.1.97.Final.pom>central= diff --git a/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom b/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom deleted file mode 100644 index 8c54992b1..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom +++ /dev/null @@ -1,375 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - - - io.netty - netty-bom - 4.1.97.Final - pom - - Netty/BOM - Netty (Bill of Materials) - https://netty.io/ - - - The Netty Project - https://netty.io/ - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - 2008 - - - https://github.com/netty/netty - scm:git:git://github.com/netty/netty.git - scm:git:ssh://git@github.com/netty/netty.git - netty-4.1.97.Final - - - - - netty.io - The Netty Project Contributors - netty@googlegroups.com - https://netty.io/ - The Netty Project - https://netty.io/ - - - - - - 2.0.61.Final - - - - - - com.commsen.maven - bom-helper-maven-plugin - 0.4.0 - - - - - - - - io.netty - netty-buffer - ${project.version} - - - io.netty - netty-codec - ${project.version} - - - io.netty - netty-codec-dns - ${project.version} - - - io.netty - netty-codec-haproxy - ${project.version} - - - io.netty - netty-codec-http - ${project.version} - - - io.netty - netty-codec-http2 - ${project.version} - - - io.netty - netty-codec-memcache - ${project.version} - - - io.netty - netty-codec-mqtt - ${project.version} - - - io.netty - netty-codec-redis - ${project.version} - - - io.netty - netty-codec-smtp - ${project.version} - - - io.netty - netty-codec-socks - ${project.version} - - - io.netty - netty-codec-stomp - ${project.version} - - - io.netty - netty-codec-xml - ${project.version} - - - io.netty - netty-common - ${project.version} - - - io.netty - netty-dev-tools - ${project.version} - - - io.netty - netty-handler - ${project.version} - - - io.netty - netty-handler-proxy - ${project.version} - - - io.netty - netty-handler-ssl-ocsp - ${project.version} - - - io.netty - netty-resolver - ${project.version} - - - io.netty - netty-resolver-dns - ${project.version} - - - io.netty - netty-transport - ${project.version} - - - io.netty - netty-transport-rxtx - ${project.version} - - - io.netty - netty-transport-sctp - ${project.version} - - - io.netty - netty-transport-udt - ${project.version} - - - io.netty - netty-example - ${project.version} - - - io.netty - netty-all - ${project.version} - - - io.netty - netty-resolver-dns-classes-macos - ${project.version} - - - io.netty - netty-resolver-dns-native-macos - ${project.version} - - - io.netty - netty-resolver-dns-native-macos - ${project.version} - osx-x86_64 - - - io.netty - netty-resolver-dns-native-macos - ${project.version} - osx-aarch_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - - - io.netty - netty-transport-native-unix-common - ${project.version} - linux-aarch_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - linux-x86_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - osx-x86_64 - - - io.netty - netty-transport-native-unix-common - ${project.version} - osx-aarch_64 - - - io.netty - netty-transport-classes-epoll - ${project.version} - - - io.netty - netty-transport-native-epoll - ${project.version} - - - io.netty - netty-transport-native-epoll - ${project.version} - linux-aarch_64 - - - io.netty - netty-transport-native-epoll - ${project.version} - linux-x86_64 - - - io.netty - netty-transport-classes-kqueue - ${project.version} - - - io.netty - netty-transport-native-kqueue - ${project.version} - - - io.netty - netty-transport-native-kqueue - ${project.version} - osx-x86_64 - - - io.netty - netty-transport-native-kqueue - ${project.version} - osx-aarch_64 - - - - io.netty - netty-tcnative-classes - ${tcnative.version} - - - io.netty - netty-tcnative - ${tcnative.version} - linux-x86_64 - - - io.netty - netty-tcnative - ${tcnative.version} - linux-x86_64-fedora - - - io.netty - netty-tcnative - ${tcnative.version} - linux-aarch_64-fedora - - - io.netty - netty-tcnative - ${tcnative.version} - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - linux-x86_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - linux-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - osx-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - ${tcnative.version} - windows-x86_64 - - - - diff --git a/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom.sha1 b/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom.sha1 deleted file mode 100644 index f8f0141f1..000000000 --- a/code/arachne/io/netty/netty-bom/4.1.97.Final/netty-bom-4.1.97.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -59402eabe8a5babbda7b3209ab0b178f396ae893 \ No newline at end of file diff --git a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/_remote.repositories b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/_remote.repositories deleted file mode 100644 index de8f88604..000000000 --- a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:36 EDT 2024 -opentelemetry-bom-1.31.0.pom>ohdsi= diff --git a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom deleted file mode 100644 index 8d1fb283c..000000000 --- a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - - - 4.0.0 - io.opentelemetry - opentelemetry-bom - 1.31.0 - pom - OpenTelemetry Java - OpenTelemetry Bill of Materials - https://github.com/open-telemetry/opentelemetry-java - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - opentelemetry - OpenTelemetry - https://github.com/open-telemetry/community - - - - scm:git:git@github.com:open-telemetry/opentelemetry-java.git - scm:git:git@github.com:open-telemetry/opentelemetry-java.git - git@github.com:open-telemetry/opentelemetry-java.git - - - - - io.opentelemetry - opentelemetry-context - 1.31.0 - - - io.opentelemetry - opentelemetry-opentracing-shim - 1.31.0 - - - io.opentelemetry - opentelemetry-api - 1.31.0 - - - io.opentelemetry - opentelemetry-exporter-common - 1.31.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger - 1.31.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger-thrift - 1.31.0 - - - io.opentelemetry - opentelemetry-exporter-logging - 1.31.0 - - - io.opentelemetry - opentelemetry-exporter-logging-otlp - 1.31.0 - - - io.opentelemetry - opentelemetry-exporter-zipkin - 1.31.0 - - - io.opentelemetry - opentelemetry-extension-kotlin - 1.31.0 - - - io.opentelemetry - opentelemetry-extension-trace-propagators - 1.31.0 - - - io.opentelemetry - opentelemetry-sdk - 1.31.0 - - - io.opentelemetry - opentelemetry-sdk-common - 1.31.0 - - - io.opentelemetry - opentelemetry-sdk-logs - 1.31.0 - - - io.opentelemetry - opentelemetry-sdk-metrics - 1.31.0 - - - io.opentelemetry - opentelemetry-sdk-testing - 1.31.0 - - - io.opentelemetry - opentelemetry-sdk-trace - 1.31.0 - - - io.opentelemetry - opentelemetry-sdk-extension-autoconfigure - 1.31.0 - - - io.opentelemetry - opentelemetry-sdk-extension-autoconfigure-spi - 1.31.0 - - - io.opentelemetry - opentelemetry-sdk-extension-jaeger-remote-sampler - 1.31.0 - - - io.opentelemetry - opentelemetry-exporter-otlp - 1.31.0 - - - io.opentelemetry - opentelemetry-exporter-otlp-common - 1.31.0 - - - io.opentelemetry - opentelemetry-exporter-sender-grpc-managed-channel - 1.31.0 - - - io.opentelemetry - opentelemetry-exporter-sender-okhttp - 1.31.0 - - - io.opentelemetry - opentelemetry-sdk-extension-aws - 1.19.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger-proto - 1.17.0 - - - io.opentelemetry - opentelemetry-extension-annotations - 1.18.0 - - - io.opentelemetry - opentelemetry-sdk-extension-resources - 1.19.0 - - - io.opentelemetry - opentelemetry-extension-aws - 1.20.1 - - - - diff --git a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.lastUpdated b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.lastUpdated deleted file mode 100644 index 7fcc72cf0..000000000 --- a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:36 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.opentelemetry\:opentelemetry-bom\:pom\:1.31.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139816079 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139816194 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139816325 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139816454 diff --git a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.sha1 b/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.sha1 deleted file mode 100644 index 4bcdd359a..000000000 --- a/code/arachne/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -33963c7ef93f9ff079ceac41f2d48c1e5d42b273 \ No newline at end of file diff --git a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/_remote.repositories b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/_remote.repositories deleted file mode 100644 index da973c710..000000000 --- a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:38 EDT 2024 -reactor-bom-2023.0.5.pom>ohdsi= diff --git a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom deleted file mode 100644 index aaeba82a1..000000000 --- a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - 4.0.0 - io.projectreactor - reactor-bom - 2023.0.5 - pom - Project Reactor 3 Release Train - BOM - Bill of materials to make sure a consistent set of versions is used for Reactor 3. - https://projectreactor.io - - reactor - https://github.com/reactor - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - simonbasle - Simon Baslé - sbasle at vmware.com - - - violetagg - Violeta Georgieva - violetag at vmware.com - - - odokuka - Oleh Dokuka - odokuka at vmware.com - - - - scm:git:git://github.com/reactor/reactor - scm:git:git://github.com/reactor/reactor - https://github.com/reactor/reactor - - - GitHub Issues - https://github.com/reactor - - - - - org.reactivestreams - reactive-streams - 1.0.4 - - - io.projectreactor - reactor-core - 3.6.5 - - - io.projectreactor - reactor-test - 3.6.5 - - - io.projectreactor - reactor-tools - 3.6.5 - - - io.projectreactor - reactor-core-micrometer - 1.1.5 - - - io.projectreactor.addons - reactor-extra - 3.5.1 - - - io.projectreactor.addons - reactor-adapter - 3.5.1 - - - io.projectreactor.netty - reactor-netty - 1.1.18 - - - io.projectreactor.netty - reactor-netty-core - 1.1.18 - - - io.projectreactor.netty - reactor-netty-http - 1.1.18 - - - io.projectreactor.netty - reactor-netty-http-brave - 1.1.18 - - - io.projectreactor.addons - reactor-pool - 1.0.5 - - - io.projectreactor.addons - reactor-pool-micrometer - 0.1.5 - - - io.projectreactor.kotlin - reactor-kotlin-extensions - 1.2.2 - - - io.projectreactor.kafka - reactor-kafka - 1.3.23 - - - - diff --git a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.lastUpdated b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.lastUpdated deleted file mode 100644 index e31549de2..000000000 --- a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:38 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.projectreactor\:reactor-bom\:pom\:2023.0.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139818089 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139818182 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139818370 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139818498 diff --git a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.sha1 b/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.sha1 deleted file mode 100644 index 53a8d7026..000000000 --- a/code/arachne/io/projectreactor/reactor-bom/2023.0.5/reactor-bom-2023.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -23e9418b6a3fe86350abb886c67b117f74af047d \ No newline at end of file diff --git a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/_remote.repositories b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/_remote.repositories deleted file mode 100644 index 8a453e0f4..000000000 --- a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:52 EDT 2024 -reactor-bom-Dysprosium-SR7.pom>local-repo= diff --git a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom deleted file mode 100644 index 4444cd3e4..000000000 --- a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom +++ /dev/null @@ -1,117 +0,0 @@ - - - 4.0.0 - io.projectreactor - reactor-bom - Dysprosium-SR7 - pom - Project Reactor 3 Release Train - BOM - Bill of materials to make sure a consistent set of versions is used for Reactor 3. - https://projectreactor.io - - Pivotal Software, Inc. - https://pivotal.io/ - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - smaldini - Stephane Maldini - smaldini at pivotal.io - - - simonbasle - Simon Baslé - sbasle at pivotal.io - - - violetagg - Violeta Georgieva - vgeorgieva at pivotal.io - - - bsideup - Sergei Egorov - segorov at pivotal.io - - - akarnokd - David Karnok - akarnokd at gmail.com - - - - scm:git:git://github.com/reactor/reactor - scm:git:git://github.com/reactor/reactor - https://github.com/reactor/reactor - - - GitHub Issues - https://github.com/reactor - - - - - org.reactivestreams - reactive-streams - 1.0.3 - - - io.projectreactor - reactor-core - 3.3.5.RELEASE - - - io.projectreactor - reactor-test - 3.3.5.RELEASE - - - io.projectreactor - reactor-tools - 3.3.5.RELEASE - - - io.projectreactor.addons - reactor-extra - 3.3.3.RELEASE - - - io.projectreactor.addons - reactor-adapter - 3.3.3.RELEASE - - - io.projectreactor.netty - reactor-netty - 0.9.7.RELEASE - - - io.projectreactor.addons - reactor-pool - 0.1.3.RELEASE - - - io.projectreactor.kafka - reactor-kafka - 1.2.2.RELEASE - - - io.projectreactor.rabbitmq - reactor-rabbitmq - 1.4.2.RELEASE - - - io.projectreactor.kotlin - reactor-kotlin-extensions - 1.0.2.RELEASE - - - - diff --git a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.lastUpdated b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.lastUpdated deleted file mode 100644 index 768037f61..000000000 --- a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:52 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139892676 -http\://0.0.0.0/.error=Could not transfer artifact io.projectreactor\:reactor-bom\:pom\:Dysprosium-SR7 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139892402 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139892411 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139892514 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139892625 diff --git a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.sha1 b/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.sha1 deleted file mode 100644 index 935fe5e9e..000000000 --- a/code/arachne/io/projectreactor/reactor-bom/Dysprosium-SR7/reactor-bom-Dysprosium-SR7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e34496676fd586f0aae9c81f1708ead38f166d4f \ No newline at end of file diff --git a/code/arachne/io/projectreactor/reactor-core/3.6.5/_remote.repositories b/code/arachne/io/projectreactor/reactor-core/3.6.5/_remote.repositories deleted file mode 100644 index 079c0c4a0..000000000 --- a/code/arachne/io/projectreactor/reactor-core/3.6.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:13 EDT 2024 -reactor-core-3.6.5.pom>central= diff --git a/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom b/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom deleted file mode 100644 index 2afc1f491..000000000 --- a/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - 4.0.0 - io.projectreactor - reactor-core - 3.6.5 - Non-Blocking Reactive Foundation for the JVM - Non-Blocking Reactive Foundation for the JVM - https://github.com/reactor/reactor-core - - reactor - https://github.com/reactor - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - simonbasle - Simon Baslé - sbasle@vmware.com - - - odokuka - Oleh Dokuka - odokuka@vmware.com - - - - scm:git:git://github.com/reactor/reactor-core - scm:git:git://github.com/reactor/reactor-core - https://github.com/reactor/reactor-core - - - GitHub Issues - https://github.com/reactor/reactor-core/issues - - - - org.reactivestreams - reactive-streams - 1.0.4 - compile - - - diff --git a/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom.sha1 b/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom.sha1 deleted file mode 100644 index cd9e0e17b..000000000 --- a/code/arachne/io/projectreactor/reactor-core/3.6.5/reactor-core-3.6.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5069a210f81d9a469727f6dc2da7c0b1c10e782a \ No newline at end of file diff --git a/code/arachne/io/prometheus/parent/0.16.0/_remote.repositories b/code/arachne/io/prometheus/parent/0.16.0/_remote.repositories deleted file mode 100644 index 52f3c68da..000000000 --- a/code/arachne/io/prometheus/parent/0.16.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:37 EDT 2024 -parent-0.16.0.pom>ohdsi= diff --git a/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom b/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom deleted file mode 100644 index f6116cc42..000000000 --- a/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom +++ /dev/null @@ -1,313 +0,0 @@ - - - pom - 4.0.0 - - io.prometheus - parent - 0.16.0 - - Prometheus Java Suite - http://github.com/prometheus/client_java - - The Prometheus Java Suite: Client Metrics, Exposition, and Examples - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:git@github.com:prometheus/client_java.git - scm:git:git@github.com:prometheus/client_java.git - git@github.com:prometheus/client_java.git - parent-0.16.0 - - - - - mtp - Matt T. Proud - matt.proud@gmail.com - - - - - simpleclient - simpleclient_common - simpleclient_caffeine - simpleclient_dropwizard - simpleclient_graphite_bridge - simpleclient_hibernate - simpleclient_guava - simpleclient_hotspot - simpleclient_httpserver - simpleclient_log4j - simpleclient_log4j2 - simpleclient_logback - simpleclient_pushgateway - simpleclient_servlet - simpleclient_servlet_common - simpleclient_servlet_jakarta - simpleclient_spring_web - simpleclient_spring_boot - simpleclient_jetty - simpleclient_jetty_jdk8 - simpleclient_tracer - simpleclient_vertx - simpleclient_vertx4 - simpleclient_bom - benchmarks - integration_tests - - - - UTF-8 - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - - - - maven-install-plugin - 2.4 - - - maven-resources-plugin - 2.6 - - - maven-compiler-plugin - 3.1 - - - maven-surefire-plugin - 2.12.4 - - - maven-jar-plugin - 2.4 - - - maven-deploy-plugin - 2.7 - - - maven-clean-plugin - 2.5 - - - maven-site-plugin - 3.3 - - - - maven-shade-plugin - 3.2.4 - - - maven-failsafe-plugin - 2.22.2 - - - maven-release-plugin - 2.5.3 - - - maven-dependency-plugin - 3.1.2 - - - maven-javadoc-plugin - 3.3.0 - - - maven-gpg-plugin - 3.0.1 - - - maven-source-plugin - 3.2.1 - - - maven-enforcer-plugin - 1.4.1 - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-plugin-versions - - enforce - - - - - org.springframework.boot:spring-boot-maven-plugin - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - - true - false - release - deploy - - - - org.apache.maven.plugins - maven-deploy-plugin - - - org.apache.felix - maven-bundle-plugin - 2.4.0 - true - - - org.apache.maven.plugins - maven-surefire-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - UTF-8 - UTF-8 - true - 8 - ${java.home}/bin/javadoc - - - - generate-javadoc-site-report - site - - aggregate - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.6 - 1.6 - - - - org.codehaus.mojo - versions-maven-plugin - 2.10.0 - - file://${project.basedir}/version-rules.xml - - - - - - - - - - maven-project-info-reports-plugin - 2.9 - - - maven-javadoc-plugin - - - aggregate - false - - aggregate - - - - default - - javadoc - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - diff --git a/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.lastUpdated b/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.lastUpdated deleted file mode 100644 index 007734881..000000000 --- a/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:37 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.prometheus\:parent\:pom\:0.16.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139817177 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139817277 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139817448 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139817604 diff --git a/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.sha1 b/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.sha1 deleted file mode 100644 index bae706b4e..000000000 --- a/code/arachne/io/prometheus/parent/0.16.0/parent-0.16.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2ae0bbbf4310dedfed62e8fd92279bf5bc60975d \ No newline at end of file diff --git a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/_remote.repositories b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/_remote.repositories deleted file mode 100644 index e720a9f7b..000000000 --- a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:37 EDT 2024 -simpleclient_bom-0.16.0.pom>ohdsi= diff --git a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom deleted file mode 100644 index df1ea609e..000000000 --- a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom +++ /dev/null @@ -1,146 +0,0 @@ - - - 4.0.0 - - - io.prometheus - parent - 0.16.0 - - - simpleclient_bom - pom - - Prometheus Java Simpleclient BOM - - Bill of Materials for the Simpleclient. - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - io.prometheus - simpleclient - ${project.version} - - - io.prometheus - simpleclient_caffeine - ${project.version} - - - io.prometheus - simpleclient_common - ${project.version} - - - io.prometheus - simpleclient_dropwizard - ${project.version} - - - io.prometheus - simpleclient_graphite_bridge - ${project.version} - - - io.prometheus - simpleclient_guava - ${project.version} - - - io.prometheus - simpleclient_hibernate - ${project.version} - - - io.prometheus - simpleclient_hotspot - ${project.version} - - - io.prometheus - simpleclient_httpserver - ${project.version} - - - io.prometheus - simpleclient_tracer_common - ${project.version} - - - io.prometheus - simpleclient_jetty - ${project.version} - - - io.prometheus - simpleclient_jetty_jdk8 - ${project.version} - - - io.prometheus - simpleclient_log4j - ${project.version} - - - io.prometheus - simpleclient_log4j2 - ${project.version} - - - io.prometheus - simpleclient_logback - ${project.version} - - - io.prometheus - simpleclient_pushgateway - ${project.version} - - - io.prometheus - simpleclient_servlet - ${project.version} - - - io.prometheus - simpleclient_servlet_jakarta - ${project.version} - - - io.prometheus - simpleclient_spring_boot - ${project.version} - - - io.prometheus - simpleclient_spring_web - ${project.version} - - - io.prometheus - simpleclient_tracer_otel - ${project.version} - - - io.prometheus - simpleclient_tracer_otel_agent - ${project.version} - - - io.prometheus - simpleclient_vertx - ${project.version} - - - - diff --git a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.lastUpdated b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.lastUpdated deleted file mode 100644 index c3284cf54..000000000 --- a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:37 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.prometheus\:simpleclient_bom\:pom\:0.16.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139816798 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139816895 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139817044 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139817169 diff --git a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.sha1 b/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.sha1 deleted file mode 100644 index 57f6f28c1..000000000 --- a/code/arachne/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7a83764a96ed642f7236dac41b9d4b3483be3a10 \ No newline at end of file diff --git a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/_remote.repositories b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/_remote.repositories deleted file mode 100644 index eda44c915..000000000 --- a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:52 EDT 2024 -r2dbc-bom-Arabba-SR3.pom>local-repo= diff --git a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom deleted file mode 100644 index 3c50d9029..000000000 --- a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom +++ /dev/null @@ -1,99 +0,0 @@ - - - - 4.0.0 - io.r2dbc - r2dbc-bom - Arabba-SR3 - pom - Reactive Relational Database Connectivity - Bill of Materials - Dependency Management for R2DBC Drivers - https://github.com/r2dbc/r2dbc-bom - - - Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - R2DBC Working Group - - - - scm:git:https://github.com/r2dbc/r2dbc-bom - https://github.com/r2dbc/r2dbc-bom - - - 0.8.2.RELEASE - 0.8.2.RELEASE - 0.8.2.RELEASE - 0.8.2.RELEASE - 0.2.0 - 0.8.1.RELEASE - UTF-8 - UTF-8 - 0.8.3.RELEASE - 0.8.1.RELEASE - - - - - com.google.cloud - cloud-spanner-r2dbc - ${r2dbc-cloud-spanner.version} - - - io.r2dbc - r2dbc-h2 - ${r2dbc-h2.version} - - - io.r2dbc - r2dbc-mssql - ${r2dbc-mssql.version} - - - dev.miku - r2dbc-mysql - ${r2dbc-mysql.version} - - - io.r2dbc - r2dbc-postgresql - ${r2dbc-postgresql.version} - - - io.r2dbc - r2dbc-pool - ${r2dbc-pool.version} - - - io.r2dbc - r2dbc-proxy - ${r2dbc-proxy.version} - - - io.r2dbc - r2dbc-spi - ${r2dbc-spi.version} - - - - diff --git a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.lastUpdated b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.lastUpdated deleted file mode 100644 index 629dcd677..000000000 --- a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:52 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139892305 -http\://0.0.0.0/.error=Could not transfer artifact io.r2dbc\:r2dbc-bom\:pom\:Arabba-SR3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139892075 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139892083 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139892180 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139892261 diff --git a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.sha1 b/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.sha1 deleted file mode 100644 index f93e34cdf..000000000 --- a/code/arachne/io/r2dbc/r2dbc-bom/Arabba-SR3/r2dbc-bom-Arabba-SR3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0e046b50e83750c7b2a0fd6580d964949db8b7a8 \ No newline at end of file diff --git a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/_remote.repositories b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/_remote.repositories deleted file mode 100644 index d0c000ae1..000000000 --- a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:38 EDT 2024 -rest-assured-bom-5.3.2.pom>ohdsi= diff --git a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom deleted file mode 100644 index 4175fc3ef..000000000 --- a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom +++ /dev/null @@ -1,112 +0,0 @@ - - - - - 4.0.0 - - io.rest-assured - rest-assured-bom - 5.3.2 - REST Assured: BOM - pom - Centralized dependencyManagement for the Rest Assured Project - - https://rest-assured.io/ - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html - repo - - - - - - scm:git:git://github.com/rest-assured/rest-assured.git - scm:git:ssh://git@github.com/rest-assured/rest-assured.git - http://github.com/rest-assured/rest-assured/tree/master - HEAD - - - - - johan.haleby - Johan Haleby - johan.haleby at gmail.com - Jayway - http://www.jayway.com - - - - - - io.rest-assured - json-schema-validator - 5.3.2 - - - io.rest-assured - rest-assured-common - 5.3.2 - - - io.rest-assured - json-path - 5.3.2 - - - io.rest-assured - xml-path - 5.3.2 - - - io.rest-assured - rest-assured - 5.3.2 - - - io.rest-assured - spring-commons - 5.3.2 - - - io.rest-assured - spring-mock-mvc - 5.3.2 - - - io.rest-assured - scala-support - 5.3.2 - - - io.rest-assured - spring-web-test-client - 5.3.2 - - - io.rest-assured - kotlin-extensions - 5.3.2 - - - io.rest-assured - spring-mock-mvc-kotlin-extensions - 5.3.2 - - - io.rest-assured - rest-assured-all - 5.3.2 - - - - - - - - - - - - diff --git a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.lastUpdated b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.lastUpdated deleted file mode 100644 index 489feed02..000000000 --- a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:38 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.rest-assured\:rest-assured-bom\:pom\:5.3.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139818506 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139818637 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139818738 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139818863 diff --git a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.sha1 b/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.sha1 deleted file mode 100644 index 98e4b175c..000000000 --- a/code/arachne/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fda54c1c84f4dbb04298230cc760007e1d71390f \ No newline at end of file diff --git a/code/arachne/io/rsocket/rsocket-bom/1.0.0/_remote.repositories b/code/arachne/io/rsocket/rsocket-bom/1.0.0/_remote.repositories deleted file mode 100644 index 990ac93a1..000000000 --- a/code/arachne/io/rsocket/rsocket-bom/1.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:53 EDT 2024 -rsocket-bom-1.0.0.pom>local-repo= diff --git a/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom b/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom deleted file mode 100644 index 67be6a570..000000000 --- a/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - io.rsocket - rsocket-bom - 1.0.0 - pom - rsocket-bom - RSocket Java Bill of materials. - http://rsocket.io - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - robertroeser - Robert Roeser - robert@netifi.com - - - rdegnan - Ryland Degnan - ryland@netifi.com - - - yschimke - Yuri Schimke - yuri@schimke.ee - - - OlegDokuka - Oleh Dokuka - oleh@netifi.com - - - mostroverkhov - Maksym Ostroverkhov - m.ostroverkhov@gmail.com - - - - scm:git:https://github.com/rsocket/rsocket-java.git - scm:git:https://github.com/rsocket/rsocket-java.git - https://github.com/rsocket/rsocket-java - - - - - io.rsocket - rsocket-core - 1.0.0 - - - io.rsocket - rsocket-load-balancer - 1.0.0 - - - io.rsocket - rsocket-micrometer - 1.0.0 - - - io.rsocket - rsocket-test - 1.0.0 - - - io.rsocket - rsocket-transport-local - 1.0.0 - - - io.rsocket - rsocket-transport-netty - 1.0.0 - - - - diff --git a/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.lastUpdated b/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.lastUpdated deleted file mode 100644 index c798497df..000000000 --- a/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:53 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139893208 -http\://0.0.0.0/.error=Could not transfer artifact io.rsocket\:rsocket-bom\:pom\:1.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139892799 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139892807 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139892912 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139893160 diff --git a/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.sha1 b/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.sha1 deleted file mode 100644 index 616244b85..000000000 --- a/code/arachne/io/rsocket/rsocket-bom/1.0.0/rsocket-bom-1.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -68ec71ef3002f1e607f7da844a40e90e4fa3ac47 \ No newline at end of file diff --git a/code/arachne/io/rsocket/rsocket-bom/1.1.3/_remote.repositories b/code/arachne/io/rsocket/rsocket-bom/1.1.3/_remote.repositories deleted file mode 100644 index 428892590..000000000 --- a/code/arachne/io/rsocket/rsocket-bom/1.1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:39 EDT 2024 -rsocket-bom-1.1.3.pom>ohdsi= diff --git a/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom b/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom deleted file mode 100644 index 460998437..000000000 --- a/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - 4.0.0 - io.rsocket - rsocket-bom - 1.1.3 - pom - rsocket-bom - RSocket Java Bill of materials. - http://rsocket.io - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - rdegnan - Ryland Degnan - ryland@netifi.com - - - yschimke - Yuri Schimke - yuri@schimke.ee - - - OlegDokuka - Oleh Dokuka - oleh.dokuka@icloud.com - - - rstoyanchev - Rossen Stoyanchev - rstoyanchev@vmware.com - - - - scm:git:https://github.com/rsocket/rsocket-java.git - scm:git:https://github.com/rsocket/rsocket-java.git - https://github.com/rsocket/rsocket-java - - - - - io.rsocket - rsocket-core - 1.1.3 - - - io.rsocket - rsocket-load-balancer - 1.1.3 - - - io.rsocket - rsocket-micrometer - 1.1.3 - - - io.rsocket - rsocket-test - 1.1.3 - - - io.rsocket - rsocket-transport-local - 1.1.3 - - - io.rsocket - rsocket-transport-netty - 1.1.3 - - - - diff --git a/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.lastUpdated b/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.lastUpdated deleted file mode 100644 index 3ff2fca06..000000000 --- a/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:39 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.rsocket\:rsocket-bom\:pom\:1.1.3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139818871 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139818960 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139819094 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139819217 diff --git a/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.sha1 b/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.sha1 deleted file mode 100644 index d01cbbd6c..000000000 --- a/code/arachne/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a14dbc5198c3219b6e764229029f466d1c66a426 \ No newline at end of file diff --git a/code/arachne/io/smallrye/jandex-parent/3.1.2/_remote.repositories b/code/arachne/io/smallrye/jandex-parent/3.1.2/_remote.repositories deleted file mode 100644 index e7087c5f9..000000000 --- a/code/arachne/io/smallrye/jandex-parent/3.1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:02 EDT 2024 -jandex-parent-3.1.2.pom>central= diff --git a/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom b/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom deleted file mode 100644 index 89a3ec78c..000000000 --- a/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom +++ /dev/null @@ -1,185 +0,0 @@ - - 4.0.0 - - - io.smallrye - smallrye-build-parent - 39 - - - io.smallrye - jandex-parent - 3.1.2 - pom - - Jandex: Parent - - - UTF-8 - UTF-8 - 2023-06-08T15:06:43Z - - 1.8 - 1.8 - - 1.10.11 - 1.6.Final - 1.11.13 - 3.0.0 - 5.8.2 - 3.8.1 - 5.1.8 - 3.10.1 - 3.3.0 - 3.2.2 - 3.6.1 - 3.3.0 - 1.6.13 - 1.1.1 - 2.11.1 - 3.5.0 - - - - GitHub - https://github.com/smallrye/jandex/issues - - - - scm:git:git@github.com:smallrye/jandex.git - scm:git:git@github.com:smallrye/jandex.git - https://github.com/smallrye/jandex/ - 3.1.2 - - - - core - maven-plugin - test-data - - benchmarks - - - - - - io.smallrye - jandex - ${project.version} - - - io.smallrye - jandex-test-data - ${project.version} - - - - net.bytebuddy - byte-buddy - ${version.bytebuddy} - - - org.apache.ant - ant - ${version.ant} - - - org.apache.maven - maven-plugin-api - ${version.maven} - - - org.apache.maven - maven-core - ${version.maven} - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${version.maven-plugin-tools} - - - org.codehaus.plexus - plexus-utils - ${version.plexus-utils} - - - org.junit.jupiter - junit-jupiter - ${version.junit} - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.maven-compiler-plugin} - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${version.nexus-staging-maven-plugin} - - - - - - - - java8-incompatible-plugins - - 1.8 - - - - - net.revelc.code.formatter - formatter-maven-plugin - - - none - - - - - net.revelc.code - impsort-maven-plugin - - - sort-imports - none - - - - - - - - - compiler-release-option - - [9,) - - - - 8 - - - - - release - - - !release.maven.bug.always.be.active - - - - release - - - - diff --git a/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom.sha1 b/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom.sha1 deleted file mode 100644 index c4ca213b3..000000000 --- a/code/arachne/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -68c735c8ece1f38f933830260bd688fdfd96c28f \ No newline at end of file diff --git a/code/arachne/io/smallrye/jandex/3.1.2/_remote.repositories b/code/arachne/io/smallrye/jandex/3.1.2/_remote.repositories deleted file mode 100644 index a558aced6..000000000 --- a/code/arachne/io/smallrye/jandex/3.1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:01 EDT 2024 -jandex-3.1.2.pom>central= diff --git a/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom b/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom deleted file mode 100644 index f079c923e..000000000 --- a/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom +++ /dev/null @@ -1,172 +0,0 @@ - - 4.0.0 - - - io.smallrye - jandex-parent - 3.1.2 - - - jandex - bundle - - Jandex: Core - - - - org.apache.ant - ant - provided - true - - - - io.smallrye - jandex-test-data - test - - - net.bytebuddy - byte-buddy - test - - - org.junit.jupiter - junit-jupiter - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - UTF-8 - UTF-8 - UTF-8 - true - true - true - true - - --allow-script-in-comments - - true - - - - ]]> - - SyntaxHighlighter.defaults["auto-links"] = false; - SyntaxHighlighter.defaults["gutter"] = false; - SyntaxHighlighter.defaults["toolbar"] = false; - SyntaxHighlighter.all(); - - ]]> - - - - org.apache.felix - maven-bundle-plugin - ${version.maven-bundle-plugin} - true - - - true - - org.jboss.jandex.Main - - - org.jboss.jandex - true - - - - ${project.groupId}.${project.artifactId} - ${project.version} - - org.jboss.jandex;version="${project.version}" - - - org.apache.tools.ant;resolution:=optional, - org.apache.tools.ant.types;resolution:=optional, - * - - - <_nouses>true - - - - - org.jboss.bridger - bridger - ${version.bridger} - - - weave - process-classes - - transform - - - - - - - - - - ecj - - - compiler - ecj - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - eclipse - - - - org.codehaus.plexus - plexus-compiler-eclipse - ${version.plexus-compiler-eclipse} - - - - - - - - - parameters - - - parameters - true - - - - true - - - - diff --git a/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom.sha1 b/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom.sha1 deleted file mode 100644 index 3438dd359..000000000 --- a/code/arachne/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -320c80d96a5f81a5c492e5d58054dabe0a59190c \ No newline at end of file diff --git a/code/arachne/io/smallrye/smallrye-build-parent/39/_remote.repositories b/code/arachne/io/smallrye/smallrye-build-parent/39/_remote.repositories deleted file mode 100644 index ce2c512bf..000000000 --- a/code/arachne/io/smallrye/smallrye-build-parent/39/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:02 EDT 2024 -smallrye-build-parent-39.pom>central= diff --git a/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom b/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom deleted file mode 100644 index 09e201595..000000000 --- a/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom +++ /dev/null @@ -1,815 +0,0 @@ - - - - 4.0.0 - - io.smallrye - smallrye-build-parent - 39 - - SmallRye: Build Parent - SmallRye Build Parent POM - https://smallrye.io - - 2018 - - pom - - - full-parent - - - - - 3.2.0 - 3.10.1 - 3.0.1 - 3.1.0 - 3.3.0 - 3.4.1 - 1.6.13 - 3.0.0-M7 - 3.1.0 - 3.2.1 - 3.12.1 - 3.0.0-M9 - 3.0.0-M9 - 3.0.0-M9 - 2 - 2.22.0 - 1.8.0 - 0.8.8 - 1.0.0 - 3.0.0 - 2.14.2 - - - UTF-8 - UTF-8 - - - https://sonarcloud.io - smallrye - - - 11 - 11 - ${maven.compiler.target} - ${maven.compiler.source} - - - 3.Final - - false - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - GitHub - https://github.com/smallrye/smallrye-parent/issues - - - - - radcortez - Roberto Cortez - radcortez@redhat.com - Red Hat - https://www.redhat.com/en - - - - - scm:git:git@github.com:smallrye/smallrye-parent.git - scm:git:git@github.com:smallrye/smallrye-parent.git - https://github.com/smallrye/smallrye-parent - 39 - - - - - oss.sonatype - https://oss.sonatype.org/content/repositories/snapshots/ - - - oss.sonatype - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - ${version.clean.plugin} - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.compiler.plugin} - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.gpg.plugin} - - - --pinentry-mode - loopback - - - - - org.apache.maven.plugins - maven-install-plugin - ${version.install.plugin} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.jar.plugin} - - - true - - true - true - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - ${buildNumber} - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.javadoc.plugin} - - - - - apiNote - a - API Note: - - - implSpec - a - Implementation Requirements: - - - implNote - a - Implementation Note: - - - param - - - return - - - throws - - - since - - - version - - - serialData - - - see - - - - - - org.apache.maven.plugins - maven-source-plugin - ${version.source.plugin} - - - org.apache.maven.plugins - maven-site-plugin - ${version.site.plugin} - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.surefire.plugin} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.surefire-report.plugin} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${version.failsafe.plugin} - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${version.nexus.staging.plugin} - - 15 - - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.deploy.plugin} - - - org.jacoco - jacoco-maven-plugin - ${version.jacoco.plugin} - - jacocoArgLine - true - - META-INF/** - - - - - prepare-agent - - prepare-agent - - generate-test-resources - - - - - io.smallrye - smallrye-maven-plugin - ${version.smallrye.plugin} - - - - - - - maven-compiler-plugin - - - default-compile - compile - - compile - - - - - -Aorg.jboss.logging.tools.addGeneratedAnnotation=false - - - - - - - org.apache.maven.plugins - maven-release-plugin - ${version.release.plugin} - - true - @{project.version} - verify - false - true - false - -DskipTests ${release.arguments} - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - net.revelc.code.formatter - formatter-maven-plugin - ${version.formatter.plugin} - - - io.smallrye - smallrye-code-rules - ${version.smallrye.code.rules.plugin} - - - - io/smallrye/coderules/eclipse-format.xml - ${format.skip} - - - - process-sources - - format - - - - - - net.revelc.code - impsort-maven-plugin - ${version.impsort.plugin} - - java.,javax.,jakarta.,org.,com. - * - ${format.skip} - true - - - - sort-imports - - sort - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - ${version.buildnumber.plugin} - - - get-scm-revision - initialize - - create - - - false - false - UNKNOWN - true - - - - - - org.codehaus.mojo - versions-maven-plugin - ${version.versions.plugin} - - false - - - - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - maven-javadoc-plugin - - - package - - jar - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - true - - https://oss.sonatype.org/ - oss.sonatype - true - - - - - - - - - - compile-java11-release-flag - - - ${basedir}/build-release-11 - - [11,) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - compile - - compile - - - 11 - - - - - - - - - - - - - - - java17-test-classpath - - [17,18) - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - default-test - - ${project.build.outputDirectory}/META-INF/versions/17 - - ${project.build.outputDirectory} - - - - - - - - - - - - java11-test - - [17,) - - java11.home - - - ${basedir}/build-test-java11 - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - java11-test - test - - test - - - ${java11.home}/bin/java - ${project.build.outputDirectory}/META-INF/versions/11 - - ${project.build.outputDirectory} - - - - - - - - - - - - java17-mr-build - - [17,) - - ${basedir}/src/main/java17 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java17 - compile - - compile - - - 17 - - ${project.basedir}/src/main/java17 - - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - - - - - java18-test-classpath - - [18,19) - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - default-test - - ${project.build.outputDirectory}/META-INF/versions/18 - - ${project.build.outputDirectory}/META-INF/versions/17 - ${project.build.outputDirectory} - - - - - - - - - - - - java17-test - - [18,) - - java17.home - - - ${basedir}/build-test-java17 - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - java17-test - test - - test - - - ${java17.home}/bin/java - ${project.build.outputDirectory}/META-INF/versions/17 - - ${project.build.outputDirectory} - - - - - - - - - - - - java18-mr-build - - [18,) - - ${basedir}/src/main/java18 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java18 - compile - - compile - - - 18 - - ${project.basedir}/src/main/java18 - - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - - - - - java19-test-classpath - - [19,20) - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - default-test - - ${project.build.outputDirectory}/META-INF/versions/19 - - ${project.build.outputDirectory}/META-INF/versions/18 - ${project.build.outputDirectory}/META-INF/versions/17 - ${project.build.outputDirectory} - - - - - - - - - - - - java18-test - - [19,) - - java18.home - - - ${basedir}/build-test-java18 - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - java18-test - test - - test - - - ${java18.home}/bin/java - ${project.build.outputDirectory}/META-INF/versions/18 - - ${project.build.outputDirectory}/META-INF/versions/17 - ${project.build.outputDirectory} - - - - - - - - - - - - java19-mr-build - - [19,) - - ${basedir}/src/main/java19 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java19 - compile - - compile - - - 19 - - ${project.basedir}/src/main/java19 - - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - diff --git a/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom.sha1 b/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom.sha1 deleted file mode 100644 index 66820c0ac..000000000 --- a/code/arachne/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cbe799d4790e7ab7c7fb2fb4ac9591cc26767dc5 \ No newline at end of file diff --git a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/_remote.repositories b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/_remote.repositories deleted file mode 100644 index b922e9227..000000000 --- a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:22 EDT 2024 -brave-bom-5.16.0.pom>ohdsi= diff --git a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom deleted file mode 100644 index 07c55bcac..000000000 --- a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom +++ /dev/null @@ -1,335 +0,0 @@ - - - 4.0.0 - - io.zipkin.brave - brave-bom - 5.16.0 - Brave BOM - Bill Of Materials POM for all Brave artifacts - pom - https://github.com/openzipkin/brave - 2013 - - - UTF-8 - UTF-8 - UTF-8 - UTF-8 - - ${project.basedir}/.. - - - 2.23.2 - 2.16.3 - - 1.6.8 - - - - OpenZipkin - https://zipkin.io/ - - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - https://github.com/openzipkin/brave - scm:git:https://github.com/openzipkin/brave.git - scm:git:https://github.com/openzipkin/brave.git - 5.16.0 - - - - - - openzipkin - OpenZipkin Gitter - https://gitter.im/openzipkin/zipkin - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - Github - https://github.com/openzipkin/brave/issues - - - - - - io.zipkin.reporter2 - zipkin-reporter-bom - ${zipkin-reporter.version} - pom - import - - - io.zipkin.zipkin2 - zipkin - ${zipkin.version} - - - ${project.groupId} - brave - ${project.version} - - - ${project.groupId} - brave-tests - ${project.version} - - - ${project.groupId} - brave-context-jfr - ${project.version} - - - ${project.groupId} - brave-context-log4j2 - ${project.version} - - - ${project.groupId} - brave-context-log4j12 - ${project.version} - - - ${project.groupId} - brave-context-slf4j - ${project.version} - - - ${project.groupId} - brave-context-rxjava2 - ${project.version} - - - ${project.groupId} - brave-instrumentation-dubbo - ${project.version} - - - ${project.groupId} - brave-instrumentation-dubbo-rpc - ${project.version} - - - ${project.groupId} - brave-instrumentation-grpc - ${project.version} - - - ${project.groupId} - brave-instrumentation-http - ${project.version} - - - ${project.groupId} - brave-instrumentation-http-tests - ${project.version} - - - ${project.groupId} - brave-instrumentation-httpasyncclient - ${project.version} - - - ${project.groupId} - brave-instrumentation-httpclient - ${project.version} - - - ${project.groupId} - brave-instrumentation-jaxrs2 - ${project.version} - - - ${project.groupId} - brave-instrumentation-jersey-server - ${project.version} - - - ${project.groupId} - brave-instrumentation-jms - ${project.version} - - - ${project.groupId} - brave-instrumentation-jms-jakarta - ${project.version} - - - ${project.groupId} - brave-instrumentation-kafka-clients - ${project.version} - - - ${project.groupId} - brave-instrumentation-kafka-streams - ${project.version} - - - ${project.groupId} - brave-instrumentation-messaging - ${project.version} - - - ${project.groupId} - brave-instrumentation-mongodb - ${project.version} - - - ${project.groupId} - brave-instrumentation-mysql - ${project.version} - - - ${project.groupId} - brave-instrumentation-mysql6 - ${project.version} - - - ${project.groupId} - brave-instrumentation-mysql8 - ${project.version} - - - ${project.groupId} - brave-instrumentation-netty-codec-http - ${project.version} - - - ${project.groupId} - brave-instrumentation-okhttp3 - ${project.version} - - - ${project.groupId} - brave-instrumentation-p6spy - ${project.version} - - - ${project.groupId} - brave-instrumentation-rpc - ${project.version} - - - ${project.groupId} - brave-instrumentation-servlet - ${project.version} - - - ${project.groupId} - brave-instrumentation-servlet-jakarta - ${project.version} - - - ${project.groupId} - brave-instrumentation-sparkjava - ${project.version} - - - ${project.groupId} - brave-instrumentation-spring-rabbit - ${project.version} - - - ${project.groupId} - brave-instrumentation-spring-web - ${project.version} - - - ${project.groupId} - brave-instrumentation-spring-webmvc - ${project.version} - - - ${project.groupId} - brave-instrumentation-vertx-web - ${project.version} - - - ${project.groupId} - brave-spring-beans - ${project.version} - - - - - - - release - - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${nexus-staging-maven-plugin.version} - true - - ossrh - https://oss.sonatype.org/ - true - - - - - maven-deploy-plugin - 3.0.0-M1 - - - - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - diff --git a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.lastUpdated b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.lastUpdated deleted file mode 100644 index 6b7237b40..000000000 --- a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:22 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.zipkin.brave\:brave-bom\:pom\:5.16.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139801533 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139801699 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139801895 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139802043 diff --git a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.sha1 b/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.sha1 deleted file mode 100644 index 2186a8ac7..000000000 --- a/code/arachne/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2ddc9c29bff98d7fcde594fd3611e16ce06b60b6 \ No newline at end of file diff --git a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/_remote.repositories b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/_remote.repositories deleted file mode 100644 index 5aa4ce5b6..000000000 --- a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:22 EDT 2024 -zipkin-reporter-bom-2.16.3.pom>ohdsi= diff --git a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom deleted file mode 100644 index 4a145d1d4..000000000 --- a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom +++ /dev/null @@ -1,199 +0,0 @@ - - - - 4.0.0 - - io.zipkin.reporter2 - zipkin-reporter-bom - Zipkin Reporter BOM - 2.16.3 - pom - Bill Of Materials POM for all Zipkin reporter artifacts - - - ${project.basedir}/.. - - 2.23.2 - 1.0.0 - - 1.6.8 - - - https://github.com/openzipkin/zipkin-reporter-java - 2016 - - - OpenZipkin - https://zipkin.io/ - - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - https://github.com/openzipkin/zipkin-reporter-java - scm:git:https://github.com/openzipkin/zipkin-reporter-java.git - scm:git:https://github.com/openzipkin/zipkin-reporter-java.git - 2.16.3 - - - - - - openzipkin - OpenZipkin Gitter - https://gitter.im/openzipkin/zipkin - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - Github - https://github.com/openzipkin/zipkin-reporter-java/issues - - - - - - io.zipkin.zipkin2 - zipkin - ${zipkin.version} - - - io.zipkin.proto3 - zipkin-proto3 - ${zipkin-proto3.version} - - - ${project.groupId} - zipkin-reporter - ${project.version} - - - ${project.groupId} - zipkin-sender-okhttp3 - ${project.version} - - - ${project.groupId} - zipkin-sender-libthrift - ${project.version} - - - ${project.groupId} - zipkin-sender-urlconnection - ${project.version} - - - ${project.groupId} - zipkin-sender-kafka08 - ${project.version} - - - ${project.groupId} - zipkin-sender-kafka - ${project.version} - - - ${project.groupId} - zipkin-sender-amqp-client - ${project.version} - - - ${project.groupId} - zipkin-sender-activemq-client - ${project.version} - - - ${project.groupId} - zipkin-reporter-spring-beans - ${project.version} - - - ${project.groupId} - zipkin-reporter-brave - ${project.version} - - - ${project.groupId} - zipkin-reporter-metrics-micrometer - ${project.version} - - - - - - - release - - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${nexus-staging-maven-plugin.version} - true - - ossrh - https://oss.sonatype.org/ - true - - - - - maven-deploy-plugin - 3.0.0-M1 - - - - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - diff --git a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.lastUpdated b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.lastUpdated deleted file mode 100644 index 8450b1d30..000000000 --- a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:22 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact io.zipkin.reporter2\:zipkin-reporter-bom\:pom\:2.16.3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139802052 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139802151 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139802308 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139802459 diff --git a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.sha1 b/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.sha1 deleted file mode 100644 index 998c5d411..000000000 --- a/code/arachne/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9bb2094d21c35e35e5145d3264b137491e5c6d6a \ No newline at end of file diff --git a/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/_remote.repositories b/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/_remote.repositories deleted file mode 100644 index 9bd4b0f0c..000000000 --- a/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:01 EDT 2024 -jakarta.activation-api-2.1.3.pom>central= diff --git a/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom b/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom deleted file mode 100644 index 83fb9de9e..000000000 --- a/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom +++ /dev/null @@ -1,421 +0,0 @@ - - - - - - - org.eclipse.ee4j - project - 1.0.9 - - - 4.0.0 - jakarta.activation - jakarta.activation-api - 2.1.3 - jar - Jakarta Activation API - ${project.name} ${spec.version} Specification - https://github.com/jakartaee/jaf-api - - - 2.1 - Jakarta Activation Specification - false - - UTF-8 - 2024-02-14T00:00:00Z - Jakarta Activation API documentation - ${project.basedir}/.. - ${project.basedir}/../etc/copyright-exclude - false - true - false - false - Low - ${project.basedir}/../etc/spotbugs-exclude.xml - - 4.7.3.4 - - - - scm:git:ssh://git@github.com/jakartaee/jaf-api.git - scm:git:ssh://git@github.com/jakartaee/jaf-api.git - https://github.com/jakartaee/jaf-api - HEAD - - - - github - https://github.com/jakartaee/jaf-api/issues/ - - - - - EDL 1.0 - http://www.eclipse.org/org/documents/edl-v10.php - repo - - - - - - shannon - Bill Shannon - bill.shannon@oracle.com - Oracle - - lead - - - - - - - - oracle.com - file:/tmp - - - - - - - - src/main/resources - true - - META-INF/*.default - - - - src/main/resources - false - - META-INF/*.default - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.0.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - <_noextraheaders>true - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - ${spotbugs.skip} - ${spotbugs.threshold} - ${spotbugs.exclude} - true - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-version - - enforce - - - - - [3.6.3,) - - - [11,) - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 9 - - -Xlint:all - - true - false - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - validate - - create - - - true - 7 - false - - - - - - org.apache.felix - maven-bundle-plugin - - - - false - - - true - - <_noextraheaders>true - ${project.artifactId} - ${spec.title} - ${spec.version} - ${project.organization.name} - ${project.groupId} - ${project.name} - ${project.organization.name} - ${buildNumber} - * - org.glassfish.hk2.osgiresourcelocator - - !org.glassfish.hk2.osgiresourcelocator, - * - - - =1.0.0)(!(version>=2.0.0)))";resolution:=optional, - osgi.serviceloader; - filter:="(osgi.serviceloader=jakarta.activation.spi.MailcapRegistryProvider)"; - osgi.serviceloader="jakarta.activation.spi.MailcapRegistryProvider"; - cardinality:=multiple;resolution:=optional, - osgi.serviceloader; - filter:="(osgi.serviceloader=jakarta.activation.spi.MimeTypeRegistryProvider)"; - osgi.serviceloader="jakarta.activation.spi.MimeTypeRegistryProvider"; - cardinality:=multiple;resolution:=optional, - osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8)) - ]]> - - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - false - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - currentyear-property - - timestamp-property - - validate - - current.year - en,US - yyyy - - - - add-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - META-INF - - LICENSE.md - NOTICE.md - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - - false - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - false - - - false - ${javadoc.title} - ${javadoc.title} - ${javadoc.title} - true - true - true - true -
    Jakarta Activation API v${project.version}]]>
    - - jaf-dev@eclipse.org
    .
    -Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> - - - true - false - 11 - true - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - ${copyright.exclude} - - ${copyright.scmonly} - - ${copyright.update} - - ${copyright.ignoreyear} - false - - - - - - diff --git a/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom.sha1 b/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom.sha1 deleted file mode 100644 index 7f0a61617..000000000 --- a/code/arachne/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d50eecb3b12aa729c1bd58ca3a4a61b22d98563d \ No newline at end of file diff --git a/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/_remote.repositories b/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/_remote.repositories deleted file mode 100644 index 98171e865..000000000 --- a/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -jakarta.annotation-api-2.1.1.pom>central= diff --git a/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom b/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom deleted file mode 100644 index 648779967..000000000 --- a/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom +++ /dev/null @@ -1,366 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.7 - - - - jakarta.annotation - jakarta.annotation-api - 2.1.1 - - Jakarta Annotations API - Jakarta Annotations API - - https://projects.eclipse.org/projects/ee4j.ca - - 2004 - - - - Linda De Michiel - Oracle Corp. - - - Dmitry Kornilov - Oracle Corp. - - - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - - scm:git:https://github.com/eclipse-ee4j/common-annotations-api.git - scm:git:git@github.com:eclipse-ee4j/common-annotations-api.git - https://github.com/eclipse-ee4j/common-annotations-api - HEAD - - - - github - https://github.com/eclipse-ee4j/common-annotations-api/issues - - - - - Jakarta Annotations mailing list - ca-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/ca-dev - https://dev.eclipse.org/mailman/listinfo/ca-dev - https://dev.eclipse.org/mhonarc/lists/ca-dev - - - - - false - true - false - false - Low - 4.0.4 - - false - 2.1 - jakarta.annotation - Eclipse Foundation - org.glassfish - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.2.0 - - - maven-compiler-plugin - 3.8.1 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.3 - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - - org.apache.felix - maven-bundle-plugin - 5.1.1 - - - <_noextraheaders>true - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [11,) - - - [3.6.0,) - - - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - - ${copyright.scmonly} - - ${copyright.update} - - ${copyright.ignoreyear} - - - - validate - - check - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-resource - generate-resources - - add-resource - - - - - ${basedir}/.. - META-INF - - LICENSE.md - NOTICE.md - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 9 - - -Xlint:all - - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - org.glassfish.build - spec-version-maven-plugin - - jakarta - - ${non.final} - api - ${spec.build} - ${spec.version} - ${new.spec.version} - ${project.version} - ${extension.name} - - - - - - set-spec-properties - - - - - - - - org.apache.felix - maven-bundle-plugin - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - ${project.name} - ${vendor.name} - ${project.organization.name} - ${implementation.vendor.id} - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-source-plugin - - - - false - true - - - ${buildNumber} - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - false - - - 11 - --add-modules java.sql - true - true - true - Jakarta Annotations ${project.version} API Specification -
    Jakarta Annotations API v${project.version}]]>
    - - Use is subject to license terms.]]> - -
    -
    - - com.github.spotbugs - spotbugs-maven-plugin - - ${spotbugs.skip} - ${spotbugs.threshold} - true - true - - -
    -
    -
    diff --git a/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom.sha1 b/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom.sha1 deleted file mode 100644 index 9592905f4..000000000 --- a/code/arachne/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1c89931b0b9bf7c03d18ae18a13473528617838e \ No newline at end of file diff --git a/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/_remote.repositories b/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/_remote.repositories deleted file mode 100644 index 8ed5efdc9..000000000 --- a/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.authentication-api-3.0.0.pom>central= diff --git a/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom b/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom deleted file mode 100644 index 3cdfae689..000000000 --- a/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom +++ /dev/null @@ -1,290 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.6 - - - - jakarta.authentication - jakarta.authentication-api - 3.0.0 - - Jakarta Authentication - - Jakarta Authentication defines a general low-level SPI for authentication mechanisms, which are controllers - that interact with a caller and a container's environment to obtain the caller's credentials, validate these, - and pass an authenticated identity (such as name and groups) to the container. - - Jakarta Authentication consists of several profiles, with each profile telling how a specific container - (such as Jakarta Servlet) can integrate with- and adapt to this SPI. - - https://github.com/eclipse-ee4j/authentication - - Jakarta Authentication - https://github.com/eclipse-ee4j/authentication - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - - - atijms - Arjan Tijms - arjan.tijms@gmail.com - - Project-Lead - comitter - developer - - +1 - - - yaminikb - Yamini K B - Oracle Corporation - http://www.oracle.com/ - - - - - Ronald Monzillo - Oracle Corporation - http://www.oracle.com/ - - - - - scm:git:ssh://git@github.com/eclipse-ee4j/authentication.git - scm:git:ssh://git@github.com/eclipse-ee4j/authentication.git - https://github.com/eclipse-ee4j/authentication - - - github - https://github.com/eclipse-ee4j/authentication/issues - - - - UTF-8 - UTF-8 - - 11 - 11 - - - - install - - - src/main/java - - **/*.properties - **/*.html - - - - src/main/resources - - META-INF/README - ${findbugs.exclude} - - - - ${project.basedir}/.. - - LICENSE.md - NOTICE.md - - META-INF - - - ${project.basedir} - - LICENSE.md - NOTICE.md - - META-INF - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.6.0 - - - - - - - - - - maven-compiler-plugin - 3.10.0 - - 11 - 11 - -Xlint:unchecked - - - - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - - 3.0 - ${project.version} - jakarta.security.auth.message - - - - - - set-spec-properties - check-module - - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.4 - - - jar - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - - Jakarta Authentication ${spec.specification.version} Specification - - Oracle Corporation - ${project.organization.name} - org.glassfish - <_include>-${basedir}/osgi.bundle - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - **/*.java - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - - attach-api-javadocs - - jar - - - 11 - -Xdoclint:none - Jakarta Authentication API documentation - Jakarta Authentication API documentation - Jakarta Authentication API documentation -
    Jakarta Authentication API v${project.version}]]>
    - jaspic-dev@eclipse.org.
    -Copyright © 2020, 2022 Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - true - - - Jakarta Authentication API Documentation - - jakarta.security.auth.message - jakarta.security.auth.message.callback - jakarta.security.auth.message.config - jakarta.security.auth.message.module - - - -
    -
    -
    -
    -
    -
    -
    diff --git a/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom.sha1 b/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom.sha1 deleted file mode 100644 index 57cae7f0f..000000000 --- a/code/arachne/jakarta/authentication/jakarta.authentication-api/3.0.0/jakarta.authentication-api-3.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -64e3002c3a915df5993b75f6a69aff303761a8f7 \ No newline at end of file diff --git a/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/_remote.repositories b/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/_remote.repositories deleted file mode 100644 index 3cb0f2054..000000000 --- a/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:06 EDT 2024 -jakarta.authorization-api-2.1.0.pom>central= diff --git a/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom b/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom deleted file mode 100644 index 1f4f1622f..000000000 --- a/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom +++ /dev/null @@ -1,310 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.6 - - - - jakarta.authorization - jakarta.authorization-api - 2.1.0 - - Jakarta Authorization - - Jakarta Authorization defines a low-level SPI for authorization modules, which are repositories of permissions - facilitating subject based security by determining whether a given subject has a given permission, and algorithms - to transform security constraints for specific containers (such as Jakarta Servlet or Jakarta Enterprise Beans) into - these permissions. - - https://github.com/eclipse-ee4j/authorization - 2013 - - Oracle Corporation - http://www.oracle.com - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - - - yaminikb - Yamini K B - Oracle Corporation - http://www.oracle.com/ - - - - - Ronald Monzillo - Oracle Corporation - http://www.oracle.com/ - - - - - - Jakarta Authorization mailing list - jacc-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/jacc-dev - https://dev.eclipse.org/mailman/listinfo/jacc-dev - https://dev.eclipse.org/mhonarc/lists/jacc-dev - - - - - scm:git:ssh://git@github.com/eclipse-ee4j/authorization.git - scm:git:ssh://git@github.com/eclipse-ee4j/authorization.git - https://github.com/eclipse-ee4j/authorization - - - GitHub - https://github.com/eclipse-ee4j/authorization/issues - - - - UTF-8 - UTF-8 - - - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - - - - - install - - - src/main/java - - **/*.properties - - - - src/main/resources - - META-INF/README - ${findbugs.exclude} - - - - ${project.basedir}/.. - - LICENSE.md - NOTICE.md - - META-INF - - - ${project.basedir} - - LICENSE.md - NOTICE.md - - META-INF - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.6.0 - - - - - - - - - - maven-compiler-plugin - 3.10.0 - - 11 - 11 - -Xlint:unchecked - - - - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - - 2.1 - ${project.version} - jakarta.security.jacc - - - - - - set-spec-properties - check-module - - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.4 - true - - - bundle-manifest - process-classes - - manifest - - - - - - jar - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - - Jakarta Authorization ${spec.specification.version} Specification - - Oracle Corporation - ${project.organization.name} - org.glassfish - jakarta.security.jacc - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - **/*.java - **/*.html - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - true - - - - attach-sources - - jar-no-fork - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - - attach-api-javadocs - - jar - - - 11 - -Xdoclint:none - true - Jakarta Authorization API documentation - Jakarta Authorization API documentation - Jakarta Authorization API documentation -
    Jakarta Authorization API v${project.version}]]>
    - jacc-dev@eclipse.org.
    -Copyright © 2018, 2022 Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - true - - - Jakarta Authorization API Documentation - - jakarta.security.jacc - - - -
    -
    -
    -
    -
    -
    -
    diff --git a/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom.sha1 b/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom.sha1 deleted file mode 100644 index 8f60a006d..000000000 --- a/code/arachne/jakarta/authorization/jakarta.authorization-api/2.1.0/jakarta.authorization-api-2.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -93963b10109b62c223aa3539a6c6ccae4e5165b3 \ No newline at end of file diff --git a/code/arachne/jakarta/batch/batch-api-parent/2.1.1/_remote.repositories b/code/arachne/jakarta/batch/batch-api-parent/2.1.1/_remote.repositories deleted file mode 100644 index 6ceeda2fb..000000000 --- a/code/arachne/jakarta/batch/batch-api-parent/2.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:06 EDT 2024 -batch-api-parent-2.1.1.pom>central= diff --git a/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom b/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom deleted file mode 100644 index 5a94812ea..000000000 --- a/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom +++ /dev/null @@ -1,236 +0,0 @@ - - - - - org.eclipse.ee4j - project - 1.0.7 - - - - 4.0.0 - jakarta.batch - batch-api-parent - 2.1.1 - pom - batch-parent - - Batch processing is a pervasive workload pattern, expressed by a distinct application organization and - execution model. It is found across virtually every industry, applied to such tasks as statement - generation, bank postings, risk evaluation, credit score calculation, inventory management, portfolio - optimization, and on and on. Nearly any bulk processing task from any business sector is a candidate for - batch processing. - Batch processing is typified by bulk-oriented, non-interactive, background execution. Frequently long- - running, it may be data or computationally intensive, execute sequentially or in parallel, and may be - initiated through various invocation models, including ad hoc, scheduled, and on-demand. - Batch applications have common requirements, including logging, checkpointing, and parallelization. - Batch workloads have common requirements, especially operational control, which allow for initiation - of, and interaction with, batch instances; such interactions include stop and restart. - - https://github.com/eclipse-ee4j/batch-api - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:https://github.com/eclipse-ee4j/batch-api.git - scm:git:https://github.com/eclipse-ee4j/batch-api.git - https://github.com/eclipse-ee4j/batch-api - 2.1.1 - - - - - scottkurz - Scott Kurz - skurz@us.ibm.com - - - dmbelina - Dan Belina - belina@us.ibm.com - - - ajmauer - Andrew Mauer - ajmauer@us.ibm.com - - - - - - - perform-release - - - performRelease - true - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - - - - UTF-8 - 11 - - - 4.0.0 - 2.0.1 - - 1.6.6 - 1.8 - 3.3.0 - 3.8.1 - 2.18 - 2.4 - 2.7 - 2.18 - - - - - api - spec - - - - - - jakarta.enterprise - jakarta.enterprise.cdi-api - ${version.jakarta.enterprise.jakarta.enterprise.cdi-api} - - - jakarta.inject - jakarta.inject-api - ${version.jakarta.inject.jakarta.inject-api} - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.org.apache.maven.plugins.maven-compiler-plugin} - - ${version.java} - ${version.java} - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-antrun-plugin - ${version.org.apache.maven.plugins.maven-antrun-plugin} - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - [11.0,12.0) - ! JDK 11 is required ! - - - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - ${version.org.apache.maven.plugins.maven-failsafe-plugin} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.org.apache.maven.plugins.maven-jar-plugin} - - - org.apache.maven.plugins - maven-javadoc-plugin - - - org.apache.maven.plugins - maven-resources-plugin - ${version.org.apache.maven.plugins.maven-resources-plugin} - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.org.apache.maven.plugins.maven-surefire-plugin} - - - - - - - diff --git a/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom.sha1 b/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom.sha1 deleted file mode 100644 index 27836b816..000000000 --- a/code/arachne/jakarta/batch/batch-api-parent/2.1.1/batch-api-parent-2.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a64e090ed5499b4ca8d51a7027976f7e38145644 \ No newline at end of file diff --git a/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/_remote.repositories b/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/_remote.repositories deleted file mode 100644 index 96dce58ec..000000000 --- a/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:06 EDT 2024 -jakarta.batch-api-2.1.1.pom>central= diff --git a/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom b/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom deleted file mode 100644 index a9dc78f9a..000000000 --- a/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom +++ /dev/null @@ -1,142 +0,0 @@ - - - 4.0.0 - - jakarta.batch - batch-api-parent - 2.1.1 - - - jakarta.batch - jakarta.batch-api - jar - Jakarta Batch API - - - - jakarta.inject - jakarta.inject-api - provided - - - jakarta.enterprise - jakarta.enterprise.cdi-api - provided - - - - - - - ${project.basedir}/../ - - LICENSE - NOTICE - - META-INF - - - ${project.basedir}/src/main/resources/jakarta/xml/batch - - *.xsd - - xsd - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.apache.maven.plugins - maven-resources-plugin - - - sources-as-resources - package - - copy-resources - - - - - src/main/java - - - ${project.build.directory}/sources - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - src/main/resources/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - Copyright © 2018, 2022 Eclipse Foundation.
    Use is subject to - license terms.]]> -
    - true - Jakarta Batch ${project.version} API - Jakarta Batch ${project.version} API - 11 -
    - - - attach-javadocs - - jar - - - -
    -
    -
    - -
    - - diff --git a/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom.sha1 b/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom.sha1 deleted file mode 100644 index 203081c43..000000000 --- a/code/arachne/jakarta/batch/jakarta.batch-api/2.1.1/jakarta.batch-api-2.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -17b4438fff4bd6f4f874973f9f835251ee069139 \ No newline at end of file diff --git a/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/_remote.repositories b/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/_remote.repositories deleted file mode 100644 index f3e298b6d..000000000 --- a/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.ejb-api-4.0.1.pom>central= diff --git a/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom b/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom deleted file mode 100644 index 8dfb6596c..000000000 --- a/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom +++ /dev/null @@ -1,436 +0,0 @@ - - - - - 4.0.0 - - org.eclipse.ee4j - project - 1.0.7 - - - - jakarta.ejb - jakarta.ejb-api - 4.0.1 - - - jakarta.ejb - 4.0 - ../ - UTF-8 - UTF-8 - 1.8 - 1.8 - 3.8.1 - 2.1 - 5.1.2 - 3.2.0 - 3.2.1 - 3.2.0 - 4.0.0 - 4.0.3 - 3.9.0 - 3.0.0-M3 - 3.1.0 - 3.0.0 - 2.0.0 - - - Jakarta Enterprise Beans API - Jakarta Enterprise Beans API - - https://github.com/jakartaee/enterprise-beans - - Eclipse Foundation - https://projects.eclipse.org/projects/ee4j.ejb - - - - yaminikb - Yamini K B - Oracle Corporation - http://www.oracle.com/ - - - - - Marina Vatkina - Oracle Corporation - http://www.oracle.com/ - - - - - - EPL 2.0 - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - github - https://github.com/jakartaee/enterprise-beans/issues - - - scm:git:ssh://git@github.com/jakartaee/enterprise-beans.git - scm:git:ssh://git@github.com/jakartaee/enterprise-beans.git - https://github.com/jakartaee/enterprise-beans - HEAD - - - - Enterprise Beans developer discussions - mailto:ejb-dev@eclipse.org - mailto:ejb-dev-request@eclipse.org?subject=subscribe - mailto:ejb-dev-request@eclipse.org?subject=unsubscribe - http://www.eclipse.org/lists/ejb-dev - - http://www.eclipse.org/lists/ejb-dev/maillist.rss - - - - - - - src/main/java - - **/*.properties - **/*.html - - - - - - - maven-compiler-plugin - ${maven-compiler-plugin.version} - - - org.glassfish.build - spec-version-maven-plugin - ${spec-version-maven-plugin.version} - - - org.apache.felix - maven-bundle-plugin - ${maven-bundle-plugin.version} - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - ${maven.compiler.source} - - Copyright © 2018, ${current.year} Eclipse Foundation.
    Use is subject to license terms.]]> -
    - true - Jakarta Enterprise Beans ${project.version} API - Jakarta Enterprise Beans ${project.version} API -
    -
    - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs-maven-plugin.version} - - - - com.github.spotbugs - spotbugs - ${spotbugs.version} - - - - - org.apache.maven.plugins - maven-site-plugin - ${maven-site-plugin.version} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${maven-enforcer-plugin.version} - -
    -
    - - - - maven-compiler-plugin - - - default-compile - - - module-info.java - - - - - compile-module-info - compile - - compile - - - 9 - - module-info.java - - - - - - - org.glassfish.build - spec-version-maven-plugin - - - api - ${spec.version} - ${project.version} - ${extension.name} - - - - - - set-spec-properties - check-module - - - - - - org.apache.felix - maven-bundle-plugin - - - jar - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - - Jakarta Enterprise Beans ${spec.version} API Design Specification - - ${project.organization.name} - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - **/*.java - - - - - org.apache.maven.plugins - maven-source-plugin - - true - - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - javadoc - - javadoc - - - - - Jakarta Enterprise Beans API Documentation - jakarta.ejb - - - - - - - - org.apache.maven.plugins - maven-release-plugin - - @{project.version} - install - deploy - - - - org.sonatype.plugins - nexus-staging-maven-plugin - true - - - default-deploy - deploy - - deploy - - - - - - org.codehaus.mojo - build-helper-maven-plugin - ${build-helper-maven-plugin.version} - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - timestamp-property - - timestamp-property - - validate - - current.year - yyyy - en - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - 3.5.4 - - - [9,) - You need JDK 9 or higher - - - - - - - -
    - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-reports-plugin.version} - - - com.github.spotbugs - spotbugs-maven-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - aggregate-no-fork - - - - - - - - - jakarta.transaction - jakarta.transaction-api - ${jakarta.transaction-api.version} - - -
    diff --git a/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom.sha1 b/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom.sha1 deleted file mode 100644 index c270990fb..000000000 --- a/code/arachne/jakarta/ejb/jakarta.ejb-api/4.0.1/jakarta.ejb-api-4.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9d6b7a13294de9c9567cfe73f305be4fb3069b47 \ No newline at end of file diff --git a/code/arachne/jakarta/el/jakarta.el-api/5.0.1/_remote.repositories b/code/arachne/jakarta/el/jakarta.el-api/5.0.1/_remote.repositories deleted file mode 100644 index 99b140d72..000000000 --- a/code/arachne/jakarta/el/jakarta.el-api/5.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:04 EDT 2024 -jakarta.el-api-5.0.1.pom>central= diff --git a/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom b/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom deleted file mode 100644 index 9ea8eb420..000000000 --- a/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom +++ /dev/null @@ -1,283 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.6 - - - - jakarta.el - jakarta.el-api - 5.0.1 - jar - - Jakarta Expression Language API - - Jakarta Expression Language defines an expression language for Java applications - - https://projects.eclipse.org/projects/ee4j.el - - - - jakarta-ee4j-el - Jakarta Expression Language Developers - Eclipse Foundation - el-dev@eclipse.org - - - - - Jakarta Expression Language Contributors - el-dev@eclipse.org - https://github.com/eclipse-ee4j/el-ri/graphs/contributors - - - - - - Expression Language dev mailing list - el-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/el-dev - https://dev.eclipse.org/mailman/listinfo/el-dev - https://dev.eclipse.org/mhonarc/lists/el-dev - - - - - scm:git:https://github.com/eclipse-ee4j/el-ri.git - scm:git:ssh://git@github.com/eclipse-ee4j/el-ri.git - https://github.com/eclipse-ee4j/el-ri - HEAD - - - github - https://github.com/eclipse-ee4j/el-ri/issues - - - - - org.junit.jupiter - junit-jupiter-engine - 5.8.1 - test - - - - - - 5.0 - ${project.version} - jakarta.el - jakarta.el-api - Eclipse Foundation - - - - - - src/main/java - - **/*.properties - - - - ${project.basedir}/.. - - LICENSE.md - NOTICE.md - - META-INF - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.6.0 - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 11 - -Xlint:unchecked - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0-M5 - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.3 - - etc/config/copyright-exclude - - git - - false - - true - - true - - false - - false - etc/config/copyright-eclipse.txt - etc/config/copyright-oracle.txt - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.2 - - - jar - - - Jakarta Expression Language ${spec.version} - ${bundle.symbolicName} - ${bundle.version} - ${extensionName} - ${spec.version} - ${vendorName} - ${project.version} - ${vendorName} - jakarta.el - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - maven-jar-plugin - 3.2.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - **/*.java - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - true - - - - attach-sources - - jar-no-fork - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - - attach-javadocs - - jar - - - 11 - -Xdoclint:none - true - Jakarta Expression Language API documentation - Jakarta Expression Language API documentation - Jakarta Expression Language API documentation -
    Jakarta Expression Language API v${project.version}]]>
    - el-dev@eclipse.org.
    -Copyright © 2018, 2022 Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - true - - - Jakarta Expression Language API Documentation - - jakarta.el.* - - - -
    -
    -
    -
    - -
    -
    -
    diff --git a/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom.sha1 b/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom.sha1 deleted file mode 100644 index ed596a266..000000000 --- a/code/arachne/jakarta/el/jakarta.el-api/5.0.1/jakarta.el-api-5.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f8eb17de87dd57f4e30ea8cb4e8ecd3dd191f8d7 \ No newline at end of file diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/_remote.repositories b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/_remote.repositories deleted file mode 100644 index aed80ae9b..000000000 --- a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.enterprise.cdi-api-4.0.1.pom>central= diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom deleted file mode 100644 index c7b2ddf8a..000000000 --- a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom +++ /dev/null @@ -1,412 +0,0 @@ - - - - 4.0.0 - - - jakarta.enterprise - jakarta.enterprise.cdi-parent - 4.0.1 - - - jakarta.enterprise.cdi-api - jar - - CDI APIs - APIs for CDI (Contexts and Dependency Injection for Java) - - http://cdi-spec.org - - - Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - Jakarta CDI Issues - https://github.com/eclipse-ee4j/cdi/issues - - - - JBoss by Red Hat, Inc. - https://jboss.org - - - 2008 - - - - Antoine Sabot-Durand - asabotdu - CET - Red Hat Inc. - - Specfication Lead - - asd[at]redhat[dot]com - - - - Martin Kouba - mkouba - Red Hat Inc. - - RI tech lead - - mkouba[at]redhat[dot]com - - - - Tomas Remes - tremes - Red Hat Inc. - - TCK tech lead - - tremes[at]redhat[dot]com - - - - Mark Struberg - mstruberg - CET - - Implementation developer - - struberg[at]yahoo[dot]de - - - - John D. Ament - johndament - Independent - EST - - EG Member - - johndament[at]apache[dot]org - - - - Matej Novotny - manovotn - Red Hat Inc. - - TCK and RI developer - - manovotn[at]redhat[dot]com - - - - Mark Paluch - mp911de - Independent - CET - - EG Member - - mpaluch[at]paluch[dot]biz - - - - - - - 2.1.0 - 2.0.1 - 5.0.0 - 2.1.0 - - 11 - 5.1.2 - 3.3.0 - 3.0.0-M5 - UTF-8 - - - - - - - - org.testng - testng - 6.8.8 - - - - jakarta.enterprise - jakarta.enterprise.lang-model - ${project.version} - - - - jakarta.annotation - jakarta.annotation-api - ${annotation.api.version} - - - - jakarta.inject - jakarta.inject-api - ${atinject.api.version} - - - - jakarta.el - jakarta.el-api - ${uel.api.version} - - - - jakarta.interceptor - jakarta.interceptor-api - ${interceptor.api.version} - - - - - - - jakarta.enterprise - jakarta.enterprise.lang-model - - - - jakarta.annotation - jakarta.annotation-api - - - - jakarta.el - jakarta.el-api - - - - jakarta.interceptor - jakarta.interceptor-api - - - jakarta.annotation - jakarta.annotation-api - - - - - - jakarta.inject - jakarta.inject-api - - - - org.testng - testng - test - - - - - - scm:git:git@github.com:cdi-spec/cdi.git - scm:git:git@github.com:cdi-spec/cdi.git - scm:git:git@github.com:cdi-spec/cdi.git - 4.0.1 - - - - - jboss-public-repository - - - jboss-public-repository - !false - - - - - jboss-public-repository-group - JBoss Public Maven Repository Group - https://repository.jboss.org/nexus/content/groups/public - - true - never - - - false - never - - - - - - jboss-public-repository-group - JBoss Public Maven Repository Group - https://repository.jboss.org/nexus/content/groups/public - - true - never - - - false - never - - - - - - - - - - ${project.basedir}/.. - - LICENSE.txt - NOTICE.md - - META-INF - - - src/main/resources - - - - - true - src/test/resources - - - - - maven-compiler-plugin - 3.8.1 - - - -Xlint:all - - - - - org.apache.felix - maven-bundle-plugin - ${maven-bundle-plugin.version} - - - bundle-manifest - process-classes - - manifest - - - - - - jakarta.cdi - - jakarta.decorator;version=4.0, - jakarta.enterprise.*;version=4.0, - - - jakarta.el; version=4.0, - * - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - default-test - - - ${project.build.testOutputDirectory}/META-INF/services/ - - - **/privileged/** - - false - - - - privileged-test - test - - test - - - - ${project.build.testOutputDirectory}/META-INF/services/ - - - **/privileged/** - - -Djava.security.manager -Djava.security.policy="${project.build.testOutputDirectory}/java.policy" - 1 - false - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin} - - true - Jakarta Context Dependency Injection API - Jakarta Context Dependency Injection API - false - Jakarta Context Dependency Injection API -
    Jakarta Context Dependency Injection ${project.version}]]> -
    - cdi-dev@eclipse.org.
    -Copyright © 2018,2022 Eclipse Foundation.
    -Use is subject to license terms.]]> -
    -
    - - - - attach-javadocs - - jar - - - -
    -
    -
    - - -
    diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom.sha1 b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom.sha1 deleted file mode 100644 index cb82e62e8..000000000 --- a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-api/4.0.1/jakarta.enterprise.cdi-api-4.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -31302535a46d274e3fa77669be7ea563946bb9b3 \ No newline at end of file diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/_remote.repositories b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/_remote.repositories deleted file mode 100644 index 1f7c92773..000000000 --- a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.enterprise.cdi-parent-4.0.1.pom>central= diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom deleted file mode 100644 index 140900184..000000000 --- a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom +++ /dev/null @@ -1,82 +0,0 @@ - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.6 - - - jakarta.enterprise - jakarta.enterprise.cdi-parent - pom - 4.0.1 - - Parent module for CDI Specification - - - - Apache License 2.0 - https://repository.jboss.org/licenses/apache-2.0.txt - repo - - - - - scm:git:git://github.com/eclipse-ee4j/cdi.git - scm:git:git@github.com:eclipse-ee4j/cdi.git - https://github.com/eclipse-ee4j/cdi - 4.0.1 - - - - spec - lang-model - api - - - clean package - - - - https://jakarta.oss.sonatype.org/ - ${sonatypeOssDistMgmtNexusUrl}content/repositories/staging/ - - - - - - staging - - false - - - - sonatype-nexus-staging - Sonatype Nexus Staging - ${sonatypeOssDistMgmtStagingUrl} - - true - - - false - - - - - - sonatype-nexus-staging - Sonatype Nexus Staging - ${sonatypeOssDistMgmtStagingUrl} - - true - - - false - - - - - - - diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom.sha1 b/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom.sha1 deleted file mode 100644 index 0ee525663..000000000 --- a/code/arachne/jakarta/enterprise/jakarta.enterprise.cdi-parent/4.0.1/jakarta.enterprise.cdi-parent-4.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2648d27b5ba25d34242827af628ab0142f908105 \ No newline at end of file diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/_remote.repositories b/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/_remote.repositories deleted file mode 100644 index 0296a21ae..000000000 --- a/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.enterprise.lang-model-4.0.1.pom>central= diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom b/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom deleted file mode 100644 index 2afa660bf..000000000 --- a/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom +++ /dev/null @@ -1,120 +0,0 @@ - - 4.0.0 - - - jakarta.enterprise - jakarta.enterprise.cdi-parent - 4.0.1 - - - jakarta.enterprise.lang-model - jar - - CDI Language Model - Build Compatible (Reflection-Free) Java Language Model for CDI - - - - Apache License 2.0 - https://repository.jboss.org/licenses/apache-2.0.txt - repo - - - - - 11 - 5.1.2 - 3.2.0 - 2.22.0 - UTF-8 - - - - - - ${project.basedir}/.. - - LICENSE.txt - NOTICE.md - - META-INF - - - src/main/resources - - - - - - maven-compiler-plugin - 3.8.1 - - - -Xlint:all - - - - - org.apache.felix - maven-bundle-plugin - ${maven-bundle-plugin.version} - - - bundle-manifest - process-classes - - manifest - - - - - - - jakarta.enterprise.lang.model.*;version=4.0, - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin} - - true - Jakarta CDI Language Model - Jakarta CDI Language Model - Jakarta CDI Language Model -
    Jakarta CDI Language Model ${project.version}]]> -
    - cdi-dev@eclipse.org.
    -Copyright © 2018,2020 Eclipse Foundation.
    -Use is subject to license terms.]]> -
    -
    - - - - attach-javadocs - - jar - - - -
    -
    -
    - - -
    diff --git a/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom.sha1 b/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom.sha1 deleted file mode 100644 index 01462a74f..000000000 --- a/code/arachne/jakarta/enterprise/jakarta.enterprise.lang-model/4.0.1/jakarta.enterprise.lang-model-4.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0731188ce992ce2c6857cac43bc2f44807c5d11f \ No newline at end of file diff --git a/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/_remote.repositories b/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/_remote.repositories deleted file mode 100644 index 65af87fe6..000000000 --- a/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:04 EDT 2024 -jakarta.faces-api-4.0.1.pom>central= diff --git a/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom b/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom deleted file mode 100644 index d849c39bb..000000000 --- a/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom +++ /dev/null @@ -1,165 +0,0 @@ - - - - 4.0.0 - jakarta.faces - jakarta.faces-api - 4.0.1 - Jakarta Faces - Jakarta Faces defines an MVC framework for building user interfaces for web applications, - including UI components, state management, event handing, input validation, page navigation, and - support for internationalization and accessibility. - https://github.com/eclipse-ee4j/faces-api - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - - atijms - Arjan Tijms - arjan.tijms@gmail.com - - Project-Lead - comitter - developer - - +1 - - - balusc - Bauke Scholtz - balusc@gmail.com - - comitter - developer - - +4 - - - - scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakarta.faces-api - scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakarta.faces-api - https://github.com/eclipse-ee4j/ee4j/jakarta.faces-api - - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - provided - - - jakarta.websocket - jakarta.websocket-api - 2.1.0 - provided - - - jakarta.websocket - jakarta.websocket-client-api - 2.1.0 - provided - - - jakarta.el - jakarta.el-api - 5.0.0 - provided - - - jakarta.enterprise - jakarta.enterprise.cdi-api - 4.0.1 - provided - - - jakarta.validation - jakarta.validation-api - 3.0.2 - provided - - - jakarta.transaction - jakarta.transaction-api - 2.0.1 - provided - true - - - jakarta.json - jakarta.json-api - 2.1.0 - provided - true - - - jakarta.ejb - jakarta.ejb-api - 4.0.1 - provided - true - - - jakarta.persistence - jakarta.persistence-api - 3.1.0 - provided - true - - - jakarta.xml.ws - jakarta.xml.ws-api - 4.0.0 - provided - true - - - jakarta.annotation - jakarta.annotation-api - 2.1.0 - provided - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - provided - true - - - org.glassfish - jakarta.faces - 4.0.0 - sources - provided - true - - - diff --git a/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom.sha1 b/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom.sha1 deleted file mode 100644 index ec410a569..000000000 --- a/code/arachne/jakarta/faces/jakarta.faces-api/4.0.1/jakarta.faces-api-4.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c4d9af324fe30bedfd6f3f8a484ea1c5358b5293 \ No newline at end of file diff --git a/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/_remote.repositories b/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/_remote.repositories deleted file mode 100644 index 93e5c4cdb..000000000 --- a/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:57 EDT 2024 -jakarta.inject-api-2.0.1.pom>central= diff --git a/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom b/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom deleted file mode 100644 index 278f43c8b..000000000 --- a/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom +++ /dev/null @@ -1,188 +0,0 @@ - - - org.eclipse.ee4j - project - 1.0.6 - - - - 4.0.0 - jakarta.inject - jakarta.inject-api - jar - Jakarta Dependency Injection - 2.0.1 - Jakarta Dependency Injection - https://github.com/eclipse-ee4j/injection-api - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:ssh://git@github.com/eclipse-ee4j/injection-api.git - scm:git:ssh://git@github.com/eclipse-ee4j/injection-api.git - https://github.com/eclipse-ee4j/injection-api - 2.0.1 - - - - - Antoine Sabot-Durand - asabotdu - CET - Red Hat Inc. - - Specfication Lead - - asd[at]redhat[dot]com - - - - Martin Kouba - mkouba - Red Hat Inc. - - RI tech lead - - mkouba[at]redhat[dot]com - - - - Tomas Remes - tremes - Red Hat Inc. - - TCK tech lead - - tremes[at]redhat[dot]com - - - - Matej Novotny - manovotn - Red Hat Inc. - - TCK and RI developer - - manovotn[at]redhat[dot]com - - - - - jakarta.inject.* - 2.0 - - - - - - ${project.basedir} - - LICENSE.txt - NOTICE.md - - META-INF - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.0 - - true - Jakarta Dependency Injection API - Jakarta Dependency Injection API - Jakarta Dependency Injection API -
    Jakarta Dependency Injection ${project.version}]]> -
    - cdi-dev@eclipse.org.
    -Copyright © 2018,2020 Eclipse Foundation.
    -Use is subject to license terms.]]> -
    -
    - - - - attach-javadocs - - jar - - - -
    - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - target/classes/META-INF/MANIFEST.MF - - - - - org.apache.felix - maven-bundle-plugin - 4.2.1 - - - ${spec_version} - - - - - osgi-manifest - process-classes - - manifest - - - - - - - maven-compiler-plugin - 3.8.1 - - - 9 - - -Xlint:all - - true - true - - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - -
    -
    - -
    diff --git a/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom.sha1 b/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom.sha1 deleted file mode 100644 index 34c906c59..000000000 --- a/code/arachne/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d53e5e2c5362dc3f6748efac10909af8562b3505 \ No newline at end of file diff --git a/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/_remote.repositories b/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/_remote.repositories deleted file mode 100644 index e466fb813..000000000 --- a/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.interceptor-api-2.1.0.pom>central= diff --git a/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom b/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom deleted file mode 100644 index efb6acbec..000000000 --- a/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom +++ /dev/null @@ -1,300 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.6 - - - - jakarta.interceptor - jakarta.interceptor-api - 2.1.0 - - Jakarta Interceptors - - Jakarta Interceptors defines a means of interposing on business method invocations - and specific events—such as lifecycle events and timeout events—that occur on instances - of Jakarta EE components and other managed classes. - - https://github.com/eclipse-ee4j/interceptor-api - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - - - yaminikb - Yamini K B - Oracle Corporation - http://www.oracle.com/ - - - - - Marina Vatkina - Oracle Corporation - http://www.oracle.com/ - - - - - scm:git:ssh://git@github.com/eclipse-ee4j/interceptor-api.git - scm:git:ssh://git@github.com/eclipse-ee4j/interceptor-api.git - https://github.com/eclipse-ee4j/interceptor-api - HEAD - - - Github - https://github.com/eclipse-ee4j/interceptor-api/issues - - - - UTF-8 - UTF-8 - - - - - jakarta.annotation - jakarta.annotation-api - 2.1.0 - - - - - - - src/main/java - - **/*.properties - **/*.html - - - - ${project.basedir}/.. - - LICENSE.md - NOTICE.md - - META-INF - - - src/main/resources - - META-INF/README - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - enforce-maven - - enforce - - - - - 3.5.4 - - - - - - - - - - maven-compiler-plugin - 3.8.1 - - 9 - - -Xlint:all - - true - true - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - - 2.1 - ${project.version} - jakarta.interceptor - - - - - - set-spec-properties - check-module - - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.2 - - - jar - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - - Jakarta Interceptors ${spec.specification.version} Specification - - Oracle Corporation - ${project.organization.name} - org.glassfish - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - **/*.java - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - true - - - - attach-sources - - jar-no-fork - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - 1.8 - -Xdoclint:none - Jakarta Interceptors API documentation - false - Jakarta Interceptors API documentation - Jakarta Interceptors API documentation -
    Jakarta Interceptors API v${project.version}]]>
    - interceptors-dev@eclipse.org.
    -Copyright © 2019, 2020 Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - true - - - Jakarta Interceptors API Documentation - - jakarta.interceptor - - - -
    - - - attach-api-javadocs - - jar - - - -
    -
    -
    -
    diff --git a/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom.sha1 b/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom.sha1 deleted file mode 100644 index e27d9e5a3..000000000 --- a/code/arachne/jakarta/interceptor/jakarta.interceptor-api/2.1.0/jakarta.interceptor-api-2.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f7ccfe403d34464fcfa0363c73e4a710a92a96b3 \ No newline at end of file diff --git a/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/_remote.repositories b/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/_remote.repositories deleted file mode 100644 index 6c63bbbaa..000000000 --- a/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:06 EDT 2024 -jakarta.jms-api-3.1.0.pom>central= diff --git a/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom b/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom deleted file mode 100644 index 67a838fd1..000000000 --- a/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom +++ /dev/null @@ -1,228 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.7 - - - jakarta.jms - jakarta.jms-api - 3.1.0 - Jakarta Messaging API - - Jakarta Messaging describes a means for Java applications to create, send, - and receive messages via loosely coupled, reliable asynchronous communication services. - - https://projects.eclipse.org/projects/ee4j.jms - - - Eclipse Public License 2.0 - https://projects.eclipse.org/license/epl-2.0 - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://projects.eclipse.org/license/secondary-gpl-2.0-cp - repo - - - - - UTF-8 - UTF-8 - 11 - - 3.1 - - - - - - jakarta.annotation - jakarta.annotation-api - 2.1.0-B1 - provided - - - - - - ${project.basedir}/.. - - LICENSE.md - NOTICE.md - - META-INF - - - ${project.basedir} - - LICENSE.md - NOTICE.md - - META-INF - - - - - - - maven-compiler-plugin - 3.8.1 - - - - -Xlint:all - - true - true - - - - - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - - ${spec.version} - ${project.version} - jakarta.jms - - - - - - set-spec-properties - check-module - - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.4 - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - - Jakarta Messaging ${spec.specification.version} Specification - - org.eclipse.ee4j.jms - Eclipse Foundation - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - true - - - - attach-sources - - jar-no-fork - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - -Xdoclint:none - Jakarta Messaging API documentation - Jakarta Messaging API documentation - Jakarta Messaging API documentation -
    Jakarta Messaging API v${project.version}]]>
    - messaging-dev@eclipse.org.
    - Copyright © 2018, 2022 Eclipse Foundation. All rights reserved.
    - Use is subject to license terms.]]> -
    - true - - - Jakarta Messaging API Documentation - - jakarta.jms - - - -
    - - - attach-api-javadocs - - jar - - - -
    -
    -
    -
    diff --git a/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom.sha1 b/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom.sha1 deleted file mode 100644 index d209430ca..000000000 --- a/code/arachne/jakarta/jms/jakarta.jms-api/3.1.0/jakarta.jms-api-3.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6f7803760edf860fda185edce6f9b38558704471 \ No newline at end of file diff --git a/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/_remote.repositories b/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/_remote.repositories deleted file mode 100644 index 06db8c50e..000000000 --- a/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.json.bind-api-3.0.1.pom>central= diff --git a/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom b/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom deleted file mode 100644 index 16d689bf7..000000000 --- a/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom +++ /dev/null @@ -1,491 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.9 - - - jakarta.json.bind - jakarta.json.bind-api - 3.0.1 - jar - - JSON-B API - Jakarta JSON Binding is a standard binding layer for converting Java objects to/from JSON documents. - 2016 - https://jakartaee.github.io/jsonb-api - - - github - https://github.com/jakartaee/jsonb-api/issues - - - - - Mailing list - jsonb-dev@eclipse.org - - - - - - Eclipse Public License 2.0 - https://projects.eclipse.org/license/epl-2.0 - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://projects.eclipse.org/license/secondary-gpl-2.0-cp - repo - - - - - scm:git:git://github.com/jakartaee/jsonb-api.git - scm:git:git@github.com:jakartaee/jsonb-api.git - https://github.com/jakartaee/jsonb-api - HEAD - - - - - m0mus - Dmitry Kornilov - dmitry.kornilov@oracle.com - https://dmitrykornilov.net - Oracle - - Project Lead - - CET - - - - - jsonb-dev@eclipse.org - UTF-8 - 01 - 3.0.0 - false - false - 3.0 - 2.1.3 - - 2.0.0 - jakarta.json.bind - ${project.basedir}/.. - Oracle Corporation - - ${project.basedir}/../etc/config/copyright-exclude - ${project.basedir}/../etc/config/epl-copyright.txt - ${project.basedir}/../etc/config/edl-copyright.txt - true - true - false - - ${project.basedir}/../etc/config/spotbugs-exclude.xml - false - Low - 4.8.3.1 - - 11 - ${maven.compiler.release} - - - - - - jakarta.json - jakarta.json-api - ${jakarta.json.version} - - - junit - junit - 4.13.2 - test - - - - - - - jakarta.json - jakarta.json-api - provided - - - junit - junit - - - - - - final - - false - - - - false - - - - - skip-tests - - false - - - true - - - - release - - false - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - org.apache.maven.plugins - maven-deploy-plugin - - - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.5.0 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - ${spotbugs.skip} - ${spotbugs.threshold} - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - - -Xlint:all - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.2.0 - - {0,date,MM/dd/yyyy hh:mm aa} - - timestamp - - - - - validate - - create - - - - - - - org.glassfish.build - spec-version-maven-plugin - 2.2 - - - ${non.final} - api - ${spec.version} - ${new.spec.version} - ${milestone.number} - ${project.version} - ${api_package} - - - - - - set-spec-properties - - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - true - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - ${buildNumber} - Java API for JSON Binding (JSON-Binding) - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - * - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - ${vendor.name} - <_nodefaultversion>false - jakarta.json.bind.*; version=${spec.version} - <_noee>true - - - - - osgi-bundle - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - Jakarta JSON Binding ${project.version} API Specification - - **/module-info.java - target/**/*.java - - true - - http://docs.oracle.com/en/java/javase/11/docs/api/ - - false - false -
    Jakarta JSON Binding API v${project.version}]]> -
    - ${release.spec.feedback}.
    - Copyright © 2019, 2024 Eclipse Foundation. All Rights Reserved.
    - Use is subject to license terms.]]> -
    -
    - - - attach-javadocs - - jar - - - -
    - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.3.2 - - - - jxr - - validate - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - ${copyright.exclude} - ${copyright.scmonly} - ${copyright.update} - ${copyright.ignoreyear} - false - ${copyright.templatefile} - ${copyright.bsdTemplateFile} - - - - verify - - check - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.1 - - - com.puppycrawl.tools - checkstyle - 8.29 - - - - ${project.build.directory}/checkstyle/checkstyle-result.xml - ${basedir}/../etc/config/checkstyle.xml - true - true - **/module-info.java - - - - - check - - compile - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - -
    -
    - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - - - biz.aQute.bnd - bnd-baseline-maven-plugin - 6.0.0 - - - ${baseline.compare.version} - - - - - baseline - - baseline - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - true - ${spotbugs.exclude} - High - - - -
    -
    diff --git a/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom.sha1 b/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom.sha1 deleted file mode 100644 index eb2b3902c..000000000 --- a/code/arachne/jakarta/json/bind/jakarta.json.bind-api/3.0.1/jakarta.json.bind-api-3.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1247b839f673454db85ca90c2026e154e577fd2f \ No newline at end of file diff --git a/code/arachne/jakarta/json/jakarta.json-api/2.1.3/_remote.repositories b/code/arachne/jakarta/json/jakarta.json-api/2.1.3/_remote.repositories deleted file mode 100644 index 651b2223e..000000000 --- a/code/arachne/jakarta/json/jakarta.json-api/2.1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.json-api-2.1.3.pom>central= diff --git a/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom b/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom deleted file mode 100644 index 0f4906a69..000000000 --- a/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom +++ /dev/null @@ -1,417 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.8 - - - - jakarta.json - jakarta.json-api - - 2.1.3 - Jakarta JSON Processing API - Jakarta JSON Processing defines a Java(R) based framework for parsing, generating, transforming, and querying JSON documents. - https://github.com/eclipse-ee4j/jsonp - - - scm:git:git://github.com/eclipse-ee4j/jsonp.git - scm:git:git@github.com:eclipse-ee4j/jsonp.git - https://github.com/eclipse-ee4j/jsonp - HEAD - - - - - Eclipse Public License 2.0 - https://projects.eclipse.org/license/epl-2.0 - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://projects.eclipse.org/license/secondary-gpl-2.0-cp - repo - - - - - - m0mus - Dmitry Kornilov - Oracle - - project lead - - - - lukasj - Lukas Jungmann - Oracle - - dev lead - - - - - - ${project.basedir}/../etc/copyright-exclude - ${project.basedir}/../etc/copyright.txt - true - true - false - ${project.basedir}/../etc/spotbugs-exclude.xml - false - Low - 4.7.3.5 - - false - jakarta.json - 2.1 - ${project.basedir}/.. - Eclipse Foundation - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.2.0 - - - org.codehaus.mojo - build-helper-maven-plugin - 3.4.0 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - - <_noextraheaders>true - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.0 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - ${spotbugs.skip} - ${spotbugs.threshold} - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [11,) - - - [3.6.0,) - - - - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - ${copyright.exclude} - ${copyright.scmonly} - ${copyright.update} - ${copyright.ignoreyear} - false - - - - verify - - check - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - validate - - create - - - true - 7 - false - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - currentyear-property - - timestamp-property - - validate - - current.year - en,US - yyyy - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 9 - false - - -Xlint:all - -Xdoclint:all - - true - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - org.glassfish.build - spec-version-maven-plugin - - - ${non.final} - api - ${spec.version} - ${project.version} - ${extension.name} - - - - - - set-spec-properties - - - - - - - - org.apache.felix - maven-bundle-plugin - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - Jakarta JSON Processing API ${spec.version} - ${vendor.name} - ${buildNumber} - * - - !org.glassfish.hk2.osgiresourcelocator, - !org.eclipse.parsson, - * - - - =1.0.0)(!(version>=2.0.0)))";resolution:=optional, - osgi.serviceloader; - filter:="(osgi.serviceloader=jakarta.json.spi.JsonProvider)"; - osgi.serviceloader="jakarta.json.spi.JsonProvider"; - cardinality:=multiple;resolution:=optional - ]]> - - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-source-plugin - - - - false - true - - - ${buildNumber} - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - false - - - 11 - true - true - JSON Processing API documentation - JSON Processing API documentation - JSON Processing API documentation -
    JSON Processing API v${project.version}]]>
    - jsonp-dev@eclipse.org.
    -Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - true - true -
    -
    - - com.github.spotbugs - spotbugs-maven-plugin - - true - ${spotbugs.exclude} - High - - -
    -
    - -
    diff --git a/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom.sha1 b/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom.sha1 deleted file mode 100644 index 333d08736..000000000 --- a/code/arachne/jakarta/json/jakarta.json-api/2.1.3/jakarta.json-api-2.1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2aa4310ec3c5c33b7a5c9b4ba91b760a9d959c8b \ No newline at end of file diff --git a/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/_remote.repositories b/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/_remote.repositories deleted file mode 100644 index 556a4d756..000000000 --- a/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:06 EDT 2024 -jakarta.mail-api-2.1.3.pom>central= diff --git a/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom b/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom deleted file mode 100644 index a76eb9d6e..000000000 --- a/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom +++ /dev/null @@ -1,501 +0,0 @@ - - - - - - - org.eclipse.ee4j - project - 1.0.9 - - - - 4.0.0 - jakarta.mail - jakarta.mail-api - 2.1.3 - Jakarta Mail API - ${project.name} ${spec.version} Specification API - - - scm:git:ssh://git@github.com/jakartaee/mail-api.git - scm:git:ssh://git@github.com/jakartaee/mail-api.git - https://github.com/jakartaee/mail-api - - - - GitHub - https://github.com/jakartaee/mail-api/issues - - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - EDL 1.0 - http://www.eclipse.org/org/documents/edl-v10.php - repo - - - - - 2.1 - Jakarta Mail Specification - 2024-02-14T00:00:00Z - UTF-8 - Jakarta Mail API documentation - ${project.basedir}/.. - - ${project.basedir}/../copyright-exclude - false - true - false - false - Low - ${project.basedir}/../spotbugs-exclude.xml - - 4.8.3.1 - - - ${project.version} - - - - - - jakarta.activation - jakarta.activation-api - 2.1.3 - - - org.eclipse.angus - angus-activation - 2.0.2 - - - junit - junit - 4.13.2 - - - - - - - jakarta.activation - jakarta.activation-api - - - junit - junit - test - - - org.eclipse.angus - angus-activation - test - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.5 - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.codehaus.mojo - build-helper-maven-plugin - 3.4.0 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - ${spotbugs.skip} - ${spotbugs.threshold} - ${spotbugs.exclude} - true - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.0.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - - <_noextraheaders>true - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.5.0 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-version - - enforce - - - - - [3.6.3,) - - - [11,) - - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - validate - - create - - - true - 7 - false - - - - - - org.apache.maven.plugins - maven-resources-plugin - - - copy-resources - validate - - copy-resources - - - ${basedir}/target/generated-sources/version - - - src/main/resources - true - - jakarta/mail/Version.java - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - add-sources - generate-sources - - add-source - - - - ${basedir}/target/generated-sources/version - - - - - currentyear-property - - timestamp-property - - validate - - current.year - en,US - yyyy - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 9 - false - - -Xlint:all - - true - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - org.apache.felix - maven-bundle-plugin - - - - false - - - true - - ${project.artifactId} - ${spec.title} - ${spec.version} - ${project.organization.name} - ${project.groupId} - ${project.name} - ${project.organization.name} - ${buildNumber} - org.glassfish.hk2.osgiresourcelocator - - !org.glassfish.hk2.osgiresourcelocator, - * - - - =1.0.0)(!(version>=2.0.0)))";resolution:=optional, - osgi.serviceloader;filter:="(osgi.serviceloader=jakarta.mail.Provider)"; - osgi.serviceloader="jakarta.mail.Provider"; - cardinality:=multiple;resolution:=optional, - osgi.serviceloader;filter:="(osgi.serviceloader=jakarta.mail.util.StreamProvider)"; - osgi.serviceloader="jakarta.mail.util.StreamProvider"; - cardinality:=multiple;resolution:=optional, - osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))" - ]]> - - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - false - - - - - **/*.java - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 11 - true - false - true - true - false - true - true - Jakarta Mail API documentation - Jakarta Mail API documentation - Jakarta Mail API documentation -
    v${project.version}]]>
    - mail-dev@eclipse.org.
    -Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - false - true -
    -
    - - org.apache.maven.plugins - maven-surefire-plugin - - 2 - false - false - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - ${copyright.exclude} - - ${copyright.scmonly} - - ${copyright.update} - - ${copyright.ignoreyear} - false - - -
    -
    - - - - coverage - - - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - - - - org.jacoco - jacoco-maven-plugin - - - default-prepare-agent - - prepare-agent - - - - default-report - - report - - - - - - - - - -
    diff --git a/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom.sha1 b/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom.sha1 deleted file mode 100644 index e5be6d563..000000000 --- a/code/arachne/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aeb31583a5070de637bce979e1963bd2bd07729f \ No newline at end of file diff --git a/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/_remote.repositories b/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/_remote.repositories deleted file mode 100644 index c14396599..000000000 --- a/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:01 EDT 2024 -jakarta.persistence-api-3.1.0.pom>central= diff --git a/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom b/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom deleted file mode 100644 index 0f3a959eb..000000000 --- a/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom +++ /dev/null @@ -1,359 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.7 - - - - jakarta.persistence - jakarta.persistence-api - 3.1.0 - - Jakarta Persistence API - https://github.com/eclipse-ee4j/jpa-api - - - scm:git:git://github.com/eclipse-ee4j/jpa-api.git - scm:git:git@github.com:eclipse-ee4j/jpa-api.git - https://github.com/eclipse-ee4j/jpa-api.git - HEAD - - - - - Eclipse Public License v. 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - Standard Eclipse Licence - - - Eclipse Distribution License v. 1.0 - http://www.eclipse.org/org/documents/edl-v10.php - repo - Standard Eclipse Distribution License - - - - - - lukasj - Lukas Jungmann - Oracle, Inc. - - lead - - - - - - IssueTracker - https://github.com/eclipse-ee4j/jpa-api/issues - - - - - Community discussions - https://accounts.eclipse.org/mailing-list/jpa-dev - https://accounts.eclipse.org/mailing-list/jpa-dev - jpa-dev@eclipse.org - https://dev.eclipse.org/mhonarc/lists/jpa-dev/ - - http://dev.eclipse.org/mhonarc/lists/jpa-dev/maillist.rss - - - - - - ${project.basedir}/copyright-exclude - false - true - ${project.basedir}/copyright-template - false - - UTF-8 - false - 3.1 - 01 - 3.1.0 - jakarta.persistence - 3.1 - ${project.basedir}/.. - Eclipse Foundation - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.9.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.4 - - - <_noextraheaders>true - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - currentyear-property - - timestamp-property - - validate - - current.year - en,US - yyyy - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - - [11,) - - - - - - validate - - display-info - enforce - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - ${copyright.template} - ${copyright.exclude} - - ${copyright.scmonly} - - ${copyright.update} - - ${copyright.ignoreyear} - false - - - - validate - - check - - - - - - org.glassfish.build - spec-version-maven-plugin - - jakarta - - ${spec.non.final} - api - ${spec.version} - ${spec.build} - ${spec.impl.version} - ${spec.api.package} - ${spec.new.spec.version} - - - - - - set-spec-properties - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 11 - - -Xlint:all - - true - true - - - - org.apache.felix - maven-bundle-plugin - - true - - Jakarta Persistence ${spec.specification.version} API jar - Jakarta Persistence API jar - ${spec.bundle.symbolic-name} - ${spec.bundle.version} - ${spec.extension.name} - ${spec.implementation.version} - ${vendor.name} - ${spec.specification.version} - - - - - osgi-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-source-plugin - - - - false - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - false - - - 11 - true - true - true - Jakarta Persistence API documentation - Jakarta Persistence API documentation - Jakarta Persistence API documentation -
    Jakarta Persistence API v${project.version}]]> -
    - -Comments to: jpa-dev@eclipse.org.
    -Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - - - Jakarta Persistence API Packages - jakarta.persistence* - - -
    -
    -
    -
    - -
    diff --git a/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom.sha1 b/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom.sha1 deleted file mode 100644 index e8d87bf79..000000000 --- a/code/arachne/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7fccf0dcc83d2997106e7161cdf2d040251d6b25 \ No newline at end of file diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/_remote.repositories b/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/_remote.repositories deleted file mode 100644 index 514a6392f..000000000 --- a/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:06 EDT 2024 -jakarta.jakartaee-api-10.0.0.pom>central= diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom b/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom deleted file mode 100644 index e437a8941..000000000 --- a/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - 4.0.0 - - org.eclipse.ee4j - project - 1.0 - - jakarta.platform - jakarta.jakartaee-api - 10.0.0 - - Eclipse Foundation - https://www.eclipse.org - - - - Eclipse Public License v. 2.0 - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://www.gnu.org/software/classpath/license.html - repo - - - - - eclipseee4j - Eclipse EE4J Developers - ee4j-pmc@eclipse.org - Eclipse Foundation - - - - - Community discussions - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - jakarta.ee-community@eclipse.org - https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ - - http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss - - - - PMC discussions - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://accounts.eclipse.org/mailing-list/ee4j-pmc - ee4j-pmc@eclipse.org - https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ - - http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss - - - - - scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakartaee-api-parent/jakarta.jakartaee-api - scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakartaee-api-parent/jakarta.jakartaee-api - https://github.com/eclipse-ee4j/ee4j/jakartaee-api-parent/jakarta.jakartaee-api - - - GitHub Issues - https://github.com/eclipse-ee4j/ee4j/issues - - - - jakarta.platform - jakarta.jakartaee-web-api - 10.0.0 - compile - false - - - jakarta.jms - jakarta.jms-api - 3.1.0 - compile - false - - - jakarta.activation - jakarta.activation-api - 2.1.0 - compile - false - - - jakarta.mail - jakarta.mail-api - 2.1.0 - compile - - - * - * - - - false - - - jakarta.resource - jakarta.resource-api - 2.1.0 - compile - - - * - * - - - false - - - jakarta.authorization - jakarta.authorization-api - 2.1.0 - compile - - - * - * - - - false - - - jakarta.batch - jakarta.batch-api - 2.1.1 - compile - - - * - * - - - false - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - compile - - - * - * - - - true - - - jakarta.xml.ws - jakarta.xml.ws-api - 4.0.0 - compile - - - * - * - - - true - - - jakarta.xml.soap - jakarta.xml.soap-api - 3.0.0 - compile - - - * - * - - - true - - - org.glassfish - jakarta.faces - 4.0.0 - provided - - - * - * - - - true - - - - diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom.sha1 b/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom.sha1 deleted file mode 100644 index 1d52f3bd3..000000000 --- a/code/arachne/jakarta/platform/jakarta.jakartaee-api/10.0.0/jakarta.jakartaee-api-10.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -91df2e4daf036ce412b110f79446e1eee884873f \ No newline at end of file diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/_remote.repositories b/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/_remote.repositories deleted file mode 100644 index 6808c5ad0..000000000 --- a/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:49 EDT 2024 -jakarta.jakartaee-bom-9.1.0.pom>central= diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom b/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom deleted file mode 100644 index 920a230ff..000000000 --- a/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom +++ /dev/null @@ -1,220 +0,0 @@ - - - - - 4.0.0 - - jakarta.platform - jakartaee-api-parent - 9.1.0 - - jakarta.jakartaee-bom - pom - Jakarta EE API BOM - Jakarta EE API BOM - - - - - org.glassfish.build - glassfishbuild-maven-plugin - - - generate-pom - - generate-pom - - - - attach-all-artifacts - - attach-all-artifacts - - - - - - - - - - - - jakarta.servlet - jakarta.servlet-api - ${jakarta.servlet-api.version} - - - jakarta.servlet.jsp - jakarta.servlet.jsp-api - ${jakarta.servlet.jsp-api.version} - - - jakarta.el - jakarta.el-api - ${jakarta.el-api.version} - - - jakarta.servlet.jsp.jstl - jakarta.servlet.jsp.jstl-api - ${jakarta.servlet.jsp.jstl-api.version} - - - jakarta.faces - jakarta.faces-api - ${jakarta.faces-api.version} - - - jakarta.ws.rs - jakarta.ws.rs-api - ${jakarta.ws.rs-api.version} - - - jakarta.websocket - jakarta.websocket-api - ${jakarta.websocket-api.version} - - - jakarta.json - jakarta.json-api - ${jakarta.json-api.version} - - - jakarta.json.bind - jakarta.json.bind-api - ${jakarta.json.bind-api.version} - - - jakarta.annotation - jakarta.annotation-api - ${jakarta.annotation-api.version} - - - jakarta.ejb - jakarta.ejb-api - ${jakarta.ejb-api.version} - - - jakarta.transaction - jakarta.transaction-api - ${jakarta.transaction-api.version} - - - jakarta.persistence - jakarta.persistence-api - ${jakarta.persistence-api.version} - - - jakarta.validation - jakarta.validation-api - ${jakarta.validation-api.version} - - - jakarta.interceptor - jakarta.interceptor-api - ${jakarta.interceptor-api.version} - - - jakarta.enterprise - jakarta.enterprise.cdi-api - ${jakarta.enterprise.cdi-api.version} - - - jakarta.inject - jakarta.inject-api - ${jakarta.inject.version} - - - jakarta.authentication - jakarta.authentication-api - ${jakarta.authentication-api.version} - - - jakarta.security.enterprise - jakarta.security.enterprise-api - ${jakarta.security.enterprise-api.version} - - - - - jakarta.jms - jakarta.jms-api - ${jakarta.jms-api.version} - - - jakarta.activation - jakarta.activation-api - ${jakarta.activation-api.version} - - - jakarta.mail - jakarta.mail-api - ${jakarta.mail-api.version} - - - com.sun.mail - jakarta.mail - ${jakarta.mail-api.version} - - - jakarta.resource - jakarta.resource-api - ${jakarta.resource-api.version} - - - jakarta.authorization - jakarta.authorization-api - ${jakarta.authorization-api.version} - - - jakarta.enterprise.concurrent - jakarta.enterprise.concurrent-api - ${jakarta.enterprise.concurrent-api.version} - - - jakarta.batch - jakarta.batch-api - ${jakarta.batch-api.version} - - - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jakarta.xml.bind-api.version} - - - jakarta.xml.ws - jakarta.xml.ws-api - ${jakarta.xml.ws-api.version} - - - jakarta.jws - jakarta.jws-api - ${jakarta.jws-api.version} - - - jakarta.xml.soap - jakarta.xml.soap-api - ${jakarta.xml.soap-api.version} - - - - - diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom.sha1 b/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom.sha1 deleted file mode 100644 index 4b11c27a1..000000000 --- a/code/arachne/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -39a915229cabfe6bba43e0566b1a74bf8fe3eefe \ No newline at end of file diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/_remote.repositories b/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/_remote.repositories deleted file mode 100644 index 45bea7ad3..000000000 --- a/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:04 EDT 2024 -jakarta.jakartaee-web-api-10.0.0.pom>central= diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom b/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom deleted file mode 100644 index 34298b92c..000000000 --- a/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - 4.0.0 - - org.eclipse.ee4j - project - 1.0 - - jakarta.platform - jakarta.jakartaee-web-api - 10.0.0 - - Eclipse Foundation - https://www.eclipse.org - - - - Eclipse Public License v. 2.0 - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://www.gnu.org/software/classpath/license.html - repo - - - - - eclipseee4j - Eclipse EE4J Developers - ee4j-pmc@eclipse.org - Eclipse Foundation - - - - - Community discussions - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - jakarta.ee-community@eclipse.org - https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ - - http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss - - - - PMC discussions - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://accounts.eclipse.org/mailing-list/ee4j-pmc - ee4j-pmc@eclipse.org - https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ - - http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss - - - - - scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakartaee-api-parent/jakarta.jakartaee-web-api - scm:git:git@github.com:eclipse-ee4j/ee4j.git/jakartaee-api-parent/jakarta.jakartaee-web-api - https://github.com/eclipse-ee4j/ee4j/jakartaee-api-parent/jakarta.jakartaee-web-api - - - GitHub Issues - https://github.com/eclipse-ee4j/ee4j/issues - - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - compile - - - * - * - - - false - - - jakarta.servlet.jsp - jakarta.servlet.jsp-api - 3.1.0 - compile - - - * - * - - - false - - - jakarta.el - jakarta.el-api - 5.0.1 - compile - false - - - jakarta.servlet.jsp.jstl - jakarta.servlet.jsp.jstl-api - 3.0.0 - compile - - - * - * - - - false - - - jakarta.faces - jakarta.faces-api - 4.0.1 - compile - - - * - * - - - false - - - jakarta.ws.rs - jakarta.ws.rs-api - 3.1.0 - compile - false - - - jakarta.websocket - jakarta.websocket-api - 2.1.0 - compile - false - - - jakarta.websocket - jakarta.websocket-client-api - 2.1.0 - compile - false - - - jakarta.json - jakarta.json-api - 2.1.0 - compile - false - - - jakarta.json.bind - jakarta.json.bind-api - 3.0.0 - compile - false - - - jakarta.annotation - jakarta.annotation-api - 2.1.1 - compile - false - - - jakarta.ejb - jakarta.ejb-api - 4.0.1 - compile - - - * - * - - - false - - - jakarta.transaction - jakarta.transaction-api - 2.0.1 - compile - - - * - * - - - false - - - jakarta.persistence - jakarta.persistence-api - 3.1.0 - compile - false - - - jakarta.validation - jakarta.validation-api - 3.0.2 - compile - - - * - * - - - false - - - jakarta.interceptor - jakarta.interceptor-api - 2.1.0 - compile - - - * - * - - - false - - - jakarta.enterprise - jakarta.enterprise.cdi-api - 4.0.1 - compile - - - * - * - - - false - - - jakarta.enterprise - jakarta.enterprise.lang-model - 4.0.1 - compile - false - - - jakarta.inject - jakarta.inject-api - 2.0.1 - compile - false - - - jakarta.authentication - jakarta.authentication-api - 3.0.0 - compile - - - * - * - - - false - - - jakarta.security.enterprise - jakarta.security.enterprise-api - 3.0.0 - compile - - - * - * - - - false - - - jakarta.enterprise.concurrent - jakarta.enterprise.concurrent-api - 3.0.1 - compile - - - * - * - - - true - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - provided - - - * - * - - - true - - - jakarta.activation - jakarta.activation-api - 2.1.0 - provided - true - - - org.glassfish - jakarta.faces - 4.0.0 - provided - - - * - * - - - true - - - - diff --git a/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom.sha1 b/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom.sha1 deleted file mode 100644 index 936ca9aff..000000000 --- a/code/arachne/jakarta/platform/jakarta.jakartaee-web-api/10.0.0/jakarta.jakartaee-web-api-10.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ded99e8b6f2149695c384e8a577e09d53c1ef537 \ No newline at end of file diff --git a/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/_remote.repositories b/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/_remote.repositories deleted file mode 100644 index 315772100..000000000 --- a/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:49 EDT 2024 -jakartaee-api-parent-9.1.0.pom>central= diff --git a/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom b/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom deleted file mode 100644 index 491553860..000000000 --- a/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom +++ /dev/null @@ -1,320 +0,0 @@ - - - - - 4.0.0 - - org.eclipse.ee4j - project - 1.0.7 - - jakarta.platform - jakartaee-api-parent - 9.1.0 - pom - Jakarta EE API parent - Jakarta EE API parent - - - jakartaee-bom - jakartaee-web-api - jakartaee-api - - - - UTF-8 - 9.0.0 - - - - 5.0.0 - 3.0.0 - 2.0.0 - 3.0.0 - 4.0.0 - 2.0.0 - 2.0.1 - 2.0.0 - 2.0.0 - 4.0.0 - 2.0.0 - 3.0.0 - 3.0.0 - 2.0.0 - 3.0.0 - 2.0.0 - 2.0.0 - 2.0.0 - 3.0.0 - - - 3.0.0 - 2.0.1 - 2.0.1 - 2.0.0 - 2.0.0 - 2.0.0 - 2.0.0 - - - 3.0.1 - 3.0.1 - 2.0.1 - 3.0.0 - - - 1.50 - - - 3.0.0 - - - - - package - - - org.apache.maven.plugins - maven-jar-plugin - - true - - - false - false - false - - - - - - org.apache.maven.plugins - maven-resources-plugin - - - copy-resource-files - process-resources - - copy-resources - - - - - ${project.build.directory}/sources-dependency - - **/*.properties - - - - ${project.build.directory}/classes - - - - copy-javadoc-resources - process-resources - - copy-resources - - - - - ${project.build.directory}/sources-dependency - - **/*.jpg - **/*.gif - **/*.pdf - - - - ${project.build.directory}/site/apidocs - - - - - - maven-compiler-plugin - - - default-compile - - 1.8 - 1.8 - - - - - default-testCompile - - 1.8 - 1.8 - - - - - - org.apache.maven.plugins - maven-deploy-plugin - - true - - false - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.7.0 - - - org.apache.maven.plugins - maven-source-plugin - 2.1 - - true - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.glassfish.build - glassfishbuild-maven-plugin - 3.2.28 - - - unpack-sources - process-sources - - true - tools-jar,servlet-api,jakarta.faces - ${extra.excludes} - jakarta/**, resources/** - true - - - - generate-pom - package - - - org.eclipse.ee4j - project - 1.0 - - jakarta.platform - ${project.artifactId} - ${jakartaee.version} - - - - attach-all-artifacts - verify - - ${project.build.directory}/pom.xml - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.1.0 - - false - ${javadoc.options} - true - ${project.basedir}/../src/main/javadoc - true - none - ${project.name} - ${project.name} -
    ${project.name} v${project.version}]]>
    - -Copyright © 2018,2020 Eclipse Foundation.
    Use is subject to -license terms.]]> -
    - - - implSpec - a - Implementation Specification: - - -
    -
    -
    -
    - - - META-INF/ - false - ${project.basedir}/.. - - LICENSE.txt - - - -
    - - - - - check-serial-version-uid - - - - org.apache.maven.plugins - maven-compiler-plugin - - false - true - - -Xlint:serial - - - - - - - -
    diff --git a/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 b/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 deleted file mode 100644 index cd2711cfa..000000000 --- a/code/arachne/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e5020a636b3c0cc4c5dd110e17213aaded1d6895 \ No newline at end of file diff --git a/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/_remote.repositories b/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/_remote.repositories deleted file mode 100644 index 9b5eef187..000000000 --- a/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:06 EDT 2024 -jakarta.resource-api-2.1.0.pom>central= diff --git a/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom b/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom deleted file mode 100644 index 46ddb6e98..000000000 --- a/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom +++ /dev/null @@ -1,296 +0,0 @@ - - - - - 4.0.0 - - org.eclipse.ee4j - project - 1.0.7 - - - jakarta.resource - jakarta.resource-api - 2.1.0 - - - jakarta.resource - 2.1 - false - false - Low - 4.5.0.0 - - ${extension.name} API - Jakarta Connectors ${spec.version} - - https://github.com/eclipse-ee4j/jca-api - - - - yaminikb - Yamini K B - Oracle Corporation - http://www.oracle.com/ - - - smillidge - Steve Millidge - Payara - http://www.payara.fish/ - - - - - - Sivakumar Thyagarajan - Oracle, Inc. - - - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - github - https://github.com/eclipse-ee4j/jca-api/issues - - - scm:git:ssh://git@github.com/eclipse-ee4j/jca-api.git - scm:git:ssh://git@github.com/eclipse-ee4j/jca-api.git - https://github.com/eclipse-ee4j/jca-api - HEAD - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [11,) - - - [3.6.0,) - - - - - - - - maven-compiler-plugin - 3.8.1 - - 11 - - - -Xlint:all,-dep-ann - - true - true - - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - jakarta - - ${non.final} - api - ${spec.version} - ${project.version} - ${extension.name} - - - - - - set-spec-properties - check-module - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.3 - - - jar - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - - Jakarta Connectors ${spec.version} Specification - - Jakarta Connectors - ${project.organization.name} - org.glassfish - jakarta.transaction;version="[2.0,3.0)",* - <_include>-${basedir}/osgi.bundle - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - - false - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.2.0 - - - currentyear-property - - timestamp-property - - validate - - current.year - en,US - yyyy - - - - add-resource - generate-resources - - add-resource - - - - - .. - META-INF - - LICENSE.md - NOTICE.md - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - - - false - - - 11 - none - true - true - true -
    Jakarta Connectors API v${project.version}]]>
    - -license terms. -]]> - - - - Jakarta(tm) Connectors API Documentation - jakarta.resource - - -
    -
    - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - ${spotbugs.skip} - ${spotbugs.threshold} - true - - -
    -
    - - - jakarta.transaction - jakarta.transaction-api - 2.0.1 - - - jakarta.annotation - jakarta.annotation-api - 2.1.0 - - - - jakarta.enterprise - jakarta.enterprise.cdi-api - 3.0.1 - provided - - -
    diff --git a/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom.sha1 b/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom.sha1 deleted file mode 100644 index ee8026c24..000000000 --- a/code/arachne/jakarta/resource/jakarta.resource-api/2.1.0/jakarta.resource-api-2.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3115484af6195efd35e24c1b738c4050c0bc52c1 \ No newline at end of file diff --git a/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/_remote.repositories b/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/_remote.repositories deleted file mode 100644 index 44fdf0d07..000000000 --- a/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.security.enterprise-api-3.0.0.pom>central= diff --git a/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom b/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom deleted file mode 100644 index 58f949434..000000000 --- a/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom +++ /dev/null @@ -1,336 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.6 - - - - jakarta.security.enterprise - jakarta.security.enterprise-api - 3.0.0 - bundle - - Jakarta Security - - Jakarta Security defines a standard for creating secure Jakarta EE applications in modern application paradigms. - It defines an overarching (end-user targeted) Security API for Jakarta EE Applications. - - 2015 - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - - scm:git:https://github.com/eclipse-ee4j/security-api.git - scm:git:https://github.com/eclipse-ee4j/security-api.git - https://github.com/eclipse-ee4j/security-api - HEAD - - - - UTF-8 - UTF-8 - - 11 - 11 - - - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - provided - - - jakarta.interceptor - jakarta.interceptor-api - 2.1.0 - provided - - - jakarta.el - jakarta.el-api - 5.0.0 - provided - - - jakarta.enterprise - jakarta.enterprise.cdi-api - 4.0.0 - provided - - - jakarta.authentication - jakarta.authentication-api - 3.0.0 - provided - - - jakarta.authorization - jakarta.authorization-api - 2.1.0 - provided - - - jakarta.json - jakarta.json-api - 2.1.0 - - - - junit - junit - 4.13.2 - test - - - - - - - ${project.basedir}/.. - - LICENSE.md - NOTICE.md - - META-INF - - - ${project.basedir} - - LICENSE.md - NOTICE.md - - META-INF - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.5.4 - - - - - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - git - true - - speclicense.html - - - - - validate - - copyright - check - - - - - - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - - 3.0 - ${project.version} - jakarta.security.enterprise - - - - - - set-spec-properties - check-module - - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.4 - true - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - - Jakarta Security ${spec.specification.version} Specification - - Oracle Corporation - ${project.organization.name} - jakarta.security.enterprise.* - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - - attach-api-javadocs - - jar - - - 11 - true - -Xdoclint:none - false - Jakarta Security API documentation - Jakarta Security API documentation - Jakarta Security API documentation -
    Jakarta Security API v${project.version}]]>
    - es-dev@eclipse.org.
    -Copyright © 2019, 2022 Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - true - - - Jakarta Security API Documentation - - jakarta.security.enterprise.* - - - -
    -
    -
    -
    -
    -
    - - - - only-eclipse - - - m2e.version - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.glassfish.build - spec-version-maven-plugin - [1.2,) - - set-spec-properties - - - - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - [1.2,) - - copyright - check - - - - - - - - - - - - - - - -
    diff --git a/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom.sha1 b/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom.sha1 deleted file mode 100644 index 2bc7ee18c..000000000 --- a/code/arachne/jakarta/security/enterprise/jakarta.security.enterprise-api/3.0.0/jakarta.security.enterprise-api-3.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8b2cf71171691b3da4a3cc27252f3084d4cd3882 \ No newline at end of file diff --git a/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/_remote.repositories b/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/_remote.repositories deleted file mode 100644 index 57a033e6b..000000000 --- a/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:04 EDT 2024 -jakarta.servlet-api-6.0.0.pom>central= diff --git a/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom b/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom deleted file mode 100644 index b34a1e306..000000000 --- a/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom +++ /dev/null @@ -1,462 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.7 - - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - - Jakarta Servlet - https://projects.eclipse.org/projects/ee4j.servlet - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - - - yaminikb - Yamini K B - Oracle Corporation - http://www.oracle.com/ - - - - - Ed Burns - - - Shing Wai Chan - - - - - - Servlet mailing list - servlet-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/servlet-dev - https://dev.eclipse.org/mailman/listinfo/servlet-dev - https://dev.eclipse.org/mhonarc/lists/servlet-dev - - - - - scm:git:https://github.com/eclipse-ee4j/servlet-api.git - scm:git:git@github.com:eclipse-ee4j/servlet-api.git - https://github.com/eclipse-ee4j/servlet-api - HEAD - - - github - https://github.com/eclipse-ee4j/servlet-api/issues - - - - - org.junit.jupiter - junit-jupiter-engine - 5.8.1 - test - - - org.junit.jupiter - junit-jupiter-params - 5.8.1 - test - - - org.hamcrest - hamcrest - 2.2 - test - - - - - - - src/main/java - - **/*.properties - **/*.html - - - - src/main/resources - - - - - - net.revelc.code.formatter - formatter-maven-plugin - 2.11.0 - - ${project.basedir}/etc/config/ee4j-eclipse-formatting.xml - - - - net.revelc.code - impsort-maven-plugin - 1.4.1 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.5.4 - - - - - - - - - - maven-compiler-plugin - 3.8.1 - - 11 - 11 - -Xlint:all - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0-M5 - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - etc/config/copyright-exclude - - git - - off - - true - - true - - false - - false - etc/config/copyright-eclipse.txt - etc/config/copyright-oracle.txt - - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.2 - - - jar - - - 6.0.0 - jakarta.servlet-api - - Jakarta Servlet 6.0 - - jakarta.servlet - 6.0 - Eclipse Foundation - ${project.version} - ${project.organization.name} - org.eclipse - jakarta.servlet.* - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - **/*.java - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - true - - - - attach-sources - - jar-no-fork - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.0 - - - attach-api-javadocs - - jar - - - true - 11 - -Xdoclint:none - Jakarta Servlet API documentation - Jakarta Servlet API documentation - Jakarta Servlet API documentation -
    Jakarta Servlet API v${project.version}]]>
    - servlet-dev@eclipse.org.
    -Copyright © 2019, 2022 Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - true - - - Jakarta Servlet API Documentation - - jakarta.servlet.* - - - - - - implSpec - a - Implementation Requirements: - - - param - - - return - - - throws - - - since - - - version - - - serialData - - - factory - - - see - - -
    -
    -
    -
    - - - org.codehaus.mojo - build-helper-maven-plugin - 3.1.0 - - - add-resource - generate-resources - - add-resource - - - - - ${maven.multiModuleProjectDirectory} - META-INF - - LICENSE.md - NOTICE.md - - - - - - - -
    -
    - - - - - - format - - true - - !validate-format - - - - - - net.revelc.code.formatter - formatter-maven-plugin - - - process-sources - - format - - - - - - net.revelc.code - impsort-maven-plugin - - true - - - - sort-imports - - sort - - - - - - - - - validate - - true - - validate-format - - - - - - net.revelc.code.formatter - formatter-maven-plugin - - - process-sources - - validate - - - - - - net.revelc.code - impsort-maven-plugin - - true - - - - check-imports - - check - - - - - - - - - -
    diff --git a/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom.sha1 b/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom.sha1 deleted file mode 100644 index 6eba8ffd6..000000000 --- a/code/arachne/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -31e5c0c37cd563caf1e8aa9899f9c78ebef4570c \ No newline at end of file diff --git a/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/_remote.repositories b/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/_remote.repositories deleted file mode 100644 index ec77348cd..000000000 --- a/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:04 EDT 2024 -jakarta.servlet.jsp-api-3.1.0.pom>central= diff --git a/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom b/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom deleted file mode 100644 index f417a8be3..000000000 --- a/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom +++ /dev/null @@ -1,289 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.6 - - - - jakarta.servlet.jsp - jakarta.servlet.jsp-api - 3.1.0 - jar - - Jakarta Server Pages API - Jakarta Server Pages API - https://projects.eclipse.org/projects/ee4j.jsp - - - - jakarta-ee4j-jsp - Jakarta Server Pages Developers - Eclipse Foundation - jsp-dev@eclipse.org - - - - - Jakarta Server Pages Contributors - jsp-dev@eclipse.org - https://github.com/eclipse-ee4j/jsp-api/graphs/contributors - - - - - - JSP dev mailing list - jsp-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/jsp-dev - https://dev.eclipse.org/mailman/listinfo/jsp-dev - https://dev.eclipse.org/mhonarc/lists/jsp-dev - - - - - scm:git:https://github.com/eclipse-ee4j/jsp-api.git - scm:git:ssh://git@github.com/eclipse-ee4j/jsp-api.git - https://github.com/eclipse-ee4j/jsp-api - HEAD - - - github - https://github.com/eclipse-ee4j/jsp-api/issues - - - - - 3.1 - ${project.version} - jakarta.servlet.jsp - jakarta.servlet.jsp-api - Eclipse Foundation - - - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - provided - - - jakarta.el - jakarta.el-api - 5.0.0 - provided - - - - - - - src/main/java - - **/*.properties - - - - ${project.basedir}/.. - - LICENSE.md - NOTICE.md - - META-INF - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - enforce-maven - - enforce - - - - - 3.5.4 - You need Maven 3.5.4 or higher - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 11 - 11 - -Xlint:unchecked - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.3 - - etc/config/copyright-exclude - - git - - false - - true - - true - - false - - false - etc/config/copyright-eclipse.txt - etc/config/copyright-oracle.txt - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.1 - - - jar - - - Jakarta Server Pages ${spec.version} - ${bundle.symbolicName} - ${bundle.version} - ${extensionName} - ${spec.version} - ${vendorName} - ${project.version} - ${vendorName} - jakarta.servlet.jsp.* - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - maven-jar-plugin - 3.2.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - **/*.java - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - true - - - - attach-sources - - jar-no-fork - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - - attach-javadocs - - jar - - - 11 - -Xdoclint:none - Jakarta Server Pages API documentation - Jakarta Server Pages API documentation - Jakarta Server Pages API documentation -
    Jakarta Server Pages API v${project.version}]]>
    - jsp-dev@eclipse.org.
    -Copyright © 2018, 2021 Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - true - - - Jakarta Server Pages API Documentation - - jakarta.servlet.jsp* - - - -
    -
    -
    -
    - - - - org.sonatype.plugins - nexus-staging-maven-plugin - - 3bda51d9c036 - - -
    -
    -
    diff --git a/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom.sha1 b/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom.sha1 deleted file mode 100644 index 67f69b045..000000000 --- a/code/arachne/jakarta/servlet/jsp/jakarta.servlet.jsp-api/3.1.0/jakarta.servlet.jsp-api-3.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -77b6ff4771a3b3f0932ff5f77f95ef510ab283d0 \ No newline at end of file diff --git a/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/_remote.repositories b/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/_remote.repositories deleted file mode 100644 index 9d61a9a2c..000000000 --- a/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:04 EDT 2024 -jakarta.servlet.jsp.jstl-api-3.0.0.pom>central= diff --git a/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom b/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom deleted file mode 100644 index f1595c16e..000000000 --- a/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom +++ /dev/null @@ -1,310 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.6 - - - - jakarta.servlet.jsp.jstl - jakarta.servlet.jsp.jstl-api - 3.0.0 - jar - - Jakarta Standard Tag Library API - Jakarta Standard Tag Library API - https://projects.eclipse.org/projects/ee4j.jstl - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - - - yaminikb - Yamini K B - Oracle Corporation - http://www.oracle.com/ - - - - - Kin Man Chung - - - - - - JSTL dev mailing list - jstl-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/jstl-dev - https://dev.eclipse.org/mailman/listinfo/jstl-dev - https://dev.eclipse.org/mhonarc/lists/jstl-dev - - - - - scm:git:https://github.com/eclipse-ee4j/jstl-api.git - scm:git:ssh://git@github.com/eclipse-ee4j/jstl-api.git - https://github.com/eclipse-ee4j/jstl-api - HEAD - - - github - https://github.com/eclipse-ee4j/jstl-api/issues - - - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - - - jakarta.servlet.jsp - jakarta.servlet.jsp-api - 3.1.0 - provided - - - jakarta.el - jakarta.el-api - 5.0.0 - - - - - - - src/main/java - - **/*.properties - - - - ${project.basedir}/.. - - LICENSE.md - NOTICE.md - - META-INF - - - ${project.basedir} - - LICENSE.md - NOTICE.md - - META-INF - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.6.0 - - - - - - - - - - maven-compiler-plugin - 3.8.1 - - 11 - -Xlint:unchecked - - - - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - - 3.0 - ${project.version} - jakarta.servlet.jsp.jstl - - - - - - set-spec-properties - check-module - - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.3 - - - jar - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - - Jakarta Standard Tag Library ${spec.specification.version} Specification - - ${project.organization.name} - ${project.organization.name} - org.glassfish - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - **/*.java - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - true - - - - attach-sources - - jar-no-fork - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.2.0 - - - timestamp-property - - timestamp-property - - validate - - current.year - yyyy - en_US - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - - attach-api-javadocs - - jar - - - 11 - -Xdoclint:none - Jakarta Standard Tag Library API documentation - Jakarta Standard Tag Library API documentation - Jakarta Standard Tag Library API documentation -
    Jakarta Standard Tag Library API v${project.version}]]>
    - jstl-dev@eclipse.org.
    -Copyright © 2018, ${current.year} Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - true - - - Jakarta Standard Tag Library API Documentation - jakarta.servlet.jsp.jstl* - - -
    -
    -
    -
    -
    -
    -
    diff --git a/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom.sha1 b/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom.sha1 deleted file mode 100644 index 2b06d5562..000000000 --- a/code/arachne/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/3.0.0/jakarta.servlet.jsp.jstl-api-3.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a36fe9884f2a11be485ea2949acd87701f6b9ef4 \ No newline at end of file diff --git a/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/_remote.repositories b/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/_remote.repositories deleted file mode 100644 index 114a57e6f..000000000 --- a/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:01 EDT 2024 -jakarta.transaction-api-2.0.1.pom>central= diff --git a/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom b/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom deleted file mode 100644 index 2bf5a2dd1..000000000 --- a/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom +++ /dev/null @@ -1,329 +0,0 @@ - - - - - 4.0.0 - - org.eclipse.ee4j - project - 1.0.6 - - - - jakarta.transaction - jakarta.transaction-api - 2.0.1 - - - false - jakarta.transaction - 2.0 - 1.8 - 1.8 - - ${extension.name} API - Jakarta Transactions - https://projects.eclipse.org/projects/ee4j.jta - - - - stephen_felts - Stephen Felts - Oracle, Inc. - - lead - - - - - - EE4J Community - https://github.com/eclipse-ee4j - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - github - https://github.com/eclipse-ee4j/jta-api/issues - - - - Jakarta Transactions mailing list - jta-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/jta-dev - https://dev.eclipse.org/mailman/listinfo/jta-dev - https://dev.eclipse.org/mhonarc/lists/jta-dev/ - - - - scm:git:https://github.com/eclipse-ee4j/jta-api.git - scm:git:git@github.com:eclipse-ee4j/jta-api.git - https://github.com/eclipse-ee4j/jta-api - HEAD - - - - - - src/main/java - - **/*.properties - **/*.html - - - - src/main/resources - - - - - - maven-compiler-plugin - 3.8.1 - - - 11 - - -Xlint:all - - true - true - - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - jakarta - - ${non.final} - api - ${spec.version} - ${project.version} - ${extension.name} - - - - - - set-spec-properties - check-module - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.1 - - - jar - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - - Jakarta(TM) Transactions ${spec.version} API Design Specification - - Oracle Corporation - ${project.organization.name} - org.glassfish - - jakarta.enterprise.context;version=!, - jakarta.enterprise.util;version=!, - jakarta.interceptor;version="2.0.1", - javax.transaction.xa, - * - - - jakarta.transaction;version="2.0.1";uses:="javax.transaction.xa,jakarta.interceptor,jakarta.enterprise.context,jakarta.enterprise.util" - - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - jakarta.transaction - - - - - **/*.java - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.0.0 - - - add-resource - generate-resources - - add-resource - - - - - .. - META-INF - - LICENSE.md - NOTICE.md - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1 - - true - - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - false - - Jakarta Transactions documentation - - - Jakarta Transactions documentation - - - Jakarta Transactions documentation - - true - true - - Use is subject to - license terms. - ]]> - - 1.8 - - - - package - - javadoc - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - forked-path - false - ${release.arguments} - - - - org.apache.maven.plugins - maven-site-plugin - 3.1 - - - - - - jakarta.enterprise - jakarta.enterprise.cdi-api - 3.0.1 - provided - - - jakarta.interceptor - jakarta.interceptor-api - 2.0.1 - provided - - - diff --git a/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom.sha1 b/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom.sha1 deleted file mode 100644 index 305f69db4..000000000 --- a/code/arachne/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5ea0f7ca81255825d28b937eb08d718087a0daa9 \ No newline at end of file diff --git a/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/_remote.repositories b/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/_remote.repositories deleted file mode 100644 index 4ac9d8eca..000000000 --- a/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:56 EDT 2024 -jakarta.validation-api-3.0.2.pom>central= diff --git a/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom b/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom deleted file mode 100644 index dca6f3117..000000000 --- a/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom +++ /dev/null @@ -1,277 +0,0 @@ - - - - 4.0.0 - - org.eclipse.ee4j - project - 1.0.6 - - - jakarta.validation - jakarta.validation-api - 3.0.2 - jar - Jakarta Bean Validation API - https://beanvalidation.org - - - Jakarta Bean Validation API - - - - - epbernard - Emmanuel Bernard - emmanuel@hibernate.org - Red Hat, Inc. - http://in.relation.to/emmanuel-bernard/ - - - emmanuelbernard - Emmanuel Bernard - emmanuel@hibernate.org - Red Hat, Inc. - http://in.relation.to/emmanuel-bernard/ - - - hardy.ferentschik - Hardy Ferentschik - hferents@redhat.com - Red Hat, Inc. - http://in.relation.to/hardy-ferentschik/ - - - gunnar.morling - Gunnar Morling - gunnar@hibernate.org - Red Hat, Inc. - http://in.relation.to/gunnar-morling/ - - - guillaume.smet - Guillaume Smet - guillaume.smet@hibernate.org - Red Hat, Inc. - http://in.relation.to/guillaume-smet/ - - - - - JIRA - https://hibernate.atlassian.net/projects/BVAL/ - - - 2007 - - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - scm:git:git://github.com/eclipse-ee4j/beanvalidation-api.git - scm:git:git@github.com:eclipse-ee4j/beanvalidation-api.git - https://github.com/eclipse-ee4j/beanvalidation-api - HEAD - - - - UTF-8 - - - - - org.testng - testng - 6.11 - test - - - - - - - org.apache.felix - maven-bundle-plugin - 3.5.0 - - - - jakarta.validation.*;version="${project.version}", - - - - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 9 - - -Xlint:all - - true - true - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - once - true - - **/*Test.java - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.0.2 - - - ${basedir}/target/classes/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.0 - - - attach-javadocs - - jar - - - - - 8 - false - Jakarta Bean Validation API Packages - Jakarta Bean Validation API ${project.version} - Jakarta Bean Validation API ${project.version} - bean-validation-dev@eclipse.org.
    -Copyright © 2019,2020 Eclipse Foundation.
    -Use is subject to EFSL; this spec is based on material that is licensed under the Apache License, version 2.0.]]> -
    -
    -
    - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - true - true - deploy - - - - maven-deploy-plugin - 3.0.0-M1 - - - com.mycila - license-maven-plugin - 3.0 - -
    ${project.basedir}/license/license.header
    - true - - ${project.basedir}/license/java-header-style.xml - ${project.basedir}/license/xml-header-style.xml - - - JAVA_CLASS_STYLE - XML_FILE_STYLE - XML_FILE_STYLE - - - **/*.java - **/*.xml - **/*.xsd - -
    - - - license-headers - - check - - - -
    -
    -
    - - - - release - - true - - - - -
    diff --git a/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom.sha1 b/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom.sha1 deleted file mode 100644 index 92727c286..000000000 --- a/code/arachne/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8c6efd0edc3669094814b1af2d990b9e42666f7e \ No newline at end of file diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/_remote.repositories b/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/_remote.repositories deleted file mode 100644 index 9517b3551..000000000 --- a/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.websocket-all-2.1.1.pom>central= diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom b/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom deleted file mode 100644 index 42a0ff4b5..000000000 --- a/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom +++ /dev/null @@ -1,263 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.8 - - - - jakarta.websocket - jakarta.websocket-all - 2.1.1 - pom - - Jakarta WebSocket API Parent - Jakarta WebSocket API Parent - https://projects.eclipse.org/projects/ee4j.websocket - - 2012 - - - - jakarta-ee4j-websocket - Jakarta WebSocket Developers - Eclipse Foundation - websocket-dev@eclipse.org - - - - - - Jakarta WebSocket Contributors - websocket-dev@eclipse.org - https://github.com/eclipse-ee4j/websocket-api/graphs/contributors - - - - - - WebSocket dev mailing list - websocket-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/websocket-dev - https://dev.eclipse.org/mailman/listinfo/websocket-dev - https://dev.eclipse.org/mhonarc/lists/websocket-dev - - - - - scm:git:https://github.com/eclipse-ee4j/websocket-api.git - scm:git:ssh://git@github.com/eclipse-ee4j/websocket-api.git - https://github.com/eclipse-ee4j/websocket-api - HEAD - - - - github - https://github.com/eclipse-ee4j/websocket-api/issues - - - - - 2.1 - ${project.version} - Eclipse Foundation - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - enforce-maven - - enforce - - - - - 3.5.4 - You need Maven 3.5.4 or higher - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 1.8 - 1.8 - -Xlint:unchecked - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.3 - - etc/config/copyright-exclude - - git - - false - - true - - true - - false - - false - etc/config/copyright-eclipse.txt - etc/config/copyright-oracle.txt - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.1 - - - Jakarta WebSocket ${spec.version} - ${bundle.symbolicName} - ${bundle.version} - ${extensionName} - ${spec.version} - ${vendorName} - ${project.version} - ${vendorName} - jakarta.websocket.* - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - maven-jar-plugin - 3.1.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - true - - - - attach-sources - - jar-no-fork - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.1.1 - - - attach-javadocs - - jar - - - 1.8 - -Xdoclint:none - Jakarta WebSocket API documentation - Jakarta WebSocket API documentation - Jakarta WebSocket API documentation -
    - websocket-dev@eclipse.org.
    -Copyright © 2018, 2021 Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - true - - - Jakarta WebSocket API Documentation - - jakarta.websocket* - - - - - - implSpec - a - Implementation Requirements: - - - - https://docs.oracle.com/javase/8/docs/api/ - - true -
    -
    -
    -
    -
    -
    -
    - - - client - server - -
    diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom.sha1 b/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom.sha1 deleted file mode 100644 index 3f93fe2cb..000000000 --- a/code/arachne/jakarta/websocket/jakarta.websocket-all/2.1.1/jakarta.websocket-all-2.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e3dbfb7d5c0557316957b861d6aa3f158f41a446 \ No newline at end of file diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/_remote.repositories b/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/_remote.repositories deleted file mode 100644 index ffe58c941..000000000 --- a/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.websocket-api-2.1.1.pom>central= diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom b/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom deleted file mode 100644 index 583537faf..000000000 --- a/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom +++ /dev/null @@ -1,115 +0,0 @@ - - - - - 4.0.0 - - jakarta.websocket - jakarta.websocket-all - 2.1.1 - - - jakarta.websocket-api - jar - Jakarta WebSocket - Server API - Jakarta WebSocket - Server API - https://projects.eclipse.org/projects/ee4j.websocket - - - jakarta.websocket-api - jakarta.websocket - - - - - - ${project.basedir}/../../ - - LICENSE.md - NOTICE.md - - META-INF - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.apache.maven.plugins - maven-compiler-plugin - - 9 - - -Xlint:all - - true - true - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - - - jakarta.websocket - jakarta.websocket-client-api - ${project.version} - provided - - - diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom.sha1 b/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom.sha1 deleted file mode 100644 index c685a5a60..000000000 --- a/code/arachne/jakarta/websocket/jakarta.websocket-api/2.1.1/jakarta.websocket-api-2.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -380d095fc76d7a0c635e6c54e95414ef9443e268 \ No newline at end of file diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/_remote.repositories b/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/_remote.repositories deleted file mode 100644 index 1ade6f02e..000000000 --- a/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:05 EDT 2024 -jakarta.websocket-client-api-2.1.1.pom>central= diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom b/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom deleted file mode 100644 index 337bb9728..000000000 --- a/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom +++ /dev/null @@ -1,106 +0,0 @@ - - - - - 4.0.0 - - jakarta.websocket - jakarta.websocket-all - 2.1.1 - - - jakarta.websocket-client-api - jar - Jakarta WebSocket - Client API - Jakarta WebSocket - Client API - https://projects.eclipse.org/projects/ee4j.websocket - - - jakarta.websocket-client-api - jakarta.websocket-client - - - - - - ${project.basedir}/../../ - - LICENSE.md - NOTICE.md - - META-INF - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.apache.maven.plugins - maven-compiler-plugin - - 9 - - -Xlint:all - - true - true - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.maven.plugins - maven-jar-plugin - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - diff --git a/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom.sha1 b/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom.sha1 deleted file mode 100644 index 235f04451..000000000 --- a/code/arachne/jakarta/websocket/jakarta.websocket-client-api/2.1.1/jakarta.websocket-client-api-2.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0ff7a942f4ae26d861b46503cb538bb61e73492a \ No newline at end of file diff --git a/code/arachne/jakarta/ws/rs/all/3.1.0/_remote.repositories b/code/arachne/jakarta/ws/rs/all/3.1.0/_remote.repositories deleted file mode 100644 index 63c790500..000000000 --- a/code/arachne/jakarta/ws/rs/all/3.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:58 EDT 2024 -all-3.1.0.pom>central= diff --git a/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom b/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom deleted file mode 100644 index e8bf7661f..000000000 --- a/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom +++ /dev/null @@ -1,87 +0,0 @@ - - - - - 4.0.0 - - jakarta.ws.rs - all - 3.1.0 - pom - Jakarta RESTful WS Project - - - org.eclipse.ee4j - project - 1.0.7 - - - - - - repo.eclipse.org - JAX-RS API Repository - Snapshots - https://repo.eclipse.org/content/repositories/jax-rs-api-snapshots/ - - - - - - release-eclipse - - - repo.eclipse.org - JAX-RS API Repository - Releases - https://repo.eclipse.org/content/repositories/jax-rs-api-releases/ - - - - - dependentModules - - true - - jaxrs.all.build - - - - jaxrs-api - jaxrs-tck - examples - - - - dependentSpecification - - - jaxrs.all.build - - - - jaxrs-spec - - - - jersey-tck - - - jaxrs.jerseytck.build - - - - jersey-tck - - - - diff --git a/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom.sha1 b/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom.sha1 deleted file mode 100644 index 986db37bd..000000000 --- a/code/arachne/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -441bf5fed041486c0a616e8a5d966458f34cf0ab \ No newline at end of file diff --git a/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/_remote.repositories b/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/_remote.repositories deleted file mode 100644 index 62104e9d6..000000000 --- a/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:57 EDT 2024 -jakarta.ws.rs-api-3.1.0.pom>central= diff --git a/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom b/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom deleted file mode 100644 index 530269dd1..000000000 --- a/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom +++ /dev/null @@ -1,407 +0,0 @@ - - - - - 4.0.0 - - jakarta.ws.rs-api - bundle - Jakarta RESTful WS API - Jakarta RESTful Web Services - - - jakarta.ws.rs - all - 3.1.0 - - - https://github.com/eclipse-ee4j/jaxrs-api - - - Eclipse Foundation - https://www.eclipse.org/org/foundation/ - - - - - developers - JAX-RS API Developers - jaxrs-dev@eclipse.org - https://github.com/eclipse-ee4j/jaxrs-api/graphs/contributors - - - - - Github - https://github.com/eclipse-ee4j/jaxrs-api/issues - - - - - JAX-RS Developer Discussions - jaxrs-dev@eclipse.org - - - - - - EPL-2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL-2.0-with-classpath-exception - https://www.gnu.org/software/classpath/license.html - repo - - - - - scm:git:https://github.com/eclipse-ee4j/jaxrs-api - https://github.com/eclipse-ee4j/jaxrs-api - HEAD - - - - - - skip-tests - - false - - - true - - - - - - ${project.artifactId} - - - - maven-jar-plugin - 3.2.0 - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - {0,date,MM/dd/yyyy hh:mm aa} - - timestamp - - - - - validate - - create - - - - - - org.apache.felix - maven-bundle-plugin - ${maven.bundle.plugin.version} - true - - - <_failok>true - ${buildNumber} - Jakarta RESTful Web Services API (JAX-RS) - ${project.version} - jakarta.ws.rs-api - * - ${api.package} - ${project.version} - ${spec.version} - Eclipse Foundation - ${spec.version} - <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@))) - <_nodefaultversion>false - osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))" - - - - - osgi-bundle - package - - bundle - - - - - - maven-javadoc-plugin - ${maven.javadoc.plugin.version} - - 8 - ${apidocs.title} - true - - Copyright © 2018, 2020 Eclipse Foundation.
    Use is subject to license terms.]]> -
    - true - - - module-info.java - -
    - - - attach-javadocs - - jar - - - -
    - - maven-source-plugin - 3.2.1 - - - attach-sources - - jar-no-fork - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.2.0 - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.folder} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - - - maven-jxr-plugin - 3.1.1 - - - - jxr - - validate - - - - - maven-checkstyle-plugin - 3.1.2 - - ${project.build.directory}/checkstyle - ${project.build.directory}/checkstyle/checkstyle-result.xml - ${basedir}/../etc/config/checkstyle.xml - **/module-info.java - true - - - - com.puppycrawl.tools - checkstyle - 8.44 - - - - - - checkstyle - - validate - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 1.39 - - ${basedir}/../etc/config/copyright-exclude - - git - - false - - true - - true - - false - - false - - - - maven-surefire-plugin - ${maven.surefire.plugin.version} - - --add-modules jakarta.xml.bind - - - - maven-compiler-plugin - ${maven.compiler.plugin.version} - -
    -
    - - - org.apache.felix - maven-bundle-plugin - - - maven-compiler-plugin - - - maven-jar-plugin - - - org.codehaus.mojo - buildnumber-maven-plugin - - - maven-javadoc-plugin - - - maven-source-plugin - - - maven-jxr-plugin - - - maven-checkstyle-plugin - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - - org.codehaus.mojo - build-helper-maven-plugin - - -
    - - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jaxb.api.version} - provided - true - - - jakarta.activation - jakarta.activation-api - ${activation.api.version} - provided - - - org.glassfish.jaxb - jaxb-runtime - ${jaxb.impl.version} - test - - - org.junit.jupiter - junit-jupiter-api - 5.8.0-M1 - test - - - org.hamcrest - hamcrest - 2.2 - test - - - org.mockito - mockito-core - 3.11.1 - test - - - - - Jakarta RESTful Web Services ${spec.version} API Specification ${spec.version.revision} - 11 - - 5.1.2 - 3.8.1 - ${java.version} - 3.3.0 - 3.0.0-M5 - - jakarta.ws.rs - UTF-8 - false - 3.1 - - - 3.0.1 - 3.0.2-b01 - 2.0.1 - ${project.basedir}/.. - - -
    diff --git a/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom.sha1 b/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom.sha1 deleted file mode 100644 index 38a5cc3f3..000000000 --- a/code/arachne/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -281714cf26e0e93784d7634b1ad17301d6599f95 \ No newline at end of file diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/_remote.repositories b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/_remote.repositories deleted file mode 100644 index 446f7c0e5..000000000 --- a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:01 EDT 2024 -jakarta.xml.bind-api-parent-4.0.2.pom>central= diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom deleted file mode 100644 index 0274e2156..000000000 --- a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.9 - - - - jakarta.xml.bind - jakarta.xml.bind-api-parent - 4.0.2 - pom - Jakarta XML Binding - Jakarta XML Binding API - https://github.com/jakartaee/jaxb-api - - - scm:git:git://github.com/jakartaee/jaxb-api.git - scm:git:git@github.com:jakartaee/jaxb-api.git - https://github.com/jakartaee/jaxb-api.git - HEAD - - - - - Eclipse Distribution License - v 1.0 - http://www.eclipse.org/org/documents/edl-v10.php - repo - - - - - - Roman Grigoriadi - roman.grigoriadi@oracle.com - Oracle Corporation - - - - - github - https://github.com/jakartaee/jaxb-api/issues - - - - - Jakarta XML Binding mailing list - jaxb-dev@eclipse.org - https://accounts.eclipse.org/mailing-list/jaxb-dev - https://accounts.eclipse.org/mailing-list/jaxb-dev - https://dev.eclipse.org/mhonarc/lists/jaxb-dev - - - - - ${config.dir}/copyright-exclude - true - true - ${config.dir}/edl-copyright.txt - false - false - Low - 4.8.3.1 - - 11 - - jaxb-dev@eclipse.org - Mar 2022 - jakarta.xml.bind - jakarta.xml.bind - 4.0 - 2.1.3 - ${project.basedir}/etc/config - Eclipse Foundation - - - - api - - - - - - jakarta.activation - jakarta.activation-api - ${activation.version} - - - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.2.0 - - - org.codehaus.mojo - build-helper-maven-plugin - 3.5.0 - - - maven-compiler-plugin - 3.12.1 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - - maven-surefire-plugin - 3.2.5 - - - maven-javadoc-plugin - 3.6.3 - - - maven-enforcer-plugin - 3.4.1 - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - - maven-jar-plugin - 3.3.0 - - - maven-source-plugin - 3.3.0 - - - maven-resources-plugin - 3.3.1 - - - maven-deploy-plugin - 3.1.1 - - - maven-dependency-plugin - 3.6.1 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - ${spotbugs.skip} - ${spotbugs.threshold} - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -Xlint:all - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - ${copyright.templatefile} - ${copyright.exclude} - - ${copyright.scmonly} - - ${copyright.update} - - ${copyright.ignoreyear} - false - - - - validate - - check - - - - - - org.apache.maven.plugins - maven-source-plugin - - - - false - true - - - ${project.version} - ${buildNumber} - - - - - - - - - - - test - - jaxb-api-test - - - - diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom.sha1 b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom.sha1 deleted file mode 100644 index 53dc2357c..000000000 --- a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5d3186bca50baf84bb24db19bafcff2d131d02cb \ No newline at end of file diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/_remote.repositories b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/_remote.repositories deleted file mode 100644 index 02fe0500d..000000000 --- a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:01 EDT 2024 -jakarta.xml.bind-api-4.0.2.pom>central= diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom deleted file mode 100644 index 22eb1ce98..000000000 --- a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - jakarta.xml.bind-api-parent - jakarta.xml.bind - 4.0.2 - ../pom.xml - - 4.0.0 - - jakarta.xml.bind-api - jar - Jakarta XML Binding API - - - ${project.basedir}/../etc/config - ${project.basedir}/.. - ${project.basedir}/../etc/spotbugs-exclude.xml - - - - - jakarta.activation - jakarta.activation-api - - - junit - junit - 4.13.2 - test - - - - - - - - - maven-enforcer-plugin - - - - [11,) - - - [3.6.0,) - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - true - 7 - false - - - - maven-javadoc-plugin - - true - all,-missing - true - false - true - true - false - true - true - Jakarta XML Binding API documentation - Jakarta XML Binding API documentation - Jakarta XML Binding API documentation -
    v${project.version}]]> -
    - - ${release.spec.feedback}.
    -Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    - false - true - - - Jakarta XML Binding API Packages - jakarta.xml.bind* - - - - - apiNote - - a - API Note: - - - implSpec - - a - Implementation Requirements: - - - implNote - - a - Implementation Note: - - -
    -
    -
    -
    - - - - org.codehaus.mojo - build-helper-maven-plugin - - - currentyear-property - - timestamp-property - - validate - - current.year - en,US - yyyy - - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - - - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - validate - - create - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -Xlint:all - -Xdoclint:all,-missing - - true - true - - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - false - - - true - - ${project.version} - - Jakarta XML Binding API ${spec.version} Design Specification - - ${extension.name} - ${project.version} - ${spec.version} - - !org.glassfish.hk2.osgiresourcelocator, - * - - ${extension.name}-api - org.glassfish.hk2.osgiresourcelocator - ${vendor.name} - ${buildNumber} - <_noextraheaders>true - - =1.0.0)(!(version>=2.0.0)))";resolution:=optional, - osgi.serviceloader; - filter:="(osgi.serviceloader=jakarta.xml.bind.JAXBContextFactory)"; - osgi.serviceloader="jakarta.xml.bind.JAXBContextFactory"; - cardinality:=multiple;resolution:=optional - ]]> - - - - - - - - maven-jar-plugin - - - - false - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - com.github.spotbugs - spotbugs-maven-plugin - - true - ${spotbugs.exclude} - High - - - -
    -
    \ No newline at end of file diff --git a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 b/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 deleted file mode 100644 index 3388046c6..000000000 --- a/code/arachne/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -da6b967605200a3f7ed3b5874159046cc9e8ecc5 \ No newline at end of file diff --git a/code/arachne/javax/activation/javax.activation-api/1.2.0/_remote.repositories b/code/arachne/javax/activation/javax.activation-api/1.2.0/_remote.repositories deleted file mode 100644 index 872ecd4f0..000000000 --- a/code/arachne/javax/activation/javax.activation-api/1.2.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:01 EDT 2024 -javax.activation-api-1.2.0.pom>central= diff --git a/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom b/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom deleted file mode 100644 index 9a781122a..000000000 --- a/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - - com.sun.activation - all - 1.2.0 - - 4.0.0 - javax.activation - javax.activation-api - jar - JavaBeans Activation Framework API jar - - - - javax.activation - - - java.activation - - - javax.activation.*; version=${activation.spec.version} - - - javax.activation-api - - - - - - - maven-dependency-plugin - - - - get-binaries - process-sources - - unpack - - - - - get-sources - process-sources - - unpack - - - - - com.sun.activation - javax.activation - ${project.version} - sources - - ${project.build.directory}/sources - - - - - - - - - - com.sun.activation - javax.activation - ${project.version} - - - - ${project.build.outputDirectory} - - - javax/**, - META-INF/LICENSE.txt - - - - - maven-jar-plugin - - ${project.artifactId} - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - diff --git a/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom.sha1 b/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom.sha1 deleted file mode 100644 index f811d9254..000000000 --- a/code/arachne/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1aa9ef58e50ba6868b2e955d61fcd73be5b4cea5 \ No newline at end of file diff --git a/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/_remote.repositories b/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/_remote.repositories deleted file mode 100644 index c3f1535f0..000000000 --- a/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:01 EDT 2024 -jaxb-api-parent-2.3.1.pom>central= diff --git a/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom b/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom deleted file mode 100644 index 32efc4248..000000000 --- a/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - 4.0.0 - javax.xml.bind - jaxb-api-parent - 2.3.1 - - - net.java - jvnet-parent - 5 - - - - jaxb-api - jaxb-api-test - - pom - - Java Architecture for XML Binding - JAXB (JSR 222) API - https://github.com/javaee/jaxb-spec - - - Oracle Corporation - http://www.oracle.com/ - - - - scm:git:git://github.com/javaee/jaxb-spec.git - scm:git:git@github.com:javaee/jaxb-spec.git - https://github.com/javaee/jaxb-spec.git - HEAD - - - - - Roman Grigoriadi - roman.grigoriadi@oracle.com - Oracle Corporation - - - Martin Grebac - martin.grebac@oracle.com - Oracle Corporation - - - Iaroslav Savytskyi - iaroslav.savytskyi@oracle.com - Oracle Corporation - - - - - - CDDL 1.1 - https://oss.oracle.com/licenses/CDDL+GPL-1.1 - repo - - - GPL2 w/ CPE - https://oss.oracle.com/licenses/CDDL+GPL-1.1 - repo - - - - - jira - https://github.com/javaee/jaxb-spec/issues - - - - javaee-spec@javaee.groups.io - Jul 2017 - ${project.basedir}/exclude.xml - Low - ${project.basedir}/src/main/mr-jar - ${project.build.directory}/classes-mrjar - javax.xml.bind - 2.3 - 0 - 1.2.0 - - - - - - javax.activation - javax.activation-api - ${activation.version} - - - - - - - - - - maven-compiler-plugin - 3.7.0 - - 1.7 - 1.7 - - -Xlint:all - - - - - maven-surefire-plugin - 2.20 - - - maven-release-plugin - 2.5.3 - - - maven-javadoc-plugin - 3.0.1 - - - maven-enforcer-plugin - 3.0.0-M2 - - - maven-source-plugin - 3.0.1 - - - maven-deploy-plugin - 2.8.2 - - - maven-dependency-plugin - 3.1.1 - - - maven-gpg-plugin - 1.6 - - - - - - - - - jvnet-release - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - -Xdoclint:none - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - - - - - diff --git a/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom.sha1 b/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom.sha1 deleted file mode 100644 index 838da0610..000000000 --- a/code/arachne/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -26101e8a1a09e16cdf277a4591f6d29917b2e06e \ No newline at end of file diff --git a/code/arachne/javax/xml/bind/jaxb-api/2.3.1/_remote.repositories b/code/arachne/javax/xml/bind/jaxb-api/2.3.1/_remote.repositories deleted file mode 100644 index fbcabdba2..000000000 --- a/code/arachne/javax/xml/bind/jaxb-api/2.3.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:01 EDT 2024 -jaxb-api-2.3.1.pom>central= diff --git a/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom b/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom deleted file mode 100644 index fb8584450..000000000 --- a/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom +++ /dev/null @@ -1,426 +0,0 @@ - - - - - - - jaxb-api-parent - javax.xml.bind - 2.3.1 - - 4.0.0 - - jaxb-api - jar - - - - javax.activation - javax.activation-api - - - - - - - - - maven-resources-plugin - 3.1.0 - - - org.glassfish.build - gfnexus-maven-plugin - 0.20 - - - - javax.xml.bind:jaxb-api:${project.version}:jar - javax.xml.bind - - - metro - JAXB_API-${project.version} - - - - maven-enforcer-plugin - - - - [1.8,) - - - [3.0.3,) - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.7 - - - xml - - - 45 - 45 - true - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 1.49 - - ${project.basedir}/copyright.txt - ${project.basedir}/copyright-exclude - - true - - true - - false - - false - - - - maven-dependency-plugin - 3.1.1 - - - maven-jar-plugin - 3.1.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - javax.xml.bind - ${scmBranch}-${buildNumber}, ${timestamp} - true - - - true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - true - {0,date,yyyy-MM-dd'T'HH:mm:ssZ} - true - false - - - - org.apache.felix - maven-bundle-plugin - true - 3.5.1 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - osgi.ee;filter:="(&(osgi.ee=JavaSE)(version>=1.8))" - ${project.version} - ${extension.name} - ${spec.version}.${impl.version} - ${project.version} - ${extension.name}.*; version=${spec.version} - - javax.activation;version=!, - javax.xml.bind;version="[${spec.version},3)", - javax.xml.bind.annotation;version="[${spec.version},3)", - javax.xml.bind.annotation.adapters;version="[${spec.version},3)", - javax.xml.bind.attachment;version="[${spec.version},3)", - javax.xml.bind.helpers;version="[${spec.version},3)", - javax.xml.bind.util;version="[${spec.version},3)", - javax.xml.datatype, - javax.xml.namespace, - javax.xml.parsers, - javax.xml.stream, - javax.xml.transform, - javax.xml.transform.dom, - javax.xml.transform.sax, - javax.xml.transform.stream, - javax.xml.validation, - org.w3c.dom, - org.xml.sax, - org.xml.sax.ext, - org.xml.sax.helpers - - jaxb-api - org.glassfish.hk2.osgiresourcelocator - Oracle Corporation - ${project.organization.name} - org.glassfish - - - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - ${findbugs.skip} - ${findbugs.threshold} - true - - ${findbugs.exclude} - - true - -Xms64m -Xmx256m - - - - org.glassfish.findbugs - findbugs - 1.0 - - - - - maven-javadoc-plugin - - false - false - true - true - -JAXB ${project.version} Runtime Library -${project.name} specification, ${release.spec.date}
    -Comments to: ${release.spec.feedback}
    -More information at: http://jaxb.java.net

     

    ${project.name}


    -
     
    ]]> -
    -
    v${project.version}]]> -
    - -
    Comments to: ${release.spec.feedback} -
    More information at: http://jaxb.java.net -

    Copyright © 2004-2017 Oracle ]]> - - false - - - http://download.oracle.com/javase/8/docs/api/ - ${basedir}/offline-javadoc - - - - - apiNote - - a - API Note: - - - implSpec - - a - Implementation Requirements: - - - implNote - - a - Implementation Note: - - - - - - maven-release-plugin - - - maven-compiler-plugin - - - default-compile - - 8 - - module-info.java - - - - - module-info-compile - test-compile - - compile - - - 9 - - module-info.java - - - - - - - - - - - maven-resources-plugin - - - generate-sources - - copy-resources - - - ${project.build.directory}/mr-jar/META-INF/versions/9 - - - ${basedir}/src/main/mr-jar - - - - - - - - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - - maven-dependency-plugin - - - initialize - - properties - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - validate - - create - - - - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - - maven-antrun-plugin - 1.8 - - - compile-java9 - compile - - - - - - - - run - - - - update-source-jar - verify - - - - - - - - - run - - - - - - - - - - - diff --git a/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom.sha1 b/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom.sha1 deleted file mode 100644 index 5da3c8f0b..000000000 --- a/code/arachne/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c42c51ae84892b73ef7de5351188908e673f5c69 \ No newline at end of file diff --git a/code/arachne/joda-time/joda-time/2.12.1/_remote.repositories b/code/arachne/joda-time/joda-time/2.12.1/_remote.repositories deleted file mode 100644 index f58194320..000000000 --- a/code/arachne/joda-time/joda-time/2.12.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:44 EDT 2024 -joda-time-2.12.1.pom>central= diff --git a/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom b/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom deleted file mode 100644 index 486dd7024..000000000 --- a/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom +++ /dev/null @@ -1,1090 +0,0 @@ - - - - - - 4.0.0 - joda-time - joda-time - jar - Joda-Time - 2.12.1 - Date and time library to replace JDK date handling - https://www.joda.org/joda-time/ - - - - GitHub - https://github.com/JodaOrg/joda-time/issues - - 2002 - - - - - jodastephen - Stephen Colebourne - - Project Lead - - 0 - https://github.com/jodastephen - - - broneill - Brian S O'Neill - - - Senior Developer - - https://github.com/broneill - - - - - Sergi Almacellas Abellana - https://github.com/pokoli - - - Adrian Acala - https://github.com/AdrianAcala - - - Afif Ahmed - https://github.com/a7i7 - - - AlexMe951 - https://github.com/AlexMe951 - - - Guy Allard - - - Brad Arndt - https://github.com/bradarndt - - - Mikey Austin - https://github.com/mikey-austin - - - Dominik Baláž - https://github.com/dombalaz - - - Oren Benjamin - https://github.com/oby1 - - - Besnik Bleta - https://github.com/ujdhesa - - - Fredrik Borgh - - - Dave Brosius - https://github.com/mebigfatguy - - - Dan Cavallaro - https://github.com/dancavallaro - - - Luc Claes - https://github.com/lucclaes - - - Emiliano Claria - https://github.com/emilianogc - - - Dan Cojocar - https://github.com/dancojocar - - - Evgeniy Devyatykh - https://github.com/john9x - - - dspitfire - https://github.com/dspitfire - - - Christopher Elkins - https://github.com/celkins - - - emopers - https://github.com/emopers - - - Michael Ernst - https://github.com/mernst - - - Jeroen van Erp - - - Gwyn Evans - - - Niklas Fiekas - https://github.com/niklasf - - - John Fletcher - - - Sean Geoghegan - - - Jim Gough - https://github.com/jpgough - - - Craig Gidney - https://github.com/Strilanc - - - haguenau - https://github.com/haguenau - - - Michael Hausegger - https://github.com/TheRealHaui - - - Kaj Hejer - https://github.com/kajh - - - Rowan Hill - https://github.com/rowanhill - - - LongHua Huang - https://github.com/longhua - - - Brendan Humphreys - https://github.com/pandacalculus - - - Vsevolod Ivanov - https://github.com/seva-ask - - - Ing. Jan Kalab - https://github.com/Pitel - - - Ashish Katyal - - - Kurt Alfred Kluever - https://github.com/kluever - - - Martin Kneissl - https://github.com/mkneissl - - - Kuunh - https://github.com/Kuunh - - - Sebastian Kurten - https://github.com/sebkur - - - Fabian Lange - https://github.com/CodingFabian - - - Mikel Larreategi - https://github.com/erral - - - Vidar Larsen - https://github.com/vlarsen - - - Kasper Laudrup - - - Jeff Lavallee - https://github.com/jlavallee - - - Chung-yeol Lee - https://github.com/chungyeol - - - Antonio Leitao - - - Kostas Maistrelis - - - mjunginger - https://github.com/mjunginger - - - Al Major - - - Pete Marsh - https://github.com/petedmarsh - - - Blair Martin - - - Paul Martin - https://github.com/pgpx - - - mo20053444 - https://github.com/mo20053444 - - - Mustofa - https://github.com/mustofa-id - - - Katy P - https://github.com/katyp - - - Amling Palantir - https://github.com/AmlingPalantir - - - Julen Parra - - - Jorge Perez - https://github.com/jperezalv - - - Rok Piltaver - https://github.com/Rok-Piltaver - - - Michael Plump - - - Bjorn Pollex - https://github.com/bjoernpollex - - - Ryan Propper - - - Anton Qiu - https://github.com/antonqiu - - - Zhanbolat Raimbekov - https://github.com/janbolat - - - H. Z. Sababa - https://github.com/hb20007 - - - Mike Schrag - - - Albert Scotto - https://github.com/alb-i986 - - - Hajime Senuma - https://github.com/hajimes - - - Kandarp Shah - - - Alexander Shopov - https://github.com/alshopov - - - Michael Sotnikov - https://github.com/stari4ek - - - Francois Staes - - - Grzegorz Swierczynski - https://github.com/gswierczynski - - - syafiqnazim - https://github.com/syafiqnazim - - - Dave Syer - https://github.com/dsyer - - - Jason Tedor - https://github.com/jasontedor - - - trejkaz - https://github.com/trejkaz - - - Ricardo Trindade - - - Bram Van Dam - https://github.com/codematters - - - Ed Wagstaff - https://github.com/edwag - - - Can Yapan - https://github.com/canyapan - - - Maxim Zhao - - - Alex - https://github.com/nyrk - - - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:https://github.com/JodaOrg/joda-time.git - scm:git:git@github.com:JodaOrg/joda-time.git - https://github.com/JodaOrg/joda-time - HEAD - - - Joda.org - https://www.joda.org - - - - - - - META-INF - ${project.basedir} - - LICENSE.txt - NOTICE.txt - - - - ${project.basedir}/src/main/java - - **/*.properties - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - 3.6.0 - - - - - - - - - org.codehaus.mojo - exec-maven-plugin - 3.1.0 - - - compile-tzdb - compile - - java - - - - - org.joda.time.tz.ZoneInfoCompiler - compile - true - - - org.joda.time.DateTimeZone.Provider - org.joda.time.tz.UTCProvider - - - - -src - ${project.build.sourceDirectory}/org/joda/time/tz/src - -dst - ${project.build.outputDirectory}/org/joda/time/tz/data - africa - antarctica - asia - australasia - europe - northamerica - southamerica - etcetera - backward - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/TestAllPackages.java - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - - - src/conf/MANIFEST.MF - - ${tz.database.version} - org.joda.time - org.joda.time - - - - - - no-tzdb - package - - jar - - - no-tzdb - - - Joda-Time-No-TZDB - - - - org/joda/time/tz/data/** - org/joda/time/tz/ZoneInfoCompiler* - - - - - - - - true - true - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - User packages - org.joda.time:org.joda.time.format:org.joda.time.chrono - - - Implementation packages - org.joda.time.base:org.joda.time.convert:org.joda.time.field:org.joda.time.tz - - - - - - attach-javadocs - package - - jar - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - package - - jar-no-fork - - - - attach-no-tztb-sources - package - - jar-no-fork - - - no-tzdb-sources - - org/joda/time/tz/data/** - org/joda/time/tz/ZoneInfoCompiler* - - - - - - - - **/*.properties - - - - - - org.codehaus.mojo - clirr-maven-plugin - 2.8 - - 2.7 - info - true - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${maven-assembly-plugin.version} - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${maven-checkstyle-plugin.version} - - - org.apache.maven.plugins - maven-changes-plugin - ${maven-changes-plugin.version} - - - org.apache.maven.plugins - maven-clean-plugin - ${maven-clean-plugin.version} - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - - org.apache.maven.plugins - maven-deploy-plugin - ${maven-deploy-plugin.version} - - - org.apache.maven.plugins - maven-dependency-plugin - ${maven-dependency-plugin.version} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${maven-enforcer-plugin.version} - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven-gpg-plugin.version} - - - org.apache.maven.plugins - maven-install-plugin - ${maven-install-plugin.version} - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - org.apache.maven.plugins - maven-jxr-plugin - ${maven-jxr-plugin.version} - - - org.apache.maven.plugins - maven-plugin-plugin - ${maven-plugin-plugin.version} - - - org.apache.maven.plugins - maven-pmd-plugin - ${maven-pmd-plugin.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-reports-plugin.version} - - - org.apache.maven.plugins - maven-repository-plugin - ${maven-repository-plugin.version} - - - org.apache.maven.plugins - maven-resources-plugin - ${maven-resources-plugin.version} - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${maven-surefire-report-plugin.version} - - - org.apache.maven.plugins - maven-toolchains-plugin - ${maven-toolchains-plugin.version} - - - - org.apache.maven.plugins - maven-release-plugin - ${maven-release-plugin.version} - - -Doss.repo - true - v@{project.version} - true - - - - org.codehaus.mojo - build-helper-maven-plugin - ${build-helper-maven-plugin.version} - - - - org.apache.maven.plugins - maven-site-plugin - ${maven-site-plugin.version} - - true - - - - org.joda.external - reflow-velocity-tools - 1.2 - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.codehaus.mojo - - exec-maven-plugin - - [1.2.1,) - - java - - - - - - - - - - - - - - - - - - org.joda - joda-convert - 1.9.2 - compile - true - - - junit - junit - 3.8.2 - test - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-reports-plugin.version} - - - - ci-management - dependencies - dependency-info - issue-management - licenses - team - scm - summary - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - - javadoc - - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${maven-surefire-report-plugin.version} - - true - - - - - org.apache.maven.plugins - maven-changes-plugin - ${maven-changes-plugin.version} - - - - changes-report - - - - - - - - - - - sonatype-joda-staging - Sonatype OSS staging repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - default - - - false - sonatype-joda-snapshot - Sonatype OSS snapshot repository - https://oss.sonatype.org/content/repositories/joda-snapshots - default - - https://oss.sonatype.org/content/repositories/joda-releases - - - - - - - java5to7 - - [1.5,1.8] - - - 2.19.1 - - - - - java8plus - - [1.8,) - - - 2.21.0 - - -Xdoclint:none - none - - - - - - repo-sign-artifacts - - - oss.repo - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${nexus-staging-maven-plugin.version} - true - - https://oss.sonatype.org/ - sonatype-joda-staging - Releasing ${project.groupId}:${project.artifactId}:${project.version} - true - true - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - make-assembly - deploy - - single - - - - src/main/assembly/dist.xml - - gnu - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - sign-dist-artifacts - deploy - - sign - - - - - - - de.jutzig - github-release-plugin - 1.4.0 - - - github-releases - deploy - - release - - - Release v${project.version} - See the [change notes](https://www.joda.org/joda-time/changes-report.html#a${project.version}) for more information. - v${project.version} - true - - - ${project.build.directory} - - ${project.artifactId}-${project.version}-dist.tar.gz - ${project.artifactId}-${project.version}-dist.tar.gz.asc - ${project.artifactId}-${project.version}-dist.zip - ${project.artifactId}-${project.version}-dist.zip.asc - ${project.artifactId}-${project.version}.jar.asc - - - - - - - - - - - 2.19.1 - - - - attach-additional-javadoc - - - maven.javadoc.skip - !true - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - attach-no-tzdb-javadoc - package - - attach-artifact - - - - - ${project.build.directory}/${project.artifactId}-${project.version}-javadoc.jar - jar - no-tzdb-javadoc - - - - - - - - - - - - - - - 3.3.0 - 3.4.2 - 2.12.1 - 2.17 - 3.2.0 - 3.10.1 - 3.0.0 - 3.3.0 - 3.1.0 - 3.0.1 - 3.0.1 - 3.3.0 - 3.4.1 - 3.3.0 - 3.6.4 - 3.19.0 - 3.4.1 - 2.5.3 - 2.4 - 3.3.0 - 3.12.1 - 3.2.1 - - 2.21.0 - 3.1.0 - 1.6.13 - - 1.5 - 1.5 - 1.5 - true - false - true - true - lines,source - - false - true - - src/main/checkstyle/checkstyle.xml - false - - UTF-8 - UTF-8 - 2022fgtz - - diff --git a/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom.sha1 b/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom.sha1 deleted file mode 100644 index 457d6d9d9..000000000 --- a/code/arachne/joda-time/joda-time/2.12.1/joda-time-2.12.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e358054cf69a1395987286e8111fa525ba7ef46e \ No newline at end of file diff --git a/code/arachne/joda-time/joda-time/2.5/_remote.repositories b/code/arachne/joda-time/joda-time/2.5/_remote.repositories deleted file mode 100644 index d861a965b..000000000 --- a/code/arachne/joda-time/joda-time/2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -joda-time-2.5.pom>central= diff --git a/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom b/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom deleted file mode 100644 index ee50f35ac..000000000 --- a/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom +++ /dev/null @@ -1,750 +0,0 @@ - - - - 4.0.0 - joda-time - joda-time - jar - Joda-Time - 2.5 - Date and time library to replace JDK date handling - http://www.joda.org/joda-time/ - - - - GitHub - https://github.com/JodaOrg/joda-time/issues - - 2002 - - - Joda Interest list - https://lists.sourceforge.net/lists/listinfo/joda-interest - https://lists.sourceforge.net/lists/listinfo/joda-interest - http://sourceforge.net/mailarchive/forum.php?forum_name=joda-interest - - - - - - - jodastephen - Stephen Colebourne - - Project Lead - - 0 - https://github.com/jodastephen - - - broneill - Brian S O'Neill - - - Senior Developer - - https://github.com/broneill - - - - - Guy Allard - - - Oren Benjamin - https://github.com/oby1 - - - Fredrik Borgh - - - Dave Brosius - https://github.com/mebigfatguy - - - Luc Claes - https://github.com/lucclaes - - - Dan Cojocar - https://github.com/dancojocar - - - Christopher Elkins - https://github.com/celkins - - - Jeroen van Erp - - - Gwyn Evans - - - John Fletcher - - - Sean Geoghegan - - - Craig Gidney - https://github.com/Strilanc - - - haguenau - https://github.com/haguenau - - - Rowan Hill - https://github.com/rowanhill - - - LongHua Huang - https://github.com/longhua - - - Vsevolod Ivanov - https://github.com/seva-ask - - - Ashish Katyal - - - Martin Kneissl - https://github.com/mkneissl - - - Fabian Lange - https://github.com/CodingFabian - - - Vidar Larsen - https://github.com/vlarsen - - - Kasper Laudrup - - - Jeff Lavallee - https://github.com/jlavallee - - - Chung-yeol Lee - https://github.com/chungyeol - - - Antonio Leitao - - - Kostas Maistrelis - - - mjunginger - https://github.com/mjunginger - - - Al Major - - - Pete Marsh - https://github.com/petedmarsh - - - Blair Martin - - - Amling Palantir - https://github.com/AmlingPalantir - - - Julen Parra - - - Jorge Perez - https://github.com/jperezalv - - - Michael Plump - - - Bjorn Pollex - https://github.com/bjoernpollex - - - Ryan Propper - - - Mike Schrag - - - Hajime Senuma - https://github.com/hajimes - - - Kandarp Shah - - - Francois Staes - - - Grzegorz Swierczynski - https://github.com/gswierczynski - - - Ricardo Trindade - - - Bram Van Dam - https://github.com/codematters - - - Maxim Zhao - - - - - - - Apache 2 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:https://github.com/JodaOrg/joda-time.git - scm:git:git@github.com:JodaOrg/joda-time.git - https://github.com/JodaOrg/joda-time - - - Joda.org - http://www.joda.org - - - - - - - META-INF - ${project.basedir} - - LICENSE.txt - NOTICE.txt - - - - ${project.basedir}/src/main/java - - **/*.properties - - - - - - - org.codehaus.mojo - exec-maven-plugin - 1.2.1 - - - compile - - java - - - - - org.joda.time.tz.ZoneInfoCompiler - compile - true - - - org.joda.time.DateTimeZone.Provider - org.joda.time.tz.UTCProvider - - - - -src - ${project.build.sourceDirectory}/org/joda/time/tz/src - -dst - ${project.build.outputDirectory}/org/joda/time/tz/data - africa - antarctica - asia - australasia - europe - northamerica - southamerica - pacificnew - etcetera - backward - systemv - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/TestAllPackages.java - - - - - org.apache.maven.plugins - maven-jar-plugin - - - src/conf/MANIFEST.MF - - true - true - - - ${tz.database.version} - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - User packages - org.joda.time:org.joda.time.format:org.joda.time.chrono - - - Implementation packages - org.joda.time.base:org.joda.time.convert:org.joda.time.field:org.joda.time.tz - - - - - - attach-javadocs - package - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - package - - jar-no-fork - - - - - - - **/*.properties - - - - - org.apache.maven.plugins - maven-assembly-plugin - - false - - src/main/assembly/dist.xml - - gnu - - - - make-assembly - deploy - - single - - - - - - org.apache.maven.plugins - maven-site-plugin - - true - - - - com.github.github - site-maven-plugin - 0.9 - - - github-site - - site - - site-deploy - - - - Create website for ${project.artifactId} v${project.version} - ${project.artifactId} - true - github - JodaOrg - jodaorg.github.io - refs/heads/master - - - - org.codehaus.mojo - clirr-maven-plugin - 2.3 - - 2.3 - info - true - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${maven-assembly-plugin.version} - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${maven-checkstyle-plugin.version} - - - org.apache.maven.plugins - maven-changes-plugin - ${maven-changes-plugin.version} - - - org.apache.maven.plugins - maven-clean-plugin - ${maven-clean-plugin.version} - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - - org.apache.maven.plugins - maven-deploy-plugin - ${maven-deploy-plugin.version} - - - org.apache.maven.plugins - maven-dependency-plugin - ${maven-dependency-plugin.version} - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven-gpg-plugin.version} - - - org.apache.maven.plugins - maven-install-plugin - ${maven-install-plugin.version} - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - org.apache.maven.plugins - maven-jxr-plugin - ${maven-jxr-plugin.version} - - - org.apache.maven.plugins - maven-plugin-plugin - ${maven-plugin-plugin.version} - - - org.apache.maven.plugins - maven-pmd-plugin - ${maven-pmd-plugin.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-reports-plugin.version} - - - org.apache.maven.plugins - maven-repository-plugin - ${maven-repository-plugin.version} - - - org.apache.maven.plugins - maven-resources-plugin - ${maven-resources-plugin.version} - - - org.apache.maven.plugins - maven-site-plugin - ${maven-site-plugin.version} - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${maven-surefire-report-plugin.version} - - - org.apache.maven.plugins - maven-toolchains-plugin - ${maven-toolchains-plugin.version} - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.codehaus.mojo - - exec-maven-plugin - - [1.2.1,) - - java - - - - - - - - - - - - - - - - - 3.0.4 - - - - org.joda - joda-convert - 1.2 - compile - true - - - junit - junit - 3.8.2 - test - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-plugin.version} - - - - dependencies - dependency-info - issue-tracking - license - mailing-list - project-team - scm - summary - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - - javadoc - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${maven-surefire-report-plugin.version} - - true - - - - org.apache.maven.plugins - maven-jxr-plugin - ${maven-jxr-plugin.version} - - - - jxr - - - - - - - - - - - sonatype-joda-staging - Sonatype OSS staging repository - http://oss.sonatype.org/service/local/staging/deploy/maven2/ - default - - - false - sonatype-joda-snapshot - Sonatype OSS snapshot repository - http://oss.sonatype.org/content/repositories/joda-snapshots - default - - http://oss.sonatype.org/content/repositories/joda-releases - - - - - - repo-sign-artifacts - - - oss.repo - true - - - - - - org.apache.maven.plugins - maven-toolchains-plugin - - - validate - - toolchain - - - - - - - 1.5 - sun - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - - - - 2.4 - 2.9 - 2.11 - 2.5 - 3.1 - 2.8.1 - 2.8 - 1.4 - 2.5.1 - 2.4 - 2.9.1 - 2.3 - 3.2 - 3.0.1 - 2.7 - 2.3.1 - 2.6 - 3.3 - 2.2.1 - 2.16 - 2.16 - 1.0 - - 1.5 - 1.5 - 1.5 - true - true - true - true - lines,source - - false - true - - ${project.basedir}/src/main/checkstyle/checkstyle.xml - - UTF-8 - UTF-8 - 2014h - - diff --git a/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom.sha1 b/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom.sha1 deleted file mode 100644 index d98875fbc..000000000 --- a/code/arachne/joda-time/joda-time/2.5/joda-time-2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -44897bde70c633ef0e70da9d46193285bde466b0 \ No newline at end of file diff --git a/code/arachne/junit/junit/4.13.2/_remote.repositories b/code/arachne/junit/junit/4.13.2/_remote.repositories deleted file mode 100644 index a6ebe36cd..000000000 --- a/code/arachne/junit/junit/4.13.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:12 EDT 2024 -junit-4.13.2.pom>central= diff --git a/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom b/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom deleted file mode 100644 index 38be96092..000000000 --- a/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom +++ /dev/null @@ -1,633 +0,0 @@ - - - 4.0.0 - - junit - junit - 4.13.2 - - JUnit - JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck. - http://junit.org - 2002 - - JUnit - http://www.junit.org - - - - Eclipse Public License 1.0 - http://www.eclipse.org/legal/epl-v10.html - repo - - - - - - dsaff - David Saff - david@saff.net - - - kcooney - Kevin Cooney - kcooney@google.com - - - stefanbirkner - Stefan Birkner - mail@stefan-birkner.de - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - - - JUnit contributors - JUnit - team@junit.org - https://github.com/junit-team/junit4/graphs/contributors - - developers - - - - - - 3.0.4 - - - - scm:git:git://github.com/junit-team/junit4.git - scm:git:git@github.com:junit-team/junit4.git - https://github.com/junit-team/junit4 - r4.13.2 - - - github - https://github.com/junit-team/junit4/issues - - - github - https://github.com/junit-team/junit4/actions - - - https://github.com/junit-team/junit4/wiki/Download-and-Install - - junit-snapshot-repo - Nexus Snapshot Repository - https://oss.sonatype.org/content/repositories/snapshots/ - - - junit-releases-repo - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - junit.github.io - gitsite:git@github.com/junit-team/junit4.git - - - - - 1.5 - 2.19.1 - 1.3 - 1.4 - 2.6 - 2.10.3 - ISO-8859-1 - - 67893CC4 - - - - - org.hamcrest - hamcrest-core - ${hamcrestVersion} - - - - org.hamcrest - hamcrest-library - ${hamcrestVersion} - test - - - - - - - ${project.basedir}/src/main/resources - - - ${project.basedir} - - LICENSE-junit.txt - - - - - - - - maven-enforcer-plugin - ${enforcerPluginVersion} - - - enforce-versions - initialize - - enforce - - - true - - - - Current version of Maven ${maven.version} required to build the project - should be ${project.prerequisites.maven}, or higher! - - [${project.prerequisites.maven},) - - - Current JDK version ${java.version} should be ${jdkVersion}, or higher! - - ${jdkVersion} - - - Best Practice is to never define repositories in pom.xml (use a repository - manager instead). - - - - No Snapshots Dependencies Allowed! - - - - - - - - - com.google.code.maven-replacer-plugin - replacer - 1.5.3 - - - process-sources - - replace - - - - - false - ${project.build.sourceDirectory}/junit/runner/Version.java.template - ${project.build.sourceDirectory}/junit/runner/Version.java - false - @version@ - ${project.version} - - - - - maven-compiler-plugin - 3.3 - - ${project.build.sourceEncoding} - ${jdkVersion} - ${jdkVersion} - ${jdkVersion} - ${jdkVersion} - 1.5 - true - true - true - true - - -Xlint:unchecked - - 128m - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.14 - - - signature-check - test - - check - - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - - - - maven-surefire-plugin - ${surefireVersion} - - org/junit/tests/AllTests.java - true - false - - - - org.apache.maven.surefire - surefire-junit47 - ${surefireVersion} - - - - - - maven-source-plugin - 2.4 - - - - maven-javadoc-plugin - ${javadocPluginVersion} - - ${basedir}/src/main/javadoc/stylesheet.css - protected - false - false - false - true - true - true - JUnit API - UTF-8 - en - ${jdkVersion} - - - api_${jdkVersion} - http://docs.oracle.com/javase/${jdkVersion}.0/docs/api/ - - - *.internal.* - true - 32m - 128m - true - true - - org.hamcrest:hamcrest-core:* - - - - - maven-release-plugin - 2.5.2 - - forked-path - false - -Pgenerate-docs,junit-release ${arguments} - r@{project.version} - - - - maven-site-plugin - 3.4 - - - com.github.stephenc.wagon - wagon-gitsite - 0.4.1 - - - org.apache.maven.doxia - doxia-module-markdown - 1.5 - - - - - maven-jar-plugin - ${jarPluginVersion} - - - false - - true - - - junit - - - - - - maven-clean-plugin - 2.6.1 - - - maven-deploy-plugin - 2.8.2 - - - maven-install-plugin - 2.5.2 - - - maven-resources-plugin - 2.7 - - - - - - - - maven-project-info-reports-plugin - 2.8 - - false - - - - - - index - dependency-info - modules - license - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - distribution-management - - - - - - maven-javadoc-plugin - ${javadocPluginVersion} - - javadoc/latest - ${basedir}/src/main/javadoc/stylesheet.css - protected - false - false - false - true - true - true - JUnit API - UTF-8 - en - ${jdkVersion} - - - api_${jdkVersion} - http://docs.oracle.com/javase/${jdkVersion}.0/docs/api/ - - - junit.*,*.internal.* - true - 32m - 128m - true - true - - org.hamcrest:hamcrest-core:* - - - - - - javadoc - - - - - - - - - - junit-release - - - - - - maven-gpg-plugin - 1.6 - - - gpg-sign - verify - - sign - - - - - - - - - generate-docs - - - - - maven-source-plugin - - - attach-sources - prepare-package - - jar-no-fork - - - - - - maven-javadoc-plugin - - - attach-javadoc - package - - jar - - - - - - - - - restrict-doclint - - - [1.8,) - - - - - maven-compiler-plugin - - - -Xlint:unchecked - -Xdoclint:accessibility,reference,syntax - - - - - maven-javadoc-plugin - - -Xdoclint:accessibility -Xdoclint:reference - - - - - - - - maven-javadoc-plugin - - -Xdoclint:accessibility -Xdoclint:reference - - - - - - - java9 - - [1.9,12) - - - - 1.6 - - - - - maven-javadoc-plugin - - 1.6 - - - - - - - - maven-javadoc-plugin - - 1.6 - - - - - - - java12 - - [12,) - - - - 1.7 - 3.0.0-M3 - 3.2.0 - 3.2.0 - - - - - maven-javadoc-plugin - - 1.7 - false - - - - maven-compiler-plugin - - - -Xdoclint:none - - - - - - - - - maven-javadoc-plugin - - 1.7 - false - - - - - - - diff --git a/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom.sha1 b/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom.sha1 deleted file mode 100644 index 1e9c14294..000000000 --- a/code/arachne/junit/junit/4.13.2/junit-4.13.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -73bc5be628edeb297a1caf421a5a2e494798b92f \ No newline at end of file diff --git a/code/arachne/logging-3.x-MDACA.jar b/code/arachne/logging-3.x-MDACA.jar index a92e6207019dad41511a68f0cd97bb6ec27e800b..dfce526e0ae30eee795be3e3f694a3baefe3ed52 100644 GIT binary patch delta 2059 zcmZuxYitx%6uvWEmhIN*E_6CwrrXE5blZJ(SGR>~A9k@-_SJSD6)}bo)D%m1i%m3y zKL&r2SY2;4LIQu3AhJ z$&n+kKk&e4c$0M+E5 z4x*=q(>{`sy;Z+fa)TQvpB(R?n&tTAE{7bCb#0R4n_aC&#eV)U6{J}uKXv-)j%yS` zB|3b$VI%I2TJmn)GNo2D=v!%Zo;C~+`7g%%h zpU5X2w7Ow_wt*q?tF9&@_ju2lEQ+J^-eB{4aIaZdDG$P*MR@#baxMNh$>bZ`KhUX< zc0PFMPNi?+f$jOWZmUkUdoAC(9}dETbmBdsws^$jnutcCjn|{6rYCxPXQm>Bxv=jm zpBEW777Fuo$5ULz@i(}ED|O2wuOH*e2d)&p=NI~ayEWGGVC$bF6l@_yvqj3HV^`R# z>LzbG9t_`~lGaaNR0xD!UHO^OV(ahylD7Kgv{U@#}#9 zZW3{CPi3j1+*ni!*Va9=3_N-(HLzwo<$^u2T;BlRLWlQ7~J5@o8p3G5oK_#6tJg;~kv-R6`e z)hasTG8-0vejDh`ME{Iiq+8vqjQvECr*mGwg(uOW9(Np&k#-3Y9?LQ{%BOgGaEplc vrC13OUQ8V8=V_)JK1Z)_UwUZe6IRwyen7z?=`s)k&1QVN->g3$68!%UeuT<) delta 1984 zcmZux3rt&87{2$m>jUV+_LkypVIV7mwv0z*8Q~$2VMcGEr7h|LvMh)*%U}-{Qxw98 zF($UM$G=1yw`d|U;+Wa&f)^ z@7(|Y@A*^ov0+;6;U&@}O1KJljy!f$ovs&KSD1Yt#tI+ol~FN`TQD% z{KnuT$5U++8v@Z2L9d?o`VOA7o@UL-I&gRmJ^C-b3v6h~zUbQp#c|5Di2rGJ%j}?UJIKw!Iw%q5=y!y-|)BAuq`3g7|#} zT_Q)xh3Ao6rkaVJM8IdyJyH25O;O2E#Nr3xl#^_Ze~L{>)Ne-*n3yeGMcQ781f zUjC^W3U$`VH>xy3cUxm4uwC~sfqU30hE4eFe(pQTdnnXX5}>sk;1{H74GZs_nDgU8vv((O(JNqOI_1 zle*9Mw0n}zciQXf8@Ijfzg2JNC$InLRm%_b>TQNlh)sEEIK_TCq%yQTUc-h`Laspc zN^qV}F8A$$g|4M}pEVft@j=JJvF@lY=q&z92mGM}rOR`3;qJMymiD3APr}RHBcDEF z7#-gUUA$;{aS#eg@lxoLBBK`w$vLi`Nx+ohqD=q>c2<6Lm|rTN)5Dn zWZ06QIqTtH(GGu0D9S~!ZqrrU%C8L_99FCcgJ9`|c{B(KIzhTR-vO%+XUx(zs^@^DOXn#j04 z1k;I_Ax?~>ZIrDI*T7sb$0TNq9-tjFqwo=;zs`u!N_e)B#Uv*G zUd4nc`94#WjAtuhwvold-D%{Q#Rp<+Dl~XyINR#w7>Pw>CoMW{qU%<_uP}!A4|7Dm z*_Q;2Pmix&@8g&+a$_vsZB%OK{lB62dIuG_gs9pzt0+J3OUH`*&Xv-0`!p0)jw-x` zkY@nxC#vA`bIgr$R^4 zrB+t@wn8V*#mDn7pC(;d8Quzi(OGbjSH_7Mk(d(*n|f{Z6_oImgMU!sO|^*0gNK?_ Y*r|!{-P*3`cd*|N`central= diff --git a/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom b/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom deleted file mode 100644 index 2e991d347..000000000 --- a/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom +++ /dev/null @@ -1,231 +0,0 @@ - - - 4.0.0 - - - net.bytebuddy - byte-buddy-parent - 1.14.13 - - - byte-buddy-agent - jar - - - net.bytebuddy.agent.Installer - com.sun.tools.attach - com.ibm.tools.attach - net.bytebuddy.agent,net.bytebuddy.agent.utility.nullability - i686-w64-mingw32-gcc - x86_64-w64-mingw32-gcc - - - - Byte Buddy agent - The Byte Buddy agent offers convenience for attaching an agent to the local or a remote VM. - - - - - - net.java.dev.jna - jna - ${version.jna} - provided - - - net.java.dev.jna - jna-platform - ${version.jna} - provided - - - junit - junit - ${version.junit} - test - - - org.mockito - mockito-core - ${version.mockito} - test - - - net.bytebuddy - byte-buddy - - - net.bytebuddy - byte-buddy-agent - - - - - - net.bytebuddy - byte-buddy - 1.14.12 - test - - - - - - - src/main/resources - - - .. - META-INF - true - - LICENSE - NOTICE - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.plugin.surefire} - - -Djna.library.path=${net.bytebuddy.test.jnapath} ${surefire.arguments} - - - - - org.apache.maven.plugins - maven-jar-plugin - ${version.plugin.jar} - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - org.apache.felix - maven-bundle-plugin - ${version.plugin.bundle} - - - process-classes - - manifest - - - - true - ${bytebuddy.agent} - ${bytebuddy.agent} - true - true - true - - ${attach.package.sun};resolution:="optional", - ${attach.package.ibm};resolution:="optional" - - ${packages.list} - - - - - - - - codes.rafael.modulemaker - modulemaker-maven-plugin - ${version.plugin.modulemaker} - - - org.ow2.asm - asm - ${version.asm} - - - - - prepare-package - - make-module - - - ${modulemaker.skip} - ${project.groupId}.agent - ${project.version} - true - ${packages.list} - ${packages.list} - java.instrument - - jdk.attach, - com.sun.jna, - com.sun.jna.platform - - - - - - - - - - - native-compile - - false - - - - - org.codehaus.mojo - exec-maven-plugin - ${version.plugin.exec} - - - compile-32 - compile - - exec - - - ${native.compiler.32} - - -shared - -o - ${project.basedir}/src/main/resources/win32-x86/attach_hotspot_windows.dll - ${project.basedir}/src/main/c/attach_hotspot_windows.c - - - - - compile-64 - compile - - exec - - - ${native.compiler.64} - - -shared - -o - ${project.basedir}/src/main/resources/win32-x86-64/attach_hotspot_windows.dll - ${project.basedir}/src/main/c/attach_hotspot_windows.c - - - - - - - - - - diff --git a/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom.sha1 b/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom.sha1 deleted file mode 100644 index b07fe62e9..000000000 --- a/code/arachne/net/bytebuddy/byte-buddy-agent/1.14.13/byte-buddy-agent-1.14.13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -50a854eb457ea1bc9b94b492a22be651ed3b66a6 \ No newline at end of file diff --git a/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/_remote.repositories b/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/_remote.repositories deleted file mode 100644 index 781972de5..000000000 --- a/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:02 EDT 2024 -byte-buddy-parent-1.14.13.pom>central= diff --git a/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom b/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom deleted file mode 100644 index 3f53f8a96..000000000 --- a/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom +++ /dev/null @@ -1,1345 +0,0 @@ - - - 4.0.0 - - net.bytebuddy - byte-buddy-parent - 1.14.13 - pom - - 2014 - - Byte Buddy (parent) - - Byte Buddy is a Java library for creating Java classes at run time. - The parent artifact contains configuration information that concern all modules. - - https://bytebuddy.net - - - - - byte-buddy - byte-buddy-dep - byte-buddy-benchmark - byte-buddy-agent - byte-buddy-android - byte-buddy-android-test - byte-buddy-maven-plugin - byte-buddy-gradle-plugin - - - - Rafael Winterhalter - false - false - false - UTF-8 - 1711657269 - 1.5 - 1.6 - 1.5 - 1.6 - net.bytebuddy - https://s01.oss.sonatype.org - 9.6 - 5.12.1 - 4.13.2 - 2.28.2 - 3.2.0 - 5.1.7 - 3.10.1 - 3.0.1 - 3.0.0 - 1.6.13 - 2.11.0 - 3.4.0 - 3.2.1 - 3.5.2 - 3.0.1 - 3.2.0 - 3.3.0 - 3.2.2 - 3.12.0 - 3.1.0 - 3.6.4 - 3.0.0-M7 - 3.2.0 - 3.4.2 - 3.3.0 - 3.2.0 - 2.22.2 - 1.9.2 - 1.21 - 3.1.0 - 0.8.8 - 4.3.0 - 3.1.2 - 1.1 - 4.7.3.0 - 1.11 - 3.0 - 0.15.7 - 3.1.0 - 9.3 - 4.1.1.4 - 3.0.1 - 3.0.2 - 1.35 - 3.3.0 - 3.29.0-GA - false - false - false - false - false - git@github.com:raphw/byte-buddy.git - - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - A business-friendly OSS license - - - - - - raphw - Rafael Winterhalter - rafael.wth@gmail.com - https://rafael.codes - - developer - - +1 - - - - - github.com - https://github.com/raphw/byte-buddy/issues - - - - scm:git:${repository.url} - scm:git:${repository.url} - ${repository.url} - byte-buddy-1.14.13 - - - - - - com.google.code.findbugs - findbugs-annotations - ${version.utility.findbugs} - provided - - - - com.google.code.findbugs - jsr305 - ${version.utility.jsr305} - provided - - - - - - - - org.apache.maven.plugins - maven-release-plugin - ${version.plugin.release} - - false - extras,gpg,gradle-release - true - byte-buddy-@{project.version} - - - - - org.pitest - pitest-maven - ${version.plugin.pitest} - - - ${pitest.target}.* - - - ${pitest.target}.* - - - - - - org.jacoco - jacoco-maven-plugin - ${version.plugin.jacoco} - - ${jacoco.skip} - - net/bytebuddy/** - - - - net/bytebuddy/benchmark/generated/* - net/bytebuddy/benchmark/jmh_generated/* - - *Test* - *test* - - - - - - org.eluder.coveralls - coveralls-maven-plugin - ${version.plugin.coveralls} - - - ${project.basedir}/byte-buddy-dep/src/main/java-6 - - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${version.plugin.spotbugs} - - ${spotbugs.skip} - Max - Low - true - false - ${project.build.directory}/spotbugs - ${project.basedir}/../spotbugs-exclude.xml - - - - - com.github.ferstl - jitwatch-jarscan-maven-plugin - ${version.plugin.jitwatch} - - - - com.mycila - license-maven-plugin - ${version.plugin.license} - false - -

    ${project.basedir}/NOTICE
    - true - true - ${project.build.sourceEncoding} - - ${copyright.holder} - - - **/main/java/**/*.java - **/main/java-*/**/*.java - **/main/c/**/*.c - - true - - SLASHSTAR_STYLE - -
    - - - package - - format - - - -
    - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${version.plugin.staging} - true - - central - ${nexus.url} - true - - - - - org.codehaus.mojo - versions-maven-plugin - ${version.plugin.versions} - - file://${session.executionRootDirectory}/version-rules.xml - - -
    - - - - - org.apache.maven.plugins - maven-clean-plugin - ${version.plugin.clean} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.plugin.jar} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.plugin.resources} - - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-install-plugin - ${version.plugin.install} - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.plugin.surefire} - - ${surefire.arguments} - - ${bytebuddy.experimental} - ${bytebuddy.integration} - - - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.plugin.deploy} - - - org.apache.maven.plugins - maven-site-plugin - ${version.plugin.site} - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.plugin.compiler} - true - - ${sourcecode.main.version} - ${bytecode.main.version} - ${sourcecode.test.version} - ${bytecode.test.version} - ${project.build.sourceEncoding} - true - true - -Xlint:all,-options,-processing - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - ${sourcecode.main.version} - true - false - - - - org.apache.maven.plugins - maven-plugin-plugin - ${version.plugin.plugin} - - - org.ow2.asm - asm - ${version.asm} - - - org.ow2.asm - asm-commons - ${version.asm} - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${version.plugin.assembly} - - - org.apache.maven.plugins - maven-dependency-plugin - ${version.plugin.dependency} - - - org.apache.maven.plugins - maven-help-plugin - ${version.plugin.help} - - - -
    - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${version.plugin.jxr} - - - - - - - central - ${nexus.url}/content/repositories/snapshots - - - central - ${nexus.url}/service/local/staging/deploy/maven2 - - - - - - - java6-compatibility - - false - 1.6 - - - 7.1 - 3.0.0 - 2.5.4 - 3.6.2 - 2.5.2 - 2.8.2 - 1.6.8 - 2.4 - 2.4 - 1.6 - 2.5 - 1.12 - 3.0.2 - 3.7.1 - 1.5.0 - 3.5.2 - 3.0.2 - 2.6 - 2.10 - 2.2 - 1.16 - 1.4.1 - 0.7.9 - 2.15 - 3.1.0-RC8 - 3.0 - 3.1.1 - 2.22.1 - 2.10.4 - 1.8 - 6.1.1 - 1.16 - 3.2.12 - 3.22.0-GA - true - true - true - - - byte-buddy - byte-buddy-dep - byte-buddy-benchmark - byte-buddy-agent - byte-buddy-android - byte-buddy-maven-plugin - byte-buddy-gradle-plugin - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${version.plugin.plugin} - - - org.ow2.asm - asm - ${version.asm.deprecated} - - - org.ow2.asm - asm-commons - ${version.asm.deprecated} - - - org.ow2.asm - asm-deprecated - ${version.asm.deprecated} - - - - - - - - - - java7-compatibility - - false - 1.7 - - - 3.1.0 - 3.5.1 - 3.8.1 - 1.6.8 - 2.8.1 - 3.1.1 - 3.2.0 - 3.11.0 - 3.0.0 - 3.3.0 - 3.1.0-RC8 - 3.2.0 - 1.17 - 1.4.1 - 0.7.9 - 3.0.0 - 0.13.1 - 3.2.4 - 3.0.0 - 6.19 - 3.2.12 - 3.23.2-GA - true - true - - - - - java9-compatibility - - false - 9 - - - - 1.6 - 1.6 - 1.6 - 1.6 - - - - - java10-compatibility - - false - 10 - - - 1.7 - 1.7 - 1.7 - 1.7 - - - - - java11-compatibility - - false - 11 - - - 1.7 - 1.7 - 1.7 - 1.7 - - - - - java12-compatibility - - false - 12 - - - 1.7 - 1.7 - 1.7 - 1.7 - - - - - java13-compatibility - - false - 13 - - - 1.7 - 1.7 - 1.7 - 1.7 - - - - - java14-compatibility - - false - 14 - - - 1.7 - 1.7 - 1.7 - 1.7 - - - - - java15-compatibility - - false - 15 - - - 8 - 8 - 8 - 8 - - - - - java16-compatibility - - false - 16 - - - 8 - 8 - 8 - 8 - true - - - - - java17-compatibility - - false - 17 - - - 8 - 8 - 8 - 8 - true - - - - - java18-compatibility - - false - 18 - - - 8 - 8 - 8 - 8 - true - - - - - java19-compatibility - - false - 19 - - - 8 - 8 - 8 - 8 - true - - - - - java20-compatibility - - false - 20 - - - 8 - 8 - 8 - 8 - true - - - - - java21-compatibility - - false - 21 - - - 8 - 8 - 8 - 8 - true - - - - - java22-compatibility - - false - 22 - - - 8 - 8 - 8 - 8 - true - - - - - java23-compatibility - - false - 23 - - - 8 - 8 - 8 - 8 - true - - - - - java6 - - false - - - 1.6 - - - - - java7 - - false - - - 1.7 - 1.7 - - - - - java8 - - false - - - 1.8 - 1.8 - - - - - java9 - - false - - - 9 - 9 - - - - - java10 - - false - - - 10 - 10 - - - - - java11 - - false - - - 11 - 11 - - - - - java12 - - false - - - 12 - 12 - - - - - java13 - - false - - - 13 - 13 - - - - - java14 - - false - - - 14 - 14 - - - - - java15 - - false - - - 15 - 15 - - - - - java16 - - false - - - 16 - 16 - - - - - java17 - - false - - - 17 - 17 - - - - - java18 - - false - - - 18 - 18 - true - - - - - java19 - - false - - - 19 - 19 - true - - - - - java20 - - false - - - 20 - 20 - true - - - - - java21 - - false - - - 21 - 21 - true - - - - - java22 - - false - - - 22 - 22 - true - - - - - java23 - - false - - - 23 - 23 - true - - - - - surefire-enable-dynamic-attach - - false - [22,) - - - -XX:+EnableDynamicAgentLoading - - - - - extras - - false - - - true - - - - - - org.apache.maven.plugins - maven-source-plugin - ${version.plugin.source} - - - - jar - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - - - jar - - - - - - - - - - gpg - - false - - - - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.plugin.gpg} - - - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - - checks - - false - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${version.plugin.checkstyle} - - - validate - - check - - - checkstyle.xml - true - true - **/generated/**/* - false - - - - - - com.puppycrawl.tools - checkstyle - ${version.checkstyle} - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${version.plugin.animal-sniffer} - - - test - - check - - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - - - org.ow2.asm - asm - ${version.asm} - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.plugin.enforcer} - - - - enforce - - - true - - - - org.ow2.asm:asm-tree - - - - [3.2.5,) - - - [1.6,) - - - - - - - - - - - - integration - - false - - - true - - - - - analysis - - false - - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${version.plugin.spotbugs} - - - verify - - check - - - ${spotbugs.skip} - Max - Low - true - true - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${version.plugin.japicmp} - - - verify - - cmp - - - ${japicmp.skip} - - - ${project.build.directory}/${project.artifactId}-${project.version}.jar - - - - public - \d+\.\d+\.\d+ - true - true - true - - net.bytebuddy.asm.MemberSubstitution$Replacement$Binding - net.bytebuddy.asm.MemberSubstitution$Replacement$ForElementMatchers - net.bytebuddy.asm.MemberSubstitution$Replacement$ForFirstBinding - net.bytebuddy.asm.MemberSubstitution$Replacement$NoOp - - - - - - - - - - - - checksum-collect - - false - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${version.plugin.antrun} - false - - - checksum-collect - initialize - - run - - - - - - - - - - - - - - - checksum-enforce - - false - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${version.plugin.antrun} - false - - - checksum-enforce - initialize - - run - - - - - - - - - - - - - - - - - - ${project.groupId} - byte-buddy - ${project.version} - - - ${project.groupId} - byte-buddy-dep - ${project.version} - - - ${project.groupId} - byte-buddy-agent - ${project.version} - - - ${project.groupId} - byte-buddy-benchmark - ${project.version} - - - ${project.groupId} - byte-buddy-android - ${project.version} - - - ${project.groupId} - byte-buddy-maven-plugin - ${project.version} - - - ${project.groupId} - byte-buddy-gradle-plugin - ${project.version} - - - - -
    diff --git a/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom.sha1 b/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom.sha1 deleted file mode 100644 index 2c842612f..000000000 --- a/code/arachne/net/bytebuddy/byte-buddy-parent/1.14.13/byte-buddy-parent-1.14.13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -963eec06a1d5eb5ed173ed0abef6210b217ddb0a \ No newline at end of file diff --git a/code/arachne/net/bytebuddy/byte-buddy/1.14.13/_remote.repositories b/code/arachne/net/bytebuddy/byte-buddy/1.14.13/_remote.repositories deleted file mode 100644 index 5ecd1f1fa..000000000 --- a/code/arachne/net/bytebuddy/byte-buddy/1.14.13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:02 EDT 2024 -byte-buddy-1.14.13.pom>central= diff --git a/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom b/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom deleted file mode 100644 index c09d51a0e..000000000 --- a/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom +++ /dev/null @@ -1,384 +0,0 @@ - - - - byte-buddy-parent - net.bytebuddy - 1.14.13 - - 4.0.0 - byte-buddy - Byte Buddy (without dependencies) - Byte Buddy is a Java library for creating Java classes at run time. - This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space. - - - - true - src/main/resources - - - - - - maven-javadoc-plugin - ${version.plugin.javadoc} - - true - - ${project.groupId}:byte-buddy-dep - - - - - - - - org.pitest - pitest-maven - ${version.plugin.pitest} - - true - - - - com.github.spotbugs - spotbugs-maven-plugin - ${version.plugin.spotbugs} - - true - - - - maven-jar-plugin - ${version.plugin.jar} - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.felix - maven-bundle-plugin - ${version.plugin.bundle} - - - process-classes - - manifest - - - - true - ${packages.list.external} - - - - - - - codes.rafael.modulemaker - modulemaker-maven-plugin - ${version.plugin.modulemaker} - - - package - - inject-module - - - ${modulemaker.skip} - ${project.groupId} - ${project.version} - true - ${packages.list.external},${packages.list.internal} - ${packages.list.external} - java.instrument, - java.management, - jdk.unsupported, - net.bytebuddy.agent, - com.sun.jna, - com.sun.jna.platform - net.bytebuddy.build.Plugin$Engine$Default - - - - - - org.ow2.asm - asm - ${version.asm} - - - - - - - - extras - - - - maven-source-plugin - 3.2.1 - - - - jar - - - true - - - - - true - - - - - - - shade-current - - - - maven-shade-plugin - 3.5.2 - - - package - - shade - - - false - true - true - true - - - org.objectweb.asm - net.bytebuddy.jar.asm - - - - - net.bytebuddy:byte-buddy-dep:* - - META-INF/MANIFEST.MF - META-INF/maven/** - - - - org.ow2.asm:* - - META-INF/MANIFEST.MF - **/module-info.class - **/LICENSE - **/NOTICE - - - - org.ow2.asm:asm-commons - - org/objectweb/asm/commons/AnnotationRemapper.** - org/objectweb/asm/commons/ClassRemapper.** - org/objectweb/asm/commons/FieldRemapper.** - org/objectweb/asm/commons/MethodRemapper.** - org/objectweb/asm/commons/ModuleHashesAttribute.** - org/objectweb/asm/commons/ModuleRemapper.** - org/objectweb/asm/commons/RecordComponentRemapper.** - org/objectweb/asm/commons/Remapper.** - org/objectweb/asm/commons/SignatureRemapper.** - org/objectweb/asm/commons/SimpleRemapper.** - - - - - - net.bytebuddy.build.Plugin$Engine$Default - - - sources-jar - - - - META-INF/LICENSE - - - - - - - - org.ow2.asm - asm - 9.6 - compile - - - org.ow2.asm - asm-commons - 9.6 - compile - - - - - - - - shade-legacy - - - - maven-shade-plugin - ${version.plugin.shade} - - - package - - shade - - - false - true - ${bytebuddy.extras} - true - - - ${shade.source} - ${shade.target} - - - - - net.bytebuddy:byte-buddy-dep:* - - META-INF/MANIFEST.MF - - - - org.ow2.asm:* - - META-INF/MANIFEST.MF - **/module-info.class - **/LICENSE - **/NOTICE - - - - org.ow2.asm:asm-commons - - org/objectweb/asm/commons/AnnotationRemapper.** - org/objectweb/asm/commons/ClassRemapper.** - org/objectweb/asm/commons/FieldRemapper.** - org/objectweb/asm/commons/MethodRemapper.** - org/objectweb/asm/commons/ModuleHashesAttribute.** - org/objectweb/asm/commons/ModuleRemapper.** - org/objectweb/asm/commons/RecordComponentRemapper.** - org/objectweb/asm/commons/Remapper.** - org/objectweb/asm/commons/SignatureRemapper.** - org/objectweb/asm/commons/SimpleRemapper.** - - - - - - net.bytebuddy.build.Plugin$Engine$Default - - - META-INF/LICENSE - - - - - - - - org.ow2.asm - asm - ${version.asm} - - - org.ow2.asm - asm-commons - ${version.asm} - - - - - - - - - - net.java.dev.jna - jna - 5.12.1 - provided - - - net.java.dev.jna - jna-platform - 5.12.1 - provided - - - com.google.code.findbugs - findbugs-annotations - 3.0.1 - provided - - - com.google.code.findbugs - jsr305 - 3.0.2 - provided - - - - true - net.bytebuddy, - net.bytebuddy.agent.builder, - net.bytebuddy.asm, - net.bytebuddy.build, - net.bytebuddy.description, - net.bytebuddy.description.annotation, - net.bytebuddy.description.enumeration, - net.bytebuddy.description.field, - net.bytebuddy.description.method, - net.bytebuddy.description.modifier, - net.bytebuddy.description.type, - net.bytebuddy.dynamic, - net.bytebuddy.dynamic.loading, - net.bytebuddy.dynamic.scaffold, - net.bytebuddy.dynamic.scaffold.inline, - net.bytebuddy.dynamic.scaffold.subclass, - net.bytebuddy.implementation, - net.bytebuddy.implementation.attribute, - net.bytebuddy.implementation.auxiliary, - net.bytebuddy.implementation.bind, - net.bytebuddy.implementation.bind.annotation, - net.bytebuddy.implementation.bytecode, - net.bytebuddy.implementation.bytecode.assign, - net.bytebuddy.implementation.bytecode.assign.primitive, - net.bytebuddy.implementation.bytecode.assign.reference, - net.bytebuddy.implementation.bytecode.collection, - net.bytebuddy.implementation.bytecode.constant, - net.bytebuddy.implementation.bytecode.member, - net.bytebuddy.matcher, - net.bytebuddy.pool, - net.bytebuddy.utility, - net.bytebuddy.utility.nullability, - net.bytebuddy.utility.privilege, - net.bytebuddy.utility.visitor, - ${shade.target}, - ${shade.target}.signature, - ${shade.target}.commons - org.objectweb.asm - net.bytebuddy.jar.asm - net.bytebuddy.utility.dispatcher - - diff --git a/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom.sha1 b/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom.sha1 deleted file mode 100644 index 0c7eb6498..000000000 --- a/code/arachne/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -022caf6bb212e382cd48452771558744188f6190 \ No newline at end of file diff --git a/code/arachne/net/java/dev/jna/jna-platform/5.5.0/_remote.repositories b/code/arachne/net/java/dev/jna/jna-platform/5.5.0/_remote.repositories deleted file mode 100644 index 286ec77b9..000000000 --- a/code/arachne/net/java/dev/jna/jna-platform/5.5.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:22 EDT 2024 -jna-platform-5.5.0.pom>central= diff --git a/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom b/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom deleted file mode 100644 index 7e34f6b43..000000000 --- a/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom +++ /dev/null @@ -1,61 +0,0 @@ - - 4.0.0 - - net.java.dev.jna - jna-platform - 5.5.0 - jar - - Java Native Access Platform - Java Native Access Platform - https://github.com/java-native-access/jna - - - - LGPL, version 2.1 - http://www.gnu.org/licenses/licenses.html - repo - - - Apache License v2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:https://github.com/java-native-access/jna - scm:git:ssh://git@github.com/java-native-access/jna.git - https://github.com/java-native-access/jna - - - - - twall - Timothy Wall - - Owner - - - - mblaesing@doppel-helix.eu - Matthias Bläsing - https://github.com/matthiasblaesing/ - - Developer - - - - - - - net.java.dev.jna - jna - 5.5.0 - - - - diff --git a/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom.sha1 b/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom.sha1 deleted file mode 100644 index ef9267d1b..000000000 --- a/code/arachne/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a79e586606a32462c92b54b084596ba9976db000 \ No newline at end of file diff --git a/code/arachne/net/java/dev/jna/jna/5.13.0/_remote.repositories b/code/arachne/net/java/dev/jna/jna/5.13.0/_remote.repositories deleted file mode 100644 index cc2aa0e7e..000000000 --- a/code/arachne/net/java/dev/jna/jna/5.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:13 EDT 2024 -jna-5.13.0.pom>central= diff --git a/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom b/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom deleted file mode 100644 index 0960aed21..000000000 --- a/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom +++ /dev/null @@ -1,63 +0,0 @@ - - 4.0.0 - - net.java.dev.jna - jna - 5.13.0 - jar - - Java Native Access - Java Native Access - https://github.com/java-native-access/jna - - - - LGPL-2.1-or-later - https://www.gnu.org/licenses/old-licenses/lgpl-2.1 - repo - - Java Native Access (JNA) is licensed under the LGPL, version 2.1 or - later, or the Apache License, version 2.0. You can freely decide which - license you want to apply to the project. - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - Java Native Access (JNA) is licensed under the LGPL, version 2.1 or - later, or the Apache License, version 2.0. You can freely decide which - license you want to apply to the project. - - - - - - scm:git:https://github.com/java-native-access/jna - scm:git:ssh://git@github.com/java-native-access/jna.git - https://github.com/java-native-access/jna - - - - - twall - Timothy Wall - - Owner - - - - mblaesing@doppel-helix.eu - Matthias Bläsing - https://github.com/matthiasblaesing/ - - Developer - - - - - diff --git a/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom.sha1 b/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom.sha1 deleted file mode 100644 index aca9f0696..000000000 --- a/code/arachne/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b7cc05a5394544befc936c39080a93cc8c1e082e \ No newline at end of file diff --git a/code/arachne/net/java/dev/jna/jna/5.5.0/_remote.repositories b/code/arachne/net/java/dev/jna/jna/5.5.0/_remote.repositories deleted file mode 100644 index 7676959e8..000000000 --- a/code/arachne/net/java/dev/jna/jna/5.5.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:22 EDT 2024 -jna-5.5.0.pom>central= diff --git a/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom b/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom deleted file mode 100644 index 8d2ad8bea..000000000 --- a/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom +++ /dev/null @@ -1,53 +0,0 @@ - - 4.0.0 - - net.java.dev.jna - jna - 5.5.0 - jar - - Java Native Access - Java Native Access - https://github.com/java-native-access/jna - - - - LGPL, version 2.1 - http://www.gnu.org/licenses/licenses.html - repo - - - Apache License v2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:https://github.com/java-native-access/jna - scm:git:ssh://git@github.com/java-native-access/jna.git - https://github.com/java-native-access/jna - - - - - twall - Timothy Wall - - Owner - - - - mblaesing@doppel-helix.eu - Matthias Bläsing - https://github.com/matthiasblaesing/ - - Developer - - - - - diff --git a/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom.sha1 b/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom.sha1 deleted file mode 100644 index 87bfc39cb..000000000 --- a/code/arachne/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ddecd921171d1d9b6cd8498f4b3aecda926df48b \ No newline at end of file diff --git a/code/arachne/net/java/jvnet-parent/1/_remote.repositories b/code/arachne/net/java/jvnet-parent/1/_remote.repositories deleted file mode 100644 index 949f91c21..000000000 --- a/code/arachne/net/java/jvnet-parent/1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:02 EDT 2024 -jvnet-parent-1.pom>central= diff --git a/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom b/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom deleted file mode 100644 index 01e79f1bd..000000000 --- a/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom +++ /dev/null @@ -1,157 +0,0 @@ - - - - 4.0.0 - - net.java - jvnet-parent - 1 - pom - - Java.net Parent - http://java.net/ - Java.net - The Source for Java Technology Collaboration - - - scm:git:git@github.com:sonatype/jvnet-parent.git - scm:git:git@github.com:sonatype/jvnet-parent.git - https://github.com/sonatype/jvnet-parent - - - - - jvnet-nexus-snapshots - Java.net Nexus Snapshots Repository - https://maven.java.net/content/repositories/snapshots - - false - - - true - - - - - - - - jvnet-nexus-snapshots - Java.net Nexus Snapshots Repository - ${jvnetDistMgmtSnapshotsUrl} - - - jvnet-nexus-staging - Java.net Nexus Staging Repository - https://maven.java.net/service/local/staging/deploy/maven2/ - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0 - - - enforce-maven - - enforce - - - - - (,2.1.0),(2.1.0,2.2.0),(2.2.0,) - Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures - and checksums respectively. - - - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - forked-path - false - -Pjvnet-release - - - - - - - - UTF-8 - https://maven.java.net/content/repositories/snapshots/ - - - - - jvnet-release - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - - - - - diff --git a/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom.sha1 b/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom.sha1 deleted file mode 100644 index 791e02782..000000000 --- a/code/arachne/net/java/jvnet-parent/1/jvnet-parent-1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b55a1b046dbe82acdee8edde7476eebcba1e57d8 \ No newline at end of file diff --git a/code/arachne/net/java/jvnet-parent/5/_remote.repositories b/code/arachne/net/java/jvnet-parent/5/_remote.repositories deleted file mode 100644 index 4a0ec5487..000000000 --- a/code/arachne/net/java/jvnet-parent/5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:01 EDT 2024 -jvnet-parent-5.pom>central= diff --git a/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom b/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom deleted file mode 100644 index 7e82a90e0..000000000 --- a/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom +++ /dev/null @@ -1,265 +0,0 @@ - - - - 4.0.0 - - net.java - jvnet-parent - 5 - pom - - Java.net Parent - http://java.net/ - Java.net - The Source for Java Technology Collaboration - - - scm:git:git@github.com:sonatype/jvnet-parent.git - scm:git:git@github.com:sonatype/jvnet-parent.git - https://github.com/sonatype/jvnet-parent - - - - - jvnet-nexus-snapshots - Java.net Nexus Snapshots Repository - ${jvnetDistMgmtSnapshotsUrl} - - - jvnet-nexus-staging - Java.net Nexus Staging Repository - https://maven.java.net/service/local/staging/deploy/maven2/ - - - - - - - jvnet-nexus-releases - Java.net Releases Repositories - https://maven.java.net/content/repositories/releases/ - - true - - - false - - - - - - jvnet-nexus-releases - Java.net Releases Repositories - https://maven.java.net/content/repositories/releases/ - - true - - - false - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - - forked-path - false - -Pjvnet-release ${release.arguments} - - - - - - - - UTF-8 - https://maven.java.net/content/repositories/snapshots/ - - - - - - - jvnet-release - - - - org.apache.maven.plugins - maven-source-plugin - 2.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8 - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-beta-1 - - - enforce-maven - - enforce - - - - - (,2.1.0),(2.1.0,2.2.0),(2.2.0,) - Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures - and checksums respectively. - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - - - snapshots - - - jvnet-nexus-snapshots - Java.net Nexus Snapshots Repository - https://maven.java.net/content/repositories/snapshots - - false - - - true - - - - - - jvnet-nexus-snapshots - Java.net Nexus Snapshots Repository - https://maven.java.net/content/repositories/snapshots - - false - - - true - - - - - - staging - - false - - - - jvnet-nexus-staging - Java.net Staging Repositoriy - https://maven.java.net/content/repositories/staging/ - - true - - - false - - - - - - jvnet-nexus-staging - Java.net Staging Repositoriy - https://maven.java.net/content/repositories/staging/ - - true - - - false - - - - - - promoted - - false - - - - jvnet-nexus-promoted - Java.net Promoted Repositories - https://maven.java.net/content/repositories/promoted/ - - true - - - false - - - - - - jvnet-nexus-promoted - Java.net Promoted Repositories - https://maven.java.net/content/repositories/promoted/ - - true - - - false - - - - - - diff --git a/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom.sha1 b/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom.sha1 deleted file mode 100644 index cc61d297a..000000000 --- a/code/arachne/net/java/jvnet-parent/5/jvnet-parent-5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5343c954d21549d039feebe5fadef023cdfc1388 \ No newline at end of file diff --git a/code/arachne/net/jcip/jcip-annotations/1.0/_remote.repositories b/code/arachne/net/jcip/jcip-annotations/1.0/_remote.repositories deleted file mode 100644 index 545a19bc1..000000000 --- a/code/arachne/net/jcip/jcip-annotations/1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:18 EDT 2024 -jcip-annotations-1.0.pom>central= diff --git a/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom b/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom deleted file mode 100644 index be447a63e..000000000 --- a/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom +++ /dev/null @@ -1,14 +0,0 @@ - - - 4.0.0 - net.jcip - jcip-annotations - jar - 1.0 - "Java Concurrency in Practice" book annotations - http://jcip.net/ - - \ No newline at end of file diff --git a/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom.sha1 b/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom.sha1 deleted file mode 100644 index 0a43662ec..000000000 --- a/code/arachne/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dc988441d471560e3dbcf7bea80d06fa6dc58003 \ No newline at end of file diff --git a/code/arachne/net/minidev/accessors-smart/2.5.1/_remote.repositories b/code/arachne/net/minidev/accessors-smart/2.5.1/_remote.repositories deleted file mode 100644 index 21edf2bf1..000000000 --- a/code/arachne/net/minidev/accessors-smart/2.5.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:08 EDT 2024 -accessors-smart-2.5.1.pom>central= diff --git a/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom b/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom deleted file mode 100644 index 4360b5af8..000000000 --- a/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom +++ /dev/null @@ -1,252 +0,0 @@ - - - 4.0.0 - net.minidev - accessors-smart - 2.5.1 - ASM based accessors helper used by json-smart - Java reflect give poor performance on getter setter an constructor calls, accessors-smart use ASM to speed up those calls. - bundle - https://urielch.github.io/ - - Chemouni Uriel - https://urielch.github.io/ - - - - uriel - Uriel Chemouni - uchemouni@gmail.com - GMT+3 - - - shoothzj - ZhangJian He - shoothzj@gmail.com - GMT+8 - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - All files under Apache 2 - - - - UTF-8 - 10 - 1.8 - 1.8 - - - scm:git:https://github.com/netplex/json-smart-v2.git - scm:git:https://github.com/netplex/json-smart-v2.git - https://github.com/netplex/json-smart-v2 - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - release-sign-artifacts - - - - performRelease - true - - - - - - - 53BE126D - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - 8 - - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - forked-path - -Psonatype-oss-release - false - false - release - deploy - - - - - - - include-sources - - - - / - true - src/main/java - - **/*.java - - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - bind-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - UTF-8 - ${maven.compiler.source} - ${maven.compiler.target} - - - - org.apache.maven.plugins - maven-resources-plugin - 3.2.0 - - UTF-8 - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - - 8 - false - - - - - attach-javadocs - - jar - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.2 - true - - - ${project.groupId}.${project.artifactId} - ${project.artifactId} - ${project.version} - - org.objectweb.asm;version="[8.0,10)",* - - - net.minidev.asm, net.minidev.asm.ex - - - - - - - - - - org.junit.jupiter - junit-jupiter-api - 5.10.0 - test - - - - org.ow2.asm - asm - 9.6 - - - diff --git a/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom.sha1 b/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom.sha1 deleted file mode 100644 index 440db5a13..000000000 --- a/code/arachne/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b0844383f60fb68dfaef5375f3f9a31fd0cc3e0a \ No newline at end of file diff --git a/code/arachne/net/minidev/json-smart/2.5.1/_remote.repositories b/code/arachne/net/minidev/json-smart/2.5.1/_remote.repositories deleted file mode 100644 index 88e65cbfb..000000000 --- a/code/arachne/net/minidev/json-smart/2.5.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:08 EDT 2024 -json-smart-2.5.1.pom>central= diff --git a/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom b/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom deleted file mode 100644 index 95c2602d2..000000000 --- a/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom +++ /dev/null @@ -1,270 +0,0 @@ - - - 4.0.0 - net.minidev - json-smart - 2.5.1 - JSON Small and Fast Parser - JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language. - bundle - https://urielch.github.io/ - - Chemouni Uriel - https://urielch.github.io/ - - - - uriel - Uriel Chemouni - uchemouni@gmail.com - GMT+3 - - - erav - Eitan Raviv - adoneitan@gmail.com - GMT+2 - - - shoothzj - ZhangJian He - shoothzj@gmail.com - GMT+8 - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - All files under Apache 2 - - - - UTF-8 - 10 - 1.8 - 1.8 - 5.10.2 - - - scm:git:https://github.com/netplex/json-smart-v2.git - scm:git:https://github.com/netplex/json-smart-v2.git - https://github.com/netplex/json-smart-v2 - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - release-sign-artifacts - - - - performRelease - true - - - - - - - 53BE126D - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - verify - - sign - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - 8 - - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - forked-path - -Psonatype-oss-release - false - false - release - deploy - - - - - - - include-sources - - - - / - true - src/main/java - - **/*.java - - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - bind-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - UTF-8 - ${maven.compiler.source} - ${maven.compiler.target} - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - UTF-8 - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - - 8 - false - - - - - attach-javadocs - - jar - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - true - - - ${project.groupId}.${project.artifactId} - ${project.artifactId} - ${project.version} - - net.minidev.json, net.minidev.json.annotate, - net.minidev.json.parser, - net.minidev.json.reader, - net.minidev.json.writer - - - net.minidev.asm;version="1.0", - * - - - - - - - - - - org.junit.jupiter - junit-jupiter-api - ${junit.version} - test - - - - org.junit.jupiter - junit-jupiter-params - ${junit.version} - test - - - - net.minidev - accessors-smart - 2.5.1 - - - diff --git a/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom.sha1 b/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom.sha1 deleted file mode 100644 index ef22ed285..000000000 --- a/code/arachne/net/minidev/json-smart/2.5.1/json-smart-2.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d367a9c886ea665835020cee3839aa60219e419c \ No newline at end of file diff --git a/code/arachne/net/shibboleth/parent/17.0.1/_remote.repositories b/code/arachne/net/shibboleth/parent/17.0.1/_remote.repositories deleted file mode 100644 index 0b001d3e9..000000000 --- a/code/arachne/net/shibboleth/parent/17.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:29 EDT 2024 -parent-17.0.1.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom b/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom deleted file mode 100644 index ec534491c..000000000 --- a/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom +++ /dev/null @@ -1,1268 +0,0 @@ - - - - 4.0.0 - - net.shibboleth - parent - 17.0.1 - pom - - Shibboleth Project Java 17 Super POM - - A POM containing properties, profiles, plugin configurations, etc. that - are common across all Shibboleth projects based on the Java 17 - platform. - - - - UTF-8 - 17 - - - - - 1.10.14 - 1.76 - 1.76 - 1.23.0 - 3.13.0 - 1.2.6 - 1.3 - - org.apache.httpcomponents.client5 - httpclient5 - httpclient5-cache - 5.2.1 - org.apache.httpcomponents.core5 - httpcore5 - 5.2.2 - 21.2.0 - 32.1.2-jre - 2.15.2 - 9 - 2.0.1 - 2.0.1 - 2.0.1 - 3.1.10 - org.eclipse.jetty - 1.15.4 - 2.2.0 - 3.9.0 - 7.7.1 - 6.0.9 - 4.2.19 - 1.7.14 - 15.3 - 1.0.0 - org.slf4j - 2.0.7 - 1.4.11 - org.springframework - 6.0.11 - org.springframework.webflow - 3.0.0 - 2.3 - 3.0.2 - 2.9.1 - - 3.2.0 - 1.0.14 - ${basedir}/target/m2SignatureReport.txt - - 8.45.1 - 3.1.2 - checkstyle.xml - - 0.8.8 - 3.5.0 - 3.1.0 - 3.10.1 - 3.3.0 - 3.0.0-M2 - 3.0.0-M3 - 3.0.1 - 3.0.0-M1 - 3.2.2 - 3.3.0.2 - 3.2.0 - 3.2.2 - 3.2.0 - 3.11.0 - 3.2.1 - 3.1.2 - 2.14.1 - 3.3.2 - - https://build.shibboleth.net/nexus/content/sites/site/ - - //shibboleth.net/home/javasites/staging/ - - scm:git:https://git.shibboleth.net/git/ - scm:git:git@git.shibboleth.net: - https://git.shibboleth.net/view/?p= - - - https://google.github.io/guava/releases/${guava.version}/api/docs - https://docs.oracle.com/en/java/javase/${maven.compiler.release}/docs/api - https://jakarta.ee/specifications/platform/${jakarta.ee.version}/apidocs - http://www.ldaptive.org/javadocs - https://docs.spring.io/spring/docs/${spring.version}/javadoc-api - https://docs.spring.io/spring-webflow/docs/${spring-webflow.version}/api - - - 9.0.0-SNAPSHOT - 4.0.1 - - - ${shibboleth.site.url}java-shib-shared/${java-shib-shared.version}/apidocs - ${shibboleth.site.url}java-opensaml/${opensaml.version}/apidocs - - - - - - - - - - - - - - - - - - - - - ${slf4j.groupId} - slf4j-api - ${slf4j.version} - - - commons-codec - commons-codec - 1.16.0 - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - com.google.guava - guava - ${guava.version} - - - org.apache.commons - commons-dbcp2 - 2.9.0 - - - org.apache.commons - commons-lang3 - ${commons.lang3.version} - - - org.apache.commons - commons-compress - ${commons.compress.version} - - - com.duosecurity - DuoWeb - ${duoweb.version} - - - io.dropwizard.metrics - metrics-bom - ${metrics.version} - pom - import - - - ${httpclient.httpcore.groupId} - ${httpclient.httpcore.artifactId} - ${httpclient.httpcore.version} - - - ${httpclient.groupId} - ${httpclient.artifactId} - ${httpclient.version} - - - ${httpclient.groupId} - ${httpclient.cache.artifactId} - ${httpclient.version} - - - - org.codehaus.janino - janino - ${janino.version} - - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version} - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson.version} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - ${jackson.version} - - - com.github.jasminb - jsonapi-converter - 0.13 - - - - com.squareup.retrofit2 - retrofit - - - - - ${spring.groupId} - spring-framework-bom - ${spring.version} - pom - import - - - ${spring-webflow.groupId} - spring-webflow - ${spring-webflow.version} - - - commons-logging - commons-logging - - - - - org.cryptacular - cryptacular - ${cryptacular.version} - - - org.bouncycastle - bcpg-jdk18on - ${bouncycastle.pg.version} - - - org.bouncycastle - bcprov-jdk18on - ${bouncycastle.version} - - - org.bouncycastle - bcpkix-jdk18on - ${bouncycastle.version} - - - org.bouncycastle - bcutil-jdk18on - ${bouncycastle.version} - - - - org.ldaptive - ldaptive - ${ldaptive.version} - - - com.unboundid - unboundid-ldapsdk - ${unboundid.version} - test - - - org.apache.velocity - velocity-engine-core - ${velocity.version} - - - org.apache.santuario - xmlsec - ${xmlsec.version} - - - jakarta.xml.bind - jakarta.xml.bind-api - - - com.fasterxml.woodstox - woodstox-core - - - - - com.beust - jcommander - 1.81 - - - commons-collections - commons-collections - 3.2.2 - - - - - org.apache.ant - ant - ${ant.version} - provided - - - org.apache.ant - ant-launcher - ${ant.version} - provided - - - jakarta.activation - jakarta.activation-api - ${jakarta.activation.version} - provided - - - jakarta.json - jakarta.json-api - ${jakarta.json.version} - provided - - - jakarta.mail - jakarta.mail-api - ${jakarta.mail.version} - runtime - - - jakarta.servlet.jsp - jakarta.servlet.jsp-api - 3.0.0 - provided - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - provided - - - - - ${slf4j.groupId} - jcl-over-slf4j - ${slf4j.version} - provided - - - - - ${slf4j.groupId} - jul-to-slf4j - ${slf4j.version} - provided - - - ${slf4j.groupId} - log4j-over-slf4j - ${slf4j.version} - provided - - - - - ch.qos.logback - logback-classic - ${logback.version} - runtime - - - javax.mail - mail - - - - - ch.qos.logback - logback-core - ${logback.version} - runtime - - - javax.mail - mail - - - - - ch.qos.logback - logback-access - ${logback.version} - runtime - - - javax.mail - mail - - - - - com.sun.activation - jakarta.activation - ${jakarta.activation.version} - runtime - - - com.sun.mail - jakarta.mail - ${jakarta.mail.version} - runtime - - - org.glassfish - jakarta.json - ${jakarta.json.version} - runtime - - - org.mozilla - rhino - ${rhino.version} - runtime - - - org.mozilla - rhino-runtime - ${rhino.version} - runtime - - - - - org.testng - testng - ${testng.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - org.xmlunit - xmlunit-core - ${xmlunit.version} - test - - - javax.xml.bind - jaxb-api - - - - - org.xmlunit - xmlunit-matchers - ${xmlunit.version} - test - - - ${spring.groupId} - spring-test - ${spring.version} - test - - - org.hsqldb - hsqldb - 2.7.2 - test - - - org.jsoup - jsoup - ${jsoup.version} - test - - - - - - - release - https://build.shibboleth.net/nexus/content/repositories/releases - - - snapshot - https://build.shibboleth.net/nexus/content/repositories/snapshots - - - site - scp:${shibboleth.site.deploy.url} - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${maven-assembly-plugin.version} - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstyle-plugin.version} - - - com.puppycrawl.tools - checkstyle - ${checkstyle.version} - - - - - org.apache.maven.plugins - maven-clean-plugin - ${maven-clean-plugin.version} - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - true - - - - org.apache.maven.plugins - maven-dependency-plugin - ${maven-dependency-plugin.version} - - - org.apache.maven.plugins - maven-deploy-plugin - ${maven-deploy-plugin.version} - - true - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${maven-enforcer-plugin.version} - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven-gpg-plugin.version} - - - org.apache.maven.plugins - maven-install-plugin - ${maven-install-plugin.version} - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - - net.shibboleth.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - - ${javase.link} - ${jakartaee.link} - ${spring-framework.link} - ${spring-webflow.link} - ${guava.link} - ${ldaptive.link} - ${java-shib-shared.link} - ${java-opensaml.link} - - true - false - private - true - ${project.name} ${project.version} API - ${project.name} ${project.version} API - - - parent - t - Parent: - - - child - t - Child: - - - added - t - Added: - - - removed - t - Removed: - - - event - t - Event: - - - pre - t - Precondition: - - - post - t - Postcondition: - - - - - - org.apache.maven.plugins - maven-resources-plugin - ${maven-resources-plugin.version} - - - org.apache.maven.plugins - maven-site-plugin - ${maven-site-plugin.version} - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - 3.5.3 - - - org.apache.maven.wagon - wagon-ssh - 3.5.3 - - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - org.apache.maven.surefire - surefire-testng - ${maven-surefire-plugin.version} - - - - - org.codehaus.mojo - versions-maven-plugin - ${maven-versions-plugin.version} - - - org.apache.maven.plugins - maven-war-plugin - ${maven-war-plugin.version} - - - org.jacoco - jacoco-maven-plugin - ${jacoco-maven-plugin.version} - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${checkstyle.configLocation} - - - - org.apache.maven.plugins - maven-jar-plugin - - true - - **/.gitkeep - - - - - - test-jar - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - true - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - - maven-version - - enforce - - - - - 3.8.4 - - - true - - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstyle-plugin.version} - - ${checkstyle.configLocation} - - - - - net.shibboleth.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - - ${javase.link} - ${jakartaee.link} - ${spring-framework.link} - ${spring-webflow.link} - ${guava.link} - ${ldaptive.link} - ${java-shib-shared.link} - ${java-opensaml.link} - - true - false - private - true - ${project.name} ${project.version} API - ${project.name} ${project.version} API - - - parent - t - Parent: - - - child - t - Child: - - - added - t - Added: - - - removed - t - Removed: - - - event - t - Event: - - - pre - t - Precondition: - - - post - t - Postcondition: - - - - - - aggregate - - aggregate - test-aggregate - - - - non-aggregate - - javadoc-no-fork - test-javadoc-no-fork - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${maven-jxr-plugin.version} - - true - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-reports-plugin.version} - - false - false - - - - - index - licenses - distribution-management - mailing-lists - issue-management - scm - ci-management - team - dependencies - dependency-management - plugins - plugin-management - - - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - true - true - true - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - net.shibboleth.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - test-jar - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - - - - - - sign - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - - lint - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - true - true - -Xlint:unchecked - - - - - - - - - check-m2 - - false - - .check-m2 - - - !no-check-m2 - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - net.shibboleth.maven.enforcer.rules - maven-dist-enforcer - ${maven-dist-enforcer.version} - - - - - M2-enforce - install - - enforce - - - - - net.shibboleth.maven.enforcer.rules - maven-dist-enforcer-data - ${maven-dist-enforcer-data.version} - ${basedir}/src/main/enforcer/shibbolethKeys.gpg - ${basedir} - - - false - false - false - false - true - ${maven-dist-enforcer-data.m2ReportPath} - - - - - - - - - - - - - nojacoco - - [19, - - - - - org.jacoco - jacoco-maven-plugin - - true - - - - - - - - - - - http://shibboleth.net/ - - 1999 - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Shibboleth Announce - mailto:announce-subscribe@shibboleth.net - mailto:announce-unsubscribe@shibboleth.net - http://marc.info/?l=shibboleth-announce - - - Shibboleth Users - mailto:users-subscribe@shibboleth.net - mailto:users-unsubscribe@shibboleth.net - users@shibboleth.net - http://marc.info/?l=shibboleth-users - - - Shibboleth Development - mailto:dev-subscribe@shibboleth.net - mailto:dev-unsubscribe@shibboleth.net - dev@shibboleth.net - http://marc.info/?l=shibboleth-dev - - - - - JIRA - https://issues.shibboleth.net/ - - - - ${shibboleth.scm.connection}java-parent-project-v3 - ${shibboleth.scm.developerConnection}java-parent-project-v3 - ${shibboleth.scm.url}java-parent-project-v3.git - - - - - iay - Ian Young - Ian A. Young - https://iay.org.uk - 0 - - - lajoie - Chad La Joie - -5 - - - putmanb - Brent Putman - Georgetown University - http://www.georgetown.edu - -5 - - - rdw - Rod Widdowson - Steading System Software - http://SteadingSoftware.com - 0 - - - scantor - Scott Cantor - The Ohio State University - http://www.osu.edu - -5 - - - dfisher - Daniel Fisher - Virginia Tech - http://www.vt.edu - -5 - - - philsmart - Phil Smart - Jisc - https://www.jisc.ac.uk - 0 - - - mikkonen - Henri Mikkonen - 3 - - - - - - Nathan Klingenstein - Internet2 - http://internet2.edu - -7 - - - - - Shibboleth Consortium - https://shibboleth.net - - - diff --git a/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.lastUpdated b/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.lastUpdated deleted file mode 100644 index 6b15a77f5..000000000 --- a/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:29 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:parent\:pom\:17.0.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139869154 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139869159 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139869272 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139869450 -https\://repo1.maven.org/maven2/.lastUpdated=1721139869064 diff --git a/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.sha1 b/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.sha1 deleted file mode 100644 index 701566d79..000000000 --- a/code/arachne/net/shibboleth/parent/17.0.1/parent-17.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d25f329ce02cc67ff925b6b2c1f1273ef2f87e58 \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-networking/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-networking/9.0.0/_remote.repositories deleted file mode 100644 index 16e057013..000000000 --- a/code/arachne/net/shibboleth/shib-networking/9.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:35 EDT 2024 -shib-networking-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom b/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom deleted file mode 100644 index 2e6c9e2d3..000000000 --- a/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom +++ /dev/null @@ -1,84 +0,0 @@ - - - - 4.0.0 - - - net.shibboleth - shib-shared-parent - 9.0.0 - - - Shibboleth Shared :: Networking Support - shib-networking - jar - - - net.shibboleth.networking - ${project.basedir}/../resources/checkstyle/checkstyle.xml - - - - - - ${project.groupId} - shib-support - ${project.version} - - - - com.google.guava - guava - - - - ${httpclient.groupId} - ${httpclient.artifactId} - - - ${httpclient.groupId} - ${httpclient.cache.artifactId} - - - ${httpclient.httpcore.groupId} - ${httpclient.httpcore.artifactId} - - - - - jakarta.servlet - jakarta.servlet-api - provided - - - - - - - ${spring.groupId} - spring-test - test - - - - ${spring.groupId} - spring-web - test - - - - - ${shibboleth.scm.connection}java-shib-shared - ${shibboleth.scm.developerConnection}java-shib-shared - ${shibboleth.scm.url}java-shib-shared.git - - - - - site - scp:${shared-module.site.url} - - - - diff --git a/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.lastUpdated deleted file mode 100644 index a9f2209ad..000000000 --- a/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:35 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-networking\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139875097 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139875105 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139875215 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139875345 -https\://repo1.maven.org/maven2/.lastUpdated=1721139875000 diff --git a/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.sha1 deleted file mode 100644 index 3b405a775..000000000 --- a/code/arachne/net/shibboleth/shib-networking/9.0.0/shib-networking-9.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4f0bd9519f1acf679067bc4ec9e43d780061b0c9 \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-security/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-security/9.0.0/_remote.repositories deleted file mode 100644 index 2a5870a47..000000000 --- a/code/arachne/net/shibboleth/shib-security/9.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:34 EDT 2024 -shib-security-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom b/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom deleted file mode 100644 index a51de54c4..000000000 --- a/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom +++ /dev/null @@ -1,93 +0,0 @@ - - - - 4.0.0 - - - net.shibboleth - shib-shared-parent - 9.0.0 - - - Shibboleth Shared :: Security Support - shib-security - jar - - - net.shibboleth.shared.security - ${project.basedir}/../resources/checkstyle/checkstyle.xml - - - - - - ${project.groupId} - shib-support - ${project.version} - - - - ${project.groupId} - shib-networking - ${project.version} - - - - com.google.guava - guava - - - - commons-codec - commons-codec - - - - org.bouncycastle - bcprov-jdk18on - - - org.bouncycastle - bcpkix-jdk18on - - - - - com.beust - jcommander - true - - - - - jakarta.servlet - jakarta.servlet-api - provided - - - - - - - ${spring.groupId} - spring-core - test - - - - - ${shibboleth.scm.connection}java-shib-shared - ${shibboleth.scm.developerConnection}java-shib-shared - ${shibboleth.scm.url}java-shib-shared.git - - - - - site - scp:${shared-module.site.url} - - - - - diff --git a/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.lastUpdated deleted file mode 100644 index b3f5fe2c2..000000000 --- a/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:34 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-security\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139874573 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139874581 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139874794 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139874924 -https\://repo1.maven.org/maven2/.lastUpdated=1721139874485 diff --git a/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.sha1 deleted file mode 100644 index 713572b6f..000000000 --- a/code/arachne/net/shibboleth/shib-security/9.0.0/shib-security-9.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ad95e28a4fdac166904655468fd251e9c08c07ca \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/_remote.repositories deleted file mode 100644 index 2034b60ab..000000000 --- a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:29 EDT 2024 -shib-shared-bom-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom deleted file mode 100644 index c3f3656f8..000000000 --- a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom +++ /dev/null @@ -1,85 +0,0 @@ - - - - 4.0.0 - - - net.shibboleth - shib-shared-parent - 9.0.0 - - - Shibboleth Shared Components :: BOM - Bill of Materials - shib-shared-bom - pom - - - - ${basedir}/m2SignatureReport.txt - - - - - - ${project.groupId} - shib-cli - ${project.version} - - - ${project.groupId} - shib-networking - ${project.version} - - - ${project.groupId} - shib-networking-spring - ${project.version} - - - ${project.groupId} - shib-security - ${project.version} - - - ${project.groupId} - shib-security-spring - ${project.version} - - - ${project.groupId} - shib-service - ${project.version} - - - ${project.groupId} - shib-spring - ${project.version} - - - ${project.groupId} - shib-support - ${project.version} - - - ${project.groupId} - shib-velocity - ${project.version} - - - ${project.groupId} - shib-velocity-spring - ${project.version} - - - - ${project.groupId} - shib-testing - ${project.version} - test - - - - - diff --git a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.lastUpdated deleted file mode 100644 index 2e6e13692..000000000 --- a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:29 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-shared-bom\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139869632 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139869639 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139869755 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139869887 -https\://repo1.maven.org/maven2/.lastUpdated=1721139869536 diff --git a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.sha1 deleted file mode 100644 index 1a54b72a4..000000000 --- a/code/arachne/net/shibboleth/shib-shared-bom/9.0.0/shib-shared-bom-9.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -eb82278d1940b0f2b57f0655d2cf2206da650439 \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/_remote.repositories deleted file mode 100644 index a59905379..000000000 --- a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:30 EDT 2024 -shib-shared-parent-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom deleted file mode 100644 index 9a5d6a27a..000000000 --- a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom +++ /dev/null @@ -1,142 +0,0 @@ - - - - 4.0.0 - - - net.shibboleth - parent - 17.0.1 - - - Shibboleth Shared Components - - A multi-module project aggregating a number of shared - Shibboleth components. - - These were previously known as java-support and spring-extensions. - - - shib-shared-parent - 9.0.0 - pom - - - - shib-support - shib-spring - - - shib-cli - shib-networking - shib-networking-spring - shib-security - shib-security-spring - shib-service - shib-testing - shib-velocity - shib-velocity-spring - - shib-shared-bom - - - - - ${project.basedir}/resources/checkstyle/checkstyle.xml - ${shibboleth.site.deploy.url}java-shib-shared/${project.version}/ - ${shared-parent.site.url}${project.artifactId} - - - - - - ${slf4j.groupId} - slf4j-api - - - com.google.code.findbugs - jsr305 - - - - - - - - - org.testng - testng - test - - - ch.qos.logback - logback-classic - test - - - - - - - - - - - - - - - - - ${shibboleth.scm.connection}java-shib-shared - ${shibboleth.scm.developerConnection}java-shib-shared - ${shibboleth.scm.url}java-shib-shared.git - - - - - site - scp:${shibboleth.site.deploy.url}java-shib-shared/${project.version}/ - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${automatic.module.name} - true - - - - - - - - - - - get-nashorn - - [15, - - - - org.openjdk.nashorn - nashorn-core - ${nashorn.jdk.version} - test - - - - - - diff --git a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.lastUpdated deleted file mode 100644 index 01bf16515..000000000 --- a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:30 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-shared-parent\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139870094 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139870101 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139870220 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139870338 -https\://repo1.maven.org/maven2/.lastUpdated=1721139869978 diff --git a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.sha1 deleted file mode 100644 index 9f31cc9e1..000000000 --- a/code/arachne/net/shibboleth/shib-shared-parent/9.0.0/shib-shared-parent-9.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -733f919b32f5ff98f316e634fb66809b77d36f9d \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-support/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-support/9.0.0/_remote.repositories deleted file mode 100644 index 47bebedac..000000000 --- a/code/arachne/net/shibboleth/shib-support/9.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:32 EDT 2024 -shib-support-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom b/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom deleted file mode 100644 index 132b58564..000000000 --- a/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom +++ /dev/null @@ -1,70 +0,0 @@ - - - - 4.0.0 - - - net.shibboleth - shib-shared-parent - 9.0.0 - - - Shibboleth Shared :: Generic Support Classes - shib-support - jar - - - net.shibboleth.shared.support - ${project.basedir}/../resources/checkstyle/checkstyle.xml - - - - - - commons-codec - commons-codec - - - com.google.guava - guava - - - - - - - - - ch.qos.logback - logback-classic - test - - - ch.qos.logback - logback-core - test - - - - ${spring.groupId} - spring-core - test - - - - - - scm:git:https://git.shibboleth.net/git/${project.artifactId} - scm:git:git@git.shibboleth.net:${project.artifactId} - https://git.shibboleth.net/view/?p=${project.artifactId}.git - - - - - site - scp:${shared-module.site.url} - - - - diff --git a/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.lastUpdated deleted file mode 100644 index 86f4ef4f1..000000000 --- a/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:32 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-support\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139872661 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139872668 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139872782 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139872923 -https\://repo1.maven.org/maven2/.lastUpdated=1721139872552 diff --git a/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.sha1 deleted file mode 100644 index c4bdd6abd..000000000 --- a/code/arachne/net/shibboleth/shib-support/9.0.0/shib-support-9.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -28ea6ba5e546db5e0477e4db0a09dbe03c10f1c1 \ No newline at end of file diff --git a/code/arachne/net/shibboleth/shib-velocity/9.0.0/_remote.repositories b/code/arachne/net/shibboleth/shib-velocity/9.0.0/_remote.repositories deleted file mode 100644 index 8f6694dca..000000000 --- a/code/arachne/net/shibboleth/shib-velocity/9.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:41 EDT 2024 -shib-velocity-9.0.0.pom>ohdsi= diff --git a/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom b/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom deleted file mode 100644 index ca89dfa3c..000000000 --- a/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom +++ /dev/null @@ -1,58 +0,0 @@ - - - - 4.0.0 - - - net.shibboleth - shib-shared-parent - 9.0.0 - - - Shibboleth Shared :: Velocity Support - shib-velocity - jar - - - net.shibboleth.shared.velocity - ${project.basedir}/../resources/checkstyle/checkstyle.xml - - - - - - ${project.groupId} - shib-support - ${project.version} - - - - com.google.guava - guava - - - - org.apache.velocity - velocity-engine-core - - - - - - - - - ${shibboleth.scm.connection}java-shib-shared - ${shibboleth.scm.developerConnection}java-shib-shared - ${shibboleth.scm.url}java-shib-shared.git - - - - - site - scp:${shared-module.site.url} - - - - diff --git a/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.lastUpdated b/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.lastUpdated deleted file mode 100644 index 805beafbe..000000000 --- a/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:41 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact net.shibboleth\:shib-velocity\:pom\:9.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139881639 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139881646 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139881752 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139881889 -https\://repo1.maven.org/maven2/.lastUpdated=1721139881544 diff --git a/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.sha1 b/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.sha1 deleted file mode 100644 index 8ab5a34f6..000000000 --- a/code/arachne/net/shibboleth/shib-velocity/9.0.0/shib-velocity-9.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -799eb068a6bf488578267685a23c759d41ea299a \ No newline at end of file diff --git a/code/arachne/org/antlr/antlr4-master/4.13.0/_remote.repositories b/code/arachne/org/antlr/antlr4-master/4.13.0/_remote.repositories deleted file mode 100644 index 7f856b8bc..000000000 --- a/code/arachne/org/antlr/antlr4-master/4.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -antlr4-master-4.13.0.pom>central= diff --git a/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom b/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom deleted file mode 100644 index 5ed8421b1..000000000 --- a/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom +++ /dev/null @@ -1,181 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 9 - - org.antlr - antlr4-master - 4.13.0 - pom - - ANTLR 4 - ANTLR 4 Master Build POM - https://www.antlr.org/ - 1992 - - ANTLR - https://www.antlr.org/ - - - - 3.8 - - - - - BSD-3-Clause - https://www.antlr.org/license.html - repo - - - - - - Terence Parr - https://github.com/parrt - - Project lead - ANTLR - - - - Sam Harwell - http://tunnelvisionlabs.com - - Developer - - - - Eric Vergnaud - - Developer - JavaScript, C#, Python 2, Python 3 - - - - Peter Boyer - - Developer - Go - - - - Jim Idle - jimi@idle.ws - https://www.linkedin.com/in/jimidle/ - - Developer - Maven Plugin - Developer - Go runtime - - - - Mike Lischke - - Developer - C++ Target - - - - Tom Everett - - Developer - - - - - - runtime/Java - tool - antlr4-maven-plugin - tool-testsuite - runtime-testsuite - - - - UTF-8 - UTF-8 - 1684689931 - true - 11 - 11 - - - - - antlr-discussion - https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion - - - - - GitHub Issues - https://github.com/antlr/antlr4/issues - - - - https://github.com/antlr/antlr4/tree/master - scm:git:git://github.com/antlr/antlr4.git - scm:git:git@github.com:antlr/antlr4.git - 4.13.0 - - - - - - resources - - - - - test - - - - - maven-clean-plugin - 3.1.0 - - - - runtime/Swift/.build - - - runtime/Swift/Tests/Antlr4Tests/gen - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - ${maven.compiler.source} - ${maven.compiler.target} - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M6 - - - - - diff --git a/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom.sha1 b/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom.sha1 deleted file mode 100644 index a962397c0..000000000 --- a/code/arachne/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d8cb4559e841b8fb7fb73da13b6fb28aad20e8c6 \ No newline at end of file diff --git a/code/arachne/org/antlr/antlr4-master/4.5.1-1/_remote.repositories b/code/arachne/org/antlr/antlr4-master/4.5.1-1/_remote.repositories deleted file mode 100644 index bef3126d6..000000000 --- a/code/arachne/org/antlr/antlr4-master/4.5.1-1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:09 EDT 2024 -antlr4-master-4.5.1-1.pom>central= diff --git a/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom b/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom deleted file mode 100644 index a383a9c0d..000000000 --- a/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom +++ /dev/null @@ -1,128 +0,0 @@ - - 4.0.0 - - org.sonatype.oss - oss-parent - 9 - - org.antlr - antlr4-master - 4.5.1-1 - pom - - ANTLR 4 - ANTLR 4 Master Build POM - http://www.antlr.org - 1992 - - ANTLR - http://www.antlr.org - - - - - The BSD License - http://www.antlr.org/license.html - repo - - - - - - Terence Parr - http://antlr.org/wiki/display/~admin/Home - - Project lead - ANTLR - - - - Sam Harwell - http://tunnelvisionlabs.com - - Developer - - - - Eric Vergnaud - - Developer - JavaScript, C#, Python 2, Python 3 - - - - Jim Idle - jimi@idle.ws - http://www.linkedin.com/in/jimidle - - Developer - Maven Plugin - - - - - - runtime/Java - tool - antlr4-maven-plugin - tool-testsuite - runtime-testsuite - - - - UTF-8 - UTF-8 - true - 1.6 - 1.6 - - - - - antlr-discussion - https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion - - - - - GitHub Issues - https://github.com/antlr/antlr4/issues - - - - https://github.com/antlr/antlr4/tree/master - scm:git:git://github.com/antlr/antlr4.git - scm:git:git@github.com:antlr/antlr4.git - HEAD - - - - - - resources - - - test - - - test - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${maven.compiler.source} - ${maven.compiler.target} - - - - org.apache.maven.plugins - maven-javadoc-plugin - - -Xdoclint:none - - - - - - diff --git a/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom.sha1 b/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom.sha1 deleted file mode 100644 index 41171d6c9..000000000 --- a/code/arachne/org/antlr/antlr4-master/4.5.1-1/antlr4-master-4.5.1-1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b572c96b564e13b1d81656351b698d605c6c7f08 \ No newline at end of file diff --git a/code/arachne/org/antlr/antlr4-runtime/4.13.0/_remote.repositories b/code/arachne/org/antlr/antlr4-runtime/4.13.0/_remote.repositories deleted file mode 100644 index a81d64463..000000000 --- a/code/arachne/org/antlr/antlr4-runtime/4.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -antlr4-runtime-4.13.0.pom>central= diff --git a/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom b/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom deleted file mode 100644 index 177dc9f62..000000000 --- a/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom +++ /dev/null @@ -1,121 +0,0 @@ - - - - 4.0.0 - - org.antlr - antlr4-master - 4.13.0 - ../../pom.xml - - antlr4-runtime - ANTLR 4 Runtime - The ANTLR 4 Runtime - - - 3.8 - - - - - dot - - - - src - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - - jar - - - - - - us.bryon - graphviz-maven-plugin - 1.0 - - - - dot - - - ${dot.path} - ${project.build.directory}/apidocs - svg - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - 1.8 - false - - - - - javadoc - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.7 - - - bundle-manifest - process-classes - - - org.antlr.antlr4.runtime - org.antlr.antlr4-runtime - org.antlr.v4.gui;resolution:=optional, * - - - - manifest - - - - - - maven-jar-plugin - 3.2.0 - - - - true - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 8 - 1.8 - 1.8 - - - - - diff --git a/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom.sha1 b/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom.sha1 deleted file mode 100644 index 56106e176..000000000 --- a/code/arachne/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bd7a583a403c741d7b33674d693a7d3787a41519 \ No newline at end of file diff --git a/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/_remote.repositories b/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/_remote.repositories deleted file mode 100644 index 8e7345031..000000000 --- a/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:09 EDT 2024 -antlr4-runtime-4.5.1-1.pom>central= diff --git a/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom b/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom deleted file mode 100644 index 8a1574628..000000000 --- a/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom +++ /dev/null @@ -1,66 +0,0 @@ - - 4.0.0 - - org.antlr - antlr4-master - 4.5.1-1 - ../../pom.xml - - antlr4-runtime - ANTLR 4 Runtime - The ANTLR 4 Runtime - - - src - - - org.antlr - antlr4-maven-plugin - 4.5 - - - antlr - - src - - - antlr4 - - - - - - org.apache.felix - maven-bundle-plugin - 2.5.4 - - - bundle-manifest - process-classes - - - org.antlr.antlr4-runtime-osgi - ANTLR 4 Runtime - ANTLR - org.antlr - ${project.version} - - - - manifest - - - - - - maven-jar-plugin - 2.4 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - diff --git a/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom.sha1 b/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom.sha1 deleted file mode 100644 index 760f7d5e9..000000000 --- a/code/arachne/org/antlr/antlr4-runtime/4.5.1-1/antlr4-runtime-4.5.1-1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -18bc9db6e89af5fe275a45b7994588db1418c780 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/13/_remote.repositories b/code/arachne/org/apache/apache/13/_remote.repositories deleted file mode 100644 index bc50d850a..000000000 --- a/code/arachne/org/apache/apache/13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -apache-13.pom>central= diff --git a/code/arachne/org/apache/apache/13/apache-13.pom b/code/arachne/org/apache/apache/13/apache-13.pom deleted file mode 100644 index 57cde9ab1..000000000 --- a/code/arachne/org/apache/apache/13/apache-13.pom +++ /dev/null @@ -1,384 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 13 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - http://www.apache.org/ - - The Apache Software Foundation - http://www.apache.org/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - apache.snapshots - Apache Snapshot Repository - http://repository.apache.org/snapshots - - false - - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-13 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-13 - http://svn.apache.org/viewvc/maven/pom/tags/apache-13 - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - source-release - true - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.6 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.5.1 - - 1.4 - 1.4 - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.7 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.12.4 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.7 - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.2 - - - - org.apache.maven.plugins - maven-release-plugin - 2.3.2 - - false - deploy - -Papache-release ${arguments} - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.4 - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-scm-plugin - 1.8 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0-beta-2 - - - org.apache.maven.plugins - maven-site-plugin - 3.2 - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.12.4 - - - org.apache.rat - apache-rat-plugin - 0.8 - - - org.codehaus.mojo - clirr-maven-plugin - 2.4 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.4 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - gnu - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - ${gpg.useagent} - - - - - sign - - - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/13/apache-13.pom.sha1 b/code/arachne/org/apache/apache/13/apache-13.pom.sha1 deleted file mode 100644 index e615620d7..000000000 --- a/code/arachne/org/apache/apache/13/apache-13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -15aff1faaec4963617f07dbe8e603f0adabc3a12 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/16/_remote.repositories b/code/arachne/org/apache/apache/16/_remote.repositories deleted file mode 100644 index 71ef19bbb..000000000 --- a/code/arachne/org/apache/apache/16/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:19 EDT 2024 -apache-16.pom>central= diff --git a/code/arachne/org/apache/apache/16/apache-16.pom b/code/arachne/org/apache/apache/16/apache-16.pom deleted file mode 100644 index 4f5dba50a..000000000 --- a/code/arachne/org/apache/apache/16/apache-16.pom +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 16 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - http://www.apache.org/ - - The Apache Software Foundation - http://www.apache.org/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - 2.2.1 - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-16 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-16 - http://svn.apache.org/viewvc/maven/pom/tags/apache-16 - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - UTF-8 - source-release - true - - - 1.4 - 1.4 - - - - - apache.snapshots - Apache Snapshot Repository - http://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - ${maven.compiler.source} - ${maven.compiler.target} - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.8 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.17 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.9 - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.3 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - false - deploy - -Papache-release ${arguments} - 10 - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.5 - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-scm-plugin - 1.9.2 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0-beta-2 - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - org.apache.maven - maven-archiver - 2.5 - - - org.codehaus.plexus - plexus-archiver - 2.4.4 - - - - - org.apache.maven.plugins - maven-source-plugin - 2.3 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.17 - - - org.apache.rat - apache-rat-plugin - 0.11 - - - org.codehaus.mojo - clirr-maven-plugin - 2.6.1 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.4 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - gnu - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - - sign - - - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.1 - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/16/apache-16.pom.sha1 b/code/arachne/org/apache/apache/16/apache-16.pom.sha1 deleted file mode 100644 index 9bfc9d183..000000000 --- a/code/arachne/org/apache/apache/16/apache-16.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8a90e31780e5cd0685ccaf25836c66e3b4e163b7 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/17/_remote.repositories b/code/arachne/org/apache/apache/17/_remote.repositories deleted file mode 100644 index c8f5e5bc6..000000000 --- a/code/arachne/org/apache/apache/17/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:56 EDT 2024 -apache-17.pom>central= diff --git a/code/arachne/org/apache/apache/17/apache-17.pom b/code/arachne/org/apache/apache/17/apache-17.pom deleted file mode 100644 index 23cc6f87e..000000000 --- a/code/arachne/org/apache/apache/17/apache-17.pom +++ /dev/null @@ -1,426 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 17 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - http://www.apache.org/ - - The Apache Software Foundation - http://www.apache.org/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - 3.0 - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-17 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-17 - http://svn.apache.org/viewvc/maven/pom/tags/apache-17 - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - UTF-8 - source-release - true - - 1.5 - 1.5 - - - - - apache.snapshots - Apache Snapshot Repository - http://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.2 - - - org.apache.maven.plugins - maven-dependency-plugin - 2.8 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.18.1 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.9 - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.4 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.8 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - false - deploy - -Papache-release ${arguments} - 10 - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.5 - - - org.apache.maven.plugins - maven-resources-plugin - 2.7 - - - org.apache.maven.plugins - maven-scm-plugin - 1.9.2 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.1 - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - org.apache.maven - maven-archiver - 2.5 - - - org.codehaus.plexus - plexus-archiver - 2.4.4 - - - org.apache.maven.doxia - doxia-core - 1.6 - - - xerces - xercesImpl - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.18.1 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.18.1 - - - org.apache.maven.plugins - maven-war-plugin - 2.5 - - - org.apache.rat - apache-rat-plugin - 0.11 - - - org.apache.maven.doxia - doxia-core - 1.2 - - - xerces - xercesImpl - - - - - - - org.codehaus.mojo - clirr-maven-plugin - 2.6.1 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.5 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - gnu - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - - sign - - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/17/apache-17.pom.sha1 b/code/arachne/org/apache/apache/17/apache-17.pom.sha1 deleted file mode 100644 index d51411d70..000000000 --- a/code/arachne/org/apache/apache/17/apache-17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c1685ef8de6047fdad5e5fce99a8ccd80fc8b659 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/18/_remote.repositories b/code/arachne/org/apache/apache/18/_remote.repositories deleted file mode 100644 index 589383d18..000000000 --- a/code/arachne/org/apache/apache/18/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:51 EDT 2024 -apache-18.pom>local-repo= diff --git a/code/arachne/org/apache/apache/18/apache-18.pom b/code/arachne/org/apache/apache/18/apache-18.pom deleted file mode 100644 index b92ce5d7c..000000000 --- a/code/arachne/org/apache/apache/18/apache-18.pom +++ /dev/null @@ -1,416 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 18 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - https://www.apache.org/ - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - 3.0 - - - - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-18 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-18 - https://svn.apache.org/viewvc/maven/pom/tags/apache-18 - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - https://www.apache.org/images/asf_logo_wide.gif - UTF-8 - UTF-8 - source-release - true - - 1.6 - 1.6 - 2.19.1 - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.6 - - - org.apache.maven.plugins - maven-clean-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.5.1 - - - org.apache.maven.plugins - maven-dependency-plugin - 2.10 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-docck-plugin - 1.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 2.0.0 - - - org.apache.maven.plugins - maven-jar-plugin - 3.0.0 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.3 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.4 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.9 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - false - deploy - -Papache-release ${arguments} - 10 - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.5 - - - org.apache.maven.plugins - maven-resources-plugin - 2.7 - - - org.apache.maven.plugins - maven-scm-plugin - 1.9.4 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.1 - - - org.apache.maven.plugins - maven-site-plugin - 3.5.1 - - - org.apache.maven.plugins - maven-source-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-war-plugin - 2.6 - - - org.apache.rat - apache-rat-plugin - 0.11 - - - - DEPENDENCIES - - - - - org.apache.maven.doxia - doxia-core - 1.2 - - - xerces - xercesImpl - - - - - - - org.codehaus.mojo - clirr-maven-plugin - 2.7 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - process-resource-bundles - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.6 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - gnu - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-release-artifacts - - sign - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/18/apache-18.pom.lastUpdated b/code/arachne/org/apache/apache/18/apache-18.pom.lastUpdated deleted file mode 100644 index 845115679..000000000 --- a/code/arachne/org/apache/apache/18/apache-18.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:51 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139891125 -http\://0.0.0.0/.error=Could not transfer artifact org.apache\:apache\:pom\:18 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139890868 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139890874 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139890947 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139891076 diff --git a/code/arachne/org/apache/apache/18/apache-18.pom.sha1 b/code/arachne/org/apache/apache/18/apache-18.pom.sha1 deleted file mode 100644 index 08bf64e6c..000000000 --- a/code/arachne/org/apache/apache/18/apache-18.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bd408bbea3840f2c7f914b29403e39a90f84fd5f \ No newline at end of file diff --git a/code/arachne/org/apache/apache/19/_remote.repositories b/code/arachne/org/apache/apache/19/_remote.repositories deleted file mode 100644 index d20f44ea0..000000000 --- a/code/arachne/org/apache/apache/19/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:21 EDT 2024 -apache-19.pom>central= diff --git a/code/arachne/org/apache/apache/19/apache-19.pom b/code/arachne/org/apache/apache/19/apache-19.pom deleted file mode 100644 index 4252fd977..000000000 --- a/code/arachne/org/apache/apache/19/apache-19.pom +++ /dev/null @@ -1,420 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 19 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - https://www.apache.org/ - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-19 - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - https://www.apache.org/images/asf_logo_wide.gif - UTF-8 - UTF-8 - source-release - true - - 1.6 - 1.6 - 2.20.1 - posix - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-clean-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 2.10 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-docck-plugin - 1.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - --digest-algo=SHA512 - - - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-jar-plugin - 3.0.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.5 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.9 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - false - deploy - -Papache-release ${arguments} - 10 - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.5 - - - org.apache.maven.plugins - maven-resources-plugin - 3.0.2 - - - org.apache.maven.plugins - maven-scm-plugin - 1.9.5 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.1 - - - org.apache.maven.plugins - maven-site-plugin - 3.7 - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-war-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-shade-plugin - 2.4.3 - - - org.apache.rat - apache-rat-plugin - 0.12 - - - org.codehaus.mojo - clirr-maven-plugin - 2.8 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - process-resource-bundles - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven-version - - enforce - - - - - 3.0 - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.6 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - posix - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-release-artifacts - - sign - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/19/apache-19.pom.sha1 b/code/arachne/org/apache/apache/19/apache-19.pom.sha1 deleted file mode 100644 index 34d835e80..000000000 --- a/code/arachne/org/apache/apache/19/apache-19.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -db8bb0231dcbda5011926dbaca1a7ce652fd5517 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/21/_remote.repositories b/code/arachne/org/apache/apache/21/_remote.repositories deleted file mode 100644 index a6f7dc3b6..000000000 --- a/code/arachne/org/apache/apache/21/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:56 EDT 2024 -apache-21.pom>ohdsi= diff --git a/code/arachne/org/apache/apache/21/apache-21.pom b/code/arachne/org/apache/apache/21/apache-21.pom deleted file mode 100644 index e45e5dfbf..000000000 --- a/code/arachne/org/apache/apache/21/apache-21.pom +++ /dev/null @@ -1,460 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 21 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - https://www.apache.org/ - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-21 - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - https://www.apache.org/images/asf_logo_wide.gif - UTF-8 - UTF-8 - source-release - true - - 1.7 - 1.7 - 2.22.0 - posix - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-clean-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.7.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-docck-plugin - 1.1 - - - org.apache.maven.plugins - maven-ear-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - --digest-algo=SHA512 - - - - - org.apache.maven.plugins - maven-help-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.0 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.5.2 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.0.0 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - false - deploy - -Papache-release ${arguments} - 10 - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.5 - - - org.apache.maven.plugins - maven-resources-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-scm-plugin - 1.9.5 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-site-plugin - 3.7.1 - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-war-plugin - 3.2.2 - - - org.apache.maven.plugins - maven-shade-plugin - 3.1.1 - - - org.apache.rat - apache-rat-plugin - 0.12 - - - org.codehaus.mojo - clirr-maven-plugin - 2.8 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - process-resource-bundles - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven-version - - enforce - - - - - 3.0.5 - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.6 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - posix - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-release-artifacts - - sign - - - - - - - net.nicoulaj.maven.plugins - checksum-maven-plugin - 1.7 - - - source-release-checksum - - files - - - - - - SHA-512 - - false - - - ${project.build.directory} - - ${project.artifactId}-${project.version}-source-release.zip - ${project.artifactId}-${project.version}-source-release.tar* - - - - false - - - - - - - - diff --git a/code/arachne/org/apache/apache/21/apache-21.pom.lastUpdated b/code/arachne/org/apache/apache/21/apache-21.pom.lastUpdated deleted file mode 100644 index c6616b803..000000000 --- a/code/arachne/org/apache/apache/21/apache-21.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:56 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.apache\:apache\:pom\:21 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139836308 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139836316 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139836572 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139836708 diff --git a/code/arachne/org/apache/apache/21/apache-21.pom.sha1 b/code/arachne/org/apache/apache/21/apache-21.pom.sha1 deleted file mode 100644 index 794c30119..000000000 --- a/code/arachne/org/apache/apache/21/apache-21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -649b700a1b2b4a1d87e7ae8e3f47bfe101b2a4a5 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/23/_remote.repositories b/code/arachne/org/apache/apache/23/_remote.repositories deleted file mode 100644 index 852e92f69..000000000 --- a/code/arachne/org/apache/apache/23/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:45 EDT 2024 -apache-23.pom>central= diff --git a/code/arachne/org/apache/apache/23/apache-23.pom b/code/arachne/org/apache/apache/23/apache-23.pom deleted file mode 100644 index 447a0f3e6..000000000 --- a/code/arachne/org/apache/apache/23/apache-23.pom +++ /dev/null @@ -1,492 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 23 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - https://www.apache.org/ - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-23 - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - https://www.apache.org/images/asf_logo_wide_2016.png - UTF-8 - UTF-8 - source-release - true - - 1.7 - 1.7 - 2.22.0 - posix - 2020-01-22T15:10:15Z - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-clean-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-docck-plugin - 1.1 - - - org.apache.maven.plugins - maven-ear-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - --digest-algo=SHA512 - - - - - org.apache.maven.plugins - maven-help-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.5.2 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.0.0 - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M1 - - false - deploy - -Papache-release ${arguments} - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.7.0 - - - org.apache.maven.plugins - maven-resources-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-scm-plugin - 1.9.5 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.0.0 - - - org.apache.maven.scm - maven-scm-api - 1.10.0 - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.10.0 - - - org.apache.maven.scm - maven-scm-provider-svn-commons - 1.10.0 - - - org.apache.maven.scm - maven-scm-provider-svnexe - 1.10.0 - - - - - org.apache.maven.plugins - maven-site-plugin - 3.7.1 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-war-plugin - 3.2.2 - - - org.apache.maven.plugins - maven-shade-plugin - 3.1.1 - - - org.apache.rat - apache-rat-plugin - 0.13 - - - org.codehaus.mojo - clirr-maven-plugin - 2.8 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - process-resource-bundles - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven-version - - enforce - - - - - 3.0.5 - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.6 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - posix - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-release-artifacts - - sign - - - - - - - net.nicoulaj.maven.plugins - checksum-maven-plugin - 1.7 - - - source-release-checksum - - files - - - - - - SHA-512 - - false - - - ${project.build.directory} - - ${project.artifactId}-${project.version}-source-release.zip - ${project.artifactId}-${project.version}-source-release.tar* - - - - false - - - - - - - - diff --git a/code/arachne/org/apache/apache/23/apache-23.pom.sha1 b/code/arachne/org/apache/apache/23/apache-23.pom.sha1 deleted file mode 100644 index abc64923b..000000000 --- a/code/arachne/org/apache/apache/23/apache-23.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0404949e96725e63a10a6d8f9d9b521948d170d5 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/24/_remote.repositories b/code/arachne/org/apache/apache/24/_remote.repositories deleted file mode 100644 index bbfa9697b..000000000 --- a/code/arachne/org/apache/apache/24/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:37 EDT 2024 -apache-24.pom>central= diff --git a/code/arachne/org/apache/apache/24/apache-24.pom b/code/arachne/org/apache/apache/24/apache-24.pom deleted file mode 100644 index dedd77f84..000000000 --- a/code/arachne/org/apache/apache/24/apache-24.pom +++ /dev/null @@ -1,519 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 24 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - https://www.apache.org/ - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-24 - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - https://www.apache.org/images/asf_logo_wide_2016.png - UTF-8 - UTF-8 - source-release - true - 3.1.1 - 1.8 - ${maven.compiler.target} - 1.7 - 2.22.2 - posix - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-clean-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.1.2 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-docck-plugin - 1.1 - - - org.apache.maven.plugins - maven-ear-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - --digest-algo=SHA512 - - - - - org.apache.maven.plugins - maven-help-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 3.2.2 - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.0 - - true - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.6.1 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.1.2 - - - org.eclipse.m2e:lifecycle-mapping - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M4 - - false - deploy - apache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.7.0 - - - org.apache.maven.plugins - maven-resources-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-scm-plugin - 1.11.2 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-site-plugin - 3.9.1 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-war-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-shade-plugin - 3.2.4 - - - org.apache.rat - apache-rat-plugin - 0.13 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - process-resource-bundles - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven-version - - enforce - - - - - ${minimalMavenBuildVersion} - - - - - - enforce-java-version - - enforce - - - - - ${minimalJavaBuildVersion} - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.6 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - posix - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - net.nicoulaj.maven.plugins - checksum-maven-plugin - 1.11 - - - source-release-checksum - - artifacts - - - post-integration-test - - - SHA-512 - - - source-release - true - false - - true - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-release-artifacts - - sign - - - - - - - - - - enforce-output-timestamp-property - - - ${basedir}/.maven-apache-parent.marker - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-output-timestamp-property - - enforce - - - - - project.build.outputTimestamp - The property "project.build.outputTimestamp" must be set on the reactor's root pom.xml to make the build reproducible. Further information at "https://maven.apache.org/guides/mini/guide-reproducible-builds.html". - - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/24/apache-24.pom.sha1 b/code/arachne/org/apache/apache/24/apache-24.pom.sha1 deleted file mode 100644 index 5c138b142..000000000 --- a/code/arachne/org/apache/apache/24/apache-24.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -976e85f5e412cf1a187de8e0c2548f8f46fed6a5 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/25/_remote.repositories b/code/arachne/org/apache/apache/25/_remote.repositories deleted file mode 100644 index f26fa3ae0..000000000 --- a/code/arachne/org/apache/apache/25/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:44 EDT 2024 -apache-25.pom>central= diff --git a/code/arachne/org/apache/apache/25/apache-25.pom b/code/arachne/org/apache/apache/25/apache-25.pom deleted file mode 100644 index 1a5e9502a..000000000 --- a/code/arachne/org/apache/apache/25/apache-25.pom +++ /dev/null @@ -1,536 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 25 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - https://www.apache.org/ - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-25 - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - https://www.apache.org/images/asf_logo_wide_2016.png - UTF-8 - UTF-8 - source-release - true - 3.1.1 - 1.8 - ${maven.compiler.target} - 1.7 - 2.22.2 - 3.6.4 - posix - 2022-02-17T22:08:13Z - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${maven.plugin.tools.version} - - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-clean-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-docck-plugin - 1.1 - - - org.apache.maven.plugins - maven-ear-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-failsafe-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - --digest-algo=SHA512 - - - - - org.apache.maven.plugins - maven-help-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 3.2.2 - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.2 - - true - - - - org.apache.maven.plugins - maven-plugin-plugin - ${maven.plugin.tools.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.1.2 - - - org.eclipse.m2e:lifecycle-mapping - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M5 - - false - deploy - apache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.7.0 - - - org.apache.maven.plugins - maven-resources-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-scm-plugin - 1.12.2 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-site-plugin - 3.11.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-war-plugin - 3.3.2 - - - org.apache.maven.plugins - maven-shade-plugin - 3.2.4 - - - org.apache.rat - apache-rat-plugin - 0.13 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - process-resource-bundles - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven-version - - enforce - - - - - ${minimalMavenBuildVersion} - - - - - - enforce-java-version - - enforce - - - - - ${minimalJavaBuildVersion} - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.6 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - posix - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - net.nicoulaj.maven.plugins - checksum-maven-plugin - 1.11 - - - source-release-checksum - - artifacts - - - post-integration-test - - - SHA-512 - - - source-release - true - false - - true - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-release-artifacts - - sign - - - - - - - - - - only-eclipse - - - m2e.version - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - [0,1.8.0) - - process - - - - - - - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/25/apache-25.pom.sha1 b/code/arachne/org/apache/apache/25/apache-25.pom.sha1 deleted file mode 100644 index 0c6d9ead6..000000000 --- a/code/arachne/org/apache/apache/25/apache-25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c2202b94ed7980d47f78ab7850ee981fd69ba7e2 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/27/_remote.repositories b/code/arachne/org/apache/apache/27/_remote.repositories deleted file mode 100644 index bb3f507c3..000000000 --- a/code/arachne/org/apache/apache/27/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:12 EDT 2024 -apache-27.pom>central= diff --git a/code/arachne/org/apache/apache/27/apache-27.pom b/code/arachne/org/apache/apache/27/apache-27.pom deleted file mode 100644 index 5b957b3ae..000000000 --- a/code/arachne/org/apache/apache/27/apache-27.pom +++ /dev/null @@ -1,531 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 27 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - https://www.apache.org/ - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-27 - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - https://www.apache.org/images/asf_logo_wide_2016.png - UTF-8 - UTF-8 - source-release - true - 3.2.5 - 1.8 - ${maven.compiler.target} - 1.7 - 2.22.2 - 3.6.4 - posix - 2022-07-10T09:19:36Z - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${maven.plugin.tools.version} - - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.4.1 - - - org.apache.maven.plugins - maven-clean-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-ear-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-failsafe-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - --digest-algo=SHA512 - - - - - org.apache.maven.plugins - maven-help-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.0 - - true - - - - org.apache.maven.plugins - maven-plugin-plugin - ${maven.plugin.tools.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.3.0 - - - org.eclipse.m2e:lifecycle-mapping - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M6 - - false - deploy - apache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.7.0 - - - org.apache.maven.plugins - maven-resources-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-scm-plugin - 1.13.0 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-site-plugin - 3.12.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-war-plugin - 3.3.2 - - - org.apache.maven.plugins - maven-shade-plugin - 3.3.0 - - - org.apache.rat - apache-rat-plugin - 0.14 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - process-resource-bundles - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven-version - - enforce - - - - - ${minimalMavenBuildVersion} - - - - - - enforce-java-version - - enforce - - - - - ${minimalJavaBuildVersion} - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.6 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - posix - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - net.nicoulaj.maven.plugins - checksum-maven-plugin - 1.11 - - - source-release-checksum - - artifacts - - - post-integration-test - - - SHA-512 - - - source-release - true - false - - true - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-release-artifacts - - sign - - - - - - - - - - only-eclipse - - - m2e.version - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - [0,1.8.0) - - process - - - - - - - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/27/apache-27.pom.sha1 b/code/arachne/org/apache/apache/27/apache-27.pom.sha1 deleted file mode 100644 index 4dff381aa..000000000 --- a/code/arachne/org/apache/apache/27/apache-27.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ea179482b464bfc8cac939c6d6e632b6a8e3316b \ No newline at end of file diff --git a/code/arachne/org/apache/apache/29/_remote.repositories b/code/arachne/org/apache/apache/29/_remote.repositories deleted file mode 100644 index 9d231b7c6..000000000 --- a/code/arachne/org/apache/apache/29/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:45 EDT 2024 -apache-29.pom>central= diff --git a/code/arachne/org/apache/apache/29/apache-29.pom b/code/arachne/org/apache/apache/29/apache-29.pom deleted file mode 100644 index ae136be31..000000000 --- a/code/arachne/org/apache/apache/29/apache-29.pom +++ /dev/null @@ -1,538 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 29 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - https://www.apache.org/ - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-29 - - - - - apache.releases.https - ${distMgmtReleasesName} - ${distMgmtReleasesUrl} - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - https://www.apache.org/images/asf_logo_wide_2016.png - UTF-8 - UTF-8 - source-release - true - 3.2.5 - 1.8 - ${maven.compiler.target} - 1.7 - 2.22.2 - 3.7.0 - posix - 2022-12-11T19:18:10Z - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${maven.plugin.tools.version} - - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.4.2 - - - org.apache.maven.plugins - maven-clean-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-ear-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-failsafe-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - --digest-algo=SHA512 - - - - - org.apache.maven.plugins - maven-help-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-install-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-invoker-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.1 - - true - - - - org.apache.maven.plugins - maven-plugin-plugin - ${maven.plugin.tools.version} - - - org.apache.maven.plugins - maven-plugin-report-plugin - ${maven.plugin.tools.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.4.1 - - - org.eclipse.m2e:lifecycle-mapping - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M7 - - false - deploy - apache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.7.0 - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-scm-plugin - 1.13.0 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${surefire.version} - - - org.apache.maven.plugins - maven-war-plugin - 3.3.2 - - - org.apache.maven.plugins - maven-shade-plugin - 3.4.1 - - - org.apache.rat - apache-rat-plugin - 0.15 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - process-resource-bundles - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven-version - - enforce - - - - - ${minimalMavenBuildVersion} - - - - - - enforce-java-version - - enforce - - - - - ${minimalJavaBuildVersion} - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.6 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - ${assembly.tarLongFileMode} - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - net.nicoulaj.maven.plugins - checksum-maven-plugin - 1.11 - - - source-release-checksum - - artifacts - - - post-integration-test - - - SHA-512 - - - source-release - true - false - - true - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-release-artifacts - - sign - - - - - - - - - - only-eclipse - - - m2e.version - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - [0,1.8.0) - - process - - - - - - - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/29/apache-29.pom.sha1 b/code/arachne/org/apache/apache/29/apache-29.pom.sha1 deleted file mode 100644 index f733d3edc..000000000 --- a/code/arachne/org/apache/apache/29/apache-29.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -57991491045c9a37a3113f24bf29a41a4ceb1459 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/30/_remote.repositories b/code/arachne/org/apache/apache/30/_remote.repositories deleted file mode 100644 index 78d2f8415..000000000 --- a/code/arachne/org/apache/apache/30/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:33 EDT 2024 -apache-30.pom>ohdsi= diff --git a/code/arachne/org/apache/apache/30/apache-30.pom b/code/arachne/org/apache/apache/30/apache-30.pom deleted file mode 100644 index c57fb205d..000000000 --- a/code/arachne/org/apache/apache/30/apache-30.pom +++ /dev/null @@ -1,561 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 30 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - https://www.apache.org/ - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-30 - - - - - apache.releases.https - ${distMgmtReleasesName} - ${distMgmtReleasesUrl} - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - https://www.apache.org/images/asf_logo_wide_2016.png - UTF-8 - UTF-8 - source-release - true - 3.2.5 - 1.8 - ${maven.compiler.target} - 1.7 - 3.1.2 - 3.9.0 - posix - - 1.11.2 - 2023-06-11T16:41:23Z - - 0.15 - 1.5 - 1.11 - 3.1.0 - 3.6.0 - 3.2.0 - 3.11.0 - 3.6.0 - 3.1.1 - 3.3.0 - 3.3.0 - 3.1.0 - 3.4.0 - 3.1.1 - 3.5.1 - 3.3.0 - 3.5.0 - ${maven.plugin.tools.version} - 3.4.5 - 3.0.1 - 3.1.0 - 3.3.1 - 2.0.1 - 3.2.1 - 3.4.1 - 3.12.1 - 3.3.0 - ${surefire.version} - 3.3.2 - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${version.maven-plugin-tools} - - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${version.maven-antrun-plugin} - - - org.apache.maven.plugins - maven-assembly-plugin - ${version.maven-assembly-plugin} - - - org.apache.maven.plugins - maven-clean-plugin - ${version.maven-clean-plugin} - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.maven-compiler-plugin} - - - org.apache.maven.plugins - maven-dependency-plugin - ${version.maven-dependency-plugin} - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.maven-deploy-plugin} - - - org.apache.maven.plugins - maven-ear-plugin - ${version.maven-ear-plugin} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.maven-enforcer-plugin} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${version.maven-surefire} - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.maven-gpg-plugin} - - - --digest-algo=SHA512 - - - - - org.apache.maven.plugins - maven-help-plugin - ${version.maven-help-plugin} - - - org.apache.maven.plugins - maven-install-plugin - ${version.maven-install-plugin} - - - org.apache.maven.plugins - maven-invoker-plugin - ${version.maven-invoker-plugin} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.maven-jar-plugin} - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.maven-javadoc-plugin} - - true - - - - org.apache.maven.plugins - maven-plugin-plugin - ${version.maven-plugin-tools} - - - org.apache.maven.plugins - maven-plugin-report-plugin - ${version.maven-plugin-tools} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${version.maven-project-info-reports-plugin} - - - org.eclipse.m2e:lifecycle-mapping - - - - - - org.apache.maven.plugins - maven-release-plugin - ${version.maven-release-plugin} - - false - deploy - apache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - ${version.maven-remote-resources-plugin} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.maven-resources-plugin} - - - org.apache.maven.plugins - maven-scm-plugin - ${version.maven-scm-plugin} - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${version.maven-scm-publish-plugin} - - - org.apache.maven.plugins - maven-site-plugin - ${version.maven-site-plugin} - - - org.apache.maven.plugins - maven-source-plugin - ${version.maven-source-plugin} - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.maven-surefire} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.maven-surefire} - - - org.apache.maven.plugins - maven-war-plugin - ${version.maven-war-plugin} - - - org.apache.maven.plugins - maven-shade-plugin - ${version.maven-shade-plugin} - - - org.apache.rat - apache-rat-plugin - ${version.apache-rat-plugin} - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - process-resource-bundles - - process - - - - org.apache.apache.resources:apache-jar-resource-bundle:${version.apache-resource-bundles} - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven-version - - enforce - - - - - ${minimalMavenBuildVersion} - - - - - - enforce-java-version - - enforce - - - - - ${minimalJavaBuildVersion} - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - ${version.apache-resource-bundles} - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - ${assembly.tarLongFileMode} - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - net.nicoulaj.maven.plugins - checksum-maven-plugin - ${version.checksum-maven-plugin} - - - source-release-checksum - - artifacts - - - post-integration-test - - - SHA-512 - - - source-release - true - false - - true - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-release-artifacts - - sign - - - - - - - - - - only-eclipse - - - m2e.version - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - [0,) - - process - - - - - - - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/30/apache-30.pom.lastUpdated b/code/arachne/org/apache/apache/30/apache-30.pom.lastUpdated deleted file mode 100644 index 5816e3a24..000000000 --- a/code/arachne/org/apache/apache/30/apache-30.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:33 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.apache\:apache\:pom\:30 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139813145 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139813237 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139813368 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139813505 diff --git a/code/arachne/org/apache/apache/30/apache-30.pom.sha1 b/code/arachne/org/apache/apache/30/apache-30.pom.sha1 deleted file mode 100644 index a285e1d61..000000000 --- a/code/arachne/org/apache/apache/30/apache-30.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8ec9c23c01b89c7c704fea3fc4822c4de4c02430 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/31/_remote.repositories b/code/arachne/org/apache/apache/31/_remote.repositories deleted file mode 100644 index 90c269eb1..000000000 --- a/code/arachne/org/apache/apache/31/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:50 EDT 2024 -apache-31.pom>central= diff --git a/code/arachne/org/apache/apache/31/apache-31.pom b/code/arachne/org/apache/apache/31/apache-31.pom deleted file mode 100644 index 8e9c6dfc6..000000000 --- a/code/arachne/org/apache/apache/31/apache-31.pom +++ /dev/null @@ -1,567 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 31 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - https://www.apache.org/ - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-31 - - - - - apache.releases.https - ${distMgmtReleasesName} - ${distMgmtReleasesUrl} - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - https://www.apache.org/images/asf_logo_wide_2016.png - UTF-8 - UTF-8 - source-release - true - 3.6.3 - 1.8 - ${maven.compiler.target} - 1.7 - 3.2.2 - 3.10.2 - posix - - 1.11.2 - 2023-11-08T22:14:21Z - - 0.15 - 1.5 - 1.11 - 3.1.0 - 3.6.0 - 3.3.2 - 3.3.1 - 3.11.0 - 3.6.1 - 3.1.1 - 3.3.0 - 3.4.1 - 3.1.0 - 3.4.0 - 3.1.1 - 3.6.0 - 3.3.0 - 3.6.2 - ${maven.plugin.tools.version} - 3.4.5 - 3.0.1 - 3.1.0 - 3.3.1 - 2.0.1 - 3.2.1 - 3.5.1 - 3.12.1 - 3.3.0 - ${surefire.version} - 3.4.0 - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${version.maven-plugin-tools} - - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${version.maven-antrun-plugin} - - - org.apache.maven.plugins - maven-assembly-plugin - ${version.maven-assembly-plugin} - - - org.apache.maven.plugins - maven-clean-plugin - ${version.maven-clean-plugin} - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${version.maven-checkstyle-plugin} - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.maven-compiler-plugin} - - - org.apache.maven.plugins - maven-dependency-plugin - ${version.maven-dependency-plugin} - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.maven-deploy-plugin} - - - org.apache.maven.plugins - maven-ear-plugin - ${version.maven-ear-plugin} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.maven-enforcer-plugin} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${version.maven-surefire} - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.maven-gpg-plugin} - - - --digest-algo=SHA512 - - - - - org.apache.maven.plugins - maven-help-plugin - ${version.maven-help-plugin} - - - org.apache.maven.plugins - maven-install-plugin - ${version.maven-install-plugin} - - - org.apache.maven.plugins - maven-invoker-plugin - ${version.maven-invoker-plugin} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.maven-jar-plugin} - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.maven-javadoc-plugin} - - true - - - - org.apache.maven.plugins - maven-plugin-plugin - ${version.maven-plugin-tools} - - - org.apache.maven.plugins - maven-plugin-report-plugin - ${version.maven-plugin-tools} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${version.maven-project-info-reports-plugin} - - - org.eclipse.m2e:lifecycle-mapping - - - - - - org.apache.maven.plugins - maven-release-plugin - ${version.maven-release-plugin} - - false - deploy - apache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - ${version.maven-remote-resources-plugin} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.maven-resources-plugin} - - - org.apache.maven.plugins - maven-scm-plugin - ${version.maven-scm-plugin} - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${version.maven-scm-publish-plugin} - - - org.apache.maven.plugins - maven-site-plugin - ${version.maven-site-plugin} - - - org.apache.maven.plugins - maven-source-plugin - ${version.maven-source-plugin} - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.maven-surefire} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.maven-surefire} - - - org.apache.maven.plugins - maven-war-plugin - ${version.maven-war-plugin} - - - org.apache.maven.plugins - maven-shade-plugin - ${version.maven-shade-plugin} - - - org.apache.rat - apache-rat-plugin - ${version.apache-rat-plugin} - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - process-resource-bundles - - process - - - - org.apache.apache.resources:apache-jar-resource-bundle:${version.apache-resource-bundles} - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven-version - - enforce - - - - - ${minimalMavenBuildVersion} - - - - - - enforce-java-version - - enforce - - - - - ${minimalJavaBuildVersion} - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - ${version.apache-resource-bundles} - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - ${assembly.tarLongFileMode} - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - net.nicoulaj.maven.plugins - checksum-maven-plugin - ${version.checksum-maven-plugin} - - - source-release-checksum - - artifacts - - - post-integration-test - - - SHA-512 - - - source-release - true - false - - true - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-release-artifacts - - sign - - - - - - - - - - only-eclipse - - - m2e.version - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - [0,) - - process - - - - - - - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/31/apache-31.pom.sha1 b/code/arachne/org/apache/apache/31/apache-31.pom.sha1 deleted file mode 100644 index 741d09f85..000000000 --- a/code/arachne/org/apache/apache/31/apache-31.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9009cbdad2b69835f2df9265794c8ab50cf4dce1 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/32/_remote.repositories b/code/arachne/org/apache/apache/32/_remote.repositories deleted file mode 100644 index 49495c081..000000000 --- a/code/arachne/org/apache/apache/32/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:19 EDT 2024 -apache-32.pom>central= diff --git a/code/arachne/org/apache/apache/32/apache-32.pom b/code/arachne/org/apache/apache/32/apache-32.pom deleted file mode 100644 index 3c20e1541..000000000 --- a/code/arachne/org/apache/apache/32/apache-32.pom +++ /dev/null @@ -1,582 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 32 - pom - - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - https://www.apache.org/ - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - docs - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-32 - - - - - ${distMgmtReleasesId} - ${distMgmtReleasesName} - ${distMgmtReleasesUrl} - - - ${distMgmtSnapshotsId} - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - apache.snapshots.https - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - https://www.apache.org/images/asf_logo_wide_2016.png - UTF-8 - UTF-8 - source-release - true - 3.6.3 - 1.8 - ${maven.compiler.target} - 7 - 3.2.5 - posix - - 1.11.2 - 2024-04-13T16:31:25Z - - 0.16.1 - 1.5 - 1.11 - 3.1.0 - 3.7.1 - 3.3.2 - 3.3.1 - 3.13.0 - 3.6.1 - 3.1.1 - 3.3.0 - 3.4.1 - 3.2.3 - 3.4.0 - 3.1.1 - 3.6.1 - 3.4.0 - 3.6.3 - 3.12.0 - 3.5.0 - 3.0.1 - 3.2.0 - 3.3.1 - 2.0.1 - 3.2.1 - 3.5.2 - 3.12.1 - 3.3.1 - ${surefire.version} - 3.4.0 - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${version.maven-plugin-tools} - - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${version.maven-antrun-plugin} - - - org.apache.maven.plugins - maven-assembly-plugin - ${version.maven-assembly-plugin} - - - org.apache.maven.plugins - maven-clean-plugin - ${version.maven-clean-plugin} - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${version.maven-checkstyle-plugin} - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.maven-compiler-plugin} - - - org.apache.maven.plugins - maven-dependency-plugin - ${version.maven-dependency-plugin} - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.maven-deploy-plugin} - - - org.apache.maven.plugins - maven-ear-plugin - ${version.maven-ear-plugin} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.maven-enforcer-plugin} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${version.maven-surefire} - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.maven-gpg-plugin} - - - --digest-algo=SHA512 - - - - - org.apache.maven.plugins - maven-help-plugin - ${version.maven-help-plugin} - - - org.apache.maven.plugins - maven-install-plugin - ${version.maven-install-plugin} - - - org.apache.maven.plugins - maven-invoker-plugin - ${version.maven-invoker-plugin} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.maven-jar-plugin} - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.maven-javadoc-plugin} - - true - - - - org.apache.maven.plugins - maven-plugin-plugin - ${version.maven-plugin-tools} - - - org.apache.maven.plugins - maven-plugin-report-plugin - ${version.maven-plugin-tools} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${version.maven-project-info-reports-plugin} - - - org.eclipse.m2e:lifecycle-mapping - - - - - - org.apache.maven.plugins - maven-release-plugin - ${version.maven-release-plugin} - - true - false - deploy - apache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - ${version.maven-remote-resources-plugin} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.maven-resources-plugin} - - - org.apache.maven.plugins - maven-scm-plugin - ${version.maven-scm-plugin} - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${version.maven-scm-publish-plugin} - - - org.apache.maven.plugins - maven-site-plugin - ${version.maven-site-plugin} - - - org.apache.maven.plugins - maven-source-plugin - ${version.maven-source-plugin} - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.maven-surefire} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${version.maven-surefire} - - - org.apache.maven.plugins - maven-war-plugin - ${version.maven-war-plugin} - - - org.apache.maven.plugins - maven-shade-plugin - ${version.maven-shade-plugin} - - - org.apache.rat - apache-rat-plugin - ${version.apache-rat-plugin} - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - process-resource-bundles - - process - - - - org.apache.apache.resources:apache-jar-resource-bundle:${version.apache-resource-bundles} - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven-version - - enforce - - - - - ${minimalMavenBuildVersion} - - - - - - enforce-java-version - - enforce - - - - - ${minimalJavaBuildVersion} - - - - - - - - - - org.apache.maven.plugins - maven-site-plugin - false - - true - - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - ${version.apache-resource-bundles} - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - ${assembly.tarLongFileMode} - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - net.nicoulaj.maven.plugins - checksum-maven-plugin - ${version.checksum-maven-plugin} - - - source-release-checksum - - artifacts - - - post-integration-test - - - SHA-512 - - - source-release - true - false - - true - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-release-artifacts - - sign - - - - - - - - - - jdk9+ - - - [9,) - - - - ${maven.compiler.target} - - - - only-eclipse - - - m2e.version - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - [0,) - - process - - - - - - - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/32/apache-32.pom.sha1 b/code/arachne/org/apache/apache/32/apache-32.pom.sha1 deleted file mode 100644 index d444cb05d..000000000 --- a/code/arachne/org/apache/apache/32/apache-32.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2e08f841a6fbc946452701faaf5e39a17ac97ef3 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/4/_remote.repositories b/code/arachne/org/apache/apache/4/_remote.repositories deleted file mode 100644 index ca01c15b0..000000000 --- a/code/arachne/org/apache/apache/4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -apache-4.pom>central= diff --git a/code/arachne/org/apache/apache/4/apache-4.pom b/code/arachne/org/apache/apache/4/apache-4.pom deleted file mode 100644 index 8d202b8b1..000000000 --- a/code/arachne/org/apache/apache/4/apache-4.pom +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 4 - pom - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - The Apache Software Foundation - http://www.apache.org/ - - http://www.apache.org/ - - - apache.snapshots - Apache Snapshot Repository - http://people.apache.org/repo/m2-snapshot-repository - - false - - - - - - - apache.releases - Apache Release Distribution Repository - scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - apache.snapshots - Apache Development Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - http://www.apache.org/images/asf_logo_wide.gif - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-4 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-4 - http://svn.apache.org/viewvc/maven/pom/tags/apache-4 - - - diff --git a/code/arachne/org/apache/apache/4/apache-4.pom.sha1 b/code/arachne/org/apache/apache/4/apache-4.pom.sha1 deleted file mode 100644 index e2fe94295..000000000 --- a/code/arachne/org/apache/apache/4/apache-4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -602b647986c1d24301bc3d70e5923696bc7f1401 \ No newline at end of file diff --git a/code/arachne/org/apache/apache/7/_remote.repositories b/code/arachne/org/apache/apache/7/_remote.repositories deleted file mode 100644 index 979c13ced..000000000 --- a/code/arachne/org/apache/apache/7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:15 EDT 2024 -apache-7.pom>central= diff --git a/code/arachne/org/apache/apache/7/apache-7.pom b/code/arachne/org/apache/apache/7/apache-7.pom deleted file mode 100644 index 6f992bd75..000000000 --- a/code/arachne/org/apache/apache/7/apache-7.pom +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 7 - pom - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - The Apache Software Foundation - http://www.apache.org/ - - http://www.apache.org/ - - - apache.snapshots - Apache Snapshot Repository - http://repository.apache.org/snapshots - - false - - - - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - source-release - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-7 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-7 - http://svn.apache.org/viewvc/maven/pom/tags/apache-7 - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.3 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-5 - - - org.apache.maven.plugins - maven-clean-plugin - 2.3 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-beta-1 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-install-plugin - 2.3 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.5 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.5.1 - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-9 - - false - deploy - -Papache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.1 - - - org.apache.maven.plugins - maven-resources-plugin - 2.4 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-scm-plugin - 1.2 - - - org.apache.maven.plugins - maven-site-plugin - 2.0.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.modello - modello-maven-plugin - 1.1 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - maven-project-info-reports-plugin - 2.1.2 - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.2 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - gnu - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - - diff --git a/code/arachne/org/apache/apache/7/apache-7.pom.sha1 b/code/arachne/org/apache/apache/7/apache-7.pom.sha1 deleted file mode 100644 index f1eb4c676..000000000 --- a/code/arachne/org/apache/apache/7/apache-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a5f679b14bb06a3cb3769eb04e228c8b9e12908f \ No newline at end of file diff --git a/code/arachne/org/apache/apache/9/_remote.repositories b/code/arachne/org/apache/apache/9/_remote.repositories deleted file mode 100644 index ce719eb9f..000000000 --- a/code/arachne/org/apache/apache/9/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:14 EDT 2024 -apache-9.pom>central= diff --git a/code/arachne/org/apache/apache/9/apache-9.pom b/code/arachne/org/apache/apache/9/apache-9.pom deleted file mode 100644 index e36c2ec82..000000000 --- a/code/arachne/org/apache/apache/9/apache-9.pom +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 9 - pom - The Apache Software Foundation - - The Apache Software Foundation provides support for the Apache community of open-source software projects. - The Apache projects are characterized by a collaborative, consensus based development process, an open and - pragmatic software license, and a desire to create high quality software that leads the way in its field. - We consider ourselves not simply a group of projects sharing a server, but rather a community of developers - and users. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - The Apache Software Foundation - http://www.apache.org/ - - http://www.apache.org/ - - - apache.snapshots - Apache Snapshot Repository - http://repository.apache.org/snapshots - - false - - - - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - source-release - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-9 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-9 - http://svn.apache.org/viewvc/maven/pom/tags/apache-9 - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.6 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.5 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3.1 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.7 - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - false - deploy - -Papache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.1 - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.3 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-scm-plugin - 1.4 - - - org.apache.maven.plugins - maven-site-plugin - 2.2 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.7.2 - - - org.apache.rat - apache-rat-plugin - 0.7 - - - org.codehaus.mojo - clirr-maven-plugin - 2.3 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.modello - modello-maven-plugin - 1.4.1 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.3.1 - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.3 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - gnu - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - true - - - - - sign - - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.0-beta-3 - - - - - - - - diff --git a/code/arachne/org/apache/apache/9/apache-9.pom.sha1 b/code/arachne/org/apache/apache/9/apache-9.pom.sha1 deleted file mode 100644 index 8f3f7a06d..000000000 --- a/code/arachne/org/apache/apache/9/apache-9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -de55d73a30c7521f3d55e8141d360ffbdfd88caa \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-collections4/4.1/_remote.repositories b/code/arachne/org/apache/commons/commons-collections4/4.1/_remote.repositories deleted file mode 100644 index bebd84cbd..000000000 --- a/code/arachne/org/apache/commons/commons-collections4/4.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:18 EDT 2024 -commons-collections4-4.1.pom>central= diff --git a/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom b/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom deleted file mode 100644 index 5ae7f5265..000000000 --- a/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom +++ /dev/null @@ -1,731 +0,0 @@ - - - - - org.apache.commons - commons-parent - 38 - - 4.0.0 - org.apache.commons - commons-collections4 - 4.1 - Apache Commons Collections - - 2001 - The Apache Commons Collections package contains types that extend and augment the Java Collections Framework. - - http://commons.apache.org/proper/commons-collections/ - - - jira - http://issues.apache.org/jira/browse/COLLECTIONS - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/collections/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/collections/trunk - http://svn.apache.org/viewvc/commons/proper/collections/trunk - - - - - Matt Benson - mbenson - - - James Carman - jcarman - - - Stephen Colebourne - scolebourne - - - Robert Burrell Donkin - rdonkin - - - Morgan Delagrange - morgand - - - Gary D. Gregory - ggregory - - - Matthew Hawthorne - matth - - - Dipanjan Laha - dlaha - - - Geir Magnusson - geirm - - - Luc Maisonobe - luc - - - Craig McClanahan - craigmcc - - - Thomas Neidhart - tn - - - Adrian Nistor - adriannistor - - - Phil Steitz - psteitz - - - Arun M. Thomas - amamment - - - Rodney Waldhoff - rwaldhoff - - - Henri Yandell - bayard - - - - - - Rafael U. C. Afonso - - - Max Rydahl Andersen - - - Avalon - - - Federico Barbieri - - - Jeffrey Barnes - - - Nicola Ken Barozzi - - - Arron Bates - - - Sebastian Bazley - - - Benjamin Bentmann - - - Ola Berg - - - Sam Berlin - - - Christopher Berry - - - Nathan Beyer - - - Rune Peter Bjørnstad - - - Janek Bogucki - - - Maarten Brak - - - Dave Bryson - - - Chuck Burdick - - - Julien Buret - - - Josh Cain - - - Jonathan Carlson - - - Ram Chidambaram - - - Steve Clark - - - Benoit Corne - - - Eric Crampton - - - Dimiter Dimitrov - - - Peter Donald - - - Steve Downey - - - Rich Dougherty - - - Tom Dunham - - - Stefano Fornari - - - Andrew Freeman - - - Gerhard Froehlich - - - Goran Hacek - - - David Hay - - - Mario Ivankovits - - - Paul Jack - - - Eric Johnson - - - Kent Johnson - - - Marc Johnson - - - Roger Kapsi - - - Nissim Karpenstein - - - Shinobu Kawai - - - Stephen Kestle - - - Mohan Kishore - - - Simon Kitching - - - Thomas Knych - - - Serge Knystautas - - - Peter KoBek - - - Jordan Krey - - - Olaf Krische - - - Guilhem Lavaux - - - Paul Legato - - - David Leppik - - - Berin Loritsch - - - Hendrik Maryns - - - Stefano Mazzocchi - - - Brian McCallister - - - David Meikle - - - Steven Melzer - - - Leon Messerschmidt - - - Mauricio S. Moura - - - Kasper Nielsen - - - Stanislaw Osinski - - - Alban Peignier - - - Mike Pettypiece - - - Steve Phelps - - - Ilkka Priha - - - Jonas Van Poucke - - - Will Pugh - - - Herve Quiroz - - - Daniel Rall - - - Robert Ribnitz - - - Huw Roberts - - - Henning P. Schmiedehausen - - - Joerg Schmuecker - - - Howard Lewis Ship - - - Joe Raysa - - - Jeff Rodriguez - - - Ashwin S - - - Jordane Sarda - - - Thomas Schapitz - - - Jon Schewe - - - Andreas Schlosser - - - Christian Siefkes - - - Michael Smith - - - Stephen Smith - - - Jan Sorensen - - - Jon S. Stevens - - - James Strachan - - - Leo Sutic - - - Radford Tam - - - Chris Tilden - - - Neil O'Toole - - - Jeff Turner - - - Kazuya Ujihara - - - Thomas Vahrst - - - Jeff Varszegi - - - Ralph Wagner - - - Hollis Waite - - - David Weinrich - - - Dieter Wimberger - - - Serhiy Yevtushenko - - - Sai Zhang - - - Jason van Zyl - - - Geoff Schoeman - - - Goncalo Marques - - - - - - junit - junit - 4.11 - test - - - org.easymock - easymock - 3.2 - test - - - - - - apache.website - Apache Commons Site - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid} - - - - - UTF-8 - UTF-8 - 1.6 - 1.6 - - - collections4 - - - 4.1 - (Java 6.0+) - - - 3.2.2 - (Requires Java 1.3 or later) - - commons-collections-${commons.release.2.version} - - COLLECTIONS - 12310465 - - RC2 - 2.9.1 - - collections - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-collections - site-content - - - 2.9.1 - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Test.java - - - **/*$* - **/TestUtils.java - **/Abstract*.java - **/BulkTest.java - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - maven-checkstyle-plugin - ${checkstyle.version} - - ${basedir}/src/conf/checkstyle.xml - false - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - %URL%/%ISSUE% - - - false - Fix Version,Key,Summary,Type,Resolution,Status - - Key DESC,Type,Fix Version DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - ${commons.release.version} - 500 - - - - - changes-report - jira-report - - - - - - maven-checkstyle-plugin - ${checkstyle.version} - - ${basedir}/src/conf/checkstyle.xml - false - ${basedir}/src/conf/checkstyle-suppressions.xml - - - - - checkstyle - - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.5 - - Normal - Default - ${basedir}/src/conf/findbugs-exclude-filter.xml - - - - maven-pmd-plugin - 2.7.1 - - ${maven.compiler.target} - - - - - pmd - cpd - - - - - - org.apache.rat - apache-rat-plugin - - - site-content/**/* - src/test/resources/data/test/* - maven-eclipse.xml - .travis.yml - - - - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - prepare-checkout - pre-site - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - - travis - - - env.TRAVIS - true - - - - true - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - prepare-agent - - prepare-agent - - - - - - org.eluder.coveralls - coveralls-maven-plugin - 3.1.0 - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom.sha1 b/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom.sha1 deleted file mode 100644 index 56f24f4f1..000000000 --- a/code/arachne/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -56c31f5fa1096fa1b33bf2813f2913412c47db2c \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-compress/1.24.0/_remote.repositories b/code/arachne/org/apache/commons/commons-compress/1.24.0/_remote.repositories deleted file mode 100644 index 627f29cf4..000000000 --- a/code/arachne/org/apache/commons/commons-compress/1.24.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:12 EDT 2024 -commons-compress-1.24.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom b/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom deleted file mode 100644 index 376535aeb..000000000 --- a/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom +++ /dev/null @@ -1,637 +0,0 @@ - - - - 4.0.0 - - org.apache.commons - commons-parent - 61 - - - commons-compress - 1.24.0 - Apache Commons Compress - https://commons.apache.org/proper/commons-compress/ - 2002 - - -Apache Commons Compress defines an API for working with -compression and archive formats. These include: bzip2, gzip, pack200, -lzma, xz, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, -Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj. - - - - 1.8 - 1.8 - - compress - org.apache.commons.compress - COMPRESS - 12310904 - - 1.24.0 - 1.23.0 - RC1 - 4.11.0 - - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - Gary Gregory - 86fdc7e2a11262cb - - ${project.build.outputDirectory}/META-INF - ${commons.manifestlocation}/MANIFEST.MF - - org.tukaani.xz;resolution:=optional, - org.brotli.dec;resolution:=optional, - com.github.luben.zstd;resolution:=optional, - org.objectweb.asm;resolution:=optional, - javax.crypto.*;resolution:=optional, - * - - - - true - - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} - false - - 4.13.5 - 2.0.8 - 9.5 - - - - jira - https://issues.apache.org/jira/browse/COMPRESS - - - - - org.junit.jupiter - junit-jupiter-params - test - - - org.junit.vintage - junit-vintage-engine - test - - - org.hamcrest - hamcrest - 2.2 - test - - - com.github.luben - zstd-jni - 1.5.5-5 - true - - - org.brotli - dec - 0.1.2 - true - - - org.tukaani - xz - 1.9 - true - - - - - org.ow2.asm - asm - ${asm.version} - true - - - - - org.mockito - mockito-core - ${mockito.version} - test - - - org.mockito - mockito-junit-jupiter - ${mockito.version} - test - - - com.github.marschall - memoryfilesystem - 2.6.1 - test - - - - - org.ops4j.pax.exam - pax-exam-container-native - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-junit4 - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-cm - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-link-mvn - ${pax.exam.version} - test - - - org.apache.felix - org.apache.felix.framework - 7.0.5 - test - - - javax.inject - javax.inject - 1 - test - - - org.slf4j - slf4j-api - ${slf4j.version} - test - - - commons-io - commons-io - 2.13.0 - test - - - org.apache.commons - commons-lang3 - 3.13.0 - test - - - - org.osgi - org.osgi.core - 6.0.0 - provided - - - - - - Torsten Curdt - tcurdt - tcurdt at apache.org - - - Stefan Bodewig - bodewig - bodewig at apache.org - - - Sebastian Bazley - sebb - sebb at apache.org - - - Christian Grobmeier - grobmeier - grobmeier at apache.org - - - Julius Davies - julius - julius at apache.org - - - Damjan Jovanovic - damjan - damjan at apache.org - - - Emmanuel Bourg - ebourg - ebourg at apache.org - - - ggregory - Gary Gregory - ggregory at apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - https://people.apache.org/~ggregory/img/garydgregory80.png - - - - Rob Tompkins - chtompki - chtompki at apache.org - - - Peter Alfred Lee - peterlee - peterlee at apache.org - - - - - - Wolfgang Glas - wolfgang.glas at ev-i.at - - - Christian Kohlschütte - ck@newsclub.de - - - Bear Giles - bgiles@coyotesong.com - - - Michael Kuss - mail at michael minus kuss.de - - - Lasse Collin - lasse.collin@tukaani.org - - - John Kodis - - - BELUGA BEHR - - - Simon Spero - sesuncedu@gmail.com - - - Michael Hausegger - hausegger.michael@googlemail.com - - - Arturo Bernal - arturobernalg@yahoo.com - - - - - scm:git:https://gitbox.apache.org/repos/asf/commons-compress.git - scm:git:https://gitbox.apache.org/repos/asf/commons-compress.git - https://gitbox.apache.org/repos/asf?p=commons-compress.git - HEAD - - - - clean verify apache-rat:check japicmp:cmp javadoc:javadoc - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - ${maven.compiler.source} - true - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc8.java.link} - ${commons.javadoc.javaee.link} - - - - Immutable - a - This class is immutable - - - NotThreadSafe - a - This class is not thread-safe - - - ThreadSafe - a - This class is thread-safe - - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - src/test/resources/** - .pmd - .projectile - .mvn/** - .gitattributes - - - - - org.eluder.coveralls - coveralls-maven-plugin - - false - - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - - org.apache.commons.compress.harmony.pack200.Segment - org.apache.commons.compress.harmony.pack200.SegmentMethodVisitor - org.apache.commons.compress.harmony.pack200.SegmentAnnotationVisitor - org.apache.commons.compress.harmony.pack200.SegmentFieldVisitor - - - - - - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - maven-jar-plugin - - - - org.apache.commons.compress.archivers.Lister - org.apache.commons.compress - ${commons.module.name} - - - - - - org.apache.felix - maven-bundle-plugin - - ${commons.manifestlocation} - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - org.apache.maven.plugins - maven-pmd-plugin - - 200 - ${maven.compiler.source} - - ${basedir}/src/conf/pmd-ruleset.xml - - - - - com.github.spotbugs - spotbugs-maven-plugin - - Normal - Default - ${basedir}/src/conf/spotbugs-exclude-filter.xml - - - - org.apache.maven.plugins - maven-antrun-plugin - - - process-test-resources - - - - - - - run - - - - - - maven-surefire-plugin - - - ${karaf.version} - ${project.version} - - - - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - 200 - ${maven.compiler.source} - - ${basedir}/src/conf/pmd-ruleset.xml - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${maven.compiler.source} - true - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc8.java.link} - ${commons.javadoc.javaee.link} - - - - Immutable - a - This class is immutable - - - NotThreadSafe - a - This class is not thread-safe - - - ThreadSafe - a - This class is thread-safe - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - Normal - Default - ${basedir}/src/conf/spotbugs-exclude-filter.xml - - - - - - - - - run-zipit - - - - org.apache.maven.plugins - maven-antrun-plugin - - - process-test-resources - - - - - - - run - - - - - - maven-surefire-plugin - - - **/zip/*IT.java - - - - - - - - run-tarit - - - - maven-surefire-plugin - - - **/tar/*IT.java - - - - - - - - java11+ - - [11,) - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 8 - - - - - - - java9+ - - [9,) - - - 8 - true - - true - - - - - - diff --git a/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom.sha1 b/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom.sha1 deleted file mode 100644 index dcb67edaf..000000000 --- a/code/arachne/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7aed3b6026a9177fa638c33e419ac57f7b10143f \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-compress/1.26.0/_remote.repositories b/code/arachne/org/apache/commons/commons-compress/1.26.0/_remote.repositories deleted file mode 100644 index d3d642296..000000000 --- a/code/arachne/org/apache/commons/commons-compress/1.26.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:12 EDT 2024 -commons-compress-1.26.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom b/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom deleted file mode 100644 index e1118dc1a..000000000 --- a/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom +++ /dev/null @@ -1,642 +0,0 @@ - - - - 4.0.0 - - org.apache.commons - commons-parent - 66 - - - commons-compress - 1.26.0 - Apache Commons Compress - https://commons.apache.org/proper/commons-compress/ - 2002 - - -Apache Commons Compress defines an API for working with -compression and archive formats. These include bzip2, gzip, pack200, -LZMA, XZ, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, -Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj. - - - - 1.8 - 1.8 - - compress - org.apache.commons.compress - COMPRESS - 12310904 - - 1.26.0 - 1.26.1 - 1.25.0 - RC1 - 4.11.0 - - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - ${project.build.outputDirectory}/META-INF - ${commons.manifestlocation}/MANIFEST.MF - - org.tukaani.xz;resolution:=optional, - org.brotli.dec;resolution:=optional, - com.github.luben.zstd;resolution:=optional, - org.objectweb.asm;resolution:=optional, - javax.crypto.*;resolution:=optional, - org.apache.commons.commons-codec;resolution:=optional, - org.apache.commons.commons-io;resolution:=optional, - org.apache.commons.lang3.reflect;resolution:=optional, - * - - - - true - - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} - false - - 4.13.5 - 2.0.12 - 9.6 - 2024-02-17T22:58:53Z - - 0.5.5 - - - - jira - https://issues.apache.org/jira/browse/COMPRESS - - - - - org.junit.jupiter - junit-jupiter-params - test - - - org.junit.vintage - junit-vintage-engine - test - - - org.hamcrest - hamcrest - 2.2 - test - - - com.github.luben - zstd-jni - 1.5.5-11 - true - - - org.brotli - dec - 0.1.2 - true - - - org.tukaani - xz - 1.9 - true - - - - commons-codec - commons-codec - 1.16.1 - true - - - - - org.ow2.asm - asm - ${asm.version} - true - - - - - org.mockito - mockito-core - ${mockito.version} - test - - - org.mockito - mockito-junit-jupiter - ${mockito.version} - test - - - com.github.marschall - memoryfilesystem - 2.8.0 - test - - - - - org.ops4j.pax.exam - pax-exam-container-native - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-junit4 - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-cm - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-link-mvn - ${pax.exam.version} - test - - - org.apache.felix - org.apache.felix.framework - 7.0.5 - test - - - javax.inject - javax.inject - 1 - test - - - org.slf4j - slf4j-api - ${slf4j.version} - test - - - commons-io - commons-io - 2.15.1 - - - org.apache.commons - commons-lang3 - 3.14.0 - - - org.osgi - org.osgi.core - 6.0.0 - provided - - - - - scm:git:https://gitbox.apache.org/repos/asf/commons-compress.git - scm:git:https://gitbox.apache.org/repos/asf/commons-compress.git - https://gitbox.apache.org/repos/asf?p=commons-compress.git - HEAD - - - - clean artifact:check-buildplan verify apache-rat:check checkstyle:check japicmp:cmp javadoc:javadoc - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - ${maven.compiler.source} - true - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc8.java.link} - ${commons.javadoc.javaee.link} - https://commons.apache.org/proper/commons-codec/apidocs - https://commons.apache.org/proper/commons-io/apidocs - - - - Immutable - a - This class is immutable - - - NotThreadSafe - a - This class is not thread-safe - - - ThreadSafe - a - This class is thread-safe - - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - src/test/resources/** - .pmd - .projectile - .mvn/** - .gitattributes - - - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - - org.apache.commons.compress.harmony.pack200.Segment - org.apache.commons.compress.harmony.pack200.SegmentMethodVisitor - org.apache.commons.compress.harmony.pack200.SegmentAnnotationVisitor - org.apache.commons.compress.harmony.pack200.SegmentFieldVisitor - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - Normal - Default - ${basedir}/src/conf/spotbugs-exclude-filter.xml - - - - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - maven-jar-plugin - - - - org.apache.commons.compress.archivers.Lister - org.apache.commons.compress - ${commons.module.name} - - - - - - org.apache.felix - maven-bundle-plugin - - ${commons.manifestlocation} - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - org.apache.maven.plugins - maven-pmd-plugin - - 200 - ${maven.compiler.source} - - ${basedir}/src/conf/pmd-ruleset.xml - - - - - com.github.spotbugs - spotbugs-maven-plugin - - - org.apache.maven.plugins - maven-antrun-plugin - - - process-test-resources - - - - - - - run - - - - - - maven-surefire-plugin - - - ${karaf.version} - ${project.version} - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${basedir}/src/conf/checkstyle.xml - checkstyle-suppressions.xml - true - false - target/** - - - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - 200 - ${maven.compiler.source} - - ${basedir}/src/conf/pmd-ruleset.xml - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - com.github.spotbugs - spotbugs-maven-plugin - - - - - - - - run-zipit - - - - org.apache.maven.plugins - maven-antrun-plugin - - - process-test-resources - - - - - - - run - - - - - - maven-surefire-plugin - - - **/zip/*IT.java - - - - - - - - run-tarit - - - - maven-surefire-plugin - - - **/tar/*IT.java - - - - - - - - java11+ - - [11,) - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 8 - - - - - - - java9+ - - [9,) - - - 8 - true - - true - - - - java17 - - [17,) - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - --add-opens java.base/java.io=ALL-UNNAMED - - - - - - - - - - - Torsten Curdt - tcurdt - tcurdt at apache.org - - - Stefan Bodewig - bodewig - bodewig at apache.org - - - Sebastian Bazley - sebb - sebb at apache.org - - - Christian Grobmeier - grobmeier - grobmeier at apache.org - - - Julius Davies - julius - julius at apache.org - - - Damjan Jovanovic - damjan - damjan at apache.org - - - Emmanuel Bourg - ebourg - ebourg at apache.org - - - ggregory - Gary Gregory - ggregory at apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - https://people.apache.org/~ggregory/img/garydgregory80.png - - - - Rob Tompkins - chtompki - chtompki at apache.org - - - Peter Alfred Lee - peterlee - peterlee at apache.org - - - - - - Wolfgang Glas - wolfgang.glas at ev-i.at - - - Christian Kohlschütte - ck@newsclub.de - - - Bear Giles - bgiles@coyotesong.com - - - Michael Kuss - mail at michael minus kuss.de - - - Lasse Collin - lasse.collin@tukaani.org - - - John Kodis - - - BELUGA BEHR - - - Simon Spero - sesuncedu@gmail.com - - - Michael Hausegger - hausegger.michael@googlemail.com - - - Arturo Bernal - arturobernalg@yahoo.com - - - - diff --git a/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom.sha1 b/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom.sha1 deleted file mode 100644 index 6b03577d5..000000000 --- a/code/arachne/org/apache/commons/commons-compress/1.26.0/commons-compress-1.26.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -634886adafbd321483b905393ab1cd73b46edf72 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-csv/1.9.0/_remote.repositories b/code/arachne/org/apache/commons/commons-csv/1.9.0/_remote.repositories deleted file mode 100644 index 8df694961..000000000 --- a/code/arachne/org/apache/commons/commons-csv/1.9.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:57 EDT 2024 -commons-csv-1.9.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom b/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom deleted file mode 100644 index fd2d55d43..000000000 --- a/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom +++ /dev/null @@ -1,527 +0,0 @@ - - - - 4.0.0 - - org.apache.commons - commons-parent - 52 - - commons-csv - 1.9.0 - Apache Commons CSV - https://commons.apache.org/proper/commons-csv/ - 2005 - The Apache Commons CSV library provides a simple interface for reading and writing CSV files of various types. - - - - org.junit.jupiter - junit-jupiter - 5.8.0-M1 - test - - - org.hamcrest - hamcrest - 2.2 - test - - - org.mockito - mockito-core - 3.11.2 - test - - - commons-io - commons-io - 2.11.0 - test - - - org.apache.commons - commons-lang3 - 3.12.0 - test - - - com.h2database - h2 - 1.4.200 - test - - - - - - bayard - Henri Yandell - bayard@apache.org - The Apache Software Foundation - - - Martin van den Bemt - mvdb - mvdb@apache.org - The Apache Software Foundation - - - Yonik Seeley - yonik - yonik@apache.org - The Apache Software Foundation - - - Emmanuel Bourg - ebourg - ebourg@apache.org - Apache - - - ggregory - Gary Gregory - ggregory at apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - https://people.apache.org/~ggregory/img/garydgregory80.png - - - - Benedikt Ritter - britter - britter@apache.org - The Apache Software Foundation - - - Rob Tompkins - chtompki - chtompki@apache.org - The Apache Software Foundation - - - - - Bob Smith - - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-csv.git - scm:git:https://gitbox.apache.org/repos/asf/commons-csv.git - https://gitbox.apache.org/repos/asf?p=commons-csv.git - - - - jira - https://issues.apache.org/jira/browse/CSV - - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-csv/ - - - - - 1.9.0 - (Java 8) - - RC1 - 1.8 - csv - org.apache.commons.csv - CSV - 12313222 - 1.8 - 1.8 - http://docs.oracle.com/javase/8/docs/api/ - - UTF-8 - UTF-8 - UTF-8 - - 3.1.2 - 8.44 - ${basedir}/src/site/resources/checkstyle/checkstyle-header.txt - ${basedir}/src/site/resources/checkstyle/checkstyle.xml - ${basedir}/src/site/resources/checkstyle/checkstyle-suppressions.xml - LICENSE.txt, NOTICE.txt, **/maven-archiver/pom.properties - - 3.14.0 - 6.36.0 - 0.8.7 - 4.3.0 - 0.15.3 - 3.3.0 - 5.3.0 - false - - true - Gary Gregory - 86fdc7e2a11262cb - - - - clean package apache-rat:check japicmp:cmp checkstyle:check spotbugs:check pmd:check javadoc:javadoc - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${commons.checkstyle-plugin.version} - - ${checkstyle.config.file} - false - ${checkstyle.suppress.file} - - - - com.puppycrawl.tools - checkstyle - ${commons.checkstyle.version} - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd.version} - - - net.sourceforge.pmd - pmd-core - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-java - ${commons.pmd-impl.version} - - - - ${maven.compiler.target} - false - - ${basedir}/src/site/resources/pmd/pmd-ruleset.xml - - - - - - - org.apache.rat - apache-rat-plugin - - - - - src/test/resources/org/apache/commons/csv/empty.txt - src/test/resources/org/apache/commons/csv/csv-167/sample1.csv - src/test/resources/org/apache/commons/csv/CSV-198/optd_por_public.csv - src/test/resources/org/apache/commons/csv/CSV-213/999751170.patch.csv - src/test/resources/org/apache/commons/csv/CSVFileParser/bom.csv - src/test/resources/org/apache/commons/csv/CSVFileParser/test.csv - src/test/resources/org/apache/commons/csv/CSVFileParser/test_default.txt - src/test/resources/org/apache/commons/csv/CSVFileParser/test_default_comment.txt - src/test/resources/org/apache/commons/csv/CSVFileParser/test_rfc4180.txt - src/test/resources/org/apache/commons/csv/CSVFileParser/test_rfc4180_trim.txt - src/test/resources/org/apache/commons/csv/CSVFileParser/testCSV85.csv - src/test/resources/org/apache/commons/csv/CSVFileParser/testCSV85_default.txt - src/test/resources/org/apache/commons/csv/CSVFileParser/testCSV85_ignoreEmpty.txt - - src/test/resources/org/apache/commons/csv/ferc.gov/contract.txt - src/test/resources/org/apache/commons/csv/ferc.gov/transaction.txt - src/test/resources/**/*.bin - src/test/resources/org/apache/commons/csv/CSV-259/sample.txt - src/test/resources/org/apache/commons/csv/CSVFileParser/testCSV246.csv - src/test/resources/org/apache/commons/csv/CSVFileParser/testCSV246_checkWithNoComment.txt - - - - - - - - maven-compiler-plugin - - - **/*Benchmark* - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/perf/PerformanceTest.java - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - com.github.spotbugs - spotbugs-maven-plugin - ${commons.spotbugs.version} - - ${basedir}/src/site/resources/spotbugs/spotbugs-exclude-filter.xml - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - - org.apache.rat - apache-rat-plugin - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - - - checkstyle - - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${commons.spotbugs.version} - - ${basedir}/src/site/resources/spotbugs/spotbugs-exclude-filter.xml - - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - - - Needs Work - - - TODO - exact - - - FIXME - exact - - - XXX - exact - - - - - Notable Markers - - - NOTE - exact - - - NOPMD - exact - - - NOSONAR - exact - - - - - - - - - org.apache.rat - apache-rat-plugin - - - - - - - - benchmark - - - - org.openjdk.jmh - jmh-core - 1.32 - test - - - - org.openjdk.jmh - jmh-generator-annprocess - 1.32 - test - - - - genjava - gj-csv - 1.0 - test - - - - net.sourceforge.javacsv - javacsv - 2.0 - test - - - - com.opencsv - opencsv - 5.5.1 - test - - - - net.sf.supercsv - super-csv - 2.4.0 - test - - - - - org.skife.kasparov - csv - 1.0 - provided - - - - org.apache.commons - commons-lang3 - 3.12.0 - - - - - true - org.apache - - - - - - - maven-compiler-plugin - ${commons.compiler.version} - - - **/* - - - - - - - org.codehaus.mojo - exec-maven-plugin - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.json - ${benchmark} - - - - - - - - - - - java9 - - 9 - - - - true - - - - - diff --git a/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom.sha1 b/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom.sha1 deleted file mode 100644 index 3f0467102..000000000 --- a/code/arachne/org/apache/commons/commons-csv/1.9.0/commons-csv-1.9.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8c772f73226ac68b9c3f3ed8779e275345c937ce \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-io/1.3.2/_remote.repositories b/code/arachne/org/apache/commons/commons-io/1.3.2/_remote.repositories deleted file mode 100644 index b8c2a3985..000000000 --- a/code/arachne/org/apache/commons/commons-io/1.3.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -commons-io-1.3.2.pom>central= diff --git a/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom b/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom deleted file mode 100644 index 3f45d29f2..000000000 --- a/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom +++ /dev/null @@ -1,14 +0,0 @@ - - - 4.0.0 - org.apache.commons - commons-io - 1.3.2 - - - commons-io - commons-io - https://issues.sonatype.org/browse/MVNCENTRAL-244 - - - diff --git a/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 b/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 deleted file mode 100644 index 635df983f..000000000 --- a/code/arachne/org/apache/commons/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -785e86ecf26be3f245edcc567d5628bd8cea08fa \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-lang3/3.13.0/_remote.repositories b/code/arachne/org/apache/commons/commons-lang3/3.13.0/_remote.repositories deleted file mode 100644 index edb7515f7..000000000 --- a/code/arachne/org/apache/commons/commons-lang3/3.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:11 EDT 2024 -commons-lang3-3.13.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom b/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom deleted file mode 100644 index 99e87fd02..000000000 --- a/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom +++ /dev/null @@ -1,1003 +0,0 @@ - - - - - org.apache.commons - commons-parent - 58 - - 4.0.0 - commons-lang3 - 3.13.0 - Apache Commons Lang - - 2001 - - Apache Commons Lang, a package of Java utility classes for the - classes that are in java.lang's hierarchy, or are considered to be so - standard as to justify existence in java.lang. - - - https://commons.apache.org/proper/commons-lang/ - - - jira - https://issues.apache.org/jira/browse/LANG - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-lang.git - scm:git:https://gitbox.apache.org/repos/asf/commons-lang.git - https://gitbox.apache.org/repos/asf?p=commons-lang.git - rel/commons-lang-3.13.0 - - - - - Daniel Rall - dlr - dlr@finemaltcoding.com - CollabNet, Inc. - - Java Developer - - - - Stephen Colebourne - scolebourne - scolebourne@joda.org - SITA ATS Ltd - 0 - - Java Developer - - - - Henri Yandell - bayard - bayard@apache.org - - - Java Developer - - - - Steven Caswell - scaswell - stevencaswell@apache.org - - - Java Developer - - -5 - - - Robert Burrell Donkin - rdonkin - rdonkin@apache.org - - - Java Developer - - - - ggregory - Gary Gregory - ggregory at apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - https://people.apache.org/~ggregory/img/garydgregory80.png - - - - Fredrik Westermarck - fredrik - - - - Java Developer - - - - James Carman - jcarman - jcarman@apache.org - Carman Consulting, Inc. - - Java Developer - - - - Niall Pemberton - niallp - - Java Developer - - - - Matt Benson - mbenson - - Java Developer - - - - Joerg Schaible - joehni - joerg.schaible@gmx.de - - Java Developer - - +1 - - - Oliver Heger - oheger - oheger@apache.org - +1 - - Java Developer - - - - Paul Benedict - pbenedict - pbenedict@apache.org - - Java Developer - - - - Benedikt Ritter - britter - britter@apache.org - - Java Developer - - - - Duncan Jones - djones - djones@apache.org - 0 - - Java Developer - - - - Loic Guibert - lguibert - lguibert@apache.org - +4 - - Java Developer - - - - Rob Tompkins - chtompki - chtompki@apache.org - -5 - - Java Developer - - - - - - C. Scott Ananian - - - Chris Audley - - - Stephane Bailliez - - - Michael Becke - - - Benjamin Bentmann - - - Ola Berg - - - Nathan Beyer - - - Stefan Bodewig - - - Janek Bogucki - - - Mike Bowler - - - Sean Brown - - - Alexander Day Chaffee - - - Al Chou - - - Greg Coladonato - - - Maarten Coene - - - Justin Couch - - - Michael Davey - - - Norm Deane - - - Morgan Delagrange - - - Ringo De Smet - - - Russel Dittmar - - - Steve Downey - - - Matthias Eichel - - - Christopher Elkins - - - Chris Feldhacker - - - Roland Foerther - - - Pete Gieser - - - Jason Gritman - - - Matthew Hawthorne - - - Michael Heuer - - - Chas Honton - - - Chris Hyzer - - - Paul Jack - - - Marc Johnson - - - Shaun Kalley - - - Tetsuya Kaneuchi - - - Nissim Karpenstein - - - Ed Korthof - - - Holger Krauth - - - Rafal Krupinski - - - Rafal Krzewski - - - David Leppik - - - Eli Lindsey - - - Sven Ludwig - - - Craig R. McClanahan - - - Rand McNeely - - - Hendrik Maryns - - - Dave Meikle - - - Nikolay Metchev - - - Kasper Nielsen - - - Tim O'Brien - - - Brian S O'Neill - - - Andrew C. Oliver - - - Alban Peignier - - - Moritz Petersen - - - Dmitri Plotnikov - - - Neeme Praks - - - Eric Pugh - - - Stephen Putman - - - Travis Reeder - - - Antony Riley - - - Valentin Rocher - - - Scott Sanders - - - James Sawle - - - Ralph Schaer - - - Henning P. Schmiedehausen - - - Sean Schofield - - - Robert Scholte - - - Reuben Sivan - - - Ville Skytta - - - David M. Sledge - - - Michael A. Smith - - - Jan Sorensen - - - Glen Stampoultzis - - - Scott Stanchfield - - - Jon S. Stevens - - - Sean C. Sullivan - - - Ashwin Suresh - - - Helge Tesgaard - - - Arun Mammen Thomas - - - Masato Tezuka - - - Daniel Trebbien - - - Jeff Varszegi - - - Chris Webb - - - Mario Winterer - - - Stepan Koltsov - - - Holger Hoffstatte - - - Derek C. Ashmore - - - Sebastien Riou - - - Allon Mureinik - - - Adam Hooper - - - Chris Karcher - - - Michael Osipov - - - Thiago Andrade - - - Jonathan Baker - - - Mikhail Mazursky - - - Fabian Lange - - - Michał Kordas - - - Felipe Adorno - - - Adrian Ber - - - Mark Dacek - - - Peter Verhas - - - Jin Xu - - - Arturo Bernal - - - - - - - - org.junit.jupiter - junit-jupiter - test - - - org.junit-pioneer - junit-pioneer - 1.9.1 - test - - - org.hamcrest - hamcrest - 2.2 - test - - - - org.easymock - easymock - 5.1.0 - test - - - - - org.apache.commons - commons-text - 1.10.0 - provided - - - - org.openjdk.jmh - jmh-core - ${jmh.version} - test - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh.version} - test - - - com.google.code.findbugs - jsr305 - 3.0.2 - test - - - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-lang/ - - - - - -Xmx512m - ISO-8859-1 - UTF-8 - 1.8 - 1.8 - - lang - lang3 - org.apache.commons.lang3 - - 3.13.0 - (Java 8+) - - 2.6 - (Requires Java 1.2 or later) - - commons-lang-${commons.release.2.version} - LANG - 12310481 - - lang - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-lang - site-content - utf-8 - - src/site/resources/checkstyle - - false - - 0.5.5 - - 1.36 - benchmarks - - - 3.12.0 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/lang - Gary Gregory - 86fdc7e2a11262cb - - - - clean verify apache-rat:check checkstyle:check japicmp:cmp spotbugs:check pmd:check javadoc:javadoc - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd.version} - - ${maven.compiler.target} - src/conf/exclude-pmd.properties - - - - org.apache.rat - apache-rat-plugin - - - site-content/** - src/site/resources/.htaccess - src/site/resources/download_lang.cgi - src/site/resources/release-notes/RELEASE-NOTES-*.txt - src/test/resources/lang-708-input.txt - - - - - - - - maven-javadoc-plugin - - ${maven.compiler.source} - true - true - - https://commons.apache.org/proper/commons-text/apidocs - https://docs.oracle.com/javase/8/docs/api - https://docs.oracle.com/javaee/6/api - - true - - - true - true - - - all - - - - create-javadoc-jar - - javadoc - jar - - package - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - plain - - - **/*Test.java - - random - - - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - ${commons.module.name} - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - maven-checkstyle-plugin - - ${checkstyle.configdir}/checkstyle.xml - true - false - - - - com.github.spotbugs - spotbugs-maven-plugin - - ${basedir}/src/conf/spotbugs-exclude-filter.xml - - - - - - - - - maven-javadoc-plugin - - ${maven.compiler.source} - true - true - - https://commons.apache.org/proper/commons-text/apidocs - https://docs.oracle.com/javase/8/docs/api - https://docs.oracle.com/javaee/6/api - - true - - - true - true - - - all - - - - maven-checkstyle-plugin - - ${checkstyle.configdir}/checkstyle.xml - true - false - - - - - checkstyle - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - ${basedir}/src/conf/spotbugs-exclude-filter.xml - - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - - - Needs Work - - - TODO - exact - - - FIXME - exact - - - XXX - exact - - - - - Noteable Markers - - - NOTE - exact - - - NOPMD - exact - - - NOSONAR - exact - - - - - - - - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - prepare-checkout - pre-site - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - - java9+ - - [9,) - - - - - -Xmx512m --add-opens java.base/java.lang.reflect=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED - - true - - - - java13+ - - [13,) - - - - true - - - - java15 - - - 15 - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - org/apache/commons/lang3/time/Java15BugFastDateParserTest.java - - - - - - - - - benchmark - - true - org.apache - - - - - org.codehaus.mojo - exec-maven-plugin - 3.1.0 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom.sha1 b/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom.sha1 deleted file mode 100644 index 42d0473e4..000000000 --- a/code/arachne/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7ab891d9dcdbea24037ceaa42744d5e7d800e495 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/17/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/17/_remote.repositories deleted file mode 100644 index 17821c7bb..000000000 --- a/code/arachne/org/apache/commons/commons-parent/17/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:15 EDT 2024 -commons-parent-17.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom b/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom deleted file mode 100644 index ceb236a33..000000000 --- a/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom +++ /dev/null @@ -1,785 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 7 - - org.apache.commons - commons-parent - pom - - 17 - Commons Parent - http://commons.apache.org/ - - - continuum - http://vmbuild.apache.org/continuum/ - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-17 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-17 - http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-17 - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-user/ - - http://markmail.org/list/org.apache.commons.users/ - http://old.nabble.com/Commons---User-f319.html - http://www.mail-archive.com/user@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.user - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-dev/ - - http://markmail.org/list/org.apache.commons.dev/ - http://old.nabble.com/Commons---Dev-f317.html - http://www.mail-archive.com/dev@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.devel - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://markmail.org/list/org.apache.commons.issues/ - http://old.nabble.com/Commons---Issues-f25499.html - http://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ - - http://markmail.org/list/org.apache.commons.commits/ - http://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - http://markmail.org/list/org.apache.announce/ - http://old.nabble.com/Apache-News-and-Announce-f109.html - http://www.mail-archive.com/announce@apache.org/ - http://news.gmane.org/gmane.comp.apache.announce - - - - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - 1.3 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-5 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.1 - - ${maven.compile.source} - ${maven.compile.target} - ${commons.encoding} - ${commons.compiler.fork} - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - org.apache.maven.plugins - maven-install-plugin - 2.3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - true - ${commons.encoding} - ${commons.docEncoding} - - - true - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.0 - - - org.apache.maven.plugins - maven-remote-resources-plugin - - 1.0 - - - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-site-plugin - 2.0.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.1 - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - - org.apache.commons - commons-build-plugin - 1.3 - - ${commons.release.name} - - - - org.apache.felix - maven-bundle-plugin - - 1.4.3 - true - - - - - - maven-compiler-plugin - - - maven-surefire-plugin - - ${commons.surefire.java} - - - - maven-jar-plugin - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compile.source} - ${maven.compile.target} - - - - - - org.apache.felix - maven-bundle-plugin - - true - target/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - maven-idea-plugin - - - ${maven.compile.source} - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.commons - commons-build-plugin - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - true - ${maven.compile.source} - ${commons.encoding} - ${commons.docEncoding} - true - - http://java.sun.com/javase/6/docs/api/ - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - false - - - - org.apache.maven.plugins - maven-site-plugin - 2.0.1 - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire.version} - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-2 - - - org.codehaus.mojo - rat-maven-plugin - 1.0-alpha-3 - - - - - - - - ci - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - release - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - - package - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compile.source} - - - - maven-assembly-plugin - - - - attached - - package - - - - - - - - - rc - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/staged - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - - package - - - - - maven-release-plugin - - - -Prc - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compile.source} - - - - maven-assembly-plugin - - - - attached - - package - - - - - - - - - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/java - 2.2 - - - - - - java-1.4 - - true - 1.4 - ${JAVA_1_4_HOME}/bin/javac - ${JAVA_1_4_HOME}/bin/java - - - - - - java-1.5 - - true - 1.5 - ${JAVA_1_5_HOME}/bin/javac - ${JAVA_1_5_HOME}/bin/java - - - - - - java-1.6 - - true - 1.6 - ${JAVA_1_6_HOME}/bin/javac - ${JAVA_1_6_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - - - - - - trunks-proper - - ../beanutils - ../betwixt - ../chain - ../cli - ../codec - ../collections - ../compress - ../configuration - ../daemon - ../dbcp - ../dbutils - ../digester - ../discovery - ../el - ../email - ../exec - ../fileupload - ../io - ../jci - ../jexl - ../jxpath - ../lang - ../launcher - ../logging - ../math - ../modeler - ../net - ../pool - ../primitives - ../proxy - ../sanselan - ../scxml - ../validator - ../vfs - - - - - - - - 1.3 - 1.3 - - - false - - - - 2.5 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - - - ${project.artifactId} - - - RC1 - - - org.apache.commons.${commons.componentid} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - - - target/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - ${commons.encoding} - - ${commons.encoding} - ${commons.encoding} - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 deleted file mode 100644 index 59f5d9d6e..000000000 --- a/code/arachne/org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -84bc2f457fac92c947cde9c15c81786ded79b3c1 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/24/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/24/_remote.repositories deleted file mode 100644 index 70ae7e614..000000000 --- a/code/arachne/org/apache/commons/commons-parent/24/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:15 EDT 2024 -commons-parent-24.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom b/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom deleted file mode 100644 index 4f37c5f88..000000000 --- a/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom +++ /dev/null @@ -1,1187 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - - 9 - - org.apache.commons - commons-parent - pom - - 24 - Commons Parent - http://commons.apache.org/ - The Apache Commons Parent Pom provides common settings for all Apache Commons components. - - - - - - 2.2.1 - - - - continuum - http://vmbuild.apache.org/continuum/ - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk - http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-user/ - - http://markmail.org/list/org.apache.commons.users/ - http://old.nabble.com/Commons---User-f319.html - http://www.mail-archive.com/user@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.user - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-dev/ - - http://markmail.org/list/org.apache.commons.dev/ - http://old.nabble.com/Commons---Dev-f317.html - http://www.mail-archive.com/dev@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.devel - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://markmail.org/list/org.apache.commons.issues/ - http://old.nabble.com/Commons---Issues-f25499.html - http://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ - - http://markmail.org/list/org.apache.commons.commits/ - http://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - http://markmail.org/list/org.apache.announce/ - http://old.nabble.com/Apache-News-and-Announce-f109.html - http://www.mail-archive.com/announce@apache.org/ - http://news.gmane.org/gmane.comp.apache.announce - - - - - - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.3 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - ${maven.compile.source} - ${maven.compile.target} - ${commons.encoding} - ${commons.compiler.fork} - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.7 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${commons.encoding} - ${commons.docEncoding} - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.2.2 - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - 1.2.1 - - - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.5 - - - org.apache.maven.plugins - maven-site-plugin - 3.0 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - - org.apache.commons - commons-build-plugin - 1.4 - - ${commons.release.name} - - - - org.apache.felix - maven-bundle-plugin - 2.3.7 - true - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.0 - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${implementation.build} - ${maven.compile.source} - ${maven.compile.target} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - true - target/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compile.source} - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.0 - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.1 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-2 - - - - - - - - - release - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - test-jar - - - - - - maven-jar-plugin - - - - test-jar - - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compile.source} - - - - maven-assembly-plugin - - - - single - - package - - - - - - - - - rc - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/staged - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - - package - - - - - maven-release-plugin - - - -Prc - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compile.source} - - - - maven-assembly-plugin - - - - single - - package - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/java - - - - - - java-1.4 - - true - 1.4 - ${JAVA_1_4_HOME}/bin/javac - ${JAVA_1_4_HOME}/bin/java - - - - - - java-1.5 - - true - 1.5 - ${JAVA_1_5_HOME}/bin/javac - ${JAVA_1_5_HOME}/bin/java - - - - - - java-1.6 - - true - 1.6 - ${JAVA_1_6_HOME}/bin/javac - ${JAVA_1_6_HOME}/bin/java - - - - - - java-1.7 - - true - 1.7 - ${JAVA_1_7_HOME}/bin/javac - ${JAVA_1_7_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - - - - - - trunks-proper - - - ../bcel - ../beanutils - ../betwixt - ../chain - ../cli - ../codec - ../collections - ../compress - ../configuration - ../daemon - ../dbcp - ../dbutils - ../digester - ../discovery - ../el - ../email - ../exec - ../fileupload - ../functor - ../io - ../jci - ../jcs - - ../jexl - ../jxpath - ../lang - ../launcher - ../logging - ../math - ../modeler - ../net - ../ognl - ../pool - ../primitives - ../proxy - ../sanselan - ../scxml - - ../validator - ../vfs - - - - - - maven-3 - - - - ${basedir} - - - - - - maven-site-plugin - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - java-1.5-detected - - 1.5 - - - - - - - org.apache.felix - maven-bundle-plugin - - - biz.aQute - bndlib - - 1.15.0 - - - - - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - . - RELEASE-NOTES.txt - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - !buildNumber.skip!true - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - - - - - 24 - RC1 - - - 1.3 - 1.3 - - - false - - - - - - 2.12 - 2.12 - 2.8.1 - 0.8 - 2.6 - 2.3 - 2.3 - 2.4 - 2.2 - - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - - ${project.artifactId} - - - org.apache.commons.${commons.componentid} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - - - target/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - ${commons.encoding} - - ${commons.encoding} - ${commons.encoding} - - - http://download.oracle.com/javase/6/docs/api/ - http://download.oracle.com/javaee/6/api/ - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - false - - - diff --git a/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom.sha1 deleted file mode 100644 index 1cb71b46b..000000000 --- a/code/arachne/org/apache/commons/commons-parent/24/commons-parent-24.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dbb7913f93b279ef889f6bad288b82dae58df237 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/25/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/25/_remote.repositories deleted file mode 100644 index 3ebe3ab96..000000000 --- a/code/arachne/org/apache/commons/commons-parent/25/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:14 EDT 2024 -commons-parent-25.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom b/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom deleted file mode 100644 index f41458c27..000000000 --- a/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom +++ /dev/null @@ -1,1214 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - - 9 - - org.apache.commons - commons-parent - pom - - 25 - Commons Parent - http://commons.apache.org/ - The Apache Commons Parent Pom provides common settings for all Apache Commons components. - - - - - - 2.2.1 - - - - continuum - http://vmbuild.apache.org/continuum/ - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk - http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-user/ - - http://markmail.org/list/org.apache.commons.users/ - http://old.nabble.com/Commons---User-f319.html - http://www.mail-archive.com/user@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.user - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-dev/ - - http://markmail.org/list/org.apache.commons.dev/ - http://old.nabble.com/Commons---Dev-f317.html - http://www.mail-archive.com/dev@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.devel - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://markmail.org/list/org.apache.commons.issues/ - http://old.nabble.com/Commons---Issues-f25499.html - http://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ - - http://markmail.org/list/org.apache.commons.commits/ - http://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - http://markmail.org/list/org.apache.announce/ - http://old.nabble.com/Apache-News-and-Announce-f109.html - http://www.mail-archive.com/announce@apache.org/ - http://news.gmane.org/gmane.comp.apache.announce - - - - - - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.3 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - ${maven.compile.source} - ${maven.compile.target} - ${commons.encoding} - ${commons.compiler.fork} - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.7 - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${commons.encoding} - ${commons.docEncoding} - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.2.2 - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - 1.2.1 - - - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.5 - - - - org.apache.maven.plugins - maven-site-plugin - 3.0 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - - org.apache.commons - commons-build-plugin - 1.4 - - ${commons.release.name} - - - - org.apache.felix - maven-bundle-plugin - 2.3.7 - true - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.0 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${implementation.build} - ${maven.compile.source} - ${maven.compile.target} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - true - target/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Key DESC,Type,Fix Version DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compile.source} - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.0 - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.1 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-2 - - - - - - - - - release - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - test-jar - - - - - - maven-jar-plugin - - - - test-jar - - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compile.source} - - - - maven-assembly-plugin - - - - single - - package - - - - - - - - - rc - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/staged - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - - package - - - - - maven-release-plugin - - - -Prc - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compile.source} - - - - maven-assembly-plugin - - - - single - - package - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/java - - - - - - java-1.4 - - true - 1.4 - ${JAVA_1_4_HOME}/bin/javac - ${JAVA_1_4_HOME}/bin/java - - - - - - java-1.5 - - true - 1.5 - ${JAVA_1_5_HOME}/bin/javac - ${JAVA_1_5_HOME}/bin/java - - - - - - java-1.6 - - true - 1.6 - ${JAVA_1_6_HOME}/bin/javac - ${JAVA_1_6_HOME}/bin/java - - - - - - java-1.7 - - true - 1.7 - ${JAVA_1_7_HOME}/bin/javac - ${JAVA_1_7_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - - - - - - trunks-proper - - - ../bcel - ../beanutils - ../betwixt - ../chain - ../cli - ../codec - ../collections - ../compress - ../configuration - ../daemon - ../dbcp - ../dbutils - ../digester - ../discovery - ../el - ../email - ../exec - ../fileupload - ../functor - ../io - ../jci - ../jcs - - ../jexl - ../jxpath - ../lang - ../launcher - ../logging - ../math - ../modeler - ../net - ../ognl - ../pool - ../primitives - ../proxy - ../sanselan - ../scxml - - ../validator - ../vfs - - - - - - maven-3 - - - - ${basedir} - - - - - - maven-site-plugin - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - java-1.5-detected - - 1.5 - - - - - - - org.apache.felix - maven-bundle-plugin - - - biz.aQute - bndlib - - 1.15.0 - - - - - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - . - RELEASE-NOTES.txt - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - !buildNumber.skip!true - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - - - - - 25 - RC1 - - - - 1.3 - 1.3 - - - false - - - - - - 2.12 - 2.12 - 2.8.1 - 0.8 - 2.6 - 2.4 - 2.3 - 2.4 - 2.2 - - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - - ${project.artifactId} - - - org.apache.commons.${commons.componentid} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - - - target/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - ${commons.encoding} - - ${commons.encoding} - ${commons.encoding} - - - http://download.oracle.com/javase/6/docs/api/ - http://download.oracle.com/javaee/6/api/ - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - false - - - diff --git a/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom.sha1 deleted file mode 100644 index 831b77168..000000000 --- a/code/arachne/org/apache/commons/commons-parent/25/commons-parent-25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -67b84199ca4acf0d8fbc5256d90b80f746737e94 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/3/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/3/_remote.repositories deleted file mode 100644 index 9e39fba58..000000000 --- a/code/arachne/org/apache/commons/commons-parent/3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -commons-parent-3.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom b/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom deleted file mode 100644 index e0bd2dcd1..000000000 --- a/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom +++ /dev/null @@ -1,325 +0,0 @@ - - 4.0.0 - - org.apache - apache - 4 - - org.apache.commons - commons-parent - pom - - 3 - Jakarta Commons - http://jakarta.apache.org/commons/ - 2001 - - - - - - - - - dummy - Dummy to avoid accidental deploys - - - - - - - scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/commons-parent/tags/commons-parent-3 - scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/commons-parent/tags/commons-parent-3 - http://svn.apache.org/viewvc/jakarta/commons/proper/commons-parent/tags/commons-parent-3 - - - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - commons-dev@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev - - http://www.mail-archive.com/commons-dev@jakarta.apache.org/ - http://www.nabble.com/Commons---Dev-f317.html - - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - commons-user@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-user - - http://www.mail-archive.com/commons-user@jakarta.apache.org/ - http://www.nabble.com/Commons---User-f319.html - - - - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.3 - - - - - - - maven-compiler-plugin - - ${maven.compile.source} - ${maven.compile.target} - - - - maven-jar-plugin - - - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compile.source} - ${maven.compile.source} - - - - - - maven-idea-plugin - - ${maven.compile.source} - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.2 - - true - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - true - - - - org.apache.maven.plugins - maven-site-plugin - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-1 - - - org.codehaus.mojo - rat-maven-plugin - - - - - - - release - - - - apache.releases - Apache Release Distribution Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-source-plugin - - - create-source-jar - - jar - - - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - - ${maven.compile.source} - - - - - - - - - rc - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-source-plugin - - - create-source-jar - - jar - - - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - - ${maven.compile.source} - - - - - - - - - - - - - 1.3 - 1.3 - - - scp - - - - \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 deleted file mode 100644 index 88e7e9622..000000000 --- a/code/arachne/org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cc68f9bf1b52f227e82308b9157e265e05470804 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/32/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/32/_remote.repositories deleted file mode 100644 index 70c692fea..000000000 --- a/code/arachne/org/apache/commons/commons-parent/32/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:15 EDT 2024 -commons-parent-32.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom b/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom deleted file mode 100644 index 8bc7ab0d0..000000000 --- a/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom +++ /dev/null @@ -1,1301 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 13 - - org.apache.commons - commons-parent - pom - 32 - Apache Commons Parent - http://commons.apache.org/ - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - - - - - 2.2.1 - - - - continuum - http://vmbuild.apache.org/continuum/ - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-32 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-32 - http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-32 - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-user/ - - http://markmail.org/list/org.apache.commons.users/ - http://old.nabble.com/Commons---User-f319.html - http://www.mail-archive.com/user@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.user - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-dev/ - - http://markmail.org/list/org.apache.commons.dev/ - http://old.nabble.com/Commons---Dev-f317.html - http://www.mail-archive.com/dev@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.devel - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://markmail.org/list/org.apache.commons.issues/ - http://old.nabble.com/Commons---Issues-f25499.html - http://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ - - http://markmail.org/list/org.apache.commons.commits/ - http://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - http://markmail.org/list/org.apache.announce/ - http://old.nabble.com/Apache-News-and-Announce-f109.html - http://www.mail-archive.com/announce@apache.org/ - http://news.gmane.org/gmane.comp.apache.announce - - - - - - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.4 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - ${commons.compiler.fork} - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.7 - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.4 - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.4.1 - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - 1.4 - - - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - - org.apache.commons - commons-build-plugin - 1.4 - - ${commons.release.name} - - - - org.apache.felix - maven-bundle-plugin - 2.4.0 - true - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.2 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${implementation.build} - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - true - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0-beta-2 - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.encoding} - ${commons.docEncoding} - true - true - - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - org.codehaus.mojo - jdepend-maven-plugin - ${commons.jdepend.version} - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - ${commons.jacoco.classRatio} - ${commons.jacoco.instructionRatio} - ${commons.jacoco.methodRatio} - ${commons.jacoco.branchRatio} - ${commons.jacoco.complexityRatio} - ${commons.jacoco.lineRatio} - - ${commons.jacoco.haltOnFailure} - - - - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - - release - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - test-jar - - - - - - maven-jar-plugin - - - - test-jar - - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - - - - maven-assembly-plugin - true - - - - single - - package - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/java - - - - - - java-1.4 - - true - 1.4 - ${JAVA_1_4_HOME}/bin/javac - ${JAVA_1_4_HOME}/bin/java - - - - - - java-1.5 - - true - 1.5 - ${JAVA_1_5_HOME}/bin/javac - ${JAVA_1_5_HOME}/bin/java - - - - - - java-1.6 - - true - 1.6 - ${JAVA_1_6_HOME}/bin/javac - ${JAVA_1_6_HOME}/bin/java - - - - - - java-1.7 - - true - 1.7 - ${JAVA_1_7_HOME}/bin/javac - ${JAVA_1_7_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - - - - - - trunks-proper - - - ../bcel - ../beanutils - ../betwixt - ../chain - ../cli - ../codec - ../collections - ../compress - ../configuration - ../daemon - ../dbcp - ../dbutils - ../digester - ../discovery - ../el - ../email - ../exec - ../fileupload - ../functor - ../imaging - ../io - ../jci - ../jcs - - ../jexl - ../jxpath - ../lang - ../launcher - ../logging - ../math - ../modeler - ../net - ../ognl - ../pool - ../primitives - ../proxy - ../scxml - - ../validator - ../vfs - - - - - - maven-3 - - - - ${basedir} - - - - - - maven-site-plugin - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - . - RELEASE-NOTES.txt - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - !buildNumber.skip!true - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - - - - ${project.version} - RC1 - COMMONSSITE - - - - 1.3 - 1.3 - - - false - - - - - - 2.15 - 2.15 - - 2.9.1 - - 0.9 - 2.9 - 2.5 - 2.3 - 2.7 - 2.3 - 3.3 - 0.6.3.201306030806 - 2.5.2 - 2.0-beta-2 - - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - - 100 - 90 - 95 - 85 - 85 - 90 - false - - - ${project.artifactId} - - - org.apache.commons.${commons.componentid} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - ${commons.encoding} - - ${commons.encoding} - ${commons.encoding} - - - http://download.oracle.com/javase/6/docs/api/ - http://download.oracle.com/javaee/6/api/ - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - false - - - ${user.home}/commons-sites - - ${project.artifactId} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} - ${commons.site.cache}/${commons.site.path} - - https://analysis.apache.org/ - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom.sha1 deleted file mode 100644 index c2f9fe4d9..000000000 --- a/code/arachne/org/apache/commons/commons-parent/32/commons-parent-32.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0e51c4223003c2c7c63f38d7b8823e40eb06bd1f \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/34/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/34/_remote.repositories deleted file mode 100644 index 9ab4382df..000000000 --- a/code/arachne/org/apache/commons/commons-parent/34/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -commons-parent-34.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom b/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom deleted file mode 100644 index a6f61eda8..000000000 --- a/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom +++ /dev/null @@ -1,1386 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 13 - - org.apache.commons - commons-parent - pom - 34 - Apache Commons Parent - http://commons.apache.org/ - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - - - - - 3.0 - - - - continuum - https://continuum-ci.apache.org/ - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk - http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-user/ - - http://markmail.org/list/org.apache.commons.users/ - http://old.nabble.com/Commons---User-f319.html - http://www.mail-archive.com/user@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.user - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-dev/ - - http://markmail.org/list/org.apache.commons.dev/ - http://old.nabble.com/Commons---Dev-f317.html - http://www.mail-archive.com/dev@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.devel - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://markmail.org/list/org.apache.commons.issues/ - http://old.nabble.com/Commons---Issues-f25499.html - http://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ - - http://markmail.org/list/org.apache.commons.commits/ - http://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - http://markmail.org/list/org.apache.announce/ - http://old.nabble.com/Apache-News-and-Announce-f109.html - http://www.mail-archive.com/announce@apache.org/ - http://news.gmane.org/gmane.comp.apache.announce - - - - - - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.4 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - ${commons.compiler.fork} - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.1 - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.1 - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.4.2 - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - 1.5 - - - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - - org.apache.commons - commons-build-plugin - 1.4 - - ${commons.release.name} - - - - org.apache.felix - maven-bundle-plugin - 2.4.0 - true - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.2 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - - - - - - - maven-assembly-plugin - - - src/main/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - true - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - enforce-maven-3 - - enforce - - - - - 3.0.0 - - - true - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${implementation.build} - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - true - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${commons.scm-publish.version} - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.encoding} - ${commons.docEncoding} - true - true - - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - org.codehaus.mojo - jdepend-maven-plugin - ${commons.jdepend.version} - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - - release - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - test-jar - - - - - - maven-jar-plugin - - - - test-jar - - - - true - - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - - - - maven-assembly-plugin - true - - - - single - - package - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/java - - - - - - java-1.4 - - true - 1.4 - ${JAVA_1_4_HOME}/bin/javac - ${JAVA_1_4_HOME}/bin/java - - - - - - java-1.5 - - true - 1.5 - ${JAVA_1_5_HOME}/bin/javac - ${JAVA_1_5_HOME}/bin/java - - - - - - java-1.6 - - true - 1.6 - ${JAVA_1_6_HOME}/bin/javac - ${JAVA_1_6_HOME}/bin/java - - - - - - java-1.7 - - true - 1.7 - ${JAVA_1_7_HOME}/bin/javac - ${JAVA_1_7_HOME}/bin/java - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - - - - - - trunks-proper - - - ../bcel - ../beanutils - ../betwixt - ../chain - ../cli - ../codec - ../collections - ../compress - ../configuration - ../daemon - ../dbcp - ../dbutils - ../digester - ../discovery - ../el - ../email - ../exec - ../fileupload - ../functor - ../imaging - ../io - ../jci - ../jcs - - ../jexl - ../jxpath - ../lang - ../launcher - ../logging - ../math - ../modeler - ../net - ../ognl - ../pool - ../primitives - ../proxy - ../scxml - - ../validator - ../vfs - - - - - - maven-3 - - - - ${basedir} - - - - - - maven-site-plugin - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - . - RELEASE-NOTES.txt - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - !buildNumber.skip!true - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - - - - ${project.version} - RC1 - COMMONSSITE - - - - 1.3 - 1.3 - - - false - - - - - - 2.17 - 2.17 - - 2.9.1 - 0.10 - 2.9 - 2.6.1 - 2.4 - 2.7 - 2.3 - 3.3 - 0.6.4.201312101107 - 2.6 - 2.0-beta-2 - 3.1 - 1.0 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - ${project.artifactId} - - - org.apache.commons.${commons.componentid} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - ${commons.encoding} - - ${commons.encoding} - ${commons.encoding} - - - http://docs.oracle.com/javase/6/docs/api/ - http://docs.oracle.com/javaee/6/api/ - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - false - - - ${user.home}/commons-sites - - ${project.artifactId} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} - ${commons.site.cache}/${commons.site.path} - commons.site - - https://analysis.apache.org/ - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 deleted file mode 100644 index 201a5e597..000000000 --- a/code/arachne/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1f6be162a806d8343e3cd238dd728558532473a5 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/38/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/38/_remote.repositories deleted file mode 100644 index 4b977048c..000000000 --- a/code/arachne/org/apache/commons/commons-parent/38/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:18 EDT 2024 -commons-parent-38.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom b/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom deleted file mode 100644 index af70faeab..000000000 --- a/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom +++ /dev/null @@ -1,1559 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 16 - - org.apache.commons - commons-parent - pom - 38 - Apache Commons Parent - http://commons.apache.org/ - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - - - - - 3.0.1 - - - - continuum - https://continuum-ci.apache.org/ - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-38 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-38 - http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-38 - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-user/ - - http://markmail.org/list/org.apache.commons.users/ - http://old.nabble.com/Commons---User-f319.html - http://www.mail-archive.com/user@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.user - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-dev/ - - http://markmail.org/list/org.apache.commons.dev/ - http://old.nabble.com/Commons---Dev-f317.html - http://www.mail-archive.com/dev@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.devel - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://markmail.org/list/org.apache.commons.issues/ - http://old.nabble.com/Commons---Issues-f25499.html - http://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ - - http://markmail.org/list/org.apache.commons.commits/ - http://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - http://markmail.org/list/org.apache.announce/ - http://old.nabble.com/Apache-News-and-Announce-f109.html - http://www.mail-archive.com/announce@apache.org/ - http://news.gmane.org/gmane.comp.apache.announce - - - - - - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.5.5 - - - org.apache.maven.plugins - maven-clean-plugin - 2.6.1 - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - 1.5 - - - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.7 - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - - org.apache.commons - commons-build-plugin - 1.4 - - ${commons.release.name} - - - - org.apache.felix - maven-bundle-plugin - 2.5.3 - true - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - build-helper-maven-plugin - 1.8 - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.3 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - - - - - - - maven-assembly-plugin - - - src/main/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - true - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - enforce-maven-3 - - enforce - - - - - 3.0.0 - - - true - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${implementation.build} - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${commons.scm-publish.version} - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.encoding} - ${commons.docEncoding} - true - true - - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - project-team - scm - issue-tracking - mailing-list - dependency-info - dependency-management - dependencies - dependency-convergence - cim - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - org.codehaus.mojo - jdepend-maven-plugin - ${commons.jdepend.version} - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - - release - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - test-jar - - - - - - maven-jar-plugin - - - - test-jar - - - - true - - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - - - - maven-assembly-plugin - true - - - - single - - package - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/java - - - - - - java-1.4 - - true - 1.4 - ${JAVA_1_4_HOME}/bin/javac - ${JAVA_1_4_HOME}/bin/java - - 2.11 - - - - - - java-1.5 - - true - 1.5 - ${JAVA_1_5_HOME}/bin/javac - ${JAVA_1_5_HOME}/bin/java - - - - - - java-1.6 - - true - 1.6 - ${JAVA_1_6_HOME}/bin/javac - ${JAVA_1_6_HOME}/bin/java - - - - - - java-1.7 - - true - 1.7 - ${JAVA_1_7_HOME}/bin/javac - ${JAVA_1_7_HOME}/bin/java - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.9 - - true - 1.9 - ${JAVA_1_9_HOME}/bin/javac - ${JAVA_1_9_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - - - - - - trunks-proper - - - ../bcel - ../beanutils - ../betwixt - ../chain - ../cli - ../codec - ../collections - ../compress - ../configuration - ../daemon - ../dbcp - ../dbutils - ../digester - ../discovery - ../el - ../email - ../exec - ../fileupload - ../functor - ../imaging - ../io - ../jci - ../jcs - - ../jexl - ../jxpath - ../lang - ../launcher - ../logging - ../math - ../modeler - ../net - ../ognl - ../pool - ../primitives - ../proxy - ../scxml - - ../validator - ../vfs - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - . - RELEASE-NOTES.txt - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - jdk7-plugin-fix-version - - [1.7,) - - - - 3.0.0 - - 1.13 - - - - - - site-basic - - true - true - true - true - true - true - true - true - true - true - - - - - - - - ${project.version} - RC1 - COMMONSSITE - - - - 1.3 - 1.3 - - - false - - - - - - 2.18.1 - 2.18.1 - 2.10.2 - 0.11 - 2.11 - 2.6.1 - 2.5 - 2.8 - 2.8 - 3.4 - 0.7.4.201502262128 - 2.7 - 2.0 - 3.2 - 1.1 - 2.5.5 - - 1.11 - - 1.0 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - ${project.artifactId} - - - org.apache.commons.${commons.componentid} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - http://docs.oracle.com/javase/7/docs/api/ - http://docs.oracle.com/javaee/6/api/ - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${project.artifactId} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} - ${commons.site.cache}/${commons.site.path} - commons.site - - https://analysis.apache.org/ - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom.sha1 deleted file mode 100644 index f02eb4176..000000000 --- a/code/arachne/org/apache/commons/commons-parent/38/commons-parent-38.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b1fe2a39dc1f76d14fbc402982938ffb5ba1043a \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/39/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/39/_remote.repositories deleted file mode 100644 index c9152b195..000000000 --- a/code/arachne/org/apache/commons/commons-parent/39/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:21 EDT 2024 -commons-parent-39.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom b/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom deleted file mode 100644 index ae0aefe7c..000000000 --- a/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom +++ /dev/null @@ -1,1503 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 16 - - org.apache.commons - commons-parent - pom - 39 - Apache Commons Parent - http://commons.apache.org/ - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - - - - - 3.0.1 - - - - continuum - https://continuum-ci.apache.org/ - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-39 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-39 - http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-39 - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-user/ - - http://markmail.org/list/org.apache.commons.users/ - http://old.nabble.com/Commons---User-f319.html - http://www.mail-archive.com/user@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.user - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-dev/ - - http://markmail.org/list/org.apache.commons.dev/ - http://old.nabble.com/Commons---Dev-f317.html - http://www.mail-archive.com/dev@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.devel - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://markmail.org/list/org.apache.commons.issues/ - http://old.nabble.com/Commons---Issues-f25499.html - http://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ - - http://markmail.org/list/org.apache.commons.commits/ - http://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - http://markmail.org/list/org.apache.announce/ - http://old.nabble.com/Apache-News-and-Announce-f109.html - http://www.mail-archive.com/announce@apache.org/ - http://news.gmane.org/gmane.comp.apache.announce - - - - - - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.5.5 - - - org.apache.maven.plugins - maven-clean-plugin - 2.6.1 - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - - org.apache.maven.plugins - maven-jar-plugin - 2.6 - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.2 - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - 1.5 - - - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.7 - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - - org.apache.commons - commons-build-plugin - 1.4 - - ${commons.release.name} - - - - org.apache.felix - maven-bundle-plugin - 2.5.3 - true - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - build-helper-maven-plugin - 1.9.1 - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.3 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - - - - - - - maven-assembly-plugin - - - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - true - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - enforce-maven-3 - - enforce - - - - - 3.0.0 - - - true - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${implementation.build} - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${commons.scm-publish.version} - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.encoding} - ${commons.docEncoding} - true - true - - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - project-team - scm - issue-tracking - mailing-list - dependency-info - dependency-management - dependencies - dependency-convergence - cim - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - org.codehaus.mojo - jdepend-maven-plugin - ${commons.jdepend.version} - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - - release - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - test-jar - - - - - - maven-jar-plugin - - - - test-jar - - - - true - - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - - - - maven-assembly-plugin - true - - - - single - - package - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/java - - - - - - java-1.4 - - true - 1.4 - ${JAVA_1_4_HOME}/bin/javac - ${JAVA_1_4_HOME}/bin/java - - 2.11 - - - - - - java-1.5 - - true - 1.5 - ${JAVA_1_5_HOME}/bin/javac - ${JAVA_1_5_HOME}/bin/java - - - - - - java-1.6 - - true - 1.6 - ${JAVA_1_6_HOME}/bin/javac - ${JAVA_1_6_HOME}/bin/java - - - - - - java-1.7 - - true - 1.7 - ${JAVA_1_7_HOME}/bin/javac - ${JAVA_1_7_HOME}/bin/java - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.9 - - true - 1.9 - ${JAVA_1_9_HOME}/bin/javac - ${JAVA_1_9_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - . - RELEASE-NOTES.txt - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - jdk7-plugin-fix-version - - [1.7,) - - - - 3.0.0 - - 1.14 - - - - - - site-basic - - true - true - true - true - true - true - true - true - true - true - - - - - - - - ${project.version} - RC1 - COMMONSSITE - - - - 1.3 - 1.3 - - - false - - - - - - 2.18.1 - 2.18.1 - 2.10.3 - 0.11 - 2.11 - 2.6.1 - 2.5 - 2.8 - 2.8 - 3.4 - 0.7.5.201505241946 - 2.7 - 2.0 - 3.3 - 1.1 - 2.5.5 - - 1.11 - - 1.0 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - ${project.artifactId} - - - org.apache.commons.${commons.componentid} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - http://docs.oracle.com/javase/7/docs/api/ - http://docs.oracle.com/javaee/6/api/ - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - 100 - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${project.artifactId} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} - ${commons.site.cache}/${commons.site.path} - commons.site - - https://analysis.apache.org/ - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 deleted file mode 100644 index cea079737..000000000 --- a/code/arachne/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4bc32d3cda9f07814c548492af7bf19b21798d46 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/47/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/47/_remote.repositories deleted file mode 100644 index 09f3fbaaa..000000000 --- a/code/arachne/org/apache/commons/commons-parent/47/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:20 EDT 2024 -commons-parent-47.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom b/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom deleted file mode 100644 index af7d14d07..000000000 --- a/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom +++ /dev/null @@ -1,1944 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 19 - - org.apache.commons - commons-parent - pom - 47 - Apache Commons Parent - http://commons.apache.org/commons-parent-pom.html - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - jira - http://issues.apache.org/jira/browse/COMMONSSITE - - - - - - - - - - - - - - - - 3.0.5 - - - - jenkins - https://builds.apache.org/ - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk - http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-user/ - - http://markmail.org/list/org.apache.commons.users/ - http://old.nabble.com/Commons---User-f319.html - http://www.mail-archive.com/user@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.user - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-dev/ - - http://markmail.org/list/org.apache.commons.dev/ - http://old.nabble.com/Commons---Dev-f317.html - http://www.mail-archive.com/dev@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.devel - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://markmail.org/list/org.apache.commons.issues/ - http://old.nabble.com/Commons---Issues-f25499.html - http://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ - - http://markmail.org/list/org.apache.commons.commits/ - http://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - http://markmail.org/list/org.apache.announce/ - http://old.nabble.com/Apache-News-and-Announce-f109.html - http://www.mail-archive.com/announce@apache.org/ - http://news.gmane.org/gmane.comp.apache.announce - - - - - - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-assembly-plugin - ${commons.assembly-plugin.version} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - true - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.failsafe.version} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - true - - - - org.apache.commons - commons-build-plugin - ${commons.build-plugin.version} - - ${commons.release.name} - - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - true - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - build-helper-maven-plugin - ${commons.build-helper.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - org.codehaus.mojo - versions-maven-plugin - - 2.5 - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - org.apache.bcel - bcel - 6.2 - - - - - - - - - - maven-assembly-plugin - - - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - true - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M2 - - - - 3.0.5 - - - ${maven.compiler.target} - - - true - - - - enforce-maven-3 - - enforce - - - - - - org.apache.maven.plugins - maven-jar-plugin - ${commons.jar-plugin.version} - - - - test-jar - - - - true - - - - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${implementation.build} - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - maven-source-plugin - - - create-source-jar - - jar-no-fork - test-jar-no-fork - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.encoding} - ${commons.docEncoding} - true - true - - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - team - scm - issue-management - mailing-lists - dependency-info - dependency-management - dependencies - dependency-convergence - ci-management - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - - - - org.codehaus.mojo - jdepend-maven-plugin - ${commons.jdepend.version} - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - - true - true - true - - - - - - - - - svn - - - .svn - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - - true - - ?????? - - - javasvn - - - - - - - - - - module-name - - - profile.module-name - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${commons.module.name} - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - clirr - - - src/site/resources/profile.clirr - - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - - - - - - - japicmp - - - src/site/resources/profile.japicmp - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - verify - - cmp - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - - - - - - release - - - - maven-install-plugin - - true - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - - - - maven-assembly-plugin - ${commons.assembly-plugin.version} - true - - - - single - - - verify - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.commons - commons-release-plugin - ${commons.release-plugin.version} - - - detatch-distributions - verify - - detach-distributions - - - - stage-distributions - deploy - - stage-distributions - - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/java - - - - - - java-1.4 - - true - 1.4 - ${JAVA_1_4_HOME}/bin/javac - ${JAVA_1_4_HOME}/bin/java - - 2.11 - - - - - - java-1.5 - - true - 1.5 - ${JAVA_1_5_HOME}/bin/javac - ${JAVA_1_5_HOME}/bin/java - - - - - - java-1.6 - - true - 1.6 - ${JAVA_1_6_HOME}/bin/javac - ${JAVA_1_6_HOME}/bin/java - - - - - - java-1.7 - - true - 1.7 - ${JAVA_1_7_HOME}/bin/javac - ${JAVA_1_7_HOME}/bin/java - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.9 - - true - 1.9 - ${JAVA_1_9_HOME}/bin/javac - ${JAVA_1_9_HOME}/bin/java - - - - - - java-1.10 - - true - 1.10 - ${JAVA_1_10_HOME}/bin/javac - ${JAVA_1_10_HOME}/bin/java - - - - - - java-1.11 - - true - 1.11 - ${JAVA_1_11_HOME}/bin/javac - ${JAVA_1_11_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - true - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - . - RELEASE-NOTES.txt - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - jdk7-plugin-fix-version - - [1.7,) - - - - - - - - site-basic - - true - true - true - true - true - true - true - true - true - true - true - - - - - travis-cobertura - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - xml - - - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - travis-jacoco - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - - - - ${project.version} - RC1 - COMMONSSITE - - - - - 1.3 - 1.3 - - - false - - - - - - 1.9 - 1.3 - 2.22.0 - 2.22.0 - 2.22.0 - 3.0.1 - 0.12 - 2.12.1 - 2.8 - 0.12.0 - 2.5 - 3.0.0 - 3.1.0 - - 3.1.0 - 3.1.0 - 3.7.1 - 0.8.1 - 2.7 - 4.3.0 - EpochMillis - 2.0 - 3.7.0 - 1.1 - 3.0.5 - 3.1.3 - 3.5.0 - 3.0.0 - 1.16 - - 1.0 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - ${project.artifactId} - - ${project.artifactId} - - - org.apache.commons.${commons.packageId} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - http://docs.oracle.com/javase/7/docs/api/ - http://docs.oracle.com/javaee/6/api/ - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - 100 - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${commons.componentid} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${commons.componentid} - ${commons.site.cache}/${commons.site.path} - commons.site - - - true - false - - - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - - ${user.name} - DEADBEEF - - https://analysis.apache.org/ - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom.sha1 deleted file mode 100644 index 593ecb526..000000000 --- a/code/arachne/org/apache/commons/commons-parent/47/commons-parent-47.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -391715f2f4f1b32604a201a2f4ea74a174e1f21c \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/50/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/50/_remote.repositories deleted file mode 100644 index 7adf5e487..000000000 --- a/code/arachne/org/apache/commons/commons-parent/50/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -commons-parent-50.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom b/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom deleted file mode 100644 index 7d83ae426..000000000 --- a/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom +++ /dev/null @@ -1,1879 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 21 - - org.apache.commons - commons-parent - 50 - pom - Apache Commons Parent - The Apache Commons Parent POM provides common settings for all Apache Commons components. - https://commons.apache.org/commons-parent-pom.html - - - - - - - ${project.version} - RC1 - COMMONSSITE - - - - - 1.3 - 1.3 - - - false - - - - - 1.18 - - 1.0 - 3.2.0 - 3.0.0 - 1.11 - 2.12.1 - 3.1.0 - 2.8 - 2.7 - 3.8.1 - 4.3.0 - EpochMillis - 2.22.2 - 4.2.1 - 3.0.5 - 0.8.5 - 0.14.1 - 3.2.0 - 3.1.1 - 2.0 - 3.0.0 - 3.12.0 - 3.0.0 - 0.13 - 1.7 - 1.1 - - - 3.8.2 - 3.2.0 - 3.1.6 - 2.22.2 - 2.22.2 - 3.3.4 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - ${project.artifactId} - - - ${project.artifactId} - - - org.apache.commons.${commons.packageId} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - http://docs.oracle.com/javase/6/docs/api/ - http://docs.oracle.com/javase/7/docs/api/ - http://docs.oracle.com/javase/8/docs/api/ - http://docs.oracle.com/javase/9/docs/api/ - http://docs.oracle.com/javase/10/docs/api/ - https://docs.oracle.com/en/java/javase/11/docs/api/ - https://docs.oracle.com/en/java/javase/12/docs/api/ - - ${commons.javadoc7.java.link} - - http://docs.oracle.com/javaee/5/api/ - http://docs.oracle.com/javaee/6/api/ - http://docs.oracle.com/javaee/7/api/ - - ${commons.javadoc.javaee6.link} - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - 100 - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${commons.componentid} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} - ${commons.site.cache}/${commons.site.path} - commons.site - - - true - false - false - - - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - - ${user.name} - DEADBEEF - - https://analysis.apache.org/ - - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-user/ - - https://markmail.org/list/org.apache.commons.users/ - https://www.mail-archive.com/user@commons.apache.org/ - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-dev/ - - https://markmail.org/list/org.apache.commons.dev/ - https://www.mail-archive.com/dev@commons.apache.org/ - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-issues/ - - https://markmail.org/list/org.apache.commons.issues/ - https://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-commits/ - - https://markmail.org/list/org.apache.commons.commits/ - https://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - https://markmail.org/list/org.apache.announce/ - https://www.mail-archive.com/announce@apache.org/ - - - - - - 3.0.5 - - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git - scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git - https://gitbox.apache.org/repos/asf?p=commons-parent.git - - - - jira - https://issues.apache.org/jira/browse/COMMONSSITE - - - - jenkins - https://builds.apache.org/ - - - - - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-assembly-plugin - ${commons.assembly-plugin.version} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - true - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-source-plugin - ${commons.source-plugin.version} - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.failsafe.version} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - - ${project.groupId} - ${project.artifactId} - ${commons.bc.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} - - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - - - - org.apache.commons - commons-build-plugin - ${commons.build-plugin.version} - - ${commons.release.name} - - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - true - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - build-helper-maven-plugin - ${commons.build-helper.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - org.codehaus.mojo - versions-maven-plugin - - 2.7 - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - org.apache.bcel - bcel - 6.4.1 - - - - - - - - - - maven-assembly-plugin - - - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - true - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M2 - - - - 3.0.5 - - - ${maven.compiler.target} - - - true - - - - enforce-maven-3 - - enforce - - - - - - org.apache.maven.plugins - maven-jar-plugin - ${commons.jar-plugin.version} - - - - test-jar - - - - true - - - - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${implementation.build} - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - maven-source-plugin - - - create-source-jar - - jar-no-fork - test-jar-no-fork - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - - - - rat-check - validate - - check - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.encoding} - ${commons.docEncoding} - true - true - - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - team - scm - issue-management - mailing-lists - dependency-info - dependency-management - dependencies - dependency-convergence - ci-management - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - - - - org.codehaus.mojo - jdepend-maven-plugin - ${commons.jdepend.version} - - - - - - - svn - - - .svn - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - - true - - ?????? - - - javasvn - - - - - - - - - - module-name - - - profile.module-name - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${commons.module.name} - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - report - - - - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - clirr - - - src/site/resources/profile.clirr - - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - - - - - - - japicmp - - [1.8,) - - src/site/resources/profile.japicmp - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - verify - - cmp - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - - - - - - - - - release - - - - maven-install-plugin - - true - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - - - - maven-assembly-plugin - ${commons.assembly-plugin.version} - true - - - - single - - - verify - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.commons - commons-release-plugin - ${commons.release-plugin.version} - - - clean-staging - clean - - clean-staging - - - - detatch-distributions - verify - - detach-distributions - - - - stage-distributions - deploy - - stage-distributions - - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/java - - - - - - java-1.4 - - true - 1.4 - ${JAVA_1_4_HOME}/bin/javac - ${JAVA_1_4_HOME}/bin/java - - 2.11 - - - - - - java-1.5 - - true - 1.5 - ${JAVA_1_5_HOME}/bin/javac - ${JAVA_1_5_HOME}/bin/java - - - - - - java-1.6 - - true - 1.6 - ${JAVA_1_6_HOME}/bin/javac - ${JAVA_1_6_HOME}/bin/java - - - - - - java-1.7 - - true - 1.7 - ${JAVA_1_7_HOME}/bin/javac - ${JAVA_1_7_HOME}/bin/java - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.9 - - true - 1.9 - ${JAVA_1_9_HOME}/bin/javac - ${JAVA_1_9_HOME}/bin/java - - - - - - java-1.10 - - true - 1.10 - ${JAVA_1_10_HOME}/bin/javac - ${JAVA_1_10_HOME}/bin/java - - - - - - java-1.11 - - true - 1.11 - ${JAVA_1_11_HOME}/bin/javac - ${JAVA_1_11_HOME}/bin/java - - - - - - java-1.12 - - true - 1.12 - ${JAVA_1_12_HOME}/bin/javac - ${JAVA_1_12_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - true - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - . - RELEASE-NOTES.txt - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - jdk7-plugin-fix-version - - [1.7,1.8) - - - - 3.5.1 - - - - - - site-basic - - true - true - true - true - true - true - true - true - true - true - true - - - - - travis-cobertura - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - xml - - - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - travis-jacoco - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom.sha1 deleted file mode 100644 index 54fb06969..000000000 --- a/code/arachne/org/apache/commons/commons-parent/50/commons-parent-50.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b47c55b7ee647e1c78546791e7f4fe59b842c320 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/52/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/52/_remote.repositories deleted file mode 100644 index 0e3015c1f..000000000 --- a/code/arachne/org/apache/commons/commons-parent/52/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -commons-parent-52.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom b/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom deleted file mode 100644 index 6571e70ba..000000000 --- a/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom +++ /dev/null @@ -1,1943 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 23 - - org.apache.commons - commons-parent - 52 - pom - Apache Commons Parent - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - https://commons.apache.org/commons-parent-pom.html - - - - - - - ${project.version} - RC1 - COMMONSSITE - - - - - 1.3 - 1.3 - - - false - - - - - - 1.19 - - - 1.0 - 3.3.0 - 3.2.0 - 1.11 - 2.12.1 - 3.1.1 - 2.8 - 2.7 - 3.8.1 - 4.3.0 - EpochMillis - 2.22.2 - 5.1.1 - 3.0.5 - 0.8.5 - 0.14.3 - 3.2.0 - 3.2.0 - 2.0 - 3.0.0 - 3.13.0 - 3.1.0 - 0.13 - 1.7 - 1.1 - - 5.1.2 - - - - 3.9.1 - 3.2.1 - 4.0.4 - 4.0.6 - 2.22.2 - 2.22.2 - 3.4.0 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - ${project.artifactId} - - - ${project.artifactId} - - - org.apache.commons.${commons.packageId} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - http://docs.oracle.com/javase/6/docs/api/ - http://docs.oracle.com/javase/7/docs/api/ - http://docs.oracle.com/javase/8/docs/api/ - http://docs.oracle.com/javase/9/docs/api/ - http://docs.oracle.com/javase/10/docs/api/ - https://docs.oracle.com/en/java/javase/11/docs/api/ - https://docs.oracle.com/en/java/javase/12/docs/api/ - https://docs.oracle.com/en/java/javase/13/docs/api/ - - ${commons.javadoc7.java.link} - - http://docs.oracle.com/javaee/5/api/ - http://docs.oracle.com/javaee/6/api/ - http://docs.oracle.com/javaee/7/api/ - - ${commons.javadoc.javaee6.link} - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - 100 - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${commons.componentid} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} - ${commons.site.cache}/${commons.site.path} - commons.site - - - true - false - false - - - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - - ${user.name} - DEADBEEF - - https://analysis.apache.org/ - - - . - RELEASE-NOTES.txt - - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-user/ - - https://markmail.org/list/org.apache.commons.users/ - https://www.mail-archive.com/user@commons.apache.org/ - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-dev/ - - https://markmail.org/list/org.apache.commons.dev/ - https://www.mail-archive.com/dev@commons.apache.org/ - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-issues/ - - https://markmail.org/list/org.apache.commons.issues/ - https://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-commits/ - - https://markmail.org/list/org.apache.commons.commits/ - https://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - https://markmail.org/list/org.apache.announce/ - https://www.mail-archive.com/announce@apache.org/ - - - - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git - scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git - https://gitbox.apache.org/repos/asf?p=commons-parent.git - - - - jira - https://issues.apache.org/jira/browse/COMMONSSITE - - - - jenkins - https://builds.apache.org/ - - - - - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-assembly-plugin - ${commons.assembly-plugin.version} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.compiler.javadoc} - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - true - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-source-plugin - ${commons.source-plugin.version} - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.failsafe.version} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - - ${project.groupId} - ${project.artifactId} - ${commons.bc.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} - - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - - - - org.apache.commons - commons-build-plugin - ${commons.build-plugin.version} - - ${commons.release.name} - - - - org.apache.commons - commons-release-plugin - ${commons.release-plugin.version} - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - true - - - - biz.aQute.bnd - biz.aQute.bndlib - ${biz.aQute.bndlib.version} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - build-helper-maven-plugin - ${commons.build-helper.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - org.codehaus.mojo - versions-maven-plugin - - 2.7 - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - org.apache.bcel - bcel - 6.5.0 - - - - - - - - - - maven-assembly-plugin - - - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - true - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - - 3.5.0 - - - ${maven.compiler.target} - - - true - - - - enforce-maven-3 - - enforce - - - - - - org.apache.maven.plugins - maven-jar-plugin - ${commons.jar-plugin.version} - - - - test-jar - - - - true - - - - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${implementation.build} - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - maven-source-plugin - - - create-source-jar - - jar-no-fork - test-jar-no-fork - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - - - - rat-check - validate - - check - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.compiler.javadoc} - ${commons.encoding} - ${commons.docEncoding} - true - true - - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - team - scm - issue-management - mailing-lists - dependency-info - dependency-management - dependencies - dependency-convergence - ci-management - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - - - - org.codehaus.mojo - jdepend-maven-plugin - ${commons.jdepend.version} - - - - - - - svn - - - .svn - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - - true - - ?????? - - - javasvn - - - - - - - - - - module-name - - - profile.module-name - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${commons.module.name} - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - report - - - - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - clirr - - - src/site/resources/profile.clirr - - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - - - - - - - japicmp - - [1.8,) - - src/site/resources/profile.japicmp - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - verify - - cmp - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - - - - - - - - - release - - - - maven-install-plugin - - true - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - ${commons.compiler.javadoc} - - - - maven-assembly-plugin - ${commons.assembly-plugin.version} - true - - - - single - - - verify - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.commons - commons-release-plugin - - - clean-staging - clean - - clean-staging - - - - detatch-distributions - verify - - detach-distributions - - - - stage-distributions - deploy - - stage-distributions - - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/javadoc - ${JAVA_1_3_HOME}/bin/java - - - - - - java-1.4 - - true - 1.4 - ${JAVA_1_4_HOME}/bin/javac - ${JAVA_1_4_HOME}/bin/javadoc - ${JAVA_1_4_HOME}/bin/java - - 2.11 - - - - - - java-1.5 - - true - 1.5 - ${JAVA_1_5_HOME}/bin/javac - ${JAVA_1_5_HOME}/bin/javadoc - ${JAVA_1_5_HOME}/bin/java - - - - - - java-1.6 - - true - 1.6 - ${JAVA_1_6_HOME}/bin/javac - ${JAVA_1_6_HOME}/bin/javadoc - ${JAVA_1_6_HOME}/bin/java - - - - - - java-1.7 - - true - 1.7 - ${JAVA_1_7_HOME}/bin/javac - ${JAVA_1_7_HOME}/bin/javadoc - ${JAVA_1_7_HOME}/bin/java - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/javadoc - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.9 - - true - 1.9 - ${JAVA_1_9_HOME}/bin/javac - ${JAVA_1_9_HOME}/bin/javadoc - ${JAVA_1_9_HOME}/bin/java - - - - - - java-1.10 - - true - 1.10 - ${JAVA_1_10_HOME}/bin/javac - ${JAVA_1_10_HOME}/bin/javadoc - ${JAVA_1_10_HOME}/bin/java - - - - - - java-1.11 - - true - 1.11 - ${JAVA_1_11_HOME}/bin/javac - ${JAVA_1_11_HOME}/bin/javadoc - ${JAVA_1_11_HOME}/bin/java - - - - - - java-1.12 - - true - 1.12 - ${JAVA_1_12_HOME}/bin/javac - ${JAVA_1_12_HOME}/bin/javadoc - ${JAVA_1_12_HOME}/bin/java - - - - - - java-1.13 - - true - 1.13 - ${JAVA_1_13_HOME}/bin/javac - ${JAVA_1_13_HOME}/bin/javadoc - ${JAVA_1_13_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - true - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - ${changes.announcementDirectory} - ${changes.announcementFile} - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - jdk7-plugin-fix-version - - [1.7,1.8) - - - - 3.5.1 - 1.17 - 3.5.0 - - - - - - site-basic - - true - true - true - true - true - true - true - true - true - true - true - - - - - travis-cobertura - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - xml - - - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - travis-jacoco - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom.sha1 deleted file mode 100644 index 9d7f8af9e..000000000 --- a/code/arachne/org/apache/commons/commons-parent/52/commons-parent-52.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -004ee86dedc66d0010ccdc29e5a4ce014c057854 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/56/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/56/_remote.repositories deleted file mode 100644 index 5666955ec..000000000 --- a/code/arachne/org/apache/commons/commons-parent/56/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -commons-parent-56.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom b/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom deleted file mode 100644 index f1cd35c7a..000000000 --- a/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom +++ /dev/null @@ -1,1995 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 29 - - org.apache.commons - commons-parent - 56 - pom - Apache Commons Parent - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - 2006 - https://commons.apache.org/proper/commons-parent/ - - - - - - 3.3.9 - - - 2022-12-30T16:12:53Z - ${project.version} - RC1 - COMMONSSITE - - 55 - true - Gary Gregory - 86fdc7e2a11262cb - - - - - 1.3 - 1.3 - - - false - - - - - - 1.22 - - 1.0 - 3.4.2 - 3.3.0 - 1.12 - 2.12.1 - 3.2.0 - 9.3 - 2.7 - 3.10.1 - 4.3.0 - EpochMillis - 2.7.3 - 0.6.3 - 3.0.0-M7 - 5.1.8 - 0.8.8 - 0.17.1 - 3.3.0 - 3.4.1 - 3.3.0 - 3.19.0 - 6.52.0 - 3.4.1 - 0.15 - 1.8.0 - 1.1 - 3.1.0 - 3.0.0 - 6.4.0 - 5.9.1 - - - - 3.12.1 - 3.2.1 - 4.7.3.0 - 4.7.3 - 3.0.0-M7 - 3.0.0-M7 - 3.5.3 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - ${project.artifactId} - - - ${project.artifactId} - - - org.apache.commons.${commons.packageId} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - https://docs.oracle.com/javase/6/docs/api/ - https://docs.oracle.com/javase/7/docs/api/ - https://docs.oracle.com/javase/8/docs/api/ - https://docs.oracle.com/javase/9/docs/api/ - https://docs.oracle.com/javase/10/docs/api/ - https://docs.oracle.com/en/java/javase/11/docs/api/ - https://docs.oracle.com/en/java/javase/12/docs/api/ - https://docs.oracle.com/en/java/javase/13/docs/api/ - https://docs.oracle.com/en/java/javase/14/docs/api/ - https://docs.oracle.com/en/java/javase/15/docs/api/ - https://docs.oracle.com/en/java/javase/16/docs/api/ - https://docs.oracle.com/en/java/javase/17/docs/api/ - https://docs.oracle.com/en/java/javase/18/docs/api/ - https://docs.oracle.com/en/java/javase/19/docs/api/ - - ${commons.javadoc7.java.link} - - https://docs.oracle.com/javaee/5/api/ - https://docs.oracle.com/javaee/6/api/ - https://docs.oracle.com/javaee/7/api/ - - ${commons.javadoc.javaee6.link} - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${commons.componentid} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} - ${commons.site.cache}/${commons.site.path} - commons.site - - - true - false - false - - - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - - ${user.name} - DEADBEEF - - https://analysis.apache.org/ - - - . - RELEASE-NOTES.txt - - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-user/ - - https://markmail.org/list/org.apache.commons.users/ - https://www.mail-archive.com/user@commons.apache.org/ - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-dev/ - - https://markmail.org/list/org.apache.commons.dev/ - https://www.mail-archive.com/dev@commons.apache.org/ - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-issues/ - - https://markmail.org/list/org.apache.commons.issues/ - https://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-commits/ - - https://markmail.org/list/org.apache.commons.commits/ - https://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - https://markmail.org/list/org.apache.announce/ - https://www.mail-archive.com/announce@apache.org/ - - - - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git - scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git - https://gitbox.apache.org/repos/asf?p=commons-parent.git - - - - jira - https://issues.apache.org/jira/browse/COMMONSSITE - - - - GitHub - https://github.com/apache/commons-parent/actions - - - - - - org.junit - junit-bom - ${commons.junit.version} - pom - import - - - - - - - clean apache-rat:check package site - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-assembly-plugin - ${commons.assembly-plugin.version} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.compiler.javadoc} - ${commons.encoding} - ${commons.docEncoding} - - true - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - true - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-source-plugin - ${commons.source-plugin.version} - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.failsafe.version} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - - ${project.groupId} - ${project.artifactId} - ${commons.bc.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.jar - - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - METHOD_ADDED_TO_INTERFACE - false - false - PATCH - - - - - - - org.apache.commons - commons-build-plugin - ${commons.build-plugin.version} - - ${commons.release.name} - - - - org.apache.commons - commons-release-plugin - ${commons.release-plugin.version} - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - true - - - - biz.aQute.bnd - biz.aQute.bndlib - ${commons.biz.aQute.bndlib.version} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - build-helper-maven-plugin - ${commons.build-helper.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - ${commons.buildnumber-plugin.version} - - - org.codehaus.mojo - versions-maven-plugin - - 2.14.2 - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - org.apache.bcel - bcel - 6.7.0 - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${commons.checkstyle-plugin.version} - - - com.puppycrawl.tools - checkstyle - ${commons.checkstyle.version} - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${commons.spotbugs.plugin.version} - - - com.github.spotbugs - spotbugs - ${commons.spotbugs.impl.version} - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd.version} - - - net.sourceforge.pmd - pmd-core - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-java - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-javascript - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-jsp - ${commons.pmd-impl.version} - - - - - org.cyclonedx - cyclonedx-maven-plugin - ${commons.cyclonedx.version} - - - make-bom - package - - makeBom - - - - - library - 1.4 - true - true - true - true - true - false - false - true - all - ${project.artifactId}-${project.version}-bom - - - - org.spdx - spdx-maven-plugin - ${commons.spdx.version} - - - build-spdx - - createSPDX - - - - - - *.spdx - - - - - org.codehaus.mojo - javancss-maven-plugin - - - - - - - **/*.java - - - - - - - - - - maven-assembly-plugin - - - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - true - org.apache.maven.plugins - maven-enforcer-plugin - ${commons.enforcer-plugin.version} - - - - 3.5.0 - - - ${maven.compiler.target} - - - true - - - - enforce-maven-3 - - enforce - - - - - - org.apache.maven.plugins - maven-jar-plugin - ${commons.jar-plugin.version} - - - - test-jar - - - - true - - - - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${implementation.build} - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - maven-source-plugin - - - create-source-jar - - jar-no-fork - test-jar-no-fork - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - rat-check - validate - - check - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.codehaus.mojo - versions-maven-plugin - - - org.cyclonedx - cyclonedx-maven-plugin - - - org.spdx - spdx-maven-plugin - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - team - scm - issue-management - mailing-lists - dependency-info - dependency-management - dependencies - dependency-convergence - ci-management - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - - - - - svn - - - .svn - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - - true - - ?????? - - - javasvn - - - - - - - - - - module-name - - - profile.module-name - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${commons.module.name} - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - report - - - - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - japicmp - - [1.8,) - - src/site/resources/profile.japicmp - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - verify - - cmp - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - - - - - - - - - release - - - - maven-install-plugin - - true - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - ${commons.compiler.javadoc} - - - - maven-assembly-plugin - ${commons.assembly-plugin.version} - true - - - - single - - - verify - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.commons - commons-release-plugin - - - clean-staging - clean - - clean-staging - - - - detatch-distributions - verify - - detach-distributions - - - - stage-distributions - deploy - - stage-distributions - - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.7 - - true - 1.7 - ${JAVA_1_7_HOME}/bin/javac - ${JAVA_1_7_HOME}/bin/javadoc - ${JAVA_1_7_HOME}/bin/java - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/javadoc - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.9 - - true - 1.9 - ${JAVA_1_9_HOME}/bin/javac - ${JAVA_1_9_HOME}/bin/javadoc - ${JAVA_1_9_HOME}/bin/java - - - - - - java-1.10 - - true - 1.10 - ${JAVA_1_10_HOME}/bin/javac - ${JAVA_1_10_HOME}/bin/javadoc - ${JAVA_1_10_HOME}/bin/java - - - - - - java-1.11 - - true - 1.11 - ${JAVA_1_11_HOME}/bin/javac - ${JAVA_1_11_HOME}/bin/javadoc - ${JAVA_1_11_HOME}/bin/java - - - - - - java-1.12 - - true - 1.12 - ${JAVA_1_12_HOME}/bin/javac - ${JAVA_1_12_HOME}/bin/javadoc - ${JAVA_1_12_HOME}/bin/java - - - - - - java-1.13 - - true - 1.13 - ${JAVA_1_13_HOME}/bin/javac - ${JAVA_1_13_HOME}/bin/javadoc - ${JAVA_1_13_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - true - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - ${changes.announcementDirectory} - ${changes.announcementFile} - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - jdk7-plugin-fix-version - - [1.7,1.8) - - - 3.5.1 - 1.17 - 3.5.0 - - - - - - site-basic - - true - true - true - true - true - true - true - true - - - - - travis-cobertura - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - xml - - - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - travis-jacoco - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom.sha1 deleted file mode 100644 index 0429fd817..000000000 --- a/code/arachne/org/apache/commons/commons-parent/56/commons-parent-56.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d0fbfc1a68d5b07be160c5012e2e7fcdbacecbf4 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/58/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/58/_remote.repositories deleted file mode 100644 index 7a2aab81e..000000000 --- a/code/arachne/org/apache/commons/commons-parent/58/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:11 EDT 2024 -commons-parent-58.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom b/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom deleted file mode 100644 index d5a65359b..000000000 --- a/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom +++ /dev/null @@ -1,2007 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 29 - - org.apache.commons - commons-parent - 58 - pom - Apache Commons Parent - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - 2006 - https://commons.apache.org/proper/commons-parent/ - - - - - - 3.6.3 - - - 2023-05-20T13:25:23Z - ${project.version} - RC1 - COMMONSSITE - - 57 - true - Gary Gregory - 86fdc7e2a11262cb - - - - - 1.3 - 1.3 - - - 8 - - - false - - - - - - 1.23 - - 1.0 - 3.5.0 - 3.4.0 - 1.12 - 2.12.1 - 3.2.2 - 9.3 - 2.7 - 3.11.0 - 4.3.0 - EpochMillis - 2.7.9 - 0.6.5 - 3.0.0 - 5.1.8 - 0.8.10 - 0.17.2 - 3.3.0 - 3.5.0 - 3.3.0 - 3.20.0 - 6.55.0 - 3.4.3 - 0.15 - 1.8.0 - 1.1 - 3.3.0 - 3.1.0 - 6.4.0 - 5.9.3 - - - - 3.12.1 - 3.2.1 - 4.7.3.4 - 4.7.3 - 3.0.0 - 3.0.0 - 3.5.3 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - ${project.artifactId} - - - ${project.artifactId} - - - org.apache.commons.${commons.packageId} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - https://docs.oracle.com/javase/6/docs/api/ - https://docs.oracle.com/javase/7/docs/api/ - https://docs.oracle.com/javase/8/docs/api/ - https://docs.oracle.com/javase/9/docs/api/ - https://docs.oracle.com/javase/10/docs/api/ - https://docs.oracle.com/en/java/javase/11/docs/api/ - https://docs.oracle.com/en/java/javase/12/docs/api/ - https://docs.oracle.com/en/java/javase/13/docs/api/ - https://docs.oracle.com/en/java/javase/14/docs/api/ - https://docs.oracle.com/en/java/javase/15/docs/api/ - https://docs.oracle.com/en/java/javase/16/docs/api/ - https://docs.oracle.com/en/java/javase/17/docs/api/ - https://docs.oracle.com/en/java/javase/18/docs/api/ - https://docs.oracle.com/en/java/javase/19/docs/api/ - https://docs.oracle.com/en/java/javase/20/docs/api/ - - ${commons.javadoc8.java.link} - - https://docs.oracle.com/javaee/5/api/ - https://docs.oracle.com/javaee/6/api/ - https://docs.oracle.com/javaee/7/api/ - - ${commons.javadoc.javaee6.link} - - - info - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${commons.componentid} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} - ${commons.site.cache}/${commons.site.path} - commons.site - - - true - false - false - - - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - - ${user.name} - DEADBEEF - - https://analysis.apache.org/ - - - . - RELEASE-NOTES.txt - - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-user/ - - https://markmail.org/list/org.apache.commons.users/ - https://www.mail-archive.com/user@commons.apache.org/ - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-dev/ - - https://markmail.org/list/org.apache.commons.dev/ - https://www.mail-archive.com/dev@commons.apache.org/ - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-issues/ - - https://markmail.org/list/org.apache.commons.issues/ - https://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-commits/ - - https://markmail.org/list/org.apache.commons.commits/ - https://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - https://markmail.org/list/org.apache.announce/ - https://www.mail-archive.com/announce@apache.org/ - - - - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git - scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git - https://gitbox.apache.org/repos/asf?p=commons-parent.git - - - - jira - https://issues.apache.org/jira/browse/COMMONSSITE - - - - GitHub - https://github.com/apache/commons-parent/actions - - - - - - org.junit - junit-bom - ${commons.junit.version} - pom - import - - - - - - - clean apache-rat:check package site - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-assembly-plugin - ${commons.assembly-plugin.version} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.compiler.javadoc} - ${commons.encoding} - ${commons.docEncoding} - - true - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - true - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-source-plugin - ${commons.source-plugin.version} - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.failsafe.version} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - - ${project.groupId} - ${project.artifactId} - ${commons.bc.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.jar - - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - METHOD_ADDED_TO_INTERFACE - false - false - PATCH - - - - - - - org.apache.commons - commons-build-plugin - ${commons.build-plugin.version} - - ${commons.release.name} - - - - org.apache.commons - commons-release-plugin - ${commons.release-plugin.version} - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - true - - - - biz.aQute.bnd - biz.aQute.bndlib - ${commons.biz.aQute.bndlib.version} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - build-helper-maven-plugin - ${commons.build-helper.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - ${commons.buildnumber-plugin.version} - - - org.codehaus.mojo - versions-maven-plugin - - 2.15.0 - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - org.apache.bcel - bcel - 6.7.0 - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${commons.checkstyle-plugin.version} - - - com.puppycrawl.tools - checkstyle - ${commons.checkstyle.version} - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${commons.spotbugs.plugin.version} - - - com.github.spotbugs - spotbugs - ${commons.spotbugs.impl.version} - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd.version} - - - net.sourceforge.pmd - pmd-core - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-java - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-javascript - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-jsp - ${commons.pmd-impl.version} - - - - - org.cyclonedx - cyclonedx-maven-plugin - ${commons.cyclonedx.version} - - - make-bom - package - - makeAggregateBom - - - - - ${project.artifactId}-${project.version}-bom - - - - org.spdx - spdx-maven-plugin - ${commons.spdx.version} - - - build-spdx - - createSPDX - - - - - - org.codehaus.mojo - javancss-maven-plugin - - - - - - - **/*.java - - - - - - - - - - maven-assembly-plugin - - - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - true - org.apache.maven.plugins - maven-enforcer-plugin - ${commons.enforcer-plugin.version} - - - - ${minimalMavenBuildVersion} - - - ${maven.compiler.target} - - - true - - - - enforce-maven-3 - - enforce - - - - - - org.apache.maven.plugins - maven-jar-plugin - ${commons.jar-plugin.version} - - - - test-jar - - - - true - - - - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - maven-source-plugin - - - create-source-jar - - jar-no-fork - test-jar-no-fork - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - rat-check - validate - - check - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.codehaus.mojo - versions-maven-plugin - - - org.cyclonedx - cyclonedx-maven-plugin - - - org.spdx - spdx-maven-plugin - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - team - scm - issue-management - mailing-lists - dependency-info - dependency-management - dependencies - dependency-convergence - ci-management - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - - - - - svn - - - .svn - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - - true - - ?????? - - - javasvn - - - - - - - - - - module-name - - - profile.module-name - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${commons.module.name} - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - report - - - - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - japicmp - - [1.8,) - - src/site/resources/profile.japicmp - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - verify - - cmp - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - - - - - - - - - release - - - - maven-install-plugin - - true - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - ${commons.compiler.javadoc} - - - - maven-assembly-plugin - ${commons.assembly-plugin.version} - true - - - - single - - - verify - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.commons - commons-release-plugin - - - clean-staging - clean - - clean-staging - - - - detatch-distributions - verify - - detach-distributions - - - - stage-distributions - deploy - - stage-distributions - - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.7 - - true - 1.7 - ${JAVA_1_7_HOME}/bin/javac - ${JAVA_1_7_HOME}/bin/javadoc - ${JAVA_1_7_HOME}/bin/java - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/javadoc - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.9 - - true - 1.9 - ${JAVA_1_9_HOME}/bin/javac - ${JAVA_1_9_HOME}/bin/javadoc - ${JAVA_1_9_HOME}/bin/java - - - - - - java-1.10 - - true - 1.10 - ${JAVA_1_10_HOME}/bin/javac - ${JAVA_1_10_HOME}/bin/javadoc - ${JAVA_1_10_HOME}/bin/java - - - - - - java-1.11 - - true - 1.11 - ${JAVA_1_11_HOME}/bin/javac - ${JAVA_1_11_HOME}/bin/javadoc - ${JAVA_1_11_HOME}/bin/java - - - - - - java-1.12 - - true - 1.12 - ${JAVA_1_12_HOME}/bin/javac - ${JAVA_1_12_HOME}/bin/javadoc - ${JAVA_1_12_HOME}/bin/java - - - - - - java-1.13 - - true - 1.13 - ${JAVA_1_13_HOME}/bin/javac - ${JAVA_1_13_HOME}/bin/javadoc - ${JAVA_1_13_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - true - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - ${changes.announcementDirectory} - ${changes.announcementFile} - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - jdk7-plugin-fix-version - - [1.7,1.8) - - - 3.5.1 - 1.17 - 3.5.0 - - - - - jdk8-plugin-fix-version - - [1.8,1.9) - - - 0.6.3 - - - - - jdk9-compiler - - [9 - - - - ${commons.compiler.release} - - - - - - site-basic - - true - true - true - true - true - true - true - true - - - - - travis-cobertura - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - xml - - - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - travis-jacoco - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom.sha1 deleted file mode 100644 index f277a5560..000000000 --- a/code/arachne/org/apache/commons/commons-parent/58/commons-parent-58.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -26758faad5d4d692a3cee724c42605d2ee9d5284 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/61/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/61/_remote.repositories deleted file mode 100644 index 3bfd4df1d..000000000 --- a/code/arachne/org/apache/commons/commons-parent/61/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:12 EDT 2024 -commons-parent-61.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom b/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom deleted file mode 100644 index d2a3da9eb..000000000 --- a/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom +++ /dev/null @@ -1,1953 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 30 - - org.apache.commons - commons-parent - 61 - pom - Apache Commons Parent - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - 2006 - https://commons.apache.org/proper/commons-parent/ - - - - - - 3.6.3 - - 8 - - - 2023-08-26T12:41:06Z - ${project.version} - RC1 - COMMONSSITE - - 60 - true - Gary Gregory - 86fdc7e2a11262cb - - - - - 1.3 - 1.3 - - - 8 - - - false - - - - - - 3.2.1 - - - 1.23 - - 1.0 - 3.6.0 - 3.4.0 - 1.13 - 2.12.1 - 3.3.0 - 9.3 - 2.7 - 3.11.0 - 4.3.0 - EpochMillis - 2.7.9 - 0.7.0 - 3.1.2 - 5.1.9 - 0.8.10 - 0.17.2 - 3.3.0 - 3.5.0 - 3.3.0 - 3.21.0 - 6.55.0 - 3.4.5 - 0.15 - 1.8.1 - 1.1 - 3.2.0 - 1.0.0.Final - 6.4.1 - 5.10.0 - - - - 3.12.1 - 4.7.3.5 - 4.7.3 - 3.1.2 - 3.1.2 - 3.5.3 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - ${project.artifactId} - - - ${project.artifactId} - - - org.apache.commons.${commons.packageId} - - - org.apache.commons.${commons.packageId} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - https://docs.oracle.com/javase/6/docs/api/ - https://docs.oracle.com/javase/7/docs/api/ - https://docs.oracle.com/javase/8/docs/api/ - https://docs.oracle.com/javase/9/docs/api/ - https://docs.oracle.com/javase/10/docs/api/ - https://docs.oracle.com/en/java/javase/11/docs/api/ - https://docs.oracle.com/en/java/javase/12/docs/api/ - https://docs.oracle.com/en/java/javase/13/docs/api/ - https://docs.oracle.com/en/java/javase/14/docs/api/ - https://docs.oracle.com/en/java/javase/15/docs/api/ - https://docs.oracle.com/en/java/javase/16/docs/api/ - https://docs.oracle.com/en/java/javase/17/docs/api/ - https://docs.oracle.com/en/java/javase/18/docs/api/ - https://docs.oracle.com/en/java/javase/19/docs/api/ - https://docs.oracle.com/en/java/javase/20/docs/api/ - - ${commons.javadoc8.java.link} - - https://docs.oracle.com/javaee/5/api/ - https://docs.oracle.com/javaee/6/api/ - https://docs.oracle.com/javaee/7/api/ - https://jakarta.ee/specifications/platform/8/apidocs/ - https://jakarta.ee/specifications/platform/9/apidocs/ - https://jakarta.ee/specifications/platform/9.1/apidocs/ - https://jakarta.ee/specifications/platform/10/apidocs/ - - ${commons.javadoc.javaee6.link} - - - info - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${commons.componentid} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} - ${commons.site.cache}/${commons.site.path} - commons.site - - - true - false - false - - - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - - ${user.name} - DEADBEEF - - https://analysis.apache.org/ - - - . - RELEASE-NOTES.txt - - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-user/ - - https://markmail.org/list/org.apache.commons.users/ - https://www.mail-archive.com/user@commons.apache.org/ - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-dev/ - - https://markmail.org/list/org.apache.commons.dev/ - https://www.mail-archive.com/dev@commons.apache.org/ - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-issues/ - - https://markmail.org/list/org.apache.commons.issues/ - https://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-commits/ - - https://markmail.org/list/org.apache.commons.commits/ - https://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - https://markmail.org/list/org.apache.announce/ - https://www.mail-archive.com/announce@apache.org/ - - - - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git - scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git - https://gitbox.apache.org/repos/asf?p=commons-parent.git - - - - jira - https://issues.apache.org/jira/browse/COMMONSSITE - - - - GitHub - https://github.com/apache/commons-parent/actions - - - - - - org.junit - junit-bom - ${commons.junit.version} - pom - import - - - - - - - clean apache-rat:check package site - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-assembly-plugin - ${commons.assembly-plugin.version} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.compiler.javadoc} - ${commons.encoding} - ${commons.docEncoding} - - true - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - true - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.failsafe.version} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - - ${project.groupId} - ${project.artifactId} - ${commons.bc.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.jar - - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - METHOD_ADDED_TO_INTERFACE - false - false - PATCH - - - - - - - org.apache.commons - commons-build-plugin - ${commons.build-plugin.version} - - ${commons.release.name} - - - - org.apache.commons - commons-release-plugin - ${commons.release-plugin.version} - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - true - - - - biz.aQute.bnd - biz.aQute.bndlib - ${commons.biz.aQute.bndlib.version} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - build-helper-maven-plugin - ${commons.build-helper.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - ${commons.buildnumber-plugin.version} - - - org.codehaus.mojo - versions-maven-plugin - - 2.16.0 - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - org.apache.bcel - bcel - 6.7.0 - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${commons.checkstyle-plugin.version} - - - com.puppycrawl.tools - checkstyle - ${commons.checkstyle.version} - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${commons.spotbugs.plugin.version} - - - com.github.spotbugs - spotbugs - ${commons.spotbugs.impl.version} - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd.version} - - - net.sourceforge.pmd - pmd-core - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-java - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-javascript - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-jsp - ${commons.pmd-impl.version} - - - - - org.cyclonedx - cyclonedx-maven-plugin - ${commons.cyclonedx.version} - - - build-sbom-cyclonedx - package - - makeAggregateBom - - - - - ${project.artifactId}-${project.version}-bom - - - - org.spdx - spdx-maven-plugin - ${commons.spdx.version} - - - build-sbom-spdx - package - - createSPDX - - - - - - org.codehaus.mojo - javancss-maven-plugin - - - - - - - **/*.java - - - - - - - - - maven-assembly-plugin - - - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-jar-plugin - ${commons.jar-plugin.version} - - - - test-jar - - - - true - - - - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - maven-source-plugin - - - - true - true - - - - - - create-source-jar - - jar-no-fork - test-jar-no-fork - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire-report.version} - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - rat-check - validate - - check - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.codehaus.mojo - versions-maven-plugin - - - org.cyclonedx - cyclonedx-maven-plugin - - - org.spdx - spdx-maven-plugin - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - team - scm - issue-management - mailing-lists - dependency-info - dependency-management - dependencies - dependency-convergence - ci-management - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - - - - - svn - - - .svn - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - - true - - ?????? - - - javasvn - - - - - - - - - - module-name - - - profile.module-name - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${commons.module.name} - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - (,9) - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - report - - - - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - japicmp - - [1.8,) - - src/site/resources/profile.japicmp - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - verify - - cmp - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - - - - - - - - - release - - - - maven-install-plugin - - true - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - ${commons.compiler.javadoc} - - - - maven-assembly-plugin - ${commons.assembly-plugin.version} - true - - - - single - - - verify - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.commons - commons-release-plugin - - - clean-staging - clean - - clean-staging - - - - detatch-distributions - verify - - detach-distributions - - - - stage-distributions - deploy - - stage-distributions - - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/javadoc - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.11 - - true - 1.11 - ${JAVA_1_11_HOME}/bin/javac - ${JAVA_1_11_HOME}/bin/javadoc - ${JAVA_1_11_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - true - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - ${changes.announcementDirectory} - ${changes.announcementFile} - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - javasvn - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - javasvn - - - - - - - - - jdk7-plugin-fix-version - - [1.7,1.8) - - - 3.5.1 - 1.17 - 3.5.0 - - - - - jdk8-plugin-fix-version - - [1.8,1.9) - - - 0.6.3 - - - - - jdk9-compiler - - [9 - - - - ${commons.compiler.release} - - - - - - site-basic - - true - true - true - true - true - true - true - true - - - - - travis-cobertura - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - xml - - - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - travis-jacoco - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - org.eluder.coveralls - coveralls-maven-plugin - ${commons.coveralls.version} - - ${commons.coveralls.timestampFormat} - - - - - - - - moditect - - [9,) - - - 9 - - - - - org.moditect - moditect-maven-plugin - ${commons.moditect-maven-plugin.version} - - - add-module-infos - package - - add-module-info - - - ${moditect.java.version} - - --multi-release=${moditect.java.version} - - ${project.build.directory} - true - false - - - ${commons.module.name} - - - - - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom.sha1 deleted file mode 100644 index 7910ac1ab..000000000 --- a/code/arachne/org/apache/commons/commons-parent/61/commons-parent-61.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -018672c655ff005d7962a59c74f93b2f31f27386 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/64/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/64/_remote.repositories deleted file mode 100644 index cd433d548..000000000 --- a/code/arachne/org/apache/commons/commons-parent/64/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:25 EDT 2024 -commons-parent-64.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom b/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom deleted file mode 100644 index e455c1fb8..000000000 --- a/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom +++ /dev/null @@ -1,1876 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 30 - - org.apache.commons - commons-parent - 64 - pom - Apache Commons Parent - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - 2006 - https://commons.apache.org/proper/commons-parent/ - - - - - - 3.6.3 - - 8 - - - 2023-10-06T14:12:42Z - 64 - 65 - RC1 - COMMONSSITE - - - 63 - true - - - - - - 1.3 - 1.3 - - - 8 - - - false - - - - - - 3.2.1 - - - 1.23 - - 1.0 - 3.6.0 - 3.4.0 - 1.13 - 2.12.1 - 3.3.0 - 9.3 - 2.7 - 3.11.0 - 2.7.9 - 0.7.0 - 3.1.2 - 5.1.9 - 0.8.10 - 0.18.1 - 3.3.0 - 3.6.0 - 3.3.0 - 3.21.0 - 6.55.0 - 3.4.5 - 0.15 - 1.8.1 - 1.1 - 3.2.0 - 1.0.0.Final - true - 6.4.1 - 5.10.0 - - - - 3.12.1 - 4.7.3.6 - 4.7.3 - 3.1.2 - 3.1.2 - 3.5.3 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - parent - - - ${project.artifactId} - - - org.apache.commons.${commons.packageId} - - - org.apache.commons.${commons.packageId} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - https://docs.oracle.com/javase/6/docs/api/ - https://docs.oracle.com/javase/7/docs/api/ - https://docs.oracle.com/javase/8/docs/api/ - https://docs.oracle.com/javase/9/docs/api/ - https://docs.oracle.com/javase/10/docs/api/ - https://docs.oracle.com/en/java/javase/11/docs/api/ - https://docs.oracle.com/en/java/javase/12/docs/api/ - https://docs.oracle.com/en/java/javase/13/docs/api/ - https://docs.oracle.com/en/java/javase/14/docs/api/ - https://docs.oracle.com/en/java/javase/15/docs/api/ - https://docs.oracle.com/en/java/javase/16/docs/api/ - https://docs.oracle.com/en/java/javase/17/docs/api/ - https://docs.oracle.com/en/java/javase/18/docs/api/ - https://docs.oracle.com/en/java/javase/19/docs/api/ - https://docs.oracle.com/en/java/javase/20/docs/api/ - - ${commons.javadoc8.java.link} - - https://docs.oracle.com/javaee/5/api/ - https://docs.oracle.com/javaee/6/api/ - https://docs.oracle.com/javaee/7/api/ - https://jakarta.ee/specifications/platform/8/apidocs/ - https://jakarta.ee/specifications/platform/9/apidocs/ - https://jakarta.ee/specifications/platform/9.1/apidocs/ - https://jakarta.ee/specifications/platform/10/apidocs/ - - ${commons.javadoc.javaee6.link} - - - info - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${commons.componentid} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} - ${commons.site.cache}/${commons.site.path} - commons.site - - - true - false - false - - - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - src/conf - - https://analysis.apache.org/ - - - . - RELEASE-NOTES.txt - - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-user/ - - https://markmail.org/list/org.apache.commons.users/ - https://www.mail-archive.com/user@commons.apache.org/ - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-dev/ - - https://markmail.org/list/org.apache.commons.dev/ - https://www.mail-archive.com/dev@commons.apache.org/ - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-issues/ - - https://markmail.org/list/org.apache.commons.issues/ - https://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-commits/ - - https://markmail.org/list/org.apache.commons.commits/ - https://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - https://markmail.org/list/org.apache.announce/ - https://www.mail-archive.com/announce@apache.org/ - - - - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git - scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git - https://gitbox.apache.org/repos/asf?p=commons-parent.git - - - - jira - https://issues.apache.org/jira/browse/COMMONSSITE - - - - GitHub - https://github.com/apache/commons-parent/actions - - - - - - org.junit - junit-bom - ${commons.junit.version} - pom - import - - - - - - - clean apache-rat:check package site - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-assembly-plugin - ${commons.assembly-plugin.version} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.compiler.javadoc} - ${commons.encoding} - ${commons.docEncoding} - - true - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - true - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.failsafe.version} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - - ${project.groupId} - ${project.artifactId} - ${commons.bc.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.jar - - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - METHOD_ADDED_TO_INTERFACE - false - false - PATCH - - - - - - - org.apache.commons - commons-build-plugin - ${commons.build-plugin.version} - - ${commons.release.name} - - - - org.apache.commons - commons-release-plugin - ${commons.release-plugin.version} - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - true - - - - biz.aQute.bnd - biz.aQute.bndlib - ${commons.biz.aQute.bndlib.version} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - build-helper-maven-plugin - ${commons.build-helper.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - ${commons.buildnumber-plugin.version} - - - org.codehaus.mojo - versions-maven-plugin - - 2.16.1 - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - org.apache.bcel - bcel - 6.7.0 - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${commons.checkstyle-plugin.version} - - - com.puppycrawl.tools - checkstyle - ${commons.checkstyle.version} - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${commons.spotbugs.plugin.version} - - - com.github.spotbugs - spotbugs - ${commons.spotbugs.impl.version} - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd.version} - - - net.sourceforge.pmd - pmd-core - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-java - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-javascript - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-jsp - ${commons.pmd-impl.version} - - - - - org.cyclonedx - cyclonedx-maven-plugin - ${commons.cyclonedx.version} - - - build-sbom-cyclonedx - package - - makeAggregateBom - - - - - ${project.artifactId}-${project.version}-bom - - - - org.spdx - spdx-maven-plugin - ${commons.spdx.version} - - - build-sbom-spdx - package - - createSPDX - - - - - - org.codehaus.mojo - javancss-maven-plugin - - - - - - - **/*.java - - - - - - - - - maven-assembly-plugin - - - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-jar-plugin - ${commons.jar-plugin.version} - - - - test-jar - - - - true - - - - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - maven-source-plugin - - - - true - true - - - - - - create-source-jar - - jar-no-fork - test-jar-no-fork - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire-report.version} - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - rat-check - validate - - check - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.codehaus.mojo - versions-maven-plugin - - - org.cyclonedx - cyclonedx-maven-plugin - - - org.spdx - spdx-maven-plugin - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - team - scm - issue-management - mailing-lists - dependency-info - dependency-management - dependencies - dependency-convergence - ci-management - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - - - - - - - module-name - - - profile.module-name - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${commons.module.name} - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - (,9) - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - report - - - - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - japicmp - - [1.8,) - - src/site/resources/profile.japicmp - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - verify - - cmp - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - - - - - - - - - release - - - - maven-install-plugin - - true - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - ${commons.compiler.javadoc} - - - - maven-assembly-plugin - ${commons.assembly-plugin.version} - true - - - - single - - - verify - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.commons - commons-release-plugin - - - clean-staging - clean - - clean-staging - - - - detatch-distributions - verify - - detach-distributions - - - - stage-distributions - deploy - - stage-distributions - - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/javadoc - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.11 - - true - 1.11 - ${JAVA_1_11_HOME}/bin/javac - ${JAVA_1_11_HOME}/bin/javadoc - ${JAVA_1_11_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - true - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - ${changes.announcementDirectory} - ${changes.announcementFile} - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - jdk7-plugin-fix-version - - [1.7,1.8) - - - 3.5.1 - 1.17 - 3.5.0 - - - - - jdk8-plugin-fix-version - - [1.8,1.9) - - - 0.6.3 - - - - - - site-basic - - true - true - true - true - true - true - true - true - - - - - java-9-up - - [9,) - - - 9 - true - - ${commons.compiler.release} - - - - - org.moditect - moditect-maven-plugin - ${commons.moditect-maven-plugin.version} - - - add-module-infos - package - - add-module-info - - - ${moditect.java.version} - - --multi-release=${moditect.java.version} - - ${project.build.directory} - true - false - - - ${commons.module.name} - ${commons.moditect-maven-plugin.addServiceUses} - - - - - - - - - - - - - java-11-up - - [11,) - - - 10.12.4 - - - - - - java-17-up - - [17,) - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom.sha1 deleted file mode 100644 index 1a8f79584..000000000 --- a/code/arachne/org/apache/commons/commons-parent/64/commons-parent-64.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aec2c7e06fc7ab9271cd4d076e8251df6a0d55da \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/65/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/65/_remote.repositories deleted file mode 100644 index c2f6523e0..000000000 --- a/code/arachne/org/apache/commons/commons-parent/65/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:14 EDT 2024 -commons-parent-65.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom b/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom deleted file mode 100644 index 91c892ea3..000000000 --- a/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom +++ /dev/null @@ -1,1876 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 31 - - org.apache.commons - commons-parent - 65 - pom - Apache Commons Parent - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - 2006 - https://commons.apache.org/proper/commons-parent/ - - - - - - 3.6.3 - - 8 - - - 2023-11-18T01:56:28Z - 65 - 66 - RC1 - COMMONSSITE - - - 64 - true - - - - - - 1.3 - 1.3 - - - 8 - - - false - - - - - - 3.2.1 - - - 1.23 - - 1.0 - 3.6.0 - 3.4.0 - 1.13 - 2.12.1 - 3.3.1 - 9.3 - 2.7 - 3.11.0 - 2.7.10 - 0.7.0 - 3.2.2 - 5.1.9 - 0.8.11 - 0.18.3 - 3.3.0 - 3.6.2 - 3.3.1 - 3.21.2 - 6.55.0 - 3.4.5 - 0.15 - 1.8.1 - 1.1 - 3.2.0 - 1.1.0 - true - 6.4.1 - 5.10.1 - - - - 3.12.1 - 4.8.1.0 - 4.8.1 - 3.2.2 - 3.2.2 - 3.5.3 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - parent - - - ${project.artifactId} - - - org.apache.commons.${commons.packageId} - - - org.apache.commons.${commons.packageId} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - https://docs.oracle.com/javase/6/docs/api/ - https://docs.oracle.com/javase/7/docs/api/ - https://docs.oracle.com/javase/8/docs/api/ - https://docs.oracle.com/javase/9/docs/api/ - https://docs.oracle.com/javase/10/docs/api/ - https://docs.oracle.com/en/java/javase/11/docs/api/ - https://docs.oracle.com/en/java/javase/12/docs/api/ - https://docs.oracle.com/en/java/javase/13/docs/api/ - https://docs.oracle.com/en/java/javase/14/docs/api/ - https://docs.oracle.com/en/java/javase/15/docs/api/ - https://docs.oracle.com/en/java/javase/16/docs/api/ - https://docs.oracle.com/en/java/javase/17/docs/api/ - https://docs.oracle.com/en/java/javase/18/docs/api/ - https://docs.oracle.com/en/java/javase/19/docs/api/ - https://docs.oracle.com/en/java/javase/20/docs/api/ - - ${commons.javadoc8.java.link} - - https://docs.oracle.com/javaee/5/api/ - https://docs.oracle.com/javaee/6/api/ - https://docs.oracle.com/javaee/7/api/ - https://jakarta.ee/specifications/platform/8/apidocs/ - https://jakarta.ee/specifications/platform/9/apidocs/ - https://jakarta.ee/specifications/platform/9.1/apidocs/ - https://jakarta.ee/specifications/platform/10/apidocs/ - - ${commons.javadoc.javaee6.link} - - - info - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${commons.componentid} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} - ${commons.site.cache}/${commons.site.path} - commons.site - - - true - false - false - - - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - src/conf - - https://analysis.apache.org/ - - - . - RELEASE-NOTES.txt - - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-user/ - - https://markmail.org/list/org.apache.commons.users/ - https://www.mail-archive.com/user@commons.apache.org/ - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-dev/ - - https://markmail.org/list/org.apache.commons.dev/ - https://www.mail-archive.com/dev@commons.apache.org/ - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-issues/ - - https://markmail.org/list/org.apache.commons.issues/ - https://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-commits/ - - https://markmail.org/list/org.apache.commons.commits/ - https://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - https://markmail.org/list/org.apache.announce/ - https://www.mail-archive.com/announce@apache.org/ - - - - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git - scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git - https://gitbox.apache.org/repos/asf?p=commons-parent.git - - - - jira - https://issues.apache.org/jira/browse/COMMONSSITE - - - - GitHub - https://github.com/apache/commons-parent/actions - - - - - - org.junit - junit-bom - ${commons.junit.version} - pom - import - - - - - - - clean apache-rat:check verify site - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-assembly-plugin - ${commons.assembly-plugin.version} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.compiler.javadoc} - ${commons.encoding} - ${commons.docEncoding} - - true - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - true - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.failsafe.version} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - - ${project.groupId} - ${project.artifactId} - ${commons.bc.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.jar - - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - METHOD_ADDED_TO_INTERFACE - false - false - PATCH - - - - - - - org.apache.commons - commons-build-plugin - ${commons.build-plugin.version} - - ${commons.release.name} - - - - org.apache.commons - commons-release-plugin - ${commons.release-plugin.version} - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - true - - - - biz.aQute.bnd - biz.aQute.bndlib - ${commons.biz.aQute.bndlib.version} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - build-helper-maven-plugin - ${commons.build-helper.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - ${commons.buildnumber-plugin.version} - - - org.codehaus.mojo - versions-maven-plugin - - 2.16.2 - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - org.apache.bcel - bcel - 6.7.0 - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${commons.checkstyle-plugin.version} - - - com.puppycrawl.tools - checkstyle - ${commons.checkstyle.version} - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${commons.spotbugs.plugin.version} - - - com.github.spotbugs - spotbugs - ${commons.spotbugs.impl.version} - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd.version} - - - net.sourceforge.pmd - pmd-core - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-java - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-javascript - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-jsp - ${commons.pmd-impl.version} - - - - - org.cyclonedx - cyclonedx-maven-plugin - ${commons.cyclonedx.version} - - - build-sbom-cyclonedx - package - - makeAggregateBom - - - - - ${project.artifactId}-${project.version}-bom - - - - org.spdx - spdx-maven-plugin - ${commons.spdx.version} - - - build-sbom-spdx - package - - createSPDX - - - - - - org.codehaus.mojo - javancss-maven-plugin - 2.1 - - - - - - - **/*.java - - - - - org.codehaus.mojo - exec-maven-plugin - 3.1.1 - - - - - - - maven-assembly-plugin - - - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-jar-plugin - ${commons.jar-plugin.version} - - - - test-jar - - - - true - - - - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - maven-source-plugin - - - - true - true - - - - - - create-source-jar - - jar-no-fork - test-jar-no-fork - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - rat-check - validate - - check - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.codehaus.mojo - versions-maven-plugin - - - org.cyclonedx - cyclonedx-maven-plugin - - - org.spdx - spdx-maven-plugin - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - team - scm - issue-management - mailing-lists - dependency-info - dependency-management - dependencies - dependency-convergence - ci-management - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - - - - - - - module-name - - - profile.module-name - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${commons.module.name} - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - (,9) - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - report - - - - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - japicmp - - [1.8,) - - src/site/resources/profile.japicmp - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - verify - - cmp - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - - - - - - - - - release - - - - maven-install-plugin - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - ${commons.compiler.javadoc} - - - - maven-assembly-plugin - ${commons.assembly-plugin.version} - true - - - - single - - - verify - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.commons - commons-release-plugin - - - clean-staging - clean - - clean-staging - - - - detatch-distributions - verify - - detach-distributions - - - - stage-distributions - deploy - - stage-distributions - - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/javadoc - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.11 - - true - 1.11 - ${JAVA_1_11_HOME}/bin/javac - ${JAVA_1_11_HOME}/bin/javadoc - ${JAVA_1_11_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - true - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - ${changes.announcementDirectory} - ${changes.announcementFile} - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - jdk7-plugin-fix-version - - [1.7,1.8) - - - 3.5.1 - 1.17 - 3.5.0 - - - - - jdk8-plugin-fix-version - - [1.8,1.9) - - - 0.6.3 - - - - - - site-basic - - true - true - true - true - true - true - true - true - - - - - java-9-up - - [9,) - - - 9 - true - - ${commons.compiler.release} - - - - - org.moditect - moditect-maven-plugin - ${commons.moditect-maven-plugin.version} - - - add-module-infos - package - - add-module-info - - - ${moditect.java.version} - - --multi-release=${moditect.java.version} - - ${project.build.directory} - true - false - - - ${commons.module.name} - ${commons.moditect-maven-plugin.addServiceUses} - - - - - - - - - - - - - java-11-up - - [11,) - - - 10.12.5 - - - - - - java-17-up - - [17,) - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom.sha1 deleted file mode 100644 index 3f9947d24..000000000 --- a/code/arachne/org/apache/commons/commons-parent/65/commons-parent-65.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a5e6a3fd684242815f2ffd77ed8b316d549ed01b \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/66/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/66/_remote.repositories deleted file mode 100644 index e95a92a7a..000000000 --- a/code/arachne/org/apache/commons/commons-parent/66/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:23 EDT 2024 -commons-parent-66.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom b/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom deleted file mode 100644 index 0d4d5cbd5..000000000 --- a/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom +++ /dev/null @@ -1,1880 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 31 - - org.apache.commons - commons-parent - 66 - pom - Apache Commons Parent - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - 2006 - https://commons.apache.org/proper/commons-parent/ - - - - - - 3.6.3 - - 8 - - - 2024-01-29T13:15:17Z - 66 - 67 - RC1 - COMMONSSITE - - - 65 - true - - - - - - 1.3 - 1.3 - - - 8 - - - false - - - - - - 3.2.1 - - - 1.23 - - 1.0 - 3.6.0 - 3.5.0 - 1.13 - 2.12.1 - 3.3.1 - - 9.3 - 2.7 - 3.12.1 - 2.7.11 - 0.7.2 - 3.2.5 - 5.1.9 - 0.8.11 - 0.18.3 - 3.3.0 - 3.6.3 - 3.3.2 - 3.21.2 - 6.55.0 - 3.5.0 - 0.16.1 - 1.8.1 - 1.1 - 3.2.0 - 1.1.0 - true - - 6.4.1 - 5.10.1 - - - - 3.12.1 - 4.8.3.0 - 4.8.3 - 3.2.5 - 3.2.5 - 3.5.3 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - parent - - - ${project.artifactId} - - - org.apache.commons.${commons.packageId} - - - org.apache.commons.${commons.packageId} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - https://docs.oracle.com/javase/8/docs/api/ - https://docs.oracle.com/en/java/javase/11/docs/api/ - https://docs.oracle.com/en/java/javase/17/docs/api/ - https://docs.oracle.com/en/java/javase/21/docs/api/ - - ${commons.javadoc8.java.link} - - https://docs.oracle.com/javaee/5/api/ - https://docs.oracle.com/javaee/6/api/ - https://docs.oracle.com/javaee/7/api/ - https://jakarta.ee/specifications/platform/8/apidocs/ - https://jakarta.ee/specifications/platform/9/apidocs/ - https://jakarta.ee/specifications/platform/9.1/apidocs/ - https://jakarta.ee/specifications/platform/10/apidocs/ - - ${commons.javadoc.javaee6.link} - - - info - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${commons.componentid} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} - ${commons.site.cache}/${commons.site.path} - commons.site - - - true - false - false - - - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - src/conf - - https://analysis.apache.org/ - - - . - RELEASE-NOTES.txt - - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-user/ - - https://www.mail-archive.com/user@commons.apache.org/ - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-dev/ - - https://www.mail-archive.com/dev@commons.apache.org/ - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-issues/ - - https://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-commits/ - - https://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - https://www.mail-archive.com/announce@apache.org/ - - - - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git - scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git - https://gitbox.apache.org/repos/asf?p=commons-parent.git - - - - jira - https://issues.apache.org/jira/browse/COMMONSSITE - - - - GitHub - https://github.com/apache/commons-parent/actions - - - - - - org.junit - junit-bom - ${commons.junit.version} - pom - import - - - - - - - clean apache-rat:check verify site - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-assembly-plugin - ${commons.assembly-plugin.version} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.compiler.javadoc} - ${commons.encoding} - ${commons.docEncoding} - - true - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - true - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.failsafe.version} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - - ${project.groupId} - ${project.artifactId} - ${commons.bc.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.jar - - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - METHOD_ADDED_TO_INTERFACE - false - false - PATCH - - - - - - - org.apache.commons - commons-build-plugin - ${commons.build-plugin.version} - - ${commons.release.name} - - - - org.apache.commons - commons-release-plugin - ${commons.release-plugin.version} - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - true - - - - biz.aQute.bnd - biz.aQute.bndlib - ${commons.biz.aQute.bndlib.version} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.apache.maven.plugins - maven-artifact-plugin - 3.5.0 - - - org.codehaus.mojo - build-helper-maven-plugin - ${commons.build-helper.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - ${commons.buildnumber-plugin.version} - - - org.codehaus.mojo - versions-maven-plugin - - 2.16.2 - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - org.apache.bcel - bcel - 6.8.1 - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${commons.checkstyle-plugin.version} - - - com.puppycrawl.tools - checkstyle - ${commons.checkstyle.version} - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${commons.spotbugs.plugin.version} - - - com.github.spotbugs - spotbugs - ${commons.spotbugs.impl.version} - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd.version} - - - net.sourceforge.pmd - pmd-core - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-java - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-javascript - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-jsp - ${commons.pmd-impl.version} - - - - - org.cyclonedx - cyclonedx-maven-plugin - ${commons.cyclonedx.version} - - - build-sbom-cyclonedx - package - - makeAggregateBom - - - - - ${project.artifactId}-${project.version}-bom - - - - org.spdx - spdx-maven-plugin - ${commons.spdx.version} - - - build-sbom-spdx - package - - createSPDX - - - - - - org.codehaus.mojo - javancss-maven-plugin - 2.1 - - - - - - - **/*.java - - - - - org.codehaus.mojo - exec-maven-plugin - 3.1.1 - - - - - - - maven-assembly-plugin - - - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-jar-plugin - ${commons.jar-plugin.version} - - - - test-jar - - - - true - - - - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - maven-source-plugin - - - - true - true - - - - - - create-source-jar - - jar-no-fork - test-jar-no-fork - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - rat-check - validate - - check - - - - - - org.apache.maven.plugins - maven-artifact-plugin - - - check-buildplan - validate - - check-buildplan - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.codehaus.mojo - versions-maven-plugin - - - org.cyclonedx - cyclonedx-maven-plugin - - - org.spdx - spdx-maven-plugin - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - team - scm - issue-management - mailing-lists - dependency-info - dependency-management - dependencies - dependency-convergence - ci-management - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - - - - - - - module-name - - - profile.module-name - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${commons.module.name} - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - (,9) - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - report - - - - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - japicmp - - [1.8,) - - src/site/resources/profile.japicmp - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - verify - - cmp - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - - - - - - - - - release - - - - maven-install-plugin - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - ${commons.compiler.javadoc} - - - - maven-assembly-plugin - ${commons.assembly-plugin.version} - true - - - - single - - - verify - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.commons - commons-release-plugin - - - clean-staging - clean - - clean-staging - - - - detatch-distributions - verify - - detach-distributions - - - - stage-distributions - deploy - - stage-distributions - - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/javadoc - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.11 - - true - 1.11 - ${JAVA_1_11_HOME}/bin/javac - ${JAVA_1_11_HOME}/bin/javadoc - ${JAVA_1_11_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - true - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - ${changes.announcementDirectory} - ${changes.announcementFile} - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - jdk7-plugin-fix-version - - [1.7,1.8) - - - 3.5.1 - 1.17 - 3.5.0 - - - - - jdk8-plugin-fix-version - - [1.8,1.9) - - - 0.6.3 - - - - - - site-basic - - true - true - true - true - true - true - true - true - - - - - java-9-up - - [9,) - - - 9 - true - - ${commons.compiler.release} - - - - - org.moditect - moditect-maven-plugin - ${commons.moditect-maven-plugin.version} - - - add-module-infos - package - - add-module-info - - - ${moditect.java.version} - - --multi-release=${moditect.java.version} - - ${project.build.directory} - true - false - - - ${commons.module.name} - ${commons.moditect-maven-plugin.addServiceUses} - - - - - - - - - - - - - java-11-up - - [11,) - - - 10.13.0 - - - - - - java-17-up - - [17,) - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom.sha1 deleted file mode 100644 index 5d6e3303f..000000000 --- a/code/arachne/org/apache/commons/commons-parent/66/commons-parent-66.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -24cf85c9d30c5ca5a2f48d806e93d8328b622a8c \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-parent/69/_remote.repositories b/code/arachne/org/apache/commons/commons-parent/69/_remote.repositories deleted file mode 100644 index 8b150faab..000000000 --- a/code/arachne/org/apache/commons/commons-parent/69/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:25 EDT 2024 -commons-parent-69.pom>central= diff --git a/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom b/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom deleted file mode 100644 index 28ce320da..000000000 --- a/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom +++ /dev/null @@ -1,1880 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 31 - - org.apache.commons - commons-parent - 69 - pom - Apache Commons Parent - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - 2006 - https://commons.apache.org/proper/commons-parent/ - - - - - - 3.6.3 - - 8 - - - 2024-03-29T12:56:59Z - 69 - 70 - RC1 - COMMONSSITE - - - 68 - true - - - - - - 1.3 - 1.3 - - - 8 - - - false - - - - - - 3.2.1 - - - 1.23 - - 1.0 - 3.7.1 - 3.5.0 - 1.13 - 2.12.1 - 3.3.1 - - 9.3 - 2.7 - 3.13.0 - 2.8.0 - 0.7.3 - 3.2.5 - 5.1.9 - 0.8.11 - 0.20.0 - 3.3.0 - 3.6.3 - 3.3.2 - 3.21.2 - 6.55.0 - 3.5.0 - 0.16.1 - 1.8.1 - 1.1 - 3.2.0 - 1.2.1.Final - true - - 6.4.1 - 5.10.2 - - - - 3.12.1 - 4.8.3.1 - 4.8.3 - 3.2.5 - 3.2.5 - 3.5.3 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - parent - - - ${project.artifactId} - - - org.apache.commons.${commons.packageId} - - - org.apache.commons.${commons.packageId} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - https://docs.oracle.com/javase/8/docs/api/ - https://docs.oracle.com/en/java/javase/11/docs/api/ - https://docs.oracle.com/en/java/javase/17/docs/api/ - https://docs.oracle.com/en/java/javase/21/docs/api/ - - ${commons.javadoc8.java.link} - - https://docs.oracle.com/javaee/5/api/ - https://docs.oracle.com/javaee/6/api/ - https://docs.oracle.com/javaee/7/api/ - https://jakarta.ee/specifications/platform/8/apidocs/ - https://jakarta.ee/specifications/platform/9/apidocs/ - https://jakarta.ee/specifications/platform/9.1/apidocs/ - https://jakarta.ee/specifications/platform/10/apidocs/ - - ${commons.javadoc.javaee6.link} - - - info - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${commons.componentid} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} - ${commons.site.cache}/${commons.site.path} - commons.site - - - true - false - false - - - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - src/conf - - https://analysis.apache.org/ - - - . - RELEASE-NOTES.txt - - - - - - - - - Commons User List - user-subscribe@commons.apache.org - user-unsubscribe@commons.apache.org - user@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-user/ - - https://www.mail-archive.com/user@commons.apache.org/ - - - - Commons Dev List - dev-subscribe@commons.apache.org - dev-unsubscribe@commons.apache.org - dev@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-dev/ - - https://www.mail-archive.com/dev@commons.apache.org/ - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-issues/ - - https://www.mail-archive.com/issues@commons.apache.org/ - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - https://mail-archives.apache.org/mod_mbox/commons-commits/ - - https://www.mail-archive.com/commits@commons.apache.org/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - https://www.mail-archive.com/announce@apache.org/ - - - - - - - scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git - scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git - https://gitbox.apache.org/repos/asf?p=commons-parent.git - - - - jira - https://issues.apache.org/jira/browse/COMMONSSITE - - - - GitHub - https://github.com/apache/commons-parent/actions - - - - - - org.junit - junit-bom - ${commons.junit.version} - pom - import - - - - - - - clean apache-rat:check verify site - - - - src/main/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - src/test/resources - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - NOTICE - LICENSE - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${commons.compiler.version} - - ${maven.compiler.source} - ${maven.compiler.target} - ${commons.encoding} - - ${commons.compiler.fork} - - ${commons.compiler.compilerVersion} - ${commons.compiler.javac} - - - - org.apache.maven.plugins - maven-assembly-plugin - ${commons.assembly-plugin.version} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.compiler.javadoc} - ${commons.encoding} - ${commons.docEncoding} - - true - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - true - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.failsafe.version} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - - ${project.groupId} - ${project.artifactId} - ${commons.bc.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.jar - - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - METHOD_ADDED_TO_INTERFACE - false - false - PATCH - - - - - - - org.apache.commons - commons-build-plugin - ${commons.build-plugin.version} - - ${commons.release.name} - - - - org.apache.commons - commons-release-plugin - ${commons.release-plugin.version} - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - true - - - - biz.aQute.bnd - biz.aQute.bndlib - ${commons.biz.aQute.bndlib.version} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.apache.maven.plugins - maven-artifact-plugin - 3.5.0 - - - org.codehaus.mojo - build-helper-maven-plugin - ${commons.build-helper.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - ${commons.buildnumber-plugin.version} - - - org.codehaus.mojo - versions-maven-plugin - - 2.16.2 - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - prepare-agent - process-test-classes - - prepare-agent - - - - report - site - - report - - - - check - - check - - - - - BUNDLE - - - CLASS - COVEREDRATIO - ${commons.jacoco.classRatio} - - - INSTRUCTION - COVEREDRATIO - ${commons.jacoco.instructionRatio} - - - METHOD - COVEREDRATIO - ${commons.jacoco.methodRatio} - - - BRANCH - COVEREDRATIO - ${commons.jacoco.branchRatio} - - - LINE - COVEREDRATIO - ${commons.jacoco.lineRatio} - - - COMPLEXITY - COVEREDRATIO - ${commons.jacoco.complexityRatio} - - - - - ${commons.jacoco.haltOnFailure} - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - org.apache.bcel - bcel - 6.8.2 - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${commons.checkstyle-plugin.version} - - - com.puppycrawl.tools - checkstyle - ${commons.checkstyle.version} - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${commons.spotbugs.plugin.version} - - - com.github.spotbugs - spotbugs - ${commons.spotbugs.impl.version} - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd.version} - - - net.sourceforge.pmd - pmd-core - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-java - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-javascript - ${commons.pmd-impl.version} - - - net.sourceforge.pmd - pmd-jsp - ${commons.pmd-impl.version} - - - - - org.cyclonedx - cyclonedx-maven-plugin - ${commons.cyclonedx.version} - - - build-sbom-cyclonedx - package - - makeAggregateBom - - - - - ${project.artifactId}-${project.version}-bom - - - - org.spdx - spdx-maven-plugin - ${commons.spdx.version} - - - build-sbom-spdx - package - - createSPDX - - - - - - org.codehaus.mojo - javancss-maven-plugin - 2.1 - - - - - - - **/*.java - - - - - org.codehaus.mojo - exec-maven-plugin - 3.2.0 - - - - - - - maven-assembly-plugin - - - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-jar-plugin - ${commons.jar-plugin.version} - - - - test-jar - - - - true - - - - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - maven-source-plugin - - - - true - true - - - - - - create-source-jar - - jar-no-fork - test-jar-no-fork - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - ${commons.surefire.java} - - - - - org.apache.commons - commons-build-plugin - - - org.apache.felix - maven-bundle-plugin - - - - true - - ${commons.osgi.excludeDependencies} - ${project.build.directory}/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.rat - apache-rat-plugin - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - rat-check - validate - - check - - - - - - org.apache.maven.plugins - maven-artifact-plugin - - - check-buildplan - validate - - check-buildplan - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - scm:svn:${commons.scmPubUrl} - ${commons.scmPubCheckoutDirectory} - ${commons.scmPubServer} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.codehaus.mojo - versions-maven-plugin - - - org.cyclonedx - cyclonedx-maven-plugin - - - org.spdx - spdx-maven-plugin - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - ${basedir}/src/changes/changes.xml - Fix Version,Key,Component,Summary,Type,Resolution,Status - - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - Bug,New Feature,Task,Improvement,Wish,Test - - true - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes-report - jira-report - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${commons.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - - - index - summary - modules - - team - scm - issue-management - mailing-lists - dependency-info - dependency-management - dependencies - dependency-convergence - ci-management - - - distribution-management - - - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire-report.version} - - ${commons.surefire-report.aggregate} - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - .asf.yaml - .gitattributes - src/site/resources/download_*.cgi - src/site/resources/profile.* - profile.* - - maven-eclipse.xml - .externalToolBuilders/** - - .vscode/** - - - - - - - - - - - module-name - - - profile.module-name - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${commons.module.name} - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - (,9) - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - org.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - report - - - - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - japicmp - - [1.8,) - - src/site/resources/profile.japicmp - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - verify - - cmp - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${commons.japicmp.version} - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - - METHOD_NEW_DEFAULT - true - true - PATCH - - - - - - - - - - - - release - - - - maven-install-plugin - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - ${commons.compiler.javadoc} - - - - maven-assembly-plugin - ${commons.assembly-plugin.version} - true - - - - single - - - verify - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.commons - commons-release-plugin - - - clean-staging - clean - - clean-staging - - - - detatch-distributions - verify - - detach-distributions - - - - stage-distributions - deploy - - stage-distributions - - - - - - - - - - - apache-release - - - - maven-release-plugin - - apache-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-test-sources - - test-jar - - - - - - maven-install-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_HOME}/bin/javadoc - ${JAVA_1_8_HOME}/bin/java - - - - - - java-1.11 - - true - 1.11 - ${JAVA_1_11_HOME}/bin/javac - ${JAVA_1_11_HOME}/bin/javadoc - ${JAVA_1_11_HOME}/bin/java - - - - - - - - test-deploy - - id::default::file:target/deploy - true - - - - - - release-notes - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - src/changes - true - ${changes.announcementDirectory} - ${changes.announcementFile} - - ${commons.release.version} - - - - - create-release-notes - generate-resources - - announcement-generate - - - - - - - - - - - svn-buildnumber - - - !buildNumber.skip - !true - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - generate-resources - - create - - - - - - true - - ?????? - false - false - - - - - - - - jdk7-plugin-fix-version - - [1.7,1.8) - - - 3.5.1 - 1.17 - 3.5.0 - - - - - jdk8-plugin-fix-version - - [1.8,1.9) - - - 0.6.3 - - - - - - site-basic - - true - true - true - true - true - true - true - true - - - - - java-9-up - - [9,) - - - 9 - true - - ${commons.compiler.release} - - - - - org.moditect - moditect-maven-plugin - ${commons.moditect-maven-plugin.version} - - - add-module-infos - package - - add-module-info - - - ${moditect.java.version} - - --multi-release=${moditect.java.version} - - ${project.build.directory} - true - false - - - ${commons.module.name} - ${commons.moditect-maven-plugin.addServiceUses} - - - - - - - - - - - - - java-11-up - - [11,) - - - 10.14.2 - - - - - - java-17-up - - [17,) - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom.sha1 b/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom.sha1 deleted file mode 100644 index f50667da1..000000000 --- a/code/arachne/org/apache/commons/commons-parent/69/commons-parent-69.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6ebeacd37818d945d96c06b44af10e050d2ef7c4 \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-text/1.11.0/_remote.repositories b/code/arachne/org/apache/commons/commons-text/1.11.0/_remote.repositories deleted file mode 100644 index dcc69b095..000000000 --- a/code/arachne/org/apache/commons/commons-text/1.11.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:25 EDT 2024 -commons-text-1.11.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom b/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom deleted file mode 100644 index 4d560227a..000000000 --- a/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom +++ /dev/null @@ -1,528 +0,0 @@ - - - - 4.0.0 - - org.apache.commons - commons-parent - 64 - - commons-text - 1.11.0 - Apache Commons Text - Apache Commons Text is a library focused on algorithms working on strings. - https://commons.apache.org/proper/commons-text - - - ISO-8859-1 - UTF-8 - 1.8 - 1.8 - - text - text - org.apache.commons.text - - 1.11.0 - 1.11.1 - (Java 8+) - - TEXT - 12318221 - - text - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-text - site-content - - 1.14.9 - 4.11.0 - - - 22.0.0.2 - 1.5 - - false - - 1.37 - - - - 1.10.0 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - - - - - org.apache.commons - commons-lang3 - 3.13.0 - - - - org.junit.jupiter - junit-jupiter - test - - - - net.bytebuddy - byte-buddy - ${commons.bytebuddy.version} - test - - - - net.bytebuddy - byte-buddy-agent - ${commons.bytebuddy.version} - test - - - org.assertj - assertj-core - 3.24.2 - test - - - commons-io - commons-io - 2.14.0 - test - - - org.mockito - - mockito-inline - ${commons.mockito.version} - test - - - org.graalvm.js - js - ${graalvm.version} - test - - - org.graalvm.js - js-scriptengine - ${graalvm.version} - test - - - org.apache.commons - commons-rng-simple - ${commons.rng.version} - test - - - org.openjdk.jmh - jmh-core - ${jmh.version} - test - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh.version} - test - - - - - clean verify apache-rat:check japicmp:cmp checkstyle:check spotbugs:check javadoc:javadoc - - - - org.apache.rat - apache-rat-plugin - - - site-content/** - src/site/resources/download_lang.cgi - src/test/resources/org/apache/commons/text/stringEscapeUtilsTestData.txt - src/test/resources/org/apache/commons/text/lcs-perf-analysis-inputs.csv - src/site/resources/release-notes/RELEASE-NOTES-*.txt - - - - - maven-pmd-plugin - ${commons.pmd.version} - - ${maven.compiler.target} - - - - - - - maven-checkstyle-plugin - - false - src/conf/checkstyle.xml - src/conf/checkstyle-header.txt - src/conf/checkstyle-suppressions.xml - src/conf/checkstyle-suppressions.xml - true - **/generated/**.java,**/jmh_generated/**.java - - - - com.github.spotbugs - spotbugs-maven-plugin - - src/conf/spotbugs-exclude-filter.xml - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - ${commons.module.name} - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${maven.compiler.source} - - - - - - - - - maven-checkstyle-plugin - - false - src/conf/checkstyle.xml - src/conf/checkstyle-header.txt - src/conf/checkstyle-suppressions.xml - src/conf/checkstyle-suppressions.xml - true - **/generated/**.java,**/jmh_generated/**.java - - - - - checkstyle - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - src/conf/spotbugs-exclude-filter.xml - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - maven-pmd-plugin - - ${maven.compiler.target} - - - - - pmd - cpd - - - - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - - - Needs Work - - - TODO - exact - - - FIXME - exact - - - XXX - exact - - - - - Noteable Markers - - - NOTE - exact - - - NOPMD - exact - - - NOSONAR - exact - - - - - - - - - - - 2014 - - - - kinow - Bruno P. Kinoshita - kinow@apache.org - - - britter - Benedikt Ritter - britter@apache.org - - - chtompki - Rob Tompkins - chtompki@apache.org - - - ggregory - Gary Gregory - ggregory at apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - https://people.apache.org/~ggregory/img/garydgregory80.png - - - - djones - Duncan Jones - djones@apache.org - - - - - - Don Jeba - donjeba@yahoo.com - - - Sampanna Kahu - - - Jarek Strzelecki - - - Lee Adcock - - - Amey Jadiye - ameyjadiye@gmail.com - - - Arun Vinud S S - - - Ioannis Sermetziadis - - - Jostein Tveit - - - Luciano Medallia - - - Jan Martin Keil - - - Nandor Kollar - - - Nick Wong - - - Ali Ghanbari - https://ali-ghanbari.github.io/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/commons-text - scm:git:https://gitbox.apache.org/repos/asf/commons-text - https://gitbox.apache.org/repos/asf?p=commons-text.git - - - - jira - https://issues.apache.org/jira/browse/TEXT - - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-text/ - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - prepare-checkout - - run - - pre-site - - - - - - - - - - - - - - - - - - - - - - - - benchmark - - true - org.apache - - - - - org.codehaus.mojo - exec-maven-plugin - 3.1.0 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom.sha1 b/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom.sha1 deleted file mode 100644 index 225994481..000000000 --- a/code/arachne/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6ad811c49af218e6f184c3b487f195e6f9f61e1f \ No newline at end of file diff --git a/code/arachne/org/apache/commons/commons-text/1.12.0/_remote.repositories b/code/arachne/org/apache/commons/commons-text/1.12.0/_remote.repositories deleted file mode 100644 index 4cc3b40c3..000000000 --- a/code/arachne/org/apache/commons/commons-text/1.12.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:25 EDT 2024 -commons-text-1.12.0.pom>central= diff --git a/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom b/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom deleted file mode 100644 index 5ac1b7226..000000000 --- a/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom +++ /dev/null @@ -1,558 +0,0 @@ - - - - 4.0.0 - - org.apache.commons - commons-parent - 69 - - commons-text - 1.12.0 - Apache Commons Text - Apache Commons Text is a set of utility functions and reusable components for the purpose of processing - and manipulating text that should be of use in a Java environment. - - https://commons.apache.org/proper/commons-text - - - ISO-8859-1 - UTF-8 - 2024-04-13T13:15:17Z - 1.8 - 1.8 - - text - text - org.apache.commons.text - - 1.12.0 - 1.12.1 - (Java 8+) - - TEXT - 12318221 - - text - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-text - site-content - - 1.14.13 - 4.11.0 - - - 22.0.0.2 - 1.5 - - false - - 1.37 - - - - 1.11.0 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - - true - 1.00 - 0.97 - 0.98 - 0.95 - 0.94 - 0.98 - - - - - org.apache.commons - commons-lang3 - 3.14.0 - - - - org.junit.jupiter - junit-jupiter - test - - - - net.bytebuddy - byte-buddy - ${commons.bytebuddy.version} - test - - - - net.bytebuddy - byte-buddy-agent - ${commons.bytebuddy.version} - test - - - org.assertj - assertj-core - 3.25.3 - test - - - commons-io - commons-io - 2.16.1 - test - - - org.mockito - - mockito-inline - ${commons.mockito.version} - test - - - org.graalvm.js - js - ${graalvm.version} - test - - - org.graalvm.js - js-scriptengine - ${graalvm.version} - test - - - org.apache.commons - commons-rng-simple - ${commons.rng.version} - test - - - org.openjdk.jmh - jmh-core - ${jmh.version} - test - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh.version} - test - - - - - clean verify apache-rat:check japicmp:cmp checkstyle:check spotbugs:check javadoc:javadoc - - - - org.apache.rat - apache-rat-plugin - - - site-content/** - src/site/resources/download_lang.cgi - src/test/resources/org/apache/commons/text/stringEscapeUtilsTestData.txt - src/test/resources/org/apache/commons/text/lcs-perf-analysis-inputs.csv - src/site/resources/release-notes/RELEASE-NOTES-*.txt - - - - - maven-pmd-plugin - ${commons.pmd.version} - - ${maven.compiler.target} - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - false - - - - - maven-checkstyle-plugin - - false - src/conf/checkstyle.xml - src/conf/checkstyle-header.txt - src/conf/checkstyle-suppressions.xml - src/conf/checkstyle-suppressions.xml - true - **/generated/**.java,**/jmh_generated/**.java - - - - com.github.spotbugs - spotbugs-maven-plugin - - src/conf/spotbugs-exclude-filter.xml - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - ${commons.module.name} - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${maven.compiler.source} - - - - - - - - - maven-checkstyle-plugin - - false - src/conf/checkstyle.xml - src/conf/checkstyle-header.txt - src/conf/checkstyle-suppressions.xml - src/conf/checkstyle-suppressions.xml - true - **/generated/**.java,**/jmh_generated/**.java - - - - - checkstyle - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - src/conf/spotbugs-exclude-filter.xml - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - maven-pmd-plugin - - ${maven.compiler.target} - - - - - pmd - cpd - - - - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - - - Needs Work - - - TODO - exact - - - FIXME - exact - - - XXX - exact - - - - - Noteable Markers - - - NOTE - exact - - - NOPMD - exact - - - NOSONAR - exact - - - - - - - - - - - 2014 - - - - kinow - Bruno P. Kinoshita - kinow@apache.org - - - britter - Benedikt Ritter - britter@apache.org - - - chtompki - Rob Tompkins - chtompki@apache.org - - - ggregory - Gary Gregory - ggregory at apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - https://people.apache.org/~ggregory/img/garydgregory80.png - - - - djones - Duncan Jones - djones@apache.org - - - - - - Don Jeba - donjeba@yahoo.com - - - Sampanna Kahu - - - Jarek Strzelecki - - - Lee Adcock - - - Amey Jadiye - ameyjadiye@gmail.com - - - Arun Vinud S S - - - Ioannis Sermetziadis - - - Jostein Tveit - - - Luciano Medallia - - - Jan Martin Keil - - - Nandor Kollar - - - Nick Wong - - - Ali Ghanbari - https://ali-ghanbari.github.io/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/commons-text - scm:git:https://gitbox.apache.org/repos/asf/commons-text - https://gitbox.apache.org/repos/asf?p=commons-text.git - - - - jira - https://issues.apache.org/jira/browse/TEXT - - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-text/ - - - - - - - java-11-up - - [11,) - - - 22.3.5 - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - prepare-checkout - - run - - pre-site - - - - - - - - - - - - - - - - - - - - - - - - benchmark - - true - org.apache - - - - - org.codehaus.mojo - exec-maven-plugin - 3.2.0 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - diff --git a/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom.sha1 b/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom.sha1 deleted file mode 100644 index 375fa15ee..000000000 --- a/code/arachne/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -99e12cd75786b7bf7d26b68e41783b89d346bd8c \ No newline at end of file diff --git a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/_remote.repositories b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/_remote.repositories deleted file mode 100644 index 4e696c236..000000000 --- a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:26 EDT 2024 -groovy-bom-4.0.21.pom>ohdsi= diff --git a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom deleted file mode 100644 index 0c8b4a874..000000000 --- a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom +++ /dev/null @@ -1,996 +0,0 @@ - - - - - - - - 4.0.0 - org.apache.groovy - groovy-bom - 4.0.21 - pom - Apache Groovy - Groovy: A powerful multi-faceted language for the JVM - https://groovy-lang.org - 2003 - - Apache Software Foundation - https://apache.org - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - glaforge - Guillaume Laforge - Google - - Developer - - - - bob - bob mcwhirter - bob@werken.com - The Werken Company - - Founder - - - - jstrachan - James Strachan - james@coredevelopers.com - Core Developers Network - - Founder - - - - joe - Joe Walnes - ThoughtWorks - - Developer Emeritus - - - - skizz - Chris Stevenson - ThoughtWorks - - Developer Emeritus - - - - jamiemc - Jamie McCrindle - Three - - Developer Emeritus - - - - mattf - Matt Foemmel - ThoughtWorks - - Developer Emeritus - - - - alextkachman - Alex Tkachman - - Developer Emeritus - - - - roshandawrani - Roshan Dawrani - - Developer Emeritus - - - - spullara - Sam Pullara - sam@sampullara.com - - Developer Emeritus - - - - kasper - Kasper Nielsen - - Developer Emeritus - - - - travis - Travis Kay - - Developer Emeritus - - - - zohar - Zohar Melamed - - Developer Emeritus - - - - jwilson - John Wilson - tug@wilson.co.uk - The Wilson Partnership - - Developer Emeritus - - - - cpoirier - Chris Poirier - cpoirier@dreaming.org - - Developer Emeritus - - - - ckl - Christiaan ten Klooster - ckl@dacelo.nl - Dacelo WebDevelopment - - Developer Emeritus - - - - goetze - Steve Goetze - goetze@dovetail.com - Dovetailed Technologies, LLC - - Developer Emeritus - - - - bran - Bing Ran - b55r@sina.com - Leadingcare - - Developer Emeritus - - - - jez - Jeremy Rayner - jeremy.rayner@gmail.com - javanicus - - Developer Emeritus - - - - jstump - John Stump - johnstump2@yahoo.com - - Developer Emeritus - - - - blackdrag - Jochen Theodorou - blackdrag@gmx.org - - Developer - - - - russel - Russel Winder - russel@winder.org.uk - Concertant LLP & It'z Interactive Ltd - - Developer - Founder of Gant - - - - phk - Pilho Kim - phkim@cluecom.co.kr - - Developer Emeritus - - - - cstein - Christian Stein - sormuras@gmx.de - CTSR.de - - Developer Emeritus - - - - mittie - Dierk Koenig - Karakun AG - - Developer - - - - paulk - Paul King - paulk@asert.com.au - OCI, Australia - - Project Manager - Developer - - - - galleon - Guillaume Alleon - guillaume.alleon@gmail.com - - Developer Emeritus - - - - user57 - Jason Dillon - jason@planet57.com - - Developer Emeritus - - - - shemnon - Danno Ferrin - - Developer Emeritus - - - - jwill - James Williams - - Developer Emeritus - - - - timyates - Tim Yates - - Developer - - - - aalmiray - Andres Almiray - aalmiray@users.sourceforge.net - - Developer - - - - mguillem - Marc Guillemot - mguillemot@yahoo.fr - - Developer Emeritus - - - - jimwhite - Jim White - jim@pagesmiths.com - IFCX.org - - Developer - - - - pniederw - Peter Niederwieser - pniederw@gmail.com - - Developer Emeritus - - - - andresteingress - Andre Steingress - - Developer - - - - hamletdrc - Hamlet D'Arcy - hamletdrc@gmail.com - - Developer Emeritus - - - - melix - Cedric Champeau - cedric.champeau@gmail.com - - Developer - - - - pascalschumacher - Pascal Schumacher - - Developer - - - - sunlan - Daniel Sun - - Developer - - - - rpopma - Remko Popma - - Developer - - - - grocher - Graeme Rocher - - Developer - - - - emilles - Eric Milles - Thomson Reuters - - Developer - - - - - - Joern Eyrich - - - Robert Kuzelj - - - Rod Cope - - - Yuri Schimke - - - James Birchfield - - - Robert Fuller - - - Sergey Udovenko - - - Hallvard Traetteberg - - - Peter Reilly - - - Brian McCallister - - - Richard Monson-Haefel - - - Brian Larson - - - Artur Biesiadowski - abies@pg.gda.pl - - - Ivan Z. Ganza - - - Larry Jacobson - - - Jake Gage - - - Arjun Nayyar - - - Masato Nagai - - - Mark Chu-Carroll - - - Mark Turansky - - - Jean-Louis Berliet - - - Graham Miller - - - Marc Palmer - - - Tugdual Grall - - - Edwin Tellman - - - Evan "Hippy" Slatis - - - Mike Dillon - - - Bernhard Huber - - - Yasuharu Nakano - - - Marc DeXeT - - - Dejan Bosanac - dejan@nighttale.net - - - Denver Dino - - - Ted Naleid - - - Ted Leung - - - Merrick Schincariol - - - Chanwit Kaewkasi - - - Stefan Matthias Aust - - - Andy Dwelly - - - Philip Milne - - - Tiago Fernandez - - - Steve Button - - - Joachim Baumann - - - Jochen Eddel+ - - - Ilinca V. Hallberg - - - Björn Westlin - - - Andrew Glover - - - Brad Long - - - John Bito - - - Jim Jagielski - - - Rodolfo Velasco - - - John Hurst - - - Merlyn Albery-Speyer - - - jeremi Joslin - - - UEHARA Junji - - - NAKANO Yasuharu - - - Dinko Srkoc - - - Raffaele Cigni - - - Alberto Vilches Raton - - - Paulo Poiati - - - Alexander Klein - - - Adam Murdoch - - - David Durham - - - Daniel Henrique Alves Lima - - - John Wagenleitner - - - Colin Harrington - - - Brian Alexander - - - Jan Weitz - - - Chris K Wensel - - - David Sutherland - - - Mattias Reichel - - - David Lee - - - Sergei Egorov - - - Hein Meling - - - Michael Baehr - - - Craig Andrews - - - Peter Ledbrook - - - Scott Stirling - - - Thibault Kruse - - - Tim Tiemens - - - Mike Spille - - - Nikolay Chugunov - - - Francesco Durbin - - - Paolo Di Tommaso - - - Rene Scheibe - - - Matias Bjarland - - - Tomasz Bujok - - - Richard Hightower - - - Andrey Bloschetsov - - - Yu Kobayashi - - - Nick Grealy - - - Vaclav Pech - - - Chuck Tassoni - - - Steven Devijver - - - Ben Manes - - - Troy Heninger - - - Andrew Eisenberg - - - Eric Milles - - - Kohsuke Kawaguchi - - - Scott Vlaminck - - - Hjalmar Ekengren - - - Rafael Luque - - - Joachim Heldmann - - - dgouyette - - - Marcin Grzejszczak - - - Pap Lőrinc - - - Guillaume Balaine - - - Santhosh Kumar T - - - Alan Green - - - Marty Saxton - - - Marcel Overdijk - - - Jonathan Carlson - - - Thomas Heller - - - John Stump - - - Ivan Ganza - - - Alex Popescu - - - Martin Kempf - - - Martin Ghados - - - Martin Stockhammer - - - Martin C. Martin - - - Alexey Verkhovsky - - - Alberto Mijares - - - Matthias Cullmann - - - Tomek Bujok - - - Stephane Landelle - - - Stephane Maldini - - - Mark Volkmann - - - Andrew Taylor - - - Vladimir Vivien - - - Vladimir Orany - - - Joe Wolf - - - Kent Inge Fagerland Simonsen - - - Tom Nichols - - - Ingo Hoffmann - - - Sergii Bondarenko - - - mgroovy - - - Dominik Przybysz - - - Jason Thomas - - - Trygve Amundsens - - - Morgan Hankins - - - Shruti Gupta - - - Ben Yu - - - Dejan Bosanac - - - Lidia Donajczyk-Lipinska - - - Peter Gromov - - - Johannes Link - - - Chris Reeves - - - Sean Timm - - - Dmitry Vyazelenko - - - - - Groovy Developer List - https://mail-archives.apache.org/mod_mbox/groovy-dev/ - - - Groovy User List - https://mail-archives.apache.org/mod_mbox/groovy-users/ - - - - scm:git:https://github.com/apache/groovy.git - scm:git:https://github.com/apache/groovy.git - https://github.com/apache/groovy.git - - - jira - https://issues.apache.org/jira/browse/GROOVY - - - - - org.apache.groovy - groovy - 4.0.21 - - - org.apache.groovy - groovy-ant - 4.0.21 - - - org.apache.groovy - groovy-astbuilder - 4.0.21 - - - org.apache.groovy - groovy-cli-commons - 4.0.21 - - - org.apache.groovy - groovy-cli-picocli - 4.0.21 - - - org.apache.groovy - groovy-console - 4.0.21 - - - org.apache.groovy - groovy-contracts - 4.0.21 - - - org.apache.groovy - groovy-datetime - 4.0.21 - - - org.apache.groovy - groovy-dateutil - 4.0.21 - - - org.apache.groovy - groovy-docgenerator - 4.0.21 - - - org.apache.groovy - groovy-ginq - 4.0.21 - - - org.apache.groovy - groovy-groovydoc - 4.0.21 - - - org.apache.groovy - groovy-groovysh - 4.0.21 - - - org.apache.groovy - groovy-jmx - 4.0.21 - - - org.apache.groovy - groovy-json - 4.0.21 - - - org.apache.groovy - groovy-jsr223 - 4.0.21 - - - org.apache.groovy - groovy-macro - 4.0.21 - - - org.apache.groovy - groovy-macro-library - 4.0.21 - - - org.apache.groovy - groovy-nio - 4.0.21 - - - org.apache.groovy - groovy-servlet - 4.0.21 - - - org.apache.groovy - groovy-sql - 4.0.21 - - - org.apache.groovy - groovy-swing - 4.0.21 - - - org.apache.groovy - groovy-templates - 4.0.21 - - - org.apache.groovy - groovy-test - 4.0.21 - - - org.apache.groovy - groovy-test-junit5 - 4.0.21 - - - org.apache.groovy - groovy-testng - 4.0.21 - - - org.apache.groovy - groovy-toml - 4.0.21 - - - org.apache.groovy - groovy-typecheckers - 4.0.21 - - - org.apache.groovy - groovy-xml - 4.0.21 - - - org.apache.groovy - groovy-yaml - 4.0.21 - - - - diff --git a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.lastUpdated b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.lastUpdated deleted file mode 100644 index 298c24c5c..000000000 --- a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:26 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.apache.groovy\:groovy-bom\:pom\:4.0.21 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139805487 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139805611 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139805837 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139806035 diff --git a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.sha1 b/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.sha1 deleted file mode 100644 index b171919e6..000000000 --- a/code/arachne/org/apache/groovy/groovy-bom/4.0.21/groovy-bom-4.0.21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cb48cf8a18df884da05138c687dbd86e6696b4e4 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/_remote.repositories b/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/_remote.repositories deleted file mode 100644 index 38eeddd5b..000000000 --- a/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:35 EDT 2024 -httpclient5-cache-5.2.3.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom b/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom deleted file mode 100644 index 56ed44581..000000000 --- a/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom +++ /dev/null @@ -1,131 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents.client5 - httpclient5-parent - 5.2.3 - - httpclient5-cache - Apache HttpClient Cache - 2010 - Apache HttpComponents HttpClient Cache - jar - - - org.apache.httpcomponents.client5.httpclient5.cache - - - - - org.apache.httpcomponents.client5 - httpclient5 - - - org.slf4j - slf4j-api - - - org.ehcache.modules - ehcache-api - true - - - org.apache.logging.log4j - log4j-slf4j-impl - true - - - org.apache.logging.log4j - log4j-core - test - - - net.spy - spymemcached - true - - - org.hamcrest - hamcrest - test - - - org.mockito - mockito-core - test - - - org.apache.httpcomponents.client5 - httpclient5 - ${project.version} - test-jar - test - - - org.junit.jupiter - junit-jupiter - test - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - maven-project-info-reports-plugin - false - - - - index - dependencies - dependency-info - summary - - - - - - - - \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom.sha1 b/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom.sha1 deleted file mode 100644 index e98b9fe70..000000000 --- a/code/arachne/org/apache/httpcomponents/client5/httpclient5-cache/5.2.3/httpclient5-cache-5.2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -83b333c3b86e3d57572400a4e2c134f90d33a374 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/_remote.repositories b/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/_remote.repositories deleted file mode 100644 index 2db028000..000000000 --- a/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:11 EDT 2024 -httpclient5-parent-5.2.3.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom b/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom deleted file mode 100644 index 0fc2baaf2..000000000 --- a/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom +++ /dev/null @@ -1,448 +0,0 @@ - - - - org.apache.httpcomponents - httpcomponents-parent - 13 - - 4.0.0 - org.apache.httpcomponents.client5 - httpclient5-parent - Apache HttpComponents Client Parent - 5.2.3 - Apache HttpComponents Client is a library of components for building client side HTTP services - https://hc.apache.org/httpcomponents-client-5.0.x/${project.version}/ - 1999 - pom - - - Jira - https://issues.apache.org/jira/browse/HTTPCLIENT - - - - scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-client.git - scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-client.git - https://github.com/apache/httpcomponents-client/tree/${project.scm.tag} - 5.2.3 - - - - - apache.website - Apache HttpComponents Website - scm:svn:https://svn.apache.org/repos/asf/httpcomponents/site/components/httpcomponents-client-5.2.x/LATEST/ - - - - - 1.8 - 1.8 - 5.2.4 - 2.20.0 - 0.1.2 - 2.5.2 - 3.10.8 - 2.12.3 - 1.7.36 - 5.9.3 - 2.2 - 4.11.0 - 5.13.0 - 1 - 2.2.21 - 5.2 - javax.net.ssl.SSLEngine,javax.net.ssl.SSLParameters,java.nio.ByteBuffer,java.nio.CharBuffer - 0.15.4 - - - - - - org.apache.httpcomponents.core5 - httpcore5 - ${httpcore.version} - - - org.apache.httpcomponents.core5 - httpcore5-h2 - ${httpcore.version} - - - org.apache.httpcomponents.core5 - httpcore5-testing - ${httpcore.version} - - - org.apache.httpcomponents.core5 - httpcore5-reactive - ${httpcore.version} - - - org.apache.httpcomponents.client5 - httpclient5 - ${project.version} - - - org.apache.httpcomponents.client5 - httpclient5 - ${project.version} - tests - - - org.apache.httpcomponents.client5 - httpclient5-cache - ${project.version} - - - org.apache.httpcomponents.client5 - httpclient5-fluent - ${project.version} - - - org.apache.httpcomponents.client5 - httpclient5-win - ${project.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.apache.logging.log4j - log4j-slf4j-impl - ${log4j.version} - - - org.apache.logging.log4j - log4j-core - ${log4j.version} - - - org.brotli - dec - ${brotli.version} - - - org.conscrypt - conscrypt-openjdk-uber - ${conscrypt.version} - - - org.ehcache.modules - ehcache-api - ${ehcache.version} - - - net.spy - spymemcached - ${memcached.version} - - - net.java.dev.jna - jna - ${jna.version} - - - net.java.dev.jna - jna-platform - ${jna.version} - - - io.reactivex.rxjava2 - rxjava - ${rxjava.version} - test - - - org.junit - junit-bom - ${junit.version} - pom - import - - - org.mockito - mockito-core - ${mockito.version} - test - - - org.hamcrest - hamcrest - ${hamcrest.version} - test - - - - - - httpclient5 - httpclient5-fluent - httpclient5-cache - httpclient5-win - httpclient5-testing - - - - clean verify - - - maven-jar-plugin - - - - ${Automatic-Module-Name} - ${project.url} - - - - - - maven-javadoc-plugin - - - https://hc.apache.org/httpcomponents-core-5.2.x/current/httpcore5/apidocs/ - https://hc.apache.org/httpcomponents-core-5.2.x/current/httpcore5-h2/apidocs/ - ${project.url}/httpclient5/apidocs/ - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - validate-main - validate - - hc-stylecheck/default.xml - hc-stylecheck/asl2.header - true - true - false - - ${basedir}/src/main - - - - checkstyle - - - - validate-test - validate - - hc-stylecheck/default.xml - hc-stylecheck/asl2.header - true - true - false - - ${basedir}/src/test - - - - checkstyle - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - ${project.groupId} - ${project.artifactId} - ${api.comparison.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} - - - - true - true - - - METHOD_NEW_DEFAULT - true - true - - - - @org.apache.hc.core5.annotation.Internal - - true - - - - - verify - - cmp - - - - - - org.apache.rat - apache-rat-plugin - - - verify - - check - - - - - - src/docbkx/resources/** - src/test/resources/*.truststore - src/test/resources/*.serialized - .checkstyle - .externalToolBuilders/** - maven-eclipse.xml - **/serial - **/index.txt - - - - - - - - - - maven-project-info-reports-plugin - false - - - - index - dependency-info - dependency-management - issue-management - licenses - mailing-lists - scm - summary - - - - - - maven-javadoc-plugin - - true - true - - https://hc.apache.org/httpcomponents-core-5.0.x/httpcore5/apidocs/ - https://hc.apache.org/httpcomponents-core-5.0.x/httpcore5-h2/apidocs/ - ${project.url}/httpclient5/apidocs/ - - - - Apache HttpClient - org.apache.hc.client5.http* - - - Apache HttpClient Cache - org.apache.hc.client5.http.cache*:org.apache.hc.client5.http.impl.cache*:org.apache.hc.client5.http.schedule:org.apache.hc.client5.http.impl.schedule* - - - Apache HttpClient Fluent - org.apache.hc.client5.http.fluent* - - - Apache HttpClient Testing - org.apache.hc.client5.testing* - - - Apache HttpClient Windows features - org.apache.hc.client5.http.impl.win* - - - - - - - javadoc - aggregate - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - cmp-report - - - - - - - ${project.groupId} - ${project.artifactId} - ${api.comparison.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} - - - - - @org.apache.hc.core5.annotation.Internal - - true - - - - - maven-jxr-plugin - - - maven-surefire-report-plugin - - - - - \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom.sha1 b/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom.sha1 deleted file mode 100644 index 71483e65f..000000000 --- a/code/arachne/org/apache/httpcomponents/client5/httpclient5-parent/5.2.3/httpclient5-parent-5.2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -80f190a8b2d811f8413a4ed9c7f5cf3d42ab1060 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/_remote.repositories b/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/_remote.repositories deleted file mode 100644 index dc754acf1..000000000 --- a/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:11 EDT 2024 -httpclient5-5.2.3.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom b/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom deleted file mode 100644 index d680d7705..000000000 --- a/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom +++ /dev/null @@ -1,183 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents.client5 - httpclient5-parent - 5.2.3 - - httpclient5 - Apache HttpClient - Apache HttpComponents Client - jar - - - org.apache.httpcomponents.client5.httpclient5 - - - - - org.apache.httpcomponents.core5 - httpcore5 - - - org.apache.httpcomponents.core5 - httpcore5-h2 - - - org.slf4j - slf4j-api - - - org.conscrypt - conscrypt-openjdk-uber - true - - - org.apache.httpcomponents.core5 - httpcore5-reactive - test - - - io.reactivex.rxjava2 - rxjava - test - - - org.apache.logging.log4j - log4j-slf4j-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - org.brotli - dec - true - - - org.junit.jupiter - junit-jupiter - test - - - org.hamcrest - hamcrest - test - - - org.mockito - mockito-core - test - - - - - - - src/main/resources - true - - **/*.properties - - - - - - com.googlecode.maven-download-plugin - download-maven-plugin - 1.6.8 - - - download-public-suffix-list - generate-resources - - wget - - - https://publicsuffix.org/list/effective_tld_names.dat - ${project.build.outputDirectory}/mozilla - public-suffix-list.txt - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - maven-project-info-reports-plugin - false - - - - index - dependencies - dependency-info - summary - - - - - - - - - - apache-release - - - - com.googlecode.maven-download-plugin - download-maven-plugin - - true - true - - - - - - - - \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom.sha1 b/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom.sha1 deleted file mode 100644 index b59d38287..000000000 --- a/code/arachne/org/apache/httpcomponents/client5/httpclient5/5.2.3/httpclient5-5.2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3ccbf26e1df288fed1d9885db42f6d2022606172 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/_remote.repositories b/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/_remote.repositories deleted file mode 100644 index e19f6ddcd..000000000 --- a/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:12 EDT 2024 -httpcore5-h2-5.2.4.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom b/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom deleted file mode 100644 index b44c91fc2..000000000 --- a/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom +++ /dev/null @@ -1,102 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents.core5 - httpcore5-parent - 5.2.4 - - httpcore5-h2 - Apache HttpComponents Core HTTP/2 - Apache HttpComponents HTTP/2 Core Components - - - org.apache.httpcomponents.core5.httpcore5.h2 - - - - - org.apache.httpcomponents.core5 - httpcore5 - - - org.conscrypt - conscrypt-openjdk-uber - true - - - org.junit.jupiter - junit-jupiter - test - - - org.hamcrest - hamcrest - test - - - org.mockito - mockito-core - test - - - org.slf4j - slf4j-api - test - - - org.apache.logging.log4j - log4j-slf4j-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - - - - - maven-project-info-reports-plugin - false - - - - index - dependencies - dependency-info - summary - - - - - - - - \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom.sha1 b/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom.sha1 deleted file mode 100644 index e0006f57d..000000000 --- a/code/arachne/org/apache/httpcomponents/core5/httpcore5-h2/5.2.4/httpcore5-h2-5.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -61f988b1d97de455635f8075fa026f927133730d \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/_remote.repositories b/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/_remote.repositories deleted file mode 100644 index 336a25763..000000000 --- a/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:12 EDT 2024 -httpcore5-parent-5.2.4.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom b/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom deleted file mode 100644 index cb82f29bd..000000000 --- a/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom +++ /dev/null @@ -1,368 +0,0 @@ - - - - org.apache.httpcomponents - httpcomponents-parent - 13 - - 4.0.0 - org.apache.httpcomponents.core5 - httpcore5-parent - Apache HttpComponents Core Parent - 5.2.4 - Apache HttpComponents Core is a library of components for building HTTP enabled services - https://hc.apache.org/httpcomponents-core-5.2.x/${project.version}/ - 2005 - pom - - - Jira - https://issues.apache.org/jira/browse/HTTPCORE - - - - scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-core.git - scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-core.git - https://github.com/apache/httpcomponents-core/tree/${project.scm.tag} - 5.2.4 - - - - - apache.website - Apache HttpComponents Website - scm:svn:https://svn.apache.org/repos/asf/httpcomponents/site/components/httpcomponents-core-5.2.x/LATEST/ - - - - - httpcore5 - httpcore5-h2 - httpcore5-reactive - httpcore5-testing - - - - - 1.8 - 1.8 - true - 2.5.2 - 5.9.3 - 2.2 - 5.0.0 - 4.11.0 - 1.7.36 - 2.19.0 - 2.2.21 - 3.1.6 - 5.2 - javax.net.ssl.SSLEngine,javax.net.ssl.SSLParameters,java.nio.ByteBuffer,java.nio.CharBuffer - - - - - - org.apache.httpcomponents.core5 - httpcore5 - ${project.version} - - - org.apache.httpcomponents.core5 - httpcore5-h2 - ${project.version} - - - org.apache.httpcomponents.core5 - httpcore5-reactive - ${project.version} - - - org.apache.httpcomponents.core5 - httpcore5-testing - ${project.version} - - - org.conscrypt - conscrypt-openjdk-uber - ${conscrypt.version} - - - org.junit - junit-bom - ${junit.version} - pom - import - - - org.hamcrest - hamcrest - ${hamcrest.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.apache.logging.log4j - log4j-slf4j-impl - ${log4j.version} - - - org.apache.logging.log4j - log4j-core - ${log4j.version} - - - - - - clean verify - - - maven-jar-plugin - - - - ${Automatic-Module-Name} - ${project.url} - - - - - - maven-javadoc-plugin - - - ${project.url}/httpcore5/apidocs/ - ${project.url}/httpcore5-h2/apidocs/ - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - validate-main - validate - - hc-stylecheck/default.xml - hc-stylecheck/asl2.header - true - true - false - - ${basedir}/src/main - ${basedir}/src/test - - - - checkstyle - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - ${project.groupId} - ${project.artifactId} - ${api.comparison.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} - - - - true - true - - - METHOD_NEW_DEFAULT - true - true - - - - @org.apache.hc.core5.annotation.Internal - - - - - - verify - - cmp - - - - - - org.apache.rat - apache-rat-plugin - - - verify - - check - - - - - - **/.checkstyle - **/.pmd - **/*.iml - **/.externalToolBuilders/** - maven-eclipse.xml - src/docbkx/resources/** - src/test/resources/*.truststore - src/test/resources/*.p12 - **/.dockerignore - - bin/** - - - - - - - - - - - maven-project-info-reports-plugin - false - - - - index - dependency-info - dependency-management - issue-management - licenses - mailing-lists - scm - summary - - - - - - maven-javadoc-plugin - - true - - ${project.url}/httpcore5/apidocs/ - ${project.url}/httpcore5-h2/apidocs/ - - true - - - Apache HttpCore HTTP/1.1 - org.apache.hc.core5* - - - Apache HttpCore HTTP/2 - org.apache.hc.core5.http2* - - - Apache HttpCore Reactive Streams Bindings - org.apache.hc.core5.reactive* - - - Apache HttpCore Testing - org.apache.hc.core5.testing*:org.apache.hc.core5.benchmark* - - - - - - - javadoc - aggregate - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - cmp-report - - - - - - - ${project.groupId} - ${project.artifactId} - ${api.comparison.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} - - - - - @org.apache.hc.core5.annotation.Internal - - true - - - - - maven-jxr-plugin - - - maven-surefire-report-plugin - - - - - \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom.sha1 b/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom.sha1 deleted file mode 100644 index 3fb0f644c..000000000 --- a/code/arachne/org/apache/httpcomponents/core5/httpcore5-parent/5.2.4/httpcore5-parent-5.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2f8026ed7977c055d789acb6c7c402f533597d85 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/_remote.repositories b/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/_remote.repositories deleted file mode 100644 index a5767c63a..000000000 --- a/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:12 EDT 2024 -httpcore5-5.2.4.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom b/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom deleted file mode 100644 index 1974ff076..000000000 --- a/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom +++ /dev/null @@ -1,119 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents.core5 - httpcore5-parent - 5.2.4 - - httpcore5 - Apache HttpComponents Core HTTP/1.1 - 2005 - Apache HttpComponents HTTP/1.1 core components - - - org.apache.httpcomponents.core5.httpcore5 - - - - - org.junit.jupiter - junit-jupiter - test - - - org.hamcrest - hamcrest - test - - - org.mockito - mockito-core - test - - - org.slf4j - slf4j-api - test - - - org.apache.logging.log4j - log4j-slf4j-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - - - - - src/main/resources - true - - **/*.properties - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - maven-project-info-reports-plugin - false - - - - index - dependencies - dependency-info - summary - - - - - - - - \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom.sha1 b/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom.sha1 deleted file mode 100644 index 18bc78406..000000000 --- a/code/arachne/org/apache/httpcomponents/core5/httpcore5/5.2.4/httpcore5-5.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dea1344613c8df982593ebed215591037631ca96 \ No newline at end of file diff --git a/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/_remote.repositories b/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/_remote.repositories deleted file mode 100644 index 7bb89550d..000000000 --- a/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:12 EDT 2024 -httpcomponents-parent-13.pom>central= diff --git a/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom b/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom deleted file mode 100644 index 5715f1ce6..000000000 --- a/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom +++ /dev/null @@ -1,917 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 27 - - org.apache.httpcomponents - httpcomponents-parent - 13 - pom - Apache HttpComponents Parent - https://hc.apache.org/ - Apache components to build HTTP enabled services - 2005 - - - - - - Jira - - https://issues.apache.org/jira/secure/BrowseProjects.jspa?selectedCategory=10280 - - - - scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-parent.git - scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-parent.git - https://github.com/apache/httpcomponents-parent/tree/${project.scm.tag} - master - - - - - Michael Osipov - michaelo - michaelo -at- apache.org - - Committer - PMC Chair - PMC - - Europe/Berlin - - - Ortwin Glueck - oglueck - oglueck -at- apache.org - - - Emeritus PMC - - http://www.odi.ch/ - +1 - - - Oleg Kalnichevski - olegk - olegk -at- apache.org - - Committer - PMC - - +1 - - - Asankha C. Perera - asankha - asankha -at- apache.org - - Committer - PMC - - https://www.adroitlogic.com/ - +5.5 - - - Sebastian Bazley - sebb - sebb -at- apache.org - - Committer - PMC - - - - - Erik Abele - erikabele - erikabele -at- apache.org - - Committer - PMC - - http://www.codefaktor.de/ - +1 - - - Ant Elder - antelder - antelder -at- apache.org - - Committer - PMC - - - - - Paul Fremantle - pzf - pzf -at- apache.org - - Committer - PMC - - - - - Roland Weber - rolandw - rolandw -at- apache.org - - Emeritus PMC - - +1 - - - Sam Berlin - sberlin - sberlin -at- apache.org - - Committer - - -4 - - - Sean C. Sullivan - sullis - sullis -at- apache.org - - Committer - - -8 - - - Jonathan Moore - jonm - jonm -at- apache.org - - Committer - PMC - - -5 - - - Gary Gregory - ggregory - ggregory -at- apache.org - -8 - - Committer - PMC - - - - William Speirs - wspeirs - wspeirs at apache.org - - Committer - - -5 - - - Karl Wright - kwright - kwright -at- apache.org - - Committer - - -5 - - - Francois-Xavier Bonnet - fx - fx -at- apache.org - - Committer - - +1 - - - Ryan Schmitt - rschmitt - rschmitt@apache.org - - Committer - - America/Los_Angeles - - - - - - Julius Davies - juliusdavies -at- cucbc.com - - - Andrea Selva - selva.andre -at- gmail.com - - - Steffen Pingel - spingel -at- limewire.com - - - Quintin Beukes - quintin -at- last.za.net - - - Marc Beyerle - marc.beyerle -at- de.ibm.com - - - James Abley - james.abley -at- gmail.com - - - Michajlo Matijkiw - michajlo_matijkiw -at- comcast.com - - - Arturo Bernal - arturobernalg -at- gmail.com - - - - - HttpClient User List - mailto:httpclient-users-subscribe@hc.apache.org - mailto:httpclient-users-unsubscribe@hc.apache.org - mailto:httpclient-users@hc.apache.org - https://lists.apache.org/list.html?httpclient-users@hc.apache.org - - https://marc.info/?l=httpclient-users - https://httpclient-users.markmail.org/search/ - - - - HttpComponents Dev List - mailto:dev-subscribe@hc.apache.org - mailto:dev-unsubscribe@hc.apache.org - mailto:dev@hc.apache.org - https://lists.apache.org/list.html?dev@hc.apache.org - - https://marc.info/?l=httpclient-commons-dev - https://apache-hc-dev.markmail.org/search/ - - - - HttpComponents Commits List - mailto:commits-subscribe@hc.apache.org - mailto:commits-unsubscribe@hc.apache.org - https://lists.apache.org/list.html?commits@hc.apache.org - - https://marc.info/?l=httpcomponents-commits - https://hc-commits.markmail.org/search/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - https://mail-archives.apache.org/mod_mbox/www-announce/ - - https://org-apache-announce.markmail.org/search/ - - - - - - - apache.website - Apache HttpComponents Website - ${hc.site.url} - - - - - - - org.apache.rat - apache-rat-plugin - - - - - .pmd - - - - - maven-jar-plugin - - - - org.apache - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${maven.compiler.source} - ${maven.compiler.target} - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${hc.javadoc.version} - - - true - - - true - true - - - org.apache - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${hc.jxr.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${hc.project-info.version} - - - org.apache.maven.plugins - maven-resources-plugin - - - copy-resources - pre-site - - copy-resources - - - ${basedir}/target/site/examples - - - src/examples - false - - - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - - org.apache.maven.wagon - wagon-ssh - 3.4.1 - - - - - org.apache.maven.plugins - maven-source-plugin - - - - true - true - - - org.apache - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${hc.surefire.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${hc.surefire.version} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${hc.japicmp.version} - - - - ${project.groupId} - ${project.artifactId} - ${api.comparison.version} - jar - - - - - ${project.build.directory}/${project.build.finalName}.${project.packaging} - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${hc.checkstyle.version} - - - org.apache.httpcomponents - hc-stylecheck - 2 - - - - - validate - validate - - hc-stylecheck/default.xml - hc-stylecheck/asl2.header - true - true - false - - - checkstyle - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${hc.project-info.version} - - false - - - - team - issue-management - scm - mailing-lists - - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.2.0 - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - - - - - animal-sniffer - - - - src/site/resources/profile.noanimal - - - - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.22 - - - checkAPIcompatibility - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${hc.animal-sniffer.signature.version} - - ${hc.animal-sniffer.signature.ignores} - - - - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - - - - - - - test-deploy - - id::default::file:target/deploy - - - - - nodoclint - - - - org.apache.maven.plugins - maven-javadoc-plugin - - -Xdoclint:none - - - - - - - - lax-doclint - - - - org.apache.maven.plugins - maven-javadoc-plugin - - -Xdoclint:-missing - - - - - - - - - use-toolchains - - - ${user.home}/.m2/toolchains.xml - - - - - - org.apache.maven.plugins - maven-toolchains-plugin - 3.1.0 - - - - ${maven.compiler.source} - - - - - - - toolchain - - - - - - - - - owasp - - - - org.owasp - dependency-check-maven - 3.3.4 - - - - aggregate - - - - - - - - - - - - true - UTF-8 - UTF-8 - 2021-01-10T15:31:00Z - scp://people.apache.org/www/hc.apache.org/ - - - 0.16.0 - 3.4.1 - 3.0.0-M7 - 3.4.1 - 3.2.0 - 3.3.0 - 1.0 - - - - diff --git a/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom.sha1 b/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom.sha1 deleted file mode 100644 index d7e6c6033..000000000 --- a/code/arachne/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -283fba4052e1a2b4162c0cce3a76473c89a50ab8 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/_remote.repositories deleted file mode 100644 index 6e2ec4db5..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:50 EDT 2024 -log4j-api-2.23.0.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom b/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom deleted file mode 100644 index eebd3d894..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - - 4.0.0 - - org.apache.logging.log4j - log4j - 2.23.0 - ../log4j-parent - - org.apache.logging.log4j - log4j-api - 2.23.0 - Apache Log4j API - The Apache Log4j API - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - false - true - java.sql;static=true, - - java.management;static=true - org.apache.logging.log4j - - - - org.osgi - org.osgi.core - provided - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - generate-sources - - add-source - - - - ${project.build.directory}/log4j-api-java9 - - - - - - - maven-dependency-plugin - - - unpack-classes - prepare-package - - unpack - - - - - org.apache.logging.log4j - log4j-api-java9 - ${project.version} - zip - false - - - **/*.class - **/*.java - ${project.build.directory} - false - true - - - - - - - diff --git a/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom.sha1 deleted file mode 100644 index 8b94387a2..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-api/2.23.0/log4j-api-2.23.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -de661ee3bd37c422e5911cb5ade487bcb327a70d \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/_remote.repositories deleted file mode 100644 index a8cc7e163..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:50 EDT 2024 -log4j-bom-2.13.2.pom>local-repo= diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom deleted file mode 100644 index 31a5a3886..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom +++ /dev/null @@ -1,210 +0,0 @@ - - - - - org.apache.logging - logging-parent - 1 - - 4.0.0 - Apache Log4j BOM - Apache Log4j Bill of Materials - org.apache.logging.log4j - log4j-bom - 2.13.2 - pom - - - - - org.apache.logging.log4j - log4j-api - ${project.version} - - - - org.apache.logging.log4j - log4j-core - ${project.version} - - - - org.apache.logging.log4j - log4j-1.2-api - ${project.version} - - - - org.apache.logging.log4j - log4j-jcl - ${project.version} - - - - org.apache.logging.log4j - log4j-flume-ng - ${project.version} - - - - org.apache.logging.log4j - log4j-taglib - ${project.version} - - - - org.apache.logging.log4j - log4j-jmx-gui - ${project.version} - - - - org.apache.logging.log4j - log4j-slf4j-impl - ${project.version} - - - - org.apache.logging.log4j - log4j-slf4j18-impl - ${project.version} - - - - org.apache.logging.log4j - log4j-to-slf4j - ${project.version} - - - - org.apache.logging.log4j - log4j-appserver - ${project.version} - - - - org.apache.logging.log4j - log4j-web - ${project.version} - - - - org.apache.logging.log4j - log4j-couchdb - ${project.version} - - - - org.apache.logging.log4j - log4j-mongodb2 - ${project.version} - - - - org.apache.logging.log4j - log4j-mongodb3 - ${project.version} - - - - org.apache.logging.log4j - log4j-cassandra - ${project.version} - - - - org.apache.logging.log4j - log4j-jpa - ${project.version} - - - - org.apache.logging.log4j - log4j-iostreams - ${project.version} - - - - org.apache.logging.log4j - log4j-jul - ${project.version} - - - - org.apache.logging.log4j - log4j-jpl - ${project.version} - - - - org.apache.logging.log4j - log4j-liquibase - ${project.version} - - - - org.apache.logging.log4j - log4j-docker - ${project.version} - - - - org.apache.logging.log4j - log4j-kubernetes - ${project.version} - - - - org.apache.logging.log4j - log4j-spring-cloud-config-client - ${project.version} - - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.7.1 - - true - true - - - - - org.apache.rat - apache-rat-plugin - 0.12 - - - org.apache.maven.plugins - maven-doap-plugin - 1.2 - - true - - - - - - - log4j-2.13.2-rc1 - - diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.lastUpdated b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.lastUpdated deleted file mode 100644 index 49dce96b7..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:50 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139890457 -http\://0.0.0.0/.error=Could not transfer artifact org.apache.logging.log4j\:log4j-bom\:pom\:2.13.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139890169 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139890179 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139890312 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139890412 diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.sha1 deleted file mode 100644 index 9f52f20a2..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-bom/2.13.2/log4j-bom-2.13.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d697a1279e7f28a0ac5741ec647f8b75ec5c3d63 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/_remote.repositories deleted file mode 100644 index 74b94aa9f..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:32 EDT 2024 -log4j-bom-2.21.1.pom>ohdsi= diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom deleted file mode 100644 index 714f264fa..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom +++ /dev/null @@ -1,372 +0,0 @@ - - - - 4.0.0 - - org.apache.logging - logging-parent - 10.1.1 - - - org.apache.logging.log4j - log4j-bom - 2.21.1 - pom - Apache Log4j BOM - Apache Log4j Bill-of-Materials - https://logging.apache.org/log4j/2.x/ - 1999 - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - rgoers - Ralph Goers - rgoers@apache.org - Nextiva - - PMC Member - - America/Phoenix - - - ggregory - Gary Gregory - ggregory@apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - - sdeboy - Scott Deboy - sdeboy@apache.org - - PMC Member - - America/Los_Angeles - - - rpopma - Remko Popma - rpopma@apache.org - - PMC Member - - Asia/Tokyo - - - nickwilliams - Nick Williams - nickwilliams@apache.org - - PMC Member - - America/Chicago - - - mattsicker - Matt Sicker - mattsicker@apache.org - Apple - - PMC Member - - America/Chicago - - - bbrouwer - Bruce Brouwer - bruce.brouwer@gmail.com - - Committer - - America/Detroit - - - rgupta - Raman Gupta - rgupta@apache.org - - Committer - - Asia/Kolkata - - - mikes - Mikael Ståldal - mikes@apache.org - Spotify - - PMC Member - - Europe/Stockholm - - - ckozak - Carter Kozak - ckozak@apache.org - https://github.com/carterkozak - - PMC Member - - America/New York - - - vy - Volkan Yazıcı - vy@apache.org - - PMC Chair - - Europe/Amsterdam - - - rgrabowski - Ron Grabowski - rgrabowski@apache.org - - PMC Member - - America/New_York - - - pkarwasz - Piotr P. Karwasz - pkarwasz@apache.org - - PMC Member - - Europe/Warsaw - - - grobmeier - Christian Grobmeier - grobmeier@apache.org - - PMC Member - - Europe/Berlin - - - - - log4j-user - log4j-user-subscribe@logging.apache.org - log4j-user-unsubscribe@logging.apache.org - log4j-user@logging.apache.org - https://lists.apache.org/list.html?log4j-user@logging.apache.org - - - dev - dev-subscribe@logging.apache.org - dev-unsubscribe@logging.apache.org - dev@logging.apache.org - https://lists.apache.org/list.html?dev@logging.apache.org - - - security - security-subscribe@logging.apache.org - security-unsubscribe@logging.apache.org - security@logging.apache.org - https://lists.apache.org/list.html?security@logging.apache.org - - - - scm:git:https://github.com/apache/logging-log4j2.git - scm:git:https://github.com/apache/logging-log4j2.git - 2.x - https://github.com/apache/logging-log4j2 - - - GitHub Issues - https://github.com/apache/logging-log4j2/issues - - - GitHub Actions - https://github.com/apache/logging-log4j2/actions - - - - - org.apache.logging.log4j - log4j-1.2-api - 2.21.1 - - - org.apache.logging.log4j - log4j-api - 2.21.1 - - - org.apache.logging.log4j - log4j-api-test - 2.21.1 - - - org.apache.logging.log4j - log4j-appserver - 2.21.1 - - - org.apache.logging.log4j - log4j-cassandra - 2.21.1 - - - org.apache.logging.log4j - log4j-core - 2.21.1 - - - org.apache.logging.log4j - log4j-core-test - 2.21.1 - - - org.apache.logging.log4j - log4j-couchdb - 2.21.1 - - - org.apache.logging.log4j - log4j-docker - 2.21.1 - - - org.apache.logging.log4j - log4j-flume-ng - 2.21.1 - - - org.apache.logging.log4j - log4j-iostreams - 2.21.1 - - - org.apache.logging.log4j - log4j-jakarta-smtp - 2.21.1 - - - org.apache.logging.log4j - log4j-jakarta-web - 2.21.1 - - - org.apache.logging.log4j - log4j-jcl - 2.21.1 - - - org.apache.logging.log4j - log4j-jmx-gui - 2.21.1 - - - org.apache.logging.log4j - log4j-jpa - 2.21.1 - - - org.apache.logging.log4j - log4j-jpl - 2.21.1 - - - org.apache.logging.log4j - log4j-jul - 2.21.1 - - - org.apache.logging.log4j - log4j-kubernetes - 2.21.1 - - - org.apache.logging.log4j - log4j-layout-template-json - 2.21.1 - - - org.apache.logging.log4j - log4j-mongodb3 - 2.21.1 - - - org.apache.logging.log4j - log4j-mongodb4 - 2.21.1 - - - org.apache.logging.log4j - log4j-slf4j2-impl - 2.21.1 - - - org.apache.logging.log4j - log4j-slf4j-impl - 2.21.1 - - - org.apache.logging.log4j - log4j-spring-boot - 2.21.1 - - - org.apache.logging.log4j - log4j-spring-cloud-config-client - 2.21.1 - - - org.apache.logging.log4j - log4j-taglib - 2.21.1 - - - org.apache.logging.log4j - log4j-to-jul - 2.21.1 - - - org.apache.logging.log4j - log4j-to-slf4j - 2.21.1 - - - org.apache.logging.log4j - log4j-web - 2.21.1 - - - - diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.lastUpdated b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.lastUpdated deleted file mode 100644 index 44c4806bf..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:32 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.apache.logging.log4j\:log4j-bom\:pom\:2.21.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139812225 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139812329 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139812550 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139812725 diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.sha1 deleted file mode 100644 index 719206870..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4cc0e3782fb62b2c59b114276f15785e03b9c731 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/_remote.repositories deleted file mode 100644 index 479d784a0..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:50 EDT 2024 -log4j-bom-2.23.0.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom b/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom deleted file mode 100644 index c10c61d5a..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom +++ /dev/null @@ -1,367 +0,0 @@ - - - - 4.0.0 - - org.apache.logging - logging-parent - 10.6.0 - - - org.apache.logging.log4j - log4j-bom - 2.23.0 - pom - Apache Log4j BOM - Apache Log4j Bill-of-Materials - https://logging.apache.org/log4j/2.x/ - 1999 - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - rgoers - Ralph Goers - rgoers@apache.org - Nextiva - - PMC Member - - America/Phoenix - - - ggregory - Gary Gregory - ggregory@apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - - sdeboy - Scott Deboy - sdeboy@apache.org - - PMC Member - - America/Los_Angeles - - - rpopma - Remko Popma - rpopma@apache.org - - PMC Member - - Asia/Tokyo - - - nickwilliams - Nick Williams - nickwilliams@apache.org - - PMC Member - - America/Chicago - - - mattsicker - Matt Sicker - mattsicker@apache.org - Apple - - PMC Member - - America/Chicago - - - bbrouwer - Bruce Brouwer - bruce.brouwer@gmail.com - - Committer - - America/Detroit - - - rgupta - Raman Gupta - rgupta@apache.org - - Committer - - Asia/Kolkata - - - mikes - Mikael Ståldal - mikes@apache.org - Spotify - - PMC Member - - Europe/Stockholm - - - ckozak - Carter Kozak - ckozak@apache.org - https://github.com/carterkozak - - PMC Member - - America/New York - - - vy - Volkan Yazıcı - vy@apache.org - - PMC Chair - - Europe/Amsterdam - - - rgrabowski - Ron Grabowski - rgrabowski@apache.org - - PMC Member - - America/New_York - - - pkarwasz - Piotr P. Karwasz - pkarwasz@apache.org - - PMC Member - - Europe/Warsaw - - - grobmeier - Christian Grobmeier - grobmeier@apache.org - - PMC Member - - Europe/Berlin - - - - - log4j-user - log4j-user-subscribe@logging.apache.org - log4j-user-unsubscribe@logging.apache.org - log4j-user@logging.apache.org - https://lists.apache.org/list.html?log4j-user@logging.apache.org - - - dev - dev-subscribe@logging.apache.org - dev-unsubscribe@logging.apache.org - dev@logging.apache.org - https://lists.apache.org/list.html?dev@logging.apache.org - - - security - security-subscribe@logging.apache.org - security-unsubscribe@logging.apache.org - security@logging.apache.org - https://lists.apache.org/list.html?security@logging.apache.org - - - - scm:git:https://github.com/apache/logging-log4j2.git - scm:git:https://github.com/apache/logging-log4j2.git - 2.x - https://github.com/apache/logging-log4j2 - - - GitHub Issues - https://github.com/apache/logging-log4j2/issues - - - GitHub Actions - https://github.com/apache/logging-log4j2/actions - - - - - org.apache.logging.log4j - log4j-1.2-api - 2.23.0 - - - org.apache.logging.log4j - log4j-api - 2.23.0 - - - org.apache.logging.log4j - log4j-api-test - 2.23.0 - - - org.apache.logging.log4j - log4j-appserver - 2.23.0 - - - org.apache.logging.log4j - log4j-cassandra - 2.23.0 - - - org.apache.logging.log4j - log4j-core - 2.23.0 - - - org.apache.logging.log4j - log4j-core-test - 2.23.0 - - - org.apache.logging.log4j - log4j-couchdb - 2.23.0 - - - org.apache.logging.log4j - log4j-docker - 2.23.0 - - - org.apache.logging.log4j - log4j-flume-ng - 2.23.0 - - - org.apache.logging.log4j - log4j-iostreams - 2.23.0 - - - org.apache.logging.log4j - log4j-jakarta-smtp - 2.23.0 - - - org.apache.logging.log4j - log4j-jakarta-web - 2.23.0 - - - org.apache.logging.log4j - log4j-jcl - 2.23.0 - - - org.apache.logging.log4j - log4j-jpa - 2.23.0 - - - org.apache.logging.log4j - log4j-jpl - 2.23.0 - - - org.apache.logging.log4j - log4j-jul - 2.23.0 - - - org.apache.logging.log4j - log4j-kubernetes - 2.23.0 - - - org.apache.logging.log4j - log4j-layout-template-json - 2.23.0 - - - org.apache.logging.log4j - log4j-mongodb3 - 2.23.0 - - - org.apache.logging.log4j - log4j-mongodb4 - 2.23.0 - - - org.apache.logging.log4j - log4j-slf4j2-impl - 2.23.0 - - - org.apache.logging.log4j - log4j-slf4j-impl - 2.23.0 - - - org.apache.logging.log4j - log4j-spring-boot - 2.23.0 - - - org.apache.logging.log4j - log4j-spring-cloud-config-client - 2.23.0 - - - org.apache.logging.log4j - log4j-taglib - 2.23.0 - - - org.apache.logging.log4j - log4j-to-jul - 2.23.0 - - - org.apache.logging.log4j - log4j-to-slf4j - 2.23.0 - - - org.apache.logging.log4j - log4j-web - 2.23.0 - - - - diff --git a/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom.sha1 deleted file mode 100644 index 0782b8474..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-bom/2.23.0/log4j-bom-2.23.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -34baf05741503d1136f56ef775ade773f0228b00 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/_remote.repositories deleted file mode 100644 index 711e4aa20..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -log4j-core-2.23.0.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom b/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom deleted file mode 100644 index b6b556f30..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom +++ /dev/null @@ -1,269 +0,0 @@ - - - - 4.0.0 - - org.apache.logging.log4j - log4j - 2.23.0 - ../log4j-parent - - org.apache.logging.log4j - log4j-core - 2.23.0 - Apache Log4j Core - The Apache Log4j Implementation - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - false - true - org.osgi.core;static=true;transitive=false, - - java.logging;static=true, - java.sql;static=true, - - com.fasterxml.jackson.annotation;transitive=false, - com.lmax.disruptor;transitive=false, - com.fasterxml.jackson.core;transitive=false, - com.fasterxml.jackson.databind;transitive=false, - com.fasterxml.jackson.dataformat.xml;transitive=false, - com.fasterxml.jackson.dataformat.yaml;transitive=false, - java.naming;transitive=false, - org.apache.commons.csv;transitive=false, - org.fusesource.jansi;transitive=false, - org.zeromq.jeromq;transitive=false, - - com.conversantmedia.disruptor;substitute="disruptor";transitive=false;static=true, - - kafka.clients;substitute="kafka-clients";transitive=false;static=true, - javax.jms.api;substitute="javax.jms-api";transitive=false;static=true, - javax.mail.api;substitute="javax.mail-api";transitive=false;static=true - com.conversantmedia.util.concurrent;resolution:=optional; - com.fasterxml.jackson.*;resolution:=optional, - com.lmax.disruptor.*;resolution:=optional, - javax.activation;resolution:=optional, - javax.jms;version="[1.1,3)";resolution:=optional, - javax.mail.*;version="[1.6,2)";resolution:=optional, - org.apache.commons.compress.*;resolution:=optional, - org.apache.commons.csv;resolution:=optional, - org.apache.kafka.*;resolution:=optional, - org.codehaus.stax2;resolution:=optional, - org.fusesource.jansi;resolution:=optional, - org.jctools.*;resolution:=optional, - org.zeromq;resolution:=optional, - javax.lang.model.*;resolution:=optional, - javax.tools;resolution:=optional, - - javax.sql;resolution:=optional, - java.util.logging;resolution:=optional, - - javax.naming;resolution:=optional - - - - javax.activation - javax.activation-api - provided - true - - - javax.jms - javax.jms-api - provided - true - - - javax.mail - javax.mail-api - provided - true - - - org.osgi - org.osgi.core - provided - - - org.apache.logging.log4j - log4j-api - - - org.apache.commons - commons-compress - true - - - org.apache.commons - commons-csv - true - - - com.conversantmedia - disruptor - true - - - com.lmax - disruptor - true - - - com.fasterxml.jackson.core - jackson-core - true - - - com.fasterxml.jackson.core - jackson-databind - true - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - true - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - true - - - org.fusesource.jansi - jansi - true - - - org.jctools - jctools-core - true - - - org.zeromq - jeromq - true - - - org.apache.kafka - kafka-clients - true - - - com.sun.mail - javax.mail - runtime - true - - - org.slf4j - slf4j-api - runtime - true - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - generate-sources - - add-source - - - - ${project.build.directory}/log4j-core-java9 - - - - - - - maven-compiler-plugin - - - default-compile - - - - com.google.errorprone - error_prone_core - ${error-prone.version} - - - - - - process-plugins - process-classes - - compile - - - - org.apache.logging.log4j.core.config.plugins.processor.PluginProcessor - - - only - - - - - - - - - maven-dependency-plugin - - - unpack-classes - prepare-package - - unpack - - - - - org.apache.logging.log4j - log4j-core-java9 - ${project.version} - zip - false - - - **/*.class - **/*.java - ${project.build.directory} - false - true - - - - - - - diff --git a/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom.sha1 deleted file mode 100644 index 5a17b7731..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-core/2.23.0/log4j-core-2.23.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -453b1774d533b7fd6d3d42f413c0162b533461fa \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/_remote.repositories deleted file mode 100644 index 6ea4a3e3c..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -log4j-jul-2.21.1.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom b/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom deleted file mode 100644 index f8b21570a..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom +++ /dev/null @@ -1,130 +0,0 @@ - - - - 4.0.0 - - org.apache.logging.log4j - log4j - 2.21.1 - ../log4j-parent - - org.apache.logging.log4j - log4j-jul - 2.21.1 - Apache Log4j JUL Adapter - The Apache Log4j implementation of java.util.logging - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - org.apache.logging.log4j.core.*;resolution:=optional - - - - org.apache.logging.log4j - log4j-api - - - org.apache.logging.log4j - log4j-core - true - - - org.apache.logging.log4j - log4j-core-test - test - - - org.assertj - assertj-core - test - - - com.lmax - disruptor - test - - - org.hamcrest - hamcrest - test - - - junit - junit - test - - - - - - maven-surefire-plugin - - - default-test - test - - test - - - - Log4jBridgeHandlerTest.java - - - - - bridgeHandler-test - test - - test - - - - Log4jBridgeHandlerTest.java - - - src/test/resources/logging-test.properties - log4j2-julBridge-test.xml - - - - - - - org.apache.maven.surefire - surefire-junit47 - ${surefire.version} - - - - - true - - -Xms256m -Xmx1024m - 1 - false - - - - - diff --git a/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom.sha1 deleted file mode 100644 index 8d24f37e2..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-jul/2.21.1/log4j-jul-2.21.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bbdc4b64fe6745a40a401279c3d0e055e6f3b5b9 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/_remote.repositories deleted file mode 100644 index f42553d5f..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -log4j-slf4j2-impl-2.21.1.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom b/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom deleted file mode 100644 index b137f0181..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom +++ /dev/null @@ -1,155 +0,0 @@ - - - - 4.0.0 - - org.apache.logging.log4j - log4j - 2.21.1 - ../log4j-parent - - org.apache.logging.log4j - log4j-slf4j2-impl - 2.21.1 - Apache Log4j SLF4J 2.0 Binding - The Apache Log4j SLF4J 2.0 API binding to Log4j 2 Core - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - /slf4j2-impl - 2.0.6 - SLF4J Documentation - org.slf4j;substitute="slf4j-api" - - - - org.osgi - org.osgi.core - provided - - - org.apache.logging.log4j - log4j-api - - - org.slf4j - slf4j-api - - - org.apache.logging.log4j - log4j-core - runtime - - - org.apache.logging.log4j - log4j-api-test - test - - - org.apache.logging.log4j - log4j-core-test - test - - - org.apache.logging.log4j - log4j-to-slf4j - test - - - org.slf4j - slf4j-ext - test - - - org.assertj - assertj-core - test - - - org.apache.commons - commons-csv - test - - - org.apache.commons - commons-lang3 - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.junit.vintage - junit-vintage-engine - test - - - - - - maven-surefire-plugin - - - loop-test - test - - test - - - - **/OverflowTest.java - - junit-vintage - - - - default-test - test - - test - - - - **/*Test.java - - - **/OverflowTest.java - - - org.apache.logging.log4j:log4j-to-slf4j - - - - - - - - diff --git a/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom.sha1 deleted file mode 100644 index d941a7c00..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-slf4j2-impl/2.21.1/log4j-slf4j2-impl-2.21.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b64646ededa50599e6e63b51cf134c2a975d3bef \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/_remote.repositories deleted file mode 100644 index d77edfc95..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:49 EDT 2024 -log4j-to-slf4j-2.21.1.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom b/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom deleted file mode 100644 index 5a2dfefb2..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom +++ /dev/null @@ -1,122 +0,0 @@ - - - - 4.0.0 - - org.apache.logging.log4j - log4j - 2.21.1 - ../log4j-parent - - org.apache.logging.log4j - log4j-to-slf4j - 2.21.1 - Apache Log4j to SLF4J Adapter - The Apache Log4j binding between Log4j 2 API and SLF4J. - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - /log4j-to-slf4j - 3 - SLF4J Documentation - org.slf4j.*;version="${range;[==,${slf4j.support.bound})}" - - - - org.osgi - org.osgi.core - provided - - - org.apache.logging.log4j - log4j-api - - - org.slf4j - slf4j-api - - - org.assertj - assertj-core - test - - - org.hamcrest - hamcrest - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.junit.vintage - junit-vintage-engine - test - - - ch.qos.logback - logback-classic - test - - - ch.qos.logback - logback-core - test - - - ch.qos.logback - logback-core - test-jar - test - - - - - - maven-enforcer-plugin - - - ban-logging-dependencies - - - - - ch.qos.logback:*:*:*:test - - - - - - - - - - diff --git a/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom.sha1 deleted file mode 100644 index 486672a14..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3817e377d0657ce3ce833e57bacc5e8444aef40a \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.21.1/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j/2.21.1/_remote.repositories deleted file mode 100644 index cd5b81e65..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j/2.21.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:49 EDT 2024 -log4j-2.21.1.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom b/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom deleted file mode 100644 index 18cc8cbcf..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom +++ /dev/null @@ -1,957 +0,0 @@ - - - - 4.0.0 - - org.apache.logging.log4j - log4j-bom - 2.21.1 - - org.apache.logging.log4j - log4j - 2.21.1 - pom - Apache Log4j Parent - Apache Log4j Parent - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - 2.15.2 - 3.5.8 - 1.5.5-6 - 7.0.5 - 2.35.1 - 1.7.0 - 2.9.0 - 0.43.4 - 2.3.3 - 4.10.2 - 2.0.2 - 9.1.0 - 3.3.3 - 1.2.1 - 1 - 4.0.1 - 2.1.2 - 1.7.36 - 2.9.1 - 1.2 - 3.13.0 - 1.2.17 - 1.9 - 1.15 - 4.13.2 - 3.0.19 - 1.2.12 - 5.13.0 - 0.2.0 - 2.0.8 - 1.2.15 - 8.10.3 - 3.9.0 - 6.0.0 - 1.2.0 - 2.2.222 - 1.24.0 - 2.1.12 - 3.4.0 - 6.5.1 - 1.6.2 - 10.0.27 - 3.11.16 - 3.5.0 - 1.37 - 5.12.4 - 1.14.8 - 4.1.97.Final - 5.17.4 - 9.4.53.v20231009 - 32.1.2-jre - 2.0.2 - 2.2 - 3.1.2 - 2.15.0 - 2.7.15 - 2.0.1 - 4.5.14 - 3.1 - 2.2.4 - 9.5 - 3.24.2 - 2.4.0 - 3.4.4 - 4.13.5 - 2.0.1 - 2.11.0 - 5.3.29 - 2.0b6 - 0.9.0 - 2.38.0 - 2.7.2 - 2.2 - 4.11.0 - 4.7.1 - 1.11.0 - 1.9.1 - 2.7.11 - 4.4.16 - 2.4 - 4.13.5 - 5.10.0 - 1.10.0 - 18.3.12 - 0.5.3 - 3.11.5 - 4.2.0 - 2.1.2 - 3.13.0.v20180226-1711 - 1.5.0 - 1.6.0 - 4.0.1 - 1.7 - 2.11.1 - - - - - org.apache.logging.log4j - log4j-osgi-test - ${project.version} - - - org.apache.logging.log4j - log4j-layout-template-json-test - ${project.version} - - - org.ow2.asm - asm-bom - ${asm.version} - pom - import - - - org.codehaus.groovy - groovy-bom - ${groovy.version} - pom - import - - - com.fasterxml.jackson - jackson-bom - ${jackson-bom.version} - pom - import - - - jakarta.platform - jakarta.jakartaee-bom - ${jakartaee-bom.version} - pom - import - - - org.eclipse.jetty - jetty-bom - ${jetty.version} - pom - import - - - org.junit - junit-bom - ${junit-jupiter.version} - pom - import - - - io.fabric8 - kubernetes-client-bom - ${kubernetes-client.version} - pom - import - - - org.mockito - mockito-bom - ${mockito.version} - pom - import - - - io.netty - netty-bom - ${netty.version} - pom - import - - - org.springframework - spring-framework-bom - ${spring-framework.version} - pom - import - - - org.apache.logging.log4j - log4j-api-java9 - ${project.version} - zip - - - org.apache.logging.log4j - log4j-core-java9 - ${project.version} - zip - - - org.apache.activemq - activemq-broker - ${activemq.version} - - - org.eclipse.angus - angus-activation - ${angus-activation.version} - - - org.assertj - assertj-core - ${assertj.version} - - - org.awaitility - awaitility - ${awaitility.version} - - - org.apache-extras.beanshell - bsh - ${bsh.version} - - - org.mongodb - bson - ${mongodb.version} - - - net.bytebuddy - byte-buddy - ${byte-buddy.version} - - - org.apache.cassandra - cassandra-all - ${cassandra.version} - - - org.slf4j - jcl-over-slf4j - - - org.slf4j - log4j-over-slf4j - - - ch.qos.logback - logback-classic - - - ch.qos.logback - logback-core - - - - - com.datastax.cassandra - cassandra-driver-core - ${cassandra-driver.version} - - - org.apache.cassandra - cassandra-thrift - ${cassandra.version} - - - org.slf4j - jcl-over-slf4j - - - org.slf4j - log4j-over-slf4j - - - - - commons-codec - commons-codec - ${commons-codec.version} - - - org.apache.commons - commons-compress - ${commons-compress.version} - - - org.apache.commons - commons-csv - ${commons-csv.version} - - - org.apache.commons - commons-dbcp2 - ${commons-dbcp2.version} - - - commons-httpclient - commons-httpclient - ${commons-httpclient.version} - - - commons-io - commons-io - ${commons-io.version} - - - org.apache.commons - commons-lang3 - ${commons-lang3.version} - - - commons-logging - commons-logging - ${commons-logging.version} - - - org.apache.commons - commons-pool2 - ${commons-pool2.version} - - - de.flapdoodle.embed - de.flapdoodle.embed.mongo - ${flapdoodle-embed.version} - - - de.flapdoodle.embed - de.flapdoodle.embed.process - ${flapdoodle-embed.version} - - - de.flapdoodle.reverse - de.flapdoodle.reverse - ${flapdoodle-reverse.version} - - - com.conversantmedia - disruptor - ${conversant.disruptor.version} - - - com.lmax - disruptor - ${disruptor.version} - - - co.elastic.clients - elasticsearch-java - ${elasticsearch-java.version} - - - org.zapodot - embedded-ldap-junit - ${embedded-ldap.version} - - - org.apache.flume.flume-ng-channels - flume-file-channel - ${flume.version} - - - junit - junit - - - log4j - log4j - - - org.mortbay.jetty - servlet-api - - - org.mortbay.jetty - servlet-api-2.5 - - - org.slf4j - slf4j-log4j12 - - - - - org.apache.flume - flume-ng-core - ${flume.version} - - - log4j - log4j - - - org.slf4j - slf4j-log4j12 - - - - - org.apache.flume - flume-ng-embedded-agent - ${flume.version} - - - org.codehaus.jackson - jackson-core-asl - - - org.codehaus.jackson - jackson-mapper-asl - - - log4j - log4j - - - org.slf4j - slf4j-log4j12 - - - - - org.apache.flume - flume-ng-node - ${flume.version} - - - org.codehaus.jackson - jackson-core-asl - - - org.codehaus.jackson - jackson-mapper-asl - - - log4j - log4j - - - org.slf4j - slf4j-log4j12 - - - - - org.apache.flume - flume-ng-sdk - ${flume.version} - - - org.codehaus.jackson - jackson-core-asl - - - org.codehaus.jackson - jackson-mapper-asl - - - - - com.google.guava - guava - ${guava.version} - - - com.google.guava - guava-testlib - ${guava.version} - - - com.h2database - h2 - ${h2.version} - - - org.apache.hadoop - hadoop-core - ${hadoop.version} - - - org.codehaus.jackson - jackson-core-asl - - - org.codehaus.jackson - jackson-mapper-asl - - - junit - junit - - - org.mortbay.jetty - servlet-api - - - - - org.hamcrest - hamcrest - ${hamcrest.version} - - - org.hamcrest - hamcrest-core - ${hamcrest.version} - - - org.hamcrest - hamcrest-library - ${hamcrest.version} - - - org.hdrhistogram - HdrHistogram - ${HdrHistogram.version} - - - org.hsqldb - hsqldb - ${hsqldb.version} - jdk8 - - - org.apache.httpcomponents - httpclient - ${httpclient.version} - - - org.apache.httpcomponents - httpcore - ${httpcore.version} - - - jakarta.activation - jakarta.activation-api - ${jakarta-activation.version} - - - org.eclipse.angus - jakarta.mail - ${angus-mail.version} - - - jakarta.mail - jakarta.mail-api - ${jakarta-mail.version} - - - org.fusesource.jansi - jansi - ${jansi.version} - - - com.google.code.java-allocation-instrumenter - java-allocation-instrumenter - ${java-allocation-instrumenter.version} - - - javax.activation - javax.activation-api - ${javax-activation.version} - - - javax.inject - javax.inject - ${javax-inject.version} - - - javax.jms - javax.jms-api - ${javax-jms.version} - - - com.sun.mail - javax.mail - ${javax-mail.version} - - - javax.mail - javax.mail-api - ${javax-mail.version} - - - javax.persistence - javax.persistence-api - ${javax-persistence.version} - - - javax.servlet.jsp - javax.servlet.jsp-api - ${javax-servlet-jsp.version} - - - javax.servlet - javax.servlet-api - ${javax-servlet.version} - - - com.sun - jconsole - ${jconsole.version} - - - org.jctools - jctools-core - ${jctools.version} - - - com.sleepycat - je - ${je.version} - - - org.zeromq - jeromq - ${jeromq.version} - - - org.jmdns - jmdns - ${jmdns.version} - - - org.openjdk.jmh - jmh-core - ${jmh.version} - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh.version} - - - net.java.dev.jna - jna - ${jna.version} - - - net.javacrumbs.json-unit - json-unit - ${json-unit.version} - - - junit - junit - ${junit.version} - - - org.junit-pioneer - junit-pioneer - ${junit-pioneer.version} - - - org.apache.kafka - kafka-clients - ${kafka.version} - - - org.lightcouch - lightcouch - ${lightcouch.version} - - - log4j - log4j - ${log4j.version} - - - co.elastic.logging - log4j2-ecs-layout - ${log4j2-ecs-layout.version} - - - ch.qos.logback - logback-classic - ${logback.version} - - - ch.qos.logback - logback-classic - ${logback.version} - test-jar - - - ch.qos.logback - logback-core - ${logback.version} - - - ch.qos.logback - logback-core - ${logback.version} - test-jar - - - org.apache.maven - maven-core - ${maven.version} - - - org.mongodb - mongodb-driver-core - ${mongodb.version} - - - org.mongodb - mongodb-driver-legacy - ${mongodb.version} - - - org.mongodb - mongodb-driver-sync - ${mongodb.version} - - - org.apache.felix - org.apache.felix.framework - ${felix.version} - - - org.eclipse.tycho - org.eclipse.osgi - ${org.eclipse.osgi.version} - - - org.eclipse.persistence - org.eclipse.persistence.jpa - ${org.eclipse.persistence.version} - - - org.eclipse.persistence - jakarta.persistence - - - - - org.osgi - org.osgi.core - ${osgi.api.version} - - - oro - oro - ${oro.version} - - - org.ops4j.pax.exam - pax-exam - ${pax-exam.version} - - - org.ops4j.pax.exam - pax-exam-container-native - ${pax-exam.version} - - - org.ops4j.pax.exam - pax-exam-junit4 - ${pax-exam.version} - - - org.ops4j.pax.exam - pax-exam-link-assembly - ${pax-exam.version} - - - org.ops4j.pax.exam - pax-exam-spi - ${pax-exam.version} - - - org.codehaus.plexus - plexus-utils - ${plexus-utils.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.slf4j - slf4j-ext - ${slf4j.version} - - - org.springframework.boot - spring-boot - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-test - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-logging - - - - - uk.org.webcompere - system-stubs-core - ${system-stubs.version} - - - uk.org.webcompere - system-stubs-jupiter - ${system-stubs.version} - - - org.apache.tomcat - tomcat-juli - ${tomcat-juli.version} - - - org.apache.velocity - velocity - ${velocity.version} - - - com.github.tomakehurst - wiremock-jre8 - ${wiremock.version} - - - com.fasterxml.woodstox - woodstox-core - ${woodstox.version} - - - org.xmlunit - xmlunit-core - ${xmlunit.version} - - - org.xmlunit - xmlunit-matchers - ${xmlunit.version} - - - org.tukaani - xz - ${xz.version} - - - com.github.luben - zstd-jni - ${zstd.version} - - - - - - biz.aQute.bnd - biz.aQute.bnd.annotation - provided - - - org.osgi - osgi.annotation - provided - - - org.osgi - org.osgi.annotation.bundle - provided - - - com.github.spotbugs - spotbugs-annotations - provided - - - - - - - io.fabric8 - docker-maven-plugin - ${docker-maven-plugin.version} - - - org.ops4j.pax.exam - exam-maven-plugin - ${exam-maven-plugin.version} - - - net.sourceforge.maven-taglib - maven-taglib-plugin - ${maven-taglib-plugin.version} - - - - - - maven-enforcer-plugin - - - ban-logging-dependencies - - enforce - - - - - - org.slf4j:jcl-over-slf4j - org.springframework:spring-jcl - org.slf4j:log4j-over-slf4j - ch.qos.reload4j:reload4j - org.slf4j:slf4j-log4j12 - org.slf4j:slf4j-reload4j - org.ops4j.pax.logging:* - ch.qos.logback:* - - - - - - - - - - diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom.sha1 deleted file mode 100644 index e443d8b67..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j/2.21.1/log4j-2.21.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f30e56720f3788e4499420e826e971b1c2c4b1d8 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.23.0/_remote.repositories b/code/arachne/org/apache/logging/log4j/log4j/2.23.0/_remote.repositories deleted file mode 100644 index 13970621e..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j/2.23.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:50 EDT 2024 -log4j-2.23.0.pom>central= diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom b/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom deleted file mode 100644 index cee8d1e56..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom +++ /dev/null @@ -1,996 +0,0 @@ - - - - 4.0.0 - - org.apache.logging.log4j - log4j-bom - 2.23.0 - - org.apache.logging.log4j - log4j - 2.23.0 - pom - Apache Log4j Parent - Apache Log4j Parent - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - 2.16.1 - 3.5.9 - 1.5.5-11 - 7.0.5 - 2.35.1 - 1.7.0 - 2.11.0 - 15.4 - 0.43.4 - 2.3.3 - 4.11.1 - 2.0.3 - 9.1.0 - 3.3.4 - 1.2.1 - 1 - 4.0.1 - 2.1.2 - 2.0.9 - 2.9.1 - 1.3.0 - 3.14.0 - 1.2.17 - 1.9 - 1.16.1 - 4.13.2 - 3.0.20 - 1.3.14 - 5.14.0 - 0.2.0 - 2.0.8 - 1.2.15 - 8.12.1 - 3.9.6 - 6.0.0 - 1.2.0 - 2.2.224 - 1.25.0 - 2.1.12 - 3.6.1 - 1.6.2 - 10.0.27 - 3.11.16 - 3.5.1 - 1.37 - 5.12.4 - 1.14.9 - 4.1.107.Final - 6.0.1 - 9.4.54.v20240208 - 33.0.0-jre - 2.0.2 - 2.2 - 3.2.5 - 2.15.0 - 2.7.18 - 2.0.1 - 4.5.14 - 3.1 - 2.2.4 - 9.6 - 3.25.3 - 2.4.1 - 3.4.4 - 4.13.5 - 2.0.1 - 2.15.1 - 5.3.32 - 2.0b6 - 0.9.0 - 2.38.0 - 2.7.2 - 2.2 - 4.11.0 - 4.9.0 - 1.11.0 - 1.9.1 - 2.7.14 - 4.4.16 - 2.4 - 4.13.5 - 5.10.2 - 1.10.0 - 18.3.12 - 0.6.0 - 3.11.5 - 4.2.0 - 2.1.2 - 3.13.0.v20180226-1711 - 1.5.0 - 1.7.2 - 4.0.3 - 1.7 - 2.12.0 - - - - - org.apache.logging.log4j - log4j-osgi-test - ${project.version} - - - org.apache.logging.log4j - log4j-layout-template-json-test - ${project.version} - - - org.codehaus.groovy - groovy-bom - ${groovy.version} - pom - import - - - com.fasterxml.jackson - jackson-bom - ${jackson-bom.version} - pom - import - - - jakarta.platform - jakarta.jakartaee-bom - ${jakartaee-bom.version} - pom - import - - - org.eclipse.jetty - jetty-bom - ${jetty.version} - pom - import - - - org.junit - junit-bom - ${junit-jupiter.version} - pom - import - - - io.fabric8 - kubernetes-client-bom - ${kubernetes-client.version} - pom - import - - - org.mockito - mockito-bom - ${mockito.version} - pom - import - - - io.netty - netty-bom - ${netty.version} - pom - import - - - org.springframework - spring-framework-bom - ${spring-framework.version} - pom - import - - - org.apache.logging.log4j - log4j-api-java9 - ${project.version} - zip - - - org.apache.logging.log4j - log4j-core-java9 - ${project.version} - zip - - - org.apache.activemq - activemq-broker - ${activemq.version} - - - org.eclipse.angus - angus-activation - ${angus-activation.version} - - - org.assertj - assertj-core - ${assertj.version} - - - org.awaitility - awaitility - ${awaitility.version} - - - org.apache-extras.beanshell - bsh - ${bsh.version} - - - org.mongodb - bson - ${mongodb.version} - - - org.apache.cassandra - cassandra-all - ${cassandra.version} - - - org.slf4j - jcl-over-slf4j - - - org.slf4j - log4j-over-slf4j - - - ch.qos.logback - logback-classic - - - ch.qos.logback - logback-core - - - - - com.datastax.cassandra - cassandra-driver-core - ${cassandra-driver.version} - - - org.apache.cassandra - cassandra-thrift - ${cassandra.version} - - - org.slf4j - jcl-over-slf4j - - - org.slf4j - log4j-over-slf4j - - - - - commons-codec - commons-codec - ${commons-codec.version} - - - org.apache.commons - commons-compress - ${commons-compress.version} - - - org.apache.commons - commons-csv - ${commons-csv.version} - - - org.apache.commons - commons-dbcp2 - ${commons-dbcp2.version} - - - commons-httpclient - commons-httpclient - ${commons-httpclient.version} - - - commons-io - commons-io - ${commons-io.version} - - - org.apache.commons - commons-lang3 - ${commons-lang3.version} - - - commons-logging - commons-logging - ${commons-logging.version} - - - org.apache.commons - commons-pool2 - ${commons-pool2.version} - - - de.flapdoodle.embed - de.flapdoodle.embed.mongo - ${flapdoodle-embed.version} - - - de.flapdoodle.embed - de.flapdoodle.embed.process - ${flapdoodle-embed.version} - - - de.flapdoodle.reverse - de.flapdoodle.reverse - ${flapdoodle-reverse.version} - - - com.conversantmedia - disruptor - ${conversant.disruptor.version} - - - com.lmax - disruptor - ${disruptor.version} - - - co.elastic.clients - elasticsearch-java - ${elasticsearch-java.version} - - - org.zapodot - embedded-ldap-junit - ${embedded-ldap.version} - - - org.apache.flume.flume-ng-channels - flume-file-channel - ${flume.version} - - - junit - junit - - - log4j - log4j - - - org.mortbay.jetty - servlet-api - - - org.mortbay.jetty - servlet-api-2.5 - - - org.slf4j - slf4j-log4j12 - - - - - org.apache.flume - flume-ng-core - ${flume.version} - - - log4j - log4j - - - org.slf4j - slf4j-log4j12 - - - - - org.apache.flume - flume-ng-embedded-agent - ${flume.version} - - - org.codehaus.jackson - jackson-core-asl - - - org.codehaus.jackson - jackson-mapper-asl - - - log4j - log4j - - - org.slf4j - slf4j-log4j12 - - - - - org.apache.flume - flume-ng-node - ${flume.version} - - - org.codehaus.jackson - jackson-core-asl - - - org.codehaus.jackson - jackson-mapper-asl - - - log4j - log4j - - - org.slf4j - slf4j-log4j12 - - - - - org.apache.flume - flume-ng-sdk - ${flume.version} - - - org.codehaus.jackson - jackson-core-asl - - - org.codehaus.jackson - jackson-mapper-asl - - - - - com.google.guava - guava - ${guava.version} - - - com.google.guava - guava-testlib - ${guava.version} - - - com.h2database - h2 - ${h2.version} - - - org.apache.hadoop - hadoop-core - ${hadoop.version} - - - org.codehaus.jackson - jackson-core-asl - - - org.codehaus.jackson - jackson-mapper-asl - - - junit - junit - - - org.mortbay.jetty - servlet-api - - - - - org.hamcrest - hamcrest - ${hamcrest.version} - - - org.hamcrest - hamcrest-core - ${hamcrest.version} - - - org.hamcrest - hamcrest-library - ${hamcrest.version} - - - org.hdrhistogram - HdrHistogram - ${HdrHistogram.version} - - - org.hsqldb - hsqldb - ${hsqldb.version} - jdk8 - - - org.apache.httpcomponents - httpclient - ${httpclient.version} - - - org.apache.httpcomponents - httpcore - ${httpcore.version} - - - jakarta.activation - jakarta.activation-api - ${jakarta-activation.version} - - - org.eclipse.angus - jakarta.mail - ${angus-mail.version} - - - jakarta.mail - jakarta.mail-api - ${jakarta-mail.version} - - - org.fusesource.jansi - jansi - ${jansi.version} - - - com.google.code.java-allocation-instrumenter - java-allocation-instrumenter - ${java-allocation-instrumenter.version} - - - javax.activation - javax.activation-api - ${javax-activation.version} - - - javax.inject - javax.inject - ${javax-inject.version} - - - javax.jms - javax.jms-api - ${javax-jms.version} - - - com.sun.mail - javax.mail - ${javax-mail.version} - - - javax.mail - javax.mail-api - ${javax-mail.version} - - - javax.persistence - javax.persistence-api - ${javax-persistence.version} - - - javax.servlet.jsp - javax.servlet.jsp-api - ${javax-servlet-jsp.version} - - - javax.servlet - javax.servlet-api - ${javax-servlet.version} - - - com.sun - jconsole - ${jconsole.version} - - - org.jctools - jctools-core - ${jctools.version} - - - com.sleepycat - je - ${je.version} - - - org.zeromq - jeromq - ${jeromq.version} - - - org.jmdns - jmdns - ${jmdns.version} - - - org.openjdk.jmh - jmh-core - ${jmh.version} - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh.version} - - - net.java.dev.jna - jna - ${jna.version} - - - net.javacrumbs.json-unit - json-unit - ${json-unit.version} - - - junit - junit - ${junit.version} - - - org.junit-pioneer - junit-pioneer - ${junit-pioneer.version} - - - org.apache.kafka - kafka-clients - ${kafka.version} - - - org.lightcouch - lightcouch - ${lightcouch.version} - - - log4j - log4j - ${log4j.version} - - - co.elastic.logging - log4j2-ecs-layout - ${log4j2-ecs-layout.version} - - - ch.qos.logback - logback-classic - ${logback.version} - - - ch.qos.logback - logback-classic - ${logback.version} - test-jar - - - ch.qos.logback - logback-core - ${logback.version} - - - ch.qos.logback - logback-core - ${logback.version} - test-jar - - - org.apache.maven - maven-core - ${maven.version} - - - org.apache.maven - maven-model - ${maven.version} - - - org.mongodb - mongodb-driver-core - ${mongodb.version} - - - org.mongodb - mongodb-driver-legacy - ${mongodb.version} - - - org.mongodb - mongodb-driver-sync - ${mongodb.version} - - - org.openjdk.nashorn - nashorn-core - ${nashorn.version} - - - org.apache.felix - org.apache.felix.framework - ${felix.version} - - - org.eclipse.tycho - org.eclipse.osgi - ${org.eclipse.osgi.version} - - - org.eclipse.persistence - org.eclipse.persistence.jpa - ${org.eclipse.persistence.version} - - - org.eclipse.persistence - jakarta.persistence - - - - - org.osgi - org.osgi.core - ${osgi.api.version} - - - oro - oro - ${oro.version} - - - org.ops4j.pax.exam - pax-exam - ${pax-exam.version} - - - org.ops4j.pax.exam - pax-exam-container-native - ${pax-exam.version} - - - org.ops4j.pax.exam - pax-exam-junit4 - ${pax-exam.version} - - - org.ops4j.pax.exam - pax-exam-link-assembly - ${pax-exam.version} - - - org.ops4j.pax.exam - pax-exam-spi - ${pax-exam.version} - - - org.codehaus.plexus - plexus-utils - ${plexus-utils.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.springframework.boot - spring-boot - ${spring-boot.version} - - - org.springframework.boot - spring-boot-autoconfigure - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-log4j2 - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-test - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-logging - - - - - org.springframework - spring-core - ${spring-framework.version} - - - org.springframework - spring-jcl - - - - - uk.org.webcompere - system-stubs-core - ${system-stubs.version} - - - uk.org.webcompere - system-stubs-jupiter - ${system-stubs.version} - - - org.apache.tomcat - tomcat-juli - ${tomcat-juli.version} - - - org.apache.velocity - velocity - ${velocity.version} - - - com.github.tomakehurst - wiremock-jre8 - ${wiremock.version} - - - org.xmlunit - xmlunit-core - ${xmlunit.version} - - - org.xmlunit - xmlunit-matchers - ${xmlunit.version} - - - org.tukaani - xz - ${xz.version} - - - com.github.luben - zstd-jni - ${zstd.version} - - - - - - biz.aQute.bnd - biz.aQute.bnd.annotation - provided - - - com.google.errorprone - error_prone_annotations - ${error-prone.version} - provided - - - org.osgi - osgi.annotation - provided - - - org.osgi - org.osgi.annotation.bundle - provided - - - com.github.spotbugs - spotbugs-annotations - provided - - - - - - - io.fabric8 - docker-maven-plugin - ${docker-maven-plugin.version} - - - org.ops4j.pax.exam - exam-maven-plugin - ${exam-maven-plugin.version} - - - net.sourceforge.maven-taglib - maven-taglib-plugin - ${maven-taglib-plugin.version} - - - - - - maven-clean-plugin - - - delete-module-descriptors - process-sources - - clean - - - true - - - ${project.build.outputDirectory} - - module-info.class - META-INF/versions/** - - - - - - - - - maven-enforcer-plugin - - - ban-logging-dependencies - - enforce - - - - - - org.slf4j:jcl-over-slf4j - org.springframework:spring-jcl - org.slf4j:log4j-over-slf4j - ch.qos.reload4j:reload4j - org.slf4j:slf4j-log4j12 - org.slf4j:slf4j-reload4j - org.ops4j.pax.logging:* - ch.qos.logback:* - - - - - - - - - - diff --git a/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom.sha1 b/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom.sha1 deleted file mode 100644 index b983b6c3e..000000000 --- a/code/arachne/org/apache/logging/log4j/log4j/2.23.0/log4j-2.23.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -360fc8cd321b6f8000c65a4f09e220d7511ab5da \ No newline at end of file diff --git a/code/arachne/org/apache/logging/logging-parent/1/_remote.repositories b/code/arachne/org/apache/logging/logging-parent/1/_remote.repositories deleted file mode 100644 index 86b0481a8..000000000 --- a/code/arachne/org/apache/logging/logging-parent/1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:50 EDT 2024 -logging-parent-1.pom>local-repo= diff --git a/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom b/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom deleted file mode 100644 index 3b8e311e3..000000000 --- a/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom +++ /dev/null @@ -1,84 +0,0 @@ - - - - - 4.0.0 - - - org.apache - apache - 18 - - - org.apache.logging - logging-parent - pom - 1 - - Apache Logging Services - - Parent pom for Apache Logging Services projects. - - https://logging.apache.org/ - 1999 - - - - 1.7 - 1.7 - - - - scm:git:git://git.apache.org/logging-parent.git - scm:git:https://git-wip-us.apache.org/repos/asf/logging-parent.git - https://git-wip-us.apache.org/repos/asf?p=logging-parent.git - logging-parent-1 - - - - - log4j-user - log4j-user-subscribe@logging.apache.org - log4j-user-unsubscribe@logging.apache.org - log4j-user@logging.apache.org - https://lists.apache.org/list.html?log4j-user@logging.apache.org - - - log4j-dev - log4j-dev-subscribe@logging.apache.org - log4j-dev-unsubscribe@logging.apache.org - log4j-dev@logging.apache.org - https://lists.apache.org/list.html?log4j-dev@logging.apache.org - - - - - JIRA - https://issues.apache.org/jira/browse/LOG4J2 - - - - - diff --git a/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.lastUpdated b/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.lastUpdated deleted file mode 100644 index 18330e6bb..000000000 --- a/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:50 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139890773 -http\://0.0.0.0/.error=Could not transfer artifact org.apache.logging\:logging-parent\:pom\:1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139890570 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139890578 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139890674 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139890728 diff --git a/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.sha1 b/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.sha1 deleted file mode 100644 index 8c39e9198..000000000 --- a/code/arachne/org/apache/logging/logging-parent/1/logging-parent-1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -11a10ffb21434b96c37f7ca22982d9e20ffb1ee7 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/logging-parent/10.1.1/_remote.repositories b/code/arachne/org/apache/logging/logging-parent/10.1.1/_remote.repositories deleted file mode 100644 index e13a5dbc1..000000000 --- a/code/arachne/org/apache/logging/logging-parent/10.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:33 EDT 2024 -logging-parent-10.1.1.pom>ohdsi= diff --git a/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom b/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom deleted file mode 100644 index d45ea94e8..000000000 --- a/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom +++ /dev/null @@ -1,973 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 30 - - org.apache.logging - logging-parent - 10.1.1 - pom - Apache Logging Parent - Parent project internally used in Maven-based projects of the Apache Logging Services - https://logging.apache.org/logging-parent - 1999 - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - ggregory - Gary Gregory - ggregory@apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - - grobmeier - Christian Grobmeier - grobmeier@apache.org - - PMC Member - - Europe/Berlin - - - mattsicker - Matt Sicker - mattsicker@apache.org - Apple - - PMC Member - - America/Chicago - - - pkarwasz - Piotr P. Karwasz - pkarwasz@apache.org - - PMC Member - - Europe/Warsaw - - - vy - Volkan Yazıcı - vy@apache.org - - PMC Chair - - Europe/Amsterdam - - - - - log4j-user - log4j-user-subscribe@logging.apache.org - log4j-user-unsubscribe@logging.apache.org - log4j-user@logging.apache.org - https://lists.apache.org/list.html?log4j-user@logging.apache.org - - - dev - dev-subscribe@logging.apache.org - dev-unsubscribe@logging.apache.org - dev@logging.apache.org - https://lists.apache.org/list.html?dev@logging.apache.org - - - - scm:git:git@github.com:apache/logging-parent.git - scm:git:git@github.com:apache/logging-parent.git - https://github.com/apache/logging-parent - - - GitHub Issues - https://github.com/apache/logging-parent/issues - - - GitHub Actions - https://github.com/apache/logging-parent/actions - - - 8 - 1.1.0 - 4.7.3 - 6.4.0 - - 1.12.0 - 1.5.0 - 8.1.0 - 2.2.4 - 2.0.0 - 0.4.0 - 6.4.1 - 2.22.0 - [17,18) - 1.4 - 8 - 3.4.0 - 3.4.1 - 6.7.0.202309050840-r - $[Bundle-SymbolicName] - 10.1.1 - 4.7.3.6 - 2.40.0 - 8 - false - - 1.0.1 - - - - - biz.aQute.bnd - biz.aQute.bnd.annotation - ${bnd.annotation.version} - - - com.github.spotbugs - spotbugs-annotations - ${spotbugs-annotations.version} - - - org.osgi - osgi.annotation - ${osgi.annotation.version} - - - org.osgi - org.osgi.annotation.bundle - ${osgi.annotation.bundle.version} - - - - - - - - org.asciidoctor - asciidoctor-maven-plugin - ${asciidoctor-maven-plugin.version} - - - maven-artifact-plugin - ${maven-artifact-plugin.version} - - - org.codehaus.mojo - flatten-maven-plugin - ${flatten-maven-plugin.version} - - ${project.build.directory} - - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs-maven-plugin.version} - - - org.codehaus.mojo - xml-maven-plugin - ${xml-maven-plugin.version} - - - com.diffplug.spotless - spotless-maven-plugin - ${spotless-maven-plugin.version} - - - com.github.genthaler - beanshell-maven-plugin - ${beanshell-maven-plugin.version} - - - org.apache.logging.log4j - log4j-changelog-maven-plugin - ${log4j-changelog-maven-plugin.version} - - - biz.aQute.bnd - bnd-maven-plugin - ${bnd-maven-plugin.version} - - - org.codehaus.mojo - build-helper-maven-plugin - ${build-helper-maven-plugin.version} - - - - - - org.codehaus.mojo - flatten-maven-plugin - ${flatten-maven-plugin.version} - - - flatten-revision - process-resources - - flatten - - - true - resolveCiFriendliesOnly - - - - flatten-bom - none - - flatten - - - bom - - remove - remove - remove - interpolate - - - - - - - maven-compiler-plugin - - ${maven.compiler.source} - ${maven.compiler.release} - ${maven.compiler.target} - ${project.build.sourceEncoding} - true - - -Xlint:all - -XDcompilePolicy=simple - -Xplugin:ErrorProne - - - - com.google.errorprone - error_prone_core - ${error-prone.version} - - - - - - maven-enforcer-plugin - - - enforce-upper-bound-deps - - enforce - - - - - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - - default-spotbugs - verify - - check - - - - - - - com.h3xstream.findsecbugs - findsecbugs-plugin - ${findsecbugs-plugin.version} - - - - - - org.apache.rat - apache-rat-plugin - - - verify - - check - - - - - true - - .java-version - .mvn/jvm.config - **/*.txt - src/changelog/**/*.xml - .github/ISSUE_TEMPLATE/*.md - .github/pull_request_template.md - - - - - com.diffplug.spotless - spotless-maven-plugin - - - default-spotless - verify - - check - - - - - - - /* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to you 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. - */ - - - - - - true - 4 - - - java,javax,jakarta,,\#java,\#javax,\#jakarta,\# - - - - - <?xml version="1.0" encoding="UTF-8"?> -<!-- - ~ Licensed to the Apache Software Foundation (ASF) under one or more - ~ contributor license agreements. See the NOTICE file distributed with - ~ this work for additional information regarding copyright ownership. - ~ The ASF licenses this file to you 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 - - - false - true - - - - - - src/**/*.xml - - - src/changelog/**/*.xml - - - <?xml version="1.0" encoding="UTF-8"?> -<!-- - ~ Licensed to the Apache Software Foundation (ASF) under one or more - ~ contributor license agreements. See the NOTICE file distributed with - ~ this work for additional information regarding copyright ownership. - ~ The ASF licenses this file to you 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. - --> - <(!DOCTYPE|\w) - - - - - - - src/**/*.properties - - - # -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to you 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. -# - (##|[^#]) - - - - - - - .asf.yaml - .github/**/*.yaml - .github/**/*.yml - src/**/*.yaml - src/**/*.yml - - - # -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to you 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. -# - (##|[^#]) - - - - - UNIX - - - - biz.aQute.bnd - bnd-maven-plugin - true - - - default-jar - - jar - - - # `Bundle-DocURL` uses `project.url`. - # This is set to `${project.parent.url}${project.artifactId}` through Maven's inheritance assembly[1]. - # This eventually produces incorrect values. - # Hence, we remove them from the produced descriptor. - # - # `Bundle-SCM` uses `project.scm.url` and suffers from the same inheritance problem `Bundle-DocURL` has. - # - # [1] https://maven.apache.org/ref/3.9.4/maven-model-builder/#inheritance-assembly - # Inheritance assembly can be disabled for certain properties, e.g., `project.url`. - # Though this would necessitate changes in the root `pom.xml`s of parented projects. - # - # `Bundle-Developers` is removed, since it is nothing but noise and occupies quite some real estate. - -removeheaders: Bundle-DocURL,Bundle-SCM,Bundle-Developers - - # Create OSGi and JPMS module names based on the `groupId` and `artifactId`. - # This almost agrees with `maven-bundle-plugin`, but replaces non-alphanumeric characters - # with full stops `.`. - Bundle-SymbolicName: $[project.groupId].$[subst;$[subst;$[project.artifactId];log4j-];[^A-Za-z0-9];.] - -jpms-module-info: $[bnd-module-name];access=0 - - # Prevents an execution error in multi-release jars: - -fixupmessages: "Classes found in the wrong directory";restrict:=error;is:=warning - - # 1. OSGI modules do not make sense in JPMS - # 2. BND has a problem detecting the name of multi-release JPMS modules - -jpms-module-info-options: org.osgi.core;static=true;transitive=false,\ - org.osgi.framework;static=true;transitive=false,\ - org.apache.logging.log4j;substitute="log4j-api",\ - org.apache.logging.log4j.core;substitute="log4j-core",\ - $[bnd-extra-module-options] - - # Import all packages by default: - Import-Package: $[bnd-extra-package-options],* - - # Allow each project to override the `Multi-Release` header: - Multi-Release: $[bnd-multi-release] - - # Add manifests and modules for each multi-release version: - -jpms-multi-release: $[bnd-multi-release] - - - - - - - - - changelog-validate - - - src/changelog - - - - - - org.codehaus.mojo - xml-maven-plugin - - - validate-changelog - - validate - - - true - - - src/changelog - **/*.xml - http://logging.apache.org/log4j/changelog - https://logging.apache.org/log4j/changelog-0.1.1.xsd - true - - - - - - - - - - - changelog-export - - - src/changelog - - - - - - org.apache.logging.log4j - log4j-changelog-maven-plugin - - - export-changelog - generate-sources - - export - - - src/site - - - - - - - - - - - - - - - changelog-release - - log4j-changelog:release generate-sources - - - org.apache.logging.log4j - log4j-changelog-maven-plugin - ${log4j-changelog-maven-plugin.version} - - ${project.version} - - - - - - - distribution - - enforcer:enforce bsh:run - - - maven-enforcer-plugin - - - - attachmentFilepathPattern - You must set an `attachmentFilepathPattern` property for the regex pattern matched against the full filepath for determining attachments to be included in the distribution! - - - attachmentCount - You must set an `attachmentCount` property for the number of attachments expected to be found! - - - true - - - - com.github.genthaler - beanshell-maven-plugin - - - org.eclipse.jgit - org.eclipse.jgit - ${org.eclipse.jgit.version} - - - - - - - - - - - deploy - - deploy - - - org.simplify4u.plugins - sign-maven-plugin - ${sign-maven-plugin.version} - - - - sign - - - - - - - - true - true - true - true - true - - - - release - - - - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - maven-enforcer-plugin - - - enforce-no-snapshots - - enforce - - - - - SNAPSHOT dependencies are not allowed for releases - true - - - A release cannot be a SNAPSHOT version - - - true - - - - - - - - - constants-tmpl-adoc - - - src/site/_constants.tmpl.adoc - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - validate - - parse-version - - - - - - maven-antrun-plugin - - - copy-constants-adoc - generate-sources - - run - - - - - - - - - - - - - maven-resources-plugin - - - filter-constants-adoc - process-sources - - copy-resources - - - src/site - - - ${project.build.directory}/constants-adoc - true - - - - - - - - - - - asciidoc - - - src/site - - - - - - org.asciidoctor - asciidoctor-maven-plugin - - - export-asciidoc-to-html - site - - process-asciidoc - - - src/site - ${project.build.directory}/site - true - - coderay - left - font - - - - - - - - - 2.2.4 - true - true - - - - diff --git a/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.lastUpdated b/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.lastUpdated deleted file mode 100644 index 46366f3e9..000000000 --- a/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:33 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.apache.logging\:logging-parent\:pom\:10.1.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139812732 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139812828 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139812956 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139813131 diff --git a/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.sha1 b/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.sha1 deleted file mode 100644 index 3c626a3a8..000000000 --- a/code/arachne/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -514dc1058ea45db53db6cf7e32e7cbdbe6c66b22 \ No newline at end of file diff --git a/code/arachne/org/apache/logging/logging-parent/10.6.0/_remote.repositories b/code/arachne/org/apache/logging/logging-parent/10.6.0/_remote.repositories deleted file mode 100644 index 223a955f0..000000000 --- a/code/arachne/org/apache/logging/logging-parent/10.6.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:50 EDT 2024 -logging-parent-10.6.0.pom>central= diff --git a/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom b/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom deleted file mode 100644 index be8ddc825..000000000 --- a/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom +++ /dev/null @@ -1,1337 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 31 - - org.apache.logging - logging-parent - 10.6.0 - pom - Apache Logging Parent - Parent project internally used in Maven-based projects of the Apache Logging Services - https://logging.apache.org/logging-parent - 1999 - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - ggregory - Gary Gregory - ggregory@apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - - grobmeier - Christian Grobmeier - grobmeier@apache.org - - PMC Member - - Europe/Berlin - - - mattsicker - Matt Sicker - mattsicker@apache.org - Apple - - PMC Member - - America/Chicago - - - pkarwasz - Piotr P. Karwasz - pkarwasz@apache.org - - PMC Member - - Europe/Warsaw - - - vy - Volkan Yazıcı - vy@apache.org - - PMC Chair - - Europe/Amsterdam - - - - - log4j-user - log4j-user-subscribe@logging.apache.org - log4j-user-unsubscribe@logging.apache.org - log4j-user@logging.apache.org - https://lists.apache.org/list.html?log4j-user@logging.apache.org - - - dev - dev-subscribe@logging.apache.org - dev-unsubscribe@logging.apache.org - dev@logging.apache.org - https://lists.apache.org/list.html?dev@logging.apache.org - - - - scm:git:git@github.com:apache/logging-parent.git - scm:git:git@github.com:apache/logging-parent.git - https://github.com/apache/logging-parent - - - GitHub Issues - https://github.com/apache/logging-parent/issues - - - GitHub Actions - https://github.com/apache/logging-parent/actions - - - https://logging.apache.org/logging-parent/latest/#distribution - - - 8 - 0.16 - 1.1.0 - 4.8.3 - 7.0.0 - 7.0.0 - - 1.12.0 - $[bnd-module-name];access=0 - 1.5.0 - 8.1.0 - 2.2.4 - 0.3.0 - 2.0.0 - 1.1.2 - 0.7.0 - 7.0.0 - 2.24.1 - <xsl:stylesheet version="1.0" - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns="http://cyclonedx.org/schema/bom/1.5" - xmlns:xalan="http://xml.apache.org/xalan" - xmlns:cdx14="http://cyclonedx.org/schema/bom/1.4" - xmlns:cdx15="http://cyclonedx.org/schema/bom/1.5" - exclude-result-prefixes="xalan cdx14 cdx15"> - - <xsl:param name="sbom.serialNumber"/> - <xsl:param name="vdr.url"/> - <xsl:output method="xml" - version="1.0" - encoding="UTF-8" - indent="yes" - xalan:indent-amount="2" - xalan:line-separator="&#10;"/> - - <!-- Fixes the license formatting --> - <xsl:template match="/"> - <xsl:text>&#10;</xsl:text> - <xsl:apply-templates /> - </xsl:template> - - <!-- Standard copy template --> - <xsl:template match="@*|node()"> - <xsl:copy> - <xsl:apply-templates select="@*" /> - <xsl:apply-templates /> - </xsl:copy> - </xsl:template> - - <!-- Bump the SBOM schema version from `1.4` to `1.5` --> - <xsl:template match="cdx14:*"> - <xsl:element name="{local-name()}" namespace="http://cyclonedx.org/schema/bom/1.5"> - <xsl:apply-templates select="@*" /> - <xsl:apply-templates /> - </xsl:element> - </xsl:template> - - <!-- Add the SBOM `serialNumber` --> - <xsl:template match="cdx14:bom"> - <bom> - <xsl:attribute name="version"> - <xsl:value-of select="1"/> - </xsl:attribute> - <xsl:attribute name="serialNumber"> - <xsl:text>urn:uuid:</xsl:text> - <xsl:value-of select="$sbom.serialNumber"/> - </xsl:attribute> - <xsl:apply-templates /> - </bom> - </xsl:template> - - <!-- Add the link to the VDR --> - <xsl:template match="cdx14:externalReferences[starts-with(preceding-sibling::cdx14:group, 'org.apache.logging')]"> - <externalReferences> - <xsl:apply-templates/> - <reference> - <xsl:attribute name="type">vulnerability-assertion</xsl:attribute> - <url> - <xsl:value-of select="$vdr.url"/> - </url> - </reference> - </externalReferences> - </xsl:template> - -</xsl:stylesheet> - [17,18) - $[project.groupId].$[subst;$[subst;$[project.artifactId];log4j-];[^A-Za-z0-9];.] - 2.39.0 - 1.4 - https://logging.apache.org/cyclonedx/vdr.xml - 8 - - 3.5.0 - 3.5.0 - 3.8.1 - 6.8.0.202311291450-r - $[Bundle-SymbolicName] - 10.6.0 - 4.8.2.0 - 2.41.1 - 8 - false - 2024-01-11T10:10:48Z - - 2.7.10 - 1.0.1 - 2.4.0 - - - - - biz.aQute.bnd - biz.aQute.bnd.annotation - ${bnd.annotation.version} - - - com.github.spotbugs - spotbugs-annotations - ${spotbugs-annotations.version} - - - org.jspecify - jspecify - ${jspecify.version} - - - org.osgi - osgi.annotation - ${osgi.annotation.version} - - - org.osgi - org.osgi.annotation.bundle - ${osgi.annotation.bundle.version} - - - org.osgi - org.osgi.annotation.versioning - ${osgi.annotation.versioning.version} - - - - - - - - org.asciidoctor - asciidoctor-maven-plugin - ${asciidoctor-maven-plugin.version} - - - maven-artifact-plugin - ${maven-artifact-plugin.version} - - - org.codehaus.mojo - flatten-maven-plugin - ${flatten-maven-plugin.version} - - - org.simplify4u.plugins - sign-maven-plugin - ${sign-maven-plugin.version} - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs-maven-plugin.version} - - - org.codehaus.mojo - xml-maven-plugin - ${xml-maven-plugin.version} - - - com.diffplug.spotless - spotless-maven-plugin - ${spotless-maven-plugin.version} - - - com.github.genthaler - beanshell-maven-plugin - ${beanshell-maven-plugin.version} - - - org.apache.logging.log4j - log4j-changelog-maven-plugin - ${log4j-changelog-maven-plugin.version} - - - biz.aQute.bnd - bnd-baseline-maven-plugin - ${bnd-baseline-maven-plugin.version} - - - biz.aQute.bnd - bnd-maven-plugin - ${bnd-maven-plugin.version} - - - org.codehaus.mojo - build-helper-maven-plugin - ${build-helper-maven-plugin.version} - - - org.cyclonedx - cyclonedx-maven-plugin - ${cyclonedx-maven-plugin.version} - - - - - - org.codehaus.mojo - flatten-maven-plugin - - - flatten-revision - process-resources - - flatten - - - true - resolveCiFriendliesOnly - - - - clean-flattened-pom - clean - - clean - - - - flatten-bom - none - - flatten - - - bom - - remove - remove - remove - remove - interpolate - keep - - - - - - - maven-clean-plugin - - - delete-module-descriptor - process-resources - - clean - - - true - - - ${project.build.outputDirectory} - - module-info.class - - - - - - - - - maven-compiler-plugin - - - default-testCompile - - false - - - - - ${maven.compiler.source} - ${maven.compiler.release} - ${maven.compiler.target} - ${project.build.sourceEncoding} - true - - -Xlint:all - -XDcompilePolicy=simple - -Xplugin:ErrorProne - - - - com.google.errorprone - error_prone_core - ${error-prone.version} - - - - - - maven-failsafe-plugin - - false - - - - maven-surefire-plugin - - false - - - - org.cyclonedx - cyclonedx-maven-plugin - - - generate-sbom - package - - makeAggregateBom - - - xml - - - - - - com.github.genthaler - beanshell-maven-plugin - - - process-sbom - package - - run - - - - - - - - - commons-codec - commons-codec - 1.16.0 - - - xalan - serializer - 2.7.3 - - - xalan - xalan - 2.7.3 - - - - - maven-enforcer-plugin - - - enforce-upper-bound-deps - - enforce - - - - - - - - - ban-wildcard-imports - - enforce - - - - - Expand all wildcard imports - **.'*' - - - - - - - - de.skuzzle.enforcer - restrict-imports-enforcer-rule - ${restrict-imports-enforcer-rule.version} - - - - - com.github.spotbugs - spotbugs-maven-plugin - - - default-spotbugs - verify - - check - - - - - false - - - com.h3xstream.findsecbugs - findsecbugs-plugin - ${findsecbugs-plugin.version} - - - - - - org.apache.rat - apache-rat-plugin - - - verify - - check - - - - - true - - .java-version - .mvn/jvm.config - **/*.txt - src/changelog/**/*.xml - .github/ISSUE_TEMPLATE/*.md - .github/pull_request_template.md - - - - - com.diffplug.spotless - spotless-maven-plugin - - - default-spotless - verify - - check - - - - - - com.palantir.javaformat - palantir-java-format - ${palantir-java-format.version} - - - - - - /* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to you 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. - */ - - - ${palantir-java-format.version} - - - - - <?xml version="1.0" encoding="UTF-8"?> -<!-- - ~ Licensed to the Apache Software Foundation (ASF) under one or more - ~ contributor license agreements. See the NOTICE file distributed with - ~ this work for additional information regarding copyright ownership. - ~ The ASF licenses this file to you 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 - - - false - true - - - - - - src/**/*.xml - - - src/changelog/**/*.xml - - - <?xml version="1.0" encoding="UTF-8"?> -<!-- - ~ Licensed to the Apache Software Foundation (ASF) under one or more - ~ contributor license agreements. See the NOTICE file distributed with - ~ this work for additional information regarding copyright ownership. - ~ The ASF licenses this file to you 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. - --> - <(!DOCTYPE|\w) - - - - - - - src/**/*.properties - - - # -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to you 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. -# - (##|[^#]) - - - - - - - .asf.yaml - .github/**/*.yaml - .github/**/*.yml - src/**/*.yaml - src/**/*.yml - - - # -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to you 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. -# - (##|[^#]) - - - - - UNIX - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - validate - - parse-version - - - - - - biz.aQute.bnd - bnd-maven-plugin - - - generate-module-descriptors - - bnd-process - - - - - # `Bundle-DocURL` uses `project.url`. - # This is set to `${project.parent.url}${project.artifactId}` through Maven's inheritance assembly[1]. - # This eventually produces incorrect values. - # Hence, we remove them from the produced descriptor. - # - # `Bundle-SCM` uses `project.scm.url` and suffers from the same inheritance problem `Bundle-DocURL` has. - # - # [1] https://maven.apache.org/ref/3.9.4/maven-model-builder/#inheritance-assembly - # Inheritance assembly can be disabled for certain properties, e.g., `project.url`. - # Though this would necessitate changes in the root `pom.xml`s of parented projects. - # - # `Bundle-Developers` is removed, since it is nothing but noise and occupies quite some real estate. - -removeheaders: Bundle-DocURL,Bundle-SCM,Bundle-Developers - - # Create OSGi and JPMS module names based on the `groupId` and `artifactId`. - # This almost agrees with `maven-bundle-plugin`, but replaces non-alphanumeric characters - # with full stops `.`. - Bundle-SymbolicName: $[bnd-bundle-symbolicname] - -jpms-module-info: $[bnd-jpms-module-info] - - # Prevents an execution error in multi-release jars: - -fixupmessages.classes_in_wrong_dir: "Classes found in the wrong directory";restrict:=error;is:=warning - - # Convert API leakage warnings to errors - -fixupmessages.priv_refs: "private references";restrict:=warning;is:=error - - # 1. OSGI modules do not make sense in JPMS - # 2. BND has a problem detecting the name of multi-release JPMS modules - -jpms-module-info-options: \ - $[bnd-extra-module-options],\ - org.osgi.core;static=true;transitive=false,\ - org.osgi.framework;static=true;transitive=false,\ - org.apache.logging.log4j;substitute="log4j-api",\ - org.apache.logging.log4j.core;substitute="log4j-core" - - # Import all packages by default: - Import-Package: \ - $[bnd-extra-package-options],\ - * - - # Allow each project to override the `Multi-Release` header: - Multi-Release: $[bnd-multi-release] - -# Skipping to set `-jpms-multi-release` to `bnd-multi-release`. -# This would generate descriptors in `META-INF/versions/<version>` directories needed for MRJs. -# Though we decided to skip it due to following reasons: -# 1. It is only needed by a handful of files in `-java9`-suffixed modules of `logging-log4j2`. -# Hence, it is effectively insignificant. -# 2. `dependency:unpack` and `bnd:bnd-process` executions must be aligned correctly. -# See this issue for details: https://github.com/apache/logging-parent/issues/93 - # Adds certain `Implementation-*` and `Specification-*` entries to the generated `MANIFEST.MF`. - # Using these properties is known to be a bad practice: https://github.com/apache/logging-log4j2/issues/1923#issuecomment-1786818254 - # Users should use `META-INF/maven/<groupId>/<artifactId>/pom.properties` instead. - # Yet we support it due to backward compatibility reasons. - # The issue was reported to `bnd-maven-plugin` too: https://github.com/bndtools/bnd/issues/5855 - # We set these values to their Maven Archiver defaults: https://maven.apache.org/shared/maven-archiver/#class_manifest - Implementation-Title: ${project.name} - Implementation-Vendor: ${project.organization.name} - Implementation-Version: ${project.version} - Specification-Title: ${project.name} - Specification-Vendor: ${project.organization.name} - Specification-Version: ${parsedVersion.majorVersion}.${parsedVersion.minorVersion} - - # Extra configuration provided by the consumer: - ${bnd-extra-config} - - - - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - biz.aQute.bnd - bnd-baseline-maven-plugin - - - check-api-compat - - baseline - - - - - false - true - - - - - - - changelog-validate - - - src/changelog - - - - - - org.codehaus.mojo - xml-maven-plugin - - - validate-changelog - validate - - validate - - - - - src/changelog - - **/*.xml - - http://logging.apache.org/log4j/changelog - https://logging.apache.org/log4j/changelog-0.1.3.xsd - true - - - - - - - - - - - changelog-export - - - src/changelog - - - - - - org.apache.logging.log4j - log4j-changelog-maven-plugin - - - export-changelog - generate-sources - - export - - - src/site - - - - - - - - - - - - - - - changelog-release - - log4j-changelog:release@release-changelog generate-sources - - - org.apache.logging.log4j - log4j-changelog-maven-plugin - - - release-changelog - - ${project.version} - - - - - - - - - distribution - - enforcer:enforce@enforce-distribution-arguments bsh:run@create-distribution - - - maven-enforcer-plugin - - - enforce-distribution-arguments - - enforce - - - - - attachmentFilepathPattern - You must set an `attachmentFilepathPattern` property for the regex pattern matched against the full filepath for determining attachments to be included in the distribution! - - - attachmentCount - You must set an `attachmentCount` property for the number of attachments expected to be found! - - - true - - - - - - com.github.genthaler - beanshell-maven-plugin - - - create-distribution - - run - - - - - - - - - org.eclipse.jgit - org.eclipse.jgit - ${org.eclipse.jgit.version} - - - - - - - - deploy - - deploy - - - org.simplify4u.plugins - sign-maven-plugin - - - - sign - - - - - - - - true - true - true - true - true - - - - release - - - - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - maven-enforcer-plugin - - - enforce-no-snapshots - - enforce - - - - - SNAPSHOT dependencies are not allowed for releases - true - - - A release cannot be a SNAPSHOT version - - - true - - - - - - - - - constants-tmpl-adoc - - - src/site/_constants.tmpl.adoc - - - - - - maven-antrun-plugin - - - copy-constants-adoc - generate-sources - - run - - - - - - - - - - - - - maven-resources-plugin - - - filter-constants-adoc - process-sources - - copy-resources - - - src/site - - - ${project.build.directory}/constants-adoc - true - - - - - - - - - - - asciidoc - - - src/site - - - - - - org.asciidoctor - asciidoctor-maven-plugin - - - export-asciidoc-to-html - site - - process-asciidoc - - - src/site - ${project.build.directory}/site - true - - coderay - left - font - - - - - - - - - true - true - - - - spotbugs-exclude - - - ${maven.multiModuleProjectDirectory}/spotbugs-exclude.xml - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - ${maven.multiModuleProjectDirectory}/spotbugs-exclude.xml - - - - - - - diff --git a/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom.sha1 b/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom.sha1 deleted file mode 100644 index d9c2e7b0f..000000000 --- a/code/arachne/org/apache/logging/logging-parent/10.6.0/logging-parent-10.6.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -95a0a7ac9287a65d508ab8cc880cd90f9ef93047 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/maven-parent/33/_remote.repositories b/code/arachne/org/apache/maven/maven-parent/33/_remote.repositories deleted file mode 100644 index dad023f66..000000000 --- a/code/arachne/org/apache/maven/maven-parent/33/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:56 EDT 2024 -maven-parent-33.pom>ohdsi= diff --git a/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom b/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom deleted file mode 100644 index b70190bc3..000000000 --- a/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom +++ /dev/null @@ -1,1388 +0,0 @@ - - - - - - 4.0.0 - - - - org.apache - apache - 21 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 33 - pom - - Apache Maven - Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. - https://maven.apache.org/ - 2002 - - - - - rfscholte - Robert Scholte - rfscholte@apache.org - - PMC Chair - - Europe/Amsterdam - - - aheritier - Arnaud Héritier - aheritier@apache.org - - PMC Member - - +1 - - - andham - Anders Hammar - andham@apache.org - - PMC Member - - +1 - - - baerrach - Barrie Treloar - baerrach@apache.org - - PMC Member - - Australia/Adelaide - - - bimargulies - Benson Margulies - bimargulies@apache.org - - PMC Member - - America/New_York - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - cstamas - Tamas Cservenak - cstamas@apache.org - +1 - - PMC Member - - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - gboue - Guillaume Boué - gboue@apache.org - - PMC Member - - Europe/Paris - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Member - - Europe/Paris - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - PMC Member - - -5 - - - jvanzyl - Jason van Zyl - jason@maven.org - - PMC Member - - -5 - - - khmarbaise - Karl Heinz Marbaise - khmarbaise@apache.org - - PMC Member - - +1 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - mkleint - Milos Kleint - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - Australia/Melbourne - - - michaelo - Michael Osipov - michaelo@apache.org - - PMC Member - - Europe/Berlin - - - rgoers - Ralph Goers - rgoers@apache.org - Intuit - -8 - - PMC Member - - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - stephenc - Stephen Connolly - stephenc@apache.org - - PMC Member - - 0 - - - tibordigana - Tibor Digaňa - tibordigana@apache.org - - PMC Member - - Europe/Bratislava - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - adangel - Andreas Dangel - adangel@apache.org - Europe/Berlin - - Committer - - - - bdemers - Brian Demers - Sonatype - bdemers@apache.org - -5 - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - Sonatype - - Committer - - +1 - - - chrisgwarp - Chris Graham - chrisgwarp@apache.org - - Committer - - Australia/Melbourne - - - dantran - Dan Tran - dantran@apache.org - -8 - - Committer - - - - dbradicich - Damian Bradicich - Sonatype - dbradicich@apache.org - -5 - - Committer - - - - brett - Brett Porter - brett@apache.org - ASF - - Committer - - +10 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - Committer - - -8 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - Committer - - +1 - - - godin - Evgeny Mandrikov - SonarSource - godin@apache.org - - Committer - - +3 - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - imod - Dominik Bartholdi - imod@apache.org - - Committer - - Europe/Zurich - - - jjensen - Jeff Jensen - - Committer - - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - markh - Mark Hobson - markh@apache.org - - Committer - - 0 - - - mauro - Mauro Talevi - - Committer - - - - mfriedenhagen - Mirko Friedenhagen - mfriedenhagen@apache.org - - Committer - - +1 - - - mmoser - Manfred Moser - mmoser@apache.org - - Committer - - -8 - - - nicolas - Nicolas de Loof - - Committer - - - - oching - Maria Odea B. Ching - - Committer - - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - Committer - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Committer - - +2 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - schulte - Christian Schulte - schulte@apache.org - - Committer - - Europe/Berlin - - - simonetripodi - Simone Tripodi - simonetripodi@apache.org - - Committer - - +1 - - - sor - Christian Stein - sor@apache.org - - Committer - - Europe/Berlin - - - struberg - Mark Struberg - struberg@apache.org - - Committer - - - - tchemit - Tony Chemit - tchemit@apache.org - CodeLutin - - Committer - - Europe/Paris - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - Committer - - +1 - - - - - agudian - Andreas Gudian - agudian@apache.org - - Emeritus - - Europe/Berlin - - - aramirez - Allan Q. Ramirez - - Emeritus - - - - bayard - Henri Yandell - - Emeritus - - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - Emeritus - - +1 - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - Emeritus - - -6 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jruiz - Johnny Ruiz III - jruiz@apache.org - - Emeritus - - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - Emeritus - - +1 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - rinku - Rahul Thakur - - Emeritus - - - - shinobu - Shinobu Kuwai - - Emeritus - - - - smorgrav - Torbjorn Eikli Smorgrav - - Emeritus - - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - Emeritus - - +1 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - Emeritus - - -7 - - - - - - Maven User List - mailto:users-subscribe@maven.apache.org - mailto:users-unsubscribe@maven.apache.org - mailto:users@maven.apache.org - https://lists.apache.org/list.html?users@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-users - https://www.mail-archive.com/users@maven.apache.org/ - http://maven.40175.n5.nabble.com/Maven-Users-f40176.html - https://maven-users.markmail.org/ - - - - Maven Developer List - mailto:dev-subscribe@maven.apache.org - mailto:dev-unsubscribe@maven.apache.org - mailto:dev@maven.apache.org - https://lists.apache.org/list.html?dev@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-dev - https://www.mail-archive.com/dev@maven.apache.org/ - http://maven.40175.n5.nabble.com/Maven-Developers-f142166.html - https://maven-dev.markmail.org/ - - - - Maven Issues List - mailto:issues-subscribe@maven.apache.org - mailto:issues-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?issues@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-issues/ - https://www.mail-archive.com/issues@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Issues-f219593.html - https://maven-issues.markmail.org/ - - - - Maven Commits List - mailto:commits-subscribe@maven.apache.org - mailto:commits-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?commits@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-commits/ - https://www.mail-archive.com/commits@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Commits-f277168.html - https://maven-commits.markmail.org/ - - - - Maven Announcements List - announce@maven.apache.org - mailto:announce-subscribe@maven.apache.org - mailto:announce-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?announce@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-announce/ - https://www.mail-archive.com/announce@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Announcements-f326045.html - https://maven-announce.markmail.org/ - - - - Maven Notifications List - mailto:notifications-subscribe@maven.apache.org - mailto:notifications-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?notifications@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-notifications/ - https://www.mail-archive.com/notifications@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Notifications-f301718.html - https://maven-notifications.markmail.org/ - - - - - - maven-plugins - maven-shared-components - maven-skins - doxia-tools - apache-resource-bundles - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - https://github.com/apache/maven-parent/tree/${project.scm.tag} - maven-parent-33 - - - - Jenkins - https://builds.apache.org/view/M-R/view/Maven/job/maven-box/ - - - mail - -
    notifications@maven.apache.org
    -
    -
    -
    -
    - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 6 - 1.${javaVersion} - 1.${javaVersion} - https://builds.apache.org/analysis/ - ${user.home}/maven-sites - ../.. - 3.5.2 - - RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength - - - - - - org.codehaus.plexus - plexus-component-annotations - 1.7.1 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginToolsVersion} - provided - - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginToolsVersion} - - - org.codehaus.modello - modello-maven-plugin - 1.9.1 - - true - - - - - org.apache.maven.plugins - maven-site-plugin - - - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${maven.site.cache}/${maven.site.path} - apache.releases.https - true - - - - org.codehaus.plexus - plexus-component-metadata - 1.7.1 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.0.0 - - config/maven_checks.xml - config/maven-header.txt - - - src/main/java - - - src/test/java - - - - - - org.apache.maven.shared - maven-shared-resources - 2 - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.5 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.8 - - ${maven.compiler.target} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-release-plugin - - apache-release - deploy - ${arguments} - true - - - - org.apache.maven.plugins - maven-toolchains-plugin - 1.1 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-changes-plugin - 2.12.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - true - true - en - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - true - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - true - - - - - org.apache.maven.plugins - maven-invoker-plugin - - - true - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.apache.rat - apache-rat-plugin - [0.10,) - - check - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - checkstyle-check - - check - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-bytecode-version - - enforce - - - - - ${maven.compiler.target} - - - true - - - - ban-known-bad-maven-versions - - enforce - - - - - [3.0.4,) - Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin. - - - - - - - - org.codehaus.mojo - extra-enforcer-rules - 1.0-beta-9 - - - - - org.apache.rat - apache-rat-plugin - - - .repository/** - .maven/spy.log - dependency-reduced-pom.xml - .java-version - - - - - rat-check - - check - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - false - - - - - index - summary - dependency-info - modules - team - scm - issue-management - mailing-lists - dependency-management - dependencies - dependency-convergence - ci-management - plugin-management - plugins - distribution-management - - - - - - - - - - jdk-toolchain - - - - org.apache.maven.plugins - maven-toolchains-plugin - - - - ${maven.compiler.target} - - - - - - - toolchain - - - - - - - - - quality-checks - - - quality-checks - true - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - - org.codehaus.mojo - taglist-maven-plugin - - - - - FIXME Work - - - fixme - ignoreCase - - - @fixme - ignoreCase - - - - - Todo Work - - - todo - ignoreCase - - - @todo - ignoreCase - - - - - Deprecated Work - - - @deprecated - ignoreCase - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - default - - javadoc - test-javadoc - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - - - org.codehaus.sonar-plugins - maven-report - 0.1 - - - - - -
    diff --git a/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.lastUpdated b/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.lastUpdated deleted file mode 100644 index 88a8909f7..000000000 --- a/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:56 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.apache.maven\:maven-parent\:pom\:33 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139835808 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139835816 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139836009 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139836202 diff --git a/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 b/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 deleted file mode 100644 index 18459ab69..000000000 --- a/code/arachne/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9dd736089b07fa56da1259c87a825a097ba0278c \ No newline at end of file diff --git a/code/arachne/org/apache/maven/maven-parent/34/_remote.repositories b/code/arachne/org/apache/maven/maven-parent/34/_remote.repositories deleted file mode 100644 index 59781c884..000000000 --- a/code/arachne/org/apache/maven/maven-parent/34/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:45 EDT 2024 -maven-parent-34.pom>central= diff --git a/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom b/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom deleted file mode 100644 index 1cd73a67a..000000000 --- a/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom +++ /dev/null @@ -1,1362 +0,0 @@ - - - - - - 4.0.0 - - - - org.apache - apache - 23 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 34 - pom - - Apache Maven - Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. - https://maven.apache.org/ - 2002 - - - - - rfscholte - Robert Scholte - rfscholte@apache.org - - PMC Chair - - Europe/Amsterdam - - - aheritier - Arnaud Héritier - aheritier@apache.org - - PMC Member - - +1 - - - andham - Anders Hammar - andham@apache.org - - PMC Member - - +1 - - - baerrach - Barrie Treloar - baerrach@apache.org - - PMC Member - - Australia/Adelaide - - - bimargulies - Benson Margulies - bimargulies@apache.org - - PMC Member - - America/New_York - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - cstamas - Tamas Cservenak - cstamas@apache.org - +1 - - PMC Member - - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - gboue - Guillaume Boué - gboue@apache.org - - PMC Member - - Europe/Paris - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Member - - Europe/Paris - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - PMC Member - - -5 - - - jvanzyl - Jason van Zyl - jason@maven.org - - PMC Member - - -5 - - - khmarbaise - Karl Heinz Marbaise - khmarbaise@apache.org - - PMC Member - - +1 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - mkleint - Milos Kleint - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - Australia/Melbourne - - - michaelo - Michael Osipov - michaelo@apache.org - - PMC Member - - Europe/Berlin - - - rgoers - Ralph Goers - rgoers@apache.org - Intuit - -8 - - PMC Member - - - - stephenc - Stephen Connolly - stephenc@apache.org - - PMC Member - - 0 - - - struberg - Mark Struberg - struberg@apache.org - - PMC Member - - - - tibordigana - Tibor Digaňa - tibordigana@apache.org - - PMC Member - - Europe/Bratislava - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - adangel - Andreas Dangel - adangel@apache.org - Europe/Berlin - - Committer - - - - bdemers - Brian Demers - Sonatype - bdemers@apache.org - -5 - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - Sonatype - - Committer - - +1 - - - chrisgwarp - Chris Graham - chrisgwarp@apache.org - - Committer - - Australia/Melbourne - - - dantran - Dan Tran - dantran@apache.org - -8 - - Committer - - - - dbradicich - Damian Bradicich - Sonatype - dbradicich@apache.org - -5 - - Committer - - - - brett - Brett Porter - brett@apache.org - ASF - - Committer - - +10 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - Committer - - -8 - - - eolivelli - Enrico Olivelli - eolivelli@apache.org - Diennea - - Committer - - Europe/Rome - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - Committer - - +1 - - - godin - Evgeny Mandrikov - SonarSource - godin@apache.org - - Committer - - +3 - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - imod - Dominik Bartholdi - imod@apache.org - - Committer - - Europe/Zurich - - - jjensen - Jeff Jensen - - Committer - - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - markh - Mark Hobson - markh@apache.org - - Committer - - 0 - - - mauro - Mauro Talevi - - Committer - - - - mfriedenhagen - Mirko Friedenhagen - mfriedenhagen@apache.org - - Committer - - +1 - - - mmoser - Manfred Moser - mmoser@apache.org - - Committer - - -8 - - - nicolas - Nicolas de Loof - - Committer - - - - oching - Maria Odea B. Ching - - Committer - - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - Committer - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Committer - - +2 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - schulte - Christian Schulte - schulte@apache.org - - Committer - - Europe/Berlin - - - snicoll - Stephane Nicoll - snicoll@apache.org - - Committer - - +1 - - - simonetripodi - Simone Tripodi - simonetripodi@apache.org - - Committer - - +1 - - - sor - Christian Stein - sor@apache.org - - Committer - - Europe/Berlin - - - tchemit - Tony Chemit - tchemit@apache.org - CodeLutin - - Committer - - Europe/Paris - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - Committer - - +1 - - - slachiewicz - Sylwester Lachiewicz - slachiewicz@apache.org - - Committer - - Europe/Warsaw - - - elharo - Elliotte Rusty Harold - elharo@apache.org - - Committer - - America/New_York - - - - - agudian - Andreas Gudian - agudian@apache.org - - Emeritus - - Europe/Berlin - - - aramirez - Allan Q. Ramirez - - Emeritus - - - - bayard - Henri Yandell - - Emeritus - - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - Emeritus - - +1 - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - Emeritus - - -6 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jruiz - Johnny Ruiz III - jruiz@apache.org - - Emeritus - - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - Emeritus - - +1 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - rinku - Rahul Thakur - - Emeritus - - - - shinobu - Shinobu Kuwai - - Emeritus - - - - smorgrav - Torbjorn Eikli Smorgrav - - Emeritus - - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - Emeritus - - +1 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - Emeritus - - -7 - - - - - - Maven User List - mailto:users-subscribe@maven.apache.org - mailto:users-unsubscribe@maven.apache.org - mailto:users@maven.apache.org - https://lists.apache.org/list.html?users@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-users - https://www.mail-archive.com/users@maven.apache.org/ - http://maven.40175.n5.nabble.com/Maven-Users-f40176.html - https://maven-users.markmail.org/ - - - - Maven Developer List - mailto:dev-subscribe@maven.apache.org - mailto:dev-unsubscribe@maven.apache.org - mailto:dev@maven.apache.org - https://lists.apache.org/list.html?dev@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-dev - https://www.mail-archive.com/dev@maven.apache.org/ - http://maven.40175.n5.nabble.com/Maven-Developers-f142166.html - https://maven-dev.markmail.org/ - - - - Maven Issues List - mailto:issues-subscribe@maven.apache.org - mailto:issues-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?issues@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-issues/ - https://www.mail-archive.com/issues@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Issues-f219593.html - https://maven-issues.markmail.org/ - - - - Maven Commits List - mailto:commits-subscribe@maven.apache.org - mailto:commits-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?commits@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-commits/ - https://www.mail-archive.com/commits@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Commits-f277168.html - https://maven-commits.markmail.org/ - - - - Maven Announcements List - announce@maven.apache.org - mailto:announce-subscribe@maven.apache.org - mailto:announce-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?announce@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-announce/ - https://www.mail-archive.com/announce@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Announcements-f326045.html - https://maven-announce.markmail.org/ - - - - Maven Notifications List - mailto:notifications-subscribe@maven.apache.org - mailto:notifications-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?notifications@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-notifications/ - https://www.mail-archive.com/notifications@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Notifications-f301718.html - https://maven-notifications.markmail.org/ - - - - - - maven-extensions - maven-plugins - maven-shared-components - maven-skins - doxia-tools - apache-resource-bundles - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - https://github.com/apache/maven-parent/tree/${project.scm.tag} - maven-parent-34 - - - - Jenkins - https://builds.apache.org/view/M-R/view/Maven/job/maven-box/ - - - mail - -
    notifications@maven.apache.org
    -
    -
    -
    -
    - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 7 - 1.${javaVersion} - 1.${javaVersion} - https://builds.apache.org/analysis/ - ${user.home}/maven-sites - ../.. - 3.5.2 - - RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength - 2020-01-26T09:03:59Z - - - - - - org.codehaus.plexus - plexus-component-annotations - 2.0.0 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginToolsVersion} - provided - - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginToolsVersion} - - - org.codehaus.modello - modello-maven-plugin - 1.9.1 - - true - - - - - org.apache.maven.plugins - maven-site-plugin - - - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${maven.site.cache}/${maven.site.path} - apache.releases.https - true - - - - org.codehaus.plexus - plexus-component-metadata - 2.0.0 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.0.0 - - config/maven_checks.xml - config/maven-header.txt - - - src/main/java - - - src/test/java - - - - - - org.apache.maven.shared - maven-shared-resources - 2 - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.5 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.8 - - ${maven.compiler.target} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-release-plugin - - apache-release - deploy - ${arguments} - true - - - - org.apache.maven.plugins - maven-toolchains-plugin - 1.1 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-changes-plugin - 2.12.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - true - true - en - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - true - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - true - - - - - org.apache.maven.plugins - maven-invoker-plugin - - - true - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - checkstyle-check - - check - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-bytecode-version - - enforce - - - - - ${maven.compiler.target} - - - true - - - - - - org.codehaus.mojo - extra-enforcer-rules - 1.2 - - - - - org.apache.rat - apache-rat-plugin - - - .repository/** - .maven/spy.log - dependency-reduced-pom.xml - .asf.yaml - .java-version - - - - - rat-check - - check - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - false - - - - - index - summary - dependency-info - modules - team - scm - issue-management - mailing-lists - dependency-management - dependencies - dependency-convergence - ci-management - plugin-management - plugins - distribution-management - - - - - - - - - - jdk-toolchain - - - - org.apache.maven.plugins - maven-toolchains-plugin - - - - ${maven.compiler.target} - - - - - - - toolchain - - - - - - - - - quality-checks - - - quality-checks - true - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - - org.codehaus.mojo - taglist-maven-plugin - - - - - FIXME Work - - - fixme - ignoreCase - - - @fixme - ignoreCase - - - - - Todo Work - - - todo - ignoreCase - - - @todo - ignoreCase - - - - - Deprecated Work - - - @deprecated - ignoreCase - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - default - - javadoc - test-javadoc - - - - - - org.codehaus.mojo - findbugs-maven-plugin - - - - - -
    diff --git a/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom.sha1 b/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom.sha1 deleted file mode 100644 index e0694b04c..000000000 --- a/code/arachne/org/apache/maven/maven-parent/34/maven-parent-34.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d03d96b2f4ee06300faa9731b0fa71feeec5a8ef \ No newline at end of file diff --git a/code/arachne/org/apache/maven/maven-parent/35/_remote.repositories b/code/arachne/org/apache/maven/maven-parent/35/_remote.repositories deleted file mode 100644 index 1891345b5..000000000 --- a/code/arachne/org/apache/maven/maven-parent/35/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:44 EDT 2024 -maven-parent-35.pom>central= diff --git a/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom b/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom deleted file mode 100644 index 6fb6ba027..000000000 --- a/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom +++ /dev/null @@ -1,1446 +0,0 @@ - - - - - - 4.0.0 - - - - org.apache - apache - 25 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 35 - pom - - Apache Maven - Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. - https://maven.apache.org/ - 2002 - - - - - rfscholte - Robert Scholte - rfscholte@apache.org - - PMC Chair - - Europe/Amsterdam - - @rfscholte - - - - aheritier - Arnaud Héritier - aheritier@apache.org - - PMC Member - - +1 - - - andham - Anders Hammar - andham@apache.org - - PMC Member - - +1 - - - baerrach - Barrie Treloar - baerrach@apache.org - - PMC Member - - Australia/Adelaide - - - bimargulies - Benson Margulies - bimargulies@apache.org - - PMC Member - - America/New_York - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - cstamas - Tamas Cservenak - cstamas@apache.org - +1 - - PMC Member - - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - gboue - Guillaume Boué - gboue@apache.org - - PMC Member - - Europe/Paris - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Member - - Europe/Paris - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - PMC Member - - -5 - - - jvanzyl - Jason van Zyl - jason@maven.org - - PMC Member - - -5 - - - khmarbaise - Karl Heinz Marbaise - khmarbaise@apache.org - - PMC Member - - +1 - - @khmarbaise - - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - mkleint - Milos Kleint - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - Australia/Brisbane - - - michaelo - Michael Osipov - michaelo@apache.org - - PMC Member - - Europe/Berlin - - - rgoers - Ralph Goers - rgoers@apache.org - Intuit - -8 - - PMC Member - - - - stephenc - Stephen Connolly - stephenc@apache.org - - PMC Member - - 0 - - - struberg - Mark Struberg - struberg@apache.org - - PMC Member - - - - tibordigana - Tibor Digaňa - tibordigana@apache.org - - PMC Member - - Europe/Bratislava - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - adangel - Andreas Dangel - adangel@apache.org - Europe/Berlin - - Committer - - - - bdemers - Brian Demers - Sonatype - bdemers@apache.org - -5 - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - Sonatype - - Committer - - +1 - - - chrisgwarp - Chris Graham - chrisgwarp@apache.org - - Committer - - Australia/Melbourne - - - dantran - Dan Tran - dantran@apache.org - -8 - - Committer - - - - dbradicich - Damian Bradicich - Sonatype - dbradicich@apache.org - -5 - - Committer - - - - brett - Brett Porter - brett@apache.org - ASF - - Committer - - +10 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - Committer - - -8 - - - eolivelli - Enrico Olivelli - eolivelli@apache.org - Diennea - - Committer - - Europe/Rome - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - Committer - - +1 - - - gnodet - Guillaume Nodet - gnodet@apache.org - Red Hat - - Committer - - Europe/Paris - - - godin - Evgeny Mandrikov - SonarSource - godin@apache.org - - Committer - - +3 - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - imod - Dominik Bartholdi - imod@apache.org - - Committer - - Europe/Zurich - - - jjensen - Jeff Jensen - - Committer - - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - markh - Mark Hobson - markh@apache.org - - Committer - - 0 - - - martinkanters - Martin Kanters - martinkanters@apache.org - JPoint - - Committer - - Europe/Amsterdam - - - mthmulders - Maarten Mulders - mthmulders@apache.org - Info Support - - Committer - - Europe/Amsterdam - - - mauro - Mauro Talevi - - Committer - - - - mfriedenhagen - Mirko Friedenhagen - mfriedenhagen@apache.org - - Committer - - +1 - - - mmoser - Manfred Moser - mmoser@apache.org - - Committer - - -8 - - - nicolas - Nicolas de Loof - - Committer - - - - oching - Maria Odea B. Ching - - Committer - - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - Committer - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Committer - - +2 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - schulte - Christian Schulte - schulte@apache.org - - Committer - - Europe/Berlin - - - snicoll - Stephane Nicoll - snicoll@apache.org - - Committer - - +1 - - - simonetripodi - Simone Tripodi - simonetripodi@apache.org - - Committer - - +1 - - - sjaranowski - Slawomir Jaranowski - sjaranowski@apache.org - - Committer - - Europe/Warsaw - - - sor - Christian Stein - sor@apache.org - - Committer - - Europe/Berlin - - - tchemit - Tony Chemit - tchemit@apache.org - CodeLutin - - Committer - - Europe/Paris - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - Committer - - +1 - - - slachiewicz - Sylwester Lachiewicz - slachiewicz@apache.org - - Committer - - Europe/Warsaw - - - elharo - Elliotte Rusty Harold - elharo@apache.org - - Committer - - America/New_York - - - - - agudian - Andreas Gudian - agudian@apache.org - - Emeritus - - Europe/Berlin - - - aramirez - Allan Q. Ramirez - - Emeritus - - - - bayard - Henri Yandell - - Emeritus - - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - Emeritus - - +1 - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - Emeritus - - -6 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jruiz - Johnny Ruiz III - jruiz@apache.org - - Emeritus - - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - Emeritus - - +1 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - rinku - Rahul Thakur - - Emeritus - - - - shinobu - Shinobu Kuwai - - Emeritus - - - - smorgrav - Torbjorn Eikli Smorgrav - - Emeritus - - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - Emeritus - - +1 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - Emeritus - - -7 - - - - - - Maven User List - mailto:users-subscribe@maven.apache.org - mailto:users-unsubscribe@maven.apache.org - mailto:users@maven.apache.org - https://lists.apache.org/list.html?users@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-users - https://www.mail-archive.com/users@maven.apache.org/ - - - - Maven Developer List - mailto:dev-subscribe@maven.apache.org - mailto:dev-unsubscribe@maven.apache.org - mailto:dev@maven.apache.org - https://lists.apache.org/list.html?dev@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-dev - https://www.mail-archive.com/dev@maven.apache.org/ - - - - Maven Issues List - mailto:issues-subscribe@maven.apache.org - mailto:issues-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?issues@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-issues/ - https://www.mail-archive.com/issues@maven.apache.org - - - - Maven Commits List - mailto:commits-subscribe@maven.apache.org - mailto:commits-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?commits@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-commits/ - https://www.mail-archive.com/commits@maven.apache.org - - - - Maven Announcements List - announce@maven.apache.org - mailto:announce-subscribe@maven.apache.org - mailto:announce-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?announce@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-announce/ - https://www.mail-archive.com/announce@maven.apache.org - - - - Maven Notifications List - mailto:notifications-subscribe@maven.apache.org - mailto:notifications-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?notifications@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-notifications/ - https://www.mail-archive.com/notifications@maven.apache.org - - - - - - maven-extensions - maven-plugins - maven-shared-components - maven-skins - doxia-tools - apache-resource-bundles - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - https://github.com/apache/maven-parent/tree/${project.scm.tag} - maven-parent-35 - - - - Jenkins - https://ci-maven.apache.org/job/Maven/job/maven-box/ - - - mail - -
    notifications@maven.apache.org
    -
    -
    -
    -
    - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 7 - 1.${javaVersion} - 1.${javaVersion} - https://builds.apache.org/analysis/ - ${user.home}/maven-sites - ../.. - 0.3.5 - - RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength - 2022-02-27T18:03:24Z - - - - - - - org.eclipse.sisu - org.eclipse.sisu.inject - ${sisuVersion} - - - org.eclipse.sisu - org.eclipse.sisu.plexus - ${sisuVersion} - - - - org.codehaus.plexus - plexus-utils - 3.3.0 - - - org.codehaus.plexus - plexus-component-annotations - 2.1.1 - - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - - - - org.eclipse.sisu - sisu-maven-plugin - ${sisuVersion} - - - index-project - - main-index - test-index - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - java-annotations - - - - - org.codehaus.modello - modello-maven-plugin - 1.11 - - true - - - - - org.apache.maven.plugins - maven-site-plugin - - - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${maven.site.cache}/${maven.site.path} - apache.releases.https - true - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.0.0 - - config/maven_checks.xml - config/maven-header.txt - - - src/main/java - - - src/test/java - - - - - - org.apache.maven.shared - maven-shared-resources - 2 - - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.15.0 - - ${maven.compiler.target} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-release-plugin - - true - - - - org.apache.maven.plugins - maven-toolchains-plugin - 3.0.0 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-changes-plugin - 2.12.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - true - en - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - true - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - true - - - - - org.apache.maven.plugins - maven-invoker-plugin - - true - - true - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.codehaus.mojo - extra-enforcer-rules - 1.5.1 - - - - - enforce-bytecode-version - - enforce - - - - - ${maven.compiler.target} - - - true - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - checkstyle-check - - check - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.apache.rat - apache-rat-plugin - - - .repository/** - .maven/spy.log - dependency-reduced-pom.xml - .asf.yaml - .java-version - - - - - rat-check - - check - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - index - summary - dependency-info - modules - team - scm - issue-management - mailing-lists - dependency-management - dependencies - dependency-convergence - ci-management - plugin-management - plugins - distribution-management - - - - - - - - - - - drop-legacy-dependencies - - - true - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - drop-legacy-dependencies - - enforce - - - - - - - org.codehaus.plexus:plexus-container-default - - org.sonatype.sisu:sisu-inject-bean - org.sonatype.sisu:sisu-inject-plexus - - org.sonatype.aether:* - - org.sonatype.plexus:* - - org.apache.maven:maven-plugin-api:[,3.2.5) - org.apache.maven:maven-core:[,3.2.5) - org.apache.maven:maven-compat:[,3.2.5) - - - - org.sonatype.plexus:plexus-build-api - - org.sonatype.plexus:plexus-sec-dispatcher - org.sonatype.plexus:plexus-cipher - - - - ${drop-legacy-dependencies.include} - - - - - - - - - jdk-toolchain - - - - org.apache.maven.plugins - maven-toolchains-plugin - - - - ${maven.compiler.target} - - - - - - - toolchain - - - - - - - - - quality-checks - - - quality-checks - true - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - - org.codehaus.mojo - taglist-maven-plugin - - - - - FIXME Work - - - fixme - ignoreCase - - - @fixme - ignoreCase - - - - - Todo Work - - - todo - ignoreCase - - - @todo - ignoreCase - - - - - Deprecated Work - - - @deprecated - ignoreCase - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - default - - javadoc - test-javadoc - - - - - - - - -
    diff --git a/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom.sha1 b/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom.sha1 deleted file mode 100644 index 84b47bcb4..000000000 --- a/code/arachne/org/apache/maven/maven-parent/35/maven-parent-35.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2f65ed06ef7e7380517578cbc7a2b2f6b7cc4989 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/maven-parent/39/_remote.repositories b/code/arachne/org/apache/maven/maven-parent/39/_remote.repositories deleted file mode 100644 index c1dea66d6..000000000 --- a/code/arachne/org/apache/maven/maven-parent/39/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:45 EDT 2024 -maven-parent-39.pom>central= diff --git a/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom b/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom deleted file mode 100644 index 028b8fa67..000000000 --- a/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom +++ /dev/null @@ -1,1531 +0,0 @@ - - - - 4.0.0 - - - - org.apache - apache - 29 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 39 - pom - - Apache Maven - Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. - https://maven.apache.org/ - 2002 - - - - - khmarbaise - Karl Heinz Marbaise - khmarbaise@apache.org - - PMC Chair - - +1 - - @khmarbaise - - - - aheritier - Arnaud Héritier - aheritier@apache.org - - PMC Member - - +1 - - - andham - Anders Hammar - andham@apache.org - - PMC Member - - +1 - - - baerrach - Barrie Treloar - baerrach@apache.org - - PMC Member - - Australia/Adelaide - - - bimargulies - Benson Margulies - bimargulies@apache.org - - PMC Member - - America/New_York - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - cstamas - Tamas Cservenak - cstamas@apache.org - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - gboue - Guillaume Boué - gboue@apache.org - - PMC Member - - Europe/Paris - - - gnodet - Guillaume Nodet - gnodet@apache.org - Red Hat - - PMC Member - - Europe/Paris - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Member - - Europe/Paris - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - PMC Member - - -5 - - - jvanzyl - Jason van Zyl - jason@maven.org - - PMC Member - - -5 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - mkleint - Milos Kleint - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - Australia/Brisbane - - - michaelo - Michael Osipov - michaelo@apache.org - - PMC Member - - Europe/Berlin - - - rfscholte - Robert Scholte - rfscholte@apache.org - - PMC Member - - Europe/Amsterdam - - @rfscholte - - - - rgoers - Ralph Goers - rgoers@apache.org - Intuit - - PMC Member - - -8 - - - sjaranowski - Slawomir Jaranowski - sjaranowski@apache.org - - PMC Member - - Europe/Warsaw - - - stephenc - Stephen Connolly - stephenc@apache.org - - PMC Member - - 0 - - - struberg - Mark Struberg - struberg@apache.org - - PMC Member - - - - tibordigana - Tibor Digaňa - tibordigana@apache.org - - PMC Member - - Europe/Bratislava - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - adangel - Andreas Dangel - adangel@apache.org - - Committer - - Europe/Berlin - - - bdemers - Brian Demers - bdemers@apache.org - Sonatype - - Committer - - -5 - - - bellingard - Fabrice Bellingard - - Committer - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - Sonatype - - Committer - - +1 - - - chrisgwarp - Chris Graham - chrisgwarp@apache.org - - Committer - - Australia/Melbourne - - - dantran - Dan Tran - dantran@apache.org - - Committer - - -8 - - - dbradicich - Damian Bradicich - dbradicich@apache.org - Sonatype - - Committer - - -5 - - - brett - Brett Porter - brett@apache.org - ASF - - Committer - - +10 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - Committer - - -8 - - - eolivelli - Enrico Olivelli - eolivelli@apache.org - Diennea - - Committer - - Europe/Rome - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - Committer - - +1 - - - godin - Evgeny Mandrikov - godin@apache.org - SonarSource - - Committer - - +3 - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - imod - Dominik Bartholdi - imod@apache.org - - Committer - - Europe/Zurich - - - jjensen - Jeff Jensen - - Committer - - - - kwin - Konrad Windszus - kwin@apache.org - Cognizant Netcentric - - Committer - - Europe/Berlin - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - markh - Mark Hobson - markh@apache.org - - Committer - - 0 - - - martinkanters - Martin Kanters - martinkanters@apache.org - JPoint - - Committer - - Europe/Amsterdam - - - mthmulders - Maarten Mulders - mthmulders@apache.org - Info Support - - Committer - - Europe/Amsterdam - - - mauro - Mauro Talevi - - Committer - - - - mfriedenhagen - Mirko Friedenhagen - mfriedenhagen@apache.org - - Committer - - +1 - - - mmoser - Manfred Moser - mmoser@apache.org - - Committer - - -8 - - - nicolas - Nicolas de Loof - - Committer - - - - oching - Maria Odea B. Ching - - Committer - - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - Committer - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Committer - - +2 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - schulte - Christian Schulte - schulte@apache.org - - Committer - - Europe/Berlin - - - snicoll - Stephane Nicoll - snicoll@apache.org - - Committer - - +1 - - - simonetripodi - Simone Tripodi - simonetripodi@apache.org - - Committer - - +1 - - - sor - Christian Stein - sor@apache.org - - Committer - - Europe/Berlin - - - tchemit - Tony Chemit - tchemit@apache.org - CodeLutin - - Committer - - Europe/Paris - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - Committer - - +1 - - - slachiewicz - Sylwester Lachiewicz - slachiewicz@apache.org - - Committer - - Europe/Warsaw - - - elharo - Elliotte Rusty Harold - elharo@apache.org - - Committer - - America/New_York - - - - - agudian - Andreas Gudian - agudian@apache.org - - Emeritus - - Europe/Berlin - - - aramirez - Allan Q. Ramirez - - Emeritus - - - - bayard - Henri Yandell - - Emeritus - - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - Emeritus - - +1 - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - Emeritus - - -6 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jruiz - Johnny Ruiz III - jruiz@apache.org - - Emeritus - - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - Emeritus - - +1 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - rinku - Rahul Thakur - - Emeritus - - - - shinobu - Shinobu Kuwai - - Emeritus - - - - smorgrav - Torbjorn Eikli Smorgrav - - Emeritus - - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - Emeritus - - +1 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - Emeritus - - -7 - - - - - - Maven User List - mailto:users-subscribe@maven.apache.org - mailto:users-unsubscribe@maven.apache.org - mailto:users@maven.apache.org - https://lists.apache.org/list.html?users@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-users - https://www.mail-archive.com/users@maven.apache.org/ - - - - Maven Developer List - mailto:dev-subscribe@maven.apache.org - mailto:dev-unsubscribe@maven.apache.org - mailto:dev@maven.apache.org - https://lists.apache.org/list.html?dev@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-dev - https://www.mail-archive.com/dev@maven.apache.org/ - - - - Maven Issues List - mailto:issues-subscribe@maven.apache.org - mailto:issues-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?issues@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-issues/ - https://www.mail-archive.com/issues@maven.apache.org - - - - Maven Commits List - mailto:commits-subscribe@maven.apache.org - mailto:commits-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?commits@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-commits/ - https://www.mail-archive.com/commits@maven.apache.org - - - - Maven Announcements List - mailto:announce-subscribe@maven.apache.org - mailto:announce-unsubscribe@maven.apache.org - announce@maven.apache.org - https://lists.apache.org/list.html?announce@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-announce/ - https://www.mail-archive.com/announce@maven.apache.org - - - - Maven Notifications List - mailto:notifications-subscribe@maven.apache.org - mailto:notifications-unsubscribe@maven.apache.org - https://lists.apache.org/list.html?notifications@maven.apache.org - - https://mail-archives.apache.org/mod_mbox/maven-notifications/ - https://www.mail-archive.com/notifications@maven.apache.org - - - - - - maven-extensions - maven-plugins - maven-shared-components - maven-skins - doxia-tools - apache-resource-bundles - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - maven-parent-39 - https://github.com/apache/maven-parent/tree/${project.scm.tag} - - - - Jenkins - https://ci-maven.apache.org/job/Maven/job/maven-box/ - - - mail - -
    notifications@maven.apache.org
    -
    -
    -
    -
    - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 8 - 1.${javaVersion} - 1.${javaVersion} - https://builds.apache.org/analysis/ - ${user.home}/maven-sites - - ../.. - true - 0.3.5 - 1.11.1 - - 3.0.0-M7 - - ParameterNumber,MethodLength,FileLength - 2022-12-11T20:07:23Z - - - - - - - org.eclipse.sisu - org.eclipse.sisu.inject - ${sisuVersion} - - - org.eclipse.sisu - org.eclipse.sisu.plexus - ${sisuVersion} - - - org.codehaus.plexus - plexus-utils - 3.5.0 - - - - - - - - - false - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - - - - - - - org.eclipse.sisu - sisu-maven-plugin - ${sisuVersion} - - - index-project - - main-index - test-index - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - java-annotations - - - - - org.codehaus.modello - modello-maven-plugin - 2.0.0 - - - - org.apache.maven.plugins - maven-site-plugin - - - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${maven.site.cache}/${maven.site.path} - apache.releases.https - true - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.2.0 - - config/maven_checks_nocodestyle.xml - - - src/main/java - - - src/test/java - - - - - - org.apache.maven.shared - maven-shared-resources - 5 - - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.19.0 - - ${maven.compiler.target} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-release-plugin - - true - - - - org.apache.maven.plugins - maven-toolchains-plugin - 3.1.0 - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - true - en - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - true - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - true - - - - - org.apache.maven.plugins - maven-invoker-plugin - - ${invoker.streamLogsOnFailures} - - true - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.codehaus.mojo - extra-enforcer-rules - 1.6.1 - - - - - enforce-bytecode-version - - enforce - - - - - ${maven.compiler.target} - - - true - - - - - - com.diffplug.spotless - spotless-maven-plugin - 2.28.0 - - - - - - - - config/maven-eclipse-importorder.txt - - - config/maven-header-plain.txt - - - - - false - - true - - - - true - - - - - org.apache.maven.shared - maven-shared-resources - 5 - - - - - - ${spotless.action} - - process-sources - - - - - - - - com.diffplug.spotless - spotless-maven-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - checkstyle-check - - check - - process-sources - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.apache.rat - apache-rat-plugin - - - .java-version - - .repository/** - - .maven/spy.log - - dependency-reduced-pom.xml - - .asf.yaml - - - - - rat-check - - check - - - process-resources - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - index - summary - dependency-info - modules - team - scm - issue-management - mailing-lists - dependency-management - dependencies - dependency-convergence - ci-management - plugin-management - plugins - distribution-management - - - - - - - - - - format-check - - - !format - - - - check - - - - format - - - format - - - - apply - - - - - drop-legacy-dependencies - - - true - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - drop-legacy-dependencies - - enforce - - - - - - - org.codehaus.plexus:plexus-container-default - - org.sonatype.sisu:sisu-inject-bean - org.sonatype.sisu:sisu-inject-plexus - - org.sonatype.aether:* - - org.sonatype.plexus:* - - org.apache.maven:maven-plugin-api:[,3.2.5) - org.apache.maven:maven-core:[,3.2.5) - org.apache.maven:maven-compat:[,3.2.5) - - - - org.sonatype.plexus:plexus-build-api - - org.sonatype.plexus:plexus-sec-dispatcher - org.sonatype.plexus:plexus-cipher - - - - ${drop-legacy-dependencies.include} - - - - - - - - - jdk-toolchain - - - - org.apache.maven.plugins - maven-toolchains-plugin - - - - ${maven.compiler.target} - - - - - - - toolchain - - - - - - - - - quality-checks - - - quality-checks - true - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - cpd-check - - cpd-check - - verify - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - default - - cpd - pmd - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - - org.codehaus.mojo - taglist-maven-plugin - - - - - FIXME Work - - - fixme - ignoreCase - - - @fixme - ignoreCase - - - - - Todo Work - - - todo - ignoreCase - - - @todo - ignoreCase - - - - - Deprecated Work - - - @deprecated - ignoreCase - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - default - - javadoc - - - - - - - - -
    diff --git a/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom.sha1 b/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom.sha1 deleted file mode 100644 index 11b27ff60..000000000 --- a/code/arachne/org/apache/maven/maven-parent/39/maven-parent-39.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9b763d93ee3622181d8d39f62e8e995266c12362 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/maven/3.6.3/_remote.repositories b/code/arachne/org/apache/maven/maven/3.6.3/_remote.repositories deleted file mode 100644 index 28a2960a2..000000000 --- a/code/arachne/org/apache/maven/maven/3.6.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:55 EDT 2024 -maven-3.6.3.pom>ohdsi= diff --git a/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom b/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom deleted file mode 100644 index c770f0d33..000000000 --- a/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom +++ /dev/null @@ -1,736 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 33 - ../pom/maven/pom.xml - - - maven - 3.6.3 - pom - - Apache Maven - Maven is a software build management and - comprehension tool. Based on the concept of a project object model: - builds, dependency management, documentation creation, site - publication, and distribution publication are all controlled from - the declarative file. Maven can be extended by plugins to utilise a - number of other development tools for reporting or the build - process. - - https://maven.apache.org/ref/${project.version}/ - 2001 - - - 3.0.5 - 1.7 - 1.7 - 2.6.0 - 1.4 - 3.8.1 - 4.12 - 2.21.0 - 2.1.0 - 1.25 - 3.2.1 - 4.2.1 - 0.3.4 - 3.3.4 - 1.12.1 - 1.4 - 1.7 - 1.11 - 1.3 - 1.4.1 - 1.7.29 - 2.2.1 - 1.7.4 - true - - apache-maven - Maven - Apache Maven - ref/3-LATEST - None - **/package-info.java - 2019-11-07T12:32:18Z - - - - maven-plugin-api - maven-builder-support - maven-model - maven-model-builder - maven-core - maven-settings - maven-settings-builder - maven-artifact - maven-resolver-provider - maven-repository-metadata - maven-slf4j-provider - maven-embedder - maven-compat - apache-maven - - - - scm:git:https://gitbox.apache.org/repos/asf/maven.git - scm:git:https://gitbox.apache.org/repos/asf/maven.git - https://github.com/apache/maven/tree/${project.scm.tag} - maven-3.6.3 - - - jira - https://issues.apache.org/jira/browse/MNG - - - Jenkins - https://builds.apache.org/job/maven-box/job/maven/ - - - https://maven.apache.org/download.html - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - - Stuart McCulloch - - - Christian Schulte (MNG-2199) - - - Christopher Tubbs (MNG-4226) - - - Konstantin Perikov (MNG-4565) - - - Sébastian Le Merdy (MNG-5613) - - - Mark Ingram (MNG-5639) - - - Phil Pratt-Szeliga (MNG-5645) - - - Florencia Tarditti (PR 41) - - - Anton Tanasenko - - - Joseph Walton (MNG-5297) - - - Fabiano Cipriano de Oliveira (MNG-6261) - - - Mike Mol (MNG-6665) - - - Martin Kanters (MNG-6665) - - - - - - - - - - - org.apache.maven - maven-model - ${project.version} - - - org.apache.maven - maven-settings - ${project.version} - - - org.apache.maven - maven-settings-builder - ${project.version} - - - org.apache.maven - maven-plugin-api - ${project.version} - - - org.apache.maven - maven-embedder - ${project.version} - - - org.apache.maven - maven-core - ${project.version} - - - org.apache.maven - maven-model-builder - ${project.version} - - - org.apache.maven - maven-compat - ${project.version} - - - org.apache.maven - maven-artifact - ${project.version} - - - org.apache.maven - maven-resolver-provider - ${project.version} - - - org.apache.maven - maven-repository-metadata - ${project.version} - - - org.apache.maven - maven-builder-support - ${project.version} - - - org.apache.maven - maven-slf4j-provider - ${project.version} - - - - - org.codehaus.plexus - plexus-utils - ${plexusUtilsVersion} - - - com.google.inject - guice - ${guiceVersion} - no_aop - - - org.eclipse.sisu - org.eclipse.sisu.plexus - ${sisuInjectVersion} - - - org.eclipse.sisu - org.eclipse.sisu.inject - ${sisuInjectVersion} - - - javax.inject - javax.inject - 1 - - - javax.annotation - jsr250-api - 1.0 - - - org.codehaus.plexus - plexus-component-annotations - ${plexusVersion} - - - junit - junit - - - - - org.codehaus.plexus - plexus-classworlds - ${classWorldsVersion} - - - org.codehaus.plexus - plexus-interpolation - ${plexusInterpolationVersion} - - - org.apache.maven.shared - maven-shared-utils - 3.2.1 - - - org.fusesource.jansi - jansi - 1.17.1 - - - org.slf4j - slf4j-api - ${slf4jVersion} - - - org.slf4j - slf4j-simple - ${slf4jVersion} - true - - - ch.qos.logback - logback-classic - 1.2.1 - true - - - - org.apache.maven.wagon - wagon-provider-api - ${wagonVersion} - - - org.apache.maven.wagon - wagon-file - ${wagonVersion} - - - org.apache.maven.wagon - wagon-http - ${wagonVersion} - shaded - - - commons-logging - commons-logging - - - - - - org.jsoup - jsoup - ${jsoupVersion} - - - - org.apache.maven.resolver - maven-resolver-api - ${resolverVersion} - - - org.apache.maven.resolver - maven-resolver-spi - ${resolverVersion} - - - org.apache.maven.resolver - maven-resolver-impl - ${resolverVersion} - - - org.apache.maven.resolver - maven-resolver-util - ${resolverVersion} - - - org.apache.maven.resolver - maven-resolver-connector-basic - ${resolverVersion} - - - org.apache.maven.resolver - maven-resolver-transport-wagon - ${resolverVersion} - - - - commons-cli - commons-cli - ${commonsCliVersion} - - - commons-lang - commons-lang - - - commons-logging - commons-logging - - - - - commons-jxpath - commons-jxpath - ${jxpathVersion} - - - org.apache.commons - commons-lang3 - ${commonsLangVersion} - - - org.sonatype.plexus - plexus-sec-dispatcher - ${securityDispatcherVersion} - - - org.sonatype.plexus - plexus-cipher - ${cipherVersion} - - - org.mockito - mockito-core - ${mockitoVersion} - test - - - org.xmlunit - xmlunit-core - ${xmlunitVersion} - test - - - org.xmlunit - xmlunit-matchers - ${xmlunitVersion} - test - - - org.powermock - powermock-reflect - ${powermockVersion} - - - org.hamcrest - hamcrest-core - 1.3 - test - - - org.hamcrest - hamcrest-library - 1.3 - test - - - - - - - - - junit - junit - ${junitVersion} - test - - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.2.0 - - - org.codehaus.plexus - plexus-component-metadata - ${plexusVersion} - - - - generate-metadata - generate-test-metadata - - - - - - org.eclipse.sisu - sisu-maven-plugin - ${sisuInjectVersion} - - - - main-index - test-index - - - - - - org.apache.maven.plugins - maven-release-plugin - - true - - - - org.apache.maven.plugins - maven-surefire-plugin - - -Xmx256m - - true - - - - - org.codehaus.modello - modello-maven-plugin - ${modelloVersion} - - - modello-site-docs - pre-site - - xdoc - xsd - - - - modello - - java - xpp3-reader - xpp3-writer - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - - org.apache.rat - apache-rat-plugin - - - src/test/resources*/** - src/test/projects/** - src/test/remote-repo/** - **/*.odg - - src/main/appended-resources/licenses/CDDL-1.0.txt - src/main/appended-resources/licenses/EPL-1.0.txt - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.apache.rat - apache-rat-plugin - [0.10,) - - check - - - - - - - - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.17 - - - org.codehaus.mojo.signature - java17 - 1.0 - - - - - check-java-compat - process-classes - - check - - - - - - org.apache.maven.plugins - maven-doap-plugin - 1.2 - - - The mission of the Apache Maven project is to create and maintain software - libraries that provide a widely-used project build tool, targeting mainly Java - development. Apache Maven promotes the use of dependencies via a - standardized coordinate system, binary plugins, and a standard build - lifecycle. - - - - - org.apache.rat - apache-rat-plugin - - - bootstrap/** - README.bootstrap.txt - README.md - - - - - - - - - apache-release - - - - maven-assembly-plugin - - - source-release-assembly - - - true - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - provisional - tf - Provisional: - - - - - - aggregate - false - - aggregate - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - - aggregate - false - - aggregate - - - - - - - - - maven-repo-local - - - maven.repo.local - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - - - maven.repo.local - ${maven.repo.local} - - - - - - - - - diff --git a/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.lastUpdated b/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.lastUpdated deleted file mode 100644 index 4ed5adf4b..000000000 --- a/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:55 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.apache.maven\:maven\:pom\:3.6.3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139835428 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139835437 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139835524 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139835704 diff --git a/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.sha1 b/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.sha1 deleted file mode 100644 index 7f69a13b2..000000000 --- a/code/arachne/org/apache/maven/maven/3.6.3/maven-3.6.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e3e8e83914f00e2f6e88b76d600fc7ea7456f6e0 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/_remote.repositories deleted file mode 100644 index d24719720..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:44 EDT 2024 -maven-clean-plugin-3.2.0.jar>central= -maven-clean-plugin-3.2.0.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar deleted file mode 100644 index 4ab4510f42500cf3e09c5247fb4e53bd610346e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 35678 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 T7(hT+A1~&QSrU@ZAOHP7hJBVm diff --git a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar.sha1 b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar.sha1 deleted file mode 100644 index 779bf7b84..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -556f5c71be8788c70a94a43d66af7fe35acee21f \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom deleted file mode 100644 index a1c52cf12..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.plugins - maven-plugins - 35 - - - - maven-clean-plugin - 3.2.0 - maven-plugin - - Apache Maven Clean Plugin - - The Maven Clean Plugin is a plugin that removes files generated at build-time in a project's directory. - - 2001 - - - ${mavenVersion} - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-clean-plugin.git - scm:git:https://gitbox.apache.org/repos/asf/maven-clean-plugin.git - https://github.com/apache/maven-clean-plugin/tree/${project.scm.tag} - maven-clean-plugin-3.2.0 - - - JIRA - https://issues.apache.org/jira/browse/MCLEAN - - - Jenkins - https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-clean-plugin/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 3.2.5 - 8 - 2.22.2 - 3.6.4 - 2022-04-01T21:20:29Z - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - provided - - - org.apache.maven.shared - maven-shared-utils - 3.3.4 - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 3.3.0 - test - - - org.apache.maven - maven-compat - ${mavenVersion} - test - - - org.apache.maven - maven-core - ${mavenVersion} - provided - - - junit - junit - 4.13.2 - test - - - - - - run-its - - - - - org.apache.maven.plugins - maven-invoker-plugin - - true - true - src/it - ${project.build.directory}/it - - */pom.xml - - setup - verify - ${project.build.directory}/local-repo - src/it/settings.xml - - clean - - - - - - - - - diff --git a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom.sha1 deleted file mode 100644 index 83c15b348..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f6f7ce25e8d638408c20f1888b2664f49df9f5a1 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/_remote.repositories deleted file mode 100644 index 8c4442c26..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:45 EDT 2024 -maven-compiler-plugin-3.10.1.pom>central= -maven-compiler-plugin-3.10.1.jar>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.jar b/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.jar deleted file mode 100644 index 5d1212c0bf8491b04df51a982da08f0f2db1b284..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 61899 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
    ${root.dir}/src/license/header.txt
    - - ${root.dir}/src/license/header_format.xml - - - **/*.txt - - - - - org.eclipse.jetty - jetty-maven-plugin - ${jetty.version} - - / - - 9080 - 60000 - - - ./target/yyyy_mm_dd.request.log - 90 - true - false - GMT - - - - - org.owasp - dependency-check-maven - 8.4.2 - - - com.github.siom79.japicmp - japicmp-maven-plugin - 0.18.2 - - - - ${project.groupId} - ${project.artifactId} - ${shiro.previousVersion} - jar - - - - true - true - true - ${root.dir}/src/japicmp/postAnalysisScript.groovy - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - org.codehaus.mojo - aspectj-maven-plugin - 1.14.0 - - ${maven.compiler.source} - ${maven.compiler.target} - ${maven.compiler.target} - true - - - - org.apache.maven.plugins - maven-shade-plugin - 3.5.1 - - - jakarta - package - - shade - - - false - true - jakarta - false - - - - - - ${project.groupId}:${project.artifactId} - - - - - javax.annotation - jakarta.annotation - - javax.annotation.processing.** - - - - javax.enterprise - jakarta.enterprise - - javax.enterprise.deploy.** - - - - javax.inject - jakarta.inject - - - javax.json - jakarta.json - - - javax.servlet.http.HttpSessionContext - org.apache.shiro.web.servlet.HttpSessionContext - - - javax.servlet - jakarta.servlet - - - javax.websocket - jakarta.websocket - - - javax.ws.rs - jakarta.ws.rs - - - - - - - - - - - org.apache.rat - apache-rat-plugin - - - rat-chec - - check - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - - org.jacoco - jacoco-maven-plugin - - - prepare-agent - process-test-classes - - prepare-agent - - - - prepare-agent-integration - pre-integration-test - - prepare-agent-integration - - - - **/main/**/samples/** - - - - - - - - org.codehaus.gmavenplus - gmavenplus-plugin - ${gmaven.version} - - - - addTestSources - generateTestStubs - compileTests - removeTestStubs - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.2.0 - - - validate - - create - - - - - false - false - ${project.version} - true - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - true - true - - - - - - - org.apache.maven.plugins - maven-doap-plugin - 1.2 - false - - - - - - - Java - - library, web-framework - - ${project.issueManagement.url} - ${project.inceptionYear}-01-01 - ${project.description} - ${project.distributionManagement.downloadUrl} - ${project.url} - ${project.url}/mail-lists.html - ${project.name} - A simple to use Java Security Framework. - ${project.organization.name} - - - - The mission of the Apache Shiro project is to create and maintain an easy to use authentication and authorization framework. - - - ${project.url} - ${project.name} - - - - - - site - pre-site - - generate - - - - - - com.ibm.icu - icu4j - 74.1 - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - - false - true - true - - false - deploy site site:stage - -Pdocs,apache-release -DskipITs -DskipTests - forked-path - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - https://repository.apache.org - apache.releases.https - ${nexus.deploy.skip} - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [3.5.0,4) - - - [1.8,) - - - - - - - - - - - - - junit - junit - test - - - org.hamcrest - hamcrest-core - 2.2 - test - - - org.easymock - easymock - ${easymock.version} - test - - - - org.codehaus.groovy - groovy - ${groovy.version} - test - - - org.powermock - powermock-module-junit4 - ${powermock.version} - test - - - org.powermock - powermock-api-easymock - ${powermock.version} - test - - - - - - - - org.apache.shiro - shiro-lang - ${project.version} - - - org.apache.shiro - shiro-cache - ${project.version} - - - org.apache.shiro - shiro-core - ${project.version} - - - org.apache.shiro - shiro-config-core - ${project.version} - - - org.apache.shiro - shiro-config-ogdl - ${project.version} - - - org.apache.shiro - shiro-crypto-core - ${project.version} - - - org.apache.shiro - shiro-crypto-hash - ${project.version} - - - org.apache.shiro - shiro-crypto-cipher - ${project.version} - - - org.apache.shiro - shiro-event - ${project.version} - - - org.apache.shiro - shiro-web - ${project.version} - - - org.apache.shiro - shiro-servlet-plugin - ${project.version} - - - - - org.apache.shiro - shiro-aspectj - ${project.version} - - - org.apache.shiro - shiro-cas - ${project.version} - - - org.apache.shiro - shiro-ehcache - ${project.version} - - - org.apache.shiro - shiro-quartz - ${project.version} - - - org.apache.shiro - shiro-spring - ${project.version} - - - org.apache.shiro - shiro-guice - ${project.version} - - - org.apache.shiro - shiro-hazelcast - ${project.version} - - - org.apache.shiro - shiro-jaxrs - ${project.version} - - - org.apache.shiro - shiro-all - ${project.version} - - - - - org.apache.shiro.samples - samples-spring-client - ${project.version} - - - org.apache.shiro - shiro-spring-boot-starter - ${project.version} - - - org.apache.shiro - shiro-spring-boot-web-starter - ${project.version} - - - - - - org.apache.shiro - shiro-core - ${project.version} - tests - test-jar - test - - - org.apache.shiro - shiro-config-ogdl - ${project.version} - tests - test-jar - test - - - org.apache.shiro.integrationtests - shiro-its-support - ${project.version} - - - - - - junit - junit - ${junit.version} - - - - commons-cli - commons-cli - ${commons.cli.version} - - - javax.annotation - javax.annotation-api - ${javax.annotation.api.version} - - - - commons-codec - commons-codec - ${commons.codec.version} - runtime - - - org.aspectj - aspectjrt - ${aspectj.version} - - - org.aspectj - aspectjweaver - ${aspectj.version} - - - - - org.apache.commons - commons-configuration2 - ${commons.configuration2.version} - - - commons-logging - commons-logging - - - - - - org.apache.commons - commons-text - 1.10.0 - - - - org.owasp.encoder - encoder - ${owasp.java.encoder.version} - - - - ch.qos.logback - logback-classic - ${logback.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.slf4j - slf4j-simple - ${slf4j.version} - test - - - org.apache.logging.log4j - log4j-slf4j-impl - ${log4j.version} - test - - - org.apache.logging.log4j - log4j-core - ${log4j.version} - tests - test - - - - org.apache.logging.log4j - log4j-api - ${log4j.version} - test - - - org.apache.logging.log4j - log4j-core - ${log4j.version} - test - - - org.apache.logging.log4j - log4j-jul - ${log4j.version} - test - - - org.apache.logging.log4j - log4j-to-slf4j - ${log4j.version} - test - - - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - test - - - commons-beanutils - commons-beanutils - ${commons.beanutils.version} - - - commons-logging - commons-logging - - - - - org.hsqldb - hsqldb - ${hsqldb.version} - jdk8 - runtime - true - - - javax.servlet.jsp - jsp-api - 2.2 - provided - - - org.apache.taglibs - taglibs-standard-spec - ${taglibs.standard.version} - provided - - - org.apache.taglibs - taglibs-standard-impl - ${taglibs.standard.version} - provided - - - javax.servlet - javax.servlet-api - 3.1.0 - provided - - - org.codehaus.groovy - groovy - ${groovy.version} - - - net.sf.ehcache - ehcache-core - ${ehcache.version} - true - - - commons-logging - commons-logging - - - - - com.hazelcast - hazelcast - ${hazelcast.version} - - - net.sourceforge.htmlunit - htmlunit - ${htmlunit.version} - - - - org.hibernate - hibernate-core - ${hibernate.version} - true - - - commons-logging - commons-logging - - - ant - ant - - - - ant-launcher - - ant-launcher - - - c3p0 - c3p0 - - - - javax.security - - jacc - - - javax.servlet - javax.servlet-api - - - jboss - - jboss-cache - - - net.sf.ehcache - ehcache - - - asm - - asm-attrs - - - javax.transaction - jta - - - - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - 1.1.1 - runtime - true - - - org.springframework - spring-context - ${spring.version} - true - - - commons-logging - commons-logging - - - - - org.springframework - spring-web - ${spring.version} - - - commons-logging - commons-logging - - - - - org.springframework - spring-jdbc - ${spring.version} - true - - - commons-logging - commons-logging - - - - - org.springframework - spring-orm - ${spring.version} - true - - - commons-logging - commons-logging - - - - - org.springframework - spring-webmvc - ${spring.version} - true - - - commons-logging - commons-logging - - - - - org.springframework - spring-test - ${spring.version} - test - true - - - commons-logging - commons-logging - - - - - - - org.springframework.boot - spring-boot-starter - ${spring-boot.version} - - - org.springframework.boot - spring-boot-autoconfigure - ${spring-boot.version} - - - org.springframework.boot - spring-boot-configuration-processor - ${spring-boot.version} - - - org.springframework.boot - spring-boot-test - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-web - ${spring-boot.version} - - - - - com.google.inject - guice - ${guice.version} - - - com.google.guava - guava - 32.1.3-jre - - - com.google.inject.extensions - guice-multibindings - ${guice.version} - - - com.google.inject.extensions - guice-servlet - ${guice.version} - - - org.quartz-scheduler - quartz - ${quartz.version} - true - - - com.github.mjeanroy - junit-servers-jetty - ${junit.server.jetty.version} - - - - - - - - - maven-javadoc-plugin - - true - - https://docs.oracle.com/javase/6/docs/api/ - https://docs.oracle.com/javaee/5/api// - https://www.slf4j.org/api/ - https://docs.spring.io/spring/docs/2.5.x/javadoc-api/ - https://junit.org/junit4/javadoc/4.12/ - http://easymock.org/api/easymock/2.4 - https://www.quartz-scheduler.org/api/1.8.6/ - - - org.apache.shiro.samples.* - - - - ]]> - - - - javadoc-aggregate - - aggregate-no-fork - - - - - - maven-jxr-plugin - 3.3.1 - - true - - - - - jxr-no-fork - - - - - - maven-pmd-plugin - 3.21.0 - - - maven-project-info-reports-plugin - 3.4.5 - - - - ci-management - dependencies - - - dependency-info - dependency-management - distribution-management - index - issue-management - licenses - mailing-lists - modules - plugin-management - plugins - scm - summary - team - - - - - - org.apache.rat - apache-rat-plugin - 0.15 - - false - - - - /**/src/it/projects/*/build.log - /**/src/it/projects/*/target/** - **/.externalToolBuilders/* - **/infinitest.filters - - velocity.log - CONTRIBUTING.md - README.md - **/*.json - **/spring.factories - **/spring.provides - **/*.iml - - - - - maven-surefire-report-plugin - - - - report-only - - - - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - - - Todo Work - - - todo - ignoreCase - - - FIXME - exact - - - - - Deprecated - - - @Deprecated - exact - - - - - - - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0 - - - - generate-no-fork - - - - - - org.jacoco - jacoco-maven-plugin - - - jacoco-aggregate - - report-integration - report - - - - - - - - - - fast - - true - true - - - install - - - - jdk8 - - [1.8,) - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - -Xdoclint:none - --allow-script-in-comments - - - - - - - - - docs - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-api-docs - - jar - - - - true - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - true - - - - - - apache-release - - - shiro.website - Apache Shiro Site - scm:svn:https://svn.apache.org/repos/asf/shiro/site/publish/static/${project.version} - - - - - - owasp - - - - org.owasp - dependency-check-maven - false - - false - ${root.dir}/src/owasp-suppression.xml - - - - - aggregate - - false - - - - - - - - - org.owasp - dependency-check-maven - false - - ${root.dir}/src/owasp-suppression.xml - OWASP Dependency Check - - - - - aggregate - - - - - - - - - ci - - false - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - japicmp - - cmp - - - - - - - - - run-its - - - - org.codehaus.mojo - mrm-maven-plugin - 1.5.0 - - - - start - stop - - - - - mrm.repository.url - - - src/it/mrm/repository - - - - - - - org.apache.maven.plugins - maven-invoker-plugin - 3.6.0 - - ${project.build.directory}/local-repo - - - 1 - - ${project.build.directory}/local-repo - src/it/projects - - */pom.xml - - src/it/mrm/settings.xml - - ${mrm.repository.url} - - - clean - package - - - - - integration-test - - install - integration-test - verify - - - - - - - - - diff --git a/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom.sha1 deleted file mode 100644 index b61175551..000000000 --- a/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -eb3861df01f9aa2792580e942625ca3bd9cd13db \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-root/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-root/2.0.1/_remote.repositories deleted file mode 100644 index 6ed5d025a..000000000 --- a/code/arachne/org/apache/shiro/shiro-root/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:19 EDT 2024 -shiro-root-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom deleted file mode 100644 index 58a7f32c1..000000000 --- a/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom +++ /dev/null @@ -1,1848 +0,0 @@ - - - - 4.0.0 - - - - org.apache - apache - 32 - - - org.apache.shiro - shiro-root - pom - 2.0.1 - - Apache Shiro - https://shiro.apache.org/ - - Apache Shiro is a powerful and flexible open-source security framework that cleanly handles - authentication, authorization, enterprise session management, single sign-on and cryptography services. - - 2004 - - - scm:git:https://gitbox.apache.org/repos/asf/shiro.git - scm:git:https://gitbox.apache.org/repos/asf/shiro.git - https://github.com/apache/shiro/tree/${project.scm.tag} - shiro-root-2.0.1 - - - Jira - https://issues.apache.org/jira/browse/SHIRO - - - Jenkins - https://builds.apache.org/job/Shiro/ - - - - - shiro.website - Apache Shiro Site - scp://people.apache.org/www/shiro.apache.org/static/latest - - https://shiro.apache.org/download.html - - - - 1.13.0 - - ${user.name}-${maven.build.timestamp} - 2024-05-25T17:49:17Z - true - - - - - false - nexus-staging - - - [2, 3) - [1.1,2) - - - - 1.9.20.1 - 1.9.4 - 1.8.0 - 3.2.2 - 2.10.1 - 3.14.0 - 1.3.2 - 1.8 - - 2.6.11 - - 5.3.7 - 2.7.2 - 1.3.2 - 1.1.1 - 11 - 9.4.54.v20240208 - 1.2.3 - - 2.3.2 - 2.3.0 - 2.0.13 - 2.23.1 - 5.3.36 - 2.7.18 - 4.2.3 - 2.1.6 - 4.1.0 - 1.78.1 - - - 5.2.0 - 5.12.0 - 1.14.16 - 3.0.2 - 4.0.21 - 5.10.2 - 3.1.1 - 5.6.15.Final - 1.2.5 - 1.3.5 - 1.18.32 - - ${jdk.version} - - - ${root.dir}/src/checkstyle.xml - ${root.dir}/src/suppressions.xml - - - - lang - crypto - event - cache - config - core - web - support - tools - bom - integration-tests - samples - test-coverage - - - - - Apache Shiro Users Mailing List - user-subscribe@shiro.apache.org - user-unsubscribe@shiro.apache.org - user@shiro.apache.org - - - - - Apache Shiro Developers Mailing List - dev-subscribe@shiro.apache.org - dev-unsubscribe@shiro.apache.org - dev@shiro.apache.org - - - - - - - - - aditzel - Allan Ditzel - aditzel@apache.org - http://www.allanditzel.com - Apache Software Foundation - -5 - - - jhaile - Jeremy Haile - jhaile@apache.org - http://www.jeremyhaile.com - Mobilization Labs - http://www.mobilizationlabs.com - -5 - - - lhazlewood - Les Hazlewood - lhazlewood@apache.org - http://www.leshazlewood.com - Stormpath - https://www.stormpath.com - -8 - - - kaosko - Kalle Korhonen - kaosko@apache.org - https://www.tynamo.org - Apache Software Foundation - -8 - - - pledbrook - Peter Ledbrook - p.ledbrook@cacoethes.co.uk - https://www.cacoethes.co.uk/ - SpringSource - https://spring.io/ - 0 - - - tveil - Tim Veil - tveil@apache.org - - - bdemers - Brian Demers - bdemers@apache.org - https://stormpath.com/blog/author/bdemers - Stormpath - https://stormpath.com/ - -5 - - PMC Chair - - - - jbunting - Jared Bunting - jbunting@apache.org - Apache Software Foundation - -6 - - - fpapon - Francois Papon - fpapon@apache.org - Yupiik - https://www.yupiik.com/ - +4 - - - bmarwell - Benjamin Marwell - bmarwell@apache.org - Europe/Berlin - - - lprimak - Lenny Primak - lprimak@apache.org - US/Central - https://hope.nyc.ny.us - Flow Logix - https://www.flowlogix.com/ - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - @{jacocoAgent} @{surefire.argLine} - kill - native - false - true - - - junit.jupiter.execution.parallel.enabled = true - junit.jupiter.execution.parallel.mode.default = concurrent - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - @{jacocoAgent} @{failsafe.argLine} - false - true - - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - org.apache.shiro.samples.* - true - - https://docs.oracle.com/javase/${jdk.version}/docs/api/ - https://www.slf4j.org/api/ - https://docs.spring.io/spring/docs/${spring.version}/javadoc-api/ - https://docs.spring.io/spring-boot/docs/${spring-boot.version}/api/ - https://junit.org/junit5/docs/${junit.version}/api/ - https://www.quartz-scheduler.org/api/${quartz.docs.version}/ - - - - - org.apache.maven.plugins - maven-war-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-help-plugin - 3.4.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - - org.apache.maven.plugins - maven-site-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.2.1 - - - org.apache.rat - apache-rat-plugin - - - - **/.externalToolBuilders/* - **/infinitest.filters - - velocity.log - CONTRIBUTING.md - **/README.md - **/*.json - **/spring.factories - **/org.springframework.boot.autoconfigure.AutoConfiguration.imports - **/spring.provides - **/*.iml - **/target/** - **/nb-configuration.xml - **/faces-config.NavData - **/org.mockito.plugins.MockMaker - .mvn/* - - - - - org.codehaus.mojo - versions-maven-plugin - 2.16.2 - - - - org.codehaus.gmavenplus - gmavenplus-plugin - ${gmaven.version} - - - org.apache.groovy - groovy-all - ${groovy.version} - runtime - pom - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.6.0 - - - org.jacoco - jacoco-maven-plugin - 0.8.12 - - - com.mycila - license-maven-plugin - 4.5 - - true -
    ${root.dir}/src/license/header.txt
    - - ${root.dir}/src/license/header_format.xml - - - **/*.txt - -
    -
    - - org.eclipse.jetty - jetty-maven-plugin - ${jetty.version} - - / - - 9080 - 60000 - - - ./target/yyyy_mm_dd.request.log - 90 - true - false - GMT - - - - - org.owasp - dependency-check-maven - 9.2.0 - - - com.github.siom79.japicmp - japicmp-maven-plugin - 0.21.2 - - - - ${project.groupId} - ${project.artifactId} - ${shiro.previousVersion} - jar - - - - true - true - true - ${root.dir}/src/japicmp/postAnalysisScript.groovy - - - - - org.codehaus.mojo - aspectj-maven-plugin - 1.15.0 - - ${maven.compiler.release} - ${maven.compiler.release} - ${maven.compiler.release} - true - - true - - - - aspectj-compile - - compile - test-compile - - - - - - org.aspectj - aspectjtools - ${aspectj.version} - - - - - org.apache.maven.plugins - maven-shade-plugin - - - jakarta - package - - shade - - - false - true - jakarta - false - - - - - - - ${project.groupId}:${project.artifactId} - - - - - javax.annotation - jakarta.annotation - - javax.annotation.processing.** - - - - javax.enterprise - jakarta.enterprise - - javax.enterprise.deploy.** - - - - javax.inject - jakarta.inject - - - javax.json - jakarta.json - - - javax.servlet.http.HttpSessionContext - org.apache.shiro.web.servlet.HttpSessionContext - - - javax.servlet - jakarta.servlet - - - javax.websocket - jakarta.websocket - - - javax.ws.rs - jakarta.ws.rs - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.1 - - ${checkstyle.configLocation} - ${checkstyle.supressionsLocation} - true - true - true - true - true - true - test-keystore.jks,test-keystore.pem - root.dir=${root.dir} - - - - validate - - checkstyle - - - - - - com.puppycrawl.tools - checkstyle - 10.16.0 - - - -
    -
    - - - org.apache.rat - apache-rat-plugin - - - rat-check - - check - - - - - - org.commonjava.maven.plugins - directory-maven-plugin - 1.0 - - - directories - - directory-of - - validate - - root.dir - - org.apache.shiro - shiro-root - - - - - - - maven-checkstyle-plugin - - - org.apache.maven.plugins - maven-compiler-plugin - - true - - -Xlint:deprecation - -Xlint:unchecked - - - - org.aspectj - aspectjweaver - ${aspectj.version} - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - - org.jacoco - jacoco-maven-plugin - - - org/apache/shiro/** - - - **/*$$FastClassBy*$$* - **/*$$EnhancerBy*CGLIB$$* - **/*$MockitoMock$* - **/*$HibernateProxy$* - org/apache/shiro/samples/guice/SampleShiroGuiceBootstrap - org/apache/shiro/samples/guice/SampleShiroServletModule - org/apache/shiro/**/*Test - org/apache/shiro/**/*Test$* - org/apache/shiro/**/*IT - org/apache/shiro/**/*IT$* - org/apache/shiro/**/__EJB31_Generated* - - org/apache/shiro/**/Deployments - - jacocoAgent - ${project.build.directory}/classes-jacoco - - - - prepare-agent - - prepare-agent - - - - prepare-agent-integration - pre-integration-test - - prepare-agent-integration - - - - - - - org.codehaus.gmavenplus - gmavenplus-plugin - - - - addTestSources - generateTestStubs - compileTests - removeTestStubs - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.2.0 - - - validate - - create - - - - - false - false - ${project.version} - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - true - true - - - org.apache.shiro.${module.name} - - - - - - - org.apache.maven.plugins - maven-doap-plugin - 1.2 - false - - - - - - - Java - - library, web-framework - - ${project.issueManagement.url} - ${project.inceptionYear}-01-01 - ${project.description} - ${project.distributionManagement.downloadUrl} - ${project.url} - ${project.url}/mail-lists.html - ${project.name} - A simple to use Java Security Framework. - ${project.organization.name} - - - - The mission of the Apache Shiro project is to create and maintain an easy to use authentication and authorization framework. - - - ${project.url} - ${project.name} - - - - - - site - pre-site - - generate - - - - - - - org.apache.maven.plugins - maven-release-plugin - - - false - true - true - validate - skip-checkstyle - deploy - docs,apache-release,${nexus-staging-profile} - forked-path - - - - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [3.5.0,4) - - - [11,) - - - - - - enforce-forbidden-dependencies - - enforce - - - true - - - - *:powermock-api-easymock - *:powermock-module-junit4 - - - - - - - - -
    - - - - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.hamcrest - hamcrest-core - 2.2 - test - - - org.assertj - assertj-core - 3.25.3 - test - - - org.easymock - easymock - ${easymock.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - - org.apache.groovy - groovy - test - - - - - - - - org.apache.shiro - shiro-lang - ${project.version} - - - org.apache.shiro - shiro-cache - ${project.version} - - - org.apache.shiro - shiro-core - ${project.version} - - - org.apache.shiro - shiro-config-core - ${project.version} - - - org.apache.shiro - shiro-config-ogdl - ${project.version} - - - org.apache.shiro - shiro-crypto-core - ${project.version} - - - org.apache.shiro - shiro-crypto-hash - ${project.version} - - - org.apache.shiro.crypto - shiro-hashes-argon2 - ${project.version} - - - org.apache.shiro.crypto - shiro-hashes-bcrypt - ${project.version} - - - org.apache.shiro - shiro-crypto-cipher - ${project.version} - - - org.apache.shiro - shiro-event - ${project.version} - - - org.apache.shiro - shiro-web - ${project.version} - - - org.apache.shiro - shiro-servlet-plugin - ${project.version} - - - - - org.apache.shiro - shiro-aspectj - ${project.version} - - - org.apache.shiro - shiro-ehcache - ${project.version} - - - org.apache.shiro - shiro-quartz - ${project.version} - - - org.apache.shiro - shiro-spring - ${project.version} - - - org.apache.shiro - shiro-guice - ${project.version} - - - org.apache.shiro - shiro-hazelcast - ${project.version} - - - org.apache.shiro - shiro-jaxrs - ${project.version} - - - org.apache.shiro - shiro-all - ${project.version} - - - - - org.apache.shiro - shiro-core - ${project.version} - tests - test-jar - test - - - org.apache.shiro - shiro-config-ogdl - ${project.version} - tests - test-jar - test - - - org.apache.shiro.integrationtests - shiro-its-support - ${project.version} - - - org.apache.shiro.integrationtests - shiro-its-meecrowave-support - ${project.version} - - - org.apache.shiro.integrationtests.jaxrs - shiro-its-jaxrs - ${project.version} - pom - - - org.apache.shiro.integrationtests.jaxrs - shiro-its-jaxrs-app - ${project.version} - war - - - org.apache.shiro.integrationtests.jaxrs - shiro-its-jaxrs-app - ${project.version} - classes - jar - - - org.apache.shiro.integrationtests.jaxrs - shiro-its-jaxrs-tests - ${project.version} - jar - - - - - - - org.junit - junit-bom - ${junit.version} - import - pom - - - org.junit-pioneer - junit-pioneer - 2.2.0 - test - - - net.bytebuddy - byte-buddy - ${bytebuddy.version} - - - net.bytebuddy - byte-buddy-agent - ${bytebuddy.version} - - - - commons-cli - commons-cli - ${commons.cli.version} - - - javax.annotation - javax.annotation-api - ${javax.annotation.api.version} - - - org.aspectj - aspectjrt - ${aspectj.version} - - - org.aspectj - aspectjweaver - ${aspectj.version} - - - - - org.apache.commons - commons-configuration2 - ${commons.configuration2.version} - - - commons-logging - commons-logging - - - - - - org.owasp.encoder - encoder - ${owasp.java.encoder.version} - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.slf4j - slf4j-simple - ${slf4j.version} - test - - - org.apache.logging.log4j - log4j-slf4j2-impl - ${log4j.version} - test - - - org.apache.logging.log4j - log4j-core-test - ${log4j.version} - test - - - - org.apache.logging.log4j - log4j-api - ${log4j.version} - test - - - org.apache.logging.log4j - log4j-core - ${log4j.version} - test - - - org.apache.logging.log4j - log4j-jul - ${log4j.version} - test - - - org.apache.logging.log4j - log4j-to-slf4j - ${log4j.version} - test - - - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - test - - - commons-beanutils - commons-beanutils - ${commons.beanutils.version} - - - commons-logging - commons-logging - - - - - org.hsqldb - hsqldb - ${hsqldb.version} - runtime - true - - - javax.servlet.jsp - jsp-api - 2.2 - provided - - - org.apache.taglibs - taglibs-standard-spec - ${taglibs.standard.version} - provided - - - org.apache.taglibs - taglibs-standard-impl - ${taglibs.standard.version} - provided - - - javax.servlet - javax.servlet-api - 4.0.1 - provided - - - org.apache.groovy - groovy - ${groovy.version} - - - net.sf.ehcache - ehcache-core - ${ehcache.version} - true - - - commons-logging - commons-logging - - - net.sf.ehcache - sizeof-agent - - - - - com.hazelcast - hazelcast - ${hazelcast.version} - - - org.htmlunit - htmlunit - ${htmlunit.version} - - - - org.hibernate - hibernate-core - ${hibernate.version} - true - - - commons-logging - commons-logging - - - ant - ant - - - - ant-launcher - - ant-launcher - - - c3p0 - c3p0 - - - - javax.security - - jacc - - - javax.servlet - javax.servlet-api - - - jboss - - jboss-cache - - - net.sf.ehcache - ehcache - - - asm - - asm-attrs - - - javax.transaction - jta - - - - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - 1.1.1 - runtime - true - - - org.springframework - spring-context - ${spring.version} - true - - - commons-logging - commons-logging - - - - - org.springframework - spring-web - ${spring.version} - - - commons-logging - commons-logging - - - - - org.springframework - spring-jdbc - ${spring.version} - true - - - commons-logging - commons-logging - - - - - org.springframework - spring-orm - ${spring.version} - true - - - commons-logging - commons-logging - - - - - org.springframework - spring-webmvc - ${spring.version} - true - - - commons-logging - commons-logging - - - - - org.springframework - spring-test - ${spring.version} - test - true - - - commons-logging - commons-logging - - - - - - - com.google.inject - guice - ${guice.version} - - - com.google.inject.extensions - guice-multibindings - ${guice.version} - - - com.google.inject.extensions - guice-servlet - ${guice.version} - - - org.quartz-scheduler - quartz - ${quartz.version} - true - - - com.github.mjeanroy - junit-servers-jetty-9 - ${junit.server.jetty.version} - - - - org.bouncycastle - bcprov-jdk18on - ${bouncycastle.version} - - - - - - - - - maven-javadoc-plugin - false - - - - - ]]> - - - - javadoc-aggregate - - aggregate-no-fork - - - - - - maven-jxr-plugin - 3.3.2 - - true - - - - - jxr-no-fork - - - - - - maven-pmd-plugin - 3.22.0 - - - maven-project-info-reports-plugin - - - false - - - - org.apache.rat - apache-rat-plugin - 0.16.1 - - false - - - - **/.externalToolBuilders/* - **/infinitest.filters - - velocity.log - CONTRIBUTING.md - **/README.md - **/*.json - **/spring.factories - **/org.springframework.boot.autoconfigure.AutoConfiguration.imports - **/spring.provides - **/*.iml - **/target/** - **/nb-configuration.xml - **/faces-config.NavData - **/org.mockito.plugins.MockMaker - .mvn/* - - - - - maven-surefire-report-plugin - - - - report-only - - - - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - - - Todo Work - - - todo - ignoreCase - - - FIXME - exact - - - - - Deprecated - - - @Deprecated - exact - - - - - - - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0 - - - - generate-no-fork - - - - - - org.jacoco - jacoco-maven-plugin - - - jacoco-aggregate - - report-integration - report - - - - - - - - - - fast - - true - true - - - install - - - - jdk8 - - [1.8,) - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceDirectory} - none - - --allow-script-in-comments - - - - - - - - - jdk11plus - - [11,) - - - - -XX:+IgnoreUnrecognizedVMOptions -Xshare:off - - - - docs - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-api-docs - - jar - - - - true - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - true - - - - - - apache-release - - - shiro.website - Apache Shiro Site - scm:svn:https://svn.apache.org/repos/asf/shiro/site/publish/static/${project.version} - - - - - - - net.nicoulaj.maven.plugins - checksum-maven-plugin - 1.11 - - - source-release-checksum - - artifacts - - - - - - SHA-512 - SHA3-512 - - false - - - - - - - nexus-staging - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - https://repository.apache.org - apache.releases.https - ${nexus.deploy.skip} - - - - - - - - owasp - - - - org.owasp - dependency-check-maven - false - - ${root.dir}/src/owasp-suppression.xml - - - - - aggregate - - false - - - - - - - - - org.owasp - dependency-check-maven - false - - ${root.dir}/src/owasp-suppression.xml - OWASP Dependency Check - - - - - aggregate - - - - - - - - - ci - - false - - - - - - - - - - - - - - - - - - - - - - skip-checkstyle - - - checkstyle.skip - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - none - - - - - - - - - - - apache.snapshots - https://repository.apache.org/snapshots - - false - - - false - - - - - - apache.snapshots - https://repository.apache.org/snapshots - - false - - - false - - - -
    diff --git a/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom.sha1 deleted file mode 100644 index 72cf5306a..000000000 --- a/code/arachne/org/apache/shiro/shiro-root/2.0.1/shiro-root-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e8545ea3a8c6ce1d3a8e881d238c7b825e4537e7 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-spring/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-spring/2.0.1/_remote.repositories deleted file mode 100644 index 477c2c494..000000000 --- a/code/arachne/org/apache/shiro/shiro-spring/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:21 EDT 2024 -shiro-spring-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom deleted file mode 100644 index 488791c1d..000000000 --- a/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - org.apache.shiro - shiro-support - 2.0.1 - - - 4.0.0 - shiro-spring - Apache Shiro :: Support :: Spring - bundle - - spring - - - - - org.apache.shiro - shiro-core - - - org.apache.shiro - shiro-web - - - javax.servlet - javax.servlet-api - provided - - - org.springframework - spring-context - provided - - - org.springframework - spring-web - true - - - org.springframework - spring-webmvc - true - - - - org.slf4j - jcl-over-slf4j - test - - - org.apache.logging.log4j - log4j-slf4j2-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - org.springframework - spring-test - test - - - org.apache.shiro - shiro-aspectj - test - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.spring - org.apache.shiro.spring*;version=${project.version} - - org.apache.shiro*;version="${shiro.osgi.importRange}", - org.aopalliance*;version="[1.0.0, 2.0.0)", - org.springframework*;version="[4.0.0, 6.0.0)", - * - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - org.apache.maven.plugins - maven-shade-plugin - - - - - diff --git a/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom.sha1 deleted file mode 100644 index b30cf8c53..000000000 --- a/code/arachne/org/apache/shiro/shiro-spring/2.0.1/shiro-spring-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -37b23606fb1079377fb7e077546ac25353ecb851 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-support/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-support/2.0.1/_remote.repositories deleted file mode 100644 index 27a50d38c..000000000 --- a/code/arachne/org/apache/shiro/shiro-support/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:21 EDT 2024 -shiro-support-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom deleted file mode 100644 index 5a05f6820..000000000 --- a/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - org.apache.shiro - shiro-root - 2.0.1 - - - 4.0.0 - shiro-support - Apache Shiro :: Support - pom - - - aspectj - jcache - ehcache - hazelcast - quartz - spring - guice - spring-boot - servlet-plugin - jaxrs - features - cdi - jakarta-ee - - diff --git a/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom.sha1 deleted file mode 100644 index 6cc4f255d..000000000 --- a/code/arachne/org/apache/shiro/shiro-support/2.0.1/shiro-support-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -33aec83a1c16a8a2fbcac2f17a92929fea372a86 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-web/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-web/1.13.0/_remote.repositories deleted file mode 100644 index 256f29813..000000000 --- a/code/arachne/org/apache/shiro/shiro-web/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:23 EDT 2024 -shiro-web-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom deleted file mode 100644 index 7744f7b6e..000000000 --- a/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - org.apache.shiro - shiro-root - 1.13.0 - - - 4.0.0 - shiro-web - Apache Shiro :: Web - bundle - - - - org.apache.shiro - shiro-core - - - javax.servlet.jsp - jsp-api - - - org.apache.taglibs - taglibs-standard-spec - - - org.apache.taglibs - taglibs-standard-impl - - - javax.servlet - javax.servlet-api - - - org.owasp.encoder - encoder - - - - org.apache.shiro - shiro-config-ogdl - tests - test-jar - test - - - org.apache.shiro - shiro-core - tests - test-jar - test - - - org.slf4j - jcl-over-slf4j - - - org.apache.logging.log4j - log4j-slf4j-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.web - org.apache.shiro.web*;version=${project.version} - - - org.apache.shiro*;version="${shiro.osgi.importRange}", - javax.servlet.jsp*;resolution:=optional, - * - - - - - - org.apache.maven.plugins - maven-shade-plugin - - - - - diff --git a/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom.sha1 deleted file mode 100644 index f151a1743..000000000 --- a/code/arachne/org/apache/shiro/shiro-web/1.13.0/shiro-web-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7cb89a4e3ed028eee8de5eb1f1fcc2f177422f3f \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-web/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-web/2.0.1/_remote.repositories deleted file mode 100644 index 93017a9c2..000000000 --- a/code/arachne/org/apache/shiro/shiro-web/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:21 EDT 2024 -shiro-web-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom deleted file mode 100644 index 6f5f5abe7..000000000 --- a/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - org.apache.shiro - shiro-root - 2.0.1 - - - 4.0.0 - shiro-web - Apache Shiro :: Web - bundle - - web - - - - - org.apache.shiro - shiro-core - - - javax.servlet.jsp - jsp-api - - - org.apache.taglibs - taglibs-standard-spec - - - org.apache.taglibs - taglibs-standard-impl - - - javax.servlet - javax.servlet-api - - - org.owasp.encoder - encoder - - - - org.apache.shiro - shiro-config-ogdl - tests - test-jar - test - - - org.apache.shiro - shiro-core - tests - test-jar - test - - - org.slf4j - jcl-over-slf4j - - - org.apache.logging.log4j - log4j-slf4j2-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - org.junit.jupiter - junit-jupiter-params - test - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.web - org.apache.shiro.web*;version=${project.version} - - - org.apache.shiro*;version="${shiro.osgi.importRange}", - javax.servlet.jsp*;resolution:=optional, - * - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - org.apache.maven.plugins - maven-shade-plugin - - - - - diff --git a/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom.sha1 deleted file mode 100644 index 82f9ce3da..000000000 --- a/code/arachne/org/apache/shiro/shiro-web/2.0.1/shiro-web-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -51501b418e408a00b990f5e6de5c14611b620cfb \ No newline at end of file diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/_remote.repositories b/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/_remote.repositories deleted file mode 100644 index fbf4399f3..000000000 --- a/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -tomcat-embed-core-10.1.20.pom>central= diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom b/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom deleted file mode 100644 index 2f3838cb4..000000000 --- a/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - 4.0.0 - org.apache.tomcat.embed - tomcat-embed-core - 10.1.20 - Core Tomcat implementation - https://tomcat.apache.org/ - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - org.apache.tomcat - tomcat-annotations-api - 10.1.20 - compile - - - diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom.sha1 b/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom.sha1 deleted file mode 100644 index f28122475..000000000 --- a/code/arachne/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1db714fe01b57f462728aa3556cc620e39fccf59 \ No newline at end of file diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/_remote.repositories b/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/_remote.repositories deleted file mode 100644 index 0cf743fd1..000000000 --- a/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -tomcat-embed-el-10.1.20.pom>central= diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom b/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom deleted file mode 100644 index 87ccba6e7..000000000 --- a/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom +++ /dev/null @@ -1,35 +0,0 @@ - - - - 4.0.0 - org.apache.tomcat.embed - tomcat-embed-el - 10.1.20 - Core Tomcat implementation - https://tomcat.apache.org/ - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom.sha1 b/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom.sha1 deleted file mode 100644 index de1d11472..000000000 --- a/code/arachne/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -974d438046df1e175440be5cf47b83acfcc06ee0 \ No newline at end of file diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/_remote.repositories b/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/_remote.repositories deleted file mode 100644 index 9203388ad..000000000 --- a/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:52 EDT 2024 -tomcat-embed-websocket-10.1.20.pom>central= diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom b/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom deleted file mode 100644 index f4320763c..000000000 --- a/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - 4.0.0 - org.apache.tomcat.embed - tomcat-embed-websocket - 10.1.20 - Core Tomcat implementation - https://tomcat.apache.org/ - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - org.apache.tomcat.embed - tomcat-embed-core - 10.1.20 - compile - - - diff --git a/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom.sha1 b/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom.sha1 deleted file mode 100644 index 8ef758f9e..000000000 --- a/code/arachne/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -493cc7e556bc2be3fbe6e867e0b0c51faf247b3d \ No newline at end of file diff --git a/code/arachne/org/apache/velocity/velocity-engine-core/2.3/_remote.repositories b/code/arachne/org/apache/velocity/velocity-engine-core/2.3/_remote.repositories deleted file mode 100644 index 316c585d5..000000000 --- a/code/arachne/org/apache/velocity/velocity-engine-core/2.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:41 EDT 2024 -velocity-engine-core-2.3.pom>central= diff --git a/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom b/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom deleted file mode 100644 index 5bf4f7611..000000000 --- a/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom +++ /dev/null @@ -1,293 +0,0 @@ - - - - velocity-engine-parent - org.apache.velocity - 2.3 - - 4.0.0 - velocity-engine-core - Apache Velocity - Engine - - - - maven-source-plugin - - - maven-resources-plugin - - - generate-parser-grammar - generate-sources - - copy-resources - - - false - - ${*} - - - - src/main/parser - true - - - ${project.build.directory}/parser - - - - expose-parser-grammar - process-resources - - copy-resources - - - - - src/main/parser - false - - - ${project.build.outputDirectory}/org/apache/velocity/runtime/parser - - - - - - maven-shade-plugin - 3.2.1 - - - shade - package - - shade - - - - - commons-io:commons-io - - - org.slf4j:slf4j-api - - - - - org.apache.commons.io - org.apache.velocity.shaded.commons.io - - - true - - - - - - org.codehaus.mojo - javacc-maven-plugin - 2.6 - - - jjtree-javacc - - jjtree-javacc - - - - Parser.jjt - - - - - - false - true - false - true - ${parser.debug} - ${parser.debug} - ${parser.debug} - ${maven.compiler.target} - true - org.apache.velocity.runtime.parser.node - ${project.build.directory}/parser - true - - - - com.google.code.maven-replacer-plugin - replacer - - - patch-parser-files - process-sources - - replace - - - ${project.build.directory}/generated-sources/javacc/org/apache/velocity/runtime/parser/TokenMgrError.java - - - static final int - public static final int - - - - - - - - org.codehaus.mojo - templating-maven-plugin - 1.0.0 - - - filter-src - - filter-sources - - - - - - org.apache.felix - maven-bundle-plugin - - - org.apache.velocity.* - !org.apache.commons.io, - * - - - - - maven-surefire-plugin - ${surefire.plugin.version} - - - integration-test - integration-test - - test - - - false - - - - - ${maven.test.skip} - - - test - ${test} - - - test.compare.dir - ${project.build.testOutputDirectory} - - - test.result.dir - ${project.build.directory}/results - - - org.slf4j.simpleLogger.defaultLogLevel - warn - - - org.slf4j.simpleLogger.logFile - ${project.build.directory}/velocity.log - - - test.jdbc.driver.className - ${test.jdbc.driver.className} - - - test.jdbc.uri - ${test.jdbc.uri} - - - test.jdbc.login - ${test.jdbc.login} - - - test.jdbc.password - ${test.jdbc.password} - - - - - - - - - org.apache.commons - commons-lang3 - 3.11 - compile - - - org.slf4j - slf4j-api - 1.7.30 - compile - - - junit - junit - 4.13.2 - test - - - hamcrest-core - org.hamcrest - - - - - org.hsqldb - hsqldb - 2.5.1 - test - - - org.slf4j - slf4j-simple - 1.7.30 - test - - - - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - true - Low - Max - src/etc/build/findbugs-exclude.xml - target/site - - - - - - 2.5.1 - Standard - jdbc:hsqldb:. - # - hsqldb - false - $ - sa - * - @ - org.hsqldb.jdbcDriver - org.hsqldb - org.apache.velocity.runtime.parser - - diff --git a/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom.sha1 b/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom.sha1 deleted file mode 100644 index e58f43443..000000000 --- a/code/arachne/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -108b42b3bd541f982b696293015ae192a3acb2a1 \ No newline at end of file diff --git a/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/_remote.repositories b/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/_remote.repositories deleted file mode 100644 index f81982007..000000000 --- a/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:42 EDT 2024 -velocity-engine-parent-2.3.pom>central= diff --git a/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom b/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom deleted file mode 100644 index edab8b660..000000000 --- a/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom +++ /dev/null @@ -1,371 +0,0 @@ - - - - - 4.0.0 - - - org.apache.velocity - velocity-master - 4 - - - - velocity-engine-parent - 2.3 - - Apache Velocity - http://velocity.apache.org/engine/devel/ - Apache Velocity is a general purpose template engine. - 2000 - pom - - - UTF-8 - 4.13.2 - 1.7.30 - 2.22.1 - https://issues.apache.org/jira/browse - 1.8 - 1.8 - - - - install - - - - maven-release-plugin - 3.0.0-M1 - - false - true - deploy - -Papache-release - - - - maven-jar-plugin - 3.1.2 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.felix - maven-bundle-plugin - 3.5.1 - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-resources-plugin - 3.1.0 - - - com.google.code.maven-replacer-plugin - replacer - 1.5.3 - - - org.apache.maven.plugins - maven-clean-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.1.0 - - false - - - - attach-sources - - jar-no-fork - - - - - - org.codehaus.mojo - extra-enforcer-rules - - - org.apache.maven.plugins - maven-assembly-plugin - 3.2.0 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - true - ${maven.compiler.source} - ${maven.compiler.target} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.1.1 - - - none - - - - aggregate - - aggregate - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-bytecode-version - - enforce - - - - - ${maven.compiler.target} - - - [1.8,) - - - true - - - - ban-known-bad-maven-versions - - enforce - - - - - [3.0.5,) - Maven minimal expected version is 3.0.5. - - - - - - - - org.codehaus.mojo - extra-enforcer-rules - 1.3 - - - - - - - - - velocity.apache.org - scpexe://people.apache.org/www/velocity.apache.org/engine/devel/ - - - - - - scm:git:https://gitbox.apache.org/repos/asf/velocity-engine.git - scm:git:https://gitbox.apache.org/repos/asf/velocity-engine.git - https://gitbox.apache.org/repos/asf?p=velocity-engine.git - 2.3-RC2 - - - - JIRA - ${jira.browse.url}/VELOCITY - - - velocity-engine-core - velocity-engine-examples - velocity-engine-scripting - velocity-custom-parser-example - spring-velocity-support - - - - - - Adrian Tarau - - - Aki Nieminen - - - Alexey Pachenko - - - Anil K. Vijendran - - - Attila Szegedi - - - Bob McWhirter - - - Byron Foster - - - Candid Dauth - - - Christoph Reck - - - Darren Cruse - - - Dave Bryson - - - David Kinnvall - - - Dawid Weiss - - - Dishara Wijewardana - - - Eelco Hillenius - - - Fedor Karpelevitch - - - Felipe Maschio - - - Gal Shachor - - - Hervé Boutemy - - - Jarkko Viinamäki - - - Jeff Bowden - - - Jorgen Rydenius - - - Jose Alberto Fernandez - - - Kasper Nielsen - - - Kent Johnson - - - Kyle F. Downey - - - Leon Messerschmidt - - - Llewellyn Falco - - - Matt Raible - - - Matt Ryall - - - Matthijs Lambooy - - - Oswaldo Hernandez - - - Paulo Gaspar - - - Peter Romianowski - - - Robert Burrell Donkin - - - Robert Fuller - - - Sam Ruby - - - Sean Legassick - - - Serge Knystautas - - - Stephane Bailliez - - - Stephen Habermann - - - Sylwester Lachiewicz - - - diff --git a/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom.sha1 b/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom.sha1 deleted file mode 100644 index 0337c559d..000000000 --- a/code/arachne/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a19e108639e1a877dfd8cd204756957638b817a7 \ No newline at end of file diff --git a/code/arachne/org/apache/velocity/velocity-master/4/_remote.repositories b/code/arachne/org/apache/velocity/velocity-master/4/_remote.repositories deleted file mode 100644 index dfbb0ae2f..000000000 --- a/code/arachne/org/apache/velocity/velocity-master/4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:42 EDT 2024 -velocity-master-4.pom>central= diff --git a/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom b/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom deleted file mode 100644 index e2de7f8a3..000000000 --- a/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom +++ /dev/null @@ -1,246 +0,0 @@ - - - - 4.0.0 - - - org.apache - apache - 23 - - - org.apache.velocity - velocity-master - 4 - pom - - Velocity - Master POM - Master POM for Velocity - https://velocity.apache.org/ - 2000 - - - - Claude Brisson - cbrisson - http://claude.brisson.info - - Java developer - PMC Member - - - - Nathan Bubna - nbubna - nathan@esha.com - ESHA Research - - Java developer - PMC Chair - - - - Will Glass-Husain - wglass - wglass@forio.com - Forio Business Simulations - - Java developer - PMC Member - - - - Marinó A. Jónsson - marino - marinoj@centrum.is - - Java developer - PMC Member - - - - Geir Magnusson Jr. - geirm - geirm@optonline.net - Independent (DVSL Maven) - - Java developer - PMC Member - - - - Daniel Rall - dlr - dlr@finemaltcoding.com - CollabNet, Inc. - - Java developer - PMC Member - - - - Henning P. Schmiedehausen - henning - The Henning Schmiedehausen Organization - - Java developer - PMC Member - - -7 - - - Jon S. Stevens - jons - - Emeritus - - - - Jason van Zyl - jvanzyl - - Emeritus - - - - Christopher Schultz - schultz - - Java developer - - -5 - - - Sergiu Dumitriu - sdumitriu - http://purl.org/net/sergiu - -4 - - PMC Member - - - - Dishara Wijewardana - dishara - - Java developer - - - - Mike Kienenberger - mkienenb - - Java developer - - - - Michael Osipov - michaelo - michaelo@apache.org - - Java developer - PMC Member - - Europe/Berlin - - - - - - general - general-subscribe@velocity.apache.org - general-unsubscribe@velocity.apache.org - general@velocity.apache.org - https://lists.apache.org/list.html?general@velocity.apache.org - - - user - user-subscribe@velocity.apache.org - user-unsubscribe@velocity.apache.org - user@velocity.apache.org - https://lists.apache.org/list.html?user@velocity.apache.org - - - dev - dev-subscribe@velocity.apache.org - dev-unsubscribe@velocity.apache.org - dev@velocity.apache.org - https://lists.apache.org/list.html?dev@velocity.apache.org - - - commits - commits-subscribe@velocity.apache.org - commits-unsubscribe@velocity.apache.org - https://lists.apache.org/list.html?commits@velocity.apache.org - - - - - scm:git:https://gitbox.apache.org/repos/asf/velocity-master.git - scm:git:https://gitbox.apache.org/repos/asf/velocity-master.git - https://gitbox.apache.org/repos/asf?p=velocity-master.git - velocity-master-4 - - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M1 - - true - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - enforce-bytecode-version - - enforce - - - - - ${maven.compiler.target} - - - true - - - - - - org.codehaus.mojo - extra-enforcer-rules - 1.3 - - - - - - - diff --git a/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom.sha1 b/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom.sha1 deleted file mode 100644 index f94791010..000000000 --- a/code/arachne/org/apache/velocity/velocity-master/4/velocity-master-4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d1cafcce1773b4e8762a527bf0a9afb52b1b687b \ No newline at end of file diff --git a/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/_remote.repositories b/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/_remote.repositories deleted file mode 100644 index c66a84bc5..000000000 --- a/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:59 EDT 2024 -xmlbeans-2.6.0.pom>central= diff --git a/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom b/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom deleted file mode 100644 index 516f6dc90..000000000 --- a/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom +++ /dev/null @@ -1,99 +0,0 @@ - - 4.0.0 - org.apache.xmlbeans - xmlbeans - 2.6.0 - - XmlBeans - XmlBeans main jar - http://xmlbeans.apache.org - - - jira - http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10436 - - - - - XmlBeans User List - user-subscribe@xmlbeans.apache.org - users-unsubscribe@xmlbeans.apache.org - http://mail-archives.apache.org/mod_mbox/xmlbeans-user/ - - - XmlBeans Developer List - dev-subscribe@xmlbeans.apache.org - dev-unsubscribe@xmlbeans.apache.org - http://mail-archives.apache.org/mod_mbox/xmlbeans-dev/ - - - Source Control List - commits-subscribe@xmlbeans.apache.org - commits-unsubscribe@xmlbeans.apache.org - http://mail-archives.apache.org/mod_mbox/xmlbeans-commits/ - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:svn:https://svn.apache.org/repos/asf/xmlbeans/ - scm:svn:https://${maven.username}@svn.apache.org/repos/asf/xmlbeans/ - https://svn.apache.org/repos/asf/xmlbeans/ - - - - XmlBeans - http://xmlbeans.apache.org/ - - - - - Cezar Andrei - cezar - cezar.andrei@no#spam#!gma|l.com - - - - - Radu Preotiuc - radup - radupr@nos#pam.gm@il.com - - - - Radu Preotiuc - radup - radu.preotiuc-pietro@nos#pam.bea.com - - - - Wing Yew Poon - wpoon - wing-yew.poon@nos#pam.oracle.com - - - - Jacob Danner - jdanner - jacob.danner@nos#pam.oracle.com - - - - - - - - stax - stax-api - 1.0.1 - - - - diff --git a/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom.sha1 b/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom.sha1 deleted file mode 100644 index 26b60c5a4..000000000 --- a/code/arachne/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f1d5251b50228c13f6ee0ee9a45f9cac71d3f2cf \ No newline at end of file diff --git a/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/_remote.repositories b/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/_remote.repositories deleted file mode 100644 index 66cb33017..000000000 --- a/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:10 EDT 2024 -cas-client-core-4.0.4.pom>central= diff --git a/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom b/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom deleted file mode 100644 index ec06f2930..000000000 --- a/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom +++ /dev/null @@ -1,106 +0,0 @@ - - - - org.apereo.cas.client - 4.0.4 - cas-client - - 4.0.0 - cas-client-core - jar - Apereo CAS Client for Java - Core - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - test-jar - - - - - - - - - - xml-security - xmlsec - ${xmlsec.version} - runtime - true - - - - com.nimbusds - nimbus-jose-jwt - - - - com.fasterxml.jackson.core - jackson-databind - - - - org.springframework - spring-beans - ${spring.version} - provided - - - - org.springframework - spring-web - provided - - - - org.springframework - spring-test - test - - - - org.springframework - spring-core - test - - - - org.springframework - spring-context - test - - - - log4j - log4j - test - - - - diff --git a/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom.sha1 b/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom.sha1 deleted file mode 100644 index 7c129e0a3..000000000 --- a/code/arachne/org/apereo/cas/client/cas-client-core/4.0.4/cas-client-core-4.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c9737e420f307d060e061531623be7f9bd64408d \ No newline at end of file diff --git a/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/_remote.repositories b/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/_remote.repositories deleted file mode 100644 index 455100e4e..000000000 --- a/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:10 EDT 2024 -cas-client-support-saml-4.0.4.pom>central= diff --git a/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom b/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom deleted file mode 100644 index 68b0c04f2..000000000 --- a/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom +++ /dev/null @@ -1,58 +0,0 @@ - - - - org.apereo.cas.client - 4.0.4 - cas-client - - 4.0.0 - cas-client-support-saml - jar - Apereo CAS Client for Java - SAML Protocol Support - - - - org.apereo.cas.client - cas-client-core - ${project.version} - - - - - org.apereo.cas.client - cas-client-core - ${project.version} - test-jar - test - - - org.springframework - spring-test - test - - - org.springframework - spring-core - test - - - diff --git a/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom.sha1 b/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom.sha1 deleted file mode 100644 index a7107f683..000000000 --- a/code/arachne/org/apereo/cas/client/cas-client-support-saml/4.0.4/cas-client-support-saml-4.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d1469f59f6c3f672ead7c9b810fb417401bf4506 \ No newline at end of file diff --git a/code/arachne/org/apereo/cas/client/cas-client/4.0.4/_remote.repositories b/code/arachne/org/apereo/cas/client/cas-client/4.0.4/_remote.repositories deleted file mode 100644 index b961331da..000000000 --- a/code/arachne/org/apereo/cas/client/cas-client/4.0.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:10 EDT 2024 -cas-client-4.0.4.pom>central= diff --git a/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom b/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom deleted file mode 100644 index b391a7070..000000000 --- a/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom +++ /dev/null @@ -1,273 +0,0 @@ - - - - org.sonatype.oss - oss-parent - 9 - - 4.0.0 - org.apereo.cas.client - 4.0.4 - cas-client - pom - - Apereo CAS Client for Java - - Apereo CAS Client for Java is the integration point for applications that want to speak with a CAS - server, either via the CAS 1.0 or CAS 2.0/3.0 protocol. - - https://www.apereo.org/cas - - - scm:git:git@github.com:apereo/java-cas-client.git - scm:git:git@github.com:apereo/java-cas-client.git - https://github.com/apereo/java-cas-client - - - - - sonatype-releases - https://oss.sonatype.org/content/repositories/releases/ - - - spring-milestones - https://repo.spring.io/milestone - - - snapshots-snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - - 2006 - - - Apereo - https://www.apereo.org - - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${maven.assembly.plugin.version} - - - ${basedir}/assembly.xml - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven.compiler.plugin.version} - - ${project.build.sourceVersion} - ${project.build.targetVersion} - - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven.surefire.plugin.version} - - - **/*Tests* - - false - 1 - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${maven.enforcer.plugin.version} - - - enforce-banned-dependencies - - enforce - - - - - - commons-logging - javax.servlet-api - javax.xml.bind - - - - true - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven.javadoc.plugin.version} - - none - - - - - - - - - - org.springframework - spring-core - ${spring.version} - - - commons-logging - commons-logging - - - - - - org.springframework - spring-context - ${spring.version} - - - - org.springframework - spring-web - ${spring.version} - - - - org.springframework - spring-test - ${spring.version} - test - - - - log4j - log4j - test - ${log4j.version} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - com.nimbusds - nimbus-jose-jwt - ${nimbus.jose.jwt.version} - true - - - - - - - junit - junit - ${junit4.version} - test - - - org.slf4j - slf4j-api - ${slf4j.version} - compile - - - commons-codec - commons-codec - ${commons.codec.version} - compile - - - org.bouncycastle - bcpkix-jdk15on - ${bouncycastle.version} - compile - - - jakarta.servlet - jakarta.servlet-api - ${javax.servlet.version} - jar - provided - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - test - - - org.slf4j - slf4j-simple - ${slf4j.version} - test - - - - - cas-client-core - cas-client-support-distributed-ehcache - cas-client-support-distributed-memcached - cas-client-support-saml - cas-client-support-springboot - - - - 4.13.2 - 6.1.2 - 3.10.8 - 2.0.11 - 2.16.1 - 6.0.0 - 1.16.0 - 1.2.17 - 1.3.0 - 1.70 - 3.2.1 - 6.2.1 - 9.37.3 - 3.12.1 - 3.4.1 - 3.2.5 - 3.6.0 - 3.6.3 - 3.3.0 - - 17 - 17 - UTF-8 - - diff --git a/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom.sha1 b/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom.sha1 deleted file mode 100644 index 9ddd38961..000000000 --- a/code/arachne/org/apereo/cas/client/cas-client/4.0.4/cas-client-4.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -65b023fe37dfb7b918da1218a67b40c6b6f74e1c \ No newline at end of file diff --git a/code/arachne/org/apiguardian/apiguardian-api/1.1.2/_remote.repositories b/code/arachne/org/apiguardian/apiguardian-api/1.1.2/_remote.repositories deleted file mode 100644 index e34f3a8f8..000000000 --- a/code/arachne/org/apiguardian/apiguardian-api/1.1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:09 EDT 2024 -apiguardian-api-1.1.2.pom>central= diff --git a/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom b/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom deleted file mode 100644 index d0c8ac109..000000000 --- a/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - 4.0.0 - org.apiguardian - apiguardian-api - 1.1.2 - org.apiguardian:apiguardian-api - @API Guardian - https://github.com/apiguardian-team/apiguardian - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - apiguardian - @API Guardian Team - team@apiguardian.org - - - - scm:git:git://github.com/apiguardian-team/apiguardian.git - scm:git:git://github.com/apiguardian-team/apiguardian.git - https://github.com/apiguardian-team/apiguardian - - diff --git a/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom.sha1 b/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom.sha1 deleted file mode 100644 index 0a0ab24fc..000000000 --- a/code/arachne/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce9568cec632f7c99fb26d13c4d5c89517349f6b \ No newline at end of file diff --git a/code/arachne/org/aspectj/aspectjrt/1.9.22/_remote.repositories b/code/arachne/org/aspectj/aspectjrt/1.9.22/_remote.repositories deleted file mode 100644 index 728a65cd8..000000000 --- a/code/arachne/org/aspectj/aspectjrt/1.9.22/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:13 EDT 2024 -aspectjrt-1.9.22.pom>central= diff --git a/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom b/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom deleted file mode 100644 index 11c3647f6..000000000 --- a/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom +++ /dev/null @@ -1,60 +0,0 @@ - - - 4.0.0 - org.aspectj - aspectjrt - 1.9.22 - AspectJ Runtime - The AspectJ runtime is a small library necessary to run Java programs enhanced by AspectJ aspects during a previous - compile-time or post-compile-time (binary weaving) build step. - https://www.eclipse.org/aspectj/ - - - Eclipse Public License - v 2.0 - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt - repo - - - - - aclement - Andy Clement - aclement@vmware.com - - - kriegaex - Alexander Kriegisch - kriegaex@aspectj.dev - - - - scm:git:https://github.com/eclipse/org.aspectj.git - scm:git:ssh://git@github.com:eclipse/org.aspectj.git - https://github.com/eclipse/org.aspectj - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - aspectj-site-local - file://C:\Users\alexa\Documents\java-src\AspectJ/aj-build/dist/site/aspectjrt - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - true - - - - diff --git a/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom.sha1 b/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom.sha1 deleted file mode 100644 index 524e372fc..000000000 --- a/code/arachne/org/aspectj/aspectjrt/1.9.22/aspectjrt-1.9.22.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ac8c7b3b5b91b334deada1a6c7d4b114f9fd9d41 \ No newline at end of file diff --git a/code/arachne/org/aspectj/aspectjweaver/1.9.22/_remote.repositories b/code/arachne/org/aspectj/aspectjweaver/1.9.22/_remote.repositories deleted file mode 100644 index 26d24b0ea..000000000 --- a/code/arachne/org/aspectj/aspectjweaver/1.9.22/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:01 EDT 2024 -aspectjweaver-1.9.22.pom>central= diff --git a/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom b/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom deleted file mode 100644 index 8d7b558f6..000000000 --- a/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom +++ /dev/null @@ -1,60 +0,0 @@ - - - 4.0.0 - org.aspectj - aspectjweaver - 1.9.22 - AspectJ Weaver - The AspectJ weaver applies aspects to Java classes. It can be used as a Java agent in order to apply load-time - weaving (LTW) during class-loading and also contains the AspectJ runtime classes. - https://www.eclipse.org/aspectj/ - - - Eclipse Public License - v 2.0 - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt - repo - - - - - aclement - Andy Clement - aclement@vmware.com - - - kriegaex - Alexander Kriegisch - kriegaex@aspectj.dev - - - - scm:git:https://github.com/eclipse/org.aspectj.git - scm:git:ssh://git@github.com:eclipse/org.aspectj.git - https://github.com/eclipse/org.aspectj - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - aspectj-site-local - file://C:\Users\alexa\Documents\java-src\AspectJ/aj-build/dist/site/aspectjweaver - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - true - - - - diff --git a/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom.sha1 b/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom.sha1 deleted file mode 100644 index 8e0dd9c20..000000000 --- a/code/arachne/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e65018322401e49f2ab948ff270f243d0a0d91d8 \ No newline at end of file diff --git a/code/arachne/org/assertj/assertj-bom/3.24.2/_remote.repositories b/code/arachne/org/assertj/assertj-bom/3.24.2/_remote.repositories deleted file mode 100644 index 779b59b39..000000000 --- a/code/arachne/org/assertj/assertj-bom/3.24.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:21 EDT 2024 -assertj-bom-3.24.2.pom>ohdsi= diff --git a/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom b/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom deleted file mode 100644 index 152bba5ab..000000000 --- a/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom +++ /dev/null @@ -1,124 +0,0 @@ - - - 4.0.0 - org.assertj - assertj-bom - 3.24.2 - pom - AssertJ (Bill of Materials) - This Bill of Materials POM can be used to ease dependency management when referencing multiple AssertJ artifacts using Gradle or Maven. - https://assertj.github.io/doc/ - - AssertJ - https://assertj.github.io/doc/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - joel-costigliola - Joel Costigliola - joel.costigliola at gmail.com - - Owner - Developer - - - - scordio - Stefano Cordio - - Developer - - - - PascalSchumacher - Pascal Schumacher - - Developer - - - - epeee - Erhard Pointl - - Developer - - - - croesch - Christian Rösch - - Developer - - - - VanRoy - Julien Roy - - Developer - - - - regis1512 - Régis Pouiller - - Developer - - - - fbiville - Florent Biville - - Developer - - - - Patouche - Patrick Allain - - Developer - - - - - scm:git:https://github.com/assertj/assertj.git/assertj-bom - scm:git:https://github.com/assertj/assertj.git/assertj-bom - assertj-build-3.24.2 - https://github.com/assertj/assertj/assertj-bom - - - GitHub - https://github.com/assertj/assertj/issues - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - - - org.assertj - assertj-core - 3.24.2 - - - org.assertj - assertj-guava - 3.24.2 - - - - diff --git a/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.lastUpdated b/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.lastUpdated deleted file mode 100644 index 8b0f5aab4..000000000 --- a/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:21 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.assertj\:assertj-bom\:pom\:3.24.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139800192 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139800575 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139801183 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139801523 diff --git a/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.sha1 b/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.sha1 deleted file mode 100644 index ff4270bd6..000000000 --- a/code/arachne/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d59e450a34f2dfdca03d035dbe1cb5fb132819de \ No newline at end of file diff --git a/code/arachne/org/assertj/assertj-build/3.24.2/_remote.repositories b/code/arachne/org/assertj/assertj-build/3.24.2/_remote.repositories deleted file mode 100644 index 7ef98afc0..000000000 --- a/code/arachne/org/assertj/assertj-build/3.24.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:08 EDT 2024 -assertj-build-3.24.2.pom>central= diff --git a/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom b/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom deleted file mode 100644 index 81af8ae25..000000000 --- a/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom +++ /dev/null @@ -1,277 +0,0 @@ - - - 4.0.0 - - org.assertj - assertj-build - 3.24.2 - pom - - AssertJ Build - AssertJ Build - ${project.organization.url} - - AssertJ - https://assertj.github.io/doc/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - joel-costigliola - Joel Costigliola - joel.costigliola at gmail.com - - Owner - Developer - - - - scordio - Stefano Cordio - - Developer - - - - PascalSchumacher - Pascal Schumacher - - Developer - - - - epeee - Erhard Pointl - - Developer - - - - croesch - Christian Rösch - - Developer - - - - VanRoy - Julien Roy - - Developer - - - - regis1512 - Régis Pouiller - - Developer - - - - fbiville - Florent Biville - - Developer - - - - Patouche - Patrick Allain - - Developer - - - - - - assertj-bom - assertj-parent - assertj-core - assertj-guava - assertj-tests - - - - scm:git:https://github.com/assertj/assertj.git - scm:git:https://github.com/assertj/assertj.git - https://github.com/assertj/assertj - assertj-build-3.24.2 - - - GitHub - https://github.com/assertj/assertj/issues - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - - - 4.1 - 3.1.0 - 3.0.1 - 2.5.3 - 1.6.13 - 3.9.1.2184 - - - - - - - com.mycila - license-maven-plugin - ${license-maven-plugin.version} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${maven-enforcer-plugin.version} - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven-gpg-plugin.version} - - - org.apache.maven.plugins - maven-release-plugin - ${maven-release-plugin.version} - - true - false - release - deploy - - - - org.sonarsource.scanner.maven - sonar-maven-plugin - ${sonar-maven-plugin.version} - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${nexus-staging-maven-plugin.version} - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - com.mycila - license-maven-plugin - - - - - 2012 - 2023 - - true - - src/**/*.java - - - src/ide-support/**/*.* - - - SLASHSTAR_STYLE - - Some files do not have the expected license header. Run license:format to update them. - - - - - check - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [3.5.0,) - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - false - - - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - - diff --git a/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom.sha1 b/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom.sha1 deleted file mode 100644 index 5aa2bc3b6..000000000 --- a/code/arachne/org/assertj/assertj-build/3.24.2/assertj-build-3.24.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2f2c94bb193874bb72e7f7f6ed85b3e4bc8fa5dc \ No newline at end of file diff --git a/code/arachne/org/assertj/assertj-core/3.24.2/_remote.repositories b/code/arachne/org/assertj/assertj-core/3.24.2/_remote.repositories deleted file mode 100644 index a6178d211..000000000 --- a/code/arachne/org/assertj/assertj-core/3.24.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:08 EDT 2024 -assertj-core-3.24.2.pom>central= diff --git a/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom b/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom deleted file mode 100644 index 34f34255c..000000000 --- a/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom +++ /dev/null @@ -1,535 +0,0 @@ - - - 4.0.0 - - - org.assertj - assertj-parent - 3.24.2 - ../assertj-parent - - - assertj-core - - AssertJ Core - Rich and fluent assertions for testing in Java - ${project.organization.url}#${project.artifactId} - - - - -Dfile.encoding=${project.build.sourceEncoding} - -Dnet.bytebuddy.experimental=true - --add-opens=java.base/java.lang=ALL-UNNAMED - --add-opens=java.base/java.math=ALL-UNNAMED - --add-opens=java.base/java.util=ALL-UNNAMED - --add-opens=java.base/sun.nio.fs=ALL-UNNAMED - - -html5 --allow-script-in-comments - - 1.12.21 - 2.2 - - 1.0.3 - - - - - - net.bytebuddy - byte-buddy - ${byte-buddy.version} - - - net.bytebuddy - byte-buddy-agent - ${byte-buddy.version} - - - org.hamcrest - hamcrest - ${hamcrest.version} - - - org.jboss.logging - jboss-logging - 3.5.0.Final - - - - - - - net.bytebuddy - byte-buddy - - - - junit - junit - provided - true - - - - org.hamcrest - hamcrest-core - - - - - org.hamcrest - hamcrest - provided - true - - - org.junit.jupiter - junit-jupiter-api - provided - true - - - org.opentest4j - opentest4j - provided - true - - - - commons-io - commons-io - 2.11.0 - test - - - com.fasterxml.jackson.core - jackson-databind - 2.14.1 - test - - - com.google.guava - guava - 31.1-jre - test - - - jakarta.ws.rs - jakarta.ws.rs-api - 3.1.0 - test - - - nl.jqno.equalsverifier - equalsverifier - 3.12.3 - test - - - org.apache.commons - commons-collections4 - 4.4 - test - - - org.apache.commons - commons-lang3 - 3.12.0 - test - - - org.hibernate.orm - hibernate-core - 6.1.6.Final - test - - - jakarta.inject - jakarta.inject-api - - - - - org.junit-pioneer - junit-pioneer - 1.9.1 - test - - - org.junit.platform - junit-platform-testkit - test - - - org.assertj - assertj-core - - - - - org.junit.jupiter - junit-jupiter - test - - - - org.junit.vintage - junit-vintage-engine - test - - - org.mockito - mockito-core - test - - - org.mockito - mockito-junit-jupiter - test - - - org.springframework - spring-core - 5.3.24 - test - - - - - - - - net.alchim31.maven - yuicompressor-maven-plugin - 1.5.1 - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - com.mycila - license-maven-plugin - [2.6,) - - format - - - - - - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - junit - junit - ${junit.version} - - - org.hamcrest - hamcrest - ${hamcrest.version} - - - org.junit.jupiter - junit-jupiter-api - ${junit-jupiter.version} - - - org.opentest4j - opentest4j - ${opentest4j.version} - - - - - org.assertj.core.internal - - - - - METHOD_NEW_DEFAULT - true - true - - - - true - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java-and-dependencies - - enforce - - - - - - net.bytebuddy:byte-buddy - - - org.assertj:assertj-core - org.hamcrest:hamcrest-core - *:*:*:jar:compile - - - - - [17,) - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - true - - - - jdk9 - - compile - - - 9 - - ${project.basedir}/src/main/java9 - - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0-M7 - - false - - org/assertj/core/internal/objects/Objects_assertHasOnlyFields_Test* - - random - - - - - false - - - - false - false - true - true - - - - false - false - true - true - true - - - - - org.jacoco - jacoco-maven-plugin - - - - BUNDLE - - - CLASS - COVEREDRATIO - 0.98 - - - - - - - - biz.aQute.bnd - bnd-maven-plugin - - - jar - - jar - - - - - - - - - net.alchim31.maven - yuicompressor-maven-plugin - - - generate-sources - - compress - - - - - src/main/javadoc - ${project.build.directory}/javadoc-stylesheet - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - en_US - - 8 - - ${project.build.directory}/javadoc-stylesheet/assertj-javadoc-min.css - - ${javadocAdditionalOptions} - true - - - - ]]> - - - - org.pitest - pitest-maven - 1.10.4 - - - org.pitest - pitest-junit5-plugin - 1.1.1 - - - com.groupcdg - pitest-git-plugin - ${cdg.pitest.version} - - - - 3 - false - false - - - - org.sonatype.plugins - nexus-staging-maven-plugin - - - - - - - pitest - - - - - - com.groupcdg - pitest-git-maven-plugin - ${cdg.pitest.version} - - - - - - org.pitest - pitest-maven - - - pitest - test-compile - - mutationCoverage - - - - - - - - - japicmp-branch - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - ${japicmp.oldVersion.basedir}/target/${project.build.finalName}.${project.packaging} - - - - - - - - - - - diff --git a/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom.sha1 b/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom.sha1 deleted file mode 100644 index 80ae9c5b3..000000000 --- a/code/arachne/org/assertj/assertj-core/3.24.2/assertj-core-3.24.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce6d61d65a4c201608fbf7e1ded6a6118b13fbf5 \ No newline at end of file diff --git a/code/arachne/org/assertj/assertj-parent/3.24.2/_remote.repositories b/code/arachne/org/assertj/assertj-parent/3.24.2/_remote.repositories deleted file mode 100644 index 6c4b641bc..000000000 --- a/code/arachne/org/assertj/assertj-parent/3.24.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:08 EDT 2024 -assertj-parent-3.24.2.pom>central= diff --git a/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom b/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom deleted file mode 100644 index 9e2cea5dd..000000000 --- a/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom +++ /dev/null @@ -1,358 +0,0 @@ - - - 4.0.0 - - - org.assertj - assertj-build - 3.24.2 - - - assertj-parent - pom - - AssertJ Parent - Parent POM for all AssertJ modules - - - -Xdoclint:none - 8 - true - ${java.version} - ${java.version} - ${java.version} - UTF-8 - UTF-8 - - 4.13.2 - 5.9.1 - 4.11.0 - 1.2.0 - - 6.4.0 - 0.8.8 - 0.17.1 - 3.2.0 - 3.10.1 - 3.1.1 - 3.0.0 - 3.1.0 - 3.3.0 - 3.4.1 - 3.4.1 - 3.3.0 - 3.12.1 - 3.2.1 - 2.22.2 - 2.22.2 - 4.7.3.0 - 2.14.2 - - - - - - junit - junit - ${junit.version} - - - org.junit - junit-bom - ${junit-jupiter.version} - pom - import - - - org.mockito - mockito-bom - ${mockito.version} - pom - import - - - org.opentest4j - opentest4j - ${opentest4j.version} - - - - - - clean install - - - - biz.aQute.bnd - bnd-maven-plugin - ${bnd.version} - true - - - biz.aQute.bnd - bnd-resolver-maven-plugin - ${bnd.version} - - - biz.aQute.bnd - bnd-testing-maven-plugin - ${bnd.version} - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${japicmp-maven-plugin.version} - - - true - true - true - - true - - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs-maven-plugin.version} - - - org.jacoco - jacoco-maven-plugin - ${jacoco-maven-plugin.version} - - - - - BUNDLE - - - CLASS - COVEREDRATIO - 1 - - - INSTRUCTION - COVEREDRATIO - 0.80 - - - METHOD - COVEREDRATIO - 0.80 - - - BRANCH - COVEREDRATIO - 0.80 - - - COMPLEXITY - COVEREDRATIO - 0.80 - - - LINE - COVEREDRATIO - 0.80 - - - - - - - - prepare-agent - - prepare-agent - - - - jacoco-report - - report - - - - default-check - - check - - - - - - org.apache.maven.plugins - maven-clean-plugin - ${maven-clean-plugin.version} - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - - org.apache.maven.plugins - maven-deploy-plugin - ${maven-deploy-plugin.version} - - - org.apache.maven.plugins - maven-install-plugin - ${maven-install-plugin.version} - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-reports-plugin.version} - - - org.apache.maven.plugins - maven-resources-plugin - ${maven-resources-plugin.version} - - - org.apache.maven.plugins - maven-site-plugin - ${maven-site-plugin.version} - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${maven-surefire-report-plugin.version} - - - org.codehaus.mojo - versions-maven-plugin - ${versions-maven-plugin.version} - - - - - - org.apache.maven.plugins - maven-clean-plugin - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-deploy-plugin - - - org.apache.maven.plugins - maven-install-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - org.apache.maven.plugins - maven-resources-plugin - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Test.java - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - false - - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - Max - - - - org.apache.maven.plugins - maven-site-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.codehaus.mojo - versions-maven-plugin - - - - - - - release - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - - - - - diff --git a/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom.sha1 b/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom.sha1 deleted file mode 100644 index c0138fceb..000000000 --- a/code/arachne/org/assertj/assertj-parent/3.24.2/assertj-parent-3.24.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cf6a7c3d297703dc37abbb84873638b035d59f64 \ No newline at end of file diff --git a/code/arachne/org/awaitility/awaitility-parent/4.2.1/_remote.repositories b/code/arachne/org/awaitility/awaitility-parent/4.2.1/_remote.repositories deleted file mode 100644 index 07d326ab9..000000000 --- a/code/arachne/org/awaitility/awaitility-parent/4.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:08 EDT 2024 -awaitility-parent-4.2.1.pom>central= diff --git a/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom b/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom deleted file mode 100644 index e232a723d..000000000 --- a/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom +++ /dev/null @@ -1,297 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 9 - - - org.awaitility - awaitility-parent - pom - 4.2.1 - - http://github.com/awaitility/awaitility - Awaitility Parent POM - A Java DSL for synchronizing asynchronous operations - 2010 - - - GitHub Issue Tracking - - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - Johan Haleby - johan.haleby - Parkster - https://www.parkster.se - - Developer - - - - - - http://github.com/awaitility/awaitility/tree/${scm.branch} - scm:git:git://github.com/awaitility/awaitility.git - scm:git:ssh://git@github.com/awaitility/awaitility.git - awaitility-4.2.1 - - - - Awaitility mailing-list - http://groups.google.com/group/awaitility/topics - - - - - ${maven.version} - - - - 2.1 - 1.8 - ${java.version} - ${java.version} - 2.10.4 - 3.5.0 - UTF-8 - master - 1.8.0-beta4 - plain - false - 3.2.5 - - - - awaitility - awaitility-scala - awaitility-groovy - awaitility-test-support - - - - - - - maven-compiler-plugin - 3.8.1 - - - maven-jar-plugin - 2.4 - - - maven-shade-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - - - - maven-release-plugin - 2.5 - - true - - - - maven-compiler-plugin - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - ${project.build.sourceEncoding} - false - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.18 - - - org.codehaus.mojo.signature - java18 - 1.0 - - - - - check-java-compatibility - test - - check - - - - - - - maven-dependency-plugin - 3.0.1 - - - maven-help-plugin - 2.2 - - - org.codehaus.mojo - versions-maven-plugin - 2.3 - - - - - - - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.slf4j - slf4j-jdk14 - ${slf4j.version} - - - - org.hamcrest - hamcrest - ${hamcrest.version} - - - junit - junit - 4.13.2 - - - org.hamcrest - hamcrest-core - - - - - org.awaitility - awaitility-test-support - ${project.version} - - - org.assertj - assertj-core - 3.21.0 - - - - - - - kotlin - - awaitility-kotlin - - - - osgi-tests - - awaitility-osgi-test - - - - modern-jvm - - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - --add-opens java.base/java.lang=ALL-UNNAMED - - - - - - - - - release - - awaitility-kotlin - awaitility-osgi-test - - - - - maven-source-plugin - 2.2.1 - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - ${project.build.sourceEncoding} - false - - - - attach-javadocs - - jar - - - - - - - - - - diff --git a/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom.sha1 b/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom.sha1 deleted file mode 100644 index 4be98eadd..000000000 --- a/code/arachne/org/awaitility/awaitility-parent/4.2.1/awaitility-parent-4.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -32db009c4bec3e85ae20d000799f0028b4519546 \ No newline at end of file diff --git a/code/arachne/org/awaitility/awaitility/4.2.1/_remote.repositories b/code/arachne/org/awaitility/awaitility/4.2.1/_remote.repositories deleted file mode 100644 index b5b08d86d..000000000 --- a/code/arachne/org/awaitility/awaitility/4.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:08 EDT 2024 -awaitility-4.2.1.pom>central= diff --git a/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom b/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom deleted file mode 100644 index 2429f6942..000000000 --- a/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom +++ /dev/null @@ -1,86 +0,0 @@ - - - - 4.0.0 - - org.awaitility - awaitility-parent - 4.2.1 - - awaitility - jar - http://awaitility.org - Awaitility - A Java DSL for synchronizing asynchronous operations - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - NONE - - <_include>-bnd.bnd - - - - - process-classes - - manifest - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - jar - - - - - test-jar - - - - - - - - - org.hamcrest - hamcrest - - - junit - junit - test - - - org.awaitility - awaitility-test-support - test - - - diff --git a/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom.sha1 b/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom.sha1 deleted file mode 100644 index 21105ca29..000000000 --- a/code/arachne/org/awaitility/awaitility/4.2.1/awaitility-4.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aba3ab718e1fb74424595150ea467d24ac49afdc \ No newline at end of file diff --git a/code/arachne/org/basepom/basepom-foundation/55/_remote.repositories b/code/arachne/org/basepom/basepom-foundation/55/_remote.repositories deleted file mode 100644 index 3d6e84907..000000000 --- a/code/arachne/org/basepom/basepom-foundation/55/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:11 EDT 2024 -basepom-foundation-55.pom>central= diff --git a/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom b/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom deleted file mode 100644 index a1aa6b6a7..000000000 --- a/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom +++ /dev/null @@ -1,1181 +0,0 @@ - - - - 4.0.0 - - org.basepom - basepom-foundation - pom - 55 - - - - - - UTF-8 - - 11 - - 11 - ${project.build.targetJdk} - ${project.build.targetJdk} - - UTF-8 - UTF-8 - - - - - - 1024 - ${basepom.build.maxheap-mb}m - - - - false - - - @{project.artifactId}-@{project.version} - - - true - - - none - - - public - - - - - - - - - ${skipTests} - - - 0.75C - true - 30 - - 256m - - - - - - - - - ${skipITs} - ${basepom.test.memory} - 0.5C - 30 - - - - - - src/it - - - false - - - false - - true - - false - - - 4 - - - - - - - false - - ${basepom.install.skip} - - - - false - - ${basepom.check.skip-all} - - ${basepom.check.skip-all} - - - ${basepom.check.skip-basic} - ${basepom.check.skip-basic} - ${basepom.check.skip-basic} - ${basepom.check.skip-basic} - ${basepom.check.skip-basic} - ${basepom.check.skip-basic} - - - ${basepom.check.skip-extended} - ${basepom.check.skip-extended} - - - true - true - - true - ${basepom.check.fail-all} - ${basepom.check.fail-all} - - - ${basepom.check.fail-basic} - ${basepom.check.fail-basic} - ${basepom.check.fail-basic} - ${basepom.check.fail-basic} - ${basepom.check.fail-basic} - ${basepom.check.fail-basic} - ${basepom.check.fail-basic} - - - ${basepom.check.fail-extended} - ${basepom.check.fail-extended} - - - false - false - - - error - - - false - false - true - false - - false - - - false - false - false - false - - - - ${project.name} - - - verify - verify - verify - verify - verify - - - false - ${basepom.at-end} - ${basepom.at-end} - - - true - - - false - true - true - false - ${java.io.tmpdir}/gh-pages-publish/${project.name} - Site checkin for project ${project.name} (${project.version}) - - - development - - main - - - - - - 3.6.0 - - - 6.55.0 - - - 10.12.2 - - - 4.7.3 - - - 1.13.2 - - - - - 3.3.1 - 3.11.0 - 3.1.1 - 3.1.2 - 3.1.1 - 3.3.1 - 4.0.0-M9 - 3.1.2 - - - 3.3.0 - 3.5.0 - 3.3.0 - - - 3.3.0 - 3.5.0 - 3.21.0 - - - 3.6.0 - 3.6.0 - 3.3.0 - 3.6.0 - 3.0.1 - 2.0.1 - 3.2.1 - - - 3.4.0 - - - 4.0.0 - - - - 2.0.1 - - - 4.7.3.5 - - - 0.8.10 - - - 3.1.1 - 1.0.1 - 1.0.1 - 1.0.0 - - - 6.0.0 - - - 2.1.1 - - - - - - - org.apache.maven.plugins - maven-scm-plugin - ${dep.plugin.scm.version} - - developerConnection - - - - - org.apache.maven.plugins - maven-deploy-plugin - ${dep.plugin.deploy.version} - - ${basepom.at-end.deploy} - ${basepom.deploy.skip} - - - - - org.apache.maven.plugins - maven-clean-plugin - ${dep.plugin.clean.version} - - - - org.apache.maven.plugins - maven-install-plugin - ${dep.plugin.install.version} - - ${basepom.at-end.install} - ${basepom.install.skip} - - - - - org.codehaus.mojo - build-helper-maven-plugin - ${dep.plugin.build-helper.version} - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${dep.plugin.enforcer.version} - - ${basepom.check.skip-enforcer} - ${basepom.check.fail-enforcer} - false - - - [${basepom.maven.version},) - - - ${project.build.systemJdk} - - - - basepom only supports JDK version 11 and above - [11,) - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - ${dep.plugin.dependency.version} - - - org.apache.maven.shared - maven-dependency-analyzer - ${dep.dependency-analyzer.version} - - - - ${basepom.check.skip-dependency} - ${basepom.check.fail-dependency} - true - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${dep.plugin.compiler.version} - - ${basepom.compiler.fail-warnings} - ${project.build.targetJdk} - ${maven.compiler.source} - ${maven.compiler.target} - ${project.build.sourceEncoding} - ${basepom.build.jvmsize} - true - ${basepom.compiler.use-incremental-compilation} - ${basepom.compiler.parameters} - - - - - - org.apache.maven.plugins - maven-resources-plugin - ${dep.plugin.resources.version} - - ${project.build.sourceEncoding} - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${dep.plugin.assembly.version} - - - true - - gnu - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${dep.plugin.surefire.version} - - ${basepom.test.skip} - @{basepom.coverage.test-args} -Xmx${basepom.test.memory} -Dfile.encoding=${project.build.sourceEncoding} ${basepom.test.arguments} - random - ${basepom.test.reuse-vm} - ${basepom.test.fork-count} - ${basepom.test.timeout} - ${basepom.test.groups} - false - - - - - org.apache.maven.plugins - maven-failsafe-plugin - ${dep.plugin.failsafe.version} - - ${basepom.it.skip} - @{basepom.coverage.it-args} -Xmx${basepom.it.memory} -Dfile.encoding=${project.build.sourceEncoding} ${basepom.it.arguments} - random - ${basepom.failsafe.reuse-vm} - ${basepom.it.fork-count} - ${basepom.it.timeout} - ${basepom.it.groups} - false - - - - - org.apache.maven.plugins - maven-release-plugin - ${dep.plugin.release.version} - - true - forked-path - ${basepom.release.push-changes} - true - clean install - false - ${basepom.release.tag-name-format} - deploy - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${dep.plugin.javadoc.version} - - ${basepom.javadoc.skip} - ${basepom.check.fail-javadoc} - ${project.build.targetJdk} - ${maven.compiler.source} - ${project.build.sourceEncoding} - ${basepom.build.jvmsize} - true - ${basepom.javadoc.doclint} - ${basepom.javadoc.show} - ${basepom.javadoc.exclude-package-names} - - - - - org.apache.maven.plugins - maven-jar-plugin - ${dep.plugin.jar.version} - - - true - - - true - true - false - - - ${basepom.build.id} - ${project.name} - ${git.commit.id} - - - - ${project.groupId}:${project.artifactId} - - - ${git.build.time} - - ${git.branch} - ${git.commit.id} - ${git.commit.id.describe} - ${git.remote.origin.url} - - ${project.artifactId} - ${project.groupId} - ${project.name} - ${project.version} - - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - ${dep.plugin.source.version} - - - - org.basepom.maven - dependency-versions-check-maven-plugin - ${dep.plugin.dependency-versions-check.version} - - ${basepom.check.skip-dependency-versions-check} - ${basepom.check.fail-dependency-versions-check} - ${basepom.dvc.direct-only} - - - - - org.basepom.maven - dependency-management-maven-plugin - ${dep.plugin.dependency-management.version} - - ${basepom.check.skip-dependency-management} - ${basepom.check.fail-dependency-management} - - ${basepom.dependency-management.dependencies} - ${basepom.dependency-management.plugins} - ${basepom.dependency-management.allow-versions} - ${basepom.dependency-management.allow-exclusions} - - - - - - org.basepom.maven - dependency-scope-maven-plugin - ${dep.plugin.dependency-scope.version} - - ${basepom.check.skip-dependency-scope} - ${basepom.check.fail-dependency-scope} - - - - - org.basepom.maven - duplicate-finder-maven-plugin - ${dep.plugin.duplicate-finder.version} - - ${basepom.check.skip-duplicate-finder} - ${basepom.check.fail-duplicate-finder} - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${dep.plugin.spotbugs.version} - - - com.github.spotbugs - spotbugs - ${dep.spotbugs.version} - - - - Max - ${basepom.check.skip-spotbugs} - ${basepom.build.maxheap-mb} - ${basepom.check.fail-spotbugs} - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${dep.plugin.pmd.version} - - - net.sourceforge.pmd - pmd-core - ${dep.pmd.version} - - - net.sourceforge.pmd - pmd-java - ${dep.pmd.version} - - - net.sourceforge.pmd - pmd-xml - ${dep.pmd.version} - - - - ${basepom.check.skip-pmd} - ${basepom.check.fail-pmd} - false - true - ${project.build.targetJdk} - 100 - ${basepom.pmd.fail-level} - false - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${dep.plugin.checkstyle.version} - - - com.puppycrawl.tools - checkstyle - ${dep.checkstyle.version} - - - - ${basepom.check.skip-checkstyle} - ${basepom.check.fail-checkstyle} - ${basepom.check.checkstyle-severity} - ${project.build.sourceEncoding} - true - - - - - org.apache.maven.plugins - maven-shade-plugin - ${dep.plugin.shade.version} - - false - true - - - *:* - - META-INF/*.SF - META-INF/*.DSA - META-INF/*.RSA - - - - - - - - - - - org.skife.maven - really-executable-jar-maven-plugin - ${dep.plugin.really-executable.version} - - - - org.basepom.maven - repack-maven-plugin - ${dep.plugin.repack.version} - - - - org.jacoco - jacoco-maven-plugin - ${dep.plugin.jacoco.version} - - ${basepom.check.skip-coverage} - ${basepom.check.fail-coverage} - basepom.coverage.test-args - - - - - org.apache.maven.plugins - maven-site-plugin - ${dep.plugin.site.version} - - ${basepom.site.skip} - ${basepom.site.skip-deploy} - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${dep.plugin.scm-publish.version} - - true - ${basepom.site.scm.branch} - ${basepom.site.scm.checkout-directory} - ${basepom.site.scm.try-update} - ${project.reporting.outputDirectory} - ${basepom.site.scm.site-path} - ${basepom.site.scm.skip-deploy} - ${basepom.site.scm.id} - ${basepom.site.scm.url} - ${basepom.site.scm.comment} - - - - - org.basepom.maven - property-helper-maven-plugin - ${dep.plugin.property-helper.version} - - - - io.github.git-commit-id - git-commit-id-maven-plugin - ${dep.plugin.git-commit-id.version} - - - git - yyyy-MM-dd'T'HH:mm:ssZZ - false - true - false - ${basepom.git-id.fail-no-git} - ${basepom.git-id.fail-no-info} - ${basepom.git-id.skip} - 10 - ${basepom.git-id.use-native} - - true - 7 - -dirty - false - true - - ${basepom.git-id.run-only-once} - - - - - org.apache.maven.plugins - maven-invoker-plugin - ${dep.plugin.invoker.version} - - ${basepom.it.skip} - ${basepom.it.skip} - ${basepom.it.fork-count} - ${basepom.invoker.folder} - ${project.build.directory}/it - - */pom.xml - - setup - verify - ${project.build.directory}/local-repo - ${basepom.invoker.folder}/settings.xml - ${basepom.it.timeout} - - clean - package - - - - - - - - - - org.basepom.maven - property-helper-maven-plugin - - - basepom.default - - get - - validate - - - - basepom.build.id - true - - - basepom.shaded.id - true - - - - - - - - - io.github.git-commit-id - git-commit-id-maven-plugin - - - basepom.default - initialize - - revision - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - org.apache.maven.plugins - maven-resources-plugin - - - - org.apache.maven.plugins - maven-jar-plugin - - - - basepom.default - package - - test-jar - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - basepom.default - package - - jar - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - basepom.default - package - - jar-no-fork - test-jar-no-fork - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - basepom.default - validate - - enforce - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - basepom.default - ${basepom.check.phase-dependency} - - analyze-only - analyze-duplicate - analyze-dep-mgt - - - - - - - org.basepom.maven - dependency-versions-check-maven-plugin - - - basepom.default - ${basepom.check.phase-dependency-versions-check} - - check - - - - - - - org.basepom.maven - dependency-management-maven-plugin - - - basepom.default - ${basepom.check.phase-dependency-management} - - analyze - - - - - - - org.basepom.maven - dependency-scope-maven-plugin - - - basepom.default - ${basepom.check.phase-dependency-scope} - - check - - - - - - - org.basepom.maven - duplicate-finder-maven-plugin - - - basepom.default - verify - - check - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - - basepom.default - verify - - check - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - basepom.default - verify - - check - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - basepom.default - ${basepom.check.phase-checkstyle} - - check - - - - - - - org.jacoco - jacoco-maven-plugin - - - basepom.default - process-test-classes - - prepare-agent - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - basepom.default-site - site-deploy - - publish-scm - - - - - - - - - - basepom.invoker-integration-testing - - - - src/it - - - - - - org.jacoco - jacoco-maven-plugin - - - basepom.default-it - pre-integration-test - - prepare-agent-integration - - - basepom.coverage.it-args - - - - - - org.apache.maven.plugins - maven-invoker-plugin - - - basepom.invoker-integration-testing.default - integration-test - - install - integration-test - verify - - - - - - - - - basepom.executable - - - ${basedir}/.build-executable - - - - - - org.apache.maven.plugins - maven-shade-plugin - - - basepom.executable.default - package - - shade - - - - - - org.skife.maven - really-executable-jar-maven-plugin - - - basepom.executable.default - package - - really-executable-jar - - - shaded - ${basepom.executable.flags} - ${basepom.executable.name} - true - - - - - - - - - basepom.repack - - - ${basedir}/.repack-executable - - - - - - org.basepom.maven - repack-maven-plugin - - - basepom.repack.default - package - - repack - - - - - - org.skife.maven - really-executable-jar-maven-plugin - - - basepom.repack.default - package - - really-executable-jar - - - repacked - ${basepom.executable.flags} - ${basepom.executable.name} - true - - - - - - - - - diff --git a/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom.sha1 b/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom.sha1 deleted file mode 100644 index 1060e4400..000000000 --- a/code/arachne/org/basepom/basepom-foundation/55/basepom-foundation-55.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8f3e206bd2e6778a1cd28a053931e0de2439779a \ No newline at end of file diff --git a/code/arachne/org/basepom/basepom-minimal/55/_remote.repositories b/code/arachne/org/basepom/basepom-minimal/55/_remote.repositories deleted file mode 100644 index 957c9ee72..000000000 --- a/code/arachne/org/basepom/basepom-minimal/55/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:11 EDT 2024 -basepom-minimal-55.pom>central= diff --git a/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom b/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom deleted file mode 100644 index d8f4fc69d..000000000 --- a/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom +++ /dev/null @@ -1,344 +0,0 @@ - - - - 4.0.0 - - - org.basepom - basepom-foundation - 55 - ../foundation - - - basepom-minimal - pom - - - - - ${basepom.check.skip-extended} - ${basepom.check.skip-extended} - - ${basepom.check.fail-extended} - ${basepom.check.fail-extended} - - - - - - ${basepom.shaded.main-class} - - - 10 - - - - - - jaspersoft.org - dummy-url - - false - - - false - - - - - - - - - org.basepom.maven - duplicate-finder-maven-plugin - - - - - - com.google.code.findbugs - jsr305 - - - com.google.code.findbugs - annotations - - - - javax.annotation - - - - - - com.google.code.findbugs - annotations - - - net.jcip - jcip-annotations - - - - net.jcip.annotations - - - - - - com.google.code.findbugs - annotations - - - com.google.code.findbugs - findbugs-annotations - - - com.github.spotbugs - spotbugs-annotations - - - - edu.umd.cs.findbugs.annotations - - - - - - - javax.inject - javax.inject - - - org.glassfish.hk2.external - javax.inject - - - - jakarta.inject - jakarta.inject-api - - - - org.glassfish.hk2.external - jakarta.inject - - - - javax.inject - - - - - - org.glassfish.hk2.external - jakarta.inject - - - jakarta.inject - jakarta.inject-api - - - - jakarta.inject - - - - - - - aopalliance - aopalliance - - - org.glassfish.hk2.external - aopalliance-repackaged - - - - org.aopalliance.aop - org.aopalliance.intercept - - - - - - .*\.afm$ - .*\.dtd$ - .*\.gif$ - .*\.html - .*\.java$ - .*\.png$ - .*\.properties$ - .*\.txt$ - - ^\..* - about.* - about_files\/.* - license\/.* - .*\/schema$ - - mime\.types$ - plugin\.properties$ - plugin\.xml$ - reference\.conf$ - - - - log4j\.xml$ - log4j\.properties$ - logback\.xml$ - logback\.properties$ - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - target/generated-sources/stubs - target/generated-sources/annotations - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - - * - - - - - aopalliance:aopalliance - com.github.spotbugs:spotbugs-annotations - com.google.code.findbugs:annotations - com.google.code.findbugs:jsr305 - com.google.errorprone:error_prone_annotations - jakarta.inject:jakarta.inject-api - javax.inject:javax.inject - net.jcip:jcip-annotations - org.checkerframework:checker-qual - org.glassfish.hk2.external:aopalliance-repackaged - org.glassfish.hk2.external:jakarta.inject - org.glassfish.hk2.external:javax.inject - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - org.basepom - basepom-policy - ${dep.basepom-policy.version} - - - - checkstyle/checkstyle-basepom.xml - - - - - org.apache.maven.plugins - maven-shade-plugin - - - - true - - ${basepom.shaded.id} - ${project.name} - ${git.commit.id} - - ${basepom.main-class} - - - - - - org.basepom - basepom-policy - ${dep.basepom-policy.version} - - - - - - org.basepom.maven - repack-maven-plugin - - ${basepom.main-class} - - - - - com.github.spotbugs - spotbugs-maven-plugin - - - org.basepom - basepom-policy - ${dep.basepom-policy.version} - - - - - spotbugs/spotbugs-suppress.xml - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - ${project.build.sourceEncoding} - UTC - true - %1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$s %5$s%6$s%n - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${project.build.sourceEncoding} - UTC - true - %1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$s %5$s%6$s%n - - - - - - - diff --git a/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom.sha1 b/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom.sha1 deleted file mode 100644 index 0e1475fec..000000000 --- a/code/arachne/org/basepom/basepom-minimal/55/basepom-minimal-55.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -07040d9abc06337c5c034eb6b092ae7ded4cb90c \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/_remote.repositories b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/_remote.repositories deleted file mode 100644 index c75eba51b..000000000 --- a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:23 EDT 2024 -bcpkix-jdk15on-1.63.pom>central= diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom deleted file mode 100644 index 2c940717a..000000000 --- a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcpkix-jdk15on - jar - Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs - 1.63 - The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.5 to JDK 1.8. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs. - http://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - http://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - - - org.bouncycastle - bcprov-jdk15on - 1.63 - jar - - - diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom.sha1 b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom.sha1 deleted file mode 100644 index 47f10c0bd..000000000 --- a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.63/bcpkix-jdk15on-1.63.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -45f56dffcf9a2753f3f54d4c8ffa18ae0deb6c1e \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/_remote.repositories b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/_remote.repositories deleted file mode 100644 index baf40dca8..000000000 --- a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:10 EDT 2024 -bcpkix-jdk15on-1.70.pom>central= diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom deleted file mode 100644 index 01353ff14..000000000 --- a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom +++ /dev/null @@ -1,46 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcpkix-jdk15on - jar - Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs - 1.70 - The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.5 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - - - org.bouncycastle - bcprov-jdk15on - 1.70 - jar - - - org.bouncycastle - bcutil-jdk15on - 1.70 - jar - - - diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom.sha1 b/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom.sha1 deleted file mode 100644 index 4897fac8c..000000000 --- a/code/arachne/org/bouncycastle/bcpkix-jdk15on/1.70/bcpkix-jdk15on-1.70.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9eb426bf14cf6f656af149c138e54cfd1c832995 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/_remote.repositories b/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/_remote.repositories deleted file mode 100644 index ee8909dec..000000000 --- a/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:35 EDT 2024 -bcpkix-jdk18on-1.76.pom>central= diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom b/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom deleted file mode 100644 index a25e75dcb..000000000 --- a/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom +++ /dev/null @@ -1,46 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcpkix-jdk18on - jar - Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs - 1.76 - The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.8 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - - - org.bouncycastle - bcprov-jdk18on - 1.76 - jar - - - org.bouncycastle - bcutil-jdk18on - 1.76 - jar - - - diff --git a/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom.sha1 b/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom.sha1 deleted file mode 100644 index 0b62e5667..000000000 --- a/code/arachne/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d0351cd0820b156ba1f946c83892306827158267 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/_remote.repositories deleted file mode 100644 index 415bbc7bc..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:23 EDT 2024 -bcprov-jdk15on-1.63.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom deleted file mode 100644 index e3b436490..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom +++ /dev/null @@ -1,32 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcprov-jdk15on - jar - Bouncy Castle Provider - 1.63 - The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 1.8. - http://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - http://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom.sha1 deleted file mode 100644 index 5435c25e0..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.63/bcprov-jdk15on-1.63.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d3e115074916bfb021a94ff8fb4ae3778ee857fa \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/_remote.repositories deleted file mode 100644 index d7bcd3888..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:59 EDT 2024 -bcprov-jdk15on-1.69.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom deleted file mode 100644 index 6c22dbe7f..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom +++ /dev/null @@ -1,32 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcprov-jdk15on - jar - Bouncy Castle Provider - 1.69 - The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 and up. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom.sha1 deleted file mode 100644 index f4f0a7cd3..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c9f3e7d46996214727e0df730b2a6214b49a0ac0 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/_remote.repositories deleted file mode 100644 index ff227dad2..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:10 EDT 2024 -bcprov-jdk15on-1.70.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom deleted file mode 100644 index ea5148262..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom +++ /dev/null @@ -1,32 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcprov-jdk15on - jar - Bouncy Castle Provider - 1.70 - The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 and up. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - diff --git a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom.sha1 deleted file mode 100644 index 31ac933ee..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk15on/1.70/bcprov-jdk15on-1.70.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -696dce53f1cd6ea922402e76a6adce522cedda05 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/_remote.repositories deleted file mode 100644 index e734e9c06..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:44 EDT 2024 -bcprov-jdk18on-1.71.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom deleted file mode 100644 index 71f3796eb..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom +++ /dev/null @@ -1,32 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcprov-jdk18on - jar - Bouncy Castle Provider - 1.71 - The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom.sha1 deleted file mode 100644 index 6e3bce4bb..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.71/bcprov-jdk18on-1.71.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -555f754405d768abc51892e07ec947c42dbab44e \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/_remote.repositories deleted file mode 100644 index 3cb1b62fd..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:35 EDT 2024 -bcprov-jdk18on-1.76.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom deleted file mode 100644 index c1597c447..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom +++ /dev/null @@ -1,32 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcprov-jdk18on - jar - Bouncy Castle Provider - 1.76 - The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom.sha1 deleted file mode 100644 index 943249a61..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -49609f19dc2e4decc3dee4d4e79833b87b4a4ddc \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/_remote.repositories b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/_remote.repositories deleted file mode 100644 index 4d6278be8..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:19 EDT 2024 -bcprov-jdk18on-1.78.1.pom>central= diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom deleted file mode 100644 index 4164f5db7..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom +++ /dev/null @@ -1,32 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcprov-jdk18on - jar - Bouncy Castle Provider - 1.78.1 - The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - diff --git a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom.sha1 b/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom.sha1 deleted file mode 100644 index a3d182456..000000000 --- a/code/arachne/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1593f57faf9f3f527b295ea954f1e510b945f7d5 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/_remote.repositories b/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/_remote.repositories deleted file mode 100644 index bc20aa53d..000000000 --- a/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:10 EDT 2024 -bcutil-jdk15on-1.70.pom>central= diff --git a/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom b/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom deleted file mode 100644 index 994c93540..000000000 --- a/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcutil-jdk15on - jar - Bouncy Castle ASN.1 Extension and Utility APIs - 1.70 - The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.5 and up. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - - - org.bouncycastle - bcprov-jdk15on - 1.70 - jar - - - diff --git a/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom.sha1 b/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom.sha1 deleted file mode 100644 index a6e58b8c9..000000000 --- a/code/arachne/org/bouncycastle/bcutil-jdk15on/1.70/bcutil-jdk15on-1.70.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cbadbbefdd5486aa68e58e03d73037e9a4b7acc5 \ No newline at end of file diff --git a/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/_remote.repositories b/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/_remote.repositories deleted file mode 100644 index 49fa486ce..000000000 --- a/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:35 EDT 2024 -bcutil-jdk18on-1.76.pom>central= diff --git a/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom b/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom deleted file mode 100644 index 9c068d792..000000000 --- a/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcutil-jdk18on - jar - Bouncy Castle ASN.1 Extension and Utility APIs - 1.76 - The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.8 and up. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - - - org.bouncycastle - bcprov-jdk18on - 1.76 - jar - - - diff --git a/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom.sha1 b/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom.sha1 deleted file mode 100644 index 458f2140e..000000000 --- a/code/arachne/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7e7e5a2291a39036e1dfb2bfd86b2f971b1c0cb0 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/2.0.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/2.0.0/_remote.repositories deleted file mode 100644 index 0a23cbc17..000000000 --- a/code/arachne/org/checkerframework/checker-qual/2.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:05 EDT 2024 -checker-qual-2.0.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom b/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom deleted file mode 100644 index 8303eb6cc..000000000 --- a/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom +++ /dev/null @@ -1,103 +0,0 @@ - - - 4.0.0 - jar - - Checker Qual - http://checkerframework.org - - Checker Qual is the set of annotations (qualifiers) and supporting classes - used by the Checker Framework to type check Java source code. Please - see artifact: - org.checkerframework:checker - - - org.checkerframework - checker-qual - - - - GNU General Public License, version 2 (GPL2), with the classpath exception - http://www.gnu.org/software/classpath/license.html - repo - - - - The MIT License - http://opensource.org/licenses/MIT - repo - - - - - 2.0.0 - - - https://github.com/typetools/checker-framework.git - https://github.com/typetools/checker-framework.git - - - - - - Michael Ernst <mernst@cs.washington.edu> - Michael Ernst - mernst@cs.washington.edu - http://homes.cs.washington.edu/~mernst/ - University of Washington - https://www.cs.washington.edu/ - - - - wmdietl - Werner M. Dietl - wdietl@uwaterloo.ca - University of Waterloo - http://uwaterloo.ca/ - - - - Suzanne Millstein <smillst@cs.washington.edu> - Suzanne Millstein - smillst@cs.washington.edu - University of Washington PLSE Group - https://www.cs.washington.edu/research/plse/ - - - - David McArthur <mcarthur@cs.washington.edu< - David McArthur - mcarthur@cs.washington.edu - University of Washington PLSE Group - https://www.cs.washington.edu/research/plse/ - - - - Javier Thaine <jthaine@cs.washington.edu< - David McArthur - jthaine@cs.washington.edu - University of Washington PLSE Group - https://www.cs.washington.edu/research/plse/ - - - - Dan Brown <dbro@cs.washington.edu< - Dan Brown - dbro@cs.washington.edu - University of Washington PLSE Group - https://www.cs.washington.edu/research/plse/ - - - - jonathangburke@gmail.com - Jonathan G. Burke - jburke@cs.washington.edu - University of Washington PLSE Group - https://www.cs.washington.edu/research/plse/ - - - - - diff --git a/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom.sha1 deleted file mode 100644 index a09dbce98..000000000 --- a/code/arachne/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -17ab37f0fb0338647a70ab40f15c2c685e4185e3 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/2.11.1/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/2.11.1/_remote.repositories deleted file mode 100644 index bce3b58a9..000000000 --- a/code/arachne/org/checkerframework/checker-qual/2.11.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:03 EDT 2024 -checker-qual-2.11.1.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom b/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom deleted file mode 100644 index 2cfb92199..000000000 --- a/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom +++ /dev/null @@ -1,65 +0,0 @@ - - - 4.0.0 - jar - - Checker Qual - https://checkerframework.org - - Checker Qual is the set of annotations (qualifiers) and supporting classes - used by the Checker Framework to type check Java source code. Please - see artifact: - org.checkerframework:checker - - - org.checkerframework - checker-qual - - - - The MIT License - http://opensource.org/licenses/MIT - repo - - - - - 2.11.1 - - - https://github.com/typetools/checker-framework.git - https://github.com/typetools/checker-framework.git - - - - - - mernst - Michael Ernst - mernst@cs.washington.edu - https://homes.cs.washington.edu/~mernst/ - University of Washington - https://www.cs.washington.edu/ - - - - wmdietl - Werner M. Dietl - wdietl@uwaterloo.ca - University of Waterloo - http://uwaterloo.ca/ - - - - smillst - Suzanne Millstein - smillst@cs.washington.edu - University of Washington PLSE Group - https://www.cs.washington.edu/research/plse/ - - - - - diff --git a/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom.sha1 deleted file mode 100644 index aa990af11..000000000 --- a/code/arachne/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ebc1b44da8503640e2ed42627b299272c8c72824 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/3.12.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/3.12.0/_remote.repositories deleted file mode 100644 index 3e0b37f41..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.12.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:43 EDT 2024 -checker-qual-3.12.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom b/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom deleted file mode 100644 index baf6fcc9c..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - 4.0.0 - org.checkerframework - checker-qual - 3.12.0 - Checker Qual - checker-qual contains annotations (type qualifiers) that a programmer -writes to specify Java code for type-checking by the Checker Framework. - - https://checkerframework.org - - - The MIT License - http://opensource.org/licenses/MIT - repo - - - - - mernst - Michael Ernst - mernst@cs.washington.edu - https://homes.cs.washington.edu/~mernst/ - University of Washington - https://www.cs.washington.edu/ - - - smillst - Suzanne Millstein - smillst@cs.washington.edu - University of Washington - https://www.cs.washington.edu/ - - - - scm:git:git://github.com/typetools/checker-framework.git - scm:git:ssh://git@github.com/typetools/checker-framework.git - https://github.com/typetools/checker-framework.git - - diff --git a/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom.sha1 deleted file mode 100644 index 51415b905..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fb8dca6f40fcb30f7b89de269940bf3316fb9845 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/3.31.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/3.31.0/_remote.repositories deleted file mode 100644 index 3681f7d46..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.31.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -checker-qual-3.31.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom b/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom deleted file mode 100644 index b62f4baee..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - 4.0.0 - org.checkerframework - checker-qual - 3.31.0 - Checker Qual - checker-qual contains annotations (type qualifiers) that a programmer -writes to specify Java code for type-checking by the Checker Framework. - - https://checkerframework.org - - - The MIT License - http://opensource.org/licenses/MIT - repo - - - - - mernst - Michael Ernst - mernst@cs.washington.edu - https://homes.cs.washington.edu/~mernst/ - University of Washington - https://www.cs.washington.edu/ - - - smillst - Suzanne Millstein - smillst@cs.washington.edu - University of Washington - https://www.cs.washington.edu/ - - - - scm:git:git://github.com/typetools/checker-framework.git - scm:git:ssh://git@github.com/typetools/checker-framework.git - https://github.com/typetools/checker-framework.git - - diff --git a/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom.sha1 deleted file mode 100644 index e2f08d085..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.31.0/checker-qual-3.31.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a600a4210e8c3db6ea45ea0989920b0255dbb6f6 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/3.33.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/3.33.0/_remote.repositories deleted file mode 100644 index 2e3ab23fb..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.33.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:32 EDT 2024 -checker-qual-3.33.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom b/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom deleted file mode 100644 index 960d8cfdc..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - 4.0.0 - org.checkerframework - checker-qual - 3.33.0 - Checker Qual - checker-qual contains annotations (type qualifiers) that a programmer -writes to specify Java code for type-checking by the Checker Framework. - - https://checkerframework.org/ - - - The MIT License - http://opensource.org/licenses/MIT - repo - - - - - mernst - Michael Ernst - mernst@cs.washington.edu - https://homes.cs.washington.edu/~mernst/ - University of Washington - https://www.cs.washington.edu/ - - - smillst - Suzanne Millstein - smillst@cs.washington.edu - University of Washington - https://www.cs.washington.edu/ - - - - scm:git:https://github.com/typetools/checker-framework.git - scm:git:ssh://git@github.com/typetools/checker-framework.git - https://github.com/typetools/checker-framework.git - - diff --git a/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom.sha1 deleted file mode 100644 index 41137c89d..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6d43e2eacef053cffd73da56734e9a8a138b52be \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/3.37.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/3.37.0/_remote.repositories deleted file mode 100644 index 7dddd2e98..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.37.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:22 EDT 2024 -checker-qual-3.37.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom b/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom deleted file mode 100644 index e423d3cc1..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - 4.0.0 - org.checkerframework - checker-qual - 3.37.0 - Checker Qual - checker-qual contains annotations (type qualifiers) that a programmer -writes to specify Java code for type-checking by the Checker Framework. - - https://checkerframework.org/ - - - The MIT License - http://opensource.org/licenses/MIT - repo - - - - - mernst - Michael Ernst - mernst@cs.washington.edu - https://homes.cs.washington.edu/~mernst/ - University of Washington - https://www.cs.washington.edu/ - - - smillst - Suzanne Millstein - smillst@cs.washington.edu - University of Washington - https://www.cs.washington.edu/ - - - - scm:git:https://github.com/typetools/checker-framework.git - scm:git:ssh://git@github.com/typetools/checker-framework.git - https://github.com/typetools/checker-framework.git - - diff --git a/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom.sha1 deleted file mode 100644 index e9950dbdc..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2b5c81b974afb0dad5a99ee7d2540a0bbb0c3555 \ No newline at end of file diff --git a/code/arachne/org/checkerframework/checker-qual/3.42.0/_remote.repositories b/code/arachne/org/checkerframework/checker-qual/3.42.0/_remote.repositories deleted file mode 100644 index 4e0a49181..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.42.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:27 EDT 2024 -checker-qual-3.42.0.pom>central= diff --git a/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom b/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom deleted file mode 100644 index 091599497..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - 4.0.0 - org.checkerframework - checker-qual - 3.42.0 - Checker Qual - checker-qual contains annotations (type qualifiers) that a programmer -writes to specify Java code for type-checking by the Checker Framework. - - https://checkerframework.org/ - - - The MIT License - http://opensource.org/licenses/MIT - repo - - - - - mernst - Michael Ernst - mernst@cs.washington.edu - https://homes.cs.washington.edu/~mernst/ - University of Washington - https://www.cs.washington.edu/ - - - smillst - Suzanne Millstein - smillst@cs.washington.edu - University of Washington - https://www.cs.washington.edu/ - - - - scm:git:https://github.com/typetools/checker-framework.git - scm:git:ssh://git@github.com/typetools/checker-framework.git - https://github.com/typetools/checker-framework.git - - diff --git a/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom.sha1 b/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom.sha1 deleted file mode 100644 index 45fc87568..000000000 --- a/code/arachne/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -49d71d964f0ac5505caa5f996c8497c9462e9eeb \ No newline at end of file diff --git a/code/arachne/org/codehaus/codehaus-parent/4/_remote.repositories b/code/arachne/org/codehaus/codehaus-parent/4/_remote.repositories deleted file mode 100644 index 41566d892..000000000 --- a/code/arachne/org/codehaus/codehaus-parent/4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:06 EDT 2024 -codehaus-parent-4.pom>central= diff --git a/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom b/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom deleted file mode 100644 index 2e10afb5d..000000000 --- a/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom +++ /dev/null @@ -1,155 +0,0 @@ - - - - 4.0.0 - - org.codehaus - codehaus-parent - 4 - pom - - Codehaus Parent - http://codehaus.org/ - The Codehaus is a collaborative environment for building open source projects with a strong emphasis on modern languages, focussed on quality components that meet real world needs. - - - scm:git:git@github.com:sonatype/codehaus-parent.git - scm:git:git@github.com:sonatype/codehaus-parent.git - https://github.com/sonatype/codehaus-parent - - - - - codehaus-snapshots - Codehaus Snapshots - http://nexus.codehaus.org/snapshots/ - - false - - - true - - - - - - - - codehaus-nexus-snapshots - Codehaus Nexus Snapshots - ${codehausDistMgmtSnapshotsUrl} - - - codehaus-nexus-staging - Codehaus Release Repository - https://nexus.codehaus.org/service/local/staging/deploy/maven2/ - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0 - - - enforce-maven - - enforce - - - - - (,2.1.0),(2.1.0,2.2.0),(2.2.0,) - Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. - - - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - forked-path - false - -Pcodehaus-release - - - - - - - - UTF-8 - https://nexus.codehaus.org/content/repositories/snapshots/ - - - - - codehaus-release - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 b/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 deleted file mode 100644 index 6aa79eb80..000000000 --- a/code/arachne/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8b133202d50bec1e59bddc9392cb44d1fe5facc8 \ No newline at end of file diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/_remote.repositories b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/_remote.repositories deleted file mode 100644 index 84c8bcff6..000000000 --- a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:49 EDT 2024 -groovy-bom-3.0.19.pom>central= diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom deleted file mode 100644 index 5db18f799..000000000 --- a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom +++ /dev/null @@ -1,975 +0,0 @@ - - - 4.0.0 - org.codehaus.groovy - groovy-bom - 3.0.19 - pom - Apache Groovy - Groovy: A powerful, dynamic language for the JVM - https://groovy-lang.org - 2003 - - Apache Software Foundation - https://apache.org - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - glaforge - Guillaume Laforge - Google - - Developer - - - - bob - bob mcwhirter - bob@werken.com - The Werken Company - - Founder - - - - jstrachan - James Strachan - james@coredevelopers.com - Core Developers Network - - Founder - - - - joe - Joe Walnes - ThoughtWorks - - Developer Emeritus - - - - skizz - Chris Stevenson - ThoughtWorks - - Developer Emeritus - - - - jamiemc - Jamie McCrindle - Three - - Developer Emeritus - - - - mattf - Matt Foemmel - ThoughtWorks - - Developer Emeritus - - - - alextkachman - Alex Tkachman - - Developer Emeritus - - - - roshandawrani - Roshan Dawrani - - Developer Emeritus - - - - spullara - Sam Pullara - sam@sampullara.com - - Developer Emeritus - - - - kasper - Kasper Nielsen - - Developer Emeritus - - - - travis - Travis Kay - - Developer Emeritus - - - - zohar - Zohar Melamed - - Developer Emeritus - - - - jwilson - John Wilson - tug@wilson.co.uk - The Wilson Partnership - - Developer Emeritus - - - - cpoirier - Chris Poirier - cpoirier@dreaming.org - - Developer Emeritus - - - - ckl - Christiaan ten Klooster - ckl@dacelo.nl - Dacelo WebDevelopment - - Developer Emeritus - - - - goetze - Steve Goetze - goetze@dovetail.com - Dovetailed Technologies, LLC - - Developer Emeritus - - - - bran - Bing Ran - b55r@sina.com - Leadingcare - - Developer Emeritus - - - - jez - Jeremy Rayner - jeremy.rayner@gmail.com - javanicus - - Developer Emeritus - - - - jstump - John Stump - johnstump2@yahoo.com - - Developer Emeritus - - - - blackdrag - Jochen Theodorou - blackdrag@gmx.org - - Developer - - - - russel - Russel Winder - russel@winder.org.uk - Concertant LLP & It'z Interactive Ltd - - Developer - Founder of Gant - - - - phk - Pilho Kim - phkim@cluecom.co.kr - - Developer Emeritus - - - - cstein - Christian Stein - sormuras@gmx.de - CTSR.de - - Developer Emeritus - - - - mittie - Dierk Koenig - Karakun AG - - Developer - - - - paulk - Paul King - paulk@asert.com.au - OCI, Australia - - Project Manager - Developer - - - - galleon - Guillaume Alleon - guillaume.alleon@gmail.com - - Developer Emeritus - - - - user57 - Jason Dillon - jason@planet57.com - - Developer Emeritus - - - - shemnon - Danno Ferrin - - Developer Emeritus - - - - jwill - James Williams - - Developer Emeritus - - - - timyates - Tim Yates - - Developer - - - - aalmiray - Andres Almiray - aalmiray@users.sourceforge.net - - Developer - - - - mguillem - Marc Guillemot - mguillemot@yahoo.fr - - Developer Emeritus - - - - jimwhite - Jim White - jim@pagesmiths.com - IFCX.org - - Developer - - - - pniederw - Peter Niederwieser - pniederw@gmail.com - - Developer Emeritus - - - - andresteingress - Andre Steingress - - Developer - - - - hamletdrc - Hamlet D'Arcy - hamletdrc@gmail.com - - Developer Emeritus - - - - melix - Cedric Champeau - cedric.champeau@gmail.com - - Developer - - - - pascalschumacher - Pascal Schumacher - - Developer - - - - sunlan - Daniel Sun - - Developer - - - - rpopma - Remko Popma - - Developer - - - - grocher - Graeme Rocher - - Developer - - - - emilles - Eric Milles - Thomson Reuters - - Developer - - - - - - Joern Eyrich - - - Robert Kuzelj - - - Rod Cope - - - Yuri Schimke - - - James Birchfield - - - Robert Fuller - - - Sergey Udovenko - - - Hallvard Traetteberg - - - Peter Reilly - - - Brian McCallister - - - Richard Monson-Haefel - - - Brian Larson - - - Artur Biesiadowski - abies@pg.gda.pl - - - Ivan Z. Ganza - - - Larry Jacobson - - - Jake Gage - - - Arjun Nayyar - - - Masato Nagai - - - Mark Chu-Carroll - - - Mark Turansky - - - Jean-Louis Berliet - - - Graham Miller - - - Marc Palmer - - - Tugdual Grall - - - Edwin Tellman - - - Evan "Hippy" Slatis - - - Mike Dillon - - - Bernhard Huber - - - Yasuharu Nakano - - - Marc DeXeT - - - Dejan Bosanac - dejan@nighttale.net - - - Denver Dino - - - Ted Naleid - - - Ted Leung - - - Merrick Schincariol - - - Chanwit Kaewkasi - - - Stefan Matthias Aust - - - Andy Dwelly - - - Philip Milne - - - Tiago Fernandez - - - Steve Button - - - Joachim Baumann - - - Jochen Eddel+ - - - Ilinca V. Hallberg - - - Björn Westlin - - - Andrew Glover - - - Brad Long - - - John Bito - - - Jim Jagielski - - - Rodolfo Velasco - - - John Hurst - - - Merlyn Albery-Speyer - - - jeremi Joslin - - - UEHARA Junji - - - NAKANO Yasuharu - - - Dinko Srkoc - - - Raffaele Cigni - - - Alberto Vilches Raton - - - Paulo Poiati - - - Alexander Klein - - - Adam Murdoch - - - David Durham - - - Daniel Henrique Alves Lima - - - John Wagenleitner - - - Colin Harrington - - - Brian Alexander - - - Jan Weitz - - - Chris K Wensel - - - David Sutherland - - - Mattias Reichel - - - David Lee - - - Sergei Egorov - - - Hein Meling - - - Michael Baehr - - - Craig Andrews - - - Peter Ledbrook - - - Scott Stirling - - - Thibault Kruse - - - Tim Tiemens - - - Mike Spille - - - Nikolay Chugunov - - - Francesco Durbin - - - Paolo Di Tommaso - - - Rene Scheibe - - - Matias Bjarland - - - Tomasz Bujok - - - Richard Hightower - - - Andrey Bloschetsov - - - Yu Kobayashi - - - Nick Grealy - - - Vaclav Pech - - - Chuck Tassoni - - - Steven Devijver - - - Ben Manes - - - Troy Heninger - - - Andrew Eisenberg - - - Eric Milles - - - Kohsuke Kawaguchi - - - Scott Vlaminck - - - Hjalmar Ekengren - - - Rafael Luque - - - Joachim Heldmann - - - dgouyette - - - Marcin Grzejszczak - - - Pap LÅ‘rinc - - - Guillaume Balaine - - - Santhosh Kumar T - - - Alan Green - - - Marty Saxton - - - Marcel Overdijk - - - Jonathan Carlson - - - Thomas Heller - - - John Stump - - - Ivan Ganza - - - Alex Popescu - - - Martin Kempf - - - Martin Ghados - - - Martin Stockhammer - - - Martin C. Martin - - - Alexey Verkhovsky - - - Alberto Mijares - - - Matthias Cullmann - - - Tomek Bujok - - - Stephane Landelle - - - Stephane Maldini - - - Mark Volkmann - - - Andrew Taylor - - - Vladimir Vivien - - - Vladimir Orany - - - Joe Wolf - - - Kent Inge Fagerland Simonsen - - - Tom Nichols - - - Ingo Hoffmann - - - Sergii Bondarenko - - - mgroovy - - - Dominik Przybysz - - - Jason Thomas - - - Trygve Amundsens - - - Morgan Hankins - - - Shruti Gupta - - - Ben Yu - - - Dejan Bosanac - - - Lidia Donajczyk-Lipinska - - - Peter Gromov - - - Johannes Link - - - Chris Reeves - - - Sean Timm - - - Dmitry Vyazelenko - - - - - Groovy Developer List - https://mail-archives.apache.org/mod_mbox/groovy-dev/ - - - Groovy User List - https://mail-archives.apache.org/mod_mbox/groovy-users/ - - - - scm:git:https://github.com/apache/groovy.git - scm:git:https://github.com/apache/groovy.git - https://github.com/apache/groovy.git - - - jira - https://issues.apache.org/jira/browse/GROOVY - - - - - org.codehaus.groovy - groovy - 3.0.19 - - - org.codehaus.groovy - groovy-ant - 3.0.19 - - - org.codehaus.groovy - groovy-astbuilder - 3.0.19 - - - org.codehaus.groovy - groovy-bsf - 3.0.19 - - - org.codehaus.groovy - groovy-cli-commons - 3.0.19 - - - org.codehaus.groovy - groovy-cli-picocli - 3.0.19 - - - org.codehaus.groovy - groovy-console - 3.0.19 - - - org.codehaus.groovy - groovy-datetime - 3.0.19 - - - org.codehaus.groovy - groovy-dateutil - 3.0.19 - - - org.codehaus.groovy - groovy-docgenerator - 3.0.19 - - - org.codehaus.groovy - groovy-groovydoc - 3.0.19 - - - org.codehaus.groovy - groovy-groovysh - 3.0.19 - - - org.codehaus.groovy - groovy-jaxb - 3.0.19 - - - org.codehaus.groovy - groovy-jmx - 3.0.19 - - - org.codehaus.groovy - groovy-json - 3.0.19 - - - org.codehaus.groovy - groovy-jsr223 - 3.0.19 - - - org.codehaus.groovy - groovy-macro - 3.0.19 - - - org.codehaus.groovy - groovy-nio - 3.0.19 - - - org.codehaus.groovy - groovy-servlet - 3.0.19 - - - org.codehaus.groovy - groovy-sql - 3.0.19 - - - org.codehaus.groovy - groovy-swing - 3.0.19 - - - org.codehaus.groovy - groovy-templates - 3.0.19 - - - org.codehaus.groovy - groovy-test - 3.0.19 - - - org.codehaus.groovy - groovy-test-junit5 - 3.0.19 - - - org.codehaus.groovy - groovy-testng - 3.0.19 - - - org.codehaus.groovy - groovy-xml - 3.0.19 - - - org.codehaus.groovy - groovy-yaml - 3.0.19 - - - - diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom.sha1 b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom.sha1 deleted file mode 100644 index 7d34d0814..000000000 --- a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.19/groovy-bom-3.0.19.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -206e6428672da27eb124ec3bdd7920830b9f6e58 \ No newline at end of file diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/_remote.repositories b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/_remote.repositories deleted file mode 100644 index 01eb04b90..000000000 --- a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:50 EDT 2024 -groovy-bom-3.0.20.pom>central= diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom deleted file mode 100644 index 359503c5b..000000000 --- a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom +++ /dev/null @@ -1,975 +0,0 @@ - - - 4.0.0 - org.codehaus.groovy - groovy-bom - 3.0.20 - pom - Apache Groovy - Groovy: A powerful, dynamic language for the JVM - https://groovy-lang.org - 2003 - - Apache Software Foundation - https://apache.org - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - glaforge - Guillaume Laforge - Google - - Developer - - - - bob - bob mcwhirter - bob@werken.com - The Werken Company - - Founder - - - - jstrachan - James Strachan - james@coredevelopers.com - Core Developers Network - - Founder - - - - joe - Joe Walnes - ThoughtWorks - - Developer Emeritus - - - - skizz - Chris Stevenson - ThoughtWorks - - Developer Emeritus - - - - jamiemc - Jamie McCrindle - Three - - Developer Emeritus - - - - mattf - Matt Foemmel - ThoughtWorks - - Developer Emeritus - - - - alextkachman - Alex Tkachman - - Developer Emeritus - - - - roshandawrani - Roshan Dawrani - - Developer Emeritus - - - - spullara - Sam Pullara - sam@sampullara.com - - Developer Emeritus - - - - kasper - Kasper Nielsen - - Developer Emeritus - - - - travis - Travis Kay - - Developer Emeritus - - - - zohar - Zohar Melamed - - Developer Emeritus - - - - jwilson - John Wilson - tug@wilson.co.uk - The Wilson Partnership - - Developer Emeritus - - - - cpoirier - Chris Poirier - cpoirier@dreaming.org - - Developer Emeritus - - - - ckl - Christiaan ten Klooster - ckl@dacelo.nl - Dacelo WebDevelopment - - Developer Emeritus - - - - goetze - Steve Goetze - goetze@dovetail.com - Dovetailed Technologies, LLC - - Developer Emeritus - - - - bran - Bing Ran - b55r@sina.com - Leadingcare - - Developer Emeritus - - - - jez - Jeremy Rayner - jeremy.rayner@gmail.com - javanicus - - Developer Emeritus - - - - jstump - John Stump - johnstump2@yahoo.com - - Developer Emeritus - - - - blackdrag - Jochen Theodorou - blackdrag@gmx.org - - Developer - - - - russel - Russel Winder - russel@winder.org.uk - Concertant LLP & It'z Interactive Ltd - - Developer - Founder of Gant - - - - phk - Pilho Kim - phkim@cluecom.co.kr - - Developer Emeritus - - - - cstein - Christian Stein - sormuras@gmx.de - CTSR.de - - Developer Emeritus - - - - mittie - Dierk Koenig - Karakun AG - - Developer - - - - paulk - Paul King - paulk@asert.com.au - OCI, Australia - - Project Manager - Developer - - - - galleon - Guillaume Alleon - guillaume.alleon@gmail.com - - Developer Emeritus - - - - user57 - Jason Dillon - jason@planet57.com - - Developer Emeritus - - - - shemnon - Danno Ferrin - - Developer Emeritus - - - - jwill - James Williams - - Developer Emeritus - - - - timyates - Tim Yates - - Developer - - - - aalmiray - Andres Almiray - aalmiray@users.sourceforge.net - - Developer - - - - mguillem - Marc Guillemot - mguillemot@yahoo.fr - - Developer Emeritus - - - - jimwhite - Jim White - jim@pagesmiths.com - IFCX.org - - Developer - - - - pniederw - Peter Niederwieser - pniederw@gmail.com - - Developer Emeritus - - - - andresteingress - Andre Steingress - - Developer - - - - hamletdrc - Hamlet D'Arcy - hamletdrc@gmail.com - - Developer Emeritus - - - - melix - Cedric Champeau - cedric.champeau@gmail.com - - Developer - - - - pascalschumacher - Pascal Schumacher - - Developer - - - - sunlan - Daniel Sun - - Developer - - - - rpopma - Remko Popma - - Developer - - - - grocher - Graeme Rocher - - Developer - - - - emilles - Eric Milles - Thomson Reuters - - Developer - - - - - - Joern Eyrich - - - Robert Kuzelj - - - Rod Cope - - - Yuri Schimke - - - James Birchfield - - - Robert Fuller - - - Sergey Udovenko - - - Hallvard Traetteberg - - - Peter Reilly - - - Brian McCallister - - - Richard Monson-Haefel - - - Brian Larson - - - Artur Biesiadowski - abies@pg.gda.pl - - - Ivan Z. Ganza - - - Larry Jacobson - - - Jake Gage - - - Arjun Nayyar - - - Masato Nagai - - - Mark Chu-Carroll - - - Mark Turansky - - - Jean-Louis Berliet - - - Graham Miller - - - Marc Palmer - - - Tugdual Grall - - - Edwin Tellman - - - Evan "Hippy" Slatis - - - Mike Dillon - - - Bernhard Huber - - - Yasuharu Nakano - - - Marc DeXeT - - - Dejan Bosanac - dejan@nighttale.net - - - Denver Dino - - - Ted Naleid - - - Ted Leung - - - Merrick Schincariol - - - Chanwit Kaewkasi - - - Stefan Matthias Aust - - - Andy Dwelly - - - Philip Milne - - - Tiago Fernandez - - - Steve Button - - - Joachim Baumann - - - Jochen Eddel+ - - - Ilinca V. Hallberg - - - Björn Westlin - - - Andrew Glover - - - Brad Long - - - John Bito - - - Jim Jagielski - - - Rodolfo Velasco - - - John Hurst - - - Merlyn Albery-Speyer - - - jeremi Joslin - - - UEHARA Junji - - - NAKANO Yasuharu - - - Dinko Srkoc - - - Raffaele Cigni - - - Alberto Vilches Raton - - - Paulo Poiati - - - Alexander Klein - - - Adam Murdoch - - - David Durham - - - Daniel Henrique Alves Lima - - - John Wagenleitner - - - Colin Harrington - - - Brian Alexander - - - Jan Weitz - - - Chris K Wensel - - - David Sutherland - - - Mattias Reichel - - - David Lee - - - Sergei Egorov - - - Hein Meling - - - Michael Baehr - - - Craig Andrews - - - Peter Ledbrook - - - Scott Stirling - - - Thibault Kruse - - - Tim Tiemens - - - Mike Spille - - - Nikolay Chugunov - - - Francesco Durbin - - - Paolo Di Tommaso - - - Rene Scheibe - - - Matias Bjarland - - - Tomasz Bujok - - - Richard Hightower - - - Andrey Bloschetsov - - - Yu Kobayashi - - - Nick Grealy - - - Vaclav Pech - - - Chuck Tassoni - - - Steven Devijver - - - Ben Manes - - - Troy Heninger - - - Andrew Eisenberg - - - Eric Milles - - - Kohsuke Kawaguchi - - - Scott Vlaminck - - - Hjalmar Ekengren - - - Rafael Luque - - - Joachim Heldmann - - - dgouyette - - - Marcin Grzejszczak - - - Pap LÅ‘rinc - - - Guillaume Balaine - - - Santhosh Kumar T - - - Alan Green - - - Marty Saxton - - - Marcel Overdijk - - - Jonathan Carlson - - - Thomas Heller - - - John Stump - - - Ivan Ganza - - - Alex Popescu - - - Martin Kempf - - - Martin Ghados - - - Martin Stockhammer - - - Martin C. Martin - - - Alexey Verkhovsky - - - Alberto Mijares - - - Matthias Cullmann - - - Tomek Bujok - - - Stephane Landelle - - - Stephane Maldini - - - Mark Volkmann - - - Andrew Taylor - - - Vladimir Vivien - - - Vladimir Orany - - - Joe Wolf - - - Kent Inge Fagerland Simonsen - - - Tom Nichols - - - Ingo Hoffmann - - - Sergii Bondarenko - - - mgroovy - - - Dominik Przybysz - - - Jason Thomas - - - Trygve Amundsens - - - Morgan Hankins - - - Shruti Gupta - - - Ben Yu - - - Dejan Bosanac - - - Lidia Donajczyk-Lipinska - - - Peter Gromov - - - Johannes Link - - - Chris Reeves - - - Sean Timm - - - Dmitry Vyazelenko - - - - - Groovy Developer List - https://mail-archives.apache.org/mod_mbox/groovy-dev/ - - - Groovy User List - https://mail-archives.apache.org/mod_mbox/groovy-users/ - - - - scm:git:https://github.com/apache/groovy.git - scm:git:https://github.com/apache/groovy.git - https://github.com/apache/groovy.git - - - jira - https://issues.apache.org/jira/browse/GROOVY - - - - - org.codehaus.groovy - groovy - 3.0.20 - - - org.codehaus.groovy - groovy-ant - 3.0.20 - - - org.codehaus.groovy - groovy-astbuilder - 3.0.20 - - - org.codehaus.groovy - groovy-bsf - 3.0.20 - - - org.codehaus.groovy - groovy-cli-commons - 3.0.20 - - - org.codehaus.groovy - groovy-cli-picocli - 3.0.20 - - - org.codehaus.groovy - groovy-console - 3.0.20 - - - org.codehaus.groovy - groovy-datetime - 3.0.20 - - - org.codehaus.groovy - groovy-dateutil - 3.0.20 - - - org.codehaus.groovy - groovy-docgenerator - 3.0.20 - - - org.codehaus.groovy - groovy-groovydoc - 3.0.20 - - - org.codehaus.groovy - groovy-groovysh - 3.0.20 - - - org.codehaus.groovy - groovy-jaxb - 3.0.20 - - - org.codehaus.groovy - groovy-jmx - 3.0.20 - - - org.codehaus.groovy - groovy-json - 3.0.20 - - - org.codehaus.groovy - groovy-jsr223 - 3.0.20 - - - org.codehaus.groovy - groovy-macro - 3.0.20 - - - org.codehaus.groovy - groovy-nio - 3.0.20 - - - org.codehaus.groovy - groovy-servlet - 3.0.20 - - - org.codehaus.groovy - groovy-sql - 3.0.20 - - - org.codehaus.groovy - groovy-swing - 3.0.20 - - - org.codehaus.groovy - groovy-templates - 3.0.20 - - - org.codehaus.groovy - groovy-test - 3.0.20 - - - org.codehaus.groovy - groovy-test-junit5 - 3.0.20 - - - org.codehaus.groovy - groovy-testng - 3.0.20 - - - org.codehaus.groovy - groovy-xml - 3.0.20 - - - org.codehaus.groovy - groovy-yaml - 3.0.20 - - - - diff --git a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom.sha1 b/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom.sha1 deleted file mode 100644 index 71806f055..000000000 --- a/code/arachne/org/codehaus/groovy/groovy-bom/3.0.20/groovy-bom-3.0.20.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6a43cbb2a5354e80f0acefa6b0977752a4147d9b \ No newline at end of file diff --git a/code/arachne/org/codehaus/jettison/jettison/1.5.4/_remote.repositories b/code/arachne/org/codehaus/jettison/jettison/1.5.4/_remote.repositories deleted file mode 100644 index 2fc4a3105..000000000 --- a/code/arachne/org/codehaus/jettison/jettison/1.5.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:46 EDT 2024 -jettison-1.5.4.pom>central= diff --git a/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom b/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom deleted file mode 100644 index 11fb257d3..000000000 --- a/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom +++ /dev/null @@ -1,209 +0,0 @@ - - 4.0.0 - org.codehaus.jettison - jettison - 1.5.4 - bundle - Jettison - A StAX implementation for JSON. - https://github.com/jettison-json/jettison - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - junit - junit - 4.13.2 - test - - - com.fasterxml.woodstox - woodstox-core - 6.4.0 - test - - - - scm:git:http://github.com/jettison-json/jettison.git - scm:git:https://github.com/jettison-json/jettison.git - https://github.com/jettison-json/jettison - jettison-1.5.4 - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.2.5 - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - 1.8 - 1.8 - true - true - true - true - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://oss.sonatype.org/ - true - - - - org.apache.felix - maven-bundle-plugin - true - 5.1.6 - - - ${project.artifactId} - ${project.groupId}.${project.artifactId} - org.codehaus.jettison*;version=${project.version} - javax.xml,* - ${project.name} - ${project.version} - <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@))) - <_nouses>true - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - false - clean install - deploy - -Prelease - true - - - - - - - - release - - - - - true - maven-deploy-plugin - 2.8.2 - - ${deploy.altRepository} - true - - - - - maven-gpg-plugin - 3.0.1 - - - - sign - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - org.apache.maven.plugins - maven-surefire-plugin - - pertest - - - - - - - The Jettison Team - https://github.com/jettison-json/jettison - - - diff --git a/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom.sha1 b/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom.sha1 deleted file mode 100644 index c82ae2bca..000000000 --- a/code/arachne/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0bff475742af13b074e15bfc4b765c02a86863fd \ No newline at end of file diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/_remote.repositories b/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/_remote.repositories deleted file mode 100644 index 0ae297ac8..000000000 --- a/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:06 EDT 2024 -animal-sniffer-annotations-1.14.pom>central= diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom b/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom deleted file mode 100644 index 4310d2fc8..000000000 --- a/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom +++ /dev/null @@ -1,70 +0,0 @@ - - - - 4.0.0 - - - org.codehaus.mojo - animal-sniffer-parent - 1.14 - - - animal-sniffer-annotations - - Animal Sniffer Annotations - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java - - enforce - - - - - Annotations require Java 1.5+ to compile - [1.5,) - - - - - - - - maven-compiler-plugin - - 1.5 - 1.5 - - - - - - diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom.sha1 b/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom.sha1 deleted file mode 100644 index 42fb037be..000000000 --- a/code/arachne/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -99a56e3312f8ece1d457c8ca0a3c4b69d173d000 \ No newline at end of file diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/_remote.repositories b/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/_remote.repositories deleted file mode 100644 index 177c29e9c..000000000 --- a/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:06 EDT 2024 -animal-sniffer-parent-1.14.pom>central= diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom b/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom deleted file mode 100644 index a4bd75032..000000000 --- a/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom +++ /dev/null @@ -1,123 +0,0 @@ - - - - 4.0.0 - - - org.codehaus.mojo - mojo-parent - 34 - - - org.codehaus.mojo - animal-sniffer-parent - 1.14 - pom - - Animal Sniffer - - Animal Sniffer Parent project. - - http://mojo.codehaus.org/animal-sniffer - 2008 - - - MIT license - http://www.opensource.org/licenses/mit-license.php - repo - - - - - - Kohsuke Kaw - kohsuke (dot) kawaguchi (at) sun (dot) com - - Lead Developer - - -8 - - - Stephen Connolly - stephen (dot) alan (dot) connolly (at) gmail (dot) com - - Developer - - 0 - - - - - java-boot-classpath-detector - animal-sniffer-annotations - animal-sniffer - animal-sniffer-maven-plugin - animal-sniffer-enforcer-rule - animal-sniffer-ant-tasks - - - - scm:svn:https://svn.codehaus.org/mojo/tags/animal-sniffer-parent-1.14 - scm:svn:https://svn.codehaus.org/mojo/tags/animal-sniffer-parent-1.14 - http://fisheye.codehaus.org/browse/mojo/tags/animal-sniffer-parent-1.14 - - - jira - http://jira.codehaus.org/browse/MANIMALSNIFFER - - - - codehaus.org - Mojo Website - dav:https://dav.codehaus.org/mojo/animal-sniffer - - - - - 3.3 - - - - - - - org.apache.maven.plugins - maven-invoker-plugin - 1.9 - - src/it - ${project.build.directory}/it - ${project.build.directory}/local-repo - src/it/settings.xml - true - true - verify - - - - - - - diff --git a/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom.sha1 b/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom.sha1 deleted file mode 100644 index be9e9b242..000000000 --- a/code/arachne/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c1e91a9c2f36d9e6d3c7087242d8d9ec56052e5d \ No newline at end of file diff --git a/code/arachne/org/codehaus/mojo/mojo-parent/34/_remote.repositories b/code/arachne/org/codehaus/mojo/mojo-parent/34/_remote.repositories deleted file mode 100644 index 0b1164acb..000000000 --- a/code/arachne/org/codehaus/mojo/mojo-parent/34/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:06 EDT 2024 -mojo-parent-34.pom>central= diff --git a/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom b/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom deleted file mode 100644 index 9f95a812e..000000000 --- a/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom +++ /dev/null @@ -1,667 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus - codehaus-parent - 4 - - - org.codehaus.mojo - mojo-parent - 34 - pom - - Codehaus Mojo Parent - http://mojo.codehaus.org - - Codehaus - http://codehaus.org - - - - - Development List - dev-subscribe@mojo.codehaus.org - dev-unsubscribe@mojo.codehaus.org - dev@mojo.codehaus.org - http://markmail.org/list/org.codehaus.mojo.dev - - http://mojo.10943.n7.nabble.com/Developer-f3.html - - - - User List - user-subscribe@mojo.codehaus.org - user-unsubscribe@mojo.codehaus.org - user@mojo.codehaus.org - http://markmail.org/list/org.codehaus.mojo.user - - http://mojo.10943.n7.nabble.com/User-f34162.html - - - - Commits List - scm-subscribe@mojo.codehaus.org - scm-unsubscribe@mojo.codehaus.org - http://markmail.org/list/org.codehaus.mojo.scm - - - Announcements List - announce-subscribe@mojo.codehaus.org - announce-unsubscribe@mojo.codehaus.org - announce@mojo.codehaus.org - http://markmail.org/list/org.codehaus.mojo.announce - - http://mojo.10943.n7.nabble.com/Announce-f38303.html - - - - - - - 2.2.1 - - - - scm:svn:http://svn.codehaus.org/mojo/tags/mojo-parent-34 - scm:svn:https://svn.codehaus.org/mojo/tags/mojo-parent-34 - http://fisheye.codehaus.org/browse/mojo/tags/mojo-parent-34 - - - jira - http://jira.codehaus.org/browse/MOJO - - - bamboo - http://bamboo.ci.codehaus.org/browse/MOJO - - - - codehaus.org - Mojo Website - dav:https://dav.codehaus.org/mojo/ - - - - - UTF-8 - ${project.prerequisites.maven} - 1.5 - UTF-8 - - true - - true - - - - - codehaus-snapshots - Codehaus Snapshots - http://nexus.codehaus.org/snapshots/ - - false - - - - - - - - org.apache.maven - maven-plugin-api - 2.2.1 - - - junit - junit - 4.11 - test - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.13 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - ${mojo.java.target} - ${mojo.java.target} - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.9 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.9 - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.4 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.3 - - - help-mojo - - helpmojo - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.2 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - https://svn.codehaus.org/mojo/tags - false - -Pmojo-release - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - org.apache.maven.plugins - maven-source-plugin - 2.3 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.17 - - ${surefire.redirectTestOutputToFile} - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.17 - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.11 - - - org.codehaus.mojo - cobertura-maven-plugin - 2.6 - - - org.codehaus.mojo - l10n-maven-plugin - 1.0-alpha-2 - - - org.codehaus.mojo - license-maven-plugin - 1.7 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.codehaus.mojo - versions-maven-plugin - 2.1 - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - mojo-enforcer-rules - validate - - enforce - - - - - - org.codehaus.plexus:plexus-component-api - - The plexus-component-api conflicts with the plexus-container-default used by Maven. You probably added a dependency that is missing the exclusions. - - - Mojo is synchronized with repo1.maven.org. The rules for repo1.maven.org are that pom.xml files should not include repository definitions. If repository definitions are included, they must be limited to SNAPSHOT only repositories. - true - true - true - - codehaus-snapshots - apache.snapshots - - - - Best Practice is to always define plugin versions! - true - true - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - - - - clean - - - - - - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - 2.7 - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.3 - - - - ${mojo.java.target} - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - - cim - dependency-info - index - issue-tracking - mailing-list - project-team - scm - summary - - - - - - - - - - mojo-release - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.4 - - - - - attach-source-release-distro - package - - single - - - true - - source-release - - gnu - - - - - - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - reporting - - - skipReports - !true - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.13 - - config/maven_checks.xml - config/maven-header.txt - - - - - checkstyle - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - true - - http://junit.sourceforge.net/javadoc/ - - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - 3.3 - - - org.codehaus.plexus - plexus-component-javadoc - 1.5.5 - - - - - - - javadoc - test-javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.4 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.2 - - ${mojo.java.target} - - http://svn.codehaus.org/mojo/tags/mojo-parent-34/src/main/config/pmd/mojo_rules.xml - - - ${project.build.directory}/generated-sources/antlr - ${project.build.directory}/generated-sources/javacc - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - - cim - dependencies - dependency-convergence - dependency-info - dependency-management - index - issue-tracking - license - mailing-list - plugin-management - project-team - scm - summary - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.17 - - - - report - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.6 - - - - **/HelpMojo.class - - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-site-plugin - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - diff --git a/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom.sha1 b/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom.sha1 deleted file mode 100644 index c5f6133ea..000000000 --- a/code/arachne/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -803dc5cf36e504c5a48aa9a321f7fba1d6396733 \ No newline at end of file diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.5/_remote.repositories b/code/arachne/org/cryptacular/cryptacular/1.2.5/_remote.repositories deleted file mode 100644 index 86ff2b7a4..000000000 --- a/code/arachne/org/cryptacular/cryptacular/1.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:44 EDT 2024 -cryptacular-1.2.5.pom>central= diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom b/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom deleted file mode 100644 index a2be1b00e..000000000 --- a/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom +++ /dev/null @@ -1,399 +0,0 @@ - - - 4.0.0 - org.cryptacular - cryptacular - jar - 1.2.5 - Cryptacular Library - The spectacular complement to the Bouncy Castle crypto API for Java. - http://www.cryptacular.org - - GitHub - https://github.com/vt-middleware/cryptacular/issues - - - - cryptacular - cryptacular+subscribe@googlegroups.com - cryptacular+unsubscribe@googlegroups.com - cryptacular@googlegroups.com - http://groups.google.com/group/cryptacular - - - - - Apache 2 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - GNU Lesser General Public License - http://www.gnu.org/licenses/lgpl-3.0.txt - - - - scm:git:git@github.com:vt-middleware/cryptacular.git - scm:git:git@github.com:vt-middleware/cryptacular.git - HEAD - - - - dfisher - Daniel Fisher - dfisher@vt.edu - Virginia Tech - http://www.vt.edu - - developer - - - - serac - Marvin S. Addison - serac@vt.edu - Virginia Tech - http://www.vt.edu - - developer - - - - - - UTF-8 - UTF-8 - ${basedir}/src/main/checkstyle - ${basedir}/src/main/assembly - 0 - true - 1.2.0 - - - - - org.bouncycastle - bcprov-jdk18on - 1.71 - - - org.testng - testng - 7.5 - test - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - [3.8.0,) - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - 3.2.0 - - - copy-info - validate - - copy-resources - - - ${basedir}/target/package-info - - - ${basedir} - false - - README* - LICENSE* - NOTICE* - pom.xml - - - - - - - copy-scripts - validate - - copy-resources - - - ${basedir}/target/bin - - - bin - true - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-deploy-plugin - 3.0.0-M2 - - - org.apache.maven.plugins - maven-install-plugin - 3.0.0-M1 - - - org.apache.maven.plugins - maven-site-plugin - 3.11.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - true - true - true - true - -Xlint:unchecked - 1.8 - 1.8 - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.1.2 - - - com.puppycrawl.tools - checkstyle - - 9.3 - - - - ${checkstyle.dir}/checks.xml - ${checkstyle.dir}/header.txt - ${checkstyle.dir}/suppressions.xml - true - true - plain - ${project.build.directory}/checkstyle-result.txt - - - - checkstyle - compile - - checkstyle - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - 10 - - - surefire.testng.verbose - ${testng.verbosity} - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - 0.15.7 - - - - ${project.groupId} - ${project.artifactId} - ${japicmp.oldVersion} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} - - - - false - true - ${japicmp.enabled} - - jar - - - - - - verify - - cmp - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.2 - - 8 - - http://download.oracle.com/javase/8/docs/api - - Copyright © 2003-2022 Virginia Tech. All Rights Reserved.
    ]]> - - - - javadoc - package - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - source - package - - jar - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - jar - package - - test-jar - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.4 - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.3.0 - - true - false - - ${assembly.dir}/cryptacular.xml - - - 0755 - - - - - assembly - package - - single - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M5 - - v@{project.version} - - - - - - - sign-artifacts - - - sign - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - package - - sign - - - - - - - - - diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom.sha1 b/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom.sha1 deleted file mode 100644 index 4cc77d93b..000000000 --- a/code/arachne/org/cryptacular/cryptacular/1.2.5/cryptacular-1.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e30142e5695e57a00e584257533b734439cee779 \ No newline at end of file diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.6/_remote.repositories b/code/arachne/org/cryptacular/cryptacular/1.2.6/_remote.repositories deleted file mode 100644 index 56a791e4c..000000000 --- a/code/arachne/org/cryptacular/cryptacular/1.2.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:36 EDT 2024 -cryptacular-1.2.6.pom>central= diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom b/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom deleted file mode 100644 index fa2b8861a..000000000 --- a/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom +++ /dev/null @@ -1,400 +0,0 @@ - - - 4.0.0 - org.cryptacular - cryptacular - jar - 1.2.6 - Cryptacular Library - The spectacular complement to the Bouncy Castle crypto API for Java. - http://www.cryptacular.org - - GitHub - https://github.com/vt-middleware/cryptacular/issues - - - - cryptacular - cryptacular+subscribe@googlegroups.com - cryptacular+unsubscribe@googlegroups.com - cryptacular@googlegroups.com - http://groups.google.com/group/cryptacular - - - - - Apache 2 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - GNU Lesser General Public License - http://www.gnu.org/licenses/lgpl-3.0.txt - - - - scm:git:git@github.com:vt-middleware/cryptacular.git - scm:git:git@github.com:vt-middleware/cryptacular.git - HEAD - - - - dfisher - Daniel Fisher - dfisher@vt.edu - Virginia Tech - http://www.vt.edu - - developer - - - - serac - Marvin S. Addison - serac@vt.edu - Virginia Tech - http://www.vt.edu - - developer - - - - - - UTF-8 - UTF-8 - ${basedir}/src/main/checkstyle - ${basedir}/src/main/assembly - 0 - true - 1.2.0 - - - - - org.bouncycastle - bcprov-jdk18on - 1.76 - - - - org.testng - testng - 7.5.1 - test - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.3.0 - - - enforce-maven - - enforce - - - - - [3.8.0,) - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - copy-info - validate - - copy-resources - - - ${basedir}/target/package-info - - - ${basedir} - false - - README* - LICENSE* - NOTICE* - pom.xml - - - - - - - copy-scripts - validate - - copy-resources - - - ${basedir}/target/bin - - - bin - true - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-install-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-site-plugin - 3.11.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - true - true - true - true - -Xlint:unchecked - 1.8 - 1.8 - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.0 - - - com.puppycrawl.tools - checkstyle - - 9.3 - - - - ${checkstyle.dir}/checks.xml - ${checkstyle.dir}/header.txt - ${checkstyle.dir}/suppressions.xml - true - true - plain - ${project.build.directory}/checkstyle-result.txt - - - - checkstyle - compile - - checkstyle - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.1.2 - - 10 - - - surefire.testng.verbose - ${testng.verbosity} - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - 0.17.2 - - - - ${project.groupId} - ${project.artifactId} - ${japicmp.oldVersion} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} - - - - false - true - ${japicmp.enabled} - - jar - - - - - - verify - - cmp - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - 8 - - http://download.oracle.com/javase/8/docs/api - - Copyright © 2003-2023 Virginia Tech. All Rights Reserved.

    &G#1r`Wjc)yL_9ChoWE$| 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 - - - - - 4.0.0 - - - org.apache.maven.plugins - maven-plugins - 34 - - - - maven-compiler-plugin - 3.10.1 - maven-plugin - - Apache Maven Compiler Plugin - The Compiler Plugin is used to compile the sources of your project. - 2001 - - - ${mavenVersion} - - - - scm:git:https://github.com/apache/maven-compiler-plugin.git - scm:git:https://github.com/apache/maven-compiler-plugin.git - https://github.com/apache/maven-compiler-plugin/tree/${project.scm.tag} - maven-compiler-plugin-3.10.1 - - - JIRA - https://issues.apache.org/jira/browse/MCOMPILER - - - Jenkins - https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-compiler-plugin/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 3.2.5 - - 3.5 - 2.11.1 - - 2.4.21 - 3.7.0 - 2.5.14-02 - 1.1.1 - 8 - false - 2.22.2 - 3.6.2 - 2022-03-08T01:03:47Z - - - - - Jan Sievers - - - - - - plexus.snapshots - https://oss.sonatype.org/content/repositories/plexus-snapshots - - false - - - true - - - - - - - - - com.thoughtworks.qdox - qdox - 2.0.1 - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - provided - - - org.apache.maven - maven-artifact - ${mavenVersion} - provided - - - org.apache.maven - maven-core - ${mavenVersion} - provided - - - org.apache.maven.shared - maven-shared-utils - 3.3.4 - - - org.apache.maven.shared - maven-shared-incremental - 1.1 - - - maven-core - org.apache.maven - - - maven-plugin-api - org.apache.maven - - - maven-shared-utils - org.apache.maven.shared - - - - - - org.codehaus.plexus - plexus-java - ${plexus-java.version} - - - - org.codehaus.plexus - plexus-compiler-api - ${plexusCompilerVersion} - - - org.codehaus.plexus - plexus-component-api - - - - - org.codehaus.plexus - plexus-compiler-manager - ${plexusCompilerVersion} - - - org.codehaus.plexus - plexus-component-api - - - - - org.codehaus.plexus - plexus-compiler-javac - ${plexusCompilerVersion} - runtime - - - org.codehaus.plexus - plexus-component-api - - - - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 3.3.0 - test - - - org.apache.maven - maven-compat - ${mavenVersion} - test - - - org.mockito - mockito-core - 4.3.1 - test - - - junit - junit - 4.13.2 - test - - - - - - - - org.apache.rat - apache-rat-plugin - - - .java-version - - - - - maven-enforcer-plugin - 3.0.0-M3 - - - enforce-bytecode-version - - - - ${javaVersion} - - org.ow2.asm:asm - - - - - - - - - - org.apache.maven.plugins - maven-invoker-plugin - 3.2.2 - - - org.apache.maven.plugins - maven-jxr-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.2 - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M5 - - - - - - org.codehaus.plexus - plexus-component-metadata - 2.1.1 - - - descriptors - - generate-metadata - - - - - - - - - - run-its - - - - - org.apache.maven.plugins - maven-invoker-plugin - - - integration-test - - - true - - true - src/it - ${project.build.directory}/it - - */pom.xml - extras/*/pom.xml - multirelease-patterns/*/pom.xml - - - - setup_jar_module/pom.xml - setup_jar_automodule/pom.xml - setup_x/pom.xml - - - setup_x/** - - verify - ${project.build.directory}/local-repo - src/it/settings.xml - ${maven.it.failure.ignore} - true - - - ${https.protocols} - - - clean - test-compile - - - - - - - - - - - diff --git a/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.pom.sha1 deleted file mode 100644 index 4f6527f57..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-compiler-plugin/3.10.1/maven-compiler-plugin-3.10.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9b0eb257801d7fc360fa7808542941f33f168563 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/_remote.repositories deleted file mode 100644 index 5424e711a..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:46 EDT 2024 -maven-failsafe-plugin-3.1.2.jar>central= -maven-failsafe-plugin-3.1.2.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar deleted file mode 100644 index f2afa6c89491e5995f5ccd4decb49adada35d438..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 53828 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 diff --git a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar.sha1 b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar.sha1 deleted file mode 100644 index a978ce8bd..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -219ab3830d587d257103c6232ca3b89917436711 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom deleted file mode 100644 index 3e04a38a3..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom +++ /dev/null @@ -1,296 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 3.1.2 - - - org.apache.maven.plugins - maven-failsafe-plugin - maven-plugin - - Maven Failsafe Plugin - Maven Failsafe MOJO in maven-failsafe-plugin. - - - ${mavenVersion} - - - - Failsafe - Surefire - 8184 - 8185 - - - - - org.apache.maven.surefire - maven-surefire-common - ${project.version} - - - org.apache.maven.plugins - maven-surefire-plugin - ${project.version} - site-source - zip - provided - - - org.apache.maven - maven-plugin-api - provided - - - org.apache.maven - maven-core - provided - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - org.mockito - mockito-core - test - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - org.jacoco - jacoco-maven-plugin - - jacoco.agent - - - - jacoco-agent - - prepare-agent - - - - - - maven-surefire-plugin - - ${jvm.args.tests} ${jacoco.agent} - - **/JUnit4SuiteTest.java - - - - - org.apache.maven.surefire - surefire-shadefire - 3.1.0 - - - - - - maven-dependency-plugin - - - site-site - - unpack-dependencies - - pre-site - - maven-surefire-plugin - provided - zip - site-source - ${project.build.directory}/source-site - true - - - - - - maven-resources-plugin - - - copy-resources - - copy-resources - - pre-site - - ${basedir}/../target/source-site - - - ${basedir}/../src/site - false - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - generate-test-report - - run - - pre-site - - - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - ${project.build.directory}/source-site - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - - - - - ci - - - enableCiProfile - true - - - - - - maven-docck-plugin - 1.1 - - - - check - - - - - - - - - run-its - - verify - - - org.apache.maven.plugins - maven-invoker-plugin - - - pre-its - - install - - pre-integration-test - - ${skipTests} - - - - integration-test - - run - - - src/it - ${project.build.directory}/it - - verify - -nsu - - - */pom.xml - - verify - src/it/settings.xml - ${skipTests} - true - - ${failsafe-integration-test-port} - ${failsafe-integration-test-stop-port} - - true - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-changes-plugin - - false - - - - - jira-report - - - - - - - - - diff --git a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom.sha1 deleted file mode 100644 index f80aa7639..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-failsafe-plugin/3.1.2/maven-failsafe-plugin-3.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e9cb1f6249e7f8b35864b8b54072c7c2fba07cfd \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/34/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-plugins/34/_remote.repositories deleted file mode 100644 index 203fb56d7..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-plugins/34/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:45 EDT 2024 -maven-plugins-34.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom b/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom deleted file mode 100644 index d07bdaa29..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom +++ /dev/null @@ -1,289 +0,0 @@ - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 34 - ../pom.xml - - - org.apache.maven.plugins - maven-plugins - pom - - Apache Maven Plugins - Maven Plugins - https://maven.apache.org/plugins/ - - - Jenkins - https://builds.apache.org/job/maven-plugins/ - - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/plugins-archives/ - - - - - plugins-archives/${project.artifactId}-LATEST - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - - - JIRA - - 1000 - true - - org/apache/maven/plugins - - [ANN] ${project.name} ${project.version} Released - - announce@maven.apache.org - users@maven.apache.org - - - dev@maven.apache.org - - - ${apache.availid} - ${smtp.host} - - - - - org.apache.maven.shared - maven-shared-resources - 2 - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - ${mavenPluginToolsVersion} - - - - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/plugins/tags - apache-release,run-its - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginToolsVersion} - - - default-descriptor - process-classes - - - generate-helpmojo - - helpmojo - - - - - - - org.apache.maven.plugins - maven-site-plugin - - true - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - scm-publish - site-deploy - - publish-scm - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - org.apache.maven.plugins - maven-enforcer-plugin - - - - enforce - - ensure-no-container-api - - - - - org.codehaus.plexus:plexus-component-api - - The new containers are not supported. You probably added a dependency that is missing the exclusions. - - - true - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginToolsVersion} - - - - - - - quality-checks - - - quality-checks - true - - - - - - org.apache.maven.plugins - maven-docck-plugin - - - docck-check - verify - - check - - - - - - - - - run-its - - - ${maven.compiler.source} - ${maven.compiler.target} - false - - - - - org.apache.maven.plugins - maven-invoker-plugin - - true - src/it - ${project.build.directory}/it - setup - verify - ${project.build.directory}/local-repo - src/it/settings.xml - - */pom.xml - - - ${invoker.maven.compiler.source} - ${invoker.maven.compiler.target} - - ${https.protocols} - - ${maven.it.failure.ignore} - - - - integration-test - - install - integration-test - verify - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-invoker-plugin - - - - - - diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom.sha1 deleted file mode 100644 index 9cd080e26..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -039027f0abac25deccfc21486550731fa5f55858 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/35/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-plugins/35/_remote.repositories deleted file mode 100644 index d44caf87b..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-plugins/35/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:44 EDT 2024 -maven-plugins-35.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom b/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom deleted file mode 100644 index da0ba4608..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom +++ /dev/null @@ -1,273 +0,0 @@ - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 35 - ../pom.xml - - - org.apache.maven.plugins - maven-plugins - pom - - Apache Maven Plugins - Maven Plugins - https://maven.apache.org/plugins/ - - - Jenkins - https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-plugins/ - - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/plugins-archives/ - - - - - plugins-archives/${project.artifactId}-LATEST - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - - - JIRA - - 1000 - true - - org/apache/maven/plugins - - [ANN] ${project.name} ${project.version} Released - - announce@maven.apache.org - users@maven.apache.org - - - dev@maven.apache.org - - - ${apache.availid} - ${smtp.host} - - - - - org.apache.maven.shared - maven-shared-resources - 2 - - - - - org.apache.maven.plugins - maven-release-plugin - - apache-release,run-its - - - - org.apache.maven.plugins - maven-plugin-plugin - - - default-descriptor - process-classes - - - generate-helpmojo - - helpmojo - - - - - - - org.apache.maven.plugins - maven-site-plugin - - true - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - - enforce - - ensure-no-container-api - - - - - org.codehaus.plexus:plexus-component-api - - The new containers are not supported. You probably added a dependency that is missing the exclusions. - - - true - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - - - - - quality-checks - - - quality-checks - true - - - - - - org.apache.maven.plugins - maven-docck-plugin - - - docck-check - verify - - check - - - - - - - - - run-its - - - ${maven.compiler.source} - ${maven.compiler.target} - false - - - - - org.apache.maven.plugins - maven-invoker-plugin - - true - src/it - ${project.build.directory}/it - setup - verify - ${project.build.directory}/local-repo - src/it/settings.xml - - */pom.xml - - - ${invoker.maven.compiler.source} - ${invoker.maven.compiler.target} - - ${https.protocols} - - ${maven.it.failure.ignore} - - - - integration-test - - install - integration-test - verify - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-invoker-plugin - - - - - - diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom.sha1 deleted file mode 100644 index 43ac39a44..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -819905e407cb91f2dbddc84b85b992f67a711b6d \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/39/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-plugins/39/_remote.repositories deleted file mode 100644 index 02fe3f56e..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-plugins/39/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:45 EDT 2024 -maven-plugins-39.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom b/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom deleted file mode 100644 index 32cacdb97..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom +++ /dev/null @@ -1,236 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven - maven-parent - 39 - ../pom.xml - - - org.apache.maven.plugins - maven-plugins - pom - - Apache Maven Plugins - Maven Plugins - https://maven.apache.org/plugins/ - - - Jenkins - https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-plugins/ - - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/plugins-archives/ - - - - - plugins-archives/${project.artifactId}-LATEST - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - - - - - - - - org.apache.maven.plugins - maven-release-plugin - - apache-release,run-its - - - - org.apache.maven.plugins - maven-plugin-plugin - - - default-descriptor - process-classes - - ./apidocs/ - - - - generate-helpmojo - - helpmojo - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - true - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - ${project.reporting.outputDirectory} - - - - - scm-publish - - publish-scm - - site-deploy - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - ensure-no-container-api - - enforce - - - - - - org.codehaus.plexus:plexus-component-api - - The new containers are not supported. You probably added a dependency that is missing the exclusions. - - - true - - - - - - - - - - quality-checks - - - quality-checks - true - - - - - - org.apache.maven.plugins - maven-docck-plugin - - - docck-check - - check - - verify - - - - - - - - run-its - - - ${maven.compiler.source} - ${maven.compiler.target} - - - - - org.apache.maven.plugins - maven-invoker-plugin - - true - src/it - ${project.build.directory}/it - setup - verify - ${project.build.directory}/local-repo - src/it/settings.xml - - */pom.xml - - - ${invoker.maven.compiler.source} - ${invoker.maven.compiler.target} - - - - - integration-test - - install - integration-test - verify - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-plugin-report-plugin - - - org.apache.maven.plugins - maven-invoker-plugin - - - - - - diff --git a/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom.sha1 deleted file mode 100644 index acf6c3732..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0cc43509e437079ac1255236ccdcbef302daa93d \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/_remote.repositories deleted file mode 100644 index 82423c4f6..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:45 EDT 2024 -maven-resources-plugin-3.3.1.pom>central= -maven-resources-plugin-3.3.1.jar>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar deleted file mode 100644 index 6a792bc2ed685356d8894bc797926e615ccd57ba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 30951 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 diff --git a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar.sha1 b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar.sha1 deleted file mode 100644 index f0a819209..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5a0e59faaaec9485868660696dd0808f483917d0 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom deleted file mode 100644 index 3cf203c96..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom +++ /dev/null @@ -1,237 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.plugins - maven-plugins - 39 - - - maven-resources-plugin - 3.3.1 - maven-plugin - - Apache Maven Resources Plugin - The Resources Plugin handles the copying of project resources to the output - directory. There are two different kinds of resources: main resources and test resources. The - difference is that the main resources are the resources associated with the main - source code while the test resources are associated with the test source code. - Thus, this allows the separation of resources for the main source code and its - unit tests. - 2001 - - - - Graham Leggett - - - - - ${mavenVersion} - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-resources-plugin.git - scm:git:https://gitbox.apache.org/repos/asf/maven-resources-plugin.git - maven-resources-plugin-3.3.1 - https://github.com/apache/maven-resources-plugin/tree/${project.scm.tag} - - - JIRA - https://issues.apache.org/jira/browse/MRESOURCES - - - Jenkins - https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-resources-plugin/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 3.3.1 - 3.2.5 - 8 - 2023-03-21T12:00:59Z - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - provided - - - org.apache.maven - maven-core - ${mavenVersion} - provided - - - org.apache.maven - maven-model - ${mavenVersion} - provided - - - org.apache.maven - maven-settings - ${mavenVersion} - provided - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - org.codehaus.plexus - plexus-interpolation - 1.26 - runtime - - - org.eclipse.sisu - org.eclipse.sisu.plexus - 0.3.5 - provided - - - org.codehaus.plexus - plexus-utils - 3.5.1 - - - org.apache.maven.shared - maven-filtering - ${mavenFilteringVersion} - - - - commons-io - commons-io - 2.11.0 - compile - - - org.apache.commons - commons-lang3 - 3.12.0 - compile - - - - org.apache.maven - maven-compat - ${mavenVersion} - test - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 3.3.0 - test - - - junit - junit - 4.13.2 - test - - - org.apache.maven.resolver - maven-resolver-api - 1.6.3 - test - - - - - - - org.apache.rat - apache-rat-plugin - - - - src/it/** - - - - - - - - - run-its - - - - - org.apache.maven.plugins - maven-invoker-plugin - - true - verify - setup - ${project.build.directory}/local-repo - - clean - process-test-resources - - src/it/settings.xml - ${project.build.directory}/it - - fromExecProps - - - - - - - - org.eclipse.sisu - sisu-maven-plugin - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - diff --git a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom.sha1 deleted file mode 100644 index 5e266d5a4..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9966f75b0f17184e0a3b7716adcb2f6b753e3088 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/_remote.repositories deleted file mode 100644 index 9c2de8bc1..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:46 EDT 2024 -maven-surefire-plugin-3.1.2.pom>central= -maven-surefire-plugin-3.1.2.jar>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar deleted file mode 100644 index 6515aef80281c3451c152ae9254f816bfb2ae7c7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43294 zcmb5U1B@_jw!K>OG4n=tzzMJYPq@{(16P;_?pOR(&9gzf}L595MgT;s5Rn(Eq!ze+kw9 zUoY4HPZIujcih#4t8)Vb0383bd{F-(`+u8AL{vdkPDE5rSW;AZBz@Cqg8?Dz))Q)5 z(aZ{4m}~Kaj*uZ4&UTT|wk{O06-nEP7SkfHw<@>+Fgyc?B6C=xtFL>vwz+{9o|FE^ zg$I87I0KUEJSrb_0zw-BO^FCWp9oVqurYf#Ss_RzS?bLq~FfD~y{k=!1K8OB8uZf6UIt$t54+^4bj+{BrJxF;pCe<47p>?bCryV#U zxNqMH_7hzi6LR3GsLJTb7OdxmX}d%=Mj55q!e`IkAG{z-_0jGKqmGmJV25Rw{NJrZ z9*lNhcZg^rmJ&k4AdoXUvNNV3LLD<7%2kZPrqS0k@(Ix4K!I=>2!sKz9=8Uyc7*D5 z4D)?id$Gg1riLOrBKF3%66|}>NJm0|KQ>VFH3mY~j!d?Wv^d9l@9-#@2JE_Qs&&}~_I+U6xUBl{%}d3A z(Jt1Zw;PpC#e_=$WWdi=K|e=&S7AP^U2b8s6o3jrmD9^;jewmEGRaisr8$iIpxPNd znl;Vg)<&(9i1Ny_Af4}Ob(y(U)_dhPHLPo|jovm4KF(;a0do5a;U^ry4;WSf`$Z!hZc@3@CRi2wLg^jF z(lEGwLdX{PElTG*dipxU^}gt4JB$c$txo2aM_t2akVVjO7n3aQKb}ntiwy<%Nn|zi zGyRk)Cz3mzO`$k9?&<6STc75Z(Y_#aUTG0-7E{X-mbyV=BdxiyJ-?)5N{q57i^tcp z*!i{w97W=s7jfngzfsO>Z{EycJY_rBV2JuRcykaj99&w~c_Afqs z_b_~pX}%oCiXfkNOBQ%nM#4B_!O4RP>#xR1WZSp3*ZHXMc32wRGD*pVfNlhzZofz^-G z5k!4I^QQL%7Mr+#sL7VHN?xruoj&B;W{*JMcl3$UPvs!px>j(N>G3=s@u#?MxEx%* zUkZK6x)n8p-#=fj?(%e4u)}=+QLlUX{MK1ub2e_P!`hkb@d|{#t-JNpiXOR;>h96h zrM*pOuWIpdcP8hnu7h@T_w{yne%`0`)16aRpL+h@eh7zugN1yvqN`P@;pPo+viljd zW_~2kf^18cCDtP4X6%;)H`OLLQIA}3L9Ih-X)toBL{NKPQ8A9xN7qB))3#*S=)t`A zCd?^!kXDVH5v*375b6bbUy0ewd6Ub);L^2KsC%H~dAeDsF z3c%dcq#x}E))TD3v4;i2t+s?BtbxMEQtIqq+-oydA81@?t~u`}`OROuG#qpC80zpa zr#YXGZ)HbdoT!}N9}s7zHx(0iJP^`T8%xPrB;jhmYcsH_-w8tS?@4?!773**0Goi**bLV6qjtN9mwiwB#r8Q zdwIU4x8w#sF&qLHJlq4T=lTHHGD(F-5DT&7&(S^6 z3;&%XgYU#rOhfhb@c_I)Y+i;#1??2gg9Tu6W6j=t*H(@ zezKND`wh`)RsqSjToIptkDP#_|aH(>1zbj&Xt{=N|Y9{0;0lEy|A{Nwx z;a3Rxs(W^8e&TK~QN;AwviSimaH#COg8Ra4H@2bRx3boHYuK8AYledaQk>`XQ3?wv zw8#2wKvSysl+a=1%};l9k&*bLXDo!NG>h*Hod{qaP)80vI}a`Q(SLTW0C#FvMMXQ} zaQ0~I&+@VeNpZC=y^!GmK}=f`a5Kng1XO?i)u5#bn7|{kJuZv-yYpTd`7 zG8`IUX8`8GF^H`Vg|}j&#tEaLJuW1uO@9Ccmyc(zNKB$^ z{E|Kar9OE9UVjjbWP!lW9S5*=*bV!2-b2zVsNh44%T-sTQtbdA;}?N9O0^ZW71~k1 zd+wAT2*_a_fCZ3gxg1QUZiEtS>5~fqipIv~1BAFUJMI z?+V_P{qcno4=lHw{6s(8@ZSB*kkxZ5(Ork7)}l1_rP9-kLTQ1{C012!1(yK6P0q9h zRtS1noLtihBex15(wat!8c9@@IA2aKRp6RZk-WM~l=6w?zj8RniJ;83Nsl#0u2Wv3 z2#>;c4>{s+oGFoDvc}d7<>xQ;P9z-#sJPp|A{$`KZU?~4;{mcGI4_!&?8S#_K|FYm ztcBPub9}RIm57WgV!DBM=v&mE!J2Vk`S4)6tT%m-X{Lv^`Ux>rFTt7+umXUAeij;Q zLlO6aw(2UvH#)1WZ-90rraqxyQ8rLwLipKru&#vCK)nn6Bh3X!bODCWEIBYSzH*EJ$Lg-4AtY6q_yg(2uf}IaooIb5M$d$iDI#cQ+l=k7<>aDrY&n*8x3D-K zAL3ELQZZ%_a;_=NGpMLjH#Hvvm(-T}f-ICLdqtr@cl^{!d=;)Bf}d#kSBxlV*#`6_ zjp*<4`xQ%Q{F^I}+j#$9rQEH6i1_RIQX}w58NLT7KAQvWuk;U z73baG{jh?~Ak+k7-qCx=1yYXNG1zKQYN7m>*bssE-GEsgD_q~hNYS0PV-|iR#>C@f z+`lQ#gJ^DZ_{`wjQXt#Ez_&X6Ov~^Y26Ij@fkc5paoB~@^N*U$w}86fhTQM@5yzmR z1KlopS;1ZyWxwuT{wABRdNPlDqPO)F3RqBb_ zT1Pw5O&EB@EX9uGzc6{|MTuYSmVohE6t(Gq3>xx%4nV}q-*EaBWerAh>|2tvnK(}o z;!wZlk(5ChWkyO9F({NR#C%Ib#E6eG=sg2f9bNlTL~lbi66p|Hp?YBk&}*O<>gB63 zpn5Z-xl`rCPMTe*;UU-K6d@cG!0ng^ip(|eIzTLmZP$iQ0)N>Xh~ziT==S9a zG!wN5nIxcU)F@w^Y_ZNF+k3&UypS)hLc5QW;}9&hm(Z6F{eZVB_ah**IGuo{_tbR z6U?4D!&JPbXJ8kZCkRfehC$G(VDgY$RXE&B%1J*jSuB$VsXg`Cf6Xm7Ezf*E zTtCAk-8vF@8*jYxCODaY9<8Se_Gij)Hqg9NBcp1`L-M7dK4(y#Eon9pQAlP#ni=tw zBQo6yoOAUZAVUgmtD!-@f&`YjE4MVW`A}^%~j+tDV6iBLcn7h95 zfj>$n9DDNO3P9?TXAdNG$fDk<^fruCq?+z|t*1=Af|*yV;G04rLYx7tYZA<<(cdS8 zpZ$S5b)I7&ZcsqVn)}3cH;m9PGn@UAJqpx5=Qs++BVw%^S17%B+aem~k}-R1uoTZXN-lx3Bxc5 zYnl*Qq&myY0AIW3_*r9+-`37%RlJ~zXkDn!h3uc-qjm;`x<4IP9Zk#@Tj4V7Fvsx0 zy3XlfGGbiUO|1B9pM0qRyjdxU8dr^NJ|R-V7)NHD zxmJPW3WOZ)BRvz>2f3%m+91G=j?YzI7?)j&XIP|U{3(sp1f9gO%YoB0Zj+H3+mMT+ zOIjMwjR)_Pabf##{^-A$<(VaFWd=Azl+mfS|B|>`Hysdta1Fbh9=l%(v*;#$jhlw3 zG!v@;mtBdX4`PUALU)hN*tG{pslnJPqJ4HwaR<*QTu!VUUpY;X8^De=Tv^lXQ|Gef z{ni!04~PN=bbx@yjHin!G#g0i?nWFE_KI#Lqd&+RX5(mwh6yXzlj7T-+4~E@^^S28 zE<6VoD_mU6wp_U@c5NSDpU-^0-@XTTbtOmBDI0)E7ZL}DeypjBFGhVvK zt`9q#0?@jYcX}YjZIyGk(29m1=pUpD#|T+i`3IQ2e#z4~I@KVcTVh5!D+qPMkndGj z=^4m%q+q}?I*UK{a4OQ7-mw-mfnU3N#EBP~pJrvsmEmUW_&c5*|7K)tWP97lwXa(* z`cK!F*3U_fMztTBzkY3Pz>P&Opx^L$xitBF2(>C3nJlJ=vl6Dm1%NDFW)v2YH&lbc z^yl&S=Os{euUCgoPnUM>kJtC&^F=QLzwU0&H)6BSSG`YP_iv`q+4h5_xvV|wf-{!`?0jgv z!WZfA%t;B4tqU9nA|88xi(AOmYzkNF1kA-xZfa@6yXd7Q^HjrYI;RgD*@)@cs2KptPGzYfsjF`ux6MxMQ zzk?!yW}mQo2!+HaZ5{CtZ)pe9fO`Y?&fLCy{209CCc)uMgQl=#u|FdLI@DU7xO4Uo zFYcrSyg2)xp>9{2Hq9j{2wHto13<#eJ3R}} zImKcy-?6tn&CS}g zNd9(Z0#4C%33$C|8F@rlSC%g6hMLvgRXzFSUWK`?G&6LdFZi_H^4wD%0H51vl1)7s<7pzrNl z02DM1zAsugCLgXbVZm5uM$VoUw{Lclb;CyDZ0kcSAgukx3S=3eIG2_o-!3E(kxwq9 zf%%fb@Fvq`<})62?oGD6u=pdjJXd=MWiYy&Ip5JtOQ=Y&Iv+)uBW}HDo0*3LOeU-z zH$w%l7`@nWf3i0r#x(~>n_z=A@x>QC8p9^0%MnnguCAf}w+BqTkKWFHKk=A@2nDqY_k@y&v1ziOKh1i7H{_M=hGi;k{V<~97SS0JrO@a>ik)b(3Mu3=5aj?YKBzJe?S5AN+@&+%Z7HO}8+!tmx} zIQwc&j0MvJdhoYT)h{8h;9T*x>b`|TK8ea|^Qgh%X*n~udHOsN=1B|#0fL2*$Pa&eU7rCF zQYat`bB6F~kVMp7)!o%sx8?hKFvfN=Cm$$eTk&k(F5!7npB5RU!nEOc@NV7v{O+!s zK3{Kky+6|JR=sPHQb9wZdXg*H;bv79a)yr?q&h{jMmt{DekZjti!<4k?vMIL&p(&A z-;>9MI)bR)5jJhe=YyoO4WyHYRSP3np?6x1xwE1Q|4`aY?1hHEZWaq z3aW_&=j->silNAR&tfkLS$tkK^zHL|Z7k|zdSVUNHGGdS!-C(fhd&`HF_y(Yi1JB) znoC&Onfg0~cVHhUb7U-}09YEhjROAcl{}8S{O-shjP1P9+&{_xS?cV$s3D?8 z^${-C_K%LXzY|6$KeHb?z^;?%QAm&rg2_drdTck{VE|t`l=)Ty%Jo720X`r#x6Jc; zw?P=@R4~1{Wk%35Klk=1*-_xn_56*^D%MO~-Cd2J`5bV_s4!G0&h%UMWCDIxMG}v! z1WqkGxu(FZpb7eZ+ICTg4Pv6pCA7?Y!Sbt*9Yx*|mI?5rPVf7c{=3&_;?x%&$rGXq z!cpk}^Ti<%X3C)QcL&^jU@`ao;)#nss5qj0TQLyEki(ZvQIlP6anUJg+umykKmol{ zU(HV{nU97)AfXE9b!>6xio4X4aZ&{V4-}Ym$q6qbeR{G<`HasM&#HHbddZOGI@)5`QGKhUR@sH%MTa2GFT6(Te0F zSPu7yu+ok50o-6DQ8Hq~aeG-6v(0B47UYu!S!kN_;R4qa)sGjn;X`0~1AtR!LvJ(@ z(ycB55swC%{`w!g;n$nL4S-5+7Q@x|#v+3Cz7>$EARMkrdx1esugaw35mIcP0Ovw~ zL_@F8g@^Y0^~5>Y5(ilKaV*&tUM=Pl3$jWohfYRM6<4sE9_({>sGkVX5PRxTu9im* z4!oAxtK^QlG(t8?>vsqPMzW9H%JXH#1nEH9zCW^xlIu^&^ycc;1bx?qi^H!A>(g4EnXUy%u+*3p0`0{SC z#g7nR_XZsMQwK^f+8S55Ovw>xIIS;z?vDx6mxPOOBB&|OkVKUnIwpj;qCs;c8X_*o(%T9=+%k|8pH-<53mduJ7ghgK!nAk6c`5yLB%6i{6+Dj zCubOj@wDf8?jar_-V}!t_CKg-%Q>|ERR+>0dXNbatamlZHj}y>`}2Am8)ekEe#t0~ z^a7GyS=OOcr)Yf(8>IiG$QZ|~GHwqUy!008&D0+UOx__Ye=^XY+uT0#QA7dfZs-gj z`FBTT{gZ(dBncxaP+(9SY!y3~&@dr%I{$zLV&bWA>~fzH*hl|T zmPpgnMl@RBg5WTBaqV?aCKm|IL#7LYZJ*Len0fbHPHRvvcpC)VH$V+`mg&7h)lFxxxx{t}W}mMp#blH$d!c!O3W8uG;~A!c9^2?wCC zace5!*?V679C%16C(lv@Y3X%H~Lap zt4R!fdPlOp2xpF50Uj(a7iG3M3z>aF$st*km$$_pV@+xOvZKjPd&nvnC0_7S%yn0; zMh$xn=f>;Hyo?KCK1|nn;?*X8m8>T4_MYA8RXMzPwTuom(yWrXZI_TI&ZLlY7bmk2oy@jd zWPD(n499}vjDJ%A!rbm(y#s1OndliDgT?2i(MozWjVX&C$K~e^8vFZ)1C!r=fxr>d z^ww_&h5xO~{q}Bnuwj4+{lDZiB@~4{oK;D`T1XdW^Xf_7%WS-a~rW>SUw_8E-05axh4?>)Qa1I3m z(#v!Sx6BX|n>TpeIl)4ud=GZ+fo!JtT``MX(l_z^l&Wz_A)^FcNY2_Q2y~)J6vjFAPCqV3WI*D zr%yS^XFY5*YZ3Dm+v0~uM{DkF=?2|mL!c~AZZ=GHASSB4OooW@2m5Dyn>D~6R1Y23 zQQJ?rXabKg7!%9-Y+>Sq`0Kw>5b@l^%lthe8+tlnOP3CrO)e_yfT#`ie}Sh2g_ybk zmu`Pi<0eJ=(Tt&t0OG*2^yx+$A+`I2-ynIX@t~3ke&+|!kJZ+Mu(_f^LSQ&aYjpVBz`BLbK!nZwqKrt~9*ac?fzqV*u5lt(L^1Ab9tkMVXqz6Y4PvH-1oo9l$AckT za80BX#l`PvM+c&}@i`;KgwR~~2+b9>PBtnbjL9Ey>8^%-NbkI2M3Acli*hvD=oSiy zG*e}weqVjSA>BZX!89xx9&&>rV!~c<6Ew#ez-+2jv_i=GGo$W##(u<%eF!$*FN4$n z_MmEbQH%mpfsU;#d3VDpgElH>)D7MUR!u$TWDkcyYB6*?=2sm&4LKMzhZ03n8*~nW z6qc8+M(sI8;FQi~lF%B+2Va#-5>x@2WqL6}IJiG90l(5_pW{;_FMoth7{zabW7D&Z89bZKlf5Up1Yre_L=cw^5b-`zr^kIu5a>tG_7vG zJ=}*e-k$#H(Mvfct;ZVc|K*zu+K~hcD!fqLNaTr%xh#V?fjE+|geKmW)3{G4P~mx# zqcKc@9tcUs0qzk*;g*Q=Fhf`pf9m%M`&0b+W3v@TJqlnwM($kHs|zXfL6$^MXO$tS z0?rVYGQ-`qBC+5AVFP$+@tnPnaPl&nRw4y3z1o6S3=Uk#frB~eReTu1f?`sy6@g6c zry8R@;Yc6QSqsJ7r0Yj~TTma6v@T7MqOXHeRgDB0kTR`?HLHc*yD06_tT>hr?Xag% z+>Q<#;h4CJ{(A43(uT!en$$!gjjST)57QVyQaDwHv8H{64~DFB^~`ze@l1YY(>?66 z$N!_T58-ySlZp3Xiub}+F{^gtaJ#XjKS%b+ILuBPa||^C#G$qCGk4;{kyhA5L36r* zYl4!RV%&5nMm5>3%*qNBy$J(XB>=ZuyOKN~%1yW*jACgMl`IKp*P)>~K2EPFw=&e9 zt3}JJVw)~zlAI^`6rKmkv+iUBkOo+l<3(ML)qjQzXQE?D3~qPK0=;fkF)=V?T^MqE z_az040){Qg{wmXM5^HOFi*sY^a`!9#^n1vyvGsTUWG;@kYaPl#{L&-TC;nZ6NgRxM9ep2vj{+wcLe@^gp<7_dVfL|8*%a{@(V z+9)OLj#xX`tMZJQZ>(*3Ylo54I+jcfno@h=y^W7nfk$F5LwND@+xx8JsKLd`3ZeG9 zw|zk23++n(Ee+-B?Z}aSEnDw}%uyl#dPrz+Th}t~k4r{zIiASDBDG=sw=>S|Vxp$! zV$614ONXt`wf)+A;Ez3zk^T_BTSgFvw*WF)sN+4NF=aGLlV^qrt6O3^a_R(1K_Pto z6;o^f7x4Bp_>EH~#i{rcs`0~OJ@6H4#NP}&5kZP^K^0kO>no?wMh+g8C9!z~?E-V+ zaSz!wz1;!K(P#sDK*HATChLmXv(;{#$XxI)UL~S^3gZPTtZazLtgaakNdxoZUsU=?o8=0(@P-ECW0Oi;h^m7EX0}ME62$?LT_920L=l^I zJWohh79v^kP*D}V8x^BwmYi7ryC2@NPtNB)w%nGMosCoLxBAn#1>gQ_HH{+%inRj} zs!+DKx<(Uc(A&c%3r4hvLSX|(FGQ?}(UhZhLmpqhK(1 zz2uU71(tl5Sw099IkOW^$~y@rAB?x#T}$y(`xa4D^W3#Z)#;m z?NAYzZlaf}gZ>UKfN7y2dMGTj6)p3L09!Y!Ku0FxMyJ?}kB{YoxaJ(Myx+}I4@Y`*M(Z6RgQ>vKjI~UV^ zJNkp|0zsc}9JiE~k@fC-2&M98r4vwa>;c4I%vuJGJ(Ow#4`4CW{k&So${nHubrQ`% zx0bMh0LD5f5X31Gg3}2vp@F@gzdKm+k6GYb*65@6r7{l6@7B3jg#NL8zhnBr*ZXxn zk5sL1^xQ;wM3njbCY<}WG1Qvk=;y?V3{C7w65uw6IwOu_Vw3y1yi#LO4Sr$1+$MLl zwHz$SG-2y>+ck?qDR6-IT147NFgYEBer%o1Z3M(L-jaHa)=WY z$^>?UlIOUNYZ!rLYxF5U`yw%;#b3+&&0N}CXMH&&B_(zV>c}fO&l4j_F(oVU;Vh{f zB1ZxeVH|3XGh||#!nM&!AwKyl98wa~g~oBO6LHuq6cG$IkbemiWr?>7H_~%f?HO|* zXgxk1C(TABu@Wg^S21ri+0LInt(2xYgs9)lfw5Ly#|(CVJuJR0U5JYA=y$edGI=Q3 zzpP>kJ1{V}6UY(e*g>bleuotTe*FggUB=VfLvyaEakEQ}p{s5bjaNxT1ur48S5X5% z0yc+06oW!6r=!G4xVGjhq>9)ge5r7DIJ zVu}G;ikC&2q=T{TI{nkUR({&xkdbC*(&#jsy6J)H;AQYJ+m%y9#_ZRCt$U0MFBk#F zM7kjvI0nxe;I=8FTgeYhy(9-0WW*$tsm6N+*5OHP@1Q8%DgZB7i*hG$$G6X=^Iv=0 zl+7|h=;f(zln?#rlFR7_xHPqjzgg0VrR2X!21Cd*1`l&qdxBT>a$n?C3H_ubXX)+( z>ex6K2@_q7@oltcBM<_J;4Q|W6qjCGNmH}Gx?5jMvw_29fQ0YBc*IE}aC-P0h$E?V zVpj}>*A#Y!(@0FesA@@!Z`3F>O}*TKdyh#j_w#yH9!mJ^-2$1wqd5Y#AF5i&RlU{b zi?D#0r>mtLad)ZCpP4bc53&S6`+~(YF5{c=)X)U&&dqz!68L*+`k3vjs@wUq+FBat zZ^kz(AN~BRcGS*)X?tp1(^h)hmXFk}=`LJ$KD2V?t81R`-ZUN)w~i*9!?`}0xEX67 zo&0Lr+=Fyx?B}XrLU9_%?(b@G8&XN@am1^G7dR6Azh~bC zH-`0|cj%dDe1kg~WH<#jKc9G~u=00i%4c@oH~3E84lN$C#C{eLbP~Dt&JcLo4(3bl z8yt`Q82=h&R=xi8*gixR6spP+I(^OHo%Cmm24)OE%U0^Vt$@U4p8;0{a*%INntI(a zJ>(8nT0&&;U=Bl!^z>KAcKS%iMY9t{+eh8H1BmT|np>h2DzZb9o&uwHW{5{UE-}gM z;2t(oMAk^605ja9iul1DYSbJTDx-}*CW)*sF-sHoZM8BCgXO0Kq3`|GrD9ugJu|f_ zA0-J=JyD0W3w3)!@_Mo?;G9~_t|=_oe}(lo4vrH$#f+wlrS)#gu#5h^6nhfLW0<+S z?3-#&QGY7BbgiG6(F-~%k_IuPlBZrtCne{zch-cgFj8_{06WZT>0c5Z6c$a23s5J- zWIOjK4l~NK_%p_JRky1bI%~Ge-WZk2LQGavLd}J~{u)7`e$TmK6_c!m4v=!dVDs## zQWghj3$^MI$@SXaZ@Y`uH^^CHg>?OI2RSqt~?G8HF1A1rU5T8hWECE7~R1ciOoNY zc;-rr_?T70*I4*f@Ry9;FWPi1^VK2uo&e||BSuV)skHThsQJ3cF3$4<5Wy)++_Oq_ z)aCD;2afo!+J23YU7r?}cw=;}Ij+L=wWRjm%+45Zk})EU9;|Q4pjLHeCZ3jSm5Eu>9>Lh@+0gI~CE-W_#dhcy7B#Q|Zn1(CE8(Ft@h$WQVb@j! zHFOIXW`si?m9k$HI|`nnK`~@uh~7eGO_BOGkt`065l(e)+mNXJeKD+4W<@fM5^yF} zz(5`uqgDp#Sn$DkJ5`Ef>cxYs4|xE_P9YZHYZ zM_N4zDFTu)BNW{SIP-6tLDI=?LVE-_j{mjWJN@>tbY8jji!RSiWnI$8Y4`5)MNj@( z$6Sq0t@l8o`KQnRVo%X=7lAu5&Dx)cu{@V-5Qgeuy#(b(-GzYMc6Yt4Q_|hC!|2gN)NIVEgTsrrsD}nCNi7#+<*kn$$iB&u|f=zaY}))rlV~mq%yOI z-LlhaJ5a7ZAqV5>VGpIFS&mPOS=;63)Cwl`j2VZnrKb`oUNzY$Fs>XxX5NxU9$3ok znFN={9PWeuN)oB8CjoLR_0_HYkcp|fL<(}Q)f8vo25GO0Y@KPKnu0BH_V1-)i&m~K z(+4PAfEo|;G%IM++q5^t^%lcHiK!oa6&B%+KS8cT_Om z-sV2fSz_`HE=jrJWu21q##k`rHvWacRx`08XReS)9mzHF^UXAv9t9Le%bnji%Hln1 zWj|g^hGbS|wS%PB>EI&i*%G1VUczD&gbHuyuSjjonFzy4h*R!a2#T|oX!&rJ%rX@z z_4KXSwwUxtqHkO`Eh;qcEOr2!tbDXxBnAVizRrsin5rT!KFAVc)fV`uh$AZ?DuZ|_ zYvuI!I&&SpaCWjThG!t8qPP#VC`vK9UQ@z8nP_ZCi=eU4h$eE8)99$sZANFA&5bww z&-@yToTCpi3yhMUYlx5uX$zh@cw8pus@&DX@uP^M(=ia)yMkHA6^u1y{Fh;3ff7Zyv7axe&36Qw{dm)Z?7S4hM#>U=M$lH~mC$fM40rDGA8-4%ail!!bj36NlMK8A$m1M<5OGdVA43OcjMuruP1go_TS+cx`bR()`TFRFe)26Mgj-4{?aQP}I z2%y*gO|OgVVfW^)gM)w7ySce`;~~9Aqu_aXr+Q5Q!14BHINYZ&kdha@fN;uj20W-d zFj8uHbuo~bZD1XxwuOVp7VBMXc-VTqOA?9Fcd%mu3ot1uS1H>Q$WAlQYoFvxAL$f@ ztu$p8rUVv+E6c6DSU$zh%t4^f%9M#EO%$e}OV2maU<1b;OsrrjGQG;Z@)c(oHI4KU z0htzztg_S)3NBViv1(4wsLHci_AR}E+?05(f$h8kgOhJKnbx7&R!NhQ!hC0w$6tak zbda;-rt@Wvi|UW5*UB~dNyUObSw1xA90u)Tf>uYT>cBlqdwfQm!kc#bjH5aAVuq<{ z^4{2nHdM%EXuv6=9_f_Ra)U5oZ?pzB zNE-1Qt&TI--Ee<9;hK03idNwdnH{g%5CA=EUCzq0H{<4PnRjY;TduQeh^!puM z-_xrx33Rm=efA*uO~i>Bzr$na`-QAYu;a$6BEyP@#?1E#_I{x4V6+;5vdJb2?t&!l z(ks{_*Y(|mIkWS8G39dxdc^>fw)z0rN6pf0Y3UQV%Ra0tqe__@u5KKKm>7m`6(DhU zuYMc4v}(Go&YQBc=ge5L%hLgO7G+~(qTN9qlub(xcky!#)1E&txY*+o{i9i9yi?h` zxQ6E0(N64!qas~f{u#Ee=@5zbpuz&pc&XYqFlDa=U7w)huf-q>QIX~B4zjI6Hx|_@ zwS$z|TAqLdURek2h^Sy45r#!msi?uGrXRg4@5Nxq&f$m$l2NXv(aleBwTn0J8T#cV zd#4)8#y%Qh7u9YU7FA`#MFx2+WeQNC4C0EKy7`YK7;#qi?xdpKRo_V`H``*4OwDaW zQFKv;QC%Est)#)8k&x0*u$*s>qYkB%`d@C@3sf2_-yiCiTj10i0{^1g zLx~G+Rm)^+V7M|0N!BUsvl_sBq?5!_UcXH1dx?yh22|@}G{`V)WlxI=)NgcVB;QB* zAy`f!u1J}T5}mPx8efZ)hQ%fS@?scX+xuA-5aE7sre2ChS%Wb2G3zc&#EshZy8I_TMgCkDe{U9+>Vyq7~&j-3Fp7~)(`o8ZM z?XQ8FBNHh4YZ2=PrpN936&cX97WGK42>iIei}oEzOXeOk4;#YW$C&y}`)w)58UvEg zMJqPfOsUyg#`7dLjL+wY>R41N=D@EJ<8xE3~f zpi}euG(!5?WOl7etN2k&C414*}hli=qJ5oMaHuK4ts(`@9K>54A~Mf+F$Pbp{<2sTS29`{Ai4 zQFxf>x_yJiUizoxdKT1JpFhrD-COd3>bO%(2y~iL41=1_MS_w zSwVpRo8^jPGBtd010hTe->C`8D&>7q(`$aAp_T+2MzjhbR6$r&4=*WFSG}yo%FPsA zx5(5?>S6}b-|1~x$*-tDQAJ%koDzvVI<8lvIUhZW$ev8p!`ao&hK*DV_**nH_Qxfe zg{t}P`~E}!UB~h44~tBY{4it;k=a4mK&t=~V-B{5(Z{-jlWn&my z-hUznN-DefW8dVkwVLNO$j6@L_o=}sry`3Mj~cAlJbf90B9r)YJ|&?We~NCAp7o@X z=_o}J09quiro(y-0W-MkOp9TAxf17UI0~gP&x7ciKqXD0Pv?HqAl)!X<^ibB`sF?e zGj1pJNeW#%j-9cfZ5M3oTQjQeTk~5&N7qR|SKv48dlPBuI-%Xjc6E@3K2x#)^9}*l zX2(Ye`6Q@*g%l_F4d%_pUV00S_w6zLi{QaUc-;FX#Yf#lQ_G)p^57RWlPC{R4uz5TR*$~Zhn3WXNmbWMYn<9 zJ>#HM7VZ(y9l4QT(4zHmz?XK2?pJ?(zHXr)Qi*QdEIG^}OA^x?fa)WmeO09XI$dlP zQ07ug1OuEdMIW@|(j5_(WEo=>W0zQdPdM;^jB1@t{9&0;BH4M>Go}TJaRP`9!?G7JSb*p^UWEw{x(d!m}DNiKl)>C%Q?4V_nEeW%J=Dx&o zSN6&nI^WbmI_>V=eB7|5Nk_kGPam8zsD8ZBN^#0PelaXD3Wgp?6WyKH@s<}K#8wli zX~mn?gMHsyKkeh7@afM^zi9yd`q@IRd(fFXY%#W!#3yC1VB% zCFhwtFivkCtN~{!f#?APs9(xesb992w7%-2>A=i>{#;nt(6xm3Vs20H>-wnAxRD&* zcqX61;ZW8O@7b3)EpqTi`sa6x_S>E4-ns5&x??g5dJ0vRMDbdiW^(EDXTfZmTHO&_6STq?jkYEJXURwblS}@XW4SU#vdhv!GH8}mQVXV&cd(W>a&XV{q24F-6 zd7f(LgXaM3|xRi9)Ld*}E+Cwep{J=om43G6e z%N_WKCqx0zpo(1jx+afy%0e%8QqL1>+eCvfjtEbc|M14X~=ykStNUN;IM1tV3z){2)y=+fFpo+O1UqxNe^Wk)Ne28O z`be4j)d4!QY^)?X6l(KRw|`c?&Ao2>mIyW}R zc|rp8M7G*yfr`mjxl=LJq~k}fyg}SD4vL;U`e*XX;aGkP{9-Bpo|Ro zz*A{tbNxWmXC1rrTIp>7zaC$Xl;C{r`@gjp|8Hr5A^|1`B?AypClD~ue~J_SpVET= zYoGrwX8x~Z_OWo<5N$bmR(|Ev&-zCxK`1a53y3!4Cbn`&!rt&qNu2beT=^}`Lb*!N zr=Kun{IR{g=GiY8kwmaQHiSBdm)A9bW_I}%%3RvY<)4(ep1H5Z}9r?(S4zffi z-U8nFa&R7cd%iChymJ4&AKY%g`CPY4Dx>|TdXP2SBH>Vz@WV>or#MBoz&hR%`mXfN zjk@=Gx%7ww=ojSl^zCgqq?aosQC^4l@Zrs}Q=wLPr->|pcq-C=>@7Xlc2OjdIeF09 zyvIS>ssyr5&pUcz@X9pS<4Xtarr(v<%&6Rrfa(NBLTVt#1R4O(RLlIq;~*^y&AT`i z@|*CxanHkVzhw!JtNS`sf`?phq%W6GDrGdhYlhhyTTnncmM?otoFFx$irU$1T+6`% zH_`q>+ki5`#wQ;l@y0fFTKZ?y?sRp58C9;G`za`@x0@n&xPNlc(f?i{Lk8sIM>XI0 zT>~}=V!OvY_D^x7u*RhL+(9z5Q?HB;h8 zkECNkie#J?OlLwYs!8CGRv;*EWz0{|LDaCM4_g)_1|l=qN!={;KEi!zkv(&#jiT2@ z=EYFqfbtxGW$PY`#Q#QK;--uDk2aGlr8*z6c&o`WeBO}606J5I zpBOJ?!5p{)g=!yn*yq7xnMgbPt5Fho!+}BBpK?F&n~8cxHvfIuqZ}HmRz55+ede!q zMNSTgh%)d)bPmJt|;+g>bcY$5a-l}3HMAhjueoyE9n%1gl`~|qoW$* zpjZJrOc_bP`hNVf!vFYX#Voh!dM0Ur0t?-L{PI|WTJgNx6)a{4A|zEd?B_iJ-4ftE zIR0IZ?>+mxdn9KU5uL;az}5H0CW@hc;}cU(Fi@N73<@);Rw#vtlvI6>Hv|5;6WBaq zKv<_|N2IL+&q70@IYB+!NZ zU&Fk{OH84cX7h3=gPk8X#i}fa|DyK??`B2?2b9~CBPY>-fF2l(FKzyZF(YHf=HuC> zju^(r`2B}5hf3|+SQWcZ$P)iB=E?W3QgmHOdT6JjQ)rYN)S26naB6X=JV(C=wvZ^dzfNNDkVo%7>k{| zH#gkf-}F7*8;IwEfBRE`ANn~RB2kTbH`D%DeN95e5?Cl3;V_B635-DonBo@9Ul4jy zl`srLo7i(+x9ay2a0x>5`EDmS#_CtUDFf(`JxllrfS_I&xgwdL<5o0g6t~ zD3NkMq@PNNuSQ4r=?%Vy3ABB_daFMBJs3#?@(5$*LnBNytSgv5i~N$eveWwDhz4hpOcUB;Mad(y7n;_vtEo;aBekot3N+im}q;Dqi+U1QxB}& z(f;n@Ani)J-yoEO)O%wx_(|v3Ti$db1koG}637O{FKT;s z;pLpz51*y~rdu{rDO-l?NcKT|$;E5}s*NxN?)M6-uHKE?Yy#_mxJQsy@yBA#Q;vAf z9G`c=4=<;Jp@HFn=$PmhyJa^+0hIpIlw!DnuEDVc700?8bzlju&#u@5fyO(FGf;IR z7;7t_3d;@y!`b#m+!*o-2AUzpVO2YEzSYmn$PD?kf5+YE9x`XA&O>G=lO+Z>I$#P!maE%?uOb}tUUk!PB7i7M7I~sCm(#g*(yMVK|3*3-f)4g%aqcU% ze_BZEQb>_qXE?hoWSUyc=vN&{@BpAh#wZ$dmSLUG^Dy#QYh?yrnIuY$VtnZ zuFX>9^^+6b?W{S4tcn(-b3~+5yR7eVK;pZCro^QG43stZSEnkQT55=-y!B{ITF=JT zz&Jt(LIP^Vf+L(Tm@$O@YAC^;TSI~xwJbXL{9IpQfAp=e6zit222`-f{B&UwlwKOR z$j(P)X`BoWPi}%oI?*UOb3>q}`4XEw!7y2yU>$#&N;#OqCVD)&Tf-R#6If^dc zi1WK1WNy&4&r!>Lv1;QXB2B2HE3i@p98_jvgjz!4loWe{?8*zGD3~cRM>}UmqcVRx z`k-Slm7lkMNeub=351p#@*od zazu~NZ*XAtS}*)ZMcetVp_zrU+imScgct>x;2}sja|W3(3Y$6!O#on_8*$?#jfqE(aQROp(}v22O}H`kw*2*?89e&&Tel(7 z@2ebO@LN7){C+<5DwaMzN~&mc`jqwlGz9ss+Y_2&Xr8**{?$55%4gY)!k;IYH zKY$G541^|(@B?u)S*cvrcIzCGvgP`8lVAu0`K_QF!s+2`qi}! zMs@An7`(Ql<@F-O7NJ(@5-;T+OcMs4pQQhnL<`r-C-#H~O!!X0mI2S+{n8E_zu^Y~ zUH>uBuK(9WgZ{6Hwr}ppF=MVyJ=M5o!IP66zvzpOWG9m@U~EkL9NA#?pMqhj;o5KU zjnhE-BP80uk~Wi%d^>YxCXzO?$;|5Q2Hx7ufmpt>OJ#Q2)&NRny&Dgi0vcxQ3L3us ztwupb3~VJmY5+!oC+^!$F;QY|0k!)}^Pb0;Ea1B^h<=>5G2{ux6uOMDD8BAhloU0@ zsSeIPWEMJf=mWPQVRdQ&B^^qgDxlSiLJ_?=yqGSqC{NM!P-7S)H7sDDR5Bh?se*ev zsUS9|Unx2W9UE2=WfMw+-aj-;%p%>YnkYJZ(XFlS*S+}8BL+0NYM^L#SB*}Qkw_O+ z`S0)TdmZ6b#%N6a;{Nn!9Cdvb%L|Yh!AM2|qvClQ7T{^+=wr?&_KY3agy}d0J>KVK z{Zm40L>Wqs7SpXknKY`M>;Z3FS42yloa>_@Hfe>Rv1~{U)KdIV&_deZ4%)!`sANbQ ztlg?bw2)&4Fxe9GAWtkeu~^^@So$gD=!HOT>~cKv+XLxe5g-s$5qHqBCnF>sB(%O1 zPC#0CX-{`3E2MCjO$RE0I-3!|xRy6nlV&sXQgo)(qTBdATeq=(-rauoFP^=nEuEJaW4`44~bqK71RCDWg!|6 zL38~#g08St9+x9IT}UG%&+$n)O0*YVlVeC=SN~0vrdy75gYQcbhQN(?t&Mm>g&#ua zFxGK?y&Ft{cS&AX&D~IHZtI)O!DE=rNO)my$3H@4ugSvE$Alo;5(CF=eWKPOX4BUD z;HZP}m-^6+^*Mw3pwJ&Z090jzZwDt1==<;=DZF&Hj7?ufeOBXr zefxj;xkE<1b5dD!FakAI%3PV_*3KC`d-FH#M%7mJ0x<@DEPuZ_EejLwn!voa(~f$= zssgIL-ZS#zm#Ogce1D=_1PXAG`f#w8?19-o}q>{HQ{vD997QJ2yaGz}am8u?Y==w4zqa9bkxgGAb_)F|hIr3`OX>5n`+58( z2_eCqor<{ZryLRrIgvw9nge+6DrCc4oA72(E?dK zeGxA>{d>d%ifELf8I0qW2SoIxQ~*lBDX6}NiB*t$L>E^4vI%YxU<;xhOx*HNT>V;s zt-e*(yLADW0!u?Ht5oW=zq|RyUT87(Xc>Wl(JR51kGNR|QFUtOd+PZDPGRgod61+S zr)GbL3C~SSVl=8M)VZ@Q9=|(QSE5Dp2T=3e!&89o+KGIZtpyrxEqY}#F2+5pe_yHm zsbb-cVZGiWmwk3R^RxMbjU5y-!*+Anhga>0t70KISc zjyzM}*K#USwv{f=p`K&8Ld+6F@Vq{Q8c5jf5D|)z(-Xdg{LdpMB@kx}Xn|7;>88kf z(n*oPhea4Tyq~X)mcpl;$4LhOjJr@%KCcDvSz^Y%sGRW%41B!w1bhR^>pMP7-fS=I za7Io;dUtYC>sq(84+uNMie3*+zBMFj!h_k<~{QP||b zL#mtl8xK+g(wz19r+yst(-j>BI`{VGtkBG8XeBDVhSq-_v|yWmwmU@W9Cspw!F68* zfA8#QBI*SV(D7JlQ=hRHpfsQu{sh(Et4XrdaRUq;Sr2r3;erZSw3dtmlky-qobVDB z)aQMR9Q)4{HlBPf55~wjQ@_lioqI#r2fXiBTrcp(;I{j|3d^b9Q?Q1hGQXerb^iv2 zTEi3k{2q4mWQ(vMZhQIl#Iaj4f5M>d7^qte9&EX4M1q|oE)?um(Km4akSjn*q# zZ4xQ(GFu*682TMK;a}ICU5<(cs$wha8g{T{$hWTG(l^zDd zQj>WaBlRWwCNlefA@sw5=HQ92=#idvV>%PENzMHtn1<7wdpm;EK$fi(wbmDL5b)PK z`1c%wmf@ny-eQwg`V(9g7JE!$3>Y{qu|1eJ5Dt(n;yws8PRX2$!Dnjlzh|DxbHFH9 zI#6EpT=6C^*?aI&(xW54dLM@gFja_1W?Qj_HY--Wtfv z6p8E+)fTQ%9N*Y*Z&qjcA!De7Zu{bZ5^%kOjN6tq)@7!%dz0S~PF zFutl`z-D3pZbEA5pj!nJPouDJN*j3vs%#9Rybdp2W3Y}tc%C(3H3o6?+g9vQd1B7i z)7DUAW1PHafPe|j!!8jwFPF2-u>lv2j6SDLIU2XemMLF~`yywF&F<8FKy?~x` zJg`C%h6npNqp-t7RVJk{7HXunu+UBp6D@xpl#~|zX;?r;Um|yYFp$-W#r~Tbup8U- zro8Aa^?*~^y4tEJigAU$>hiMBwV2~vx#a*30->_@#@lVY+s7!-5|@aNZ(>GUy+%tn zwx>^8b7pR`2-N%i^6tVVl7xVZqA3natpq$x=?e=+Ph)BPqbpH)+<^ETJoKPPCwxuU zeExCCyIC>L*|+5i2d9uaAB|PYv&as7fQn$th=ga6PYO+D>l$+c$%(UR*B@{U2HywG z&dOww(%0rMri%oFYmZKz*khu-8>@)eWm6uTBcXd;sD%uT1Vcn83yxOs(6{7w~>HxH>w%WP*CI~7)i z*$hpt>{d1vGZt)Y&_85s-oh*z7yt6vU>oZV(+6G^i`{~>r)n9>;6mVP$o|~az}NgZ zXsn>hg(60@PmqUOKCjc4nBLoxV;z;~&ll3Jt`xSB5e2W){mZF7wCA#Y*--s6?8iZaMgBNwtyor`j`Yj4 zj@x{j5xYS*atkcPnZT0_pyzX)wPv;9;Vg2L zDc8W!1F+Kz6vBs!Xp&vvbb51(Xz1mnL0w1WCJHF^DEMFmQ&y`l;L%3iXppkV7&B6a z!b&sJ?!L_#PSL3R6~Wz8z3)jUmDf8HCyvpsXpN_}zy85ol_9O~-$r$wOh!=Nq4L_j zYH2y|a9*boT2ynIw>WP+_1fCt-TW%Sg=BmkY8@3Qyfxv~(jPj}48BXVXt8HPLgA}JGH5J{r4&&9QG z9u&ydQlBGU=q*l^R{t+^?M%6{FlNS2{cp`2O-&;LutYLKTMJ4gUI`kl2k~!zCykA8 zlS~2umX;#vU+HW6EQ_3X0Vmo0VwFk6Ytcc84E%9AaPh5WQA?{yvZ_IuF#)R9GUsEUgCFeZEtd}Z5vHwIop#%>!n2y zQg0{HuHo#g=A{@-gX+J@8o@}D<>RPyKcHj%V;$G~JPHw2EL2N!gza3+s2GIaL3bmb zPvVr7U_%Eh-8R?iPcvk@AIZ2I;iaB$`+Z**4pBn z?`nYZSu&u-iR9O;2xG&(+n2HM@<4nV5wVSAAsP$a?(PPc3}cn!WZFJYmsB0LNI3`1 z3ZemMi7lB@!o3k(W^5_igQ9o=r-y8mWp!h;EBZhkd<51UA2^>{G0@D>EmY8~R4C{%BVl*R#s2hfr>T&E~1ETC@rOv^2?N z6TN4Ep6iy?Q`xNx=Xu^$Poq0dHt5W9%Xk(li3xvey7)Jj++EnT9J*M+uF|tL_X#_T zl^uRTT;W2uIUWq=CD&IxLC%XHqw-w_e15bmvq^L}+pfpLA>zmTWR;KbJc_$z`s@DX zinw)jJIEr#53u4qN7f(A^G3tDxLiYb3}fuL$`6pR4-qwfd=}6=L~}uUVLK!2ls2q` zv+?+?x}9=>fG*+7nVCD=xUvDno?yC3=a3UYs@fur>+mMl@g!-dV?Zdh{-m4j+M5J* zhad0)jc^tE#&~09p3w7|jThBn?G{zKVsH91Ryb#g6yD2-*Cje+Cgr_^U^n@NyRQNg zh^DS8Cc7Iq6sJ~tQKMs8ImUN*9BovsN74(|rSX>s*U`$7;4{t8@DXT@SOpg634ugHR}47EcvlY_*h@lEeazRa zh3Azp@3Lklnd6skDIfqI4~h7WaZA@*+Chd40>)D!I{N948vv%Ev&ezAS|R3ub4mj)W+7gdebj9=yuKnM$X*vuh$n!>DO(Olke5!Z z@Z`=Yt1BDn1hGzSG@(L@g<$TAfs&wpWMgaW>sDgh-G0un7IC^aYl!DMgUMfi-+-|< ztuetHacsKa5|ligG6^{0Bw5`)Q8UfMbWoz${|_nO)B6Xy*l2H=RSS({+EPIgk@NU- zwop%F%>Utwm!KMqyO3(zp0AN7ie z?y+NF9dVq`W>3>Cn5aYy0?paw?Zfb(Z<8)qV3S78N`I00q1-t(x+!vtWnn>+&wgcdR zq`ZYST7a54%k@y9LGcsQ6BP0`wksq9Fsce9$UZ30i*r_gkh>>Z78Q)CAeBFvgNj!K z^bI-BH4QBzh3nL(WDP6@+TO@Npqn!j#U1LhQO`KG8km5?@u(a(tf7;<0VmmLOtH1Z z1y-ggxSEExvqEwq1PR>2VZYS|vI5W}2~@ky zLW?!e{sKR)6e2JyA{Qo-L88k3A?QewvL(qwVG?wJ818LLZOe)HBuO(K7@g)pOgQSd26VPdz5ez1&4C*+a(^LFYa(YuZ6ca(NxC>O=qqh-sdDqlM$}o zhAK2;9CGq4^&P~TUHE;@l8uxahMOQyIHoN{RnXw}AGHBh>z$@aFkl-(>&YFoC4j^{T41{*3?J7Ws<*YU%zy}X~Ns# zF=?b(;Art&I&il{?k_be+2eIfhj_CSSadY~FpsqMFt^TyW%t^6^?JB&b+4~`JZ}xZ z54XN_XO#8^BPLnz@f~Y1`tlhFGr(=b#)wF(_%Fow*U7*xy7nFtn;qBJSj_x%_SZ}h zb;+_G_C^6@Sa)p3@7obpu|9znqiVAj+k9R1n`obAOKx^kKOT~KsgO(*eOI&TWAZ0k;tc@@Ze)q z<6OS`oYF=pLOqvjIl1G~rxV^#k*IzB`CHW@T%7oCw$);k{|_1KAP#eVSF~&+xoiIt5#`0%qKAYIK6JH9PSNq?0%qIL zV*Vcayc=?{$#A{X=+s~2bqP5Yhk$y<60}1(mS^aCFYVMH_#H*Z)qI-ioa(w^HL+Iy z?(1zLL~WFLh2-KE)q?0xy*O)=sotg@6SQ09pt*A0?n+E@rY6{^QMzz=e#EaaI_#lB zRF3$|zwPRCr%2pUjD=k;F%vknc3zYTqg3dU)Hu0viH6ZR6*EzW!W@%9q(d)(Fxwfd z=*C%F^YoyR^N;)?H9HGUVsdqQz!=v=t-`P)PKI!#k~nDw#|Rfs2Ot$d$Bjlx6J4Ve zhNZhLw)vW|CN{cof)txrj^_Ve}`X2H%y*|hAMXz*S{gn_gcmkeeEMfAO z_;h9h92nKD?HUB(aR5h`rFyD#Wnjs!Q}0VL75L*I9CQ{b%!Lp4$TZrcOW;}T6{T+b zzSH{JGjnDPMRm@JR!w?8cfkV!Z1z7T&RFchl*fc0Oo^YIP3cQIbkQqJzHD5G?`9KoPZ#Mut)&}DQ9+(FxzesTuZp*KA`iJt?Athe{kS@`8@S}F6X=LN&jTT=6IhxBdFQt7rY@>rB@>R zfOc(I92VD-ABU^->=`*87o)~=`p3_VSgWn=Jc|km3c4xNcjiUybxU-l3>~zOFe1s1 zfEj0^ZyMZcPv7(oZClc6jWJP=_xoC$oxIfAtA}%Oo{%Z=mhH!XS2;m_r8)QEhCfjDvqF;jzHW^_f4BAnx z2Ia8SL3p??TN4p$k*T_hVQ9L~E>X!4x0d=YK1<|`N;c5R7Tt(ZG!Kua3n?}!FIN`<%y4uY%HH|%CLFun`vv?4Vp{D#r1w_xgixu)Urc{;XG1jsshFPx9nWKZ?Ggs_P9Q19qfLfcT zJ9XR|pHHOFP|D#oA4>EGv{eFY)oROgn&}w8^jVwQ{u$!*-m{te>7Dow0{1-NF7Nn3 z;5pf~4~}~&?glP`US%fL9fql0GUn*Gbxy8S@D+oi9v8MyDKvTCs(~gbLb^hA(G7+Y zfrl)o6@R`8G%i`r6#%9V845k%6txNrO8VPQAK9`y?)Ni6pX?pMMi+`M2=2Wwz7@|D`4HjhIdrj5#2~ zZD;3AT-kg8sZm{hc@Mj-%oW6tago@+AmGhCs>|YJ;{aW+5L6<*kt&QpnX$EhmWs&_U;P{+AwIPd z@XKjR4zzq2lzrTPm~2)z;r%>~Pe%vrx9TWz11o%YlntEH4go6UAP4v?=!#N+kpWYb zDGahKV=ZxX!M=>3z_Hlu=#K&yj<3!LCm(WpcscXX4#eS?gQ_$MI6ilJ{#tn-IcAB` zZist^yM5F?_#Xu>c1BzB(FSGOZZn|q`poM9%10sL)~YlpD>oGL0Yv=*W40YfdzucA z|D|&4y#mHyFPlR1w83a0;SkRVKmXX>^kmF|2U1A;P(&irpiRE-C6)#Z;-eNY7`i3n z$b8;zZ|od~{nje^&(1Yg4K+jiI+4|-fI*yTocyGHXUJED>ta%Jq*2$b{@Yk0S%&D7 z(s^66^C2(2)aI@uG!8M;-6);9Yx z`W(egYc^Hrv{M@ey{o6Qaowgm1?@tTfw^Hi2X44iV_NoD$5v1EPPq-~0-UNd!}8kd z+f@jrY#H!AMV)ue_j%z)o>&3C`aTjwol*8cg8l73*juAwtu+24!4E;W;2kH?*AT>y zzIu*u-$_t-+rQVY6)!(O17NM)LnVw*hkss}YCusz7W~D|K|3`;fpluR%bQet9bLv4 zm3br<*8f&EC!CJ0E|AYy>;2nK$@OsZobtXD3M0wLla|b;TPkI;;p;2|^s%aYYS?Jl-E=orKX?Y_Ssg{X!S#Yn&j}=nLR&#!JITq424K(Oj zeEwT5KK|*UMc)`&qLS76C;)%MY5ScLkdI^o>IBppSkzRkHowl6_tFm>9Y<%Mq>d;? zzhG3YnFMu4`dnnuf{W*z_bH^MmU13ID3p9A8&rMSC5gbmSVS>rB_kp+XKvcaD2X1- za@`xrWf+~S9c z`bZs&CU`YCwLZ^kU$jP@nYNJ|^0vpO-Nf#x614xfd{kX2&LPM$yzru$!WkRRyz0_L zYC#H_MrS0@4!j+w-_eTG{~WB+q4)OAYrGvB!)w+bs+xUErNf?A!+angCy*<*EtxuX zj1H_s5fn%@=X`)1dLxQ|DP+5mCX{bOU*%e;3*@em^8wQ|tuf}c$EAS&xjwZE$CT&=sr*WA?1~=A(r~3x!drzaop=W)`=Ma}99P`Z zFvsuxx7%iIau&TebGUL}g&7b48T_(oHE?-x_L&Svs}fVN(<1CW9jQjnyYnL4y?>9G zjP`q}W$wi$&P1+_^MZ&8eEUrq>{I<(mDgoogG_6aWq*3gWu@u4&S}zxGrR3k*^Hl- z;x{%F*yRsGx52OQnYGwWE&0_#)m(&6H7i55YErsDHeVB~3}hH}*I3PyIs6=%!sug1 zZO`sjwGa<}#%9rwt}FJr&RjoztZq3pPz0odl}s_KJX|i&zxpsEDV5fH#zq1KOkn-; z^9f%(+AU~l3r1|+s;kxwD1EFw$O<9IR7T%uiK`9U5>{FTcyktIk!eR;AlA}Ry_iVQ zEti_M>3~r~TidcSrn=QLG?8GcGQeUA->bK1tWfV$_>82(3oujPNaPb4gl*Fc`(|->3IDG-jZI;c9zG@bg zdvF~evSrI7%T)CLN`^4+jzAKD{6!Dc;610DZdBoy^c^yrQy-6FV>#PwT@cIX7WYw(^@b;qhzoMdEJA;8+@9$~=1#!&vqG{EM6uzK*R&_0TUEk^__Q;$D z_}zs?5{J-PcJtFnH;m$h-lL~r*dSEzysB3=?dVLoVcPlhVe@98l%#ODFa2uZP2tAL z;eBXj2o>Zz+hyhQK_6rQ_20aQyy8*H;(H;e@_0hzMVcfD*ZM%@1~MbNL*)Hsi6OS2 z{R#}utHT3Aw;<;7G3D7EG6(ea8Z=c+&xUW~v-v5UWuUxCRFq6fQSAd}-X2*-E z)rt%EOmQuCy7cKbv02oJ_)!h{Wr|)_>)@c~mO1f|K-zt}ero==6dmz{AXmF_vA$2H z;}x;1ZD*Off8^!yRwKYs`05+0Bvs8VRqCHLr**-?b69bBmt92NKSS6pU<19h9B0PB zuvR^;X{caX8c}I^Q*U>pNjG6R+j$4L*J)*6p{&6Sk5!p%JNxLZG+3>t-_=~!gVdLY zHxK{+d_k}J1Z3*Zd^USlAfTV^zjG-6XUgRNH(@~kzoQlDmHua}rTl+KX3`m18#p-? zr^9>Wh`ID_|I79+U08cdsitT-w9|;a&f;LJH^G^B6E`;2m|KhO1*y7HonJ5AyuZw` z;SA=_WC7D$00|)p2BKV?Es00E0J{?~hs{3~qbSCoMOzotdIPpOg|v{$zrLKlyqxNG zL3#PCYTxv@-}*S7%1m$FNB4bLGXvi7yj>=Ni~#YWdmK$L#PWtVka4j4PKR?0#&{!*lSk4DA^OGdXi@p|Eo(CT82?#7#yiUWm~Xk zN;O=zD)#rh45QSL5A~NaPM%?6q*hs40g=>S0V)L2zXlFgI9KA4#Cxh0oRWVTsbZBJ z0wXufF>2)^*~8h%LdZ(W>BK~GV0h?EQ4HCjxrej`F(e!mvkKloQ12ZKhC@)%MSyAB z15GzNc&w8ivW$|^z-Tb}%CqN~LX$CBVcz`xbIKb|G49{eJcjFHP6K((Gg1mULrvB} zTB5az*P>My9i2Q)b-4>O(+%_gSf#m&R<=w?Taw!7x;>y^NgqC9R%_cMScNpu<+)v6 z{!Mg2d6$z*jS=LvNzOK0yG^)4nms#dVXnXoag@N%WUWT2h%f>{DN|pRLNIje^eHVj z@Eo>EXER<1#jMufx08~f*CZw9SeLOp_UPS+j$t#sacNZkg+zQ0vi=7hmBon-;365y zDOE_d7X+Z4nXxi%Yb?mFsgC0$#d02RJg zT9x5$OJNhX$`+5ERhqIV$5e6Ez`4q2T=vtAuq}l%h;tpdtxa9Jg6QBzfeEb!kG@kZ zrn8`slRvpwcxtaeNtgLx+oP&K1~E>;y2!?5aA$>*-ZYy&16D)Uk%fMwdA&MW)| zdwOV3?y8W!bi4dA9{pIfCZ&$5tD1-t%{9YLYmT>sSCDELXVrTL7xMGF=HwFSU=Ddl z9~E4iW;#xxDec|@X6i?!jP%x{#*Un4;(_cvhlx$Zlod?LRPC6i%ZehZ#w*&r=??Ro zGo|D;waoIz(&)V%INLhM%p_S21ze_W0)v_4>@JsOID~FZ^g{56o??vpyTd@L+OGIPr~hxzI>eQNH7olFJ;pLPY~*r`FAk5CvA(W*l2zFuD9hlj(D^9DGut zOjq){PmWg7TBU5%g3bKQ2a?vZd`=#>3RjKWI|O=qAAQ^h>52pH_eK?cqU=T%j87%n=1Hg`C`FDM$-*=MoLhYI%pq zs%TCpi1jwMi|ATeb5&mHj>nVtD~-)`7>$47fo3AyEg02We=ph8u+OoH-~Kwa1;TXr zrEM*`gV@m6nIAb%%2Jk0EXHA@nNXkNtI{vF!o$QhXoNy(rITvN!+3W=x zcMfz9`PJ|5u}lXWm^qllW-U0G$o=XLDxcb`Dm;|ET#0m~LMv?jb1bV*6tX+pngILC zX3cg{tY-98KEKwQpo1^9$ysp89Tk+lLIL&%BGGv5#HRc~Yg09K-5^Hm-Et$bG_wnM z0*pkYV`)Wwo6&N?T&*%u1#)+yPIu@-+Q}U9G9}{FfQyxMlK zPt1!1gpA5#bz?1WFr{k8A=^N4>!xd)^;#AC)MUCihQ>FPw&5y(mC~D8Q^nHTPZj0a zRIA#;S!cI8s)*g!!?{zcg%_Tj+~KjCWrw|F8rKYOg64WemC&Nw-^D6gmp&DgSW;@2 zyB+dXICa>IN7m$5EfP|L-$?eUq2HpJ{4H#SHjk|zXS_1lLGxAB*Bp&PN-XbV^e!qs z=WwHe(DqtW4kSuDvYB@Own|%yZ8Jdud)3iLeQDHsy<5Y(W?2pa@|A-}6--nar74_K zs-nFOmbp`K`!{%Rs_l-%S)05^&c(>IF0IUTF4l>aGg7v8{9m~YYP!Cv)agddMi?KB zn)$pAn)!$Ky6Xhby;&3fYttB4OHh0RMe>%8>^2&0Vn;9#vD`{?`13IBjsijmZdDOk zRp@okrL8Bgw$U=dsq6WPXWmR)T_owv<85;8yGy#6!#`0maBEK!HSPCm09xRPG&^6V zwxf*U>h5`qnyC@a%-}yk1kljM(e?g>3xOi%Bgu}G8B1o*-#}o#NI!E)Oh}p;JLjhU z_-4@S3tFNYql|fbJAA6BG;m69LMYxKc{6~U?ZQ)X#D&y_{6arW;vk+b*^#<&hsi14 zW8Za<%qeQMcPPJ&;}rAr3w7P_Jr(i1E`@pRDY~Ymb}(_KkBZyU_TQi z6f;JW<>?Nct2w7|-IBTXj`>&W(u5_P?1n6K z>qI13yHH=O+CM<*(CgL!F0l`(-21izupWImPiEJ>Csb;#%Irw>ng$n=tAm*TxN@B- z^VXi%Q?AE7lYE6GuG*^XtV{V*Hf=Oj9)rt^~*O(+`cJ4K7 ztB%Dx{AZ3iPcKm^bC@1MeVJjd4m!MH%ezr?Z*eNrI$^=xR{s8m@kIcCwhwI0-_eb| zzC`VDv&Z0*o7d|*hRs^p(zwOS@qX0lfdzNxScdh*1iwDqyYQiCi!1EK2S>Co*@_E< zot9~>`TvYXL4RP)t!JJ=kRTcRcLL>}S%rRK?2E3YKyZH36o^Db~ef#v4TD4)O~;dLuM1aPH7@T*s#H z4&!P-C?EJwvP$c~-K!2Df~e2tfw_mskK%{&EcC|}*{}w^0GPfC+C5*)_0>WR>oWQ( zUqL%?V*bO_f_HuSrEG7q$3MM{FGj8ppy&d%ExwHF2azaNXd|;$Sl^=jWG=L^cQGeo zBh^sRKLs4L+0#G6Kr>Zw<^mVxKQo{tt=v>LzOh#3j+Ij$6)BUNCz3ssje!bEsIXg2 zCxDL#Ctit_6GSt5yu(TNM@uDM0j!-8?BM>&m*@l(;u({k^DLe&Uz-vonzsfJ-QL_`qi~78Id$)VJrXZWYX+v;UH(vK$2dzj5d`>-n zdtZP{IUW-%9Ud4HK+rn_;arL}TdE$>ts?O!uj=c$cadIk>>embWSF3+LQ=xlF^zZ}%pC*l z9r~Z2g(I>6FB*tqB7xsn$GzoJc3d67w!fX@y=ODb9Y&xx71&UM*oR&{o<@!50Tb-q zN|#tlC4n5_=mH_ZNRilA=v1?68Np0F!M5RMyQ0f6y85AABi)ILmv4Z|m(~_|cLl7j zFuFJA5V+DjxZg;uVKP@_?a!6ZK>npdJ+Okhdqj#CVxs67^fYchOR%dW`0n#E{y8-* z*sCklDDr87pD|B^=;NrHdc5D>&kFpNF3_7E>>&7Il&^8FUG;JFStI`XP7lONB_5w( zREm&bE49=Ax}M-%IUc`(;CmpbN{PP!1gjtc2}vgKgZd*A5#?53*{=bOq$3>smG`3) z5ygd15$(~g4eVSco(xPP#NRy?1>`FTd@V1q>F0XJf~@5QxR8se!HiV{KhW{*HY=(t zXI16Gt0ge)`214|6xpYIBzMHrn1b%El)tdgzaYQVu+rf`9+Bl)fSS+(mP3H%L}LB% z-@4^xfOETazYueMhYDAt z*~h?iu>xto2BQ%X70eISfyq4Db--oL^^u;am3l(5h`2%6EAiS&>XJeu8$Gu*MK)$e z>CN?xXlsIFiuT3?zf5&@pcp2EGZSE<8b^amgo`4O6b4EYj0PYfU8hKglVm>FDhM>t zi2theuCDM7?xyYN!}DID?6i7dlhr7C3A*N50$(@@)DDO3!tOwTiybe(N+rm~DABqO z`}@02Zr~B!U=C1ssZiD)6fq6a#|7%f;1J$)74v^u`wF1AmTm39T>`-g?(P`+D}Qp6~Qz>1MRe1^kfdRP>w%%#LrL)eWkr5=9PhPPs~#a zNfYGxf=h<{NP4@~u5#XLqvd|E#a&PE(!yeo%cF?e&$s-S#q!eO|gBL zffY`!hlH>by%M>Dt2pi=wRh0L|zev0q}JuSOn-@IV&R_fkRI``pa^TIUMSwO4LX1rN$Z5yh~;ibU0 zYlsKryKrmd2)W-5#Us`=ZC_VB<@5LiW}d9VQxsa^OgPc3jwB)NYfrk7@hhoJu;|H& zyr^iJ<>2aL@{#2x(GMHM(J%cpdMTrKeb+X6koJ+mVZXDU8}qp=|((#jh<#R?iB&CR5)cx)7{A%_N|9($`w5? z`r;<4T?8j2QZSLnRS)9RVbfq0YDhjpHDrvOb2ThD^%{3zU&cI0?7Jqen7*Q}wv9&q zLK|C0>&jPw+ll6CSaBLEK#ZCaSju?>E|mXkJMYsr;s;b6v))kJ|q&XqRb67Naupl!qz zyl}stL9Iu%>`605a4?W>5+Pc4(PN5Ivj93Xzo9fDNiaS3jq1fw<&NKeZ4k8nDe%3m z+wDg@yUYx&`r3-c+K*oQ3Wek5aWuH{W*!;Up9<={3~pzi?b~ItX3XjdX_pynhrpGE z!9t>FP0|WLkn~wJijiuw$7pm7rn``LLH68re6Z55Li)4h?td5cT4 zXyx%TpFRO35lvZ8Y`1I&cYO4MCW%jdn{>OWvmZ25oBL2K(#><*^~E?yQc2x-hAJ7o zffg~GizA$fsGTMwZv)~mGi{3bdN>7{ueZjie6do>q0E7yU{tlyEKKMFi=3&k_GxHn zLV-b=+=%&;c!>h5Xt7WZFreT#nm9mrb%bJ;qL<6o+k z9JMxp5BRI^KrCeTu?6N`)_GNRejJe%>b;{`f)6~3DHI_k4E55hBR0MXo^l_#)2xXI zAGehj6CLW-9l0s%*1^0H<=&->eA#=-Ui~q(;v>$0gThcFqwb!DcN+Y(L27Kq;0@mA zSPw82-)Tfi9$&V63o>jb0$g-JH-o3mU8_E(7Q!FPir?ZPD56df za&TM8h^rWM56`~#evKOw9=age(&8+tZ00x$5|3DJ>j}1F(w6s!M`EU=LN|Z&rXHGI zd16`%{`+EwCrz@Ic9cGm3(42UReW4aQ1{6?G6&Ckt_eLcc|q?ZN`QAR!cYLb?X=~;doge6CZ8Zho`CBPHD>!xbtAxkhr!$6_%-h>@uHtsj z^Np49lD7v>xtmX>D`3{zg4qko(YYGF&gM?VKd&74l0>R-o?6b?Ph2o_Vv@yTTJp5D zbC^v||6V5=JCTc>9N7OREGJ_)D=JYjB%14<0V&rY-cViUYtG0RD`G&5gR$V3uzHAA#*?d&nyV3YxKo*9htDStmDjP$MaSic0a*?c zSMK1pb|bT$J6VS#TJYggCg_xIG-TW!qyBAqut3mV8kW8N$6Jh@y zcnW6lIFq3m{ekP7`O(5Bw1T7#qh%izd!jqdVCkYYr-pj5qqs##l6Wb;ONrr zmH+ZBK;x(ZFN7hGo(T!#W00e|_47FgL>FTLoy;~;4Wx;C1-}Ifxk6}_Z~PijfyA(E z_)>zA3QU=CiQ5a#ktGq|3<-YJzI9W94R(C;&rTgyVQ11eI1?zi-S*(DB64Ea)YkB; z`4k0AjCyH|nqff{KQ-wQ~DP*D~SP9`NM+tK%`(4G=t2!Eqc&->9EbxVy zX8DTL;`ec!G5pipLaPUsz|Ju#S8*L9pS4C#To3~?vL!i2TCTB@_PTp6fUG{{1ds#V}{&8OS8pg&B5Xm0ic>iwT#fu9>bWF#nF2okaw(x_#PHA+cSCwCK8n*06 za|$Q5eKemj`nT$W+eXCVk`77sj4{4My~yks0h4@>3kW%2)Fy`hR}X2E+~rbi(fU6p z6O(bzV!-G1$ism-E5m+!xp`L*`+mdIAp=D3$H2%`VZzTwGdk8!5C*}j?NE5M$6?`A zkB!tB51LExQzM&HO5Ex^HX}FmGsdRs85YIlGTSYl5ee}yH>;kCiAbQ7CmMy8XH?5Fc0$N6Q<(NcK^lHiihoKpmE zE~vKUo{S@%y9Kh0)35tI8}nw=kdi>4zOKM3sa+(Nr#;CHaO6xDtIm>lH?NpNRwUAZ zY-7R4>36SQ5U^QBPrmw4dsC^YslIlhQmM+ai9cb3I=ETZ94I4cvZaA1BH)n7{Bb8r zD>n4`^$Lz+1Fd%gD~hU(23zme^SXWAGRbL(PD+%{>_hcZcjD5Aase@?;9#G#uZMa~ z89d`)&&qQ6o)4eT+u(V|YwaD$7_hJH(0BG**2|P$AW1wXwt|SeE$k%3!H^*sXh)YU zmf9ry#T71WcX-+cqZ!(b?Z)wEip3NmZP-I}GM0fWVCq7y?Q_nwNvFe_jKwn*j|(tJ znsZ`MJ2$=F1lJWuaGPmzh0IwlS2Et8)!W?DC_H|5g78i!T{MOd71^g=YPfpnpdB8y z?0C>V&O94<+iOz8Kd@J1jp!%CdCy|;B>!DNLT>#He<@xg<&qb(Os8jF7Nv)k*zxM? zwNnLWqO#mMIh!Za;tdl7lfos;!c||LpuvohRpG#{wWDU4&-)ZSBK~%%XYL2Zw`58F z37<&rTJJTSw*W+$7+o5(Yp9JoVb*F1%?BLAWnv(_t!Imp4|K|Y?cAVsAGw71KpzK7 zN!hM_1PtdTvG1(MV z*n2eVgq@U8q2lS-2e%#8`;7O%^L5ty=1Se06L+TJIyJ$pLC(40Dm)E&JDzYzo~})J z_0vji`f0ZpnrQCZ-Lt3L-Z#hs?j0ND?=+JALbP+>rL+FF9sC##7#%qRM#_ z6bIrn6&Rf1nX6eZfTtHq&Na>J!fi|Udk>wt7K;Rl7fQ$c`WWQMq7NFpiA8e8$fC(; zWJWfH5pRWDYHS>vbTwqW{RzLDTb9#WEwIN{xLKWH`(sUfkys6;FuWs!*?4UGmKi_? z$3LYfsjRkSpI$P`Z5qN9lvO=-%Mf^6(ro>jINLh9`BD{+LI`bI*s04O)qV0>SxB7T zgYU|cJV!lUALBvr#C>i8 zc^De#-5Tf+0x@YfPp(bo5|Omzj|kMwStAm%6yrSu`udTI%(xne%Wv`Q!gv<4e-Z$%N=1!MKB$zgLMKYB8rU7`f;3$Yd5 zTX|7*!MOrhG2ZOuJ}Mif93j|Z1SSSfYSq@rw1z%9&UpGcRdk;aGmmjktawZ!8q@kL z>OAFh#gl>>4WzsgvOJp;yn>j7s!s-p6&|4EFM*pLGgz zyWCxl9qS1q2nL#*r0F7VkZ}zXeB>V>;mKZf2xQgDaZE5h5yVzJ_?$dQWg&Eg#L20F zL>N2j9EKu89~q9;Y_|y2MCM3UA=%<#O8ZKFqywV3Q~(85J2z1!N@NBMKFJGLLCMiK zj2>adeu!8GKrvVqQo$S@>TjK|wuTjBs2_***vLM)MDQLHJqTE0)obui(2`g=6$?C(j*Y8RuPsuQD89m|C@za@LQ|o&!AOHU+xAqms^=IF zY)=u&MZ|a0=b2E-UY_VY5`7_iWx$}JuSL@9`&7e{yjCUJTU3XbDpQS5=>MX9es6MQ?hH{OyLM%=YWexeafjsu0; zCwYRg3hTfJT;3fAZ2NCOSWlAUbr0mV!%>$rHmY87K%*G&_PcV$M7H>`Wz++L@x5P` zgsc~x3!8ajmr|Pw!ie>~5Gq!A>N4FoWTYkM3^ZKeU@M%46g*8aRGShz*5btuapPuBpp|C&#K^w}r72^0 z-Vwx((qg7sDd7ubzzf*isfCO8kyq_fvLdmC_5@l)cfC2?VHJnP3Aa`iAA#fIL5%Z; zp%4ij1+pZxwlyz)%X`h~2@?m+^<4aUmLZVGuD-5GsiK{|SvtEUs@EkzIAw-S+zC_} z6C+d`)xs0H9^k>XWtIhUX^O(H%H})LP;fyoKp9-@mdhi}p>KMVwZY^~<{l6VKBLP9 z9Uj?U9P3}W)B&~GC%BLEk!KaS2m`%~0h6 z;9R||*zS`b6!B=ZVXrHgY7exu*(tWxY>AF~AK6H)BHO`>Td)x)87>A_=tO+SkCNxe zX5J}D9QxLlee?9KqNUbBVgET{v0+y}jxFwm?QauBAikY$#ax=D5j0y8y)rO7oy%d)d1=M3Eo3+y|bbIY_wr+V~ z-13tG^Sz`xY~A|MQSXHl$Jz(&Oq+%hb?k#8-B7&58@3(EbvIwwdf>VI?*7|_wUa(( ztWoiVr)$dS>NpL^vG6y#f(EJdMM% z;q|Yj_!N8cqu17B)dY=zFs+G7tM)tHKCBr#zApn~CgK(!0&%aT7;ePoh(s67 z21?f1t8AXGq+iQQi4p95eT~fY5rrc3JBlg~c?V0$rFflQ!LvTjc|Fy1(XJsT3z+bL z4x*VGEn59cUfcQid-t)T2PS}ayFf-tn)8Y>3az}ktVPT?meE=ns-=_O8i zZVy$cxyjv7mY$$AW_Bf_G~O4-m)sa51o7Cvfbn>)BEDkF@}5Ce(PP33#z?xK1A~_s zPbTe>ES++&G)-mE#}_y$s5s&|QVDC$bR zeKg(Li46ORo50>4XzZOB(;==sO3d(((7pov2*+0mI7;VYc|ZNMU-a5OqH z^NvYGtR;}*41S0Q+&cI{6;RpOVrc|R-0y=fdQbzZ;Be%?3Z$-8131Cci2+Y%zLQx8 z&|PL%*O52((|>0(X?}=|lL+o(+DwDglmG{WCxDt9F@(KeJ3e*6Jo#QY?za70GikQq za$KHIlR|bKVTw#R^k{0}PLnR*d8Os+sc3pHR=eFn9`3b-ZaY>7s!>tR^&@>Z^8BPv z`~;)=j_*>EVl3cR+2>|;3wRiE4EsMi7cMYOHh!Zgpnf|n094ANJug>&5bPJ7%R%jy zDq5-MWncTo1=5RuDfwX6RqIFJNvh%!8a4e*K0(r6Fo{_RqzM9E7fEHYol~}ml+v0%kMH-C)$5^8C$v%^QabJvi*paWBZrSnC*wF_)iZq>%Tq7tbclt9UbicNYp#5t>-Yu_t>9( z^m{vzpH+~Y!Yqs)w|3|ky3~elHY!U4a_flXG`U;_HTS68+x@4X@Jq+s(RRYJa@OS;3h;X_8gT+J z4qiTN?M;qqgy|JQRj9tH(x_nRYj{PK@T}O}Qv&3e5Na)K>JfnfqNAR&xVI2yl#rn< zDS`EnwfwkFSq3U8l2nl8s)wbO1a~RryG}XSSG-AzOS!P+L~YV&Dq#sBOs4{pwE*CU z4nkEWwV@=37p?P->1?znyRh>{<2bgEM9DEP3^~Fny@{pMFwJS&J|B`q>a&Ij8t-lL zyv_C(-G~?dM=SiS*{c{#sZvQ4dT6iad-4+j#O>?mGER^5ymrk^k>dQTZNBQ8#I?^- zcH^^=bgB)K(C#=entKt$@1D>05jTx^5>GB75@2u1yKcaE%N~9F{0bYpc?54A`}7)d z8Rw|S6SJ86la}Dr`w3|nt7%d$m3&zl!^whWI(w2%VwR8&^FRudjJgg6;Hp)iKe_bk z7P24d$U~~($Y|f#)RYw$Nw&0=cj)3X`oq4OV^`QB7oK!quIhkj`omc4AV9F7v$pd( z>QVtyCymoiS?@cW;{LY`@*n~pME=OyPDTkvusx#&N>a$CMzJeeV7mC&n#PU^u1w=< zUd2{c(arm{y|8W^iCest;dVN@K4!JX_tzXP=>8Y6ntC>niKh}I_DQ|x%)^%_S64Jw znK970#bt(^tx9AV#h|9 zU`;sKgJ49k=s}N)g(hl{t)wGNs@x=paMw2pIJUk9LVGo4l~cQIeEA?39786u$IlD4 zz~<8)=}-^fMyO@WZ~4r06Sa5DC<5_mKd$H|Cf z5$@Na!wj;%c7ln`CCU*4)Ji%sSs0F$rQy_fH6SW9Fku~6^|d$%G+F`)ub$Q)b~uAg z@oR3&NZ2YwJiN=mkM~T`(zQqj?INb-K;P`>Y!Hc(M1?~`ZFR@>1!sf(cEZ+Tx|1MI zb8?an@yo${_Bt6nGv@L{kZ#PeH}7;`rC-)n7Vf`7GPpJ#4exvR8p-^iBewTmzC*Yr z2O&tprDniS0EL{c>ao!ymA9mRnjbNCC9b!L-Z%4SDBY2Z8a4-61F4b)W-crFgAd>W zK0VbXVY{*kaip?$ofoG0`vD;_vTI zMe_1QQE&aH9Fjyk2u=0V?Z%{z18zO{Z%E%8ujE0(73+;OMJFj_q%YWZF-cAwD~iA|$KuFg3$ zG)UNQE<^-WdtB`k!R{>+S(LIKsomO-%*OK*?(Bc;nnfMA0bva9r(cYSfjpB*Q^3CP4OBsrsl$kPL zMsq6;M~aWlXZ^4pgY%(7Z>ck_2~mUdX9U46r^VhoQL|dlcn)2w_;1=ZjZhYCg z7O7<;QvVj~xtfnN%Q0Z`c!yW#wTG?H4m2W3hcgrYTZkCXA>DIaRwpom)*+dSA`I+f zI8*=t82|vrb!kC+`m>?@Ji`X;OZ;*1GY|a_*k1|jskYX1OQ0W6hXDYfcYn70AbRNe zPuMdFC3zWXbq%&>GQShX`icKT7!Jz$li^2r`tQIDe*<&;C-}ck;J;%P{Tr+M|AO^j zJ^qhn!SA%-|E4t#)q-}J{dWkozah^4MEn`i|2yELzX6}X{=-&)-@yt01_%8U{Lf|3 z?^r1R#uEG+mVYm0ekW&!*`bM-r#e~uma@sd4FDZ|V|9B|>+u!5I oJIk+TjMfZFpP!vqhI3_Wws{p0HY0gH7Tf&c&j diff --git a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar.sha1 b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar.sha1 deleted file mode 100644 index 3a82d73ca..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2b72515424da4d48017cdcfa3ea87378cefe8824 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom deleted file mode 100644 index 69c33c65c..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom +++ /dev/null @@ -1,174 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 3.1.2 - - - org.apache.maven.plugins - maven-surefire-plugin - maven-plugin - - Maven Surefire Plugin - Maven Surefire MOJO in maven-surefire-plugin. - - - ${mavenVersion} - - - - Surefire - Failsafe - - - - - org.apache.maven.surefire - maven-surefire-common - ${project.version} - - - org.apache.maven - maven-core - provided - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - org.jacoco - jacoco-maven-plugin - - jacoco.agent - - - - jacoco-agent - - prepare-agent - - - - - - maven-surefire-plugin - - ${jvm.args.tests} ${jacoco.agent} - - - - org.apache.maven.surefire - surefire-shadefire - 3.1.0 - - - - - - maven-assembly-plugin - - - build-site - - single - - package - - - src/assembly/site-source.xml - - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - - - - - ci - - - enableCiProfile - true - - - - - - maven-docck-plugin - 1.1 - - - - check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-changes-plugin - - false - - - - - jira-report - - - - - - - - - diff --git a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom.sha1 deleted file mode 100644 index a83c6dbe2..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f8202d51279854dd7a956e8578dcefb4c02ac5aa \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/_remote.repositories b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/_remote.repositories deleted file mode 100644 index 5a47d0068..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:46 EDT 2024 -maven-war-plugin-3.3.1.jar>central= -maven-war-plugin-3.3.1.pom>central= diff --git a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar deleted file mode 100644 index 44f30313d83e136016413f5bb063e1afe8ffdab9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 82457 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 diff --git a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar.sha1 b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar.sha1 deleted file mode 100644 index b88fa8464..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -51f2461f29ef77ff8b6cb675372ec9edd9507a40 \ No newline at end of file diff --git a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom deleted file mode 100644 index 35d02dc33..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom +++ /dev/null @@ -1,263 +0,0 @@ - - - - - - 4.0.0 - - - maven-plugins - org.apache.maven.plugins - 34 - - - - maven-war-plugin - 3.3.1 - maven-plugin - - Apache Maven WAR Plugin - Builds a Web Application Archive (WAR) file from the project output and its dependencies. - - - ${mavenVersion} - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-war-plugin.git - scm:git:https://gitbox.apache.org/repos/asf/maven-war-plugin.git - https://github.com/apache/maven-war-plugin/tree/${project.scm.tag} - maven-war-plugin-3.3.1 - - - JIRA - https://issues.apache.org/jira/browse/MWAR - - - Jenkins - https://builds.apache.org/job/maven-box/job/maven-war-plugin/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 3.5.0 - 3.1.1 - 3.0 - 7 - 2020-07-10T06:09:12Z - - - - - Auke Schrijnen - - - Ludwig Magnusson - - - Hayarobi Park - - - Enrico Olivelli - - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-archiver - ${mavenArchiverVersion} - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - commons-io - commons-io - 2.6 - - - org.codehaus.plexus - plexus-archiver - 4.2.2 - - - org.codehaus.plexus - plexus-interpolation - 1.26 - - - - org.codehaus.plexus - plexus-utils - 3.3.0 - - - - org.apache.maven.shared - maven-filtering - ${mavenFilteringVersion} - - - - org.apache.maven.shared - maven-mapping - 3.0.0 - - - - org.apache.maven - maven-compat - ${mavenVersion} - test - - - junit - junit - 4.13 - test - - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 2.1 - test - - - - - - - src/main/resources-filtered - true - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-bytecode-version - - enforce - - - - - ${maven.compiler.target} - - - true - - - - - - org.apache.rat - apache-rat-plugin - - - - src/it/MWAR-167/src/main/resources/MANIFEST.MF - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${project.build.directory} - ${project.build.outputDirectory} - - - - - - - - - run-its - - - - org.apache.maven.plugins - maven-invoker-plugin - - - clean - package - - src/it - verify - prebuild - ${project.build.directory}/local-repo - src/it/settings.xml - ${project.build.directory}/it - - - - install - pre-integration-tests - - install - - - - javax.servlet:servlet-api:2.4:jar - javax.servlet:javax.servlet-api:3.0.1:jar - org.apache.struts:struts-core:1.3.9:jar - org.codehaus.plexus:plexus-utils:1.4.7:jar:sources - - - - - - - - - - - diff --git a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom.sha1 b/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom.sha1 deleted file mode 100644 index d34542261..000000000 --- a/code/arachne/org/apache/maven/plugins/maven-war-plugin/3.3.1/maven-war-plugin-3.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -215beea5878c7c7bf3991bb99218b8d063de317d \ No newline at end of file diff --git a/code/arachne/org/apache/maven/surefire/surefire/3.1.2/_remote.repositories b/code/arachne/org/apache/maven/surefire/surefire/3.1.2/_remote.repositories deleted file mode 100644 index e24c7b169..000000000 --- a/code/arachne/org/apache/maven/surefire/surefire/3.1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:46 EDT 2024 -surefire-3.1.2.pom>central= diff --git a/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom b/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom deleted file mode 100644 index 0e4c95f61..000000000 --- a/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom +++ /dev/null @@ -1,569 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven - maven-parent - 39 - - - org.apache.maven.surefire - surefire - 3.1.2 - pom - - Apache Maven Surefire - Surefire is a test framework project. - This is the aggregator POM in Apache Maven Surefire project. - https://maven.apache.org/surefire/ - 2004 - - - - Jesse Kuhnert - - - Marvin Froeder - marvin@marvinformatics.com - - - - - surefire-shared-utils - surefire-logger-api - surefire-api - surefire-extensions-api - surefire-extensions-spi - surefire-booter - surefire-grouper - surefire-providers - surefire-shadefire - maven-surefire-common - surefire-report-parser - maven-surefire-plugin - maven-failsafe-plugin - maven-surefire-report-plugin - surefire-its - - - - ${maven.surefire.scm.devConnection} - ${maven.surefire.scm.devConnection} - surefire-3.1.2 - https://github.com/apache/maven-surefire/tree/${project.scm.tag} - - - jira - https://issues.apache.org/jira/browse/SUREFIRE - - - Jenkins - https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-surefire/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 8 - 3.2.5 - 3.12.0 - 1.23.0 - 2.12.0 - 1.1.2 - 5.9.3 - - 3.3.4 - 2.0.9 - 0.8.8 - ${project.version} - scm:git:https://gitbox.apache.org/repos/asf/maven-surefire.git - surefire-archives/surefire-LATEST - 1.${javaVersion} - 1.${javaVersion} - - ${jvm9ArgsTests} -Xms32m -Xmx144m -XX:SoftRefLRUPolicyMSPerMB=50 -Djava.awt.headless=true -Djdk.net.URLClassPath.disableClassPathURLCheck=true - 2023-06-03T18:02:05Z - - - - - - org.apache.commons - commons-compress - ${commonsCompress} - - - org.apache.commons - commons-lang3 - ${commonsLang3Version} - - - commons-io - commons-io - ${commonsIoVersion} - - - org.apache.maven.reporting - maven-reporting-api - 3.1.1 - - - org.apache.maven - maven-core - ${mavenVersion} - provided - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - provided - - - org.apache.maven - maven-artifact - ${mavenVersion} - provided - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-compat - ${mavenVersion} - - - org.apache.maven - maven-settings - ${mavenVersion} - - - org.apache.maven.shared - maven-shared-utils - ${mavenSharedUtilsVersion} - - - org.apache.maven.reporting - maven-reporting-impl - 3.2.0 - - - org.apache.maven - maven-core - - - org.apache.maven - maven-plugin-api - - - - - org.apache.maven.shared - maven-common-artifact-filters - 3.1.1 - - - org.apache.maven.shared - maven-shared-utils - - - org.apache.maven - maven-model - - - org.sonatype.sisu - sisu-inject-plexus - - - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 3.3.0 - - - org.xmlunit - xmlunit-core - 2.9.1 - - - net.sourceforge.htmlunit - htmlunit - 2.70.0 - - - - org.fusesource.jansi - jansi - 2.4.0 - - - org.apache.maven.shared - maven-verifier - 1.8.0 - - - org.codehaus.plexus - plexus-java - ${plexus-java-version} - - - org.junit.platform - junit-platform-launcher - 1.9.2 - - - org.junit.jupiter - junit-jupiter-engine - ${junit5Version} - - - org.junit.jupiter - junit-jupiter-params - ${junit5Version} - - - org.mockito - mockito-core - 2.28.2 - - - org.hamcrest - hamcrest-core - - - - - - org.powermock - powermock-core - ${powermockVersion} - - - org.powermock - powermock-module-junit4 - ${powermockVersion} - - - org.powermock - powermock-api-mockito2 - ${powermockVersion} - - - org.powermock - powermock-reflect - ${powermockVersion} - - - org.objenesis - objenesis - - - - - org.javassist - javassist - 3.29.0-GA - - - - junit - junit - 4.13.2 - - - org.hamcrest - hamcrest-library - 1.3 - - - org.assertj - assertj-core - 3.24.2 - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - org.jacoco - org.jacoco.agent - ${jacocoVersion} - runtime - - - - - - junit - junit - test - - - org.hamcrest - hamcrest-core - - - - - org.hamcrest - hamcrest-library - test - - - org.assertj - assertj-core - test - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - - -Xdoclint:all - - UTF-8 - - - none - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.23 - - - maven-surefire-plugin - 3.1.0 - - - - false - ${jvm.args.tests} - - false - false - - - - maven-release-plugin - - clean install - false - - - - maven-plugin-plugin - - - help-mojo - - helpmojo - - - - - - org.jacoco - jacoco-maven-plugin - ${jacocoVersion} - - ${skipTests} - - - HTML - - - **/failsafe/* - **/failsafe/**/* - **/surefire/* - **/surefire/**/* - - - **/HelpMojo.class - **/shadefire/**/* - org/jacoco/**/* - com/vladium/emma/rt/* - - - - - - - - org.apache.rat - apache-rat-plugin - - - rat-check - - check - - - - Jenkinsfile - README.md - .editorconfig - .gitignore - .git/**/* - **/.github/** - **/.idea - **/.svn/**/* - **/*.iml - **/*.ipr - **/*.iws - **/*.versionsBackup - **/dependency-reduced-pom.xml - .repository/** - - src/test/resources/**/* - src/test/resources/**/*.css - **/*.jj - src/main/resources/META-INF/services/org.apache.maven.surefire.api.provider.SurefireProvider - DEPENDENCIES - .m2/** - .m2 - .travis.yml - .mvn/wrapper/maven-wrapper.properties - **/.gitattributes - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - signature-check - - check - - - verify - - true - - org.codehaus.mojo.signature - java18 - 1.0 - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - true - - - - org.jacoco - jacoco-maven-plugin - - - maven-deploy-plugin - - true - - - - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 3.1.0 - - - - - - - - - ide-development - - 3-SNAPSHOT - - - - jdk9+ - - [9,) - - - --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.math=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.text=ALL-UNNAMED --add-opens java.base/java.util.regex=ALL-UNNAMED --add-opens java.base/java.nio.channels.spi=ALL-UNNAMED --add-opens java.base/sun.nio.ch=ALL-UNNAMED --add-opens java.base/java.net=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED --add-opens java.base/sun.nio.fs=ALL-UNNAMED --add-opens java.base/sun.nio.cs=ALL-UNNAMED --add-opens java.base/java.nio.file=ALL-UNNAMED --add-opens java.base/java.nio.charset=ALL-UNNAMED - - - - reporting - - - - org.apache.maven.plugins - maven-changes-plugin - - - Type,Priority,Key,Summary,Resolution - true - Fixed - type DESC,Priority DESC,Key - 1000 - true - - - - - - - diff --git a/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom.sha1 b/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom.sha1 deleted file mode 100644 index c968d719a..000000000 --- a/code/arachne/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f5ce8f7960db895ae7a47594a363e2758743f209 \ No newline at end of file diff --git a/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/_remote.repositories b/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/_remote.repositories deleted file mode 100644 index bc7276e56..000000000 --- a/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:59 EDT 2024 -poi-ooxml-schemas-3.17.pom>central= diff --git a/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom b/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom deleted file mode 100644 index fc58ca8c4..000000000 --- a/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - 4.0.0 - org.apache.poi - poi-ooxml-schemas - 3.17 - jar - Apache POI - http://poi.apache.org/ - Apache POI - Java API To Access Microsoft Format Files - - - - POI Users List - user-subscribe@poi.apache.org - user-unsubscribe@poi.apache.org - http://mail-archives.apache.org/mod_mbox/poi-user/ - - - POI Developer List - dev-subscribe@poi.apache.org - dev-unsubscribe@poi.apache.org - http://mail-archives.apache.org/mod_mbox/poi-dev/ - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Apache Software Foundation - http://www.apache.org/ - - - - - org.apache.xmlbeans - xmlbeans - 2.6.0 - - - diff --git a/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom.sha1 b/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom.sha1 deleted file mode 100644 index a57e00136..000000000 --- a/code/arachne/org/apache/poi/poi-ooxml-schemas/3.17/poi-ooxml-schemas-3.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3a1a70901234441e9eff24d820ba4e3fe1b5bf02 \ No newline at end of file diff --git a/code/arachne/org/apache/poi/poi-ooxml/3.17/_remote.repositories b/code/arachne/org/apache/poi/poi-ooxml/3.17/_remote.repositories deleted file mode 100644 index 563f939f3..000000000 --- a/code/arachne/org/apache/poi/poi-ooxml/3.17/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:58 EDT 2024 -poi-ooxml-3.17.pom>central= diff --git a/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom b/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom deleted file mode 100644 index 599357fc1..000000000 --- a/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - 4.0.0 - org.apache.poi - poi-ooxml - 3.17 - jar - Apache POI - http://poi.apache.org/ - Apache POI - Java API To Access Microsoft Format Files - - - - POI Users List - user-subscribe@poi.apache.org - user-unsubscribe@poi.apache.org - http://mail-archives.apache.org/mod_mbox/poi-user/ - - - POI Developer List - dev-subscribe@poi.apache.org - dev-unsubscribe@poi.apache.org - http://mail-archives.apache.org/mod_mbox/poi-dev/ - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Apache Software Foundation - http://www.apache.org/ - - - - - org.apache.poi - poi - 3.17 - - - org.apache.poi - poi-ooxml-schemas - 3.17 - - - com.github.virtuald - curvesapi - 1.04 - - - diff --git a/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom.sha1 b/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom.sha1 deleted file mode 100644 index 3ad56846f..000000000 --- a/code/arachne/org/apache/poi/poi-ooxml/3.17/poi-ooxml-3.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aa3a9605ef9f3dd1027bd9996cde39aed5686e72 \ No newline at end of file diff --git a/code/arachne/org/apache/poi/poi/3.17/_remote.repositories b/code/arachne/org/apache/poi/poi/3.17/_remote.repositories deleted file mode 100644 index a8d7449bc..000000000 --- a/code/arachne/org/apache/poi/poi/3.17/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:58 EDT 2024 -poi-3.17.pom>central= diff --git a/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom b/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom deleted file mode 100644 index 8640cb6d2..000000000 --- a/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - 4.0.0 - org.apache.poi - poi - 3.17 - jar - Apache POI - http://poi.apache.org/ - Apache POI - Java API To Access Microsoft Format Files - - - - POI Users List - user-subscribe@poi.apache.org - user-unsubscribe@poi.apache.org - http://mail-archives.apache.org/mod_mbox/poi-user/ - - - POI Developer List - dev-subscribe@poi.apache.org - dev-unsubscribe@poi.apache.org - http://mail-archives.apache.org/mod_mbox/poi-dev/ - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Apache Software Foundation - http://www.apache.org/ - - - - - commons-logging - commons-logging - 1.2 - runtime - true - - - log4j - log4j - 1.2.17 - runtime - true - - - commons-codec - commons-codec - 1.10 - - - - org.hamcrest - hamcrest-core - test - 1.3 - - - junit - junit - test - 4.12 - - - org.apache.commons - commons-collections4 - 4.1 - - - - diff --git a/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom.sha1 b/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom.sha1 deleted file mode 100644 index f9162700d..000000000 --- a/code/arachne/org/apache/poi/poi/3.17/poi-3.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d60d5bd6c6c52bfa4c855fd92f5ee66a837c5d4a \ No newline at end of file diff --git a/code/arachne/org/apache/santuario/xmlsec/3.0.2/_remote.repositories b/code/arachne/org/apache/santuario/xmlsec/3.0.2/_remote.repositories deleted file mode 100644 index ed142b557..000000000 --- a/code/arachne/org/apache/santuario/xmlsec/3.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:37 EDT 2024 -xmlsec-3.0.2.pom>central= diff --git a/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom b/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom deleted file mode 100644 index 41ac90556..000000000 --- a/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom +++ /dev/null @@ -1,666 +0,0 @@ - - - 4.0.0 - org.apache.santuario - xmlsec - bundle - Apache XML Security for Java - 3.0.2 - - Apache XML Security for Java supports XML-Signature Syntax and Processing, - W3C Recommendation 12 February 2002, and XML Encryption Syntax and - Processing, W3C Recommendation 10 December 2002. As of version 1.4, - the library supports the standard Java API JSR-105: XML Digital Signature APIs. - - https://santuario.apache.org/ - - JIRA - https://issues.apache.org/jira/browse/SANTUARIO - - - - Apache Santuario Developer List - dev-subscribe@santuario.apache.org - - dev-unsubscribe@santuario.apache.org - - dev@santuario.apache.org - - http://news.gmane.org/gmane.text.xml.security.devel - - - - 2000 - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:https://gitbox.apache.org/repos/asf/santuario-xml-security-java.git - scm:git:https://gitbox.apache.org/repos/asf/santuario-xml-security-java.git - https://gitbox.apache.org/repos/asf?p=santuario-xml-security-java.git;a=summary - xmlsec-3.0.2 - - - - The Apache Software Foundation - https://www.apache.org/ - - - - org.apache - apache - 24 - - - - ${basedir}/src/main/java - ${basedir}/src/test/java - - - src/main/java - - **/*.java - - - - src/main/resources - - **/*.java - - - - - - src/test/java - - **/*.java - - - - src/test/resources - - **/*.java - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.15.0 - - - ${basedir}/etc/santuario-pmd-ruleset.xml - - false - UTF-8 - true - true - false - ${targetJdk} - - - - validate - validate - - check - - - - - - org.gaul - modernizer-maven-plugin - 2.6.0 - - ${targetJdk} - - - - modernizer-check - verify - - modernizer - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - ${targetJdk} - ${targetJdk} - - -XDcompilePolicy=simple - - - - - com.google.errorprone - error_prone_core - 2.18.0 - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - test-compile - - jar - test-jar - - - ${project.build.directory} - ${project.build.directory}/test-classes - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.8 - true - - - Apache XML Security - The Apache Software Foundation - org.apache - ${project.version} - Apache XML Security - The Apache Software Foundation - ${project.version} - - org.apache.xml.security.*;version="${project.version}", - org.apache.jcp.xml.dsig.internal.*;version="${project.version}", - - - !org.apache.xml.security.*, - !org.apache.jcp.xml.dsig.internal.*, - org.slf4j.*;version="[1.7,3)", - org.apache.commons.codec.*;version="[1.6,2)", - org.apache.xml.dtm*;resolution:=optional;version="[2.7,3)", - org.apache.xml.utils*;resolution:=optional;version="[2.7,3)", - org.apache.xpath*;resolution:=optional;version="[2.7,3)", - * - - org.apache.santuario.xmlsec - - - - - - com.evolvedbinary.maven.jvnet - jaxb30-maven-plugin - 0.15.0 - - - bindings - generate-sources - - generate - - - - ${basedir}/src/main/resources/ - - - schemas/security-config.xsd - bindings/schemas/exc-c14n.xsd - bindings/schemas/xmldsig-core-schema.xsd - bindings/schemas/xmldsig11-schema.xsd - bindings/schemas/xenc-schema.xsd - bindings/schemas/xenc-schema-11.xsd - bindings/schemas/rsa-pss.xsd - - ${basedir}/src/main/resources/bindings/ - - c14n.xjb - dsig.xjb - dsig11.xjb - xenc.xjb - xenc11.xjb - security-config.xjb - xop.xjb - rsa-pss.xjb - - ${basedir}/src/main/resources/bindings/bindings.cat - false - true - 3.0 - true - - false - - -npa - - - - - - - org.apache.maven.plugins - maven-release-plugin - - false - clean install - deploy - -Papache-release - true - - - - org.apache.maven.plugins - maven-source-plugin - - - - jar - - - - - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - - org.jacoco - jacoco-maven-plugin - 0.8.8 - - - - prepare-agent - - - - report - prepare-package - - report - - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - - - jar - - - - - 8 - true - org.apache.xml.security.binding.* - - - - org.codehaus.mojo - clirr-maven-plugin - ${clirr.version} - - ${minSeverity} - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.2.1 - - - - 3.5 - - - - - - - - - install - - - - - release - - - release - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - org.apache.maven.plugins - maven-source-plugin - - - - - - fastinstall - - true - true - - - - nochecks - - true - - - - jdk18 - - 1.8 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - -Xdoclint:none - - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - - -J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/9+181-r4173-1/javac-9+181-r4173-1.jar - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0 - - brief - false - false - false - - **/*Test.java - - - **/PerformanceMemoryTest.java - **/PerformanceTimingTest.java - - - ${project.version} - - src/test/resources/log4j2.xml - file - SHA1PRNG - - - - - - - - - jdk19-plus - - [9,) - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - -Xdoclint:none - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0 - - brief - false - false - false - - **/*Test.java - - - **/PerformanceMemoryTest.java - **/PerformanceTimingTest.java - - -Xmx2000m --add-opens java.base/java.lang.reflect=ALL-UNNAMED - - ${project.version} - src/test/resources/log4j2.xml - - file - SHA1PRNG - - - - - - - - - - - - 2.0.7 - 2.7.2 - 5.9.2 - 2.20.0 - 1.72 - 2.2 - 2.9.1 - 1.15 - 6.5.0 - 9.4.51.v20230217 - 3.0.1 - 3.0.2 - - UTF-8 - 1.8 - 1.8 - 2.8 - - info - 2023-03-27T06:24:31Z - - - - - org.slf4j - slf4j-api - ${slf4j.version} - compile - - - jakarta.xml.bind - jakarta.xml.bind-api - ${xml.bind.api.version} - compile - - - com.sun.activation - jakarta.activation - - - - - commons-codec - commons-codec - ${commons.codec.version} - compile - - - com.fasterxml.woodstox - woodstox-core - ${woodstox.core.version} - runtime - - - org.apache.logging.log4j - log4j-slf4j-impl - ${log4j.version} - test - - - org.junit.jupiter - junit-jupiter-engine - ${junit.version} - test - - - org.junit.jupiter - junit-jupiter-params - ${junit.version} - test - - - org.xmlunit - xmlunit-core - ${xmlunit.version} - test - - - org.hamcrest - hamcrest-library - ${hamcrest.version} - test - - - org.xmlunit - xmlunit-matchers - ${xmlunit.version} - test - - - org.eclipse.jetty - jetty-server - ${jetty.version} - test - - - org.eclipse.jetty - jetty-servlet - ${jetty.version} - test - - - org.eclipse.jetty - jetty-servlets - ${jetty.version} - test - - - xalan - xalan - ${xalan.version} - test - - - org.bouncycastle - bcprov-jdk18on - ${bcprov.version} - test - - - org.glassfish.jaxb - jaxb-runtime - ${xml.bind.impl.version} - test - - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - false - - - - - - - org.codehaus.mojo - clirr-maven-plugin - ${clirr.version} - - ${minSeverity} - - - - - diff --git a/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom.sha1 b/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom.sha1 deleted file mode 100644 index 59da206ed..000000000 --- a/code/arachne/org/apache/santuario/xmlsec/3.0.2/xmlsec-3.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b372678d35dab8db580c477158e1656b94043b01 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/_remote.repositories deleted file mode 100644 index a3e3ed502..000000000 --- a/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:20 EDT 2024 -shiro-crypto-support-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom b/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom deleted file mode 100644 index a1043714e..000000000 --- a/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - - - 4.0.0 - - - org.apache.shiro - shiro-crypto - 2.0.1 - - - org.apache.shiro.crypto - shiro-crypto-support - Apache Shiro :: Cryptography :: Support - pom - - - hashes/argon2 - hashes/bcrypt - - - - diff --git a/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom.sha1 deleted file mode 100644 index 2445de7b9..000000000 --- a/code/arachne/org/apache/shiro/crypto/shiro-crypto-support/2.0.1/shiro-crypto-support-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dd021926bc337ad7fa644073ebf3be62ac8d9694 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/_remote.repositories deleted file mode 100644 index 5e38332c9..000000000 --- a/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:20 EDT 2024 -shiro-hashes-argon2-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom b/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom deleted file mode 100644 index 6f540b913..000000000 --- a/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom +++ /dev/null @@ -1,99 +0,0 @@ - - - - - 4.0.0 - - - org.apache.shiro.crypto - shiro-crypto-support - 2.0.1 - ../../pom.xml - - - shiro-hashes-argon2 - Apache Shiro :: Cryptography :: Support :: Argon2 - - bundle - - hashes.argon2 - - - - - org.apache.shiro - shiro-crypto-hash - - - aopalliance - aopalliance - 1.0 - true - - - com.google.inject - guice - true - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.hashes.argon2 - org.apache.shiro.crypto.support.hashes.argon2*;version=${project.version} - - org.apache.shiro*;version="${shiro.osgi.importRange}", - org.aopalliance*;version="[1.0.0, 2.0.0)", - com.google.inject*;version="1.3", - * - - - osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)" - - - osgi.serviceloader; osgi.serviceloader=org.apache.shiro.crypto.hash.HashSpi - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom.sha1 deleted file mode 100644 index 7cd64d10c..000000000 --- a/code/arachne/org/apache/shiro/crypto/shiro-hashes-argon2/2.0.1/shiro-hashes-argon2-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -76374353b9833b07975718cd6d4cc804fc26d6c5 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/_remote.repositories deleted file mode 100644 index af945137c..000000000 --- a/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:20 EDT 2024 -shiro-hashes-bcrypt-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom b/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom deleted file mode 100644 index e1fbdca54..000000000 --- a/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom +++ /dev/null @@ -1,99 +0,0 @@ - - - - - 4.0.0 - - - org.apache.shiro.crypto - shiro-crypto-support - 2.0.1 - ../../pom.xml - - - shiro-hashes-bcrypt - Apache Shiro :: Cryptography :: Support :: BCrypt - - bundle - - hashes.bcrypt - - - - - org.apache.shiro - shiro-crypto-hash - - - aopalliance - aopalliance - 1.0 - true - - - com.google.inject - guice - true - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.hashes.bcrypt - org.apache.shiro.crypto.support.hashes.bcrypt*;version=${project.version} - - org.apache.shiro*;version="${shiro.osgi.importRange}", - org.aopalliance*;version="[1.0.0, 2.0.0)", - com.google.inject*;version="1.3", - * - - - osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)" - - - osgi.serviceloader; osgi.serviceloader=org.apache.shiro.crypto.hash.HashSpi - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - diff --git a/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom.sha1 deleted file mode 100644 index ea534a20d..000000000 --- a/code/arachne/org/apache/shiro/crypto/shiro-hashes-bcrypt/2.0.1/shiro-hashes-bcrypt-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0d249f3423c0011be0de92b1e9eb20574140b4ab \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-cache/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-cache/1.13.0/_remote.repositories deleted file mode 100644 index 2e54143e8..000000000 --- a/code/arachne/org/apache/shiro/shiro-cache/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -shiro-cache-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom deleted file mode 100644 index 9232a19ff..000000000 --- a/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - org.apache.shiro - shiro-root - 1.13.0 - - - 4.0.0 - shiro-cache - Apache Shiro :: Cache - bundle - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.cache - org.apache.shiro.cache*;version=${project.version} - - org.apache.shiro*;version="${shiro.osgi.importRange}", - * - - - - - - - - - - org.apache.shiro - shiro-lang - - - - diff --git a/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom.sha1 deleted file mode 100644 index f6817386b..000000000 --- a/code/arachne/org/apache/shiro/shiro-cache/1.13.0/shiro-cache-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ef380e72f3d6da63ffd9d4c3e9ca783a3d888486 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-cache/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-cache/2.0.1/_remote.repositories deleted file mode 100644 index e83e1b4f5..000000000 --- a/code/arachne/org/apache/shiro/shiro-cache/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:19 EDT 2024 -shiro-cache-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom deleted file mode 100644 index f3e7203bb..000000000 --- a/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - org.apache.shiro - shiro-root - 2.0.1 - - - 4.0.0 - shiro-cache - Apache Shiro :: Cache - bundle - - cache - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.cache - org.apache.shiro.cache*;version=${project.version} - - org.apache.shiro.lang*;version="${shiro.osgi.importRange}", - * - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - - - - - org.apache.shiro - shiro-lang - - - - diff --git a/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom.sha1 deleted file mode 100644 index 0602e3582..000000000 --- a/code/arachne/org/apache/shiro/shiro-cache/2.0.1/shiro-cache-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -68569175cf4056d0b4faaf2875ae5751a7a5d55a \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/_remote.repositories deleted file mode 100644 index e84baf6aa..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -shiro-config-core-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom deleted file mode 100644 index e2bb3c9b4..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - org.apache.shiro - shiro-config - 1.13.0 - - - 4.0.0 - shiro-config-core - Apache Shiro :: Configuration :: Core - - bundle - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.config.core - org.apache.shiro.config*;version=${project.version} - - org.apache.shiro*;version="${shiro.osgi.importRange}", - * - - - - - - - - - - org.apache.shiro - shiro-lang - - - diff --git a/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom.sha1 deleted file mode 100644 index 947d334e6..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-core/1.13.0/shiro-config-core-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -78a935bd39f447206724b4695f3d6de102025f88 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/_remote.repositories deleted file mode 100644 index f257b50a6..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:20 EDT 2024 -shiro-config-core-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom deleted file mode 100644 index 896fad3e3..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - org.apache.shiro - shiro-config - 2.0.1 - - - 4.0.0 - shiro-config-core - Apache Shiro :: Configuration :: Core - - bundle - - config.core - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.config.core - org.apache.shiro.config*;version=${project.version} - - org.apache.shiro.lang*;version="${shiro.osgi.importRange}", - * - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - - - - - org.apache.shiro - shiro-lang - - - - diff --git a/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom.sha1 deleted file mode 100644 index 06f1ed03f..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-core/2.0.1/shiro-config-core-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3eb531f47aa46a65a2b41255db624a5c6c0cbf60 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/_remote.repositories deleted file mode 100644 index b3bede15f..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -shiro-config-ogdl-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom deleted file mode 100644 index 3f77719c3..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - org.apache.shiro - shiro-config - 1.13.0 - - - 4.0.0 - shiro-config-ogdl - Apache Shiro :: Configuration :: OGDL - Support for Shiro's Object Graph Definition Language (mostly used in Ini configuration) where - declared name/value pairs are interpreted to create an object graph - bundle - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.config.ogdl - org.apache.shiro.config*;version=${project.version} - - org.apache.shiro*;version="${shiro.osgi.importRange}", - * - - - - - - - - - - org.apache.shiro - shiro-lang - - - org.apache.shiro - shiro-config-core - - - org.apache.shiro - shiro-event - - - commons-beanutils - commons-beanutils - - - - org.apache.commons - commons-configuration2 - true - - - - - org.slf4j - slf4j-api - - - org.slf4j - slf4j-simple - - - org.slf4j - jcl-over-slf4j - - - diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom.sha1 deleted file mode 100644 index a08bb367d..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-ogdl/1.13.0/shiro-config-ogdl-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8d3822101be8bde233a0229ea38224c54b652aec \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/_remote.repositories deleted file mode 100644 index 0946bc308..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:20 EDT 2024 -shiro-config-ogdl-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom deleted file mode 100644 index a95cc3eae..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - org.apache.shiro - shiro-config - 2.0.1 - - - 4.0.0 - shiro-config-ogdl - Apache Shiro :: Configuration :: OGDL - Support for Shiro's Object Graph Definition Language (mostly used in Ini configuration) where - declared name/value pairs are interpreted to create an object graph - - bundle - - config.ogdl - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.config.ogdl - org.apache.shiro.config.ogdl.*;version=${project.version} - - org.apache.shiro.lang*;version="${shiro.osgi.importRange}", - org.apache.shiro.config*;version="${shiro.osgi.importRange}", - org.apache.shiro.event*;version="${shiro.osgi.importRange}", - * - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - - - - - org.apache.shiro - shiro-lang - - - org.apache.shiro - shiro-config-core - - - org.apache.shiro - shiro-event - - - commons-beanutils - commons-beanutils - - - - org.apache.commons - commons-configuration2 - true - - - - - org.slf4j - slf4j-api - - - org.slf4j - slf4j-simple - - - org.slf4j - jcl-over-slf4j - - - - diff --git a/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom.sha1 deleted file mode 100644 index c16501157..000000000 --- a/code/arachne/org/apache/shiro/shiro-config-ogdl/2.0.1/shiro-config-ogdl-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fb8b55f66a5511da90f4a6f5d5774f732116f163 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config/1.13.0/_remote.repositories deleted file mode 100644 index 1dfafaf69..000000000 --- a/code/arachne/org/apache/shiro/shiro-config/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -shiro-config-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom deleted file mode 100644 index b6d807c26..000000000 --- a/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - - - 4.0.0 - - - org.apache.shiro - shiro-root - 1.13.0 - - - shiro-config - Apache Shiro :: Configuration - pom - - - core - ogdl - - - - diff --git a/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom.sha1 deleted file mode 100644 index 664ab09b3..000000000 --- a/code/arachne/org/apache/shiro/shiro-config/1.13.0/shiro-config-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f0519dd2fe7cd064ad6d519e28b57f1b60a4c680 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-config/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-config/2.0.1/_remote.repositories deleted file mode 100644 index 79632e973..000000000 --- a/code/arachne/org/apache/shiro/shiro-config/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:20 EDT 2024 -shiro-config-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom deleted file mode 100644 index 0bc7a0650..000000000 --- a/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - - - 4.0.0 - - - org.apache.shiro - shiro-root - 2.0.1 - - - shiro-config - Apache Shiro :: Configuration - pom - - - core - ogdl - - - - diff --git a/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom.sha1 deleted file mode 100644 index 2715285e6..000000000 --- a/code/arachne/org/apache/shiro/shiro-config/2.0.1/shiro-config-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -00d02189c4ba53342e497b4db8c63c268d5e4530 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-core/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-core/1.13.0/_remote.repositories deleted file mode 100644 index 1940a4111..000000000 --- a/code/arachne/org/apache/shiro/shiro-core/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:23 EDT 2024 -shiro-core-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom deleted file mode 100644 index fd691602c..000000000 --- a/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - org.apache.shiro - shiro-root - 1.13.0 - - - 4.0.0 - shiro-core - Apache Shiro :: Core - bundle - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.core - org.apache.shiro*;version=${project.version} - - org.apache.shiro*;version="${shiro.osgi.importRange}", - org.apache.commons.beanutils*;resolution:=optional, - org.apache.commons.configuration2*;resolution:=optional, - * - - - org.apache.shiro.* - - - - - - org.apache.maven.plugins - maven-shade-plugin - - - - - - - org.apache.shiro - shiro-lang - - - org.apache.shiro - shiro-cache - - - org.apache.shiro - shiro-crypto-hash - - - org.apache.shiro - shiro-crypto-cipher - - - org.apache.shiro - shiro-config-core - - - org.apache.shiro - shiro-config-ogdl - - - org.apache.shiro - shiro-event - - - - - org.slf4j - jcl-over-slf4j - - - org.apache.logging.log4j - log4j-slf4j-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - org.apache.logging.log4j - log4j-core - tests - test - - - - - org.hsqldb - hsqldb - jdk8 - test - - - - diff --git a/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom.sha1 deleted file mode 100644 index 1d405c190..000000000 --- a/code/arachne/org/apache/shiro/shiro-core/1.13.0/shiro-core-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8b6b096bc25e8c670a28845e5b17b7edc3e56845 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-core/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-core/2.0.1/_remote.repositories deleted file mode 100644 index 6070a0834..000000000 --- a/code/arachne/org/apache/shiro/shiro-core/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:19 EDT 2024 -shiro-core-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom deleted file mode 100644 index 79f1dd979..000000000 --- a/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - org.apache.shiro - shiro-root - 2.0.1 - - - 4.0.0 - shiro-core - Apache Shiro :: Core - bundle - - core - - - - - - maven-compiler-plugin - - - - org.projectlombok - lombok - ${lombok.version} - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.core - - org.apache.shiro;version=${project.version}, - org.apache.shiro.aop;version=${project.version}, - org.apache.shiro.authc*;version=${project.version}, - org.apache.shiro.authz*;version=${project.version}, - org.apache.shiro.concurrent;version=${project.version}, - org.apache.shiro.dao;version=${project.version}, - org.apache.shiro.env;version=${project.version}, - org.apache.shiro.ini;version=${project.version}, - org.apache.shiro.jndi;version=${project.version}, - org.apache.shiro.ldap;version=${project.version}, - org.apache.shiro.mgt;version=${project.version}, - org.apache.shiro.realm*;version=${project.version}, - org.apache.shiro.session*;version=${project.version}, - org.apache.shiro.subject*;version=${project.version}, - org.apache.shiro.util;version=${project.version}, - - - org.apache.shiro.lang*;version="${shiro.osgi.importRange}", - org.apache.shiro.cache*;version="${shiro.osgi.importRange}", - org.apache.shiro.config*;version="${shiro.osgi.importRange}", - org.apache.shiro.crypto*;version="${shiro.osgi.importRange}", - org.apache.shiro.event*;version="${shiro.osgi.importRange}", - org.apache.commons.beanutils*;resolution:=optional, - org.apache.commons.configuration2*;resolution:=optional, - * - - - org.apache.shiro.* - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - org.apache.maven.plugins - maven-shade-plugin - - - - - - - org.apache.shiro - shiro-lang - - - org.apache.shiro - shiro-cache - - - org.apache.shiro - shiro-crypto-hash - - - org.apache.shiro.crypto - shiro-hashes-argon2 - runtime - - - org.apache.shiro.crypto - shiro-hashes-bcrypt - runtime - - - org.apache.shiro - shiro-crypto-cipher - - - org.apache.shiro - shiro-config-core - - - org.apache.shiro - shiro-config-ogdl - - - org.apache.shiro - shiro-event - - - jakarta.annotation - jakarta.annotation-api - ${jakarta.annotations.version} - provided - true - - - org.apache.commons - commons-configuration2 - true - - - - - org.slf4j - jcl-over-slf4j - - - org.apache.logging.log4j - log4j-slf4j2-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - org.apache.logging.log4j - log4j-core-test - test - - - org.mockito - mockito-junit-jupiter - ${mockito.version} - test - - - org.projectlombok - lombok - ${lombok.version} - provided - true - - - - - org.hsqldb - hsqldb - test - - - - diff --git a/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom.sha1 deleted file mode 100644 index 340f17327..000000000 --- a/code/arachne/org/apache/shiro/shiro-core/2.0.1/shiro-core-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -26d854a49739a44d76942db2cbbd810327dc48d5 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/_remote.repositories deleted file mode 100644 index 76ac1f1a5..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -shiro-crypto-cipher-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom deleted file mode 100644 index d54490506..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - org.apache.shiro - shiro-crypto - 1.13.0 - - - 4.0.0 - shiro-crypto-cipher - Apache Shiro :: Cryptography :: Ciphers - bundle - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.crypto.cipher - org.apache.shiro.crypto.*;version=${project.version} - - org.apache.shiro.crypto**;version="${shiro.osgi.importRange}", - * - - - - - - org.apache.maven.plugins - maven-shade-plugin - - - - - - - org.apache.shiro - shiro-lang - - - org.apache.shiro - shiro-crypto-core - - - - org.bouncycastle - bcprov-jdk18on - 1.76 - test - - - - org.apache.logging.log4j - log4j-slf4j-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom.sha1 deleted file mode 100644 index f94ed0e41..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-cipher/1.13.0/shiro-crypto-cipher-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2f089136e6dc484b2c51f527bb148d7d854f6adf \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/_remote.repositories deleted file mode 100644 index b50574fee..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:20 EDT 2024 -shiro-crypto-cipher-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom deleted file mode 100644 index 5c5ff508d..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - org.apache.shiro - shiro-crypto - 2.0.1 - - - 4.0.0 - shiro-crypto-cipher - Apache Shiro :: Cryptography :: Ciphers - bundle - - crypto.cipher - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.crypto.cipher - org.apache.shiro.crypto.cipher.*;version=${project.version} - - org.apache.shiro.crypto*;version="${shiro.osgi.importRange}", - org.apache.shiro.lang*;version="${shiro.osgi.importRange}", - * - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - org.apache.maven.plugins - maven-shade-plugin - - - - - - - org.apache.shiro - shiro-lang - - - org.apache.shiro - shiro-crypto-core - - - - org.bouncycastle - bcprov-jdk18on - test - - - - org.apache.logging.log4j - log4j-slf4j2-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - - diff --git a/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom.sha1 deleted file mode 100644 index 5a44b9c56..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-cipher/2.0.1/shiro-crypto-cipher-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -51e0e4efb7036196b3120d4282a1641adafa2a73 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/_remote.repositories deleted file mode 100644 index 5286fe9ce..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -shiro-crypto-core-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom deleted file mode 100644 index 4319f8a53..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - org.apache.shiro - shiro-crypto - 1.13.0 - - - 4.0.0 - shiro-crypto-core - Apache Shiro :: Cryptography :: Core - bundle - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.crypto.core - org.apache.shiro.crypto*;version=${project.version} - - org.apache.shiro.crypto*;version="${shiro.osgi.importRange}", - * - - - - - - - - - - org.apache.shiro - shiro-lang - - - diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom.sha1 deleted file mode 100644 index 287340b10..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-core/1.13.0/shiro-crypto-core-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -31b0f2fbd43e1c2932f73dc010eb4fbdc43700ff \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/_remote.repositories deleted file mode 100644 index 5eae914cc..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:19 EDT 2024 -shiro-crypto-core-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom deleted file mode 100644 index b571254f9..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - org.apache.shiro - shiro-crypto - 2.0.1 - - - 4.0.0 - shiro-crypto-core - Apache Shiro :: Cryptography :: Core - bundle - - crypto.core - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.crypto.core - org.apache.shiro.crypto*;version=${project.version} - - org.apache.shiro.lang*;version="${shiro.osgi.importRange}", - * - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - - - - - org.apache.shiro - shiro-lang - - - - diff --git a/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom.sha1 deleted file mode 100644 index 2fd62e59d..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-core/2.0.1/shiro-crypto-core-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fa741bf30dc79ba7ae41c2636cfc5b0ba6811b91 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/_remote.repositories deleted file mode 100644 index 2fefecbea..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -shiro-crypto-hash-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom deleted file mode 100644 index 7d09c9731..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - org.apache.shiro - shiro-crypto - 1.13.0 - - - 4.0.0 - shiro-crypto-hash - Apache Shiro :: Cryptography :: Hashing - bundle - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.crypto.hash - org.apache.shiro.crypto.hash*;version=${project.version} - - org.apache.shiro.crypto.core*;version="${shiro.osgi.importRange}", - * - - - - - - - - - - org.apache.shiro - shiro-lang - - - org.apache.shiro - shiro-crypto-core - - - - org.bouncycastle - bcprov-jdk18on - 1.76 - test - - - - org.apache.logging.log4j - log4j-slf4j-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom.sha1 deleted file mode 100644 index 28991e4d2..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-hash/1.13.0/shiro-crypto-hash-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f1171938bce80409caaa313ca0a0e1e7515b5b5e \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/_remote.repositories deleted file mode 100644 index 5b7de9b67..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:19 EDT 2024 -shiro-crypto-hash-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom deleted file mode 100644 index fd38ecbf7..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - org.apache.shiro - shiro-crypto - 2.0.1 - - - 4.0.0 - shiro-crypto-hash - Apache Shiro :: Cryptography :: Hashing - bundle - - crypto.hash - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.crypto.hash - org.apache.shiro.crypto.hash*;version=${project.version} - - org.apache.shiro.crypto*;version="${shiro.osgi.importRange}", - org.apache.shiro.lang*;version="${shiro.osgi.importRange}", - * - - - osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)", - osgi.extender; filter:="(osgi.extender=osgi.serviceloader.processor)", - osgi.serviceloader; filter:="(osgi.serviceloader=org.apache.shiro.crypto.hash.HashSpi)"; cardinality:=multiple - - - osgi.serviceloader; osgi.serviceloader=org.apache.shiro.crypto.hash.HashSpi - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - - - - - org.apache.shiro - shiro-lang - - - org.apache.shiro - shiro-crypto-core - - - - org.bouncycastle - bcprov-jdk18on - - - - org.apache.logging.log4j - log4j-slf4j2-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - - diff --git a/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom.sha1 deleted file mode 100644 index 6f53d3e9d..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto-hash/2.0.1/shiro-crypto-hash-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0e719db1f5ae61a6b7e8adb54aa9638ce5bea94d \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/_remote.repositories deleted file mode 100644 index b6a9075e8..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -shiro-crypto-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom deleted file mode 100644 index aeaddd82b..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - - - 4.0.0 - - - org.apache.shiro - shiro-root - 1.13.0 - - - shiro-crypto - Apache Shiro :: Cryptography - pom - - - core - hash - cipher - - - - diff --git a/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom.sha1 deleted file mode 100644 index 6c3c0faf0..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto/1.13.0/shiro-crypto-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a438d4a409d1475e72cb36dd0c87934093c67e8e \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/_remote.repositories deleted file mode 100644 index a0e52741f..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:19 EDT 2024 -shiro-crypto-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom deleted file mode 100644 index 528b9e4c2..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - - - 4.0.0 - - - org.apache.shiro - shiro-root - 2.0.1 - - - shiro-crypto - Apache Shiro :: Cryptography - pom - - - core - hash - cipher - support - - - - diff --git a/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom.sha1 deleted file mode 100644 index 58743aa34..000000000 --- a/code/arachne/org/apache/shiro/shiro-crypto/2.0.1/shiro-crypto-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9078a811a9645545a351415347ac7cd5f6a1eef9 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-event/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-event/1.13.0/_remote.repositories deleted file mode 100644 index b7e6a6096..000000000 --- a/code/arachne/org/apache/shiro/shiro-event/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -shiro-event-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom deleted file mode 100644 index 7b85290c5..000000000 --- a/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - org.apache.shiro - shiro-root - 1.13.0 - - - 4.0.0 - shiro-event - Apache Shiro :: Event - bundle - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.event - org.apache.shiro.event*;version=${project.version} - - org.apache.shiro*;version="${shiro.osgi.importRange}", - * - - - - - - - - - - org.apache.shiro - shiro-lang - - - - diff --git a/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom.sha1 deleted file mode 100644 index 2f1973cad..000000000 --- a/code/arachne/org/apache/shiro/shiro-event/1.13.0/shiro-event-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -78fd0b77849e567664a5da4e8c8723bd4ee9b418 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-event/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-event/2.0.1/_remote.repositories deleted file mode 100644 index 9a3fb6449..000000000 --- a/code/arachne/org/apache/shiro/shiro-event/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:20 EDT 2024 -shiro-event-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom deleted file mode 100644 index 4d72823f8..000000000 --- a/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - org.apache.shiro - shiro-root - 2.0.1 - - - 4.0.0 - shiro-event - Apache Shiro :: Event - bundle - - event - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.event - org.apache.shiro.event*;version=${project.version} - - org.apache.shiro.lang*;version="${shiro.osgi.importRange}", - * - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - - - - - org.apache.shiro - shiro-lang - - - - diff --git a/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom.sha1 deleted file mode 100644 index 2e32f5578..000000000 --- a/code/arachne/org/apache/shiro/shiro-event/2.0.1/shiro-event-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0a14a4cba70cbf3d983ca9918735425effc9997b \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-lang/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-lang/1.13.0/_remote.repositories deleted file mode 100644 index d8978c984..000000000 --- a/code/arachne/org/apache/shiro/shiro-lang/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:23 EDT 2024 -shiro-lang-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom deleted file mode 100644 index eb096758a..000000000 --- a/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - org.apache.shiro - shiro-root - 1.13.0 - - - 4.0.0 - shiro-lang - Apache Shiro :: Lang - - The lang module encapsulates only language-specific utilities that are used by various - other modules. It exists to augment what we would have liked to see in the JDK but does not exist. - - bundle - - - - - - org.slf4j - slf4j-api - - - org.apache.logging.log4j - log4j-slf4j-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.lang - org.apache.shiro.*;version=${project.version} - - - org.apache.shiro*;version="${shiro.osgi.importRange}", - javax.servlet.jsp*;resolution:=optional, - * - - - - - - - - diff --git a/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom.sha1 b/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom.sha1 deleted file mode 100644 index 2179ec946..000000000 --- a/code/arachne/org/apache/shiro/shiro-lang/1.13.0/shiro-lang-1.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -301ebfcc2c7a641ba33c9b51bb3fb8c5e75a37c1 \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-lang/2.0.1/_remote.repositories b/code/arachne/org/apache/shiro/shiro-lang/2.0.1/_remote.repositories deleted file mode 100644 index d55552697..000000000 --- a/code/arachne/org/apache/shiro/shiro-lang/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:19 EDT 2024 -shiro-lang-2.0.1.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom b/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom deleted file mode 100644 index 650860956..000000000 --- a/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - org.apache.shiro - shiro-root - 2.0.1 - - - 4.0.0 - shiro-lang - Apache Shiro :: Lang - - The lang module encapsulates only language-specific utilities that are used by various - other modules. It exists to augment what we would have liked to see in the JDK but does not exist. - - bundle - - lang - - - - - - - org.slf4j - slf4j-api - - - org.apache.logging.log4j - log4j-slf4j2-impl - test - - - org.apache.logging.log4j - log4j-core - test - - - javax.servlet.jsp - jsp-api - true - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - org.apache.shiro.lang - org.apache.shiro.lang.*;version=${project.version} - - - javax.servlet.jsp*;resolution:=optional, - * - - <_removeheaders>Bnd-LastModified - <_reproducible>true - - - - - - - diff --git a/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom.sha1 b/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom.sha1 deleted file mode 100644 index 5322478b9..000000000 --- a/code/arachne/org/apache/shiro/shiro-lang/2.0.1/shiro-lang-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e5d73bbce3cd621798adf121f129bb55e5fac74d \ No newline at end of file diff --git a/code/arachne/org/apache/shiro/shiro-root/1.13.0/_remote.repositories b/code/arachne/org/apache/shiro/shiro-root/1.13.0/_remote.repositories deleted file mode 100644 index 7f1ba5d33..000000000 --- a/code/arachne/org/apache/shiro/shiro-root/1.13.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:23 EDT 2024 -shiro-root-1.13.0.pom>central= diff --git a/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom b/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom deleted file mode 100644 index ef426d9cf..000000000 --- a/code/arachne/org/apache/shiro/shiro-root/1.13.0/shiro-root-1.13.0.pom +++ /dev/null @@ -1,1710 +0,0 @@ - - - - 4.0.0 - - - - org.apache - apache - 30 - - - org.apache.shiro - shiro-root - pom - 1.13.0 - - Apache Shiro - https://shiro.apache.org/ - - Apache Shiro is a powerful and flexible open-source security framework that cleanly handles - authentication, authorization, enterprise session management, single sign-on and cryptography services. - - 2004 - - - scm:git:https://gitbox.apache.org/repos/asf/shiro.git - scm:git:https://gitbox.apache.org/repos/asf/shiro.git - https://github.com/apache/shiro/tree/${project.scm.tag} - shiro-root-1.13.0 - - - Jira - https://issues.apache.org/jira/browse/SHIRO - - - Jenkins - https://builds.apache.org/job/Shiro/ - - - - - shiro.website - Apache Shiro Site - scp://people.apache.org/www/shiro.apache.org/static/latest - - https://shiro.apache.org/download.html - - - - - 1.11.0 - - ${user.name}-${maven.build.timestamp} - 2023-10-31T08:22:45Z - true - false - - - [1.2, 2) - [1.1,2) - - - - 1.9.7 - 3.2.2 - 1.9.4 - 1.6.0 - 1.16.0 - 3.2.2 - 2.9.0 - 3.12.0 - 1.2 - - 2.6.11 - - 3.12.13 - 2.7.2 - 1.3.2 - 1.1.1 - 1.8 - 9.4.53.v20231009 - 1.2.3 - - 2.3.2 - 1.7.36 - 1.2.12 - 2.19.0 - 5.3.30 - 2.7.17 - 4.2.3 - 2.1.1 - 2.70.0 - - - 5.2.0 - 3.0.2 - 2.5.23 - 4.13.2 - 0.11.0 - 5.6.15.Final - 1.2.5 - - 2.0.9 - - ${jdk.version} - ${jdk.version} - - ${session.executionRootDirectory} - - - - - 3.5.0 - - - - lang - crypto - event - cache - config - core - web - support - tools - all - integration-tests - samples - test-coverage - bom - - - - - Apache Shiro Users Mailing List - user-subscribe@shiro.apache.org - user-unsubscribe@shiro.apache.org - user@shiro.apache.org - - - - - Apache Shiro Developers Mailing List - dev-subscribe@shiro.apache.org - dev-unsubscribe@shiro.apache.org - dev@shiro.apache.org - - - - - - - - - aditzel - Allan Ditzel - aditzel@apache.org - http://www.allanditzel.com - Apache Software Foundation - -5 - - - jhaile - Jeremy Haile - jhaile@apache.org - http://www.jeremyhaile.com - Mobilization Labs - http://www.mobilizationlabs.com - -5 - - - lhazlewood - Les Hazlewood - lhazlewood@apache.org - http://www.leshazlewood.com - Stormpath - https://www.stormpath.com - -8 - - - kaosko - Kalle Korhonen - kaosko@apache.org - https://www.tynamo.org - Apache Software Foundation - -8 - - - pledbrook - Peter Ledbrook - p.ledbrook@cacoethes.co.uk - https://www.cacoethes.co.uk/ - SpringSource - https://spring.io/ - 0 - - - tveil - Tim Veil - tveil@apache.org - - - bdemers - Brian Demers - bdemers@apache.org - https://stormpath.com/blog/author/bdemers - Stormpath - https://stormpath.com/ - -5 - - PMC Chair - - - - jbunting - Jared Bunting - jbunting@apache.org - Apache Software Foundation - -6 - - - fpapon - Francois Papon - fpapon@apache.org - Yupiik - https://www.yupiik.com/ - +4 - - - bmarwell - Benjamin Marwell - bmarwell@apache.org - Europe/Berlin - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.1 - - ${surefire.argLine} - kill - native - false - - - - org.apache.maven.plugins - maven-failsafe-plugin - 3.2.1 - - ${failsafe.argLine} - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.0 - - org.apache.shiro.samples.* - - - - org.apache.maven.plugins - maven-war-plugin - 3.4.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.2.1 - - - org.apache.rat - apache-rat-plugin - 0.15 - - - - /**/src/it/projects/*/build.log - /**/src/it/projects/*/target/** - **/.externalToolBuilders/* - **/infinitest.filters - - velocity.log - CONTRIBUTING.md - README.md - **/*.json - **/spring.factories - **/spring.provides - **/*.iml - - - - - org.codehaus.mojo - versions-maven-plugin - 2.16.1 - - - - org.codehaus.gmavenplus - gmavenplus-plugin - ${gmaven.version} - - - org.codehaus.groovy - groovy - ${groovy.version} - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.6.1 - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - com.mycila - license-maven-plugin - 4.3 - - true -

    ]]> - - - - javadoc - package - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - source - package - - jar - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - jar - package - - test-jar - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.6.0 - - true - false - - ${assembly.dir}/cryptacular.xml - - - 0755 - - - - - assembly - package - - single - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - v@{project.version} - - - - - - - sign-artifacts - - - sign - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - package - - sign - - - - - - - - - diff --git a/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom.sha1 b/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom.sha1 deleted file mode 100644 index 0e9cda439..000000000 --- a/code/arachne/org/cryptacular/cryptacular/1.2.6/cryptacular-1.2.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a6f81e6aa05c8a1057385af70fb55af8a8ab7301 \ No newline at end of file diff --git a/code/arachne/org/dbunit/dbunit/2.7.0/_remote.repositories b/code/arachne/org/dbunit/dbunit/2.7.0/_remote.repositories deleted file mode 100644 index 3353f260b..000000000 --- a/code/arachne/org/dbunit/dbunit/2.7.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:58 EDT 2024 -dbunit-2.7.0.pom>central= diff --git a/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom b/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom deleted file mode 100644 index 68f82417a..000000000 --- a/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom +++ /dev/null @@ -1,1460 +0,0 @@ - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - org.dbunit - dbunit - 2.7.0 - jar - dbUnit Extension - http://dbunit.sourceforge.net - 2002 - - dbUnit is a JUnit extension (also usable from Ant and Maven) targeted for database-driven projects that, among other things, puts your database into a known state between test runs. This is an excellent way to avoid the myriad of problems that can occur when one test case corrupts the database and causes subsequent tests to fail or exacerbate the damage. - - - - GNU Lesser General Public License, Version 2.1 - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt - repo - - - - - - UTF-8 - UTF-8 - sourceforge - - - 1.8 - org/dbunit/util/concurrent/*.java - 3.0.4 - - - 3.1.0 - 2.3 - 2.12.1 - 2.17 - 3.0.0 - 3.7.0 - 2.8.2 - 1.4.1 - 2.21.0 - 1.6 - 2.5.2 - 0.8.3 - 0.14.3 - 3.0.2 - 2.0 - 3.0.0 - 2.5 - 3.8 - 2.9 - 1.0.0 - 2.5.3 - 3.0.2 - 3.7.1 - 3.0.1 - 2.21.0 - - - 1.7.0 - 1.6.5 - 3.2.2 - 2.5 - 2.0.1 - 1.3 - 1.4 - 4.12 - 1.2.3 - 1.12.0 - 0.09 - 3.17 - 1.7.25 - 2.6.2 - - - 10.4.1.3 - 1.1.118 - 1.8.0.1 - 5.1.6 - 19.3.0.0 - 42.2.5 - 7.2.1.jre8 - - - 2.10 - - - - scm:git:http://git.code.sf.net/p/dbunit/code.git - scm:git:https://git.code.sf.net/p/dbunit/code.git - http://sourceforge.net/p/dbunit/code.git/ci/master/tree/ - HEAD - - - SourceForge2 - http://sourceforge.net/p/dbunit/bugs/ - - - travisci - https://travis-ci.com/dbunit/dbunit-mirror - - - - - dbUnit User List - http://lists.sourceforge.net/lists/listinfo/dbunit-user - http://lists.sourceforge.net/lists/listinfo/dbunit-user - http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-user - - - dbUnit Developer List - http://lists.sourceforge.net/lists/listinfo/dbunit-developer - http://lists.sourceforge.net/lists/listinfo/dbunit-developer - http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-developer - - - dbUnit Commit List - http://lists.sourceforge.net/lists/listinfo/dbunit-commit - http://lists.sourceforge.net/lists/listinfo/dbunit-commit - http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-commit - - - - - - - - Jeff Jensen - jeffjensen - jeffjensen@users.sourceforge.net - - Java Developer (active) - - - - Andrew Landsverk - quantas - quantas@users.sourceforge.net - - Java Developer (active) - - - - Matthias Gommeringer - gommma - gommma@users.sourceforge.net - - Java Developer (inactive) - - - - John Hurst - jbhurst - jbhurst@users.sourceforge.net - - Java Developer (inactive) - - - - Roberto Lo Giacco - rlogiacco - rlogiacco@users.sourceforge.net - SmartLab - - Java Developer (inactive) - - - - Felipe Leme - felipeal - dbunit@felipeal.net - GoldenGate Software - -8 - - Java Developer (mostly inactive :-) - - - - David Eric Pugh - dep4b - epugh@opensourceconnections.com - OpenSource Connections - - Java Developer (inactive) - - - - Sebastien Le Callonnec - slecallonnec - slecallonnec@users.sourceforge.net - - Java Developer (inactive) - - - - Manuel Laflamme - mlaflamm - Oz Communication - - Project Founder (inactive) - - - - Benjamin Cox - bdrum - - Java Developer (inactive) - - - - Federico Spinazzi - fspinazzi - f.spinazzi@masterhouse.it - Master House S.r.l - - Java Developer (inactive) - - - - Timothy J. Ruppert - zieggy - - Java Developer (inactive) - - - - - - - Klas Axel - - HsqldbDataTypeFactory - - - - Erik Price - - DatabaseSequenceOperation - - - - Jeremy Stein - - InsertIndentityOperation - - - - Keven Kizer - - Early guinea pig - - - - Mike Bresnahan - - DbUnit evangelist - - - - Andres Almiray - aalmiray@users.sourceforge.net - - IDatabaseTester creator - - - - Darryl Pierce - mcpierceaim@users.sourceforge.net - - SQLServer uniqueidentifier column type - - - - Lorentz Aberg - lorentzforces@users.sourceforge.net - - Java developer - - - - - - - - - - - - - - - org.slf4j - slf4j-api - ${slf4jVersion} - - - org.slf4j - jcl-over-slf4j - ${slf4jVersion} - test - - - ch.qos.logback - logback-classic - ${logbackVersion} - test - - - - hsqldb - hsqldb - ${hsqldbDriverVersion} - test - - - junit - junit - ${junitVersion} - - - org.hamcrest - hamcrest-library - ${hamcrestVersion} - test - - - commons-collections - commons-collections - ${commonsCollectionsVersion} - - - ant - ant - ${antVersion} - true - - - org.apache.poi - poi - ${poiVersion} - - - log4j - log4j - - - commons-logging - commons-logging - - - true - - - org.apache.poi - poi-ooxml - ${poiVersion} - - - org.postgresql - postgresql - ${postgresqlDriverVersion} - - - - org.apache.ant - ant-testutil - ${antTestUtilVersion} - true - test - - - junit-addons - junit-addons - ${junitAddonsVersion} - test - - - mockobjects - mockobjects-core - ${mockObjectsVersion} - test - - - mockmaker - mmmockobjects - ${mmmockobjectsVersion} - test - - - - mockobjects - mockobjects-jdk1.3 - ${mockObjectsVersion} - test - - - com.h2database - h2 - ${h2DriverVersion} - - test - - - gsbase - gsbase - ${gsbaseVersion} - test - - - commons-io - commons-io - ${commonsIoVersion} - test - - - xerces - xmlParserAPIs - ${xmlParserAPIsVersion} - test - - - - - install - - - - org.apache.maven.plugins - maven-assembly-plugin - ${assemblyPluginVersion} - - - assembly.xml - - - - - org.apache.maven.plugins - maven-changelog-plugin - ${changelogPluginVersion} - - - org.apache.maven.plugins - maven-changes-plugin - ${changesPluginVersion} - - - check-changes - verify - - changes-check - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstylePluginVersion} - - - org.apache.maven.plugins - maven-clean-plugin - ${cleanPluginVersion} - - - org.apache.maven.plugins - maven-compiler-plugin - ${compilerPluginVersion} - - ${compileSource} - ${compileSource} - ${compileSource} - true - true - - - - org.apache.maven.plugins - maven-deploy-plugin - ${deployPluginVersion} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${enforcerPluginVersion} - - - enforce-versions - - enforce - - - - - - - - ${mavenVersion} - - - ${compileSource} - - - compile - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - ${failsafePluginVersion} - - true - UTF-8 - - - dbunit.profile - ${dbunit.profile} - - - dbunit.profile.driverClass - ${dbunit.profile.driverClass} - - - dbunit.profile.url - ${dbunit.profile.url} - - - dbunit.profile.schema - ${dbunit.profile.schema} - - - dbunit.profile.user - ${dbunit.profile.user} - - - dbunit.profile.password - ${dbunit.profile.password} - - - dbunit.profile.unsupportedFeatures - ${dbunit.profile.unsupportedFeatures} - - - dbunit.profile.ddl - ${dbunit.profile.ddl} - - - dbunit.profile.multiLineSupport - ${dbunit.profile.multiLineSupport} - - - - - - - integration-test - verify - - - - - - org.apache.maven.plugins - maven-gpg-plugin - ${gpgPluginVersion} - - - org.apache.maven.plugins - maven-install-plugin - ${installPluginVersion} - - - org.jacoco - jacoco-maven-plugin - ${jacocoPluginVersion} - - - - prepare-agent - - - - - - - org.apache.maven.plugins - maven-jar-plugin - ${jarPluginVersion} - - - /LICENSE.txt - ** - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${javadocPluginVersion} - - - -Xdoclint:none - none - - - - org.codehaus.mojo - jdepend-maven-plugin - ${jdependPluginVersion} - - - org.apache.maven.plugins - maven-jxr-plugin - ${jxrPluginVersion} - - - org.apache.maven.plugins - maven-pmd-plugin - ${pmdPluginVersion} - - - org.codehaus.mojo - properties-maven-plugin - ${propertiesPluginVersion} - - - validate - - read-project-properties - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${projectInfoReportsPluginVersion} - - - org.apache.maven.plugins - maven-release-plugin - ${releasePluginVersion} - - - org.apache.maven.plugins - maven-resources-plugin - ${resourcesPluginVersion} - - - org.apache.maven.plugins - maven-site-plugin - ${sitePluginVersion} - - - org.apache.maven.wagon - wagon-ssh - ${wagonSshVersion} - - - - - org.apache.maven.plugins - maven-source-plugin - ${sourcePluginVersion} - - - attach-sources - verify - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefirePluginVersion} - - true - - **/Abstract*.java - - - **/*Test.java - - - - dbunit.profile - ${dbunit.profile} - - - dbunit.profile.driverClass - ${dbunit.profile.driverClass} - - - dbunit.profile.url - ${dbunit.profile.url} - - - dbunit.profile.schema - ${dbunit.profile.schema} - - - dbunit.profile.user - ${dbunit.profile.user} - - - dbunit.profile.password - ${dbunit.profile.password} - - - dbunit.profile.unsupportedFeatures - ${dbunit.profile.unsupportedFeatures} - - - dbunit.profile.ddl - ${dbunit.profile.ddl} - - - dbunit.profile.multiLineSupport - ${dbunit.profile.multiLineSupport} - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.apache.maven.plugins - maven-failsafe-plugin - - - org.jacoco - jacoco-maven-plugin - - - org.apache.maven.plugins - maven-source-plugin - - - - - - - - org.jacoco - jacoco-maven-plugin - ${jacocoPluginVersion} - - - - - report - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${japicmpPluginVersion} - - - true - true - true - true - - - - - - 2.6.0-to-2.7.0 - - cmp-report - - - - 2.6.0-to-2.7.0 - - - - ${project.groupId} - ${project.artifactId} - 2.6.0 - jar - - - - - ${project.groupId} - ${project.artifactId} - 2.7.0 - jar - - - - - - 2.5.4-to-2.6.0 - - cmp-report - - - - 2.5.4-to-2.6.0 - - - - ${project.groupId} - ${project.artifactId} - 2.5.4 - jar - - - - - ${project.groupId} - ${project.artifactId} - 2.6.0 - jar - - - - - - 2.5.3-to-2.5.4 - - cmp-report - - - - 2.5.3-to-2.5.4 - - - - ${project.groupId} - ${project.artifactId} - 2.5.3 - jar - - - - - ${project.groupId} - ${project.artifactId} - 2.5.4 - jar - - - - - - 2.5.2-to-2.5.3 - - cmp-report - - - - 2.5.2-to-2.5.3 - - - - ${project.groupId} - ${project.artifactId} - 2.5.2 - jar - - - - - ${project.groupId} - ${project.artifactId} - 2.5.3 - jar - - - - - - 2.5.1-to-2.5.2 - - cmp-report - - - - 2.5.1-to-2.5.2 - - - - ${project.groupId} - ${project.artifactId} - 2.5.1 - jar - - - - - ${project.groupId} - ${project.artifactId} - 2.5.2 - jar - - - - - - 2.5.0-to-2.5.1 - - cmp-report - - - - 2.5.0-to-2.5.1 - - - - ${project.groupId} - ${project.artifactId} - 2.5.0 - jar - - - - - ${project.groupId} - ${project.artifactId} - 2.5.1 - jar - - - - - - 2.4.9-to-2.5.0 - - cmp-report - - - - 2.4.9-to-2.5.0 - - - - ${project.groupId} - ${project.artifactId} - 2.4.9 - jar - - - - - ${project.groupId} - ${project.artifactId} - 2.5.0 - jar - - - - - - 2.4.8-to-2.4.9 - - cmp-report - - - - 2.4.8-to-2.4.9 - - - - ${project.groupId} - ${project.artifactId} - 2.4.8 - jar - - - - - ${project.groupId} - ${project.artifactId} - 2.4.9 - jar - - - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${jxrPluginVersion} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${surefirePluginVersion} - - - tests - - report-only - - - - integration-tests - - failsafe-report-only - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${projectInfoReportsPluginVersion} - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstylePluginVersion} - - ${basedir}/checkstyle.xml - -Xmx512m -Xms128m - - - - org.apache.maven.plugins - maven-pmd-plugin - ${pmdPluginVersion} - - true - utf-8 - 100 - ${compileSource} - - - - org.codehaus.mojo - jdepend-maven-plugin - ${jdependPluginVersion} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${javadocPluginVersion} - - true - - - TODO - a - To do: - - - - -Xdoclint:none - none - - - - org.apache.maven.plugins - maven-changes-plugin - ${changesPluginVersion} - - localhost - 25 - If you are reading this, the maintainer forgot to describe what's the purpose of this release!!! - - dbunit-developer@lists.sourceforge.net - dbunit-user@lists.sourceforge.net - - http://dbunit.sourceforge.net/repos.html - - - - - - - - - - changes-report - - - - - - - - - - - sourceforge - scp://shell.sourceforge.net/home/project-web/dbunit/htdocs - - - - - - - it-config - - - - org.apache.maven.plugins - maven-surefire-plugin - - true - - - - - - - derby - - - - org.codehaus.mojo - properties-maven-plugin - - - file:///${basedir}/src/test/resources/derby-dbunit.properties - - - - - - - - org.apache.derby - derby - ${derbyDriverVersion} - test - - - com.oracle.ojdbc - ojdbc8 - ${oracle11DriverVersion} - true - - - - - hsqldb - - true - - - - - org.codehaus.mojo - properties-maven-plugin - - - file:///${basedir}/src/test/resources/hsqldb-dbunit.properties - - - - - - - - com.oracle.ojdbc - ojdbc8 - ${oracle11DriverVersion} - true - - - - - h2 - - - - org.codehaus.mojo - properties-maven-plugin - - - file:///${basedir}/src/test/resources/h2-dbunit.properties - - - - - - - - com.h2database - h2 - ${h2DriverVersion} - - - com.oracle.ojdbc - ojdbc8 - ${oracle11DriverVersion} - true - - - - - - oracle-default - - true - - - - com.oracle.ojdbc - ojdbc8 - ${oracle11DriverVersion} - true - - - - - - oracle-ojdbc8 - - - - org.codehaus.mojo - properties-maven-plugin - - - file:///${basedir}/src/test/resources/oracle-dbunit.properties - - - - - - - - com.oracle.ojdbc - ojdbc8 - ${oracle11DriverVersion} - true - - - com.oracle.ojdbc - xdb - ${oracle11DriverVersion} - true - - - - - - oracle10-ojdbc8 - - - - org.codehaus.mojo - properties-maven-plugin - - - file:///${basedir}/src/test/resources/oracle10-dbunit.properties - - - - - - - - com.oracle.ojdbc - ojdbc8 - ${oracle11DriverVersion} - true - - - com.oracle.ojdbc - xdb - ${oracle11DriverVersion} - true - - - - - postgresql - - - - org.codehaus.mojo - properties-maven-plugin - - - file:///${basedir}/src/test/resources/postgresql-dbunit.properties - - - - - - - - org.postgresql - postgresql - ${postgresqlDriverVersion} - - - com.oracle.ojdbc - ojdbc8 - ${oracle11DriverVersion} - true - - - - - mysql - - - - org.codehaus.mojo - properties-maven-plugin - - - file:///${basedir}/src/test/resources/mysql-dbunit.properties - - - - - - - - mysql - mysql-connector-java - ${mysqlDriverVersion} - - - com.oracle.ojdbc - ojdbc8 - ${oracle11DriverVersion} - true - - - - - mssql41 - - - - org.codehaus.mojo - properties-maven-plugin - - - file:///${basedir}/src/test/resources/mssql41-dbunit.properties - - - - - - - - com.microsoft.sqlserver - mssql-jdbc - ${sqlServer41DriverVersion} - - - com.oracle.ojdbc - ojdbc8 - ${oracle11DriverVersion} - true - - - - - db2 - - - - org.codehaus.mojo - properties-maven-plugin - - - file:///${basedir}/src/test/resources/db2-dbunit.properties - - - - - - - - - com.oracle.ojdbc - ojdbc8 - ${oracle11DriverVersion} - true - - - - - diff --git a/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom.sha1 b/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom.sha1 deleted file mode 100644 index 7ab86e194..000000000 --- a/code/arachne/org/dbunit/dbunit/2.7.0/dbunit-2.7.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -15ee8e00f7d5af127c9cc886368473fddc549318 \ No newline at end of file diff --git a/code/arachne/org/dom4j/dom4j/2.1.3/_remote.repositories b/code/arachne/org/dom4j/dom4j/2.1.3/_remote.repositories deleted file mode 100644 index fcd7e4f15..000000000 --- a/code/arachne/org/dom4j/dom4j/2.1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:13 EDT 2024 -dom4j-2.1.3.pom>central= diff --git a/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom b/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom deleted file mode 100644 index a7f9a0b54..000000000 --- a/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - 4.0.0 - org.dom4j - dom4j - 2.1.3 - dom4j - flexible XML framework for Java - http://dom4j.github.io/ - - - BSD 3-clause New License - https://github.com/dom4j/dom4j/blob/master/LICENSE - - - - - Filip Jirsák - filip@jirsak.org - https://github.com/FilipJirsak - - - - scm:git:git@github.com:dom4j/dom4j.git - scm:git:git@github.com:dom4j/dom4j.git - git@github.com:dom4j/dom4j.git - - - - jaxen - jaxen - 1.1.6 - runtime - true - - - javax.xml.stream - stax-api - 1.0-2 - runtime - true - - - net.java.dev.msv - xsdlib - 2013.6.1 - runtime - true - - - javax.xml.bind - jaxb-api - 2.2.12 - runtime - true - - - pull-parser - pull-parser - 2 - runtime - true - - - xpp3 - xpp3 - 1.1.4c - runtime - true - - - diff --git a/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom.sha1 b/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom.sha1 deleted file mode 100644 index 4636449ec..000000000 --- a/code/arachne/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -012854caa63db09d82bf973bc37d7226aaaef463 \ No newline at end of file diff --git a/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/_remote.repositories b/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/_remote.repositories deleted file mode 100644 index fc5c1f8df..000000000 --- a/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:02 EDT 2024 -angus-activation-project-2.0.2.pom>central= diff --git a/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom b/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom deleted file mode 100644 index 4adcd5a50..000000000 --- a/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom +++ /dev/null @@ -1,496 +0,0 @@ - - - - - - org.eclipse.ee4j - project - 1.0.9 - - - 4.0.0 - org.eclipse.angus - angus-activation-project - pom - 2.0.2 - Angus Activation Project - ${project.name} - https://github.com/eclipse-ee4j/angus-activation - - - 2.1 - Jakarta Activation Specification - 2.1.3 - ${project.version} - 23.1.2 - - 11 - Angus Activation API documentation - Angus Activation v${angus-activation.version}]]> - angus-dev@eclipse.org.
    -Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.]]> - - etc/copyright-exclude - false - true - false - false - Low - etc/spotbugs-exclude.xml - 4.8.3.1 - UTF-8 - 2024-02-14T00:00:00Z - - - - scm:git:ssh://git@github.com/eclipse/angus-activation.git - scm:git:ssh://git@github.com/eclipse/angus-activation.git - https://github.com/eclipse-ee4j/angus-activation - HEAD - - - - github - https://github.com/eclipse-ee4j/angus-activation/issues/ - - - - - EDL 1.0 - http://www.eclipse.org/org/documents/edl-v10.php - repo - - - - - - shannon - Bill Shannon - bill.shannon@oracle.com - Oracle - - lead - - - - - - - - oracle.com - file:/tmp - - - - - activation-registry - - - - - - jakarta.activation - jakarta.activation-api - ${activation-api.version} - - - - org.eclipse.angus - angus-activation - ${project.version} - - - - org.graalvm.sdk - graal-sdk - ${graal.sdk.version} - - - org.graalvm.polyglot - polyglot - ${graal.sdk.version} - - - org.graalvm.sdk - nativeimage - ${graal.sdk.version} - - - org.graalvm.sdk - word - ${graal.sdk.version} - - - org.graalvm.sdk - collections - ${graal.sdk.version} - - - - - - - install - - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.0.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - - <_noextraheaders>true - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.codehaus.mojo - build-helper-maven-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.6.1 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - ${spotbugs.skip} - ${spotbugs.threshold} - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - - org.apache.maven.plugins - maven-antrun-plugin - 3.1.0 - - - org.apache.ant - ant - 1.10.14 - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.5.0 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-version - - enforce - - - - - [3.6.3,) - - - [11,) - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 9 - - -Xlint:all - - true - false - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - validate - - create - - - true - 7 - false - - - - - - org.apache.felix - maven-bundle-plugin - - true - - ${project.artifactId} - ${spec.title} - ${spec.version} - ${project.organization.name} - ${project.groupId} - ${project.name} - ${project.organization.name} - ${scmBranch}-${buildNumber} - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - false - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - currentyear-property - - timestamp-property - - validate - - current.year - en,US - yyyy - - - - add-source - generate-sources - - add-source - - - - - ${project.build.directory}/generated-sources/sources - - - - - - add-resource - generate-resources - - add-resource - - - - - ${project.basedir}/../ - META-INF - - LICENSE.md - NOTICE.md - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${angus-activation.javadoc.source} - false - ${angus-activation.javadoc.title} - ${angus-activation.javadoc.title} - ${angus-activation.javadoc.title} - true - true - true - true - true -
    ${angus-activation.javadoc.header}
    - ${angus-activation.javadoc.bottom} - - true - false -
    -
    - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - ${copyright.exclude} - - ${copyright.scmonly} - - ${copyright.update} - - ${copyright.ignoreyear} - false - - - - com.github.spotbugs - spotbugs-maven-plugin - - true - ${spotbugs.exclude} - High - - -
    - -
    - - - - - build-only - - demo - docs - - - true - - - - - oss-release - - - - diff --git a/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom.sha1 b/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom.sha1 deleted file mode 100644 index e68fa64b8..000000000 --- a/code/arachne/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -94be80476a7ca9a1b9ca1357be5823829a2bb328 \ No newline at end of file diff --git a/code/arachne/org/eclipse/angus/angus-activation/2.0.2/_remote.repositories b/code/arachne/org/eclipse/angus/angus-activation/2.0.2/_remote.repositories deleted file mode 100644 index da4ea9975..000000000 --- a/code/arachne/org/eclipse/angus/angus-activation/2.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:02 EDT 2024 -angus-activation-2.0.2.pom>central= diff --git a/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom b/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom deleted file mode 100644 index 66cec8468..000000000 --- a/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - org.eclipse.angus - angus-activation-project - 2.0.2 - ../pom.xml - - - 4.0.0 - angus-activation - Angus Activation Registries - ${project.name} Implementation - - - - jakarta.activation - jakarta.activation-api - - - org.graalvm.sdk - graal-sdk - true - provided - - - - - - - org.apache.felix - maven-bundle-plugin - - - =1.0.0)(!(version>=2.0.0)))";resolution:=optional - ]]> - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - - - - - coverage - - - - org.jacoco - jacoco-maven-plugin - - - default-prepare-agent - - prepare-agent - - - - default-report - - report - - - - - - - - - - diff --git a/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom.sha1 b/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom.sha1 deleted file mode 100644 index fb5cb2ad2..000000000 --- a/code/arachne/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7e58bd2f7b207783653d04efc9d2db4cb4ac884c \ No newline at end of file diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/_remote.repositories b/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/_remote.repositories deleted file mode 100644 index 6fec6c004..000000000 --- a/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:18 EDT 2024 -eclipse-collections-api-8.0.0.pom>central= diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom b/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom deleted file mode 100644 index 9d4406c70..000000000 --- a/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - 4.0.0 - - - eclipse-collections-parent - org.eclipse.collections - 8.0.0 - - - eclipse-collections-api - bundle - - Eclipse Collections API - - - - - - - net.jcip - jcip-annotations - - - - - - - - - - org.eclipse.collections - eclipse-collections-code-generator-maven-plugin - ${project.version} - - - generate-sources - - generate - - - api - - - - - - - maven-surefire-plugin - - - - maven-source-plugin - - - - org.apache.felix - maven-bundle-plugin - - - org.eclipse.collections.api - JavaSE-1.8 - - net.jcip.annotations;resolution:=optional,* - - ${project.version} - - - - - - org.codehaus.mojo - sonar-maven-plugin - - - - maven-checkstyle-plugin - - - - org.codehaus.mojo - findbugs-maven-plugin - - - - maven-javadoc-plugin - - Eclipse Collections API - ${project.version} - Eclipse Collections API - ${project.version} - public - - https://docs.oracle.com/javase/8/docs/api/ - - ${project.version} - -Xdoclint:none - - - - - maven-enforcer-plugin - - - - org.codehaus.mojo - clirr-maven-plugin - - - - org.eclipse.collections - eclipse-collections-api - ${project.previous.version} - - - ${project.build.directory}/clirr.txt - - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.eclipse.collections - - - eclipse-collections-code-generator-maven-plugin - - - [7.1.0-SNAPSHOT,) - - - generate - - - - - - - - - - - - - - diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom.sha1 b/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom.sha1 deleted file mode 100644 index 6d3f6a2ec..000000000 --- a/code/arachne/org/eclipse/collections/eclipse-collections-api/8.0.0/eclipse-collections-api-8.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e47796ff1f370326a7ceaa1ab17f4dd28596ec3a \ No newline at end of file diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/_remote.repositories b/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/_remote.repositories deleted file mode 100644 index 89b3994c0..000000000 --- a/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:18 EDT 2024 -eclipse-collections-parent-8.0.0.pom>central= diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom b/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom deleted file mode 100644 index d6f9f3a43..000000000 --- a/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom +++ /dev/null @@ -1,657 +0,0 @@ - - - - - - 4.0.0 - - org.eclipse.collections - eclipse-collections-parent - 8.0.0 - - pom - - Eclipse Collections Parent Project - - Eclipse Collections is a collections framework for Java. It has JDK-compatible List, Set and Map - implementations with a rich API and set of utility classes that work with any JDK compatible Collections, - Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework. - - - https://github.com/eclipse/eclipse-collections - - 2004 - - - - Eclipse Public License - v 1.0 - https://www.eclipse.org/legal/epl-v10.html - repo - - - Eclipse Distribution License - v 1.0 - https://www.eclipse.org/licenses/edl-v10.html - repo - - - - - https://github.com/eclipse/eclipse-collections - scm:git:https://github.com/eclipse/eclipse-collections.git - scm:git:https://github.com/eclipse/eclipse-collections.git - - - - GitHub - https://github.com/eclipse/eclipse-collections/issues - - - - Travis CI - https://travis-ci.org/eclipse/eclipse-collections - - - - - collections-dev - https://dev.eclipse.org/mailman/listinfo/collections-dev - https://dev.eclipse.org/mailman/listinfo/collections-dev - collections-dev@eclipse.org - https://dev.eclipse.org/mhonarc/lists/collections-dev - - - - - - Craig P. Motlin - craig.motlin@gs.com - - - - Donald Raab - donald.raab@gs.com - - - - Mohammad A. Rezaei - mohammad.rezaei@gs.com - - - - Hiroshi Ito - hiroshi.ito@gs.com - - - - - eclipse-collections-code-generator - eclipse-collections-code-generator-ant - eclipse-collections-code-generator-maven-plugin - eclipse-collections-api - eclipse-collections - eclipse-collections-testutils - eclipse-collections-forkjoin - unit-tests - scala-unit-tests - serialization-tests - jmh-scala-tests - jmh-tests - junit-trait-runner - unit-tests-java8 - - - - UTF-8 - - 1.7.14 - 4.0.6 - 2.11.7 - 19.0 - 3.0.3 - 6.15 - 2.17 - 3.0.3 - - 1.8 - 1.8 - true - true - 2048m - 2048m - - - java - reuseReports - clover - ${clover.version} - 7.0.0 - - - - - - - junit - junit - 4.12 - test - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - - org.slf4j - slf4j-nop - ${slf4j.version} - test - - - - org.slf4j - slf4j-simple - ${slf4j.version} - - - - org.scala-lang - scala-library - ${scala.version} - - - - net.jcip - jcip-annotations - 1.0 - true - - - - - - - - - - - maven-antrun-plugin - 1.8 - - - - maven-assembly-plugin - 2.6 - - - - maven-clean-plugin - 2.6.1 - - - - maven-compiler-plugin - 3.3 - - - - maven-dependency-plugin - 2.10 - - - - maven-deploy-plugin - 2.8.2 - - - - maven-install-plugin - 2.5.2 - - - - maven-jar-plugin - 2.6 - - - - maven-javadoc-plugin - 2.10.3 - - - - maven-release-plugin - 3.0-r1585899 - - - - maven-resources-plugin - 2.7 - - - - maven-site-plugin - 3.4 - - - - maven-source-plugin - 2.4 - - - verify - - jar-no-fork - - - - - - - maven-enforcer-plugin - 1.4.1 - - - enforce - - - - - 1.8.0 - - - 3.1.0 - - - - org.eclipse.collections:eclipse-collections-code-generator-maven-plugin - - - - - - enforce - - - - - - - org.codehaus.mojo - versions-maven-plugin - 2.2 - - - - org.codehaus.mojo - clirr-maven-plugin - 2.7 - - - - org.apache.felix - maven-bundle-plugin - 3.0.1 - true - - - - net.alchim31.maven - scala-maven-plugin - 3.2.2 - - ${scala.version} - - - - - compile - testCompile - - - - - - - maven-surefire-plugin - 2.19 - - - **/*Test.java - - -XX:-OmitStackTraceInFastThrow - random - 0 - - - - - maven-project-info-reports-plugin - 2.8.1 - - - - org.codehaus.mojo - sonar-maven-plugin - 2.7.1 - - - - maven-checkstyle-plugin - ${checkstyle.plugin.version} - - checkstyle-configuration.xml - true - true - ${basedir}/target/checkstyleCache - checkstyle-suppressions.xml - - - - com.puppycrawl.tools - checkstyle - ${checkstyle.version} - - - - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.plugin.version} - - Max - Default - true - true - findbugs-exclude.xml - - - - - - - - - org.codehaus.mojo - sonar-maven-plugin - - - - maven-checkstyle-plugin - ${checkstyle.plugin.version} - - checkstyle-configuration.xml - true - true - - - - com.puppycrawl.tools - checkstyle - 6.10.1 - - - - - - maven-javadoc-plugin - - Eclipse Collections - ${project.version} - Eclipse Collections - ${project.version} - public - - https://docs.oracle.com/javase/8/docs/api/ - http://junit.sourceforge.net/javadoc/ - - ${project.version} - -Xdoclint:none - - - - - maven-enforcer-plugin - - - - org.codehaus.mojo - versions-maven-plugin - - - - org.apache.maven.plugins - maven-dependency-plugin - - - - - - - - - - - maven-jxr-plugin - 2.5 - - - - maven-surefire-report-plugin - 2.19 - - - - maven-javadoc-plugin - 2.10.3 - - Eclipse Collections - ${project.version} - Eclipse Collections - ${project.version} - public - - https://docs.oracle.com/javase/8/docs/api/ - http://junit.sourceforge.net/javadoc/ - - -Xdoclint:none - - - - - maven-checkstyle-plugin - ${checkstyle.plugin.version} - - checkstyle-configuration.xml - true - true - - - - - org.codehaus.mojo - versions-maven-plugin - 2.2 - - - - dependency-updates-report - plugin-updates-report - property-updates-report - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.plugin.version} - - Max - Default - true - true - findbugs-exclude.xml - - - - - - - - - - clover-optimize - - - - com.atlassian.maven.plugins - maven-clover2-plugin - ${clover.version} - - - setup - process-sources - - setup - - - - other - - optimize - snapshot - log - - - - - - - - - - all - - - eclipse-collections-code-generator - eclipse-collections-code-generator-ant - eclipse-collections-code-generator-maven-plugin - eclipse-collections-api - eclipse-collections - eclipse-collections-testutils - eclipse-collections-forkjoin - unit-tests - scala-unit-tests - serialization-tests - acceptance-tests - performance-tests - jmh-scala-tests - jmh-tests - - - - - clover - - - eclipse-collections-code-generator - eclipse-collections-code-generator-ant - eclipse-collections-code-generator-maven-plugin - eclipse-collections-api - eclipse-collections - eclipse-collections-testutils - unit-tests - scala-unit-tests - serialization-tests - acceptance-tests - - - - - - com.atlassian.maven.plugins - maven-clover2-plugin - ${clover.version} - - ${clover.license} - @deprecated - true - ${user.home}/clover/${project.artifactId} - true - block - - **/FileUtils.java - **/GenerateMojo.java - **/EclipseCollectionsCodeGenerator.java - **/EclipseCollectionsCodeGeneratorTask.java - **/Primitive.java - **/IntegerOrStringRenderer.java - **/jmh/**/*.java - - - - - setup - process-test-sources - - setup - - - - - - - - - - - release-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - diff --git a/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom.sha1 b/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom.sha1 deleted file mode 100644 index 5d401cee1..000000000 --- a/code/arachne/org/eclipse/collections/eclipse-collections-parent/8.0.0/eclipse-collections-parent-8.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -48c16accc9a7a7fcbe925c239b8a096815464834 \ No newline at end of file diff --git a/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/_remote.repositories b/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/_remote.repositories deleted file mode 100644 index acd1e7c20..000000000 --- a/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:18 EDT 2024 -eclipse-collections-8.0.0.pom>central= diff --git a/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom b/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom deleted file mode 100644 index 7169e4cad..000000000 --- a/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - eclipse-collections-parent - org.eclipse.collections - 8.0.0 - - - 4.0.0 - - eclipse-collections - bundle - - Eclipse Collections Main Library - - - - - org.eclipse.collections - eclipse-collections-api - ${project.version} - - - - - - net.jcip - jcip-annotations - - - - - - - - - - org.eclipse.collections - eclipse-collections-code-generator-maven-plugin - ${project.version} - - - generate-sources - - generate - - - impl - - - - - - - maven-surefire-plugin - - - - maven-source-plugin - - - - org.apache.felix - maven-bundle-plugin - - - org.eclipse.collections.impl - JavaSE-1.8 - - net.jcip.annotations;resolution:=optional,* - - ${project.version} - - - - - - org.codehaus.mojo - sonar-maven-plugin - - - - maven-checkstyle-plugin - - - - org.codehaus.mojo - findbugs-maven-plugin - - - - maven-javadoc-plugin - - Eclipse Collections - ${project.version} - Eclipse Collections - ${project.version} - public - - https://docs.oracle.com/javase/8/docs/api/ - - ${project.version} - -Xdoclint:none - - - - - maven-enforcer-plugin - - - - org.codehaus.mojo - clirr-maven-plugin - - - - org.eclipse.collections - eclipse-collections - ${project.previous.version} - - - ${project.build.directory}/clirr.txt - - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.eclipse.collections - - - eclipse-collections-code-generator-maven-plugin - - - [7.1.0-SNAPSHOT,) - - - generate - - - - - - - - - - - - - - diff --git a/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom.sha1 b/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom.sha1 deleted file mode 100644 index 338fa6308..000000000 --- a/code/arachne/org/eclipse/collections/eclipse-collections/8.0.0/eclipse-collections-8.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3b47d513e064ec039e7749c7dbe62bbb69ebd2c7 \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.5/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0.5/_remote.repositories deleted file mode 100644 index b8e215191..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:58 EDT 2024 -project-1.0.5.pom>central= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom b/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom deleted file mode 100644 index 302d108b4..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom +++ /dev/null @@ -1,311 +0,0 @@ - - - - - 4.0.0 - org.eclipse.ee4j - project - 1.0.5 - pom - - EE4J Project - https://projects.eclipse.org/projects/ee4j - - Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, - implementations of those APIs, and technology compatibility kits for Java runtimes - that enable development, deployment, and management of server-side and cloud-native applications. - - - - Eclipse Foundation - https://www.eclipse.org - - 2017 - - - - eclipseee4j - Eclipse EE4J Developers - Eclipse Foundation - ee4j-pmc@eclipse.org - - - - - - Eclipse Public License v. 2.0 - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://www.gnu.org/software/classpath/license.html - repo - - - - - GitHub Issues - https://github.com/eclipse-ee4j/ee4j/issues - - - - scm:git:git@github.com:eclipse-ee4j/ee4j.git - scm:git:git@github.com:eclipse-ee4j/ee4j.git - https://github.com/eclipse-ee4j/ee4j - - - - - Community discussions - jakarta.ee-community@eclipse.org - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ - - http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss - - - - PMC discussions - ee4j-pmc@eclipse.org - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ - - http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss - - - - - - - ossrh - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - ossrh - Sonatype Nexus Releases - ${sonatypeOssDistMgmtReleasesUrl} - - - - - https://oss.sonatype.org/content/repositories/snapshots/ - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - UTF-8 - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - forked-path - false - -Poss-release ${release.arguments} - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - - ossrh - https://oss.sonatype.org/ - false - - ${maven.deploy.skip} - - - - - - - - - - oss-release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [3.0.4,) - Maven 3.0 through 3.0.3 inclusive does not pass - correct settings.xml to Maven Release Plugin. - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - 1.6 - - - --pinentry-mode - loopback - - - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - true - - - - - - - - snapshots - - false - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - - staging - - false - - - - sonatype-nexus-staging - Sonatype Nexus Staging - https://oss.sonatype.org/content/repositories/staging - - true - - - false - - - - - - sonatype-nexus-staging - Sonatype Nexus Staging - https://oss.sonatype.org/content/repositories/staging - - true - - - false - - - - - - diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom.sha1 deleted file mode 100644 index 319faa79e..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d391c5ed15d8fb1dadba9c5d1017006d56c50332 \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.6/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0.6/_remote.repositories deleted file mode 100644 index 574695308..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:56 EDT 2024 -project-1.0.6.pom>central= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom b/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom deleted file mode 100644 index eb7064a51..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom +++ /dev/null @@ -1,313 +0,0 @@ - - - - - 4.0.0 - org.eclipse.ee4j - project - 1.0.6 - pom - - EE4J Project - https://projects.eclipse.org/projects/ee4j - - Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, - implementations of those APIs, and technology compatibility kits for Java runtimes - that enable development, deployment, and management of server-side and cloud-native applications. - - - - Eclipse Foundation - https://www.eclipse.org - - 2017 - - - - eclipseee4j - Eclipse EE4J Developers - Eclipse Foundation - ee4j-pmc@eclipse.org - - - - - - Eclipse Public License v. 2.0 - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://www.gnu.org/software/classpath/license.html - repo - - - - - GitHub Issues - https://github.com/eclipse-ee4j/ee4j/issues - - - - scm:git:git@github.com:eclipse-ee4j/ee4j.git - scm:git:git@github.com:eclipse-ee4j/ee4j.git - https://github.com/eclipse-ee4j/ee4j - - - - - Community discussions - jakarta.ee-community@eclipse.org - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ - - http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss - - - - PMC discussions - ee4j-pmc@eclipse.org - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ - - http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss - - - - - - https://jakarta.oss.sonatype.org/ - ${sonatypeOssDistMgmtNexusUrl}content/repositories/snapshots/ - ${sonatypeOssDistMgmtNexusUrl}content/repositories/staging/ - ${sonatypeOssDistMgmtNexusUrl}service/local/staging/deploy/maven2/ - UTF-8 - - - - - - - ossrh - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - ossrh - Sonatype Nexus Releases - ${sonatypeOssDistMgmtReleasesUrl} - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - forked-path - false - -Poss-release ${release.arguments} - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - - ossrh - ${sonatypeOssDistMgmtNexusUrl} - false - - ${maven.deploy.skip} - - - - - - - - - - oss-release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [3.0.4,) - Maven 3.0 through 3.0.3 inclusive does not pass - correct settings.xml to Maven Release Plugin. - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - 1.6 - - - --pinentry-mode - loopback - - - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - true - - - - - - - - snapshots - - false - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - false - - - true - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - false - - - true - - - - - - - - staging - - false - - - - sonatype-nexus-staging - Sonatype Nexus Staging - ${sonatypeOssDistMgmtStagingUrl} - - true - - - false - - - - - - sonatype-nexus-staging - Sonatype Nexus Staging - ${sonatypeOssDistMgmtStagingUrl} - - true - - - false - - - - - - diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom.sha1 deleted file mode 100644 index 6df9eed3e..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9adda6d67ddf76eb9ed4e1c331d705d03dc2a94b \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.7/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0.7/_remote.repositories deleted file mode 100644 index f4933a22e..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -project-1.0.7.pom>central= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom b/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom deleted file mode 100644 index 0ecdc4a67..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom +++ /dev/null @@ -1,332 +0,0 @@ - - - - - 4.0.0 - org.eclipse.ee4j - project - 1.0.7 - pom - - EE4J Project - https://projects.eclipse.org/projects/ee4j - - Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, - implementations of those APIs, and technology compatibility kits for Java runtimes - that enable development, deployment, and management of server-side and cloud-native applications. - - - - Eclipse Foundation - https://www.eclipse.org - - 2017 - - - - eclipseee4j - Eclipse EE4J Developers - Eclipse Foundation - ee4j-pmc@eclipse.org - - - - - - Eclipse Public License v. 2.0 - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://www.gnu.org/software/classpath/license.html - repo - - - - - GitHub Issues - https://github.com/eclipse-ee4j/ee4j/issues - - - - scm:git:git@github.com:eclipse-ee4j/ee4j.git - scm:git:git@github.com:eclipse-ee4j/ee4j.git - https://github.com/eclipse-ee4j/ee4j - - - - - Community discussions - jakarta.ee-community@eclipse.org - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ - - http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss - - - - PMC discussions - ee4j-pmc@eclipse.org - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ - - http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss - - - - - - https://jakarta.oss.sonatype.org/ - ${sonatypeOssDistMgmtNexusUrl}content/repositories/snapshots/ - ${sonatypeOssDistMgmtNexusUrl}content/repositories/staging/ - ${sonatypeOssDistMgmtNexusUrl}service/local/staging/deploy/maven2/ - UTF-8 - - - - - - - ossrh - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - ossrh - Sonatype Nexus Releases - ${sonatypeOssDistMgmtReleasesUrl} - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - forked-path - false - -Poss-release ${release.arguments} - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - - ossrh - ${sonatypeOssDistMgmtNexusUrl} - false - - ${maven.deploy.skip} - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-gpg-plugin - - 1.6 - - - - - - - - - oss-release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [3.0.4,) - Maven 3.0 through 3.0.3 inclusive does not pass - correct settings.xml to Maven Release Plugin. - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - --pinentry-mode - loopback - - - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - true - - - - - - - - snapshots - - false - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - false - - - true - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - false - - - true - - - - - - - - staging - - false - - - - sonatype-nexus-staging - Sonatype Nexus Staging - ${sonatypeOssDistMgmtStagingUrl} - - true - - - false - - - - - - sonatype-nexus-staging - Sonatype Nexus Staging - ${sonatypeOssDistMgmtStagingUrl} - - true - - - false - - - - - - diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom.sha1 deleted file mode 100644 index 20c2e43c3..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b0f6c4bc691a0b694a377edc9bc4777871647253 \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.8/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0.8/_remote.repositories deleted file mode 100644 index a9414a06b..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:29 EDT 2024 -project-1.0.8.pom>ohdsi= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom b/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom deleted file mode 100644 index 2028be0f5..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom +++ /dev/null @@ -1,339 +0,0 @@ - - - - - 4.0.0 - org.eclipse.ee4j - project - 1.0.8 - pom - - EE4J Project - https://projects.eclipse.org/projects/ee4j - - Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, - implementations of those APIs, and technology compatibility kits for Java runtimes - that enable development, deployment, and management of server-side and cloud-native applications. - - - - Eclipse Foundation - https://www.eclipse.org - - 2017 - - - - eclipseee4j - Eclipse EE4J Developers - Eclipse Foundation - ee4j-pmc@eclipse.org - - - - - - Eclipse Public License v. 2.0 - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://www.gnu.org/software/classpath/license.html - repo - - - - - GitHub Issues - https://github.com/eclipse-ee4j/ee4j/issues - - - - scm:git:git@github.com:eclipse-ee4j/ee4j.git - scm:git:git@github.com:eclipse-ee4j/ee4j.git - https://github.com/eclipse-ee4j/ee4j - - - - - Community discussions - jakarta.ee-community@eclipse.org - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ - - http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss - - - - PMC discussions - ee4j-pmc@eclipse.org - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ - - http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss - - - - - - https://jakarta.oss.sonatype.org/ - ${sonatypeOssDistMgmtNexusUrl}content/repositories/snapshots/ - ${sonatypeOssDistMgmtNexusUrl}content/repositories/staging/ - ${sonatypeOssDistMgmtNexusUrl}service/local/staging/deploy/maven2/ - UTF-8 - - - 2020-12-19T17:24:00Z - - - - - ossrh - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - ossrh - Sonatype Nexus Releases - ${sonatypeOssDistMgmtReleasesUrl} - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M7 - - forked-path - false - -Poss-release ${release.arguments} - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - ossrh - ${sonatypeOssDistMgmtNexusUrl} - false - - ${maven.deploy.skip} - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.1 - - - org.apache.maven.plugins - maven-gpg-plugin - - 3.0.1 - - - - - - - - - oss-release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [3.2.5,) - Maven 3.0 through 3.0.3 inclusive does not pass - correct settings.xml to Maven Release Plugin. - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - --pinentry-mode - loopback - - - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - true - - - - - - - - snapshots - - false - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - false - - - true - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - false - - - true - - - - - - - - staging - - false - - - - sonatype-nexus-staging - Sonatype Nexus Staging - ${sonatypeOssDistMgmtStagingUrl} - - true - - - false - - - - - - sonatype-nexus-staging - Sonatype Nexus Staging - ${sonatypeOssDistMgmtStagingUrl} - - true - - - false - - - - - - diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.lastUpdated b/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.lastUpdated deleted file mode 100644 index 73deedeb9..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:29 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.eclipse.ee4j\:project\:pom\:1.0.8 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139809253 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139809376 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139809495 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139809691 diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.sha1 deleted file mode 100644 index 6119d2bc4..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -41a621037931f9f4aa8768694be9f5cb59df83df \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.9/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0.9/_remote.repositories deleted file mode 100644 index cb2f5d84f..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.9/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:25 EDT 2024 -project-1.0.9.pom>ohdsi= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom b/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom deleted file mode 100644 index 624d1567a..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom +++ /dev/null @@ -1,381 +0,0 @@ - - - - - 4.0.0 - org.eclipse.ee4j - project - 1.0.9 - pom - - EE4J Project - https://projects.eclipse.org/projects/ee4j - - Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, - implementations of those APIs, and technology compatibility kits for Java runtimes - that enable development, deployment, and management of server-side and cloud-native applications. - - - - Eclipse Foundation - https://www.eclipse.org - - 2017 - - - - eclipseee4j - Eclipse EE4J Developers - Eclipse Foundation - ee4j-pmc@eclipse.org - - - - - - Eclipse Public License v. 2.0 - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://www.gnu.org/software/classpath/license.html - repo - - - - - GitHub Issues - https://github.com/eclipse-ee4j/ee4j/issues - - - - scm:git:git@github.com:eclipse-ee4j/ee4j.git - scm:git:git@github.com:eclipse-ee4j/ee4j.git - https://github.com/eclipse-ee4j/ee4j - - - - - Community discussions - jakarta.ee-community@eclipse.org - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ - - http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss - - - - PMC discussions - ee4j-pmc@eclipse.org - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ - - http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss - - - - - - https://jakarta.oss.sonatype.org/ - ${sonatypeOssDistMgmtNexusUrl}content/repositories/snapshots/ - ${sonatypeOssDistMgmtNexusUrl}content/repositories/staging/ - ${sonatypeOssDistMgmtNexusUrl}service/local/staging/deploy/maven2/ - UTF-8 - - - 2020-12-19T17:24:00Z - - - - - ossrh - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - ossrh - Sonatype Nexus Releases - ${sonatypeOssDistMgmtReleasesUrl} - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - forked-path - false - -Poss-release ${release.arguments} - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - ossrh - ${sonatypeOssDistMgmtNexusUrl} - false - - ${maven.deploy.skip} - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-gpg-plugin - - 3.1.0 - - - org.cyclonedx - cyclonedx-maven-plugin - 2.7.9 - - - org.asciidoctor - asciidoctor-maven-plugin - 2.2.4 - - - - - - - - - - - sbom - - - !skipSBOM - - - - - - org.cyclonedx - cyclonedx-maven-plugin - - 1.4 - library - - - - package - - makeAggregateBom - - - - - - - - - - - oss-release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [3.2.5,) - Maven 3.0 through 3.0.3 inclusive does not pass - correct settings.xml to Maven Release Plugin. - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - --pinentry-mode - loopback - - - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - true - - - - - - - - snapshots - - false - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - false - - - true - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - false - - - true - - - - - - - - staging - - false - - - - sonatype-nexus-staging - Sonatype Nexus Staging - ${sonatypeOssDistMgmtStagingUrl} - - true - - - false - - - - - - sonatype-nexus-staging - Sonatype Nexus Staging - ${sonatypeOssDistMgmtStagingUrl} - - true - - - false - - - - - - diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.lastUpdated b/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.lastUpdated deleted file mode 100644 index 36656c063..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:25 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.eclipse.ee4j\:project\:pom\:1.0.9 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139804706 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139804831 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139805306 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139805474 diff --git a/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.sha1 deleted file mode 100644 index 15bbeffe8..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5c02bae4f34e508f6e22b0f7beb0fef77880ad02 \ No newline at end of file diff --git a/code/arachne/org/eclipse/ee4j/project/1.0/_remote.repositories b/code/arachne/org/eclipse/ee4j/project/1.0/_remote.repositories deleted file mode 100644 index e30e81a6d..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:04 EDT 2024 -project-1.0.pom>central= diff --git a/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom b/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom deleted file mode 100644 index 1c7884b50..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom +++ /dev/null @@ -1,272 +0,0 @@ - - - - - 4.0.0 - org.eclipse.ee4j - project - 1.0 - pom - - EE4J Project - https://projects.eclipse.org/projects/ee4j - - Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, - implementations of those APIs, and technology compatibility kits for Java runtimes - that enable development, deployment, and management of server-side and cloud-native applications. - - - - Eclipse Foundation - https://www.eclipse.org - - 2018 - - - - lukasj - Lukas Jungmann - Oracle - - - - - - Eclipse Public License v. 2.0 - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://www.gnu.org/software/classpath/license.html - repo - - - - - GitHub Issues - https://github.com/eclipse-ee4j/ee4j/issues - - - - scm:git:git@github.com:eclipse-ee4j/ee4j.git - scm:git:git@github.com:eclipse-ee4j/ee4j.git - https://github.com/eclipse-ee4j/ee4j - - - - - Community discussions - jakarta.ee-community@eclipse.org - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://accounts.eclipse.org/mailing-list/jakarta.ee-community - https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ - - http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss - - - - PMC discussions - ee4j-pmc@eclipse.org - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://accounts.eclipse.org/mailing-list/ee4j-pmc - https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/ - - http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss - - - - - - - ossrh - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - ossrh - Sonatype Nexus Releases - ${sonatypeOssDistMgmtReleasesUrl} - - - - - https://oss.sonatype.org/content/repositories/snapshots/ - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - UTF-8 - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - forked-path - false - -Poss-release ${release.arguments} - - - - - - - - - oss-release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [3.0.4,) - Maven 3.0 through 3.0.3 inclusive does not pass - correct settings.xml to Maven Release Plugin. - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - snapshots - - false - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - staging - - false - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/staging - - false - - - true - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/staging - - false - - - true - - - - - - diff --git a/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom.sha1 b/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom.sha1 deleted file mode 100644 index 94199f9c9..000000000 --- a/code/arachne/org/eclipse/ee4j/project/1.0/project-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3696ad17b9c70280c670470feff541a5e3dc6c74 \ No newline at end of file diff --git a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/_remote.repositories b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/_remote.repositories deleted file mode 100644 index 031b0a772..000000000 --- a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:30 EDT 2024 -jetty-ee10-bom-12.0.8.pom>ohdsi= diff --git a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom deleted file mode 100644 index 5798170e0..000000000 --- a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom +++ /dev/null @@ -1,252 +0,0 @@ - - - 4.0.0 - org.eclipse.jetty.ee10 - jetty-ee10-bom - 12.0.8 - pom - EE10 :: BOM - Jetty EE10 APIs BOM artifact - https://eclipse.dev/jetty/jetty-ee10/jetty-ee10-bom - 1995 - - Webtide - https://webtide.com - - - - Eclipse Public License - Version 2.0 - https://www.eclipse.org/legal/epl-2.0/ - - - Apache Software License - Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - gregw - Greg Wilkins - gregw@webtide.com - Webtide, LLC - https://webtide.com - 10 - - - janb - Jan Bartel - janb@webtide.com - Webtide, LLC - https://webtide.com - 10 - - - jesse - Jesse McConnell - jesse.mcconnell@gmail.com - Webtide, LLC - https://webtide.com - -6 - - - joakime - Joakim Erdfelt - joakim.erdfelt@gmail.com - Webtide, LLC - https://webtide.com - -6 - - - sbordet - Simone Bordet - simone.bordet@gmail.com - Webtide, LLC - https://webtide.com - 1 - - - djencks - David Jencks - david.a.jencks@gmail.com - IBM - -8 - - - olamy - Olivier Lamy - oliver.lamy@gmail.com - Webtide, LLC - https://webtide.com - Australia/Brisbane - - - lorban - Ludovic Orban - lorban@bitronix.be - Webtide, LLC - https://webtide.com - 1 - - - - - Jetty Developer Mailing List - https://accounts.eclipse.org/mailing-list/jetty-dev - https://www.eclipse.org/lists/jetty-dev/ - - - Jetty Users Mailing List - https://accounts.eclipse.org/mailing-list/jetty-users - https://www.eclipse.org/lists/jetty-users/ - - - Jetty Announce Mailing List - https://accounts.eclipse.org/mailing-list/jetty-announce - https://www.eclipse.org/lists/jetty-announce/ - - - - scm:git:https://github.com/jetty/jetty.project.git/jetty-ee10/jetty-ee10-bom - scm:git:git@github.com:jetty/jetty.project.git/jetty-ee10/jetty-ee10-bom - https://github.com/jetty/jetty.project/jetty-ee10/jetty-ee10-bom - - - github - https://github.com/jetty/jetty.project/issues - - - - - org.eclipse.jetty.ee10 - jetty-ee10-annotations - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-apache-jsp - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-cdi - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-fcgi-proxy - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-glassfish-jstl - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-jaspi - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-jndi - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-jspc-maven-plugin - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-maven-plugin - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-plus - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-proxy - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-quickstart - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-runner - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-servlet - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-servlets - 12.0.8 - - - org.eclipse.jetty.ee10 - jetty-ee10-webapp - 12.0.8 - - - org.eclipse.jetty.ee10.osgi - jetty-ee10-osgi-alpn - 12.0.8 - - - org.eclipse.jetty.ee10.osgi - jetty-ee10-osgi-boot - 12.0.8 - - - org.eclipse.jetty.ee10.osgi - jetty-ee10-osgi-boot-jsp - 12.0.8 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-client - 12.0.8 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-client-webapp - 12.0.8 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-common - 12.0.8 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-server - 12.0.8 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jetty-client-webapp - 12.0.8 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jetty-server - 12.0.8 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-servlet - 12.0.8 - - - - diff --git a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.lastUpdated b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.lastUpdated deleted file mode 100644 index 6a02d4e4c..000000000 --- a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:30 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.eclipse.jetty.ee10\:jetty-ee10-bom\:pom\:12.0.8 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139809700 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139809814 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139810027 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139810188 diff --git a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.sha1 b/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.sha1 deleted file mode 100644 index 7e0941dcc..000000000 --- a/code/arachne/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.8/jetty-ee10-bom-12.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b7cfe876c9f075b389f725c27b82b78a84ba37b5 \ No newline at end of file diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/_remote.repositories b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/_remote.repositories deleted file mode 100644 index 7a9c82d17..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:30 EDT 2024 -jetty-bom-12.0.8.pom>ohdsi= diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom deleted file mode 100644 index 0ce956f3e..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom +++ /dev/null @@ -1,402 +0,0 @@ - - - 4.0.0 - org.eclipse.jetty - jetty-bom - 12.0.8 - pom - Core :: BOM - Jetty Core BOM artifact - https://eclipse.dev/jetty/jetty-core/jetty-bom - 1995 - - Webtide - https://webtide.com - - - - Eclipse Public License - Version 2.0 - https://www.eclipse.org/legal/epl-2.0/ - - - Apache Software License - Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - gregw - Greg Wilkins - gregw@webtide.com - Webtide, LLC - https://webtide.com - 10 - - - janb - Jan Bartel - janb@webtide.com - Webtide, LLC - https://webtide.com - 10 - - - jesse - Jesse McConnell - jesse.mcconnell@gmail.com - Webtide, LLC - https://webtide.com - -6 - - - joakime - Joakim Erdfelt - joakim.erdfelt@gmail.com - Webtide, LLC - https://webtide.com - -6 - - - sbordet - Simone Bordet - simone.bordet@gmail.com - Webtide, LLC - https://webtide.com - 1 - - - djencks - David Jencks - david.a.jencks@gmail.com - IBM - -8 - - - olamy - Olivier Lamy - oliver.lamy@gmail.com - Webtide, LLC - https://webtide.com - Australia/Brisbane - - - lorban - Ludovic Orban - lorban@bitronix.be - Webtide, LLC - https://webtide.com - 1 - - - - - Jetty Developer Mailing List - https://accounts.eclipse.org/mailing-list/jetty-dev - https://www.eclipse.org/lists/jetty-dev/ - - - Jetty Users Mailing List - https://accounts.eclipse.org/mailing-list/jetty-users - https://www.eclipse.org/lists/jetty-users/ - - - Jetty Announce Mailing List - https://accounts.eclipse.org/mailing-list/jetty-announce - https://www.eclipse.org/lists/jetty-announce/ - - - - scm:git:https://github.com/jetty/jetty.project.git/jetty-core/jetty-bom - scm:git:git@github.com:jetty/jetty.project.git/jetty-core/jetty-bom - https://github.com/jetty/jetty.project/jetty-core/jetty-bom - - - github - https://github.com/jetty/jetty.project/issues - - - - - org.eclipse.jetty - jetty-alpn-client - 12.0.8 - - - org.eclipse.jetty - jetty-alpn-conscrypt-client - 12.0.8 - - - org.eclipse.jetty - jetty-alpn-conscrypt-server - 12.0.8 - - - org.eclipse.jetty - jetty-alpn-java-client - 12.0.8 - - - org.eclipse.jetty - jetty-alpn-java-server - 12.0.8 - - - org.eclipse.jetty - jetty-alpn-server - 12.0.8 - - - org.eclipse.jetty - jetty-client - 12.0.8 - - - org.eclipse.jetty - jetty-deploy - 12.0.8 - - - org.eclipse.jetty - jetty-http - 12.0.8 - - - org.eclipse.jetty - jetty-http-spi - 12.0.8 - - - org.eclipse.jetty - jetty-http-tools - 12.0.8 - - - org.eclipse.jetty - jetty-io - 12.0.8 - - - org.eclipse.jetty - jetty-jmx - 12.0.8 - - - org.eclipse.jetty - jetty-jndi - 12.0.8 - - - org.eclipse.jetty - jetty-keystore - 12.0.8 - - - org.eclipse.jetty - jetty-openid - 12.0.8 - - - org.eclipse.jetty - jetty-osgi - 12.0.8 - - - org.eclipse.jetty - jetty-plus - 12.0.8 - - - org.eclipse.jetty - jetty-proxy - 12.0.8 - - - org.eclipse.jetty - jetty-rewrite - 12.0.8 - - - org.eclipse.jetty - jetty-security - 12.0.8 - - - org.eclipse.jetty - jetty-server - 12.0.8 - - - org.eclipse.jetty - jetty-session - 12.0.8 - - - org.eclipse.jetty - jetty-slf4j-impl - 12.0.8 - - - org.eclipse.jetty - jetty-start - 12.0.8 - - - org.eclipse.jetty - jetty-unixdomain-server - 12.0.8 - - - org.eclipse.jetty - jetty-util - 12.0.8 - - - org.eclipse.jetty - jetty-util-ajax - 12.0.8 - - - org.eclipse.jetty - jetty-xml - 12.0.8 - - - org.eclipse.jetty.demos - jetty-demo-handler - 12.0.8 - - - org.eclipse.jetty.fcgi - jetty-fcgi-client - 12.0.8 - - - org.eclipse.jetty.fcgi - jetty-fcgi-proxy - 12.0.8 - - - org.eclipse.jetty.fcgi - jetty-fcgi-server - 12.0.8 - - - org.eclipse.jetty.http2 - jetty-http2-client - 12.0.8 - - - org.eclipse.jetty.http2 - jetty-http2-client-transport - 12.0.8 - - - org.eclipse.jetty.http2 - jetty-http2-common - 12.0.8 - - - org.eclipse.jetty.http2 - jetty-http2-hpack - 12.0.8 - - - org.eclipse.jetty.http2 - jetty-http2-server - 12.0.8 - - - org.eclipse.jetty.http3 - jetty-http3-client - 12.0.8 - - - org.eclipse.jetty.http3 - jetty-http3-client-transport - 12.0.8 - - - org.eclipse.jetty.http3 - jetty-http3-common - 12.0.8 - - - org.eclipse.jetty.http3 - jetty-http3-qpack - 12.0.8 - - - org.eclipse.jetty.http3 - jetty-http3-server - 12.0.8 - - - org.eclipse.jetty.quic - jetty-quic-client - 12.0.8 - - - org.eclipse.jetty.quic - jetty-quic-common - 12.0.8 - - - org.eclipse.jetty.quic - jetty-quic-quiche-common - 12.0.8 - - - org.eclipse.jetty.quic - jetty-quic-quiche-foreign-incubator - 12.0.8 - - - org.eclipse.jetty.quic - jetty-quic-quiche-jna - 12.0.8 - - - org.eclipse.jetty.quic - jetty-quic-server - 12.0.8 - - - org.eclipse.jetty.websocket - jetty-websocket-core-client - 12.0.8 - - - org.eclipse.jetty.websocket - jetty-websocket-core-common - 12.0.8 - - - org.eclipse.jetty.websocket - jetty-websocket-core-server - 12.0.8 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-api - 12.0.8 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-client - 12.0.8 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-common - 12.0.8 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-server - 12.0.8 - - - - diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.lastUpdated b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.lastUpdated deleted file mode 100644 index 7158b0e0d..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:30 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.eclipse.jetty\:jetty-bom\:pom\:12.0.8 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139810200 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139810289 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139810441 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139810617 diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.sha1 b/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.sha1 deleted file mode 100644 index 5444323ac..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/12.0.8/jetty-bom-12.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2fbb76c436931201c76ae79ff6ad60cccb59946f \ No newline at end of file diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/_remote.repositories b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/_remote.repositories deleted file mode 100644 index 4561e60e6..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:48 EDT 2024 -jetty-bom-9.4.28.v20200408.pom>local-repo= diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom deleted file mode 100644 index 39bba05af..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom +++ /dev/null @@ -1,473 +0,0 @@ - - - 4.0.0 - org.eclipse.jetty - jetty-bom - 9.4.28.v20200408 - pom - Jetty :: Bom - Jetty BOM artifact - http://www.eclipse.org/jetty - 1995 - - Webtide - https://webtide.com - - - - Apache Software License - Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - Eclipse Public License - Version 1.0 - http://www.eclipse.org/org/documents/epl-v10.php - - - - - gregw - Greg Wilkins - gregw@webtide.com - Webtide, LLC - https://webtide.com - 10 - - - janb - Jan Bartel - janb@webtide.com - Webtide, LLC - https://webtide.com - 10 - - - jesse - Jesse McConnell - jesse.mcconnell@gmail.com - Webtide, LLC - https://webtide.com - -6 - - - joakime - Joakim Erdfelt - joakim.erdfelt@gmail.com - Webtide, LLC - https://webtide.com - -7 - - - sbordet - Simone Bordet - simone.bordet@gmail.com - Webtide, LLC - https://webtide.com - 1 - - - djencks - David Jencks - david.a.jencks@gmail.com - IBM - -8 - - - olamy - Olivier Lamy - oliver.lamy@gmail.com - Webtide, LLC - https://webtide.com - Australia/Brisbane - - - - - Jetty Developer Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-dev - https://dev.eclipse.org/mailman/listinfo/jetty-dev - https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html - - - Jetty Commit Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-commit - https://dev.eclipse.org/mailman/listinfo/jetty-commit - https://dev.eclipse.org/mhonarc/lists/jetty-commit/maillist.html - - - Jetty Users Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-users - https://dev.eclipse.org/mailman/listinfo/jetty-users - https://dev.eclipse.org/mhonarc/lists/jetty-users/maillist.html - - - Jetty Announce Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-announce - https://dev.eclipse.org/mailman/listinfo/jetty-announce - https://dev.eclipse.org/mhonarc/lists/jetty-announce/maillist.html - - - - scm:git:https://github.com/eclipse/jetty.project.git/jetty-bom - scm:git:git@github.com:eclipse/jetty.project.git/jetty-bom - https://github.com/eclipse/jetty.project/jetty-bom - - - github - https://github.com/eclipse/jetty.project/issues - - - - oss.sonatype.org - Jetty Staging Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - oss.sonatype.org - Jetty Snapshot Repository - https://oss.sonatype.org/content/repositories/jetty-snapshots/ - - - jetty.eclipse.website - scp://build.eclipse.org:/home/data/httpd/download.eclipse.org/jetty/9.4.28.v20200408/jetty-bom/ - - - - - - org.eclipse.jetty - apache-jsp - 9.4.28.v20200408 - - - org.eclipse.jetty - apache-jstl - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-alpn-client - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-alpn-java-client - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-alpn-java-server - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-alpn-openjdk8-client - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-alpn-openjdk8-server - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-alpn-conscrypt-client - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-alpn-conscrypt-server - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-alpn-server - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-annotations - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-ant - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-client - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-continuation - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-deploy - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-distribution - 9.4.28.v20200408 - zip - - - org.eclipse.jetty - jetty-distribution - 9.4.28.v20200408 - tar.gz - - - org.eclipse.jetty.fcgi - fcgi-client - 9.4.28.v20200408 - - - org.eclipse.jetty.fcgi - fcgi-server - 9.4.28.v20200408 - - - org.eclipse.jetty.gcloud - jetty-gcloud-session-manager - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-home - 9.4.28.v20200408 - zip - - - org.eclipse.jetty - jetty-home - 9.4.28.v20200408 - tar.gz - - - org.eclipse.jetty - jetty-http - 9.4.28.v20200408 - - - org.eclipse.jetty.http2 - http2-client - 9.4.28.v20200408 - - - org.eclipse.jetty.http2 - http2-common - 9.4.28.v20200408 - - - org.eclipse.jetty.http2 - http2-hpack - 9.4.28.v20200408 - - - org.eclipse.jetty.http2 - http2-http-client-transport - 9.4.28.v20200408 - - - org.eclipse.jetty.http2 - http2-server - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-http-spi - 9.4.28.v20200408 - - - org.eclipse.jetty - infinispan-common - 9.4.28.v20200408 - - - org.eclipse.jetty - infinispan-remote-query - 9.4.28.v20200408 - - - org.eclipse.jetty - infinispan-embedded-query - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-hazelcast - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-io - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-jaas - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-jaspi - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-jmx - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-jndi - 9.4.28.v20200408 - - - org.eclipse.jetty.memcached - jetty-memcached-sessions - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-nosql - 9.4.28.v20200408 - - - org.eclipse.jetty.osgi - jetty-osgi-boot - 9.4.28.v20200408 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-jsp - 9.4.28.v20200408 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-warurl - 9.4.28.v20200408 - - - org.eclipse.jetty.osgi - jetty-httpservice - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-plus - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-proxy - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-quickstart - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-rewrite - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-security - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-openid - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-server - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-servlet - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-servlets - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-spring - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-unixsocket - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-util - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-util-ajax - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-webapp - 9.4.28.v20200408 - - - org.eclipse.jetty.websocket - javax-websocket-client-impl - 9.4.28.v20200408 - - - org.eclipse.jetty.websocket - javax-websocket-server-impl - 9.4.28.v20200408 - - - org.eclipse.jetty.websocket - websocket-api - 9.4.28.v20200408 - - - org.eclipse.jetty.websocket - websocket-client - 9.4.28.v20200408 - - - org.eclipse.jetty.websocket - websocket-common - 9.4.28.v20200408 - - - org.eclipse.jetty.websocket - websocket-server - 9.4.28.v20200408 - - - org.eclipse.jetty.websocket - websocket-servlet - 9.4.28.v20200408 - - - org.eclipse.jetty - jetty-xml - 9.4.28.v20200408 - - - - diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.lastUpdated b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.lastUpdated deleted file mode 100644 index 75df243e0..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:48 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139888796 -http\://0.0.0.0/.error=Could not transfer artifact org.eclipse.jetty\:jetty-bom\:pom\:9.4.28.v20200408 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139888565 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139888572 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139888682 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139888751 diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.sha1 b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.sha1 deleted file mode 100644 index 4a3a63dca..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.28.v20200408/jetty-bom-9.4.28.v20200408.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -74ae3725e592beb06dd21286f38834cd6702b3fc \ No newline at end of file diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/_remote.repositories b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/_remote.repositories deleted file mode 100644 index eff704b11..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:49 EDT 2024 -jetty-bom-9.4.53.v20231009.pom>central= diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom deleted file mode 100644 index a089f5a8a..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom +++ /dev/null @@ -1,481 +0,0 @@ - - - 4.0.0 - org.eclipse.jetty - jetty-bom - 9.4.53.v20231009 - pom - Jetty :: Bom - Jetty BOM artifact - https://eclipse.org/jetty - 1995 - - Webtide - https://webtide.com - - - - Apache Software License - Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - Eclipse Public License - Version 1.0 - https://www.eclipse.org/org/documents/epl-v10.php - - - - - gregw - Greg Wilkins - gregw@webtide.com - Webtide, LLC - https://webtide.com - 10 - - - janb - Jan Bartel - janb@webtide.com - Webtide, LLC - https://webtide.com - 10 - - - jesse - Jesse McConnell - jesse.mcconnell@gmail.com - Webtide, LLC - https://webtide.com - -6 - - - joakime - Joakim Erdfelt - joakim.erdfelt@gmail.com - Webtide, LLC - https://webtide.com - -7 - - - sbordet - Simone Bordet - simone.bordet@gmail.com - Webtide, LLC - https://webtide.com - 1 - - - djencks - David Jencks - david.a.jencks@gmail.com - IBM - -8 - - - olamy - Olivier Lamy - oliver.lamy@gmail.com - Webtide, LLC - https://webtide.com - Australia/Brisbane - - - lorban - Ludovic Orban - lorban@bitronix.be - Webtide, LLC - https://webtide.com - 1 - - - - - Jetty Developer Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-dev - https://dev.eclipse.org/mailman/listinfo/jetty-dev - https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html - - - Jetty Commit Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-commit - https://dev.eclipse.org/mailman/listinfo/jetty-commit - https://dev.eclipse.org/mhonarc/lists/jetty-commit/maillist.html - - - Jetty Users Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-users - https://dev.eclipse.org/mailman/listinfo/jetty-users - https://dev.eclipse.org/mhonarc/lists/jetty-users/maillist.html - - - Jetty Announce Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-announce - https://dev.eclipse.org/mailman/listinfo/jetty-announce - https://dev.eclipse.org/mhonarc/lists/jetty-announce/maillist.html - - - - scm:git:https://github.com/eclipse/jetty.project.git/jetty-bom - scm:git:git@github.com:eclipse/jetty.project.git/jetty-bom - https://github.com/eclipse/jetty.project/jetty-bom - - - github - https://github.com/eclipse/jetty.project/issues - - - - oss.sonatype.org - Jetty Staging Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - oss.sonatype.org - Jetty Snapshot Repository - https://oss.sonatype.org/content/repositories/jetty-snapshots/ - - - jetty.eclipse.website - scp://build.eclipse.org:/home/data/httpd/download.eclipse.org/jetty/9.4.53.v20231009/jetty-bom/ - - - - - - org.eclipse.jetty - apache-jsp - 9.4.53.v20231009 - - - org.eclipse.jetty - apache-jstl - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-alpn-client - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-alpn-java-client - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-alpn-java-server - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-alpn-openjdk8-client - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-alpn-openjdk8-server - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-alpn-conscrypt-client - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-alpn-conscrypt-server - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-alpn-server - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-annotations - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-ant - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-client - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-continuation - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-deploy - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-distribution - 9.4.53.v20231009 - zip - - - org.eclipse.jetty - jetty-distribution - 9.4.53.v20231009 - tar.gz - - - org.eclipse.jetty.fcgi - fcgi-client - 9.4.53.v20231009 - - - org.eclipse.jetty.fcgi - fcgi-server - 9.4.53.v20231009 - - - org.eclipse.jetty.gcloud - jetty-gcloud-session-manager - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-home - 9.4.53.v20231009 - zip - - - org.eclipse.jetty - jetty-home - 9.4.53.v20231009 - tar.gz - - - org.eclipse.jetty - jetty-http - 9.4.53.v20231009 - - - org.eclipse.jetty.http2 - http2-client - 9.4.53.v20231009 - - - org.eclipse.jetty.http2 - http2-common - 9.4.53.v20231009 - - - org.eclipse.jetty.http2 - http2-hpack - 9.4.53.v20231009 - - - org.eclipse.jetty.http2 - http2-http-client-transport - 9.4.53.v20231009 - - - org.eclipse.jetty.http2 - http2-server - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-http-spi - 9.4.53.v20231009 - - - org.eclipse.jetty - infinispan-common - 9.4.53.v20231009 - - - org.eclipse.jetty - infinispan-remote-query - 9.4.53.v20231009 - - - org.eclipse.jetty - infinispan-embedded-query - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-hazelcast - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-io - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-jaas - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-jaspi - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-jmx - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-jndi - 9.4.53.v20231009 - - - org.eclipse.jetty.memcached - jetty-memcached-sessions - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-nosql - 9.4.53.v20231009 - - - org.eclipse.jetty.osgi - jetty-osgi-boot - 9.4.53.v20231009 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-jsp - 9.4.53.v20231009 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-warurl - 9.4.53.v20231009 - - - org.eclipse.jetty.osgi - jetty-httpservice - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-plus - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-proxy - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-quickstart - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-rewrite - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-security - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-openid - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-server - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-servlet - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-servlets - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-spring - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-unixsocket - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-util - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-util-ajax - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-webapp - 9.4.53.v20231009 - - - org.eclipse.jetty.websocket - javax-websocket-client-impl - 9.4.53.v20231009 - - - org.eclipse.jetty.websocket - javax-websocket-server-impl - 9.4.53.v20231009 - - - org.eclipse.jetty.websocket - websocket-api - 9.4.53.v20231009 - - - org.eclipse.jetty.websocket - websocket-client - 9.4.53.v20231009 - - - org.eclipse.jetty.websocket - websocket-common - 9.4.53.v20231009 - - - org.eclipse.jetty.websocket - websocket-server - 9.4.53.v20231009 - - - org.eclipse.jetty.websocket - websocket-servlet - 9.4.53.v20231009 - - - org.eclipse.jetty - jetty-xml - 9.4.53.v20231009 - - - - diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom.sha1 b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom.sha1 deleted file mode 100644 index ee571e0cb..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.53.v20231009/jetty-bom-9.4.53.v20231009.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8b328fca26098b482ffa556059cd49d82cfb07e8 \ No newline at end of file diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/_remote.repositories b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/_remote.repositories deleted file mode 100644 index 8a4d023eb..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:51 EDT 2024 -jetty-bom-9.4.54.v20240208.pom>central= diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom deleted file mode 100644 index b2092a3ae..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom +++ /dev/null @@ -1,481 +0,0 @@ - - - 4.0.0 - org.eclipse.jetty - jetty-bom - 9.4.54.v20240208 - pom - Jetty :: Bom - Jetty BOM artifact - https://eclipse.org/jetty - 1995 - - Webtide - https://webtide.com - - - - Apache Software License - Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - Eclipse Public License - Version 1.0 - https://www.eclipse.org/org/documents/epl-v10.php - - - - - gregw - Greg Wilkins - gregw@webtide.com - Webtide, LLC - https://webtide.com - 10 - - - janb - Jan Bartel - janb@webtide.com - Webtide, LLC - https://webtide.com - 10 - - - jesse - Jesse McConnell - jesse.mcconnell@gmail.com - Webtide, LLC - https://webtide.com - -6 - - - joakime - Joakim Erdfelt - joakim.erdfelt@gmail.com - Webtide, LLC - https://webtide.com - -7 - - - sbordet - Simone Bordet - simone.bordet@gmail.com - Webtide, LLC - https://webtide.com - 1 - - - djencks - David Jencks - david.a.jencks@gmail.com - IBM - -8 - - - olamy - Olivier Lamy - oliver.lamy@gmail.com - Webtide, LLC - https://webtide.com - Australia/Brisbane - - - lorban - Ludovic Orban - lorban@bitronix.be - Webtide, LLC - https://webtide.com - 1 - - - - - Jetty Developer Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-dev - https://dev.eclipse.org/mailman/listinfo/jetty-dev - https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html - - - Jetty Commit Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-commit - https://dev.eclipse.org/mailman/listinfo/jetty-commit - https://dev.eclipse.org/mhonarc/lists/jetty-commit/maillist.html - - - Jetty Users Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-users - https://dev.eclipse.org/mailman/listinfo/jetty-users - https://dev.eclipse.org/mhonarc/lists/jetty-users/maillist.html - - - Jetty Announce Mailing List - https://dev.eclipse.org/mailman/listinfo/jetty-announce - https://dev.eclipse.org/mailman/listinfo/jetty-announce - https://dev.eclipse.org/mhonarc/lists/jetty-announce/maillist.html - - - - scm:git:https://github.com/eclipse/jetty.project.git/jetty-bom - scm:git:git@github.com:eclipse/jetty.project.git/jetty-bom - https://github.com/eclipse/jetty.project/jetty-bom - - - github - https://github.com/eclipse/jetty.project/issues - - - - oss.sonatype.org - Jetty Staging Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - oss.sonatype.org - Jetty Snapshot Repository - https://oss.sonatype.org/content/repositories/jetty-snapshots/ - - - jetty.eclipse.website - scp://build.eclipse.org:/home/data/httpd/download.eclipse.org/jetty/9.4.54.v20240208/jetty-bom/ - - - - - - org.eclipse.jetty - apache-jsp - 9.4.54.v20240208 - - - org.eclipse.jetty - apache-jstl - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-alpn-client - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-alpn-java-client - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-alpn-java-server - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-alpn-openjdk8-client - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-alpn-openjdk8-server - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-alpn-conscrypt-client - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-alpn-conscrypt-server - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-alpn-server - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-annotations - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-ant - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-client - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-continuation - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-deploy - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-distribution - 9.4.54.v20240208 - zip - - - org.eclipse.jetty - jetty-distribution - 9.4.54.v20240208 - tar.gz - - - org.eclipse.jetty.fcgi - fcgi-client - 9.4.54.v20240208 - - - org.eclipse.jetty.fcgi - fcgi-server - 9.4.54.v20240208 - - - org.eclipse.jetty.gcloud - jetty-gcloud-session-manager - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-home - 9.4.54.v20240208 - zip - - - org.eclipse.jetty - jetty-home - 9.4.54.v20240208 - tar.gz - - - org.eclipse.jetty - jetty-http - 9.4.54.v20240208 - - - org.eclipse.jetty.http2 - http2-client - 9.4.54.v20240208 - - - org.eclipse.jetty.http2 - http2-common - 9.4.54.v20240208 - - - org.eclipse.jetty.http2 - http2-hpack - 9.4.54.v20240208 - - - org.eclipse.jetty.http2 - http2-http-client-transport - 9.4.54.v20240208 - - - org.eclipse.jetty.http2 - http2-server - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-http-spi - 9.4.54.v20240208 - - - org.eclipse.jetty - infinispan-common - 9.4.54.v20240208 - - - org.eclipse.jetty - infinispan-remote-query - 9.4.54.v20240208 - - - org.eclipse.jetty - infinispan-embedded-query - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-hazelcast - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-io - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-jaas - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-jaspi - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-jmx - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-jndi - 9.4.54.v20240208 - - - org.eclipse.jetty.memcached - jetty-memcached-sessions - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-nosql - 9.4.54.v20240208 - - - org.eclipse.jetty.osgi - jetty-osgi-boot - 9.4.54.v20240208 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-jsp - 9.4.54.v20240208 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-warurl - 9.4.54.v20240208 - - - org.eclipse.jetty.osgi - jetty-httpservice - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-plus - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-proxy - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-quickstart - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-rewrite - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-security - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-openid - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-server - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-servlet - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-servlets - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-spring - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-unixsocket - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-util - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-util-ajax - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-webapp - 9.4.54.v20240208 - - - org.eclipse.jetty.websocket - javax-websocket-client-impl - 9.4.54.v20240208 - - - org.eclipse.jetty.websocket - javax-websocket-server-impl - 9.4.54.v20240208 - - - org.eclipse.jetty.websocket - websocket-api - 9.4.54.v20240208 - - - org.eclipse.jetty.websocket - websocket-client - 9.4.54.v20240208 - - - org.eclipse.jetty.websocket - websocket-common - 9.4.54.v20240208 - - - org.eclipse.jetty.websocket - websocket-server - 9.4.54.v20240208 - - - org.eclipse.jetty.websocket - websocket-servlet - 9.4.54.v20240208 - - - org.eclipse.jetty - jetty-xml - 9.4.54.v20240208 - - - - diff --git a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom.sha1 b/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom.sha1 deleted file mode 100644 index 824b73e82..000000000 --- a/code/arachne/org/eclipse/jetty/jetty-bom/9.4.54.v20240208/jetty-bom-9.4.54.v20240208.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce7382fb18185685b0787387b61a960bbdcbb730 \ No newline at end of file diff --git a/code/arachne/org/flywaydb/flyway-core/9.22.3/_remote.repositories b/code/arachne/org/flywaydb/flyway-core/9.22.3/_remote.repositories deleted file mode 100644 index 5971237e9..000000000 --- a/code/arachne/org/flywaydb/flyway-core/9.22.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:11 EDT 2024 -flyway-core-9.22.3.pom>central= diff --git a/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom b/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom deleted file mode 100644 index 9fbb6b0ad..000000000 --- a/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom +++ /dev/null @@ -1,300 +0,0 @@ - - - 4.0.0 - - org.flywaydb - flyway-parent - 9.22.3 - - flyway-core - jar - ${project.artifactId} - - - - org.slf4j - slf4j-api - true - - - commons-logging - commons-logging - true - - - org.apache.logging.log4j - log4j-api - true - - - - org.jboss - jboss-vfs - true - - - com.fasterxml.jackson.dataformat - jackson-dataformat-toml - - - org.osgi - org.osgi.core - true - provided - - - software.amazon.awssdk - s3 - true - - - com.google.cloud - google-cloud-storage - true - - - com.amazonaws.secretsmanager - aws-secretsmanager-jdbc - true - - - org.postgresql - postgresql - true - - - com.oracle.database.jdbc - ojdbc8 - true - - - org.projectlombok - lombok - - - org.apache.commons - commons-text - compile - true - - - com.google.code.gson - gson - - - - - - - src/main/resources - true - - - - - maven-resources-plugin - - - copy-license - - copy-resources - - generate-resources - - - - .. - - LICENSE.txt - README.txt - - - - ${project.build.outputDirectory}/META-INF - - - - - - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.felix - maven-bundle-plugin - - - org.flywaydb.core - org.flywaydb.core - - org.flywaydb.core;version=${project.version}, - org.flywaydb.core.api.*;version=${project.version} - - - javax.sql, - org.apache.commons.logging;version="[1.1,2)";resolution:=optional, - org.apache.logging.log4j;version="[2.17.1,3)";resolution:=optional, - org.apache.logging.log4j.util;version="[2.17.1,3)";resolution:=optional, - org.jboss.vfs;version="[3.1.0,4)";resolution:=optional, - org.postgresql.copy;version="[9.3.1102,100.0)";resolution:=optional, - org.postgresql.core;version="[9.3.1102,100.0)";resolution:=optional, - org.osgi.framework;version="1.3.0";resolution:=mandatory, - org.slf4j;version="[1.6,2)";resolution:=optional, - org.springframework.*;version="[5.3.19,6.0)";resolution:=optional - - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.projectlombok - lombok-maven-plugin - - - maven-javadoc-plugin - - ${project.basedir}/target/generated-sources/delombok - - **/core/Flyway.java - **/core/api/**/*.java - - - - - - - - - - maven-javadoc-plugin - 3.0.1 - - ${project.basedir}/target/generated-sources/delombok - - **/core/Flyway.java - **/core/api/**/*.java - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom.sha1 b/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom.sha1 deleted file mode 100644 index c54ffb888..000000000 --- a/code/arachne/org/flywaydb/flyway-core/9.22.3/flyway-core-9.22.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ff386b7ed39747441d908f5c54ea34723b4c6902 \ No newline at end of file diff --git a/code/arachne/org/flywaydb/flyway-parent/9.22.3/_remote.repositories b/code/arachne/org/flywaydb/flyway-parent/9.22.3/_remote.repositories deleted file mode 100644 index 391f276f7..000000000 --- a/code/arachne/org/flywaydb/flyway-parent/9.22.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:11 EDT 2024 -flyway-parent-9.22.3.pom>central= diff --git a/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom b/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom deleted file mode 100644 index 54801df6c..000000000 --- a/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom +++ /dev/null @@ -1,1503 +0,0 @@ - - - - 4.0.0 - org.flywaydb - flyway-parent - 9.22.3 - pom - ${project.artifactId} - Flyway: Database Migrations Made Easy. - https://flywaydb.org - - - Apache License, Version 2.0 - https://flywaydb.org/licenses/flyway-community - repo - - - - - https://github.com/flyway/flyway - scm:git:${env.FLYWAY_REPO_URL} - scm:git:${env.FLYWAY_REPO_URL} - - - - - - - HEAD - - - - flyway - https://flywaydb.org/ - Redgate Software - https://www.red-gate.com/ - - - - - flyway-core - flyway-community-db-support - flyway-gradle-plugin - flyway-maven-plugin - flyway-commandline - flyway-gcp-bigquery - flyway-gcp-spanner - flyway-sqlserver - flyway-mysql - flyway-firebird - flyway-database-oracle - - - - - - - - - - - - - - - - - - - - - - - - - - ${snapshotRepository.id} - ${snapshotRepository.name} - ${snapshotRepository.url} - - - ${releaseRepository.id} - ${releaseRepository.name} - ${releaseRepository.url} - - - - - - - - - - - - - maven-central - https://repo1.maven.org/maven2 - - - - repo.gradle.org - https://repo.gradle.org/gradle/libs-releases-local/ - - - flyway-repo - https://nexus.flywaydb.org/repository/flyway/ - - - - - 1.10.13 - 3.4.7 - [2.20.162,2.21.0) - 2.0.0 - 1.11.18 - 1.2 - 1.10.0 - 11.5.0.0 - 10.15.2.0 - 3.15.200 - 3.10.600 - 2.22.5 - 2.20.0 - 6.1.1 - 2.10.1 - 2.2.220 - 2.2 - 2.7.1 - 2.13.0 - 4.50.3 - 1.18 - 2.15.2 - 2.3.1 - 3.0.10 - 3.2.15.Final - 4.5.2 - 1.3.1 - 5.9.0 - 2.0.1 - 2.17.1 - 1.2.3 - 1.18.20 - 1.18.20.0 - 2.7.10 - 3.9.4 - 4.2.0 - 1.13.8 - 12.2.0 - ${version.mssql}.jre8 - 19.6.0.0 - 4.3.1 - 3.9.1 - 42.4.3 - 1.2.10.1009 - 2.6.30 - 1.1.4 - 1.7.30 - 3.13.30 - 2.11.1 - 5.3.19 - 3.41.2.2 - 1.15.3 - - - - - - commons-logging - commons-logging - ${version.commonslogging} - true - - - org.apache.commons - commons-text - ${version.commonstext} - true - - - com.fasterxml.jackson.dataformat - jackson-dataformat-toml - ${version.jackson} - - - com.fasterxml.jackson.core - jackson-annotations - ${version.jackson} - - - com.fasterxml.jackson.core - jackson-core - ${version.jackson} - - - com.fasterxml.jackson.core - jackson-databind - ${version.jackson} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - ${version.jackson} - - - org.slf4j - slf4j-api - ${version.slf4j} - true - - - org.slf4j - slf4j-jdk14 - ${version.slf4j} - true - - - org.slf4j - slf4j-nop - ${version.slf4j} - true - - - org.slf4j - jcl-over-slf4j - ${version.slf4j} - true - - - org.apache.logging.log4j - log4j-core - ${version.log4net2} - true - - - org.apache.logging.log4j - log4j-api - ${version.log4net2} - true - - - org.jboss - jboss-vfs - ${version.jboss} - true - - - org.eclipse.platform - org.eclipse.equinox.common - ${version.equinoxcommon} - true - - - org.eclipse.platform - org.eclipse.osgi - ${version.equinox} - - - org.osgi - org.osgi.core - ${version.osgi} - - - org.postgresql - postgresql - ${version.postgresql} - true - - - org.apache.derby - derby - ${version.derby} - true - - - org.apache.derby - derbytools - ${version.derby} - true - - - org.apache.derby - derbyshared - ${version.derby} - true - - - org.apache.derby - derbyclient - ${version.derby} - true - - - org.hsqldb - hsqldb - ${version.hsqldb} - true - - - com.h2database - h2 - ${version.h2} - true - - - org.firebirdsql.jdbc - jaybird-jdk18 - ${version.jaybird} - true - - - com.google.cloud - google-cloud-spanner-jdbc - ${version.spanner} - true - - - org.apache.ignite - ignite-core - ${version.ignite} - true - - - com.singlestore - singlestore-jdbc-client - ${version.singlestore} - true - - - net.snowflake - snowflake-jdbc - ${version.snowflake} - true - - - org.testcontainers - junit-jupiter - ${version.testcontainers} - true - - - uk.org.webcompere - system-stubs-core - ${version.system-stubs} - true - - - uk.org.webcompere - system-stubs-jupiter - ${version.system-stubs} - true - - - org.testcontainers - postgresql - ${version.testcontainers} - true - - - org.testcontainers - cockroachdb - ${version.testcontainers} - true - - - org.testcontainers - db2 - ${version.testcontainers} - true - - - org.testcontainers - mariadb - ${version.testcontainers} - true - - - p6spy - p6spy - ${version.p6spy} - - - org.xerial - sqlite-jdbc - ${version.sqlite} - true - - - org.mariadb.jdbc - mariadb-java-client - ${version.mariadb} - true - - - net.java.dev.jna - jna - ${version.jna} - true - - - net.java.dev.jna - jna-platform - ${version.jna} - true - - - com.oracle.database.jdbc - ojdbc8 - ${version.oracle} - true - - - net.sourceforge.jtds - jtds - ${version.jtds} - true - - - com.ibm.informix - jdbc - ${version.informix} - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - com.microsoft.sqlserver - mssql-jdbc - ${version.mssql-jdbc} - true - - - com.microsoft.azure - msal4j - ${version.msal4j} - true - - - javax.xml.bind - jaxb-api - ${version.jaxb} - - - software.amazon.awssdk - s3 - ${version.aws-java-sdk} - true - - - com.google.cloud - google-cloud-storage - ${version.gcs} - true - - - com.google.cloud - google-cloud-secretmanager - ${version.gcsm} - true - - - com.google.api.grpc - proto-google-cloud-secretmanager-v1 - ${version.gcsm} - true - - - com.amazonaws.secretsmanager - aws-secretsmanager-jdbc - ${version.aws-secretsmanager} - true - - - org.apache.maven - maven-plugin-api - ${version.maven} - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${version.maven} - - - org.apache.maven - maven-artifact - ${version.maven} - - - org.apache.maven - maven-model - ${version.maven} - - - org.apache.maven - maven-core - ${version.maven} - - - org.apache.ant - ant - ${version.ant} - - - org.fusesource.jansi - jansi - ${version.jansi} - - - com.google.code.gson - gson - ${version.gson} - - - org.projectlombok - lombok - ${version.lombok} - provided - - - - - - - - com.allogy.maven.wagon - maven-s3-wagon - 1.2.0 - - - org.apache.maven.wagon - wagon-http - 2.12 - - - - - - - maven-assembly-plugin - 3.2.0 - - - maven-compiler-plugin - 3.8.1 - - - maven-install-plugin - 3.0.0-M1 - - - maven-deploy-plugin - 3.0.0-M1 - - - maven-jar-plugin - 3.2.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - - - - - - - - - - - maven-dependency-plugin - 3.3.0 - - - maven-plugin-plugin - 3.7.0 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - maven-javadoc-plugin - 3.0.1 - - - org.codehaus.mojo - exec-maven-plugin - 1.6.0 - - - org.codehaus.mojo - build-helper-maven-plugin - 1.12 - - - - - - maven-compiler-plugin - - 1.8 - 1.8 - UTF-8 - - - org.projectlombok - lombok - ${version.lombok} - - - - - - maven-resources-plugin - 2.7 - - UTF-8 - - nofilter - - - - - maven-source-plugin - 3.0.1 - - - attach-sources - verify - - jar - - - - - - org.codehaus.mojo - versions-maven-plugin - 2.7 - - false - - - - com.mycila - license-maven-plugin - 3.0 - false - -
    ${basedir}/LICENSE.txt
    - true - true - UTF-8 - - LICENSE - **/build/** - **/src/test/** - .idea/** - **/*.sh - **/*.txt - **/*.cnf - **/*.conf - **/*.releaseBackup - **/*.nofilter - **/*.ini - **/*.md - **/*.ids - **/*.ipr - **/*.iws - **/*.bin - **/*.lock - **/*.gradle - **/*.sbt - **/gradlew - .gitignore - .gitattributes - .travis.yml - **/flyway - **/*_BOM.sql - - true - - SLASHSTAR_STYLE - -
    - - - package - - format - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - maven-deploy-plugin - - true - 3 - - - - maven-javadoc-plugin - - false - UTF-8 - none - - - - org.projectlombok - lombok-maven-plugin - ${version.lombok-maven-plugin} - - UTF-8 - ${project.basedir}/src/main/java - ${project.basedir}/target/generated-sources/delombok - false - - -
    -
    - - - - - maven-javadoc-plugin - 3.0.1 - - false - UTF-8 - false - - - - - - - - - - - - - - - - - - - - - - - - - jdk17 - - 17 - - - - - maven-compiler-plugin - - - compile-java-17 - compile - - compile - - - 17 - - ${project.basedir}/src/main/java17 - - true - - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.projectlombok - lombok-maven-plugin - - - generate-sources - - delombok - - - - - - maven-javadoc-plugin - - ${project.basedir}/target/generated-sources/delombok - - - - attach-sources - verify - - jar - - - - - - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - - sign - - - - --pinentry-mode=loopback - - flyway-gpg - - - - - - - - -
    \ No newline at end of file diff --git a/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom.sha1 b/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom.sha1 deleted file mode 100644 index 262a51313..000000000 --- a/code/arachne/org/flywaydb/flyway-parent/9.22.3/flyway-parent-9.22.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -92b75cbe686f5222757f9f34c80aa963c05a0e12 \ No newline at end of file diff --git a/code/arachne/org/freemarker/freemarker/2.3.32/_remote.repositories b/code/arachne/org/freemarker/freemarker/2.3.32/_remote.repositories deleted file mode 100644 index aa1c1f6ee..000000000 --- a/code/arachne/org/freemarker/freemarker/2.3.32/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:56 EDT 2024 -freemarker-2.3.32.pom>central= diff --git a/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom b/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom deleted file mode 100644 index f31b391d0..000000000 --- a/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom +++ /dev/null @@ -1,92 +0,0 @@ - - - - - 4.0.0 - - - org.apache - apache - 17 - - - org.freemarker - freemarker - 2.3.32 - - jar - - Apache FreeMarker - - FreeMarker is a "template engine"; a generic tool to generate text output based on templates. - - https://freemarker.apache.org/ - - Apache Software Foundation - http://apache.org - - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git - scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git - https://git-wip-us.apache.org/repos/asf?p=freemarker.git - v2.3.32 - - - - jira - https://issues.apache.org/jira/browse/FREEMARKER/ - - - - - FreeMarker developer list - dev@freemarker.apache.org - dev-subscribe@freemarker.apache.org - dev-unsubscribe@freemarker.apache.org - http://mail-archives.apache.org/mod_mbox/freemarker-dev/ - - - FreeMarker commit and Jira notifications list - notifications@freemarker.apache.org - notifications-subscribe@freemarker.apache.org - notifications-unsubscribe@freemarker.apache.org - http://mail-archives.apache.org/mod_mbox/freemarker-notifications/ - - - FreeMarker management private - private@freemarker.apache.org - - - - - - - diff --git a/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom.sha1 b/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom.sha1 deleted file mode 100644 index f0c4ca6af..000000000 --- a/code/arachne/org/freemarker/freemarker/2.3.32/freemarker-2.3.32.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e4ec1645ca8294f12c0de9f07f9683ebc0d9a36d \ No newline at end of file diff --git a/code/arachne/org/glassfish/expressly/expressly/5.0.0/_remote.repositories b/code/arachne/org/glassfish/expressly/expressly/5.0.0/_remote.repositories deleted file mode 100644 index f95d03edf..000000000 --- a/code/arachne/org/glassfish/expressly/expressly/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:58 EDT 2024 -expressly-5.0.0.pom>central= diff --git a/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom b/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom deleted file mode 100644 index d2a356521..000000000 --- a/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom +++ /dev/null @@ -1,244 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.6 - - - - org.glassfish.expressly - expressly - 5.0.0 - - Eclipse Expressly - Jakarta Expression Language Implementation - https://projects.eclipse.org/projects/ee4j.expressly - - - - jakarta-ee4j-expressly - Eclipse Expressly Developers - Eclipse Foundation - expressly-dev@eclipse.org - - - - - Jakarta Expression Language Contributors - el-dev@eclipse.org - https://github.com/eclipse-ee4j/el-ri/graphs/contributors - - - - - - Expressly dev mailing list - expressly-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/expressly-dev - https://dev.eclipse.org/mailman/listinfo/expressly-dev - https://dev.eclipse.org/mhonarc/lists/expressly-dev - - - - - scm:git:https://github.com/eclipse-ee4j/expressly-ri.git - scm:git:ssh://git@github.com/eclipse-ee4j/expressly-ri.git - https://github.com/eclipse-ee4j/expressly-ri - HEAD - - - github - https://github.com/eclipse-ee4j/expressly-ri/issues - - - - - jakarta.el - jakarta.el-api - 5.0.0 - - - junit - junit - 4.13.2 - test - - - - - - - src/main/java - - **/*.properties - **/*.xml - - - - ${project.basedir}/.. - - LICENSE.md - NOTICE.md - - META-INF - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - enforce-maven - - enforce - - - - - 3.6.0 - - - - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.4 - - true - - org.glassfish.expressly - <_include>-osgi.bundle - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - org.glassfish.expressly - 5.0 - Eclipse Foundation - ${project.version} - ${vendorName} - org.glassfish.expressly - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - 11 - -Xlint:unchecked - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - - attach-javadocs - - jar - - - 11 - -Xdoclint:none - true - - - Eclipse Expressly ${project.version}, a Jakarta Expression Language Implementation - org.glassfish.expressly - - - el-dev@eclipse.org.
    -Copyright © 2018, 2022 Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    -
    -
    -
    -
    - - - - - org.apache.maven.plugins - maven-release-plugin - - forked-path - false - ${release.arguments} - - - - - maven-surefire-plugin - 3.0.0-M5 - - never - - -
    -
    -
    diff --git a/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom.sha1 b/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom.sha1 deleted file mode 100644 index 24524d1d2..000000000 --- a/code/arachne/org/glassfish/expressly/expressly/5.0.0/expressly-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -59c76f82801d823de5e4fade24089d359c152510 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/class-model/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/class-model/3.0.6/_remote.repositories deleted file mode 100644 index 5747e3eaf..000000000 --- a/code/arachne/org/glassfish/hk2/class-model/3.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -class-model-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom b/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom deleted file mode 100644 index de463657a..000000000 --- a/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom +++ /dev/null @@ -1,116 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.hk2 - hk2-parent - 3.0.6 - - - org.glassfish.hk2 - class-model - - Class Model for Hk2 - - - - org.ow2.asm - asm - ${asm.version} - - - org.ow2.asm - asm-analysis - ${asm.version} - - - org.ow2.asm - asm-commons - ${asm.version} - - - org.ow2.asm - asm-tree - ${asm.version} - - - org.ow2.asm - asm-util - ${asm.version} - - - jakarta.inject - jakarta.inject-api - test - - - jakarta.enterprise - jakarta.enterprise.cdi-api - test - - - org.osgi - osgi.core - provided - - - org.osgi - org.osgi.enterprise - provided - - - - - - - org.glassfish.hk2 - osgiversion-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${manifest.location} - - org.glassfish.hk2.classmodel - - - - - - - diff --git a/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom.sha1 deleted file mode 100644 index fff433130..000000000 --- a/code/arachne/org/glassfish/hk2/class-model/3.0.6/class-model-3.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4548b26dcf13d416d377e14f5ba1f530a48331dd \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/external/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/external/3.0.6/_remote.repositories deleted file mode 100644 index d9d910fa8..000000000 --- a/code/arachne/org/glassfish/hk2/external/3.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:59 EDT 2024 -external-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom b/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom deleted file mode 100644 index 687a87c06..000000000 --- a/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.hk2 - hk2-parent - 3.0.6 - - - external - pom - - OSGi repackaging of HK2 dependencies - - - aopalliance - - - - true - - diff --git a/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom.sha1 deleted file mode 100644 index ab9bbc7b8..000000000 --- a/code/arachne/org/glassfish/hk2/external/3.0.6/external-3.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b26d9ae83037d1256069acef9c9cd3e641ef314c \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/_remote.repositories deleted file mode 100644 index 725023866..000000000 --- a/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:59 EDT 2024 -aopalliance-repackaged-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom b/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom deleted file mode 100644 index e574d8d18..000000000 --- a/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom +++ /dev/null @@ -1,136 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.hk2 - external - 3.0.6 - - - org.glassfish.hk2.external - aopalliance-repackaged - - aopalliance version ${aopalliance.version} repackaged as a module - - - - aopalliance - aopalliance - ${aopalliance.version} - true - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - step1-unpack-sources - process-sources - - unpack - - - - - aopalliance - aopalliance - ${aopalliance.version} - sources - false - ${project.build.directory}/alternateLocation - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - step2-add-sources - process-sources - - add-source - - - - ${project.build.directory}/alternateLocation - - - - - - - org.apache.felix - maven-bundle-plugin - - - - *;scope=compile;inline=true - - - org.aopalliance.*;version=${aopalliance.version} - !* - - - - - osgi-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${manifest.location} - - org.aopalliance - - - - - - - diff --git a/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom.sha1 deleted file mode 100644 index 02efbf22c..000000000 --- a/code/arachne/org/glassfish/hk2/external/aopalliance-repackaged/3.0.6/aopalliance-repackaged-3.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -03f4046dc09a2d98abc817f6c6c153daa31e653f \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/_remote.repositories deleted file mode 100644 index b40ccf077..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:59 EDT 2024 -hk2-api-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom deleted file mode 100644 index a191fb123..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom +++ /dev/null @@ -1,99 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.hk2 - hk2-parent - 3.0.6 - - - org.glassfish.hk2 - hk2-api - - HK2 API module - ${project.name} - - - - org.glassfish.hk2 - osgi-resource-locator - true - - - jakarta.inject - jakarta.inject-api - - - org.glassfish.hk2 - hk2-utils - ${project.version} - - - org.glassfish.hk2.external - aopalliance-repackaged - ${project.version} - - - - - - - org.glassfish.hk2 - osgiversion-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - -Dlocal.repo=${settings.localRepository} -Dbuild.dir=${project.build.directory} -Djava.security.manager -Djava.security.policy=${project.build.directory}/test-classes/policy.txt @{surefireArgLineExtra} - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${manifest.location} - - org.glassfish.hk2.api - - - - - - - diff --git a/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom.sha1 deleted file mode 100644 index 015a2cd66..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-api/3.0.6/hk2-api-3.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -62a25ccb588777d97f0e3f898e417d3f1e6bf8a7 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/_remote.repositories deleted file mode 100644 index 93f67046d..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:59 EDT 2024 -hk2-core-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom deleted file mode 100644 index 69dc4c6db..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom +++ /dev/null @@ -1,108 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.hk2 - hk2-parent - 3.0.6 - - - hk2-core - - HK2 core module - - - ${project.basedir}/exclude.xml - - - - - org.glassfish.hk2 - hk2-locator - ${project.version} - - - org.glassfish.hk2 - hk2-utils - ${project.version} - - - - - - - org.glassfish.hk2 - osgiversion-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${manifest.location} - - org.glassfish.hk2.core - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - -XX:+IgnoreUnrecognizedVMOptions -enableassertions --add-exports="java.base/jdk.internal.loader=ALL-UNNAMED" - - - - - - - - jdk5 - - false - 1.5 - - - - jakarta.xml.stream - stax-api - provided - - - - - diff --git a/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom.sha1 deleted file mode 100644 index 7e9f07a7e..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-core/3.0.6/hk2-core-3.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5a707e66eeb8526761fa4af30339117c28300414 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/_remote.repositories deleted file mode 100644 index f306aaf41..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:59 EDT 2024 -hk2-locator-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom deleted file mode 100644 index 1bfd5eba4..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom +++ /dev/null @@ -1,110 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.hk2 - hk2-parent - 3.0.6 - - - hk2-locator - - ServiceLocator Default Implementation - ${project.name} - - - - jakarta.inject - jakarta.inject-api - - - org.glassfish.hk2.external - aopalliance-repackaged - ${project.version} - - - org.glassfish.hk2 - hk2-api - ${project.version} - - - org.glassfish.hk2 - hk2-utils - ${project.version} - - - jakarta.annotation - jakarta.annotation-api - - - org.javassist - javassist - - - - - - - org.glassfish.hk2 - osgiversion-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - -Dlocal.repo=${settings.localRepository} -Dbuild.dir=${project.build.directory} -Djava.security.manager -Djava.security.policy=${project.build.directory}/test-classes/policy.txt -Dorg.jvnet.hk2.properties.useSoftReference=false @{surefireArgLineExtra} - false - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${manifest.location} - - org.glassfish.hk2.locator - - - - - - - diff --git a/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom.sha1 deleted file mode 100644 index 5063b821d..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-locator/3.0.6/hk2-locator-3.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d8027db5654fada702a0a723688e4fa3f69b4fb2 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/_remote.repositories deleted file mode 100644 index 44d6fc3b2..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:59 EDT 2024 -hk2-parent-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom deleted file mode 100644 index 59a74df34..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom +++ /dev/null @@ -1,951 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.9 - - - - org.glassfish.hk2 - hk2-parent - 3.0.6 - pom - - GlassFish HK2 - Dependency Injection Kernel - https://github.com/eclipse-ee4j/glassfish-hk2 - 2009 - - Oracle Corporation - http://www.oracle.com - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - - - jwells - John Wells - Oracle, Inc - - developer - - - - mtaube - Mason Taube - Oracle, Inc - - developer - - - - - - Jerome Dochez - http://blogs.sun.com/dochez - - - Kohsuke Kawaguchi - http://weblogs.java.net/blog/kohsuke - - - Sanjeeb Sahoo - http://weblogs.java.net/ss141213 - - - Andriy Zhdanov - http://avalez.blogspot.com - - - Jeff Trent - - - - - - GlassFish HK2 mailing list - glassfish-hk2-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/glassfish-hk2-dev - https://dev.eclipse.org/mailman/listinfo/glassfish-hk2-dev - https://dev.eclipse.org/mhonarc/lists/glassfish-hk2-dev/ - - - - - maven-plugins - hk2-metadata-generator - hk2-runlevel - hk2-locator - class-model - hk2-core - osgi - examples - hk2-testing - guice-bridge - spring-bridge - hk2-jmx - hk2 - bom - external - hk2-utils - hk2-api - hk2-configuration - hk2-extras - - - - - scm:git:https://github.com/eclipse-ee4j/glassfish-hk2.git - scm:git:git@github.com:eclipse-ee4j/glassfish-hk2.git - https://github.com/eclipse-ee4j/glassfish-hk2 - HEAD - - - Github - https://github.com/eclipse-ee4j/glassfish-hk2/issues - - - - 17 - 3.2.5 - 2023-10-04T08:38:05Z - - 2.1.1 - 2.1.3 - 1.1.5 - 4.0.1 - 4.0.4 - ${user.name} - 4.0.1 - 8.0.1.Final - 3.0.2 - 4.0.2 - 5.0.1 - 0.1.3 - 3.30.2-GA - 4.13.2 - 9.6 - 4.1.2 - 1.0-2 - 1.0 - 7.9.0 - 3.25.2 - 4.13.5 - 2.0.1 - 3.5.3.Final - 3.1.5 - 4.0.2 - 1.3 - 6.0.0 - 3.1.0 - 1.7.0 - 6.0.13 - 7.0.0 - 3.25.2 - - ${maven.multiModuleProjectDirectory}/ - - - High - - - - target/classes/META-INF/MANIFEST.MF - - - - - - jakarta.annotation - jakarta.annotation-api - ${jakarta.annotation.version} - - - jakarta.json - jakarta.json-api - ${jakarta.json.version} - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jaxb-api.version} - - - org.glassfish.jaxb - jaxb-runtime - ${jaxb-runtime.version} - - - org.eclipse.parsson - parsson - ${parsson.version} - - - woodstox - wstx-asl - ${woodstox.version} - - - jakarta.xml.stream - stax-api - ${stax-api.version} - - - org.apache.maven - maven-plugin-api - 3.9.6 - provided - - - org.apache.maven - maven-core - 3.9.6 - provided - - - com.sun.codemodel - codemodel - 2.6 - - - - org.apache.maven.shared - maven-osgi - 0.2.0 - - - * - * - - - - - args4j - args4j - 2.33 - - - jakarta.inject - jakarta.inject-api - ${jakarta-inject.version} - - - com.google.inject - guice - ${guice.version} - - - org.glassfish.hk2 - osgi-resource-locator - 2.4.0 - - - org.apache.ant - ant - 1.10.14 - - - org.apache.maven - maven-artifact - 3.9.6 - - - org.apache.maven - maven-archiver - 3.6.1 - - - org.testng - testng - ${testng.version} - test - - - org.assertj - assertj-core - ${assertj.version} - - - org.osgi - osgi.core - 8.0.0 - - - org.osgi - osgi.cmpn - 7.0.0 - - - org.osgi - osgi.annotation - 8.1.0 - provided - - - jakarta.enterprise - jakarta.enterprise.cdi-api - ${jakarta.enterprise.cdi-api.version} - - - org.osgi - org.osgi.enterprise - 5.0.0 - - - org.apache.felix - org.apache.felix.bundlerepository - 2.0.10 - - - org.ops4j.pax.exam - pax-exam-spi - ${pax-exam-version} - - - org.ops4j.pax.exam - pax-exam-junit4 - ${pax-exam-version} - - - org.ops4j.pax.exam - pax-exam-link-mvn - ${pax-exam-version} - - - org.ops4j.pax.exam - pax-exam-inject - ${pax-exam-version} - - - org.ops4j.pax.exam - pax-exam-invoker-junit - ${pax-exam-version} - - - org.ops4j.pax.exam - pax-exam-extender-service - ${pax-exam-version} - - - org.ops4j.pax.exam - pax-exam-container-native - ${pax-exam-version} - - - org.ops4j.pax.exam - pax-exam-link-assembly - ${pax-exam-version} - - - org.ops4j.pax.url - pax-url-aether - 2.6.14 - - - ch.qos.logback - logback-core - 1.4.14 - - - ch.qos.logback - logback-classic - 1.4.14 - - - org.apache.felix - org.apache.felix.framework - 7.0.5 - - - org.apache.felix - org.apache.felix.configadmin - 1.9.26 - - - org.ops4j.pax.logging - pax-logging-api - 1.11.2 - - - avalon-framework - avalon-framework-api - - - - - org.ops4j.pax.logging - pax-logging-service - 1.11.2 - - - org.springframework - spring-context - ${springcontext.version} - - - org.hibernate.validator - hibernate-validator-cdi - ${hibernate-validator.version} - - - com.googlecode.jtype - jtype - ${jtype.version} - - - org.jboss.logging - jboss-logging - ${org.jboss.logging.version} - - - com.fasterxml - classmate - ${classmate.version} - - - org.ow2.asm - asm - ${asm.version} - true - - - org.ow2.asm - asm-commons - ${asm.version} - true - - - org.ow2.asm - asm-tree - ${asm.version} - true - - - org.ow2.asm - asm-util - ${asm.version} - true - - - aopalliance - aopalliance - ${aopalliance.version} - - - junit - junit - ${junit.version} - - - org.easymock - easymock - 5.2.0 - - - jakarta.validation - jakarta.validation-api - ${jakarta.validation.version} - - - jakarta.el - jakarta.el-api - ${jakarta.el.version} - - - org.javassist - javassist - ${javassist.version} - - - org.hibernate.validator - hibernate-validator - ${hibernate-validator.version} - - - org.apache.commons - commons-lang3 - 3.14.0 - - - org.glassfish.jersey.containers - jersey-container-servlet - ${jersey.version} - - - org.glassfish.jersey.containers - jersey-container-grizzly2-http - ${jersey.version} - - - org.glassfish.jersey.inject - jersey-hk2 - ${jersey.version} - - - org.glassfish.jersey.media - jersey-media-json-jackson - ${jersey.version} - - - org.glassfish.grizzly - grizzly-http-servlet - ${grizzly.version} - - - org.hamcrest - hamcrest-all - ${hamcrest.version} - - - jakarta.servlet - jakarta.servlet-api - ${jakarta.servlet.version} - - - jakarta.ws.rs - jakarta.ws.rs-api - ${jakarta.ws.rs.version} - - - com.google.protobuf - protobuf-java - ${protobuf.version} - - - - - - junit - junit - test - - - org.easymock - easymock - test - - - - - - jvnet-nexus-snapshots - Java.net Nexus Snapshots Repository - https://maven.java.net/content/repositories/snapshots - - false - - - true - - - - - - install - ${project.artifactId} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - none - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - com.googlecode.maven-download-plugin - maven-download-plugin - 1.1.0 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.5 - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.10 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.10.2 - - - org.codehaus.mojo - build-helper-maven-plugin - 3.5.0 - - - org.glassfish.hk2 - hk2-inhabitant-generator - ${project.version} - - false - - - - org.apache.maven.plugins - maven-antrun-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.6.1 - - - org.glassfish.hk2 - osgiversion-maven-plugin - ${project.version} - - - compute-osgi-version - validate - - compute-osgi-version - - - qualifier - project.osgi.version - - - - - - org.apache.maven.plugins - maven-shade-plugin - 3.5.1 - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.1 - - 10 - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - true - - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - true - true - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - forked-path - false - @{project.version} - ${release.arguments} - install - deploy - - - - org.apache.maven.scm - maven-scm-provider-gitexe - 2.0.1 - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - git - true - - LICENSE.md - MANIFEST.MF - README - hk2-locator/ - META-INF/services/ - META-INF/inhabitants/ - resources/gendir - .png - .class - .json - .txt - .pbuf - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.2.1 - - - org.apache.servicemix.tooling - depends-maven-plugin - 1.5.0 - - - maven-install-plugin - 3.1.1 - - - - - - org.apache.maven.plugins - maven-eclipse-plugin - - true - true - - - - org.apache.maven.plugins - maven-compiler-plugin - - 11 - - - - org.apache.maven.plugins - maven-surefire-plugin - - - logging.properties - - - - - org.codehaus.mojo - findbugs-maven-plugin - - ${findbugs.skip} - ${findbugs.threshold} - true - - exclude-common.xml,${findbugs.exclude} - - - - - org.glassfish.findbugs - findbugs - 1.7 - - - - - org.apache.felix - maven-bundle-plugin - - - - - - <_include>-${basedir}/osgi.bundle - <_noimportjava>true - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${manifest.location} - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - [${jdk.version},) - You need JDK ${jdk.version} and above! - - - [${mvn.version},) - You need Maven ${mvn.version} or above! - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - - - - - - - jacoco - - - - org.apache.maven.plugins - maven-surefire-plugin - - - @{surefireArgLineExtra} - - - java.util.logging.config.file - logging.properties - - - - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - - agent-jacoco-property - - prepare-agent - - - - ${project.build.directory}/jacoco.exec - - surefireArgLineExtra - - - - - post-unit-test - - report - - - - ${project.build.directory}/jacoco.exec - - ${project.reporting.outputDirectory}/jacoco - - - - - - - - - diff --git a/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom.sha1 deleted file mode 100644 index 728bcf49d..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-parent/3.0.6/hk2-parent-3.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c6fd2867a23f4ef1bd1ad23e87b3dc6f3c6c7425 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/_remote.repositories deleted file mode 100644 index 4f7f3e9b3..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -hk2-runlevel-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom deleted file mode 100644 index e6eac990d..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom +++ /dev/null @@ -1,110 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.hk2 - hk2-parent - 3.0.6 - - - hk2-runlevel - - Run Level Service - ${project.name} - - - - org.glassfish.hk2 - hk2-junitrunner - ${project.version} - test - - - org.glassfish.hk2 - hk2-api - ${project.version} - - - org.glassfish.hk2 - hk2-locator - ${project.version} - - - jakarta.annotation - jakarta.annotation-api - - - - - - - org.glassfish.hk2 - osgiversion-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - org.glassfish.hk2 - hk2-inhabitant-generator - - - - generate-inhabitants - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - -Dorg.jvnet.hk2.logger.debugToStdout=false -Dorg.jvnet.hk2.properties.debug.runlevel.context=false @{surefireArgLineExtra} - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${manifest.location} - - org.glassfish.hk2.runlevel - - - - - - - diff --git a/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom.sha1 deleted file mode 100644 index ae1a433fa..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-runlevel/3.0.6/hk2-runlevel-3.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d6df7c94634bccdb3e32604b7176f3e7e2ab372d \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/_remote.repositories deleted file mode 100644 index 0c72a960a..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:59 EDT 2024 -hk2-utils-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom deleted file mode 100644 index f02587edf..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom +++ /dev/null @@ -1,127 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.hk2 - hk2-parent - 3.0.6 - - - org.glassfish.hk2 - hk2-utils - - HK2 Implementation Utilities - ${project.name} - - - - jakarta.annotation - jakarta.annotation-api - - - jakarta.inject - jakarta.inject-api - - - jakarta.validation - jakarta.validation-api - true - - - org.hibernate.validator - hibernate-validator - true - - - org.jboss.logging - jboss-logging - true - - - com.fasterxml - classmate - true - - - - - jakarta.el - jakarta.el-api - test - - - org.apache.commons - commons-lang3 - test - - - org.glassfish - jakarta.el - ${glassfish.jakarta.el.version} - test - - - - - - - org.glassfish.hk2 - osgiversion-maven-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - target/classes/META-INF/MANIFEST.MF - - org.glassfish.hk2.utilities - foo - - - - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - - jakarta.validation.*;resolution:=optional,org.hibernate.validator.*;resolution:=optional,* - - - true - - - - - diff --git a/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom.sha1 deleted file mode 100644 index 08e893660..000000000 --- a/code/arachne/org/glassfish/hk2/hk2-utils/3.0.6/hk2-utils-3.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bed48f27c58063ada94bcf3c38c7c402a192f28f \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/hk2/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/hk2/3.0.6/_remote.repositories deleted file mode 100644 index df043d6fb..000000000 --- a/code/arachne/org/glassfish/hk2/hk2/3.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:59 EDT 2024 -hk2-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom b/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom deleted file mode 100644 index 6d91b57d2..000000000 --- a/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom +++ /dev/null @@ -1,120 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.hk2 - hk2-parent - 3.0.6 - - - hk2 - - HK2 module of HK2 itself - This is so that other modules can depend on HK2 as an HK2 module. - - - - org.glassfish.hk2 - hk2-utils - ${project.version} - - - org.glassfish.hk2 - hk2-api - ${project.version} - - - org.glassfish.hk2 - hk2-core - ${project.version} - - - org.glassfish.hk2 - hk2-locator - ${project.version} - - - org.glassfish.hk2 - hk2-runlevel - ${project.version} - - - org.glassfish.hk2 - class-model - ${project.version} - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - create-empty-javadoc-jar - - jar - - - - ${project.build.directory}/javadoc - - javadoc - - - - - - - true - custom - ${artifact.artifactId}.${artifact.extension} - - - - - - org.glassfish.hk2 - osgiversion-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - org.glassfish.hk2.hk2 - - - - - bundle-manifest - process-classes - - manifest - - - - - - - diff --git a/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom.sha1 deleted file mode 100644 index 9fcd141f0..000000000 --- a/code/arachne/org/glassfish/hk2/hk2/3.0.6/hk2-3.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9a781f9f7d2b84086214cc5b5f9818bfceb32792 \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/_remote.repositories b/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/_remote.repositories deleted file mode 100644 index e27e3b918..000000000 --- a/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:58 EDT 2024 -osgi-resource-locator-1.0.3.pom>central= diff --git a/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom b/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom deleted file mode 100644 index f20d256a3..000000000 --- a/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom +++ /dev/null @@ -1,193 +0,0 @@ - - - - - 4.0.0 - - org.eclipse.ee4j - project - 1.0.5 - - - org.glassfish.hk2 - osgi-resource-locator - 1.0.3 - OSGi resource locator - Used by various API providers that rely on META-INF/services mechanism to locate providers. - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - - https://github.com/eclipse-ee4j/glassfish-hk2-extra - scm:git:https://github.com/eclipse-ee4j/glassfish-hk2-extra.git - scm:git:git@github.com:eclipse-ee4j/glassfish-hk2-extra.git - HEAD - - - - ss141213 - Sahoo - Oracle Corporation - - developer - - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - validate - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8 - - -Xdoclint:none - - - - attach-javadocs - - jar - - - - javadoc - - javadoc - - - - - - maven-compiler-plugin - - 1.6 - 1.6 - - - - org.apache.maven.plugins - maven-jar-plugin - - true - - - - org.glassfish.hk2 - osgiversion-maven-plugin - - - compute-osgi-version - validate - - compute-osgi-version - - - qualifier - project.osgi.version - - - - - - org.apache.felix - maven-bundle-plugin - - - <_include>osgi.bundle - - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - - - - - - org.osgi - osgi.core - 6.0.0 - provided - - - org.osgi - osgi.cmpn - 6.0.0 - provided - - - - diff --git a/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom.sha1 b/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom.sha1 deleted file mode 100644 index d5dabef84..000000000 --- a/code/arachne/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fcc86dd16c8415af038a41f234ed83164cfe2a7d \ No newline at end of file diff --git a/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/_remote.repositories b/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/_remote.repositories deleted file mode 100644 index 9f4252522..000000000 --- a/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -spring-bridge-3.0.6.pom>central= diff --git a/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom b/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom deleted file mode 100644 index e91f8dbcf..000000000 --- a/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom +++ /dev/null @@ -1,97 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.hk2 - hk2-parent - 3.0.6 - - - org.glassfish.hk2 - spring-bridge - - HK2 Spring Bridge - ${project.name} - - - - jakarta.inject - jakarta.inject-api - - - org.glassfish.hk2 - hk2-api - ${project.version} - - - * - * - - - - - org.springframework - spring-context - - - org.glassfish.hk2 - hk2-junitrunner - ${project.version} - test - - - - - - - org.glassfish.hk2 - osgiversion-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${manifest.location} - - org.glassfish.hk2.spring.bridge - - - - - - - diff --git a/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom.sha1 b/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom.sha1 deleted file mode 100644 index 13c9711d0..000000000 --- a/code/arachne/org/glassfish/hk2/spring-bridge/3.0.6/spring-bridge-3.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f1e0e9f8de1dc8f593c37791261585180b50d564 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jakarta.el/3.0.3/_remote.repositories b/code/arachne/org/glassfish/jakarta.el/3.0.3/_remote.repositories deleted file mode 100644 index fd5356571..000000000 --- a/code/arachne/org/glassfish/jakarta.el/3.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:01 EDT 2024 -jakarta.el-3.0.3.pom>central= diff --git a/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom b/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom deleted file mode 100644 index ba86b492c..000000000 --- a/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom +++ /dev/null @@ -1,328 +0,0 @@ - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.5 - - - org.glassfish - jakarta.el - 3.0.3 - - Jakarta Expression Language 3.0 - - Jakarta Expression Language provides a specification document, API, reference implementation and TCK - that describes an expression language for Java applications. - - https://projects.eclipse.org/projects/ee4j.el - - - - 3.0.3 - - 3.0 - javax.el - com.sun.el.javax.el - Oracle Corporation - 2.5.2 - ${project.basedir}/exclude.xml - High - - - - - yaminikb - Yamini K B - Oracle Corporation - http://www.oracle.com/ - - - - - - Kin-man Chung - - - - - github - https://github.com/eclipse-ee4j/el-ri/issues - - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - - - - - - Jakarta Expression Language mailing list - el-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/el-dev - https://dev.eclipse.org/mailman/listinfo/el-dev - https://dev.eclipse.org/mhonarc/lists/el-dev - - - - - scm:git:https://github.com/eclipse-ee4j/el-ri.git - - scm:git:git@github.com:eclipse-ee4j/el-ri.git - - https://github.com/eclipse-ee4j/el-ri - HEAD - - - - - junit - junit - 4.12 - test - - - - - - - api/src/main/java - - **/*.properties - **/*.xml - - - - impl/src/main/java - - **/*.properties - **/*.xml - - - - ${project.basedir} - - LICENSE.md - NOTICE.md - - META-INF - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.1 - - - add-source - generate-sources - - add-source - - - - api/src/main/java - impl/src/main/java - - - - - - - - - org.apache.felix - maven-bundle-plugin - 1.4.3 - - - ${bundle.symbolicName} - - Expression Language ${spec.version} API and Implementation - - - ${bundle.version} - ${extensionName} - ${spec.version} - ${vendorName} - ${project.version} - ${vendorName} - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - maven-jar-plugin - 2.4 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.0 - - 1.7 - 1.7 - -Xlint:unchecked - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - true - - - - attach-sources - - jar-no-fork - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.0.1 - - - attach-javadocs - - jar - - - 1.7 - api/src;impl/src - -Xdoclint:none - - https://javaee.github.io/javaee-spec/javadocs/ - - - - Jakarta Expression Language 3.0 API and Implementation - com.sun.el - - - Copyright (c) 2013 Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms. - - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.version} - - ${findbugs.threshold} - ${findbugs.exclude} - true - true - - - - - maven-surefire-plugin - 2.7.1 - - - org.apache.maven.surefire - surefire-junit47 - 2.7.1 - - - - never - - - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.version} - - ${findbugs.threshold} - ${findbugs.exclude} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.0.1 - - com.sun.el.parser - - **/parser/*.java - - - - - - - diff --git a/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom.sha1 b/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom.sha1 deleted file mode 100644 index 475ecedcd..000000000 --- a/code/arachne/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a1c4761c322db3c4f99b0be4585f0ba18aa43320 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jakarta.json/2.0.1/_remote.repositories b/code/arachne/org/glassfish/jakarta.json/2.0.1/_remote.repositories deleted file mode 100644 index 1c8c9fb1a..000000000 --- a/code/arachne/org/glassfish/jakarta.json/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:43 EDT 2024 -jakarta.json-2.0.1.pom>central= diff --git a/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom b/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom deleted file mode 100644 index 3bfd5235b..000000000 --- a/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom +++ /dev/null @@ -1,248 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish - json - 2.0.1 - ../pom.xml - - - org.glassfish - jakarta.json - bundle - 2.0.1 - JSON-P Default Provider - Default provider for Jakarta JSON Processing - https://github.com/eclipse-ee4j/jsonp - - - org.glassfish.json - jakarta.json.*,org.glassfish.json.api - - - - - - org.glassfish.build - spec-version-maven-plugin - - - ${non.final} - impl - ${spec_version} - ${new_spec_version} - ${new_spec_impl_version} - ${impl_version} - ${new_impl_version} - ${api_package} - ${impl_namespace} - - - - - - set-spec-properties - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - true - - - - org.apache.maven.plugins - maven-resources-plugin - - - sources-as-resources - package - - copy-resources - - - - - src/main/java/org - - - ${project.build.directory}/sources/org - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - unpack-module-info - compile - - unpack-dependencies - - - jakarta.json-api - ${project.build.directory}/binaries - module-info.class - - - - unpack-client-sources - prepare-package - - unpack - - - - - jakarta.json - jakarta.json-api - ${jakarta.json-api.version} - sources - false - ${project.build.directory}/sources - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - attach-source-jar - - jar - - - sources - ${project.build.directory}/sources - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - default-bundle - - bundle - - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - Eclipse Foundation - ${spec.specification.version} - ${packages.export} - ${packages.private} - <_donotcopy>.*services.* - - - {maven-resources},target/binaries/module-info.class - - - - - main-artifact-module - - bundle - - - module - - ${spec.bundle.version} - ${spec.bundle.symbolic-name}.module - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - org.glassfish.json.api - ${packages.private} - {maven-resources},target/classes/module-info.class - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - target/sources - - - false - - - 11 - true - true - JSON Processing API documentation - JSON Processing API documentation - JSON Processing API documentation -
    JSON Processing API v${project.version}]]>
    - jsonp-dev@eclipse.org.
    -Copyright © 2019, 2020 Eclipse Foundation. All rights reserved.
    -Use is subject to license terms.]]> -
    -
    -
    -
    -
    - - - jakarta.json - jakarta.json-api - provided - - - junit - junit - test - - - -
    diff --git a/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom.sha1 b/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom.sha1 deleted file mode 100644 index 1e65fa700..000000000 --- a/code/arachne/org/glassfish/jakarta.json/2.0.1/jakarta.json-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -043d1ab1a680dc9b3b640e518cb2b9fb876fffca \ No newline at end of file diff --git a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/_remote.repositories b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/_remote.repositories deleted file mode 100644 index 54be8bc0a..000000000 --- a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:24 EDT 2024 -jaxb-bom-4.0.5.pom>ohdsi= diff --git a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom deleted file mode 100644 index 69a00c603..000000000 --- a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom +++ /dev/null @@ -1,292 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.9 - - - - org.glassfish.jaxb - jaxb-bom - 4.0.5 - - pom - JAXB BOM - JAXB Bill of Materials (BOM) - https://eclipse-ee4j.github.io/jaxb-ri/ - - - 4.0.2 - - 4.1.2 - 2.1.1 - 2.1.0 - 2.1.3 - 2.0.2 - - - - - - - - org.glassfish.jaxb - jaxb-runtime - ${project.version} - sources - - - org.glassfish.jaxb - jaxb-core - ${project.version} - sources - - - org.glassfish.jaxb - jaxb-xjc - ${project.version} - sources - - - org.glassfish.jaxb - jaxb-jxc - ${project.version} - sources - - - org.glassfish.jaxb - codemodel - ${project.version} - sources - - - org.glassfish.jaxb - txw2 - ${project.version} - sources - - - org.glassfish.jaxb - xsom - ${project.version} - sources - - - - - com.sun.xml.bind - jaxb-impl - ${project.version} - sources - - - com.sun.xml.bind - jaxb-core - ${project.version} - sources - - - com.sun.xml.bind - jaxb-xjc - ${project.version} - sources - - - com.sun.xml.bind - jaxb-jxc - ${project.version} - sources - - - - jakarta.xml.bind - jakarta.xml.bind-api - ${xml.bind-api.version} - sources - - - org.jvnet.staxex - stax-ex - ${stax-ex.version} - sources - - - com.sun.xml.fastinfoset - FastInfoset - ${fastinfoset.version} - sources - - - - - - - org.glassfish.jaxb - jaxb-runtime - ${project.version} - - - org.glassfish.jaxb - jaxb-core - ${project.version} - - - org.glassfish.jaxb - jaxb-xjc - ${project.version} - - - org.glassfish.jaxb - jaxb-jxc - ${project.version} - - - org.glassfish.jaxb - codemodel - ${project.version} - - - org.glassfish.jaxb - txw2 - ${project.version} - - - org.glassfish.jaxb - xsom - ${project.version} - - - - - - com.sun.xml.bind - jaxb-impl - ${project.version} - - - com.sun.xml.bind - jaxb-core - ${project.version} - - - com.sun.xml.bind - jaxb-xjc - ${project.version} - - - com.sun.xml.bind - jaxb-jxc - ${project.version} - - - - - com.sun.xml.bind - jaxb-osgi - ${project.version} - - - - - - jakarta.xml.bind - jakarta.xml.bind-api - ${xml.bind-api.version} - - - com.sun.istack - istack-commons-runtime - ${istack.version} - - - com.sun.xml.fastinfoset - FastInfoset - ${fastinfoset.version} - - - org.jvnet.staxex - stax-ex - ${stax-ex.version} - - - jakarta.activation - jakarta.activation-api - ${activation-api.version} - - - org.eclipse.angus - angus-activation - ${angus-activation.version} - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - org.codehaus.mojo - versions-maven-plugin - 2.16.2 - - - - - - com.sun.istack - - - regex - 4.[2-9]+.* - - - - - - - - - - - diff --git a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.lastUpdated b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.lastUpdated deleted file mode 100644 index 9810a9f85..000000000 --- a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:24 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.glassfish.jaxb\:jaxb-bom\:pom\:4.0.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139804350 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139804437 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139804555 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139804695 diff --git a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 b/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 deleted file mode 100644 index b9e4471ce..000000000 --- a/code/arachne/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a86fce599edf93050d83862d319078bcc8298dc2 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/_remote.repositories b/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/_remote.repositories deleted file mode 100644 index d793cc6f5..000000000 --- a/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:02 EDT 2024 -jaxb-core-4.0.5.pom>central= diff --git a/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom b/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom deleted file mode 100644 index 354dbb071..000000000 --- a/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - - - 4.0.0 - - - com.sun.xml.bind.mvn - jaxb-parent - 4.0.5 - ../pom.xml - - - org.glassfish.jaxb - jaxb-core - - jar - JAXB Core - JAXB Core module. Contains sources required by XJC, JXC and Runtime modules. - https://eclipse-ee4j.github.io/jaxb-ri/ - - - ${project.basedir}/exclude-core.xml - - - - - jakarta.xml.bind - jakarta.xml.bind-api - - - jakarta.activation - jakarta.activation-api - - - org.eclipse.angus - angus-activation - runtime - - - ${project.groupId} - txw2 - - - com.sun.istack - istack-commons-runtime - - - - junit - junit - test - - - - - - - org.apache.felix - maven-bundle-plugin - - - ${vendor.name} - ${project.groupId} - ${project.version} - ${buildNumber} - - org.glassfish.jaxb.core.v2.model.impl, - * - - - - - - bundle-manifest - process-classes - - manifest - - - - - - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - diff --git a/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom.sha1 b/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom.sha1 deleted file mode 100644 index cafb4f742..000000000 --- a/code/arachne/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ad142d8f32e7e7cc200363ae469d6df5029ec286 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/_remote.repositories b/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/_remote.repositories deleted file mode 100644 index 9708d115f..000000000 --- a/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:02 EDT 2024 -jaxb-runtime-4.0.5.pom>central= diff --git a/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom b/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom deleted file mode 100644 index b6a5a590e..000000000 --- a/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom +++ /dev/null @@ -1,228 +0,0 @@ - - - - - 4.0.0 - - - com.sun.xml.bind.mvn - jaxb-runtime-parent - 4.0.5 - ../pom.xml - - - org.glassfish.jaxb - jaxb-runtime - - jar - JAXB Runtime - JAXB (JSR 222) Reference Implementation - https://eclipse-ee4j.github.io/jaxb-ri/ - - - ${project.basedir}/exclude-runtime.xml - - --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.unmarshaller=jakarta.xml.bind - --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2=jakarta.xml.bind - --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2.runtime=jakarta.xml.bind - --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2=org.glassfish.jaxb.core - --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2.schemagen=org.glassfish.jaxb.core - --add-opens java.base/java.lang=org.glassfish.jaxb.runtime - --add-opens java.base/java.lang.reflect=org.glassfish.jaxb.runtime - --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2.runtime.reflect.opt=org.glassfish.jaxb.core - - ${project.build.directory}/generated-sources/txwc2 - - - - - ${project.groupId} - jaxb-core - - - - org.jvnet.staxex - stax-ex - true - - - com.sun.xml.fastinfoset - FastInfoset - true - - - - junit - junit - test - - - - - - - com.sun.istack - istack-commons-maven-plugin - - - quick-gen - process-resources - - quick-gen - - - org.glassfish.jaxb.runtime.v2.model.annotation - - jakarta.xml.bind.annotation.* - jakarta.xml.bind.annotation.adapters.* - - - - - - - - - - - - - - ${copyright.template} - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - org.glassfish.jaxb - txwc2 - ${project.version} - - - com.github.relaxng - relaxngDatatype - 2011.1 - runtime - - - net.java.dev.msv - xsdlib - 2022.7 - runtime - - - - - process-resources - - run - - - - - - - - - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-sources - generate-sources - - add-source - - - - ${txwc2.sources} - - - - - - - org.apache.felix - maven-bundle-plugin - - - ${vendor.name} - ${project.groupId} - ${project.version} - ${buildNumber} - - sun.misc;resolution:=optional, - jdk.internal.misc;resolution:=optional, - * - - * - =1.0.0)(!(version>=2.0.0)))";resolution:=optional - ]]> - - - - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-surefire-plugin - - target/test-out - 1 - true - - - - - diff --git a/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom.sha1 b/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom.sha1 deleted file mode 100644 index 1697bd838..000000000 --- a/code/arachne/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -80394a0adfafdbde3a42d6486d7d2c95cff92fe0 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jaxb/txw2/4.0.5/_remote.repositories b/code/arachne/org/glassfish/jaxb/txw2/4.0.5/_remote.repositories deleted file mode 100644 index bc35f64b3..000000000 --- a/code/arachne/org/glassfish/jaxb/txw2/4.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:03 EDT 2024 -txw2-4.0.5.pom>central= diff --git a/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom b/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom deleted file mode 100644 index f8ddd06af..000000000 --- a/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom +++ /dev/null @@ -1,55 +0,0 @@ - - - - 4.0.0 - - - com.sun.xml.bind.mvn - jaxb-txw-parent - 4.0.5 - ../pom.xml - - - org.glassfish.jaxb - txw2 - jar - TXW2 Runtime - - - TXW is a library that allows you to write XML documents. - - https://eclipse-ee4j.github.io/jaxb-ri/ - - - ${project.basedir}/exclude-txw-runtime.xml - all - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - TXW Runtime - - - - - - - - diff --git a/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom.sha1 b/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom.sha1 deleted file mode 100644 index e600f5cff..000000000 --- a/code/arachne/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d5ec8832a8653dbf2c03ef6baca0337e6978d849 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/_remote.repositories deleted file mode 100644 index 977b1809c..000000000 --- a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:57 EDT 2024 -jersey-container-servlet-core-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom deleted file mode 100644 index e6766d178..000000000 --- a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom +++ /dev/null @@ -1,86 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey.containers - project - 3.1.6 - - - jersey-container-servlet-core - jar - jersey-container-servlet-core - - Jersey core Servlet 3.x implementation - - - - jakarta.servlet - jakarta.servlet-api - ${servlet6.version} - provided - - - jakarta.persistence - jakarta.persistence-api - - - jakarta.inject - jakarta.inject-api - - - - - - - com.sun.istack - istack-commons-maven-plugin - true - - - org.codehaus.mojo - build-helper-maven-plugin - true - - - org.apache.felix - maven-bundle-plugin - true - true - - - - - jakarta.persistence.*;resolution:=optional, - jakarta.servlet.*;version="[5.0,7.0)", - ${jakarta.annotation.osgi.version}, - * - - org.glassfish.jersey.servlet.* - - true - - - - - - diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom.sha1 deleted file mode 100644 index 3d9cd3e99..000000000 --- a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet-core/3.1.6/jersey-container-servlet-core-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -360244096d55cebf17dec26227207962412556c2 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/_remote.repositories deleted file mode 100644 index 4dbd5afbb..000000000 --- a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:58 EDT 2024 -jersey-container-servlet-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom deleted file mode 100644 index 83688e22e..000000000 --- a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom +++ /dev/null @@ -1,88 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey.containers - project - 3.1.6 - - - jersey-container-servlet - jar - jersey-container-servlet - - Jersey core Servlet 3.x implementation - - - - jakarta.servlet - jakarta.servlet-api - ${servlet6.version} - provided - - - - org.glassfish.jersey.containers - jersey-container-servlet-core - ${project.version} - - - jakarta.servlet - jakarta.servlet-api - - - - - - - - - com.sun.istack - istack-commons-maven-plugin - true - - - org.codehaus.mojo - build-helper-maven-plugin - true - - - org.apache.felix - maven-bundle-plugin - true - true - - - - - jakarta.servlet.*;version="[5.0,7.0)", - ${jakarta.annotation.osgi.version}, - * - - - true - - - - - - diff --git a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom.sha1 deleted file mode 100644 index abeaae0b4..000000000 --- a/code/arachne/org/glassfish/jersey/containers/jersey-container-servlet/3.1.6/jersey-container-servlet-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -beede1bfa3137bb113282f835af272041d693799 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/containers/project/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/containers/project/3.1.6/_remote.repositories deleted file mode 100644 index 0002d5a66..000000000 --- a/code/arachne/org/glassfish/jersey/containers/project/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:57 EDT 2024 -project-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom b/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom deleted file mode 100644 index 7f6fb2196..000000000 --- a/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom +++ /dev/null @@ -1,87 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey - project - 3.1.6 - - - org.glassfish.jersey.containers - project - pom - jersey-containers - - Jersey container providers umbrella project module - - - glassfish - grizzly2-http - grizzly2-servlet - jdk-http - jersey-servlet-core - jersey-servlet - jetty11-http - jetty-http - jetty-http2 - jetty-servlet - netty-http - simple-http - - - - - org.glassfish.jersey.core - jersey-common - ${project.version} - - - org.glassfish.jersey.core - jersey-server - ${project.version} - - - - jakarta.ws.rs - jakarta.ws.rs-api - - - jakarta.activation - jakarta.activation-api - - - - - - org.junit.jupiter - junit-jupiter - test - - - org.glassfish.jersey.inject - jersey-hk2 - ${project.version} - test - - - - diff --git a/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom.sha1 deleted file mode 100644 index 707c239d2..000000000 --- a/code/arachne/org/glassfish/jersey/containers/project/3.1.6/project-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -79c949899c9924c8d98a0e85a30138f57b5e9cf2 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/_remote.repositories deleted file mode 100644 index a1e6fcb1b..000000000 --- a/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:58 EDT 2024 -jersey-client-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom b/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom deleted file mode 100644 index 1ad3c457e..000000000 --- a/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom +++ /dev/null @@ -1,178 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey - project - 3.1.6 - - - org.glassfish.jersey.core - jersey-client - jar - jersey-core-client - - Jersey core client implementation - - - - - com.sun.istack - istack-commons-maven-plugin - true - - - org.codehaus.mojo - build-helper-maven-plugin - true - - - org.apache.maven.plugins - maven-compiler-plugin - false - - ${java.version} - ${java.version} - - - - - false - false - - - - org.apache.maven.plugins - maven-surefire-plugin - - - classesAndMethods - true - 1 - - - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - package - - jar - - - - - - org.apache.felix - maven-bundle-plugin - true - - - - ${jakarta.annotation.osgi.version}, - * - - true - - - - - - - - - jakarta.ws.rs - jakarta.ws.rs-api - - - - org.glassfish.jersey.core - jersey-common - ${project.version} - - - - jakarta.inject - jakarta.inject-api - - - - - org.eclipse.angus - angus-activation - test - - - - org.junit.jupiter - junit-jupiter - test - - - - org.hamcrest - hamcrest - test - - - - org.mockito - mockito-core - test - - - - org.glassfish.jersey.inject - jersey-hk2 - ${project.version} - test - - - - - - sonar - - - - org.apache.maven.plugins - maven-surefire-plugin - - - false - - - - - - - - - - - - - diff --git a/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom.sha1 deleted file mode 100644 index fe80701eb..000000000 --- a/code/arachne/org/glassfish/jersey/core/jersey-client/3.1.6/jersey-client-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -101bd5ce180515cecdb51f5242f10732b9fcdebb \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/_remote.repositories deleted file mode 100644 index 24df3c457..000000000 --- a/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:57 EDT 2024 -jersey-common-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom b/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom deleted file mode 100644 index 5977db6bb..000000000 --- a/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom +++ /dev/null @@ -1,298 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey - project - 3.1.6 - - - org.glassfish.jersey.core - jersey-common - jar - jersey-core-common - - Jersey core common packages - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - Except for Guava, JSR-166 files, Dropwizard Monitoring inspired classes, ASM and Jackson JAX-RS Providers. - See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md - - - The GNU General Public License (GPL), Version 2, With Classpath Exception - https://www.gnu.org/software/classpath/license.html - repo - Except for Guava, and JSR-166 files. - See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md - - - Apache License, 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html - repo - Google Guava @ org.glassfish.jersey.internal.guava - - - Public Domain - https://creativecommons.org/publicdomain/zero/1.0/ - repo - JSR-166 Extension to JEP 266 @ org.glassfish.jersey.internal.jsr166 - - - - - - - ${basedir}/src/main/resources - true - - - - - - ${basedir}/src/test/resources - true - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${compiler.common.mvn.plugin.version} - false - - ${java.version} - ${java.version} - - - - - false - false - - - - com.sun.istack - istack-commons-maven-plugin - true - - - org.codehaus.mojo - build-helper-maven-plugin - true - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - package - - jar - - - - - - org.apache.felix - maven-bundle-plugin - true - true - - - - - sun.misc.*;resolution:=optional, - jakarta.activation.*;version="!";resolution:=optional, - javax.imageio;resolution:=optional, - javax.imageio.spi;resolution:=optional, - javax.imageio.stream;resolution:=optional, - jakarta.xml.bind;version="!";resolution:=optional, - jakarta.xml.bind.annotation;version="!";resolution:=optional, - jakarta.xml.bind.annotation.adapters;version="!";resolution:=optional, - javax.xml.namespace;resolution:=optional, - javax.xml.parsers;resolution:=optional, - javax.xml.transform;resolution:=optional, - javax.xml.transform.dom;resolution:=optional, - javax.xml.transform.sax;resolution:=optional, - javax.xml.transform.stream;resolution:=optional, - org.w3c.dom;resolution:=optional, - org.xml.sax;resolution:=optional, - ${jakarta.annotation.osgi.version}, - * - - lazy - org.glassfish.jersey.*;version=${project.version} - osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))" - - true - - - - org.codehaus.mojo - buildnumber-maven-plugin - - {0,date,yyyy-MM-dd HH:mm:ss} - - timestamp - - - - - validate - - create - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - default-test - - - **/ByteBufferInputStreamTest.java - - - - - tests-with-additional-permissions - test - - test - - - -Djava.security.policy=${project.build.directory}/test-classes/surefire-jdk17.policy - - **/ByteBufferInputStreamTest.java - - - - - - - classesAndMethods - true - 1 - - - - - - - - jakarta.ws.rs - jakarta.ws.rs-api - - - jakarta.annotation - jakarta.annotation-api - - - org.eclipse.angus - angus-activation - provided - true - - - org.osgi - org.osgi.core - provided - - - jakarta.inject - jakarta.inject-api - - - org.glassfish.hk2 - osgi-resource-locator - - - - org.junit.jupiter - junit-jupiter - test - - - org.mockito - mockito-core - test - - - org.hamcrest - hamcrest - test - - - - - - securityOff - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/SecurityManagerConfiguredTest.java - **/ReflectionHelperTest.java - - - - - - - - sonar - - - - org.apache.maven.plugins - maven-surefire-plugin - - - none - false - - - - - - - - - -Djava.security.manager -Djava.security.policy=${project.build.directory}/test-classes/surefire.policy - - - diff --git a/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom.sha1 deleted file mode 100644 index 0eb8939de..000000000 --- a/code/arachne/org/glassfish/jersey/core/jersey-common/3.1.6/jersey-common-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ac78442ed2e1907967de44764ad4b329e4d895bd \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/_remote.repositories deleted file mode 100644 index 707e85d88..000000000 --- a/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:58 EDT 2024 -jersey-server-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom b/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom deleted file mode 100644 index 3216b0a7a..000000000 --- a/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom +++ /dev/null @@ -1,306 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey - project - 3.1.6 - - - org.glassfish.jersey.core - jersey-server - jar - jersey-core-server - - Jersey core server implementation - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - Except for Guava, JSR-166 files, Dropwizard Monitoring inspired classes, ASM and Jackson JAX-RS Providers. - See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md - - - The GNU General Public License (GPL), Version 2, With Classpath Exception - https://www.gnu.org/software/classpath/license.html - repo - Except for Dropwizard Monitoring inspired classes and ASM. - See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md - - - Apache License, 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html - repo - Dropwizard Monitoring inspired classes @ org.glassfish.jersey.server.internal.monitoring.core - - - Modified BSD - https://asm.ow2.io/license.html - repo - ASM @ jersey.repackaged.org.objectweb.asm - - - - - - - ${basedir}/src/test/resources - true - - - - - - com.sun.istack - istack-commons-maven-plugin - true - - - org.codehaus.mojo - build-helper-maven-plugin - true - - - org.apache.felix - maven-bundle-plugin - true - true - - - - - org.glassfish.jersey.server.*;version=${project.version}, - com.sun.research.ws.wadl.*;version=${project.version} - - - ${jakarta.annotation.osgi.version}, - jakarta.xml.bind;version="!";resolution:=optional, - jakarta.xml.bind.annotation;version="!";resolution:=optional, - jakarta.xml.bind.annotation.adapters;version="!";resolution:=optional, - javax.xml.namespace;resolution:=optional, - javax.xml.parsers;resolution:=optional, - javax.xml.transform;resolution:=optional, - javax.xml.transform.sax;resolution:=optional, - javax.xml.transform.stream;resolution:=optional, - jakarta.validation.*;resolution:=optional;version="[3,4)", - * - - - true - - - - - com.sun.tools.xjc.maven2 - maven-jaxb-plugin - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jakarta.jaxb.api.version} - - - com.sun.xml.bind - jaxb-impl - ${jaxb.ri.version} - - - com.sun.xml.bind - jaxb-xjc - ${jaxb.ri.version} - - - - ${basedir}/src/main/java - com.sun.research.ws.wadl - ${basedir}/etc/catalog.xml - ${basedir}/etc - - wadl.xsd - - true - - - - org.apache.maven.plugins - maven-surefire-plugin - - - classes - true - 1 - 1C - true - ${project.basedir}/etc/systemPropertiesFile - - - - - - - - - org.glassfish.jersey.core - jersey-common - ${project.version} - - - - org.glassfish.jersey.core - jersey-client - ${project.version} - - - - jakarta.ws.rs - jakarta.ws.rs-api - - - - jakarta.annotation - jakarta.annotation-api - - - - jakarta.inject - jakarta.inject-api - - - - jakarta.validation - jakarta.validation-api - - - - com.sun.xml.bind - jaxb-osgi - test - - - - org.osgi - org.osgi.core - provided - - - jakarta.xml.bind - jakarta.xml.bind-api - provided - true - - - org.glassfish.jersey.media - jersey-media-jaxb - ${project.version} - test - - - org.junit.jupiter - junit-jupiter - test - - - org.hamcrest - hamcrest - test - - - - org.jboss - jboss-vfs - 3.2.6.Final - test - - - - org.glassfish.jersey.inject - jersey-hk2 - ${project.version} - test - - - - org.assertj - assertj-core - test - - - - - - securityOff - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/SecurityManagerConfiguredTest.java - - - - - - - - sonar - - - - org.apache.maven.plugins - maven-surefire-plugin - - - none - false - 1 - - - - maven-shade-plugin - - - shade-archive - none - - - - - - - - - - -Djava.security.manager -Djava.security.policy=${project.build.directory}/test-classes/server.policy - - - diff --git a/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom.sha1 deleted file mode 100644 index 0bd01eddd..000000000 --- a/code/arachne/org/glassfish/jersey/core/jersey-server/3.1.6/jersey-server-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5db9ae7043bdc33c453cff2f79caecca47afde28 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/_remote.repositories deleted file mode 100644 index ea03a47e5..000000000 --- a/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:58 EDT 2024 -jersey-bean-validation-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom b/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom deleted file mode 100644 index 863e1e4b1..000000000 --- a/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom +++ /dev/null @@ -1,156 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey.ext - project - 3.1.6 - - - jersey-bean-validation - jersey-ext-bean-validation - - - Jersey extension module providing support for Bean Validation (JSR-349) API. - - - - - - com.sun.istack - istack-commons-maven-plugin - true - - - org.codehaus.mojo - build-helper-maven-plugin - true - - - org.apache.felix - maven-bundle-plugin - true - true - - - - org.glassfish.jersey.server.validation.*;version=${project.version} - - ${jakarta.annotation.osgi.version}, - ${cdi.osgi.version}, - jakarta.validation.*;resolution:=optional;version="${range;[==,4);${jakarta.validation.api.version}}", - jakarta.decorator.*;version="[3.0,5)", - * - - - true - - - - - - - - jakarta.inject - jakarta.inject-api - - - org.glassfish.jersey.core - jersey-common - ${project.version} - - - org.glassfish.jersey.core - jersey-server - ${project.version} - - - - jakarta.validation - jakarta.validation-api - - - org.hibernate.validator - hibernate-validator - - - jakarta.validation - jakarta.validation-api - - - jakarta.el - jakarta.el-api - - - org.jboss.logging - jboss-logging - - - - - org.jboss.logging - jboss-logging - ${jboss.logging.version} - - - jakarta.xml.bind - jakarta.xml.bind-api - true - - - jakarta.enterprise - jakarta.enterprise.cdi-api - true - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x - ${project.version} - true - - - - - - jakarta.el - jakarta.el-api - - - org.glassfish.expressly - expressly - - - jakarta.el - jakarta.el-api - - - - - - org.glassfish.jersey.test-framework - jersey-test-framework-core - ${project.version} - test - - - \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom.sha1 deleted file mode 100644 index d7881a617..000000000 --- a/code/arachne/org/glassfish/jersey/ext/jersey-bean-validation/3.1.6/jersey-bean-validation-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5cbd58608690386f0862b34e52f5fe224581899e \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/_remote.repositories deleted file mode 100644 index 6ed6104af..000000000 --- a/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -jersey-entity-filtering-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom b/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom deleted file mode 100644 index e3c9f0556..000000000 --- a/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom +++ /dev/null @@ -1,90 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey.ext - project - 3.1.6 - - - jersey-entity-filtering - jersey-ext-entity-filtering - - - Jersey extension module providing support for Entity Data Filtering. - - - - - jakarta.xml.bind - jakarta.xml.bind-api - provided - - - org.glassfish.jersey.core - jersey-client - ${project.version} - provided - - - org.glassfish.jersey.core - jersey-server - ${project.version} - provided - - - - org.glassfish.jersey.test-framework - jersey-test-framework-core - ${project.version} - test - - - - - - - com.sun.istack - istack-commons-maven-plugin - true - - - org.codehaus.mojo - build-helper-maven-plugin - true - - - org.apache.felix - maven-bundle-plugin - true - true - - - org.glassfish.jersey.message.filtering.*;version=${project.version} - ${jakarta.annotation.osgi.version},* - - true - - - - - diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom.sha1 deleted file mode 100644 index 76c5abcd4..000000000 --- a/code/arachne/org/glassfish/jersey/ext/jersey-entity-filtering/3.1.6/jersey-entity-filtering-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b69ed1030217fd4508d816322f7eb60d37c37be0 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/_remote.repositories deleted file mode 100644 index c951a1427..000000000 --- a/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:58 EDT 2024 -jersey-spring6-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom b/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom deleted file mode 100644 index 8e0583dd4..000000000 --- a/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom +++ /dev/null @@ -1,391 +0,0 @@ - - - - - - 4.0.0 - - - org.glassfish.jersey.ext - project - 3.1.6 - - - jersey-spring6 - jersey-spring6 - - jar - - - Jersey extension module providing support for Spring 6 integration. - - - - UTF-8 - ${project.basedir}/target - ${project.basedir}/src/main/javaPre17 - ${project.basedir}/target17 - ${project.basedir}/src/main/java17 - - - - - Spring Repository - spring-repository - https://repo.spring.io/milestone - - - - - - org.glassfish.jersey.core - jersey-server - ${project.version} - - - - org.glassfish.jersey.inject - jersey-hk2 - ${project.version} - - - - org.glassfish.jersey.containers - jersey-container-servlet-core - ${project.version} - - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-grizzly2 - ${project.version} - test - - - - commons-logging - commons-logging - test - - - - org.glassfish.hk2 - hk2 - ${hk2.version} - - - org.ow2.asm - asm - - - jakarta.annotation - jakarta.annotation-api - - - - - - org.glassfish.hk2 - spring-bridge - ${hk2.version} - - - jakarta.inject - jakarta.inject - - - org.glassfish.hk2 - hk2-api - - - org.springframework - spring-context - - - jakarta.inject - jakarta.inject-api - - - - - - org.springframework - spring-beans - ${spring6.version} - provided - - - - org.springframework - spring-core - ${spring6.version} - - - commons-logging - commons-logging - - - provided - - - - org.springframework - spring-context - ${spring6.version} - - - commons-logging - commons-logging - - - provided - - - - org.springframework - spring-web - ${spring6.version} - provided - - - - org.springframework - spring-aop - ${spring6.version} - provided - - - - jakarta.servlet - jakarta.servlet-api - ${servlet6.version} - provided - - - - org.glassfish.jersey.test-framework - jersey-test-framework-core - ${project.version} - test - - - - org.aspectj - aspectjrt - 1.6.11 - test - - - org.aspectj - aspectjweaver - 1.6.11 - test - - - - - - - - com.sun.istack - istack-commons-maven-plugin - true - - - org.codehaus.mojo - build-helper-maven-plugin - true - - - - - - - SpringExclude - - [1.8,17) - - - ${java.build.outputDirectory} - - - org.codehaus.mojo - build-helper-maven-plugin - - - generate-sources - - add-source - - - - ${javaPre17.sourceDirectory} - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org/glassfish/jersey/server/spring/**/*.java - - - - - - - - SpringInclude - - [17,) - - - ${java17.build.outputDirectory} - - - org.codehaus.mojo - build-helper-maven-plugin - - - generate-sources - - add-source - - - - ${java17.sourceDirectory} - - - - - - - - - - copyJDK17FilesToMultiReleaseJar - - - - target17/classes/org/glassfish/jersey/server/spring/SpringWebApplicationInitializer.class - - [1.8,17) - - - - - org.apache.felix - maven-bundle-plugin - true - true - - - true - - - - - org.apache.maven.plugins - maven-resources-plugin - true - - - copy-jdk17-classes - prepare-package - - copy-resources - - - ${java.build.outputDirectory}/classes/META-INF/versions/17 - - - ${java17.build.outputDirectory}/classes - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - copy-jdk17-sources - package - - - - sources-jar: ${sources-jar} - - - - - - - run - - - - - - - - - delayed-strategy-skip-test - - - org.glassfish.jersey.injection.manager.strategy - delayed - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - true - - - - - - - HK2_JDK8_dependencyConvergence_skip - - 1.8 - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - dependencyConvergence - - - - - - - diff --git a/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom.sha1 deleted file mode 100644 index fe45b9285..000000000 --- a/code/arachne/org/glassfish/jersey/ext/jersey-spring6/3.1.6/jersey-spring6-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e22ab45fdc363fcdeaf55dc69ba2a2562e5821e5 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/ext/project/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/ext/project/3.1.6/_remote.repositories deleted file mode 100644 index e41161d74..000000000 --- a/code/arachne/org/glassfish/jersey/ext/project/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:58 EDT 2024 -project-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom b/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom deleted file mode 100644 index 023185d2a..000000000 --- a/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - - - 4.0.0 - - org.glassfish.jersey - project - 3.1.6 - - - org.glassfish.jersey.ext - project - pom - jersey-extensions - - - Jersey extension modules providing utilities, filters as well as integrations - with external frameworks (Guice, Spring, Freemarker, etc.) and languages - (Scala, Groovy, etc.). - - NOTE: Jersey security extensions have their own dedicated security umbrella - project. - - - - bean-validation - cdi - entity-filtering - metainf-services - micrometer - mvc - mvc-bean-validation - mvc-freemarker - mvc-jsp - mvc-mustache - proxy-client - rx - spring6 - wadl-doclet - microprofile - - - - - jakarta.ws.rs - jakarta.ws.rs-api - - - - org.junit.jupiter - junit-jupiter - test - - - - org.glassfish.jersey.inject - jersey-hk2 - ${project.version} - test - - - diff --git a/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom.sha1 deleted file mode 100644 index 031beddd4..000000000 --- a/code/arachne/org/glassfish/jersey/ext/project/3.1.6/project-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -75698433a3c06a1a862a267746fd90d3376e543e \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/_remote.repositories deleted file mode 100644 index 7dae51e91..000000000 --- a/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:58 EDT 2024 -jersey-hk2-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom b/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom deleted file mode 100644 index d981a2da5..000000000 --- a/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom +++ /dev/null @@ -1,133 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey.inject - project - 3.1.6 - - - jersey-hk2 - jar - jersey-inject-hk2 - - HK2 InjectionManager implementation - - - - org.glassfish.jersey.core - jersey-common - ${project.version} - - - - org.glassfish.hk2 - hk2-locator - - - jakarta.annotation - jakarta.annotation-api - - - org.javassist - javassist - - - jakarta.inject - jakarta.inject-api - - - - - - org.javassist - javassist - - - - org.junit.jupiter - junit-jupiter - test - - - org.hamcrest - hamcrest - test - - - - - - - ${basedir}/src/main/resources - true - - - - - - com.sun.istack - istack-commons-maven-plugin - true - - - org.codehaus.mojo - build-helper-maven-plugin - true - - - org.apache.felix - maven-bundle-plugin - true - true - - - - org.glassfish.jersey.inject.hk2.*;version=${project.version} - - - sun.misc.*;resolution:=optional, - ${jakarta.annotation.osgi.version}, - ${hk2.jvnet.osgi.version}, - ${hk2.osgi.version}, - * - - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - package - - jar - - - - - - - diff --git a/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom.sha1 deleted file mode 100644 index 8316f2817..000000000 --- a/code/arachne/org/glassfish/jersey/inject/jersey-hk2/3.1.6/jersey-hk2-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4ccf2c98501f331785238091a7c9aa3dbc0cd497 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/inject/project/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/inject/project/3.1.6/_remote.repositories deleted file mode 100644 index 93031a85c..000000000 --- a/code/arachne/org/glassfish/jersey/inject/project/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:59 EDT 2024 -project-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom b/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom deleted file mode 100644 index 332ed0eea..000000000 --- a/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey - project - 3.1.6 - - - org.glassfish.jersey.inject - project - pom - jersey-inject - - Contains InjectionManager implementations - - - cdi2-se - hk2 - - diff --git a/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom.sha1 deleted file mode 100644 index 61db7d814..000000000 --- a/code/arachne/org/glassfish/jersey/inject/project/3.1.6/project-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b5dff8bc0c4f8e7489dd89e301e3f0bd335632d8 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/_remote.repositories b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/_remote.repositories deleted file mode 100644 index 0b8ace8a8..000000000 --- a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:48 EDT 2024 -jersey-bom-2.30.1.pom>local-repo= diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom deleted file mode 100644 index 84da67647..000000000 --- a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom +++ /dev/null @@ -1,425 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.5 - - - - org.glassfish.jersey - jersey-bom - 2.30.1 - pom - jersey-bom - - Jersey Bill of Materials (BOM) - - - - - org.glassfish.jersey.core - jersey-common - ${project.version} - - - org.glassfish.jersey.core - jersey-client - ${project.version} - - - org.glassfish.jersey.core - jersey-server - ${project.version} - - - org.glassfish.jersey.bundles - jaxrs-ri - ${project.version} - - - org.glassfish.jersey.connectors - jersey-apache-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-grizzly-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-jetty-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-jdk-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-netty-connector - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-jetty-http - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-grizzly2-http - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-grizzly2-servlet - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-jetty-servlet - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-jdk-http - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-netty-http - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-servlet - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-servlet-core - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-simple-http - ${project.version} - - - org.glassfish.jersey.containers.glassfish - jersey-gf-ejb - ${project.version} - - - org.glassfish.jersey.ext - jersey-bean-validation - ${project.version} - - - org.glassfish.jersey.ext - jersey-entity-filtering - ${project.version} - - - org.glassfish.jersey.ext - jersey-metainf-services - ${project.version} - - - org.glassfish.jersey.ext.microprofile - jersey-mp-config - ${project.version} - - - org.glassfish.jersey.ext - jersey-mvc - ${project.version} - - - org.glassfish.jersey.ext - jersey-mvc-bean-validation - ${project.version} - - - org.glassfish.jersey.ext - jersey-mvc-freemarker - ${project.version} - - - org.glassfish.jersey.ext - jersey-mvc-jsp - ${project.version} - - - org.glassfish.jersey.ext - jersey-mvc-mustache - ${project.version} - - - org.glassfish.jersey.ext - jersey-proxy-client - ${project.version} - - - org.glassfish.jersey.ext - jersey-servlet-portability - ${project.version} - - - org.glassfish.jersey.ext - jersey-spring4 - ${project.version} - - - org.glassfish.jersey.ext - jersey-spring5 - ${project.version} - - - org.glassfish.jersey.ext - jersey-declarative-linking - ${project.version} - - - org.glassfish.jersey.ext - jersey-wadl-doclet - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-weld2-se - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-transaction - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-validation - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-servlet - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-ban-custom-hk2-binding - ${project.version} - - - org.glassfish.jersey.ext.rx - jersey-rx-client-guava - ${project.version} - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava - ${project.version} - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava2 - ${project.version} - - - org.glassfish.jersey.ext.microprofile - jersey-mp-rest-client - ${project.version} - - - org.glassfish.jersey.media - jersey-media-jaxb - ${project.version} - - - org.glassfish.jersey.media - jersey-media-json-jackson - ${project.version} - - - org.glassfish.jersey.media - jersey-media-json-jackson1 - ${project.version} - - - org.glassfish.jersey.media - jersey-media-json-jettison - ${project.version} - - - org.glassfish.jersey.media - jersey-media-json-processing - ${project.version} - - - org.glassfish.jersey.media - jersey-media-json-binding - ${project.version} - - - org.glassfish.jersey.media - jersey-media-kryo - ${project.version} - - - org.glassfish.jersey.media - jersey-media-moxy - ${project.version} - - - org.glassfish.jersey.media - jersey-media-multipart - ${project.version} - - - org.glassfish.jersey.media - jersey-media-sse - ${project.version} - - - org.glassfish.jersey.security - oauth1-client - ${project.version} - - - org.glassfish.jersey.security - oauth1-server - ${project.version} - - - org.glassfish.jersey.security - oauth1-signature - ${project.version} - - - org.glassfish.jersey.security - oauth2-client - ${project.version} - - - org.glassfish.jersey.inject - jersey-hk2 - ${project.version} - - - org.glassfish.jersey.inject - jersey-cdi2-se - ${project.version} - - - org.glassfish.jersey.test-framework - jersey-test-framework-core - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-bundle - ${project.version} - pom - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-external - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-grizzly2 - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-inmemory - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jdk-http - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-simple - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jetty - ${project.version} - - - org.glassfish.jersey.test-framework - jersey-test-framework-util - ${project.version} - - - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - true - - - org.apache.maven.plugins - maven-site-plugin - 3.7.1 - - false - true - - - - - - - - project-info - - false - - - - - - localhost - http://localhost - - - - - diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.lastUpdated b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.lastUpdated deleted file mode 100644 index 198f410c8..000000000 --- a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:48 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139888472 -http\://0.0.0.0/.error=Could not transfer artifact org.glassfish.jersey\:jersey-bom\:pom\:2.30.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139888210 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139888216 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139888374 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139888424 diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.sha1 b/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.sha1 deleted file mode 100644 index 74ba1930f..000000000 --- a/code/arachne/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aa4f64d1de70641e2b0919ca115ee44b6259d645 \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/_remote.repositories deleted file mode 100644 index 3843731d7..000000000 --- a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:29 EDT 2024 -jersey-bom-3.1.6.pom>ohdsi= diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom deleted file mode 100644 index 9a6268bbe..000000000 --- a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom +++ /dev/null @@ -1,462 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.8 - - - - org.glassfish.jersey - jersey-bom - 3.1.6 - pom - jersey-bom - - Jersey Bill of Materials (BOM) - - - - - org.glassfish.jersey.core - jersey-common - ${project.version} - - - org.glassfish.jersey.core - jersey-client - ${project.version} - - - org.glassfish.jersey.core - jersey-server - ${project.version} - - - org.glassfish.jersey.bundles - jaxrs-ri - ${project.version} - - - org.glassfish.jersey.connectors - jersey-apache-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-apache5-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-helidon-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-grizzly-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-jnh-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-jetty-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-jetty11-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-jetty-http2-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-jdk-connector - ${project.version} - - - org.glassfish.jersey.connectors - jersey-netty-connector - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-jetty-http - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-jetty11-http - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-jetty-http2 - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-grizzly2-http - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-grizzly2-servlet - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-jetty-servlet - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-jdk-http - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-netty-http - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-servlet - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-servlet-core - ${project.version} - - - org.glassfish.jersey.containers - jersey-container-simple-http - ${project.version} - - - org.glassfish.jersey.containers.glassfish - jersey-gf-ejb - ${project.version} - - - org.glassfish.jersey.ext - jersey-bean-validation - ${project.version} - - - org.glassfish.jersey.ext - jersey-entity-filtering - ${project.version} - - - org.glassfish.jersey.ext - jersey-micrometer - ${project.version} - - - org.glassfish.jersey.ext - jersey-metainf-services - ${project.version} - - - org.glassfish.jersey.ext.microprofile - jersey-mp-config - ${project.version} - - - org.glassfish.jersey.ext - jersey-mvc - ${project.version} - - - org.glassfish.jersey.ext - jersey-mvc-bean-validation - ${project.version} - - - org.glassfish.jersey.ext - jersey-mvc-freemarker - ${project.version} - - - org.glassfish.jersey.ext - jersey-mvc-jsp - ${project.version} - - - org.glassfish.jersey.ext - jersey-mvc-mustache - ${project.version} - - - org.glassfish.jersey.ext - jersey-proxy-client - ${project.version} - - - org.glassfish.jersey.ext - jersey-spring6 - ${project.version} - - - org.glassfish.jersey.ext - jersey-declarative-linking - ${project.version} - - - org.glassfish.jersey.ext - jersey-wadl-doclet - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-weld2-se - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-transaction - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-validation - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-servlet - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-ban-custom-hk2-binding - ${project.version} - - - org.glassfish.jersey.ext.cdi - jersey-cdi-rs-inject - ${project.version} - - - org.glassfish.jersey.ext.rx - jersey-rx-client-guava - ${project.version} - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava - ${project.version} - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava2 - ${project.version} - - - org.glassfish.jersey.ext.microprofile - jersey-mp-rest-client - ${project.version} - - - org.glassfish.jersey.media - jersey-media-jaxb - ${project.version} - - - org.glassfish.jersey.media - jersey-media-json-jackson - ${project.version} - - - org.glassfish.jersey.media - jersey-media-json-jettison - ${project.version} - - - org.glassfish.jersey.media - jersey-media-json-processing - ${project.version} - - - org.glassfish.jersey.media - jersey-media-json-gson - ${project.version} - - - org.glassfish.jersey.media - jersey-media-json-binding - ${project.version} - - - org.glassfish.jersey.media - jersey-media-kryo - ${project.version} - - - org.glassfish.jersey.media - jersey-media-moxy - ${project.version} - - - org.glassfish.jersey.media - jersey-media-multipart - ${project.version} - - - org.glassfish.jersey.media - jersey-media-sse - ${project.version} - - - org.glassfish.jersey.security - oauth1-client - ${project.version} - - - org.glassfish.jersey.security - oauth1-server - ${project.version} - - - org.glassfish.jersey.security - oauth1-signature - ${project.version} - - - org.glassfish.jersey.security - oauth2-client - ${project.version} - - - org.glassfish.jersey.inject - jersey-hk2 - ${project.version} - - - org.glassfish.jersey.inject - jersey-cdi2-se - ${project.version} - - - org.glassfish.jersey.test-framework - jersey-test-framework-core - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-bundle - ${project.version} - pom - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-external - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-grizzly2 - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-inmemory - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jdk-http - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-simple - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jetty - ${project.version} - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jetty-http2 - ${project.version} - - - org.glassfish.jersey.test-framework - jersey-test-framework-util - ${project.version} - - - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - true - - - org.apache.maven.plugins - maven-site-plugin - 3.9.1 - - - - - - - project-info - - false - - - - - - localhost - http://localhost - - - - - diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.lastUpdated b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.lastUpdated deleted file mode 100644 index 8d39050a9..000000000 --- a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:29 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.glassfish.jersey\:jersey-bom\:pom\:3.1.6 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139808808 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139808938 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139809104 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139809245 diff --git a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.sha1 deleted file mode 100644 index 7d1446cf4..000000000 --- a/code/arachne/org/glassfish/jersey/jersey-bom/3.1.6/jersey-bom-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fcb234cf2a584fe1e71b5e7abfdfe3eaf7acdf5a \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/_remote.repositories deleted file mode 100644 index b20d1463a..000000000 --- a/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -jersey-media-json-jackson-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom b/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom deleted file mode 100644 index a1724fa3d..000000000 --- a/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom +++ /dev/null @@ -1,187 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey.media - project - 3.1.6 - - - jersey-media-json-jackson - jar - jersey-media-json-jackson - - - Jersey JSON Jackson (2.x) entity providers support module. - - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - Except for Guava, JSR-166 files, Dropwizard Monitoring inspired classes, ASM and Jackson JAX-RS Providers. - See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md - - - The GNU General Public License (GPL), Version 2, With Classpath Exception - https://www.gnu.org/software/classpath/license.html - repo - Except for Jackson JAX-RS Providers. - See also https://github.com/jersey/jersey/blob/master/NOTICE.md - - - Apache License, 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html - repo - Jackson JAX-RS Providers @ org.glassfish.jersey.jackson.internal.jackson.jaxrs - - - - - - - com.sun.istack - istack-commons-maven-plugin - true - - - org.codehaus.mojo - build-helper-maven-plugin - true - - - org.apache.felix - maven-bundle-plugin - true - true - - - org.glassfish.jersey.jackson.* - - ${jakarta.annotation.osgi.version}, - - - * - - - true - - - - - - - - org.glassfish.jersey.core - jersey-common - ${project.version} - - - jakarta.activation - jakarta.activation-api - - - - - org.glassfish.jersey.ext - jersey-entity-filtering - ${project.version} - - - - - - - - - - - - com.fasterxml.jackson.core - jackson-annotations - - - com.fasterxml.jackson.core - jackson-databind - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - - - jakarta.xml.bind - jakarta.xml.bind-api - - - jakarta.activation - jakarta.activation-api - - - true - provided - - - com.fasterxml.jackson.module - jackson-module-jakarta-xmlbind-annotations - - - jakarta.xml.bind - jakarta.xml.bind-api - - - jakarta.activation - jakarta.activation-api - - - - - - - javax.xml.bind - jaxb-api - 2.3.1 - test - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.junit.jupiter - junit-jupiter - test - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-grizzly2 - ${project.version} - test - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - ${jackson.version} - test - - - diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom.sha1 deleted file mode 100644 index a14542e5c..000000000 --- a/code/arachne/org/glassfish/jersey/media/jersey-media-json-jackson/3.1.6/jersey-media-json-jackson-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9b8556b66ef056b04689e68b5ee41e117214fafc \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/_remote.repositories deleted file mode 100644 index 6b40ea65c..000000000 --- a/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:02 EDT 2024 -jersey-media-multipart-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom b/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom deleted file mode 100644 index 64fd6078e..000000000 --- a/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom +++ /dev/null @@ -1,139 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey.media - project - 3.1.6 - - - jersey-media-multipart - jar - jersey-media-multipart - - - Jersey Multipart entity providers support module. - - - - - - com.sun.istack - istack-commons-maven-plugin - true - - - org.codehaus.mojo - build-helper-maven-plugin - true - - - org.apache.felix - maven-bundle-plugin - true - - - - - - - org.glassfish.jersey.core - jersey-common - ${project.version} - - - org.glassfish.jersey.core - jersey-server - ${project.version} - true - - - - org.jvnet.mimepull - mimepull - ${mimepull.version} - - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-bundle - ${project.version} - pom - test - - - org.glassfish.jersey.connectors - jersey-apache-connector - ${project.version} - test - - - org.glassfish.jersey.connectors - jersey-grizzly-connector - ${project.version} - test - - - - org.junit.jupiter - junit-jupiter - test - - - - - - JettyExclude - - [11,17) - - - - - org.apache.maven.plugins - maven-compiler-plugin - true - - - org/glassfish/jersey/media/multipart/internal/MultiPartHeaderModificationTest.java - - - - - - - - Jetty11 - - [17,) - - - - org.glassfish.jersey.connectors - jersey-jetty-connector - ${project.version} - test - - - - - diff --git a/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom.sha1 deleted file mode 100644 index d1df7ec6f..000000000 --- a/code/arachne/org/glassfish/jersey/media/jersey-media-multipart/3.1.6/jersey-media-multipart-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fd222bc122e0f2eb4a9a5b262ebee18000afa11b \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/media/project/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/media/project/3.1.6/_remote.repositories deleted file mode 100644 index 8d7faa20c..000000000 --- a/code/arachne/org/glassfish/jersey/media/project/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -project-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom b/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom deleted file mode 100644 index cf28531dc..000000000 --- a/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom +++ /dev/null @@ -1,58 +0,0 @@ - - - - - 4.0.0 - - - org.glassfish.jersey - project - 3.1.6 - - - org.glassfish.jersey.media - project - pom - jersey-media - - - Contains entity media type provider modules. - - - - jaxb - json-binding - json-gson - json-jackson - json-jettison - json-processing - moxy - multipart - sse - - - - - org.glassfish.jersey.inject - jersey-hk2 - ${project.version} - test - - - diff --git a/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom.sha1 deleted file mode 100644 index d2c3f0ca5..000000000 --- a/code/arachne/org/glassfish/jersey/media/project/3.1.6/project-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -24d5bf47372515717ad4e44575cf5c5aeb2c9edd \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/project/3.1.6/_remote.repositories b/code/arachne/org/glassfish/jersey/project/3.1.6/_remote.repositories deleted file mode 100644 index 0002d5a66..000000000 --- a/code/arachne/org/glassfish/jersey/project/3.1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:57 EDT 2024 -project-3.1.6.pom>central= diff --git a/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom b/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom deleted file mode 100644 index ab5409096..000000000 --- a/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom +++ /dev/null @@ -1,2324 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.9 - - - org.glassfish.jersey - project - pom - 3.1.6 - jersey - - Eclipse Jersey is the open source (under dual EPL+GPL license) Jakarta RESTful WebServices 3.0 - production quality Reference Implementation for building RESTful Web Services. - - - https://projects.eclipse.org/projects/ee4j.jersey - - - - - JIRA - https://github.com/eclipse-ee4j/jersey/issues - - - - Hudson - http://hudson.glassfish.org/job/Jersey-trunk-multiplatform/ - - - 2010 - - - - Users List - jersey-dev@eclipse.org - - - - - - Jorge Bescos Gascon - Oracle Corporation - http://www.oracle.com/ - - - Lukas Jungmann - Oracle Corporation - http://www.oracle.com/ - - - Dmitry Kornilov - Oracle Corporation - http://www.oracle.com/ - https://dmitrykornilov.net - - - David Kral - Oracle Corporation - http://www.oracle.com/ - - - Tomas Kraus - Oracle Corporation - http://www.oracle.com/ - - - Tomas Langer - Oracle Corporation - http://www.oracle.com/ - - - Maxim Nesen - Oracle Corporation - http://www.oracle.com/ - - - Santiago Pericas-Geertsen - Oracle Corporation - http://www.oracle.com/ - - - Jan Supol - Oracle Corporation - http://www.oracle.com/ - http://blog.supol.info - - - - - - Petr Bouda - - - Pavel Bucek - Oracle Corporation - http://u-modreho-kralika.net/ - - - Michal Gajdos - http://blog.dejavu.sk - - - Petr Janouch - - - Libor Kramolis - - - Adam Lindenthal - - - Jakub Podlesak - Oracle Corporation - http://www.oracle.com/ - - - Marek Potociar - - - Stepan Vavra - - - - - - EPL 2.0 - http://www.eclipse.org/legal/epl-2.0 - repo - Except for 3rd content and examples. - See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md - - - GPL2 w/ CPE - https://www.gnu.org/software/classpath/license.html - repo - Except for 3rd content and examples. - See also https://github.com/eclipse-ee4j/jersey/blob/master/NOTICE.md - - - EDL 1.0 - http://www.eclipse.org/org/documents/edl-v10.php - repo - The examples except bookstore-webapp example - - - BSD 2-Clause - https://opensource.org/licenses/BSD-2-Clause - repo - The bookstore-webapp example - - - Apache License, 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html - repo - Google Guava @ org.glassfish.jersey.internal.guava, - Dropwizard Monitoring inspired classes @ org.glassfish.jersey.server.internal.monitoring.core, - Hibernate Validation classes @ org.glassfish.jersey.server.validation.internal.hibernate, and - Jackson JAX-RS Providers @ org.glassfish.jersey.jackson.internal.jackson.jaxrs - - - Public Domain - https://creativecommons.org/publicdomain/zero/1.0/ - repo - JSR-166 Extension to JEP 266 @ org.glassfish.jersey.internal.jsr166 - - - Modified BSD - https://asm.ow2.io/license.html - repo - ASM @ jersey.repackaged.org.objectweb.asm - - - jQuery license - jquery.org/license - repo - jQuery v1.12.4 - - - MIT license - http://www.opensource.org/licenses/mit-license.php - repo - AngularJS, Bootstrap v3.3.7, - jQuery Barcode plugin 0.3, KineticJS v4.7.1 - - - W3C license - https://www.w3.org/Consortium/Legal/copyright-documents-19990405 - repo - Content of core-server/etc - - - - - scm:git:git@github.com:jersey/jersey.git - scm:git:git@github.com:eclipse-ee4j/jersey.git - https://github.com/eclipse-ee4j/jersey - HEAD - - - - Eclipse Foundation - https://www.eclipse.org/org/foundation/ - - - - - - - org.glassfish.jersey.tools.plugins - jersey-doc-modulelist-maven-plugin - 1.0.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - ${enforcer.mvn.plugin.version} - - - enforce-versions - - enforce - - - - - ${java.version} - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - ${buildhelper.mvn.plugin.version} - - - generate-sources - - add-source - - - - ${project.build.directory}/generated-sources/rsrc-gen - - - - - initialize - parse-version - - parse-version - - - - - - com.sun.istack - istack-commons-maven-plugin - ${istack.mvn.plugin.version} - - - generate-sources - - rs-gen - - - - ${basedir}/src/main/resources - - **/localization.properties - - - ${project.build.directory}/generated-sources/rsrc-gen - org.glassfish.jersey.internal.l10n - - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - ${compiler.mvn.plugin.version} - true - - - - - - - false - false - - - - org.apache.maven.plugins - maven-jar-plugin - ${jar.mvn.plugin.version} - - - org.apache.maven.plugins - maven-install-plugin - ${install.mvn.plugin.version} - - - org.apache.maven.plugins - maven-resources-plugin - ${resources.mvn.plugin.version} - true - - - - - copy-legaldocs - - copy-resources - - process-sources - - ${project.build.outputDirectory} - - - ${legal.source.folder} - META-INF/ - - NOTICE.md - LICENSE.md - - - - - - - - copy-legaldocs-to-sources - - copy-resources - - process-sources - - ${project.build.directory}/generated-sources/rsrc-gen - - - ${legal.source.folder} - META-INF/ - - NOTICE.md - LICENSE.md - - - - - - - - copy-legaldocs-to-osgi-bundles - - copy-resources - - process-sources - - ${project.build.directory}/legal - - - ${legal.source.folder} - META-INF/ - - NOTICE.md - LICENSE.md - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.mvn.plugin.version} - - - false - - - -Xmx${surefire.maxmem.argline}m -Dfile.encoding=UTF8 ${surefire.security.argline} ${surefire.coverage.argline} - - ${skip.tests} - - - junit.jupiter.execution.parallel.enabled=true - junit.jupiter.execution.parallel.mode.classes.default=same_thread - junit.jupiter.execution.parallel.mode.default=same_thread - - - - - jersey.config.test.container.port - ${jersey.config.test.container.port} - - - 124 - - - - org.apache.maven.surefire - surefire-logger-api - ${surefire.mvn.plugin.version} - - true - - - org.apache.maven.surefire - surefire-api - ${surefire.mvn.plugin.version} - true - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${assembly.mvn.plugin.version} - - posix - - - - org.apache.maven.plugins - maven-dependency-plugin - ${dependency.mvn.plugin.version} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${javadoc.mvn.plugin.version} - - Jersey ${jersey.version} API Documentation - Jersey ${jersey.version} API - - Oracle - and/or its affiliates. - All Rights Reserved. Use is subject to license terms.]]> - - - https://jakartaee.github.io/rest/apidocs/3.0.0/ - https://javaee.github.io/hk2/apidocs/ - https://eclipse-ee4j.github.io/jersey.github.io/apidocs/latest/jersey/ - - - *.internal.*:*.innate.*:*.tests.* - - false - - org.glassfish.jersey.*:* - - - bundles/** - module-info.java - - true - none - 256m - - - - attach-javadocs - package - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - ${source.mvn.plugin.version} - - - attach-sources - package - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-deploy-plugin - ${deploy.mvn.plugin.version} - - 10 - - - - org.ops4j.pax.exam - maven-paxexam-plugin - ${paxexam.mvn.plugin.version} - - - generate-config - - generate-depends-file - - - - - - felix - - - - - org.apache.maven.plugins - maven-site-plugin - ${site.mvn.plugin.version} - - - org.codehaus.mojo - exec-maven-plugin - ${exec.mvn.plugin.version} - - - - java - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${jxr.mvn.plugin.version} - - - - jxr - - validate - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstyle.mvn.plugin.version} - - etc/config/checkstyle.xml - etc/config/checkstyle-suppressions.xml - ${project.build.directory}/checkstyle/checkstyle-result.xml - - - - com.puppycrawl.tools - checkstyle - ${checkstyle.version} - - - - com.sun - tools - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.mvn.plugin.version} - - ${findbugs.skip} - ${findbugs.threshold} - ${findbugs.exclude} - true - true - - -Dfindbugs.glassfish.logging.validLoggerPrefixes=${findbugs.glassfish.logging.validLoggerPrefixes} - - - org.glassfish.findbugs - findbugs-logging-detectors - ${findbugs.glassfish.version} - - - - - - org.glassfish.findbugs - findbugs - ${findbugs.glassfish.version} - - - - - org.apache.maven.plugins - maven-failsafe-plugin - ${failsafe.mvn.plugin.version} - - - false - ${skip.tests} - ${skip.tests} - ${failsafe.coverage.argline} - - - jersey.config.test.container.port - ${jersey.config.test.container.port} - - - - - - - integration-test - verify - - - - - - org.apache.maven.plugins - maven-war-plugin - ${war.mvn.plugin.version} - - false - - - - org.apache.maven.plugins - maven-ear-plugin - ${ear.mvn.plugin.version} - - - org.glassfish.embedded - maven-embedded-glassfish-plugin - ${gfembedded.mvn.plugin.version} - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - etc/config/copyright-exclude - - git - - false - - true - - false - - false - - false - etc/config/copyright.txt - etc/config/edl-copyright.txt - - - - org.apache.felix - maven-bundle-plugin - ${felix.mvn.plugin.version} - true - - - <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@))) - <_nodefaultversion>false - {maven-resources},${project.build.directory}/legal - - - - - osgi-bundle - package - - bundle - - - - - - org.codehaus.mojo - xml-maven-plugin - ${xml.mvn.plugin.version} - - - com.sun.tools.xjc.maven2 - maven-jaxb-plugin - 1.1.1 - - - org.codehaus.mojo - buildnumber-maven-plugin - ${buildnumber.mvn.plugin.version} - - - - org.eclipse.jetty.ee10 - jetty-ee10-maven-plugin - ${jetty.plugin.version} - - - org.glassfish.build - gfnexus-maven-plugin - 0.16 - - - - - org.glassfish.jersey:project:${project.version}:pom - com.sun.jersey - - - - glassfish-integration - JERSEY-${project.version} - - - - org.apache.maven.plugins - maven-shade-plugin - ${shade.mvn.plugin.version} - - - shade-archive - - shade - - - false - - - *:* - - module-info.* - - - - - - - - false - true - true - - false - - - - org.apache.maven.plugins - maven-antrun-plugin - ${antrun.mvn.plugin.version} - - - org.apache.ant - ant - 1.10.12 - - - - - org.fortasoft - gradle-maven-plugin - 1.0.8 - - - com.github.wvengen - proguard-maven-plugin - ${proguard.mvn.plugin.version} - - - net.sf.proguard - proguard-base - 6.2.2 - runtime - - - - - org.apache.maven.plugins - maven-compiler-plugin - true - - ${java.version} - ${java.version} - - - - - base-compile - - compile - - - - - module-info.java - - - - - - - - - - org.commonjava.maven.plugins - directory-maven-plugin - 1.0 - - - directories - - highest-basedir - - initialize - - legal.source.folder - - - - - - org.glassfish.jersey.tools.plugins - jersey-doc-modulelist-maven-plugin - false - - docs/src/main/docbook/modules.xml - docs/src/main/docbook/inc/modules.src - docs/src/main/docbook/inc/modules_table_header.src - docs/src/main/docbook/inc/modules_table_footer.src - docs/src/main/docbook/inc/modules_table_row.src - false - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.maven.plugins - maven-resources-plugin - - - org.codehaus.mojo - build-helper-maven-plugin - ${buildhelper.mvn.plugin.version} - - - jersey.config.test.container.port - jersey.config.test.container.stop.port - - - - - reserve-port - process-test-classes - - reserve-network-port - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - verify - validate - - - check - - - etc/config/checkstyle-verify.xml - true - true - true - **/module-info.java - - - - - - - - org.glassfish - findbugs - 3.2-b06 - - - - - - - - testsSkip - - false - - - skipTests - true - - - - - true - true - - - - checkstyleSkip - - false - - - true - - - - findbugsSkip - - false - - - true - - - - testsIncluded - - false - - !tests.excluded - - - - tests - - - - examplesIncluded - - false - - !examples.excluded - - - - examples - - - - bundlesIncluded - - false - - !bundles.excluded - - - - bundles - - - - testFrameworkIncluded - - false - - !test-framework.excluded - - - - test-framework - - - - pre-release - - docs - - - false - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - - - - xdk - - - xdk - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - true - - - ${xdk.absolute.path} - - - xerces:xercesImpl - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-property - - enforce - - - - - xdk.absolute.path - Property 'xdk.absolute.path' has to be specified. - .*/xmlparserv2.jar$ - - Property 'xdk.absolute.path' has to point to the xdk parser jar (xmlparserv2.jar). - - - - true - - - - - - - - - moxy - - - moxy - - - - - org.eclipse.persistence - org.eclipse.persistence.moxy - ${moxy.version} - - - - - securityOff - - - - - - project-info - - false - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.4.5 - - - - dependencies - index - - - - - - - - - - localhost - http://localhost - - - - - sonar - - - - - jacoco - - - reuseReports - - ${session.executionRootDirectory}/target - - ${jacoco.outputDir}/jacoco.exec - - ${jacoco.outputDir}/jacoco-it.exec - - - true - - - ${jacoco.agent.ut.arg} - ${jacoco.agent.it.arg} - - - 0.7.4.201502262128 - 3.2 - 2.6 - - - - org.codehaus.sonar-plugins.java - sonar-jacoco-listeners - ${sonar-jacoco-listeners.version} - test - - - - - - org.jacoco - jacoco-maven-plugin - ${jacoco.version} - - - - prepare-ut-agent - process-test-classes - - prepare-agent - - - ${sonar.jacoco.reportPath} - jacoco.agent.ut.arg - true - - - - - prepare-it-agent - pre-integration-test - - prepare-agent - - - ${sonar.jacoco.itReportPath} - jacoco.agent.it.arg - true - - - - - - jacoco-report-unit-tests - test - - report - - - - ${sonar.jacoco.reportPath} - - ${project.build.directory}/jacoco - - - - jacoco-report-integration-tests - post-integration-test - - report-integration - - - - ${sonar.jacoco.itReportPath} - - ${project.build.directory}/jacoco-it - - - - - - - - - org.codehaus.mojo - sonar-maven-plugin - ${sonar.version} - - - org.apache.maven.plugins - maven-surefire-plugin - - - - - listener - org.sonar.java.jacoco.JUnitListener - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - - listener - org.sonar.java.jacoco.JUnitListener - - - - ${project.build.directory}/surefire-reports - - - - - - - - - travis_e2e_skip - - true - - - - - travis_e2e - - false - true - - - - - eclipse_repo - - - - true - - repo.jaxrs-api.eclipse.org - JAX-RS API Repository - Snapshots - https://repo.eclipse.org/content/repositories/jax-rs-api-snapshots - - - - - license_check - - - dash-licenses-snapshots - https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/ - - false - - - - dash-licenses-releases - https://repo.eclipse.org/content/repositories/dash-licenses-releases/ - - true - - - - - - - org.eclipse.dash - license-tool-plugin - 1.0.2 - - - license-check - - license-check - - - DEPENDENCIES - true - REVIEW_SUMMARY - - - - - - - - - - - true - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.mvn.plugin.version} - - - - ${findbugs.skip} - ${findbugs.threshold} - ${findbugs.exclude} - true - - -Dfindbugs.glassfish.logging.validLoggerPrefixes=${findbugs.glassfish.logging.validLoggerPrefixes} - - - org.glassfish.findbugs - findbugs-logging-detectors - ${findbugs.glassfish.version} - - - - - findbugs - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.1 - - false - - Jersey ${jersey.version} API Documentation - Jersey ${jersey.version} API - - Oracle - and/or its affiliates. - All Rights Reserved. Use is subject to license terms.]]> - - - com.sun.ws.rs.ext:*.examples.*:*.internal.*:*.tests.* - - - https://jax-rs.github.io/apidocs/2.1 - https://javaee.github.io/hk2/apidocs/ - - none - - module-info.java - - - - - - aggregate - - - - - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - - - jxr - - - - - false - - aggregate - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstyle.mvn.plugin.version} - - etc/config/checkstyle.xml - etc/config/checkstyle-suppressions.xml - - - - - checkstyle - - - - - - - - - archetypes - bom - connectors - containers - - core-common - core-server - core-client - - ext - incubator - inject - media - security - - - - - - jakarta.ws.rs - jakarta.ws.rs-api - ${jaxrs.api.impl.version} - - - jakarta.annotation - jakarta.annotation-api - ${jakarta.annotation.version} - - - - jakarta.enterprise - jakarta.enterprise.cdi-api - ${cdi.api.version} - - - - jakarta.transaction - jakarta.transaction-api - ${jta.api.version} - - - - jakarta.activation - jakarta.activation-api - ${jakarta.activation-api.version} - - - jakarta.servlet - jakarta.servlet-api - ${servlet6.version} - - - - org.eclipse.angus - angus-activation - ${jakarta.activation.version} - - - - - - org.glassfish.hk2 - hk2-locator - ${hk2.version} - - - org.glassfish.hk2 - hk2-utils - ${hk2.version} - - - - org.glassfish.hk2 - hk2-api - ${hk2.version} - - - jakarta.inject - jakarta.inject-api - - - - - org.glassfish.hk2 - osgi-resource-locator - 1.0.3 - - - org.glassfish.main.hk2 - hk2-config - ${hk2.config.version} - - - jakarta.inject - jakarta.inject-api - ${jakarta.inject.version} - - - org.glassfish.hk2.external - aopalliance-repackaged - ${hk2.version} - - - org.javassist - javassist - ${javassist.version} - - - - org.glassfish.grizzly - grizzly-http-server - ${grizzly2.version} - - - org.glassfish.grizzly - grizzly-http2 - ${grizzly2.version} - - - org.glassfish.grizzly - grizzly-http-servlet - ${grizzly2.version} - - - org.glassfish.grizzly - grizzly-websockets - ${grizzly2.version} - - - org.glassfish.grizzly - connection-pool - ${grizzly2.version} - - - org.glassfish.grizzly - grizzly-http-client - ${grizzly.client.version} - - - org.glassfish.grizzly - grizzly-npn-api - ${grizzly.npn.version} - - - - io.netty - netty-all - ${netty.version} - - - - org.apache.httpcomponents - httpclient - ${httpclient.version} - - - org.apache.httpcomponents.client5 - httpclient5 - ${httpclient5.version} - - - - org.eclipse.jetty - jetty-util - ${jetty.version} - - - org.eclipse.jetty - jetty-client - ${jetty.version} - - - org.eclipse.jetty.http2 - jetty-http2-client - ${jetty.version} - - - org.eclipse.jetty.http2 - jetty-http2-client-transport - ${jetty.version} - - - org.eclipse.jetty - jetty-server - ${jetty.version} - - - org.eclipse.jetty - jetty-security - ${jetty.version} - - - org.eclipse.jetty.http2 - jetty-http2-server - ${jetty.version} - - - org.eclipse.jetty - jetty-alpn-conscrypt-server - ${jetty.version} - - - org.eclipse.jetty.ee10 - jetty-ee10-webapp - ${jetty.version} - - - - org.simpleframework - simple-http - ${simple.version} - - - - org.simpleframework - simple-transport - ${simple.version} - - - - org.simpleframework - simple-common - ${simple.version} - - - - org.codehaus.jettison - jettison - ${jettison.version} - - - stax - stax-api - - - - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jakarta.jaxb.api.version} - - - - com.sun.xml.bind - jaxb-impl - ${jaxb.ri.version} - - - com.sun.xml.bind - jaxb-osgi - ${jaxb.ri.version} - - - - org.eclipse.persistence - org.eclipse.persistence.moxy - ${moxy.version} - - - - jakarta.persistence - jakarta.persistence-api - ${jakarta.persistence.version} - provided - - - - jakarta.ejb - jakarta.ejb-api - ${ejb.version} - provided - - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - ${jackson.version} - - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - ${jackson.version} - - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version} - - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson.version} - - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - ${jackson.version} - - - - com.fasterxml.jackson.module - jackson-module-jakarta-xmlbind-annotations - ${jackson.version} - - - - xerces - xercesImpl - ${xerces.version} - - - - org.osgi - org.osgi.core - ${osgi.version} - provided - - - - org.osgi - org.osgi.compendium - ${osgi.compendium.version} - provided - - - - org.osgi - org.osgi.service.cm - ${osgi.service.cm.version} - provided - - - - org.glassfish.main.ejb - ejb-container - ${gf.impl.version} - - - org.glassfish.main.common - container-common - ${gf.impl.version} - - - - - com.fasterxml - classmate - ${fasterxml.classmate.version} - - - jakarta.el - jakarta.el-api - ${jakarta.el.version} - - - org.glassfish.expressly - expressly - ${jakarta.el.impl.version} - - - - jakarta.json - jakarta.json-api - ${jakarta.jsonp.version} - - - org.eclipse.parsson - parsson - ${jsonp.ri.version} - - - org.eclipse.parsson - parsson-media - ${jsonp.jaxrs.version} - - - - org.hibernate.validator - hibernate-validator - ${validation.impl.version} - - - - org.hibernate.validator - hibernate-validator-cdi - ${validation.impl.version} - - - - org.ops4j.pax.web - pax-web-jetty-bundle - ${pax.web.version} - - - org.ops4j.pax.web - pax-web-extender-war - ${pax.web.version} - - - org.openjdk.jmh - jmh-core - ${jmh.version} - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh.version} - - - com.esotericsoftware - kryo - ${kryo.version} - - - - commons-logging - commons-logging - ${commons.logging.version} - - - - - org.jboss.weld.se - weld-se-core - ${weld.version} - - - org.jboss.weld.servlet - weld-servlet - ${weld.version} - - - - jakarta.validation - jakarta.validation-api - ${jakarta.validation.api.version} - - - - - - org.ops4j.pax.exam - pax-exam - ${pax.exam.version} - test - - - - org.ops4j.pax.exam - pax-exam-junit4 - ${pax.exam.version} - test - - - - org.ops4j.pax.exam - pax-exam-container-forked - ${pax.exam.version} - test - - - - org.ops4j.pax.exam - pax-exam-junit-extender-impl - 1.2.4 - test - - - - org.ops4j.pax.exam - pax-exam-link-mvn - ${pax.exam.version} - test - - - - org.junit - junit-bom - ${junit5.version} - pom - import - - - org.testng - testng - ${testng.version} - test - - - org.assertj - assertj-core - 3.21.0 - test - - - - org.awaitility - awaitility - 4.1.1 - test - - - - org.hamcrest - hamcrest - ${hamcrest.version} - test - - - org.jmockit - jmockit - ${jmockit.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - org.xmlunit - xmlunit-core - ${xmlunit.version} - test - - - org.bouncycastle - bcprov-jdk15on - ${bouncycastle.version} - test - - - org.bouncycastle - bcmail-jdk15on - ${bouncycastle.version} - test - - - - org.apache.felix - org.apache.felix.framework - ${felix.framework.version} - test - - - - org.apache.felix - org.apache.felix.eventadmin - ${felix.eventadmin.version} - test - - - - org.apache.felix - org.apache.felix.framework.security - ${felix.framework.security.version} - test - - - - jakarta.json.bind - jakarta.json.bind-api - ${jsonb.api.version} - - - - org.eclipse - yasson - ${yasson.version} - - - - com.google.code.gson - gson - ${gson.version} - - - - io.opentracing - opentracing-api - ${opentracing.version} - - - - io.opentracing - opentracing-util - ${opentracing.version} - - - - - - - 3.2.1 - - false - Low - - - - jakarta.enterprise - - 11 - - - UTF-8 - UTF-8 - - - false - false - - - - 1024 - - ${failsafe.coverage.argline} - - - 3.1.0 - 3.7.1 - 3.4.1 - 3.2.0 - 3.5.0 - 3.2.0 - 3.3.1 - 10.14.2 - 3.13.0 - - 3.9.0 - 3.6.1 - 3.1.1 - 3.3.0 - 3.2.5 - 5.1.9 - 3.0.5 - 5.1 - 3.1.1 - 4.2.0 - 3.3.0 - 3.6.3 - 3.3.2 - 1.2.4 - 2.6.1 - 3.3.1 - 3.5.2 - 3.12.1 - 3.3.0 - 3.2.5 - 3.4.0 - 2.11.0 - 1.1.0 - 3.3.0 - - - - ${project.version} - 1.8.0.Final - 3.0.1.Final - - - 9.7 - - 1.9.22 - - 1.70 - 2.15.1 - 1.16.1 - - 1.3.1 - 1.7.0 - 1.6.4 - 2.8.4 - 7.0.5 - 1.7 - 2.3.32 - 2.0.25 - 4.0.20 - 2.10.1 - - - - 0.27.0 - 3.0.2 - - - - 1.12.4 - 1.0.12 - - - 3.0.3 - 3.0.1 - 3.2.6 - 3.2.6 - 1.4.14 - 3.7.1 - - 31.1-jre - 2.2 - 2.9.1 - 4.5.14 - 5.3.1 - 2.17.0 - 3.30.2-GA - 3.5.3.Final - 1.3.7 - 1.37 - 1.49 - 4.13.2 - 5.10.2 - 1.10.2 - 1.10.0 - 4.0.3 - 3.12.4 - 0.9.11 - 4.1.108.Final - 0.33.0 - 6.0.0 - 1.10.0 - 5.0.0 - 1.6.0 - 4.13.4 - 0.7.4 - 1.0.4 - 1.3.8 - 2.2.21 - - 4.0.3 - 6.0.0 - - 6.0.1 - 2.0.12 - 6.0.18 - 7.9.0 - 6.9.13.6 - - 5.1.1.Final - 3.1.9.Final - 8.0.1.Final - - 2.27.2 - 2.12.2 - - - 20.3.13 - - - 7.0.6 - - 4.0.1 - jakarta.enterprise.*;version="[3.0,5)" - 4.0.1 - 4.0.2 - 1.16 - 2.0.0 - 3.0.6 - org.glassfish.hk2.*;version="[3.0,4)" - org.jvnet.hk2.*;version="[3.0,4)" - 7.0.4 - 3.1.1 - 3.0.0 - 2.0.1 - 4.1.2 - 2.1.3 - 2.0.2 - 5.0.1 - 5.0.0 - jakarta.annotation.*;version="[2.0,3)" - 2.1.1 - 2.0.1 - 2.1.0 - 2.1.3 - 3.1.0 - 3.0.2 - 4.0.2 - 4.0.5 - 3.1 - 3.1.0 - org.eclipse.jetty.*;version="[11,15)" - 12.0.7 - 9.4.54.v20240208 - 11.0.20 - 12.0.8 - 3.0.1 - 1.1.5 - 1.1.5 - 4.0.2 - 3.0.3 - - - 1.3.2 - 1.9.15 - - \ No newline at end of file diff --git a/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom.sha1 b/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom.sha1 deleted file mode 100644 index d50be93bd..000000000 --- a/code/arachne/org/glassfish/jersey/project/3.1.6/project-3.1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b6614699033eb6cb0d51de2fc3e6ddf3a56c72f4 \ No newline at end of file diff --git a/code/arachne/org/glassfish/json/2.0.1/_remote.repositories b/code/arachne/org/glassfish/json/2.0.1/_remote.repositories deleted file mode 100644 index cf79d81d1..000000000 --- a/code/arachne/org/glassfish/json/2.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:43 EDT 2024 -json-2.0.1.pom>central= diff --git a/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom b/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom deleted file mode 100644 index f22b70979..000000000 --- a/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom +++ /dev/null @@ -1,464 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.6 - - - org.glassfish - json - pom - 2.0.1 - Jakarta JSON Processing - Jakarta JSON Processing defines a Java(R) based framework for parsing, generating, transforming, and querying JSON documents. - https://github.com/eclipse-ee4j/jsonp - - - scm:git:git://github.com/eclipse-ee4j/jsonp.git - scm:git:git@github.com:eclipse-ee4j/jsonp.git - https://github.com/eclipse-ee4j/jsonp - HEAD - - - - - Eclipse Public License 2.0 - https://projects.eclipse.org/license/epl-2.0 - repo - - - GNU General Public License, version 2 with the GNU Classpath Exception - https://projects.eclipse.org/license/secondary-gpl-2.0-cp - repo - - - - - - m0mus - Dmitry Kornilov - Oracle - - project lead - - - - lukasj - Lukas Jungmann - Oracle - - dev lead - - - - - - jakarta.json - org.glassfish - 2.0 - 2.1 - 2.1.0 - ${project.version} - 2.1.0 - false - ${maven.multiModuleProjectDirectory} - ${project.root.location}/etc/config - ${config.dir}/copyright-exclude - ${config.dir}/copyright.txt - false - true - false - ${config.dir}/exclude.xml - false - Low - 4.2.2 - - 2.0.1 - - 2.0.0 - 3.0.1 - 3.0.0 - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [11,) - - - [3.6.0,) - - - - - - - - org.commonjava.maven.plugins - directory-maven-plugin - - - find-project-root - validate - - highest-basedir - - - project.root.location - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 9 - - -Xlint:all - - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - ${copyright.templatefile} - ${copyright.exclude} - - ${copyright.scmonly} - - ${copyright.update} - - ${copyright.ignoreyear} - false - - - - - check - - verify - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - - false - true - - - - - - org.apache.maven.plugins - maven-release-plugin - - forked-path - false - ${release.arguments} - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - org.commonjava.maven.plugins - directory-maven-plugin - 0.3.1 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - - org.glassfish.build - spec-version-maven-plugin - 2.1 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - - org.apache.felix - maven-bundle-plugin - 5.1.1 - - - <_noextraheaders>true - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.1.2 - - - org.apache.maven.plugins - maven-resources-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-clean-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-site-plugin - 3.9.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0-M5 - - - org.apache.maven.plugins - maven-assembly-plugin - 3.3.0 - - - - - - - - - jakarta.ws.rs - jakarta.ws.rs-api - ${jakarta.ws.rs-api.version} - - - jakarta.annotation - jakarta.annotation-api - ${jakarta.annotation-api.version} - - - jakarta.json - jakarta.json-api - ${jakarta.json-api.version} - - - org.glassfish - jakarta.json - ${project.version} - - - org.glassfish - jakarta.json - module - ${project.version} - - - org.glassfish - jsonp-jaxrs - ${project.version} - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jakarta.xml.bind-api.version} - - - junit - junit - 4.13.2 - - - org.hamcrest - hamcrest-core - 1.3 - test - - - - - - impl - jaxrs - bundles - - - - - all - - - - - jakarta.servlet - jakarta.servlet-api - 5.0.0 - - - com.sun.xml.bind - jaxb-impl - 3.0.0 - - - - - - gf - demos - - - - - - - org.apache.maven.plugins - maven-war-plugin - 3.3.1 - - false - - - - org.codehaus.mojo - wagon-maven-plugin - 2.0.2 - - - org.codehaus.mojo - exec-maven-plugin - 3.0.0 - - - - - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - ${spotbugs.skip} - ${spotbugs.threshold} - true - - ${spotbugs.exclude} - - true - - - - - - diff --git a/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom.sha1 b/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom.sha1 deleted file mode 100644 index 58e05e085..000000000 --- a/code/arachne/org/glassfish/json/2.0.1/json-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4a84173c664e552e4cf6906b7a7b971f263f6bcb \ No newline at end of file diff --git a/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/_remote.repositories b/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/_remote.repositories deleted file mode 100644 index b07202f8e..000000000 --- a/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:08 EDT 2024 -js-scriptengine-1.0.0-rc15.pom>central= diff --git a/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom b/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom deleted file mode 100644 index ab0b61f71..000000000 --- a/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom +++ /dev/null @@ -1,36 +0,0 @@ - - - 4.0.0 - org.graalvm.js - js-scriptengine - 1.0.0-rc15 - http://www.graalvm.org/ - Graaljs Scriptengine - Graal JavaScript ScriptEngine - - - Truffle and Graal developers - graalvm-users@oss.oracle.com - Graal - http://www.graalvm.org/ - - - - - Universal Permissive License, Version 1.0 - http://opensource.org/licenses/UPL - - - - - org.graalvm.sdk - graal-sdk - 1.0.0-rc15 - - - - scm:git:https://github.com/graalvm/graaljs.git - scm:git:git@github.com:graalvm/graaljs.git - https://github.com/graalvm/graaljs - - diff --git a/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom.sha1 b/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom.sha1 deleted file mode 100644 index d49f87029..000000000 --- a/code/arachne/org/graalvm/js/js-scriptengine/1.0.0-rc15/js-scriptengine-1.0.0-rc15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d527593e1d76688d3208b49796721b0ababb496c \ No newline at end of file diff --git a/code/arachne/org/graalvm/js/js/1.0.0-rc15/_remote.repositories b/code/arachne/org/graalvm/js/js/1.0.0-rc15/_remote.repositories deleted file mode 100644 index fca046cbb..000000000 --- a/code/arachne/org/graalvm/js/js/1.0.0-rc15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -js-1.0.0-rc15.pom>central= diff --git a/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom b/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom deleted file mode 100644 index 12183fa3b..000000000 --- a/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom +++ /dev/null @@ -1,80 +0,0 @@ - - - 4.0.0 - org.graalvm.js - js - 1.0.0-rc15 - http://www.graalvm.org/ - Graaljs - Graal JavaScript engine - - - Truffle and Graal developers - graalvm-users@oss.oracle.com - Graal - http://www.graalvm.org/ - - - - - Universal Permissive License, Version 1.0 - http://opensource.org/licenses/UPL - - - MIT License - http://opensource.org/licenses/MIT - - - - - org.graalvm.regex - regex - 1.0.0-rc15 - - - org.graalvm.truffle - truffle-api - 1.0.0-rc15 - - - org.graalvm.sdk - graal-sdk - 1.0.0-rc15 - - - org.ow2.asm - asm - 6.2.1 - - - org.ow2.asm - asm-tree - 6.2.1 - - - org.ow2.asm - asm-analysis - 6.2.1 - - - org.ow2.asm - asm-commons - 6.2.1 - - - org.ow2.asm - asm-util - 6.2.1 - - - com.ibm.icu - icu4j - 62.1 - - - - scm:git:https://github.com/graalvm/graaljs.git - scm:git:git@github.com:graalvm/graaljs.git - https://github.com/graalvm/graaljs - - diff --git a/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom.sha1 b/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom.sha1 deleted file mode 100644 index b50123cfa..000000000 --- a/code/arachne/org/graalvm/js/js/1.0.0-rc15/js-1.0.0-rc15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9f31a02b3d388d400ac810251ec99b39da5adfea \ No newline at end of file diff --git a/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/_remote.repositories b/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/_remote.repositories deleted file mode 100644 index c313e18de..000000000 --- a/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -regex-1.0.0-rc15.pom>central= diff --git a/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom b/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom deleted file mode 100644 index a789a822b..000000000 --- a/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom +++ /dev/null @@ -1,36 +0,0 @@ - - - 4.0.0 - org.graalvm.regex - regex - 1.0.0-rc15 - http://www.graalvm.org/ - Tregex - Truffle regular expressions language. - - - Truffle and Graal developers - graalvm-users@oss.oracle.com - Graal - http://www.graalvm.org/ - - - - - GNU General Public License, version 2, with the Classpath Exception - http://openjdk.java.net/legal/gplv2+ce.html - - - - - org.graalvm.truffle - truffle-api - 1.0.0-rc15 - - - - scm:git:https://github.com/oracle/graal.git - scm:git:git@github.com:oracle/graal.git - https://github.com/oracle/graal - - diff --git a/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom.sha1 b/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom.sha1 deleted file mode 100644 index d34a72820..000000000 --- a/code/arachne/org/graalvm/regex/regex/1.0.0-rc15/regex-1.0.0-rc15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ea6c5f60b772e7c11328ca653fadf397459c0a29 \ No newline at end of file diff --git a/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/_remote.repositories b/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/_remote.repositories deleted file mode 100644 index 79a19652b..000000000 --- a/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -graal-sdk-1.0.0-rc15.pom>central= diff --git a/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom b/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom deleted file mode 100644 index 0e3ea4ab9..000000000 --- a/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom +++ /dev/null @@ -1,30 +0,0 @@ - - - 4.0.0 - org.graalvm.sdk - graal-sdk - 1.0.0-rc15 - https://github.com/oracle/graal - Graal Sdk - GraalVM is an ecosystem for compiling and running applications written in multiple languages. -GraalVM removes the isolation between programming languages and enables interoperability in a shared runtime. - - - Graal developers - graal-dev@openjdk.java.net - Graal - https://github.com/oracle/graal - - - - - Universal Permissive License, Version 1.0 - http://opensource.org/licenses/UPL - - - - scm:git:https://github.com/oracle/graal.git - scm:git:git@github.com:oracle/graal.git - https://github.com/oracle/graal - - diff --git a/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom.sha1 b/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom.sha1 deleted file mode 100644 index d701bf341..000000000 --- a/code/arachne/org/graalvm/sdk/graal-sdk/1.0.0-rc15/graal-sdk-1.0.0-rc15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -34b0518e508e5f49b8f63d9f153af23d02ca6a90 \ No newline at end of file diff --git a/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/_remote.repositories b/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/_remote.repositories deleted file mode 100644 index 47a4e208f..000000000 --- a/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -truffle-api-1.0.0-rc15.pom>central= diff --git a/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom b/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom deleted file mode 100644 index 5816f1487..000000000 --- a/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - 4.0.0 - org.graalvm.truffle - truffle-api - 1.0.0-rc15 - http://openjdk.java.net/projects/graal - Truffle API - Truffle is a multi-language framework for executing dynamic languages -that achieves high performance when combined with Graal. - - - Truffle and Graal developers - graal-dev@openjdk.java.net - Graal - https://github.com/oracle/graal - - - - - Universal Permissive License, Version 1.0 - http://opensource.org/licenses/UPL - - - - - org.graalvm.sdk - graal-sdk - 1.0.0-rc15 - - - - scm:git:https://github.com/oracle/graal.git - scm:git:git@github.com:oracle/graal.git - https://github.com/oracle/graal/tree/master/truffle - - diff --git a/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom.sha1 b/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom.sha1 deleted file mode 100644 index d13eac4fe..000000000 --- a/code/arachne/org/graalvm/truffle/truffle-api/1.0.0-rc15/truffle-api-1.0.0-rc15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -45223ab851dcd1545715f7ef6a3fe2150f099ce5 \ No newline at end of file diff --git a/code/arachne/org/hamcrest/hamcrest-core/2.2/_remote.repositories b/code/arachne/org/hamcrest/hamcrest-core/2.2/_remote.repositories deleted file mode 100644 index 3b3a5aa16..000000000 --- a/code/arachne/org/hamcrest/hamcrest-core/2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:12 EDT 2024 -hamcrest-core-2.2.pom>central= diff --git a/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom b/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom deleted file mode 100644 index de574f4e6..000000000 --- a/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - 4.0.0 - org.hamcrest - hamcrest-core - 2.2 - Hamcrest Core - Core Hamcrest API - deprecated, please use "hamcrest" instead - http://hamcrest.org/JavaHamcrest/ - - - BSD License 3 - http://opensource.org/licenses/BSD-3-Clause - - - - - joewalnes - Joe Walnes - - - npryce - Nat Pryce - - - sf105 - Steve Freeman - - - - git@github.com:hamcrest/JavaHamcrest.git - https://github.com/hamcrest/JavaHamcrest - - - - org.hamcrest - hamcrest - 2.2 - compile - - - diff --git a/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom.sha1 b/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom.sha1 deleted file mode 100644 index 46f902e7e..000000000 --- a/code/arachne/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -399ab31a6a84f36c84a9f50b9ba82fd890436391 \ No newline at end of file diff --git a/code/arachne/org/hamcrest/hamcrest/2.2/_remote.repositories b/code/arachne/org/hamcrest/hamcrest/2.2/_remote.repositories deleted file mode 100644 index 8b4a3c553..000000000 --- a/code/arachne/org/hamcrest/hamcrest/2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:08 EDT 2024 -hamcrest-2.2.pom>central= diff --git a/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom b/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom deleted file mode 100644 index 89489bc7d..000000000 --- a/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom +++ /dev/null @@ -1,35 +0,0 @@ - - - 4.0.0 - org.hamcrest - hamcrest - 2.2 - Hamcrest - Core API and libraries of hamcrest matcher framework. - http://hamcrest.org/JavaHamcrest/ - - - BSD License 3 - http://opensource.org/licenses/BSD-3-Clause - - - - - joewalnes - Joe Walnes - - - npryce - Nat Pryce - - - sf105 - Steve Freeman - - - - git@github.com:hamcrest/JavaHamcrest.git - https://github.com/hamcrest/JavaHamcrest - - diff --git a/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom.sha1 b/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom.sha1 deleted file mode 100644 index 63a50066f..000000000 --- a/code/arachne/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -98624f676c4d263b568816b0af5d4f552a2d0501 \ No newline at end of file diff --git a/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom b/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom deleted file mode 100644 index 6bb9e4bd0..000000000 --- a/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom +++ /dev/null @@ -1,268 +0,0 @@ - - - 4.0.0 - - org.hdrhistogram - HdrHistogram - 2.1.12 - - HdrHistogram - - http://hdrhistogram.github.io/HdrHistogram/ - - - HdrHistogram supports the recording and analyzing sampled data value - counts across a configurable integer value range with configurable value - precision within the range. Value precision is expressed as the number of - significant digits in the value recording, and provides control over value - quantization behavior across the value range and the subsequent value - resolution at any given level. - - - - - - * This code was Written by Gil Tene of Azul Systems, and released to the - * public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/ - - Public Domain, per Creative Commons CC0 - http://creativecommons.org/publicdomain/zero/1.0/ - - - BSD-2-Clause - https://opensource.org/licenses/BSD-2-Clause - - - - - - giltene - Gil Tene - https://github.com/giltene - - - - - scm:git:git://github.com/HdrHistogram/HdrHistogram.git - scm:git:git://github.com/HdrHistogram/HdrHistogram.git - scm:git:git@github.com:HdrHistogram/HdrHistogram.git - HdrHistogram-2.1.12 - - - - - https://github.com/HdrHistogram/HdrHistogram/issues - GitHub Issues - - - bundle - - - UTF-8 - src/main/java/org/HdrHistogram/Version.java.template - src/main/java/org/HdrHistogram/Version.java - - 4.12 - 5.5.2 - 5.5.2 - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - - - - org.apache.felix - maven-bundle-plugin - 2.5.3 - true - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - true - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.0.0-M1 - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - 1.7 - 1.7 - UTF-8 - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0-M3 - - false - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - true - false - release - deploy - - - - com.google.code.maven-replacer-plugin - maven-replacer-plugin - 1.4.0 - - - process-sources - - replace - - - - - ${version.template.file} - ${version.file} - - - \$BUILD_TIME\$ - ${maven.build.timestamp} - - - \$VERSION\$ - ${project.version} - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.8 - - - copy-installed - package - - copy - - - - - ${project.groupId} - ${project.artifactId} - ${project.version} - ${project.packaging} - HdrHistogram.jar - - - ${project.basedir} - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.7 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - - org.junit.jupiter - junit-jupiter-api - ${junit.jupiter.version} - test - - - org.junit.jupiter - junit-jupiter-params - ${junit.jupiter.version} - test - - - junit - junit - ${junit.version} - test - - - org.junit.jupiter - junit-jupiter-engine - ${junit.jupiter.version} - test - - - org.junit.vintage - junit-vintage-engine - ${junit.vintage.version} - test - - - - diff --git a/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom.sha1 b/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom.sha1 deleted file mode 100644 index 0c5ef577b..000000000 --- a/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9797702ee3e52e4be6bfbbc9fd20ac5447e7a541 \ No newline at end of file diff --git a/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/_remote.repositories b/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/_remote.repositories deleted file mode 100644 index be1e7071a..000000000 --- a/code/arachne/org/hdrhistogram/HdrHistogram/2.1.12/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:53 EDT 2024 -HdrHistogram-2.1.12.pom>central= diff --git a/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/_remote.repositories b/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/_remote.repositories deleted file mode 100644 index 51a6775ae..000000000 --- a/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:01 EDT 2024 -hibernate-commons-annotations-6.0.6.Final.pom>central= diff --git a/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom b/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom deleted file mode 100644 index 166731324..000000000 --- a/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - 4.0.0 - org.hibernate.common - hibernate-commons-annotations - 6.0.6.Final - Hibernate Commons Annotations - Common reflection code used in support of annotation processing - http://hibernate.org - - Hibernate.org - http://hibernate.org - - - - GNU Library General Public License v2.1 or later - http://www.opensource.org/licenses/LGPL-2.1 - repo - See discussion at http://hibernate.org/community/license/ for more details. - - - - - hibernate-team - The Hibernate Development Team - Hibernate.org - http://hibernate.org - - - - scm:git:http://github.com/hibernate/hibernate-commons-annotations.git - scm:git:git@github.com:hibernate/hibernate-commons-annotations.git - http://github.com/hibernate/hibernate-commons-annotations - - - jira - https://hibernate.atlassian.net/browse/HCANN - - diff --git a/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom.sha1 b/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom.sha1 deleted file mode 100644 index 35d24a503..000000000 --- a/code/arachne/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dd707f7aeac4e43c47b88ae6a5580bf04871e40f \ No newline at end of file diff --git a/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/_remote.repositories b/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/_remote.repositories deleted file mode 100644 index 0e989ceb3..000000000 --- a/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:04 EDT 2024 -hibernate-validator-8.0.1.Final.pom>central= diff --git a/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom b/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom deleted file mode 100644 index fee19e5d0..000000000 --- a/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom +++ /dev/null @@ -1,25 +0,0 @@ - - - - 4.0.0 - - org.hibernate.validator - hibernate-validator-relocation - 8.0.1.Final - - - org.hibernate - hibernate-validator - Hibernate Validator Engine - Relocation Artifact - - - - org.hibernate.validator - - - diff --git a/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 b/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 deleted file mode 100644 index 4529ae3e4..000000000 --- a/code/arachne/org/hibernate/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -15eff2861af28fd2edf398bc0752dd47adb4fa70 \ No newline at end of file diff --git a/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/_remote.repositories b/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/_remote.repositories deleted file mode 100644 index 0fe23f9a7..000000000 --- a/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:01 EDT 2024 -hibernate-core-6.4.4.Final.pom>central= diff --git a/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom b/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom deleted file mode 100644 index 2a7aa9ebc..000000000 --- a/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom +++ /dev/null @@ -1,183 +0,0 @@ - - - 4.0.0 - org.hibernate.orm - hibernate-core - 6.4.4.Final - Hibernate ORM - hibernate-core - Hibernate's core ORM functionality - https://hibernate.org/orm - - Hibernate.org - https://hibernate.org - - - - GNU Library General Public License v2.1 or later - https://www.opensource.org/licenses/LGPL-2.1 - repo - See discussion at https://hibernate.org/community/license/ for more details. - - - - - hibernate-team - The Hibernate Development Team - Hibernate.org - https://hibernate.org - - - - scm:git:https://github.com/hibernate/hibernate-orm.git - scm:git:git@github.com:hibernate/hibernate-orm.git - https://github.com/hibernate/hibernate-orm - - - jira - https://hibernate.atlassian.net/browse/HHH - - - - - org.apache.logging.log4j - log4j-core - [2.17.1, 3) - - - - - - jakarta.persistence - jakarta.persistence-api - 3.1.0 - compile - - - xml-apis - xml-apis - - - - - jakarta.transaction - jakarta.transaction-api - 2.0.1 - compile - - - xml-apis - xml-apis - - - - - org.jboss.logging - jboss-logging - 3.5.0.Final - runtime - - - xml-apis - xml-apis - - - - - org.hibernate.common - hibernate-commons-annotations - 6.0.6.Final - runtime - - - xml-apis - xml-apis - - - - - io.smallrye - jandex - 3.1.2 - runtime - - - xml-apis - xml-apis - - - - - com.fasterxml - classmate - 1.5.1 - runtime - - - xml-apis - xml-apis - - - - - net.bytebuddy - byte-buddy - 1.14.11 - runtime - - - xml-apis - xml-apis - - - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - runtime - - - xml-apis - xml-apis - - - - - org.glassfish.jaxb - jaxb-runtime - 4.0.2 - runtime - - - xml-apis - xml-apis - - - - - jakarta.inject - jakarta.inject-api - 2.0.1 - runtime - - - xml-apis - xml-apis - - - - - org.antlr - antlr4-runtime - 4.13.0 - runtime - - - xml-apis - xml-apis - - - - - diff --git a/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom.sha1 b/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom.sha1 deleted file mode 100644 index 2f18232ba..000000000 --- a/code/arachne/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -328422c000874cac5d5605324c036384c9a2a266 \ No newline at end of file diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/_remote.repositories b/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/_remote.repositories deleted file mode 100644 index 4a85081fb..000000000 --- a/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:54 EDT 2024 -hibernate-validator-parent-8.0.1.Final.pom>central= diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom b/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom deleted file mode 100644 index 1dfe99d8d..000000000 --- a/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom +++ /dev/null @@ -1,1562 +0,0 @@ - - - - 4.0.0 - - org.hibernate.validator - hibernate-validator-parent - 8.0.1.Final - pom - - Hibernate Validator Aggregator - http://hibernate.org/validator - Aggregator of the Hibernate Validator modules. - - - - epbernard - Emmanuel Bernard - emmanuel@hibernate.org - Red Hat, Inc. - http://in.relation.to/emmanuel-bernard/ - - - hardy.ferentschik - Hardy Ferentschik - hferents@redhat.com - Red Hat, Inc. - http://in.relation.to/hardy-ferentschik/ - - - gunnar.morling - Gunnar Morling - gunnar@hibernate.org - Red Hat, Inc. - http://in.relation.to/gunnar-morling/ - - - kevinpollet - Kevin Pollet - kevin.pollet@serli.com - SERLI - http://www.serli.com/ - - - davide.dalto - Davide D'Alto - davide@hibernate.org - Red Hat, Inc. - http://in.relation.to/davide-dalto/ - - - guillaume.smet - Guillaume Smet - guillaume.smet@hibernate.org - Red Hat, Inc. - http://in.relation.to/guillaume-smet/ - - - marko.bekhta - Marko Bekhta - marko.prykladna@gmail.com - http://in.relation.to/marko-bekhta/ - - - - - - George Gastaldi - gegastaldi@gmail.com - - - - - - hibernate-dev - hibernate-dev@lists.jboss.org - - - - - test-utils - build-config - engine - tck-runner - annotation-processor - performance - cdi - modules - integration - - - - - - 6.0.10.Final - - - - https://jakarta.ee/specifications/bean-validation/3.0/jakarta-bean-validation-spec-3.0.html - https://docs.oracle.com/en/java/javase/11/docs/api - http://docs.oracle.com/javase/8/docs/technotes - https://jakarta.ee/specifications/platform/9/apidocs - https://openjfx.io/openjfx-docs/ - https://jakarta.ee/specifications/bean-validation/3.0/apidocs - http://javamoney.github.io/apidocs - - - - org.hibernate.validator - org.hibernate.validator.cdi - - - - 3.0.2 - 3.0.1 - - 2.8 - 5.0.1 - 5.0.0 - 3.4.3.Final - 2.2.1.Final - - - 27.0.0.Alpha4 - - - - ${version.wildfly} - - - 1.5.1 - 2.9.7 - 1.7.22 - 2.17.1 - - - 4.0.1 - 5.1.1.Final - 5.0.0.Alpha3 - 4.0.1 - 2.1.0 - 2.1.1 - 2.0.1 - 3.1.0 - 3.1.0 - - - 1.0.1 - 1.1 - 1.3.2 - - - 1.2 - - - 11.0.2 - - - 1.7.0.Alpha10 - 6.14.3 - - 3.8.0 - 4.13.1 - 3.4 - 4.1.2 - 2.4.12 - 31.1-jre - 5.3.22 - 3.0.2.Final - 2.13.2.2 - 2.13.2 - 1.13.0 - - - 4.2.0 - 4.12.0 - 2.5.4 - 6.0.0 - 5.2020.2 - 2.3.1 - - 1 - - - 8.38 - - - - 2.2.2 - 1.0.6.Final - 2.0.0.Final - 9.3.2.0 - 2.5.3 - 1.5.0-alpha.18 - - - - 1.8 - 3.4.2 - 3.0.0 - 5.1.4 - 3.1.1 - 3.0.0 - 3.8.1 - 0.0.6 - 3.0.2 - 1.4.0 - 2.8.2 - 3.0.0 - 3.2 - 1.6 - 3.0.1 - 2.5.2 - 0.11.0 - 3.0.2 - 1.11.1 - 3.0.1 - 3.0 - 2.5.3 - 3.0.2 - 3.1.0 - 1.6 - 3.0.1 - 2.21.0 - 9.2 - ${version.surefire.plugin} - 1.2.1.Final - 14.0.0.Final - 2.1.0.Final - 5.0.3 - 1.6.8 - - - forbidden-junit.txt - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - https://oss.sonatype.org/ - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - https://repo.maven.apache.org/maven2/ - - - - . - - UTF-8 - UTF-8 - - - - 11 - ${java.home} - ${java-version.main.compiler.java_home}/bin/javac - - - - ${java.specification.version} - ${java.home} - ${java-version.test.compiler.java_home}/bin/javac - - ${java-version.test.compiler.java_home} - ${java-version.test.launcher.java_home}/bin/java - generate-test-sources - - - true - - - ${java-version.main.release} - ${java-version.main.release} - ${java-version.test.release} - ${java-version.test.release} - ${java-version.main.release} - ${java-version.test.release} - - - - - - - - - - - -Dmaven.repo.local=${settings.localRepository} - - ${surefire.jvm.args.additional} ${surefire.jvm.args.add-opens} ${surefire.jvm.args.illegal-access} ${surefire.jvm.args.shrinkwrap} ${surefire.jvm.args.java-version} ${surefire.jvm.args.commandline} - ${surefire.jvm.args.additional} ${surefire.jvm.args.add-opens} ${surefire.jvm.args.illegal-access} ${surefire.jvm.args.shrinkwrap} ${surefire.jvm.args.java-version} ${surefire.jvm.args.commandline} - - - default - - - - -Duser.language=en ${arquillian.wildfly.jvm.args.add-opens} ${arquillian.wildfly.jvm.args.add-modules} - - - 17 - 3.3.1 - - - - - - ${project.groupId} - hibernate-validator - ${project.version} - - - ${project.groupId} - hibernate-validator-test-utils - ${project.version} - - - ${project.groupId} - hibernate-validator-cdi - ${project.version} - - - ${project.groupId} - hibernate-validator-annotation-processor - ${project.version} - - - ${project.groupId} - hibernate-validator-modules - ${project.version} - wildfly-${version.wildfly}-patch - zip - - - - jakarta.validation - jakarta.validation-api - ${version.jakarta.validation-api} - - - org.jboss.logging - jboss-logging - ${version.org.jboss.logging.jboss-logging} - - - org.jboss.logging - jboss-logging-processor - ${version.org.jboss.logging.jboss-logging-tools} - - - org.jboss.logging - jboss-logging-annotations - ${version.org.jboss.logging.jboss-logging-tools} - - - org.glassfish.expressly - expressly - ${version.org.glassfish.expressly} - - - com.fasterxml - classmate - ${version.com.fasterxml.classmate} - - - joda-time - joda-time - ${version.joda-time} - - - javax.money - money-api - ${version.javax.money} - - - org.javamoney - moneta - ${version.org.javamoney.moneta} - - - org.openjfx - javafx-base - ${version.org.openjfx} - - - net.bytebuddy - byte-buddy - ${version.net.bytebuddy.byte-buddy} - - - org.osgi - org.osgi.core - ${version.org.osgi.core} - - - org.apache.logging.log4j - log4j-core - ${version.org.apache.logging.log4j} - - - org.apache.logging.log4j - log4j-core - test-jar - ${version.org.apache.logging.log4j} - - - org.slf4j - slf4j-api - ${version.org.slf4j} - - - org.apache.logging.log4j - log4j-slf4j-impl - ${version.org.apache.logging.log4j} - - - jakarta.persistence - jakarta.persistence-api - ${version.jakarta.persistence-api} - - - junit - junit - ${version.junit} - - - org.testng - testng - ${version.org.testng} - - - org.codehaus.groovy - groovy-jsr223 - ${version.org.codehaus.groovy} - - - org.easymock - easymock - ${version.org.easymock} - - - org.assertj - assertj-core - ${version.org.assertj.assertj-core} - - - io.rest-assured - rest-assured - ${version.io.rest-assured} - - - org.jboss.arquillian - arquillian-bom - ${version.org.jboss.arquillian} - pom - import - - - jakarta.annotation - jakarta.annotation-api - ${version.jakarta.annotation-api} - - - javax.annotation - javax.annotation-api - ${version.javax.annotation-api} - - - jakarta.inject - jakarta.inject-api - ${version.jakarta.inject-api} - - - jakarta.ws.rs - jakarta.ws.rs-api - ${version.jakarta.ws.rs-api} - - - jakarta.interceptor - jakarta.interceptor-api - ${version.jakarta.interceptor-api} - - - jakarta.ejb - jakarta.ejb-api - ${version.jakarta.ejb-api} - - - jakarta.enterprise - jakarta.enterprise.cdi-api - ${version.jakarta.enterprise.cdi-api} - - - jakarta.interceptor - jakarta.interceptor-api - - - jakarta.el - jakarta.el-api - - - - - org.jboss.weld - weld-core-impl - ${version.org.jboss.weld.weld} - - - org.wildfly.arquillian - wildfly-arquillian-container-managed - ${version.org.wildfly.arquillian} - - - sun.jdk - jconsole - - - - - org.jboss.arquillian.container - arquillian-weld-embedded - ${version.org.jboss.arquillian.container.arquillian-weld-embedded} - test - - - com.thoughtworks.paranamer - paranamer - ${version.com.thoughtworks.paranamer} - - - com.google.guava - guava - ${version.com.google.guava} - test - - - org.springframework - spring-expression - ${version.org.springframework.spring-expression} - test - - - com.fasterxml.jackson.core - jackson-databind - ${version.com.fasterxml.jackson.core.jackson-databind} - test - - - com.fasterxml.jackson.core - jackson-annotations - ${version.com.fasterxml.jackson.core.jackson-annotations} - test - - - javax.inject - javax.inject - ${version.javax.inject} - - - - - - - - maven-enforcer-plugin - ${version.enforcer.plugin} - - - enforce-java - - enforce - - - - - [${jdk.min.version},) - - - ${maven.min.version} - - - - javax.validation:validation-api - org.glassfish:javax.el - javax.annotation:javax.annotation-api - org.jboss.spec.javax.interceptor:jboss-interceptors-api_1.2_spec - javax.enterprise:cdi-api - javax.persistence:javax.persistence-api - - - javax.annotation:javax.annotation-api:*:*:test - - - - - - - - - com.mycila - license-maven-plugin - - - - - - maven-antrun-plugin - ${version.antrun.plugin} - - - maven-clean-plugin - ${version.clean.plugin} - - - maven-jar-plugin - ${version.jar.plugin} - - - - ${project.artifactId} - ${project.version} - ${project.parent.groupId} - ${project.parent.groupId} - http://hibernate.org/validator/ - - - - - - maven-compiler-plugin - ${version.compiler.plugin} - - - -Aorg.jboss.logging.tools.addGeneratedAnnotation=false - - -parameters - - - - default-compile - - true - ${java-version.main.compiler} - - - - default-testCompile - - true - ${java-version.test.compiler} - - - - - - maven-checkstyle-plugin - ${version.checkstyle.plugin} - - - ${project.groupId} - hibernate-validator-build-config - ${project.version} - - - - com.puppycrawl.tools - checkstyle - ${puppycrawl.checkstyle.version} - - - org.slf4j - jcl-over-slf4j - ${version.org.slf4j} - - - org.slf4j - slf4j-jdk14 - ${version.org.slf4j} - - - - checkstyle.xml - true - true - error - true - false - true - **/*.xml,**/*.properties - - - **/org/hibernate/validator/internal/xml/binding/*.java, - **/Log_$logger.java, - **/Messages_$bundle.java, - **/ConcurrentReferenceHashMap.java, - **/TypeHelper*.java, - **/TckRunner.java - - - - - check-style - verify - - check - - - - - - de.thetaphi - forbiddenapis - ${version.forbiddenapis.plugin} - - - false - true - - **.IgnoreForbiddenApisErrors - - - - org.hibernate.validator - hibernate-validator-build-config - ${project.version} - jar - forbidden-common.txt - - - org.hibernate.validator - hibernate-validator-build-config - ${project.version} - jar - ${forbiddenapis-junit.path} - - - - - - check-main - - check - - verify - - - - jdk-system-out - jdk-non-portable - - - jdk-unsafe-1.8 - jdk-unsafe-9 - jdk-unsafe-10 - jdk-unsafe-11 - jdk-unsafe-12 - jdk-unsafe-13 - jdk-unsafe-14 - jdk-unsafe-15 - jdk-unsafe-16 - jdk-unsafe-17 - - jdk-deprecated-1.8 - jdk-deprecated-9 - jdk-deprecated-10 - jdk-deprecated-11 - jdk-deprecated-12 - jdk-deprecated-13 - jdk-deprecated-14 - jdk-deprecated-15 - jdk-deprecated-16 - jdk-deprecated-17 - - jdk-internal-1.8 - jdk-internal-9 - jdk-internal-10 - jdk-internal-11 - jdk-internal-12 - jdk-internal-13 - jdk-internal-14 - jdk-internal-15 - jdk-internal-16 - jdk-internal-17 - - - - - check-test - - testCheck - - verify - - - jdk-deprecated - - - - - - - com.mycila - license-maven-plugin - ${version.license.plugin} - -
    ${hibernate-validator-parent.path}/build-config/src/main/resources/license.header
    - true - - ${hibernate-validator-parent.path}/build-config/src/main/resources/java-header-style.xml - ${hibernate-validator-parent.path}/build-config/src/main/resources/xml-header-style.xml - - - JAVA_CLASS_STYLE - XML_FILE_STYLE - - - - **/org/hibernate/validator/internal/util/TypeHelper.java - **/org/hibernate/validator/test/internal/util/TypeHelperTest.java - **/settings-example.xml - **/src/test/resources/org/hibernate/validator/referenceguide/**/*.* - **/org/hibernate/validator/referenceguide/**/*.* - **/src/test/resources/org/hibernate/validator/test/internal/xml/**/*.xml - .mvn/** - - - **/*.java - **/*.xml - -
    - - - license-headers - - check - - - -
    - - maven-surefire-plugin - ${version.surefire.plugin} - - once - true - - **/*Test.java - - ${java-version.test.launcher} - ${surefire.jvm.args} - ${surefire.environment} - - - ${java-version.test.launcher.java_home} - - - - - - org.ow2.asm - asm - ${version.surefire.plugin.java-version.asm} - - - - - maven-surefire-report-plugin - ${version.surefire.plugin} - - - generate-test-report - test - - report-only - - - - - ${project.build.directory}/surefire-reports - test-report - - - - maven-failsafe-plugin - ${version.failsafe.plugin} - - ${java-version.test.launcher} - ${failsafe.jvm.args} - ${surefire.environment} - - - ${java-version.test.launcher.java_home} - - - - - - org.ow2.asm - asm - ${version.surefire.plugin.java-version.asm} - - - - - maven-dependency-plugin - ${version.dependency.plugin} - - - maven-install-plugin - ${version.install.plugin} - - - maven-assembly-plugin - ${version.assembly.plugin} - - - maven-release-plugin - ${version.release.plugin} - - clean install - true - true - false - true - @{project.version} - documentation-pdf - - - - org.asciidoctor - asciidoctor-maven-plugin - ${version.asciidoctor.plugin} - - - org.jruby - jruby-complete - ${version.org.jruby} - - - org.asciidoctor - asciidoctorj - ${version.org.asciidoctor.asciidoctorj} - - - org.asciidoctor - asciidoctorj-pdf - ${version.org.asciidoctor.asciidoctorj-pdf} - - - org.hibernate.infra - hibernate-asciidoctor-extensions - ${version.org.hibernate.infra.hibernate-asciidoctor-extensions} - - - - - ch.mfrey.maven.plugin - copy-maven-plugin - ${version.copy.plugin} - - - org.apache.felix - maven-bundle-plugin - ${version.bundle.plugin} - - - maven-source-plugin - ${version.source.plugin} - - - maven-javadoc-plugin - ${version.javadoc.plugin} - - true - true - - Red Hat, Inc. All Rights Reserved]]> - - - - maven-deploy-plugin - ${version.deploy.plugin} - - - true - - - - maven-gpg-plugin - ${version.gpg.plugin} - - - maven-resources-plugin - ${version.resources.plugin} - - - false - - ${*} - - - - - org.codehaus.gmavenplus - gmavenplus-plugin - ${version.gmavenplus.plugin} - - - org.codehaus.groovy - groovy-all - ${version.org.codehaus.groovy} - - - - - org.apache.servicemix.tooling - depends-maven-plugin - ${version.depends.plugin} - - - org.codehaus.mojo - build-helper-maven-plugin - ${version.buildhelper.plugin} - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${version.japicmp.plugin} - - - - org.hibernate.validator - ${project.artifactId} - ${previous.stable} - ${project.packaging} - - - true - - - ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} - - - - true - - org.hibernate.validator.internal.* - - - - - - - org.apache.maven.plugins - maven-shade-plugin - ${version.shade.plugin} - - - - org.jboss.as - patch-gen-maven-plugin - ${version.wildfly-patch-gen.plugin} - - - com.fasterxml.woodstox - woodstox-core - ${version.wildfly-patch-gen.plugin.woodstox} - - - - - org.wildfly.plugins - wildfly-maven-plugin - ${version.wildfly.plugin} - - - - org.wildfly.core - wildfly-patching - ${version.org.wildfly.core} - - - org.wildfly.core - wildfly-cli - ${version.org.wildfly.core} - - - - - org.netbeans.tools - sigtest-maven-plugin - ${version.sigtest.plugin} - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.asciidoctor - - - asciidoctor-maven-plugin - - - [2.2.2,) - - - - process-asciidoc - - - - - - - - - - - org.jboss.maven.plugins - - - maven-injection-plugin - - - [1.0.2,) - - - bytecode - - - - - - - - - - org.codehaus.gmavenplus - - - gmavenplus-plugin - - - [1.5,) - - - execute - - - - - - - - - org.apache.servicemix.tooling - depends-maven-plugin - [1.2,) - - generate-depends-file - - - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - [2.0,) - - copy-dependencies - copy - unpack - - - - - - - - - - -
    -
    -
    - - - Jenkins - http://ci.hibernate.org/view/Validator/ - - - - JIRA - https://hibernate.atlassian.net/projects/HV/summary - - - 2007 - - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - scm:git:git://github.com/hibernate/hibernate-validator.git - scm:git:git@github.com:hibernate/hibernate-validator.git - http://github.com/hibernate/hibernate-validator - HEAD - - - - - ${ossrh.releases.repo.id} - OSSRH Releases Repository - ${ossrh.releases.repo.url} - - - ${ossrh.snapshots.repo.id} - OSSRH Snapshots Repository - ${ossrh.snapshots.repo.url} - - - - - - docs - - - disableDocumentationBuild - !true - - - - documentation - - - - dist - - - disableDistributionBuild - !true - - - - distribution - - - - relocation - - relocation - - - - release - - - - maven-enforcer-plugin - - - enforce-release-rules - - enforce - - - - - - [17,18) - - - true - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${version.nexus-staging-maven-plugin} - true - - ${ossrh.releases.repo.baseUrl} - ${ossrh.releases.repo.id} - 60 - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - ${env.RELEASE_GPG_HOMEDIR} - ${env.RELEASE_GPG_PASSPHRASE} - - - - - - - - - testWithJdk11 - - - java-version.test.release - 11 - - - - - none - - - - testWithJdk11+ - - - java-version.test.release - !8 - - - - - --add-modules=java.se - - - - --add-opens=java.base/java.lang=ALL-UNNAMED - --add-opens=java.base/java.lang.reflect=ALL-UNNAMED - --add-opens=java.base/java.security=ALL-UNNAMED - --add-opens=java.base/java.math=ALL-UNNAMED - --add-opens=java.base/java.io=ALL-UNNAMED - --add-opens=java.base/java.net=ALL-UNNAMED - --add-opens=java.base/java.util=ALL-UNNAMED - --add-opens=java.base/java.util.concurrent=ALL-UNNAMED - --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED - --add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED - --add-opens=java.base/jdk.internal.reflect=ALL-UNNAMED - --add-opens=java.management/javax.management=ALL-UNNAMED - --add-opens=java.management/javax.management.openmbean=ALL-UNNAMED - --add-opens=java.naming/javax.naming=ALL-UNNAMED - - - - - - - org.wildfly.plugins - wildfly-maven-plugin - - - --add-opens=java.base/java.lang=ALL-UNNAMED - --add-opens=java.base/java.security=ALL-UNNAMED - --add-opens=java.base/java.io=ALL-UNNAMED - --add-modules=java.se - - - - - org.jboss.as - patch-gen-maven-plugin - - - --add-modules=java.se - - - - - - - - - testWithJdk20 - - - java-version.test.release - 20 - - - - - true - - - - testWithJdk21 - - - java-version.test.release - 21 - - - - - true - - -Dnet.bytebuddy.experimental=true - - - - testWithJdk22 - - - java-version.test.release - 22 - - - - - true - - -Dnet.bytebuddy.experimental=true - - - - jqassistant - - - - - com.buschmais.jqassistant - jqassistant-maven-plugin - ${version.jqassistant.plugin} - - - - scan - analyze - - - true - - - - - - - - - IDEA - - - - idea.maven.embedder.version - - - - - ${java-version.test.release} - - - - - - maven-compiler-plugin - ${version.compiler.plugin} - - - -Aorg.jboss.logging.tools.addGeneratedAnnotation=false - - -parameters - - - - - - - - -
    diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom.sha1 b/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom.sha1 deleted file mode 100644 index 1dceb9ecd..000000000 --- a/code/arachne/org/hibernate/validator/hibernate-validator-parent/8.0.1.Final/hibernate-validator-parent-8.0.1.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -24dcbbec8d17dc077c1863732d3bdb67a014c36f \ No newline at end of file diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/_remote.repositories b/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/_remote.repositories deleted file mode 100644 index ea10bba01..000000000 --- a/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:04 EDT 2024 -hibernate-validator-relocation-8.0.1.Final.pom>central= diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom b/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom deleted file mode 100644 index ce7e16b0e..000000000 --- a/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom +++ /dev/null @@ -1,27 +0,0 @@ - - - - 4.0.0 - - org.hibernate.validator - hibernate-validator-parent - 8.0.1.Final - - - hibernate-validator-relocation - pom - - Hibernate Validator Relocation Artifacts - - - annotation-processor - cdi - engine - karaf-features - - diff --git a/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom.sha1 b/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom.sha1 deleted file mode 100644 index e7d987c88..000000000 --- a/code/arachne/org/hibernate/validator/hibernate-validator-relocation/8.0.1.Final/hibernate-validator-relocation-8.0.1.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5107fa7b411dc428616d2a79badc888f2d92bcf0 \ No newline at end of file diff --git a/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/_remote.repositories b/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/_remote.repositories deleted file mode 100644 index 07046ac2b..000000000 --- a/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:54 EDT 2024 -hibernate-validator-8.0.1.Final.pom>central= diff --git a/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom b/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom deleted file mode 100644 index f0e4d3b99..000000000 --- a/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom +++ /dev/null @@ -1,349 +0,0 @@ - - - - 4.0.0 - - - org.hibernate.validator - hibernate-validator-parent - 8.0.1.Final - ../pom.xml - - - hibernate-validator - - Hibernate Validator Engine - Hibernate's Jakarta Bean Validation reference implementation. - - - .. - -Duser.language=en - - - - - site - http://hibernate.org/validator - - - - - - - jakarta.validation - jakarta.validation-api - - - org.jboss.logging - jboss-logging - - - com.fasterxml - classmate - - - - - org.glassfish.expressly - expressly - provided - - - org.jboss.logging - jboss-logging-processor - - provided - - - org.jboss.logging - jboss-logging-annotations - provided - - - - - jakarta.persistence - jakarta.persistence-api - true - - - joda-time - joda-time - true - - - com.thoughtworks.paranamer - paranamer - true - - - javax.money - money-api - true - - - - org.openjfx - javafx-base - - true - - - - - org.testng - testng - test - - - ${project.groupId} - hibernate-validator-test-utils - test - - - org.apache.logging.log4j - log4j-core - test - - - org.apache.logging.log4j - log4j-core - test - test-jar - - - org.easymock - easymock - test - - - org.codehaus.groovy - groovy-jsr223 - test - - - org.assertj - assertj-core - test - - - org.jboss.shrinkwrap - shrinkwrap-impl-base - test - - - org.javamoney - moneta - test - - - javax.annotation - javax.annotation-api - - - - - - javax.annotation - javax.annotation-api - test - - - com.fasterxml.jackson.core - jackson-databind - test - - - com.fasterxml.jackson.core - jackson-annotations - test - - - net.bytebuddy - byte-buddy - test - - - - - test - - - src/main/resources - - - src/main/xsd - META-INF - - - - - true - src/test/resources - - META-INF/services/* - **/*.properties - **/*.xml - - - - - - maven-checkstyle-plugin - - - de.thetaphi - forbiddenapis - - - maven-jar-plugin - - - default-jar - package - - jar - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - Jakarta Bean Validation - 3.0 - ${hibernate-validator.module-name} - - - - - - - - org.apache.felix - maven-bundle-plugin - - - ${hibernate-validator.module-name} - - jakarta.persistence.*;version="[3.0.0,4.0.0)";resolution:=optional, - jakarta.validation.*;version="[3.0.0,4.0.0)", - javax.script.*;version="0", - javax.xml.*;version="0", - jakarta.el.*;version="[5.0.0,6.0.0)";resolution:=optional, - com.sun.el.*;version="[5.0.0,6.0.0)";resolution:=optional, - org.xml.sax.*;version="0", - org.jboss.logging.*;version="[3.1.0,4.0.0)", - com.fasterxml.classmate.*;version="[1.3,2.0.0)", - org.joda.time.*;version="[2.0.0,3.0.0)";resolution:=optional, - javax.money;version="[1.0.0,2.0.0)";resolution:=optional, - com.thoughtworks.paranamer.*;version="[2.5.5,3.0.0)";resolution:=optional - - - org.hibernate.validator;version="${project.version}", - org.hibernate.validator.cfg.*;version="${project.version}", - org.hibernate.validator.constraints.*;version="${project.version}", - org.hibernate.validator.constraintvalidation.*;version="${project.version}", - org.hibernate.validator.constraintvalidators.*;version="${project.version}", - org.hibernate.validator.engine.*;version="${project.version}", - org.hibernate.validator.group;version="${project.version}", - org.hibernate.validator.messageinterpolation;version="${project.version}", - org.hibernate.validator.metadata;version="${project.version}", - org.hibernate.validator.parameternameprovider;version="${project.version}", - org.hibernate.validator.path;version="${project.version}", - org.hibernate.validator.resourceloading;version="${project.version}", - org.hibernate.validator.spi.*;version="${project.version}" - - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - tests - 4 - - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-release-plugin - - - com.github.siom79.japicmp - japicmp-maven-plugin - - false - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-test-source-java17 - ${java-version.test.java17.add-test-source-phase} - - add-test-source - - - - src/test/java17 - - - - - - - - - - testWithJdk11+ - - - java-version.test.release - !8 - - - - --illegal-access=deny - - - - diff --git a/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 b/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 deleted file mode 100644 index 6cde2fc47..000000000 --- a/code/arachne/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ebb72685a6e1c06e75d94e7b83e1b5845332dead \ No newline at end of file diff --git a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/_remote.repositories b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/_remote.repositories deleted file mode 100644 index a2065f5b1..000000000 --- a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:26 EDT 2024 -infinispan-bom-14.0.27.Final.pom>ohdsi= diff --git a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom deleted file mode 100644 index c795e0a55..000000000 --- a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom +++ /dev/null @@ -1,560 +0,0 @@ - - - 4.0.0 - - - org.infinispan - infinispan-build-configuration-parent - 14.0.27.Final - ../configuration/pom.xml - - - infinispan-bom - pom - - Infinispan BOM - Infinispan BOM module - http://www.infinispan.org - - JBoss, a division of Red Hat - http://www.jboss.org - - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - placeholder - See http://www.infinispan.org for a complete list of contributors - - - - - Infinispan Issues - https://lists.jboss.org/mailman/listinfo/infinispan-issues - https://lists.jboss.org/mailman/listinfo/infinispan-issues - infinispan-issues@lists.jboss.org - http://lists.jboss.org/pipermail/infinispan-issues/ - - - Infinispan Developers - https://lists.jboss.org/mailman/listinfo/infinispan-dev - https://lists.jboss.org/mailman/listinfo/infinispan-dev - infinispan-dev@lists.jboss.org - http://lists.jboss.org/pipermail/infinispan-dev/ - - - - scm:git:git@github.com:infinispan/infinispan.git - scm:git:git@github.com:infinispan/infinispan.git - https://github.com/infinispan/infinispan - - - jira - https://issues.jboss.org/browse/ISPN - - - - ${version.console} - - - - - - org.infinispan - infinispan-api - ${version.infinispan} - - - org.infinispan - infinispan-cachestore-jdbc - ${version.infinispan} - - - org.infinispan - infinispan-cachestore-jdbc-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-cachestore-jdbc-common - ${version.infinispan} - - - org.infinispan - infinispan-cachestore-jdbc-common-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-cachestore-sql - ${version.infinispan} - - - org.infinispan - infinispan-cachestore-remote - ${version.infinispan} - - - org.infinispan - infinispan-cachestore-rocksdb - ${version.infinispan} - - - org.infinispan - infinispan-cdi-common - ${version.infinispan} - - - org.infinispan - infinispan-cdi-common-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-cdi-embedded - ${version.infinispan} - - - org.infinispan - infinispan-cdi-embedded-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-cdi-remote - ${version.infinispan} - - - org.infinispan - infinispan-cdi-remote-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-checkstyle - ${version.infinispan} - - - org.infinispan - infinispan-cli-client - ${version.infinispan} - - - org.infinispan - infinispan-cli-client-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-hotrod - ${version.infinispan} - - - org.infinispan - infinispan-hotrod-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-client-hotrod - ${version.infinispan} - - - org.infinispan - infinispan-client-hotrod-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-client-rest - ${version.infinispan} - - - org.infinispan - infinispan-client-rest-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-key-value-store-client - ${version.infinispan} - - - org.infinispan - infinispan-clustered-counter - ${version.infinispan} - - - org.infinispan - infinispan-clustered-lock - ${version.infinispan} - - - org.infinispan - infinispan-commons - ${version.infinispan} - - - org.infinispan - infinispan-commons-jakarta - ${version.infinispan} - - - - org.infinispan - infinispan-commons-test - ${version.infinispan} - - - org.infinispan - infinispan-component-annotations - ${version.infinispan} - provided - - - org.infinispan - infinispan-component-processor - ${version.infinispan} - - - org.infinispan - infinispan-core - ${version.infinispan} - - - org.infinispan - infinispan-core-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-jboss-marshalling - ${version.infinispan} - - - org.infinispan - infinispan-extended-statistics - ${version.infinispan} - - - org.infinispan - infinispan-hibernate-cache-commons - ${version.infinispan} - - - org.infinispan - infinispan-hibernate-cache-spi - ${version.infinispan} - - - org.infinispan - infinispan-hibernate-cache-v60 - ${version.infinispan} - - - org.infinispan - infinispan-hibernate-cache-v62 - ${version.infinispan} - - - org.infinispan - infinispan-jcache-commons - ${version.infinispan} - - - org.infinispan - infinispan-jcache - ${version.infinispan} - - - org.infinispan - infinispan-jcache-remote - ${version.infinispan} - - - org.infinispan - infinispan-console - ${versionx.org.infinispan.infinispan-console} - - - org.infinispan - infinispan-logging-annotations - ${version.infinispan} - provided - - - org.infinispan - infinispan-logging-processor - ${version.infinispan} - - - org.infinispan - infinispan-multimap - ${version.infinispan} - - - org.infinispan - infinispan-multimap-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-objectfilter - ${version.infinispan} - - - org.infinispan - infinispan-query-core - ${version.infinispan} - - - org.infinispan - infinispan-query - ${version.infinispan} - - - org.infinispan - infinispan-query-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-query-dsl - ${version.infinispan} - - - org.infinispan - infinispan-remote-query-client - ${version.infinispan} - - - org.infinispan - infinispan-remote-query-server - ${version.infinispan} - - - org.infinispan - infinispan-scripting - ${version.infinispan} - - - - org.infinispan - infinispan-server-core - ${version.infinispan} - - - - org.infinispan - infinispan-server-hotrod - ${version.infinispan} - - - org.infinispan - infinispan-server-hotrod-jakarta - ${version.infinispan} - - - - org.infinispan - infinispan-server-memcached - ${version.infinispan} - - - org.infinispan - infinispan-server-resp - ${version.infinispan} - - - - org.infinispan - infinispan-server-rest - ${version.infinispan} - - - - org.infinispan - infinispan-server-router - ${version.infinispan} - - - org.infinispan - infinispan-server-runtime - ${version.infinispan} - - - - org.infinispan - infinispan-server-runtime - ${version.infinispan} - loader - - - - org.infinispan - infinispan-server-testdriver-core - ${version.infinispan} - - - - org.infinispan - infinispan-server-testdriver-core-jakarta - ${version.infinispan} - - - - org.infinispan - infinispan-server-testdriver-junit4 - ${version.infinispan} - - - - org.infinispan - infinispan-server-testdriver-junit5 - ${version.infinispan} - - - - org.infinispan - infinispan-spring5-common - ${version.infinispan} - - - org.infinispan - infinispan-spring5-embedded - ${version.infinispan} - - - org.infinispan - infinispan-spring5-remote - ${version.infinispan} - - - org.infinispan - infinispan-spring-boot-starter-embedded - ${version.infinispan} - - - org.infinispan - infinispan-spring-boot-starter-remote - ${version.infinispan} - - - - org.infinispan - infinispan-spring6-common - ${version.infinispan} - - - org.infinispan - infinispan-spring6-embedded - ${version.infinispan} - - - org.infinispan - infinispan-spring6-remote - ${version.infinispan} - - - org.infinispan - infinispan-spring-boot3-starter-embedded - ${version.infinispan} - - - org.infinispan - infinispan-spring-boot3-starter-remote - ${version.infinispan} - - - - org.infinispan - infinispan-tasks - ${version.infinispan} - - - org.infinispan - infinispan-tasks-api - ${version.infinispan} - - - org.infinispan - infinispan-tools - ${version.infinispan} - - - org.infinispan - infinispan-tools-jakarta - ${version.infinispan} - - - org.infinispan - infinispan-anchored-keys - ${version.infinispan} - - - org.infinispan.protostream - protostream - ${version.protostream} - - - org.infinispan.protostream - protostream-types - ${version.protostream} - - - org.infinispan.protostream - protostream-processor - ${version.protostream} - - provided - - - org.infinispan - infinispan-cloudevents-integration - ${version.infinispan} - - - - - - - community - - - release-mode - !downstream - - - - - - org.infinispan - infinispan-marshaller-kryo - ${version.infinispan} - - - org.infinispan - infinispan-marshaller-kryo-bundle - ${version.infinispan} - - - org.infinispan - infinispan-marshaller-protostuff - ${version.infinispan} - - - org.infinispan - infinispan-marshaller-protostuff-bundle - ${version.infinispan} - - - - - - diff --git a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.lastUpdated b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.lastUpdated deleted file mode 100644 index 4cf703b28..000000000 --- a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:26 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.infinispan\:infinispan-bom\:pom\:14.0.27.Final from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139806045 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139806169 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139806309 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139806471 diff --git a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.sha1 b/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.sha1 deleted file mode 100644 index 7e4593de6..000000000 --- a/code/arachne/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -06a2defb74f878a79e708b38ab4f655f610341ff \ No newline at end of file diff --git a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/_remote.repositories b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/_remote.repositories deleted file mode 100644 index 48a71a04d..000000000 --- a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:26 EDT 2024 -infinispan-build-configuration-parent-14.0.27.Final.pom>ohdsi= diff --git a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom deleted file mode 100644 index 1e50cd99c..000000000 --- a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom +++ /dev/null @@ -1,519 +0,0 @@ - - - 4.0.0 - - - org.jboss - jboss-parent - 39 - - - - - org.infinispan - infinispan-build-configuration-parent - 14.0.27.Final - pom - - Infinispan Common Parent - Infinispan common parent POM module - http://www.infinispan.org - - JBoss, a division of Red Hat - http://www.jboss.org - - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - placeholder - See http://www.infinispan.org for a complete list of contributors - - - - - Infinispan Issues - https://lists.jboss.org/mailman/listinfo/infinispan-issues - https://lists.jboss.org/mailman/listinfo/infinispan-issues - infinispan-issues@lists.jboss.org - http://lists.jboss.org/pipermail/infinispan-issues/ - - - Infinispan Developers - https://lists.jboss.org/mailman/listinfo/infinispan-dev - https://lists.jboss.org/mailman/listinfo/infinispan-dev - infinispan-dev@lists.jboss.org - http://lists.jboss.org/pipermail/infinispan-dev/ - - - - scm:git:git@github.com:infinispan/infinispan.git - scm:git:git@github.com:infinispan/infinispan.git - https://github.com/infinispan/infinispan - - - jira - https://issues.jboss.org/browse/ISPN - - - Jenkins - https://ci.infinispan.org - - - mail -
    infinispan-commits@lists.jboss.org
    -
    -
    -
    - - - ${maven.snapshots.repo.id} - ${maven.snapshots.repo.url} - - - ${maven.releases.repo.id} - ${maven.releases.repo.url} - - - - - 11 - 11 - 11 - false - true - true - - - Infinispan - infinispan - infinispan - ${project.version} - Flying Saucer - ispn - 14.0 - ${infinispan.module.slot.prefix}-${infinispan.base.version} - ${infinispan.base.version} - community-operators - operatorhubio-catalog - infinispan - 9E31AB27445478DB - WildFly - wildfly - - - https://s01.oss.sonatype.org/ - ossrh - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ - ossrh - https://s01.oss.sonatype.org/content/repositories/snapshots - - - - - org.wildfly - 24.0.1.Final - - - 3.9.0 - 17 - - - 2.7 - 2.4 - 1.10.14 - 1.8.1 - 1.0b3 - 3.5.2 - 1.6.0.Final - 1.0.8.RELEASE - 1.70 - 4.0.21 - 3.1.8 - 1.26.0 - 14.0.15.Final - 6.3.1 - 2.3.1 - 2.0.1 - 2.4.21 - 1.3 - 6.2.0.Final - 6.1.5.Final - 14.0.27.Final - 1.2.0.Beta3 - 1.4.0.Final - 1.0.3.Final - 2.0.2 - 1.16 - 6.2.7.RELEASE - 1.0.0 - 2.15.4 - 2.15.2 - 0.8.11 - 2.1.1 - 1.3.3 - 2.0.1 - 2.0.2 - 3.1.0 - 1.1.1 - 3.5.3.Final - 2.2.1.Final - 2.1.4.Final - 5.0.6.CR1 - 5.13.1.Final - 3.0.6.Final - 1.2.6 - 2.0.0 - 3.1.6 - 1.0 - 5.2.23.Final - 1.0.12.Final - 1.1.0 - 4.13.2 - 1.9.3 - 5.9.2 - 2.22.1 - 8.11.3 - 1.8 - 1.9.17 - 5.3.1 - 1.14.9 - 3.3 - 15.4 - 4.1.107.Final - 0.0.25.Final - 3.14.9 - 1.23 - 3.0.1.Final - 16.0.1.Final - 2.2.3.Final - 2.2.5.Final - 2.2.2.SP01 - 2.2.2.SP01 - 2.2.2.Final - 2.2.2.Final - 9.6 - 5.0.3.Final - 2.5.5.SP12 - 4.6.5.Final - 1.6.2 - 1.0.4 - 7.1.2 - 3.1.8 - 2.10.0 - 1.0.5 - - - 0.15.0 - 2.1.12 - 2.0.3 - - 1.30.1 - 1.30.1-alpha - - 1.3.1 - - 5.3.32 - 2.7.18 - 2.7.2 - - - 6.0.10 - 3.1.1 - 3.1.1 - - 3.5.2 - 1.3.7 - 1.4.20 - - - 3.3.1 - 3.8.8 - 3.5.2 - 3.1.0 - 3.4.0 - 4.2.1 - 3.1.0 - 3.3.2 - 3.11.0 - 3.3.0 - 3.1.1 - 3.6.0 - 3.3.0 - 3.6.3 - 3.9.0 - 3.0.1 - 3.1.0 - 3.3.1 - 3.5.2 - 3.3.0 - 3.1.2 - 4.2.9.Final - 5.2.11.Final - 1.6.13 - 0.5.0 - - 3.21.2 - 8.3.1 - 4.7.3.6 - 2.4.8.Final - 3.1.1 - - - 10.12.7 - 7.0.0-rc3 - - - false - - - - - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${version.spotbugs.plugin} - - - org.owasp - dependency-check-maven - ${version.owasp-dependency-check-plugin} - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${version.sonatype.nexus-staging-plugin} - - true - ${infinispan.brand.name} ${project.version} release - ${maven.releases.nexus.url} - ${maven.releases.repo.id} - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.maven.javadoc} - - - javadoc - package - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.maven.gpg} - - - sign-artifacts - verify - - sign - - - ${infinispan.gpg.key} - ${infinispan.gpg.key} - - - - - - org.eclipse.transformer - transformer-maven-plugin - ${version.eclipse.transformer} - - - - - - - - jakarta-transform - - - ${basedir}/jakarta.txt - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - jakarta-transform - - regex-property - - - original.artifactId - ${project.artifactId} - \-jakarta$ - false - - - - - - org.eclipse.transformer - transformer-maven-plugin - true - - - true - - - - - default-jar - - jar - - package - - - ${project.groupId} - ${original.artifactId} - ${project.version} - - - - - source-jar - - jar - - package - - - ${project.groupId} - ${original.artifactId} - ${project.version} - sources - - - - - test-jar - - jar - - package - - ${transform.tests.skip} - - ${project.groupId} - ${original.artifactId} - ${project.version} - tests - - - - - test-source-jar - - jar - - package - - ${transform.tests.skip} - - ${project.groupId} - ${original.artifactId} - ${project.version} - test-sources - - - - - - - - - - community-release - - - release-mode - upstream - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${maven.javadoc.skip} - false - - - - org.eclipse.transformer - transformer-maven-plugin - - - true - - - - - javadoc-jar - - jar - - package - - - ${project.groupId} - ${original.artifactId} - ${project.version} - javadoc - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - - - - - - nexus-staging - - !skipNexusStaging - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - false - - - - - - - -
    diff --git a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.lastUpdated b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.lastUpdated deleted file mode 100644 index 31cef5a70..000000000 --- a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:26 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.infinispan\:infinispan-build-configuration-parent\:pom\:14.0.27.Final from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139806479 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139806588 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139806734 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139806890 diff --git a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.sha1 b/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.sha1 deleted file mode 100644 index 998f449f4..000000000 --- a/code/arachne/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e38791900f6ed8daa8355442f1acfabc5903c935 \ No newline at end of file diff --git a/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/_remote.repositories b/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/_remote.repositories deleted file mode 100644 index 0f062e013..000000000 --- a/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:22 EDT 2024 -cas-client-core-3.6.1.pom>central= diff --git a/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom b/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom deleted file mode 100644 index c800bad07..000000000 --- a/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom +++ /dev/null @@ -1,116 +0,0 @@ - - - - org.jasig.cas.client - 3.6.1 - cas-client - - 4.0.0 - cas-client-core - jar - Jasig CAS Client for Java - Core - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.1 - - - - test-jar - - - - - - - - - - xml-security - xmlsec - 1.3.0 - runtime - true - - - - com.fasterxml.jackson.core - jackson-databind - - - - org.springframework - spring-beans - ${spring.version} - provided - - - - org.springframework - spring-web - provided - - - - org.springframework - spring-test - test - - - - org.springframework - spring-core - test - - - - org.springframework - spring-context - test - - - - log4j - log4j - test - 1.2.17 - - - jmxri - com.sun.jmx - - - com.sun.jdmk - jmxtools - - - javax.jms - jms - - - - - - diff --git a/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom.sha1 b/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom.sha1 deleted file mode 100644 index cd308e399..000000000 --- a/code/arachne/org/jasig/cas/client/cas-client-core/3.6.1/cas-client-core-3.6.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -de036bd48c73a42fa0ae6ab811b98dc6bb63a5ac \ No newline at end of file diff --git a/code/arachne/org/jasig/cas/client/cas-client/3.6.1/_remote.repositories b/code/arachne/org/jasig/cas/client/cas-client/3.6.1/_remote.repositories deleted file mode 100644 index b5bb5d9f7..000000000 --- a/code/arachne/org/jasig/cas/client/cas-client/3.6.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:22 EDT 2024 -cas-client-3.6.1.pom>central= diff --git a/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom b/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom deleted file mode 100644 index aefb1daa0..000000000 --- a/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom +++ /dev/null @@ -1,318 +0,0 @@ - - - - org.jasig.parent - jasig-parent - 41 - - 4.0.0 - org.jasig.cas.client - 3.6.1 - cas-client - pom - - Apereo CAS Client for Java - - Apereo CAS Client for Java is the integration point for applications that want to speak with a CAS - server, either via the CAS 1.0 or CAS 2.0 protocol. - - https://www.apereo.org/cas - - - scm:git:git@github.com:apereo/java-cas-client.git - scm:git:git@github.com:apereo/java-cas-client.git - https://github.com/apereo/java-cas-client - cas-client-3.6.1 - - - 2006 - - - - battags - Scott Battaglia - scott.battaglia@gmail.com - http://www.scottbattaglia.com - - Project Admin - Developer - - -5 - - - serac - Marvin S. Addison - marvin.addison@gmail.com - - Developer - - -5 - - - - - Apereo - https://www.apereo.org - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.1.1 - - - ${basedir}/assembly.xml - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 1.8 - 1.8 - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - - **/*Tests* - - false - 1 - - - - maven-source-plugin - 3.1.0 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4.1 - - - enforce-banned-dependencies - - enforce - - - - - - commons-logging - - - - true - - - - - - - com.mycila.maven-license-plugin - maven-license-plugin - -
    src/licensing/header.txt
    - true - - src/licensing/header-definitions.xml - - true - - **/.idea/** - LICENSE - **/INSTALL* - **/NOTICE* - **/README* - **/readme* - **/*.log - **/*.license - **/*.txt - **/*.crt - **/*.crl - **/*.key - **/.gitignore - **/overlays/** - src/licensing/** - -
    -
    - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.1.1 - - none - - - -
    -
    - - - - - org.springframework - spring-core - ${spring.version} - - - commons-logging - commons-logging - - - - - - org.springframework - spring-context - ${spring.version} - - - - org.springframework - spring-web - ${spring.version} - - - - org.springframework - spring-test - ${spring.version} - test - - - - log4j - log4j - test - 1.2.17 - - - jmxri - com.sun.jmx - - - com.sun.jdmk - jmxtools - - - javax.jms - jms - - - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - - - - - junit - junit - 4.12 - test - - - org.slf4j - slf4j-api - ${slf4j.version} - compile - - - commons-codec - commons-codec - 1.13 - compile - - - org.bouncycastle - bcpkix-jdk15on - 1.63 - compile - - - javax.servlet - javax.servlet-api - 4.0.1 - provided - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - test - - - org.slf4j - slf4j-simple - ${slf4j.version} - test - - - - - cas-client-core - - cas-client-integration-jboss - cas-client-support-distributed-ehcache - cas-client-support-distributed-memcached - cas-client-support-saml - cas-client-support-springboot - cas-client-integration-tomcat-common - cas-client-integration-tomcat-v6 - cas-client-integration-tomcat-v7 - cas-client-integration-tomcat-v8 - cas-client-integration-tomcat-v85 - cas-client-integration-tomcat-v90 - cas-client-integration-jetty - - - - 5.2.0.RELEASE - 2.6.11 - 3.0.2 - 1.7.28 - 2.10.0 - -
    diff --git a/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom.sha1 b/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom.sha1 deleted file mode 100644 index 6e80c5898..000000000 --- a/code/arachne/org/jasig/cas/client/cas-client/3.6.1/cas-client-3.6.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6934a8cf61cf1bb5ad19b7a8127d901dd835dee7 \ No newline at end of file diff --git a/code/arachne/org/jasig/parent/jasig-parent/41/_remote.repositories b/code/arachne/org/jasig/parent/jasig-parent/41/_remote.repositories deleted file mode 100644 index 5bb177464..000000000 --- a/code/arachne/org/jasig/parent/jasig-parent/41/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:23 EDT 2024 -jasig-parent-41.pom>central= diff --git a/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom b/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom deleted file mode 100644 index 816c754da..000000000 --- a/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom +++ /dev/null @@ -1,404 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 9 - - - org.jasig.parent - jasig-parent - 41 - pom - - Apereo Parent Project - Defaults for Apereo Maven projects. - https://github.com/Jasig/apereo-parent - - - Apereo - http://www.apereo.org - - - - - Apache License Version 2.0 - repo - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - scm:git:git@github.com:Jasig/apereo-parent.git - scm:git:git@github.com:Jasig/apereo-parent.git - https://github.com/Jasig/apereo-parent - jasig-parent-41 - - - - - https://raw.githubusercontent.com/Jasig/apereo-parent/master/ - - ${jasig-scm-base}licenses/short-license-header.txt - ${jasig-scm-base}licenses/license-mappings.xml - ${jasig-scm-base}licenses/NOTICE.template - - UTF-8 - 1.7 - 1.7 - - - 3.0.1 - 2.9 - - 2.10.1 - 2.6 - 3.3 - 2.6 - 2.5.2 - 2.11 - 1.0.2 - 1.0.6.1 - 3.4 - - - 2.7 - 3.0.3 - 2.0 - 2.3 - 2.10.3 - 2.5 - 3.5 - 2.8.1 - 2.19 - 2.4 - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven.compiler.plugin.ver} - - ${project.build.sourceVersion} - ${project.build.targetVersion} - - - - org.apache.maven.plugins - maven-jar-plugin - ${maven.jar.plugin.ver} - - - - true - true - - - - - - org.codehaus.plexus - plexus-archiver - ${plexus.archiver.ver} - - - - - org.apache.maven.plugins - maven-war-plugin - ${maven.war.plugin.ver} - - true - - true - - true - true - - - - - - org.codehaus.plexus - plexus-archiver - ${plexus.archiver.ver} - - - - - org.apache.maven.plugins - maven-ear-plugin - ${maven.ear.plugin.ver} - - - true - - true - true - - - - - - org.codehaus.plexus - plexus-archiver - ${plexus.archiver.ver} - - - - - org.apache.maven.plugins - maven-release-plugin - ${maven.release.plugin.ver} - - forked-path - false - ${additionalReleaseArguments} -Psonatype-oss-release,jasig-release - - - - com.mycila - license-maven-plugin - ${maven.license.plugin.ver} - - ${basedir} -
    ${jasig-short-license-url}
    - true - true - - LICENSE - NOTICE - short-license-header.txt - -
    -
    - - org.jasig.maven - maven-jasig-legal-plugin - ${maven.legal.plugin.ver} - - - org.jasig.maven - maven-notice-plugin - ${maven.notice.plugin.ver} - - ${jasig-notice-template-url} - - ${jasig-license-lookup-url} - - - -
    -
    - - - org.jasig.maven - maven-jasig-legal-plugin - - - org.jasig.maven - maven-notice-plugin - - - com.mycila - license-maven-plugin - - - LICENSE - NOTICE - licenses/LICENSE.txt - licenses/NOTICE.template - licenses/short-license-header.txt - - - - -
    - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${maven.jxr.plugin.ver} - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven.project.info.reports.plugin.ver} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${maven.surefire.report.plugin.ver} - - - org.codehaus.mojo - cobertura-maven-plugin - ${cobertura.maven.plugin.ver} - - - org.apache.maven.plugins - maven-pmd-plugin - ${maven.pmd.plugin.ver} - - true - utf-8 - 100 - ${project.build.sourceVersion} - - - - org.apache.maven.plugins - maven-changelog-plugin - ${maven.changelog.plugin.ver} - - - org.codehaus.mojo - taglist-maven-plugin - ${taglist.maven.plugin.ver} - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.maven.plugin.ver} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven.javadoc.plugin.ver} - - ${project.build.sourceVersion} - - - - org.codehaus.mojo - jdepend-maven-plugin - ${jdepend.maven.plugin.ver} - - - - - - - jasig-release - - - - com.mycila - license-maven-plugin - - - check-license - validate - - check - - - - - - org.jasig.maven - maven-jasig-legal-plugin - - - copy-files - validate - - copy-files - - - - - - org.jasig.maven - maven-notice-plugin - - - check-notice - validate - - check - - - - - - - - - - maven-3-site - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-site-plugin - ${maven.site.plugin.ver} - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - ${wagon.webdav.jackrabbit.ver} - - - - - - - - org.apache.maven.plugins - maven-site-plugin - ${maven.site.plugin.ver} - - - attach-descriptor - - attach-descriptor - - - - - - - - - -
    diff --git a/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom.sha1 b/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom.sha1 deleted file mode 100644 index 2ccccce32..000000000 --- a/code/arachne/org/jasig/parent/jasig-parent/41/jasig-parent-41.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e62844ebca8fddba8d6ba588b5a4028cd0936439 \ No newline at end of file diff --git a/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/_remote.repositories b/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/_remote.repositories deleted file mode 100644 index f599daa28..000000000 --- a/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:58 EDT 2024 -jasypt-hibernate4-1.9.2.pom>central= diff --git a/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom b/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom deleted file mode 100644 index 6339def12..000000000 --- a/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - 4.0.0 - org.jasypt - jasypt-hibernate4 - jar - 1.9.2 - JASYPT: Java Simplified Encryption - http://www.jasypt.org - - Java library which enables encryption in java apps with minimum effort. - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The JASYPT team - http://www.jasypt.org - - - - scm:svn:http://svn.code.sf.net/p/jasypt/code/tags/jasypt-hibernate4/jasypt-hibernate4-1.9.2 - scm:svn:https://svn.code.sf.net/p/jasypt/code/tags/jasypt-hibernate4/jasypt-hibernate4-1.9.2 - scm:svn:https://svn.code.sf.net/p/jasypt/code/tags/jasypt-hibernate4/jasypt-hibernate4-1.9.2 - - - - - dfernandez - Daniel Fernandez - dfernandez AT users.sourceforge.net - - Project admin - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/service/local/staging/deploy/maven2 - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - true - - - - jboss-nexus-repository - JBoss Nexus Repository - http://repository.jboss.org/nexus/content/groups/public-jboss/ - - - - - - - - - - src/main/resources - - - - . - META-INF - - LICENSE.txt - NOTICE.txt - - - - - - - - src/test/java - - ** - - - **/*.java - - - - src/test/resources - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.4 - 1.4 - US-ASCII - - - - - org.apache.maven.plugins - maven-resources-plugin - 2.5 - - US-ASCII - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - protected - java.lang - org.jasypt.contrib.* - - http://www.jasypt.org/api/jasypt/${project.version}/ - - - - - package - - jar - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - package - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - https://svn.code.sf.net/p/jasypt/code/tags/jasypt-hibernate4 - - - - - - - - - - - - - - org.jasypt - jasypt - 1.9.2 - compile - - - - org.hibernate - hibernate-core - 4.0.0.CR7 - provided - true - - - - org.hibernate - hibernate-c3p0 - 4.0.0.CR7 - provided - true - - - - junit - junit - 3.8.1 - test - - - - commons-lang - commons-lang - 2.1 - test - - - - org.hsqldb - hsqldb - 2.2.6 - test - - - - - - diff --git a/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom.sha1 b/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom.sha1 deleted file mode 100644 index 5f9ad596f..000000000 --- a/code/arachne/org/jasypt/jasypt-hibernate4/1.9.2/jasypt-hibernate4-1.9.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -89c3a4f2e434f2dca5fa540704ab0ee600a441b3 \ No newline at end of file diff --git a/code/arachne/org/jasypt/jasypt/1.9.2/_remote.repositories b/code/arachne/org/jasypt/jasypt/1.9.2/_remote.repositories deleted file mode 100644 index 0a557714f..000000000 --- a/code/arachne/org/jasypt/jasypt/1.9.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:58 EDT 2024 -jasypt-1.9.2.pom>central= diff --git a/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom b/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom deleted file mode 100644 index 5b240a053..000000000 --- a/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - 4.0.0 - org.jasypt - jasypt - jar - 1.9.2 - JASYPT: Java Simplified Encryption - http://www.jasypt.org - - Java library which enables encryption in java apps with minimum effort. - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The JASYPT team - http://www.jasypt.org - - - - scm:svn:http://svn.code.sf.net/p/jasypt/code/tags/jasypt/jasypt-1.9.2 - scm:svn:https://svn.code.sf.net/p/jasypt/code/tags/jasypt/jasypt-1.9.2 - scm:svn:https://svn.code.sf.net/p/jasypt/code/tags/jasypt/jasypt-1.9.2 - - - - - dfernandez - Daniel Fernandez - dfernandez AT users.sourceforge.net - - Project admin - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/service/local/staging/deploy/maven2 - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - true - - - - - - - - - - - src/main/resources - - - - . - META-INF - - LICENSE.txt - NOTICE.txt - - - - - - - - src/test/resources - - - - - - - org.apache.maven.plugins - maven-site-plugin - 2.1 - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.1 - - 1.4 - 1.4 - US-ASCII - - - - - org.apache.maven.plugins - maven-resources-plugin - 2.5 - - US-ASCII - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - protected - java.lang - org.jasypt.contrib.* - - - - package - - jar - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - package - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2 - - - src/assembly/lite.xml - - - - - make-assembly-deps - package - - single - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - https://svn.code.sf.net/p/jasypt/code/tags/jasypt - - - - - - - - - - - - - - com.ibm.icu - icu4j - 3.4.4 - provided - true - - - - javax.servlet - servlet-api - 2.4 - provided - true - - - - bouncycastle - bcprov-jdk12 - 140 - test - - - - junit - junit - 3.8.1 - test - - - - commons-lang - commons-lang - 2.1 - test - - - - - - - diff --git a/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom.sha1 b/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom.sha1 deleted file mode 100644 index 7c65201a5..000000000 --- a/code/arachne/org/jasypt/jasypt/1.9.2/jasypt-1.9.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1fa08d4488492e27d500230b8a92a291b1664f3d \ No newline at end of file diff --git a/code/arachne/org/javassist/javassist/3.28.0-GA/_remote.repositories b/code/arachne/org/javassist/javassist/3.28.0-GA/_remote.repositories deleted file mode 100644 index b5154b704..000000000 --- a/code/arachne/org/javassist/javassist/3.28.0-GA/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -javassist-3.28.0-GA.pom>central= diff --git a/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom b/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom deleted file mode 100644 index 3fe945757..000000000 --- a/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom +++ /dev/null @@ -1,335 +0,0 @@ - - 4.0.0 - org.javassist - javassist - bundle - - Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation - simple. It is a class library for editing bytecodes in Java. - - 3.28.0-GA - Javassist - http://www.javassist.org/ - - - UTF-8 - - - Shigeru Chiba, www.javassist.org - - - - JIRA - https://jira.jboss.org/jira/browse/JASSIST/ - - - - - MPL 1.1 - http://www.mozilla.org/MPL/MPL-1.1.html - - - - LGPL 2.1 - http://www.gnu.org/licenses/lgpl-2.1.html - - - - Apache License 2.0 - http://www.apache.org/licenses/ - - - - - scm:git:git@github.com:jboss-javassist/javassist.git - scm:git:git@github.com:jboss-javassist/javassist.git - scm:git:git@github.com:jboss-javassist/javassist.git - - - - - chiba - Shigeru Chiba - chiba@javassist.org - The Javassist Project - http://www.javassist.org/ - - project lead - - 9 - - - - adinn - Andrew Dinn - adinn@redhat.com - JBoss - http://www.jboss.org/ - - contributing developer - - 0 - - - - kabir.khan@jboss.com - Kabir Khan - kabir.khan@jboss.com - JBoss - http://www.jboss.org/ - - contributing developer - - 0 - - - - scottmarlow - Scott Marlow - smarlow@redhat.com - JBoss - http://www.jboss.org/ - - contributing developer - - -5 - - - - - - - - - jboss-releases-repository - JBoss Releases Repository - https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ - - - jboss-snapshots-repository - JBoss Snapshots Repository - https://repository.jboss.org/nexus/content/repositories/snapshots/ - - - - src/main/ - src/test/ - - - src/test/resources - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.2 - - 1.8 - 1.8 - 11 - 11 - -parameters - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.18.1 - - - javassist/JvstTest.java - - once - - resources - - ${project.build.directory}/runtest - - - - org.apache.maven.plugins - maven-jar-plugin - 2.6 - - - - javassist.CtClass - true - - - - - - maven-source-plugin - 2.0.4 - - - attach-sources - - jar - - - - true - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - true - javassist.compiler:javassist.convert:javassist.scopedpool:javassist.bytecode.stackmap - Javassist, a Java-bytecode translator toolkit.
    -Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.
    ]]> - public - true - none - 8 - - - - org.apache.felix - maven-bundle-plugin - 3.3.0 - - - bundle-manifest - process-classes - - manifest - - - - - - jar - bundle - war - - - ${project.artifactId} - ${project.version} - !com.sun.jdi.* - !com.sun.jdi.*,javassist.*;version="${project.version}" - - - true - - - - - - - centralRelease - - - - sonatype-releases-repository - Sonatype Releases Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2 - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - ${gpg.useAgent} - - - - sign-artifacts - verify - - sign - - - - - - - - - - default-tools - - [,1.8] - - - - com.sun - tools - ${java.version} - system - true - ${java.home}/../lib/tools.jar - - - - - java9-tools - - [1.9,] - - - - com.sun - tools - ${java.version} - system - true - ${java.home}/lib/jrt-fs.jar - - - - - - - junit - junit - [4.13.1,) - test - - - org.hamcrest - hamcrest-all - 1.3 - test - - - - diff --git a/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom.sha1 b/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom.sha1 deleted file mode 100644 index 04af3a6e5..000000000 --- a/code/arachne/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -12ec4905545213432afa703f4caf0b7409fbc3d9 \ No newline at end of file diff --git a/code/arachne/org/javassist/javassist/3.30.2-GA/_remote.repositories b/code/arachne/org/javassist/javassist/3.30.2-GA/_remote.repositories deleted file mode 100644 index ac15e2514..000000000 --- a/code/arachne/org/javassist/javassist/3.30.2-GA/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:59 EDT 2024 -javassist-3.30.2-GA.pom>central= diff --git a/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom b/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom deleted file mode 100644 index 01e9f88cc..000000000 --- a/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom +++ /dev/null @@ -1,337 +0,0 @@ - - 4.0.0 - - org.javassist - javassist - 3.30.2-GA - bundle - Javassist - - Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation - simple. It is a class library for editing bytecodes in Java. - - https://www.javassist.org/ - - - - - MPL 1.1 - https://www.mozilla.org/en-US/MPL/1.1/ - - - - LGPL 2.1 - https://www.gnu.org/licenses/lgpl-2.1.html - - - - Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Shigeru Chiba, www.javassist.org - - - JIRA - https://jira.jboss.org/jira/browse/JASSIST/ - - - scm:git:git@github.com:jboss-javassist/javassist.git - scm:git:git@github.com:jboss-javassist/javassist.git - scm:git:git@github.com:jboss-javassist/javassist.git - - - - - chiba - Shigeru Chiba - chiba@javassist.org - The Javassist Project - https://www.javassist.org/ - - project lead - - 9 - - - - adinn - Andrew Dinn - adinn@redhat.com - JBoss - https://www.jboss.org/ - - contributing developer - - 0 - - - - kabir.khan@jboss.com - Kabir Khan - kabir.khan@jboss.com - JBoss - https://www.jboss.org/ - - contributing developer - - 0 - - - - scottmarlow - Scott Marlow - smarlow@redhat.com - JBoss - https://www.jboss.org/ - - contributing developer - - -5 - - - - - - - jboss-releases-repository - JBoss Releases Repository - https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ - - - jboss-snapshots-repository - JBoss Snapshots Repository - https://repository.jboss.org/nexus/content/repositories/snapshots/ - - - - - UTF-8 - - - - - junit - junit - [4.13.1,) - test - - - org.hamcrest - hamcrest-all - 1.3 - test - - - - - src/main/ - src/test/ - - - src/test/resources - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.2 - - 1.8 - 1.8 - 11 - 11 - -parameters - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.18.1 - - - javassist/JvstTest.java - - once - - resources - - ${project.build.directory}/runtest - - - - org.apache.maven.plugins - maven-jar-plugin - 2.6 - - - - javassist.CtClass - true - - src/main/META-INF/MANIFEST.MF - - - - - maven-source-plugin - 2.0.4 - - - attach-sources - - jar - - - - true - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - true - javassist.compiler:javassist.convert:javassist.scopedpool:javassist.bytecode.stackmap - Javassist, a Java-bytecode translator toolkit.
    -Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.]]>
    - public - true - none - 8 -
    -
    - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - - bundle-manifest - process-classes - - manifest - - - - - - jar - bundle - war - - - ${project.artifactId} - ${project.version} - !com.sun.jdi.* - !com.sun.jdi.*,javassist.*;version="${project.version}" - - - true - -
    -
    - - - - centralRelease - - - - sonatype-releases-repository - Sonatype Releases Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2 - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - ${gpg.useAgent} - - - - sign-artifacts - verify - - sign - - - - - - - - - - default-tools - - [,1.8] - - - - com.sun - tools - ${java.version} - system - true - ${java.home}/../lib/tools.jar - - - - - java9-tools - - [1.9,] - - - - com.sun - tools - ${java.version} - system - true - ${java.home}/lib/jrt-fs.jar - - - - -
    diff --git a/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom.sha1 b/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom.sha1 deleted file mode 100644 index 26a2fb43f..000000000 --- a/code/arachne/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -005e8895e8598228aa2c1d3b426585a49e2c22fc \ No newline at end of file diff --git a/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/_remote.repositories b/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/_remote.repositories deleted file mode 100644 index 3ac7e7247..000000000 --- a/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:54 EDT 2024 -arquillian-bom-1.7.0.Alpha10.pom>central= diff --git a/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom b/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom deleted file mode 100644 index d7966a54e..000000000 --- a/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom +++ /dev/null @@ -1,296 +0,0 @@ - - - - - 4.0.0 - - - org.jboss.arquillian - arquillian-bom - 1.7.0.Alpha10 - pom - Arquillian BOM - http://arquillian.org - Arquillian Bill Of Material - - - jira - http://jira.jboss.com/jira/browse/ARQ - - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - scm:git:git://git@github.com:arquillian/arquillian-core.git - scm:git:ssh://github.com/arquillian/arquillian-core.git - git://github.com/arquillian/arquillian-core.git - 1.7.0.Alpha10 - - - - - arquillian.org - Arquillian Community - arquillian.org - http://arquillian.org - - - - - - 1.2.6 - 2.0.0 - 3.1.4 - - https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ - - https://repository.jboss.org/nexus/content/repositories/snapshots/ - - - - - - - - - org.jboss.arquillian.core - arquillian-core-api - ${project.version} - - - org.jboss.arquillian.core - arquillian-core-spi - ${project.version} - - - org.jboss.arquillian.core - arquillian-core-impl-base - ${project.version} - - - - - org.jboss.arquillian.config - arquillian-config-api - ${project.version} - - - org.jboss.arquillian.config - arquillian-config-spi - ${project.version} - - - org.jboss.arquillian.config - arquillian-config-impl-base - ${project.version} - - - - - org.jboss.arquillian.test - arquillian-test-api - ${project.version} - - - org.jboss.arquillian.test - arquillian-test-spi - ${project.version} - - - org.jboss.arquillian.test - arquillian-test-impl-base - ${project.version} - - - - - org.jboss.arquillian.container - arquillian-container-spi - ${project.version} - - - org.jboss.arquillian.container - arquillian-container-impl-base - ${project.version} - - - - - org.jboss.arquillian.container - arquillian-container-test-api - ${project.version} - - - org.jboss.arquillian.container - arquillian-container-test-spi - ${project.version} - - - org.jboss.arquillian.container - arquillian-container-test-impl-base - ${project.version} - - - - - org.jboss.arquillian.junit - arquillian-junit-core - ${project.version} - - - org.jboss.arquillian.junit - arquillian-junit-container - ${project.version} - - - org.jboss.arquillian.junit - arquillian-junit-standalone - ${project.version} - - - - - org.jboss.arquillian.junit5 - arquillian-junit5-core - ${project.version} - - - org.jboss.arquillian.junit5 - arquillian-junit5-container - ${project.version} - - - - - org.jboss.arquillian.testng - arquillian-testng-core - ${project.version} - - - org.jboss.arquillian.testng - arquillian-testng-container - ${project.version} - - - org.jboss.arquillian.testng - arquillian-testng-standalone - ${project.version} - - - - - org.jboss.arquillian.protocol - arquillian-protocol-servlet - ${project.version} - - - org.jboss.arquillian.protocol - arquillian-protocol-servlet-jakarta - ${project.version} - - - org.jboss.arquillian.protocol - arquillian-protocol-jmx - ${project.version} - - - - - org.jboss.arquillian.testenricher - arquillian-testenricher-cdi - ${project.version} - - - org.jboss.arquillian.testenricher - arquillian-testenricher-ejb - ${project.version} - - - org.jboss.arquillian.testenricher - arquillian-testenricher-resource - ${project.version} - - - org.jboss.arquillian.testenricher - arquillian-testenricher-initialcontext - ${project.version} - - - org.jboss.arquillian.testenricher - arquillian-testenricher-cdi-jakarta - ${project.version} - - - org.jboss.arquillian.testenricher - arquillian-testenricher-ejb-jakarta - ${project.version} - - - org.jboss.arquillian.testenricher - arquillian-testenricher-resource-jakarta - ${project.version} - - - - - org.jboss.shrinkwrap - shrinkwrap-bom - ${version.shrinkwrap_core} - pom - import - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-bom - ${version.shrinkwrap_resolver} - pom - import - - - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-bom - ${version.shrinkwrap_descriptors} - pom - import - - - - - - - - - - maven-release-plugin - - false - true - - - - - - - - - jboss-releases-repository - JBoss Releases Repository - ${jboss.releases.repo.url} - - - jboss-snapshots-repository - JBoss Snapshots Repository - ${jboss.snapshots.repo.url} - - - - diff --git a/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom.sha1 b/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom.sha1 deleted file mode 100644 index a86948da0..000000000 --- a/code/arachne/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a9b8dce75d7dff573b8c4eae322152bb203e51c6 \ No newline at end of file diff --git a/code/arachne/org/jboss/jboss-parent/39/_remote.repositories b/code/arachne/org/jboss/jboss-parent/39/_remote.repositories deleted file mode 100644 index 3b9f10e48..000000000 --- a/code/arachne/org/jboss/jboss-parent/39/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:27 EDT 2024 -jboss-parent-39.pom>jboss-public-repository-group= diff --git a/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom b/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom deleted file mode 100644 index 072347dd2..000000000 --- a/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom +++ /dev/null @@ -1,1521 +0,0 @@ - - - - - 4.0.0 - - org.jboss - 39 - jboss-parent - - pom - - JBoss Parent Parent POM - Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs - http://www.jboss.org - - - JIRA - https://issues.redhat.com/ - - - - scm:git:git@github.com:jboss/jboss-parent-pom.git - scm:git:git@github.com:jboss/jboss-parent-pom.git - http://github.com/jboss/jboss-parent-pom - HEAD - - - - - jboss.org - JBoss.org Community - JBoss.org - http://www.jboss.org - - - - - - JBoss User List - https://lists.jboss.org/mailman/listinfo/jboss-user - https://lists.jboss.org/mailman/listinfo/jboss-user - http://lists.jboss.org/pipermail/jboss-user/ - - - JBoss Developer List - https://lists.jboss.org/mailman/listinfo/jboss-development - https://lists.jboss.org/mailman/listinfo/jboss-development - http://lists.jboss.org/pipermail/jboss-development/ - - - - - - Public Domain - http://repository.jboss.org/licenses/cc0-1.0.txt - repo - - - - - JBoss by Red Hat - http://www.jboss.org - - - - - - - 1.8 - 3.1.2 - 3.1.1 - 3.0.0 - 1.4 - 4.0.0 - 3.1.1 - 3.1.0 - 4.1.2 - 2.7 - 3.8.1 - 3.1.1 - 2.8.2 - 1.4.2 - 3.0.1 - 1.0.0 - 3.0.1 - 3.0.0 - 3.0.0-M3 - 3.0.5 - 1.6 - 3.2.0 - 1.0.2 - 2.5.2 - 3.1.2 - 3.1.1 - 2.1 - 3.0.0 - 1.20 - 2.9 - 3.6.0 - 3.12.0 - 2.4 - 2.5.3 - 3.2.0 - 3.2.1 - 3.8.2 - 3.7.0.1746 - 3.1.0 - 2.22.2 - ${version.surefire.plugin} - 2.8.1 - 3.2.3 - 4.6.2 - - - 3.6.0 - - - - - - jboss-releases-repository - https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ - jboss-snapshots-repository - https://repository.jboss.org/nexus/content/repositories/snapshots/ - - - - - - - UTF-8 - UTF-8 - - - 1.8 - 1.8 - ${maven.compiler.target} - ${maven.compiler.source} - - - ${maven.compiler.target} - ${maven.compiler.source} - ${maven.compiler.testTarget} - ${maven.compiler.testSource} - - - 3.2.5 - ${maven.compiler.argument.source} - ERROR - - - true - - - ${maven.compiler.argument.target} - - - false - -Pjboss-release - - - source-release - 8.34 - - - - - 3.Final - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${version.antrun.plugin} - - - org.apache.maven.plugins - maven-archetype-plugin - ${version.archetype.plugin} - - - org.apache.maven.plugins - maven-assembly-plugin - ${version.assembly.plugin} - - - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - ${buildNumber} - - - - - - org.codehaus.mojo - build-helper-maven-plugin - ${version.buildhelper.plugin} - - - org.codehaus.mojo - buildnumber-maven-plugin - ${version.buildnumber.plugin} - - - com.googlecode.maven-download-plugin - download-maven-plugin - ${version.download.plugin} - - - org.apache.felix - maven-bundle-plugin - ${version.bundle.plugin} - - - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - - - - ${buildNumber} - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${version.checkstyle.plugin} - - - com.puppycrawl.tools - checkstyle - ${version.checkstyle} - - - com.sun - tools - - - - - - - org.apache.maven.plugins - maven-clean-plugin - ${version.clean.plugin} - - - com.atlassian.maven.plugins - clover-maven-plugin - ${version.clover.plugin} - - - org.codehaus.mojo - cobertura-maven-plugin - ${version.cobertura.plugin} - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.compiler.plugin} - - true - true - ${maven.compiler.argument.source} - ${maven.compiler.argument.target} - ${maven.compiler.argument.testSource} - ${maven.compiler.argument.testTarget} - - -Xlint:unchecked - - - - - org.apache.maven.plugins - maven-dependency-plugin - ${version.dependency.plugin} - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.deploy.plugin} - - - org.apache.maven.plugins - maven-ear-plugin - ${version.ear.plugin} - - - org.codehaus.plexus - plexus-archiver - ${version.plexus.archiver} - - - - - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - ${buildNumber} - - - - - - org.apache.maven.plugins - maven-ejb-plugin - ${version.ejb.plugin} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.enforcer.plugin} - - - org.codehaus.mojo - exec-maven-plugin - ${version.exec.plugin} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${version.failsafe.plugin} - - - org.codehaus.mojo - findbugs-maven-plugin - ${version.findbugs.plugin} - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.gpg.plugin} - - - org.apache.maven.plugins - maven-help-plugin - ${version.help.plugin} - - - org.jboss.maven.plugins - maven-injection-plugin - ${version.injection.plugin} - - - compile - - bytecode - - - - - - org.apache.maven.plugins - maven-install-plugin - ${version.install.plugin} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.jar.plugin} - - - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - ${buildNumber} - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.javadoc.plugin} - - -
    ${project.name} ${project.version}]]>
    ${project.name} ${project.version}]]>
    - - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - ${buildNumber} - - - - ${javadoc.additional.params} - ${javadoc.additional.params} - - - - org.codehaus.mojo - javancss-maven-plugin - ${version.javancss.plugin} - - - org.apache.maven.plugins - maven-jxr-plugin - ${version.jxr.plugin} - - - org.codehaus.mojo - license-maven-plugin - ${version.license.plugin} - - - org.apache.maven.plugins - maven-plugin-plugin - ${version.plugin.plugin} - - - org.apache.maven.plugins - maven-pmd-plugin - ${version.pmd.plugin} - - - org.apache.maven.plugins - maven-rar-plugin - ${version.rar.plugin} - - - org.apache.maven.plugins - maven-release-plugin - ${version.release.plugin} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.resources.plugin} - - - org.apache.maven.plugins - maven-shade-plugin - ${version.shade.plugin} - - - org.apache.maven.plugins - maven-site-plugin - ${version.site.plugin} - - - org.codehaus.mojo - sonar-maven-plugin - ${version.sonar.plugin} - - - org.apache.maven.plugins - maven-source-plugin - ${version.source.plugin} - - - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - ${buildNumber} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.surefire.plugin} - - false - - ${project.build.directory} - - - - - org.codehaus.mojo - versions-maven-plugin - ${version.versions.plugin} - - false - - - - org.apache.maven.plugins - maven-war-plugin - ${version.war.plugin} - - - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - ${buildNumber} - - - false - - - - org.zanata - zanata-maven-plugin - ${version.zanata.plugin} - - - - - org.eclipse.m2e - lifecycle-mapping - ${version.org.eclipse.m2e.lifecycle-mapping} - - - - - - - org.apache.felix - maven-bundle-plugin - [2.3.7,) - - manifest - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - [1.3.1,) - - enforce - - - - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - [1.0.0,) - - create - - - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java-version - - enforce - - - - - To build this project, don't use maven repositories over HTTP. Please use HTTPS in your settings.xml or run the build with property insecure.repositories=WARN - ${insecure.repositories} - - http://* - - - http://* - - - - To build this project JDK ${jdk.min.version} (or greater) is required. Please install it. - ${jdk.min.version} - - - - - - enforce-maven-version - - enforce - - - - - To build this project Maven ${maven.min.version} (or greater) is required. Please install it. - ${maven.min.version} - - - - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - get-scm-revision - initialize - - create - - - false - false - UNKNOWN - true - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - - - - - - - - - jboss-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${version.assembly.plugin} - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.6 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - gnu - - - - - - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - doclint-java8-disable - - [1.8,) - - - -Xdoclint:none - - - - - gpg-sign - - - - - org.apache.maven.plugins - maven-gpg-plugin - - true - - - - - sign - - - - - - - - - - compile-java8-release-flag - - - ${basedir}/build-release-8 - - [9,) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - compile - - compile - - - 8 - - - - - - - - - - - include-jdk-misc - - - ${basedir}/build-include-jdk-misc - - [9,) - - - 3.8.1-jboss-2 - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - fetch-jdk-misc - generate-sources - - get - copy - - - org.jboss:jdk-misc:${version.jdk-misc} - ${project.build.directory} - true - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - compile - - compile - - - 8 - - ${project.build.directory}/jdk-misc.jar - - - - - - - - - - - - - java8-test - - [9,) - - java8.home - - - ${basedir}/build-test-java8 - - - - 3.8.1-jboss-2 - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - java8-test - test - - test - - - ${java8.home}/bin/java - - ${java8.home}/lib/tools.jar - - - - - - - - - - - - java9-mr-build - - [9,) - - ${basedir}/src/main/java9 - - - - 3.8.1-jboss-2 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java9 - compile - - compile - - - 9 - ${project.build.directory} - ${project.basedir}/src/main/java9 - ${project.build.directory}/classes/META-INF/versions/9 - - - ${project.build.outputDirectory} - - - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java9-test - - [10,) - - java9.home - - - ${basedir}/build-test-java9 - - - - 3.8.1-jboss-2 - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - java9-test - test - - test - - - ${java9.home}/bin/java - ${project.build.directory}/classes/META-INF/versions/9 - - - ${project.build.outputDirectory} - - - - - - - - - - - - - java10-mr-build - - [10,) - - ${basedir}/src/main/java10 - - - - 3.8.1-jboss-2 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java10 - compile - - compile - - - 10 - ${project.build.directory} - ${project.basedir}/src/main/java10 - ${project.build.directory}/classes/META-INF/versions/10 - - - - ${project.build.directory}/classes/META-INF/versions/9 - - ${project.build.outputDirectory} - - - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java10-test - - [11,) - - java10.home - - - ${basedir}/build-test-java10 - - - - 3.8.1-jboss-2 - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - java10-test - test - - test - - - ${java10.home}/bin/java - ${project.build.directory}/classes/META-INF/versions/10 - - - - ${project.build.directory}/classes/META-INF/versions/9 - - ${project.build.outputDirectory} - - - - - - - - - - - - - java11-mr-build - - [11,) - - ${basedir}/src/main/java11 - - - - 3.8.1-jboss-2 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java11 - compile - - compile - - - 11 - ${project.build.directory} - ${project.basedir}/src/main/java11 - ${project.build.directory}/classes/META-INF/versions/11 - - - - ${project.build.directory}/classes/META-INF/versions/10 - - - ${project.build.directory}/classes/META-INF/versions/9 - - ${project.build.outputDirectory} - - - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java11-test - - [12,) - - java11.home - - - ${basedir}/build-test-java11 - - - - 3.8.1-jboss-2 - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - java11-test - test - - test - - - ${java11.home}/bin/java - ${project.build.directory}/classes/META-INF/versions/11 - - - - ${project.build.directory}/classes/META-INF/versions/10 - - - ${project.build.directory}/classes/META-INF/versions/9 - - ${project.build.outputDirectory} - - - - - - - - - - - - - java12-mr-build - - [12,) - - ${basedir}/src/main/java12 - - - - 3.8.1-jboss-2 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java12 - compile - - compile - - - 12 - ${project.build.directory} - ${project.basedir}/src/main/java12 - ${project.build.directory}/classes/META-INF/versions/12 - - - - ${project.build.directory}/classes/META-INF/versions/11 - - - ${project.build.directory}/classes/META-INF/versions/10 - - - ${project.build.directory}/classes/META-INF/versions/9 - - ${project.build.outputDirectory} - - - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java12-test - - [13,) - - java12.home - - - ${basedir}/build-test-java12 - - - - 3.8.1-jboss-2 - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - java12-test - test - - test - - - ${java12.home}/bin/java - ${project.build.directory}/classes/META-INF/versions/12 - - - - ${project.build.directory}/classes/META-INF/versions/11 - - - ${project.build.directory}/classes/META-INF/versions/10 - - - ${project.build.directory}/classes/META-INF/versions/9 - - ${project.build.outputDirectory} - - - - - - - - - - - - - java13-mr-build - - [13,) - - ${basedir}/src/main/java13 - - - - 3.8.1-jboss-2 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java13 - compile - - compile - - - 12 - ${project.build.directory} - ${project.basedir}/src/main/java13 - ${project.build.directory}/classes/META-INF/versions/13 - - - - ${project.build.directory}/classes/META-INF/versions/12 - - - ${project.build.directory}/classes/META-INF/versions/11 - - - ${project.build.directory}/classes/META-INF/versions/10 - - - ${project.build.directory}/classes/META-INF/versions/9 - - ${project.build.outputDirectory} - - - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - - - - jboss-public-repository - JBoss Public Maven Repository - https://repository.jboss.org/nexus/content/groups/public/ - default - - true - - - false - - - - - - - ${jboss.releases.repo.id} - JBoss Releases Repository - ${jboss.releases.repo.url} - - - ${jboss.snapshots.repo.id} - JBoss Snapshots Repository - ${jboss.snapshots.repo.url} - - - - diff --git a/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.lastUpdated b/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.lastUpdated deleted file mode 100644 index cd945ee0f..000000000 --- a/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.lastUpdated +++ /dev/null @@ -1,5 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:27 EDT 2024 -http\://0.0.0.0/.error=Could not transfer artifact org.jboss\:jboss-parent\:pom\:39 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139806901 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139807116 diff --git a/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.sha1 b/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.sha1 deleted file mode 100644 index 7d2f4896d..000000000 --- a/code/arachne/org/jboss/jboss-parent/39/jboss-parent-39.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d5d48ef7a80179bec060e8b69fa6b6b3e9a8bbf0 \ No newline at end of file diff --git a/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/_remote.repositories b/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/_remote.repositories deleted file mode 100644 index 11d3ce731..000000000 --- a/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:57 EDT 2024 -jboss-logging-3.5.3.Final.pom>central= diff --git a/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom b/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom deleted file mode 100644 index 5dd3cc39c..000000000 --- a/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom +++ /dev/null @@ -1,404 +0,0 @@ - - - - - - - org.jboss.logging - logging-parent - 1.0.1.Final - - - 4.0.0 - org.jboss.logging - jboss-logging - 3.5.3.Final - jar - JBoss Logging 3 - http://www.jboss.org - The JBoss Logging Framework - - - - Apache License 2.0 - https://repository.jboss.org/licenses/apache-2.0.txt - repo - - - - - - scm:git:git://github.com/jboss-logging/jboss-logging.git - scm:git:git@github.com:jboss-logging/jboss-logging.git - https://github.com/jboss-logging/jboss-logging/tree/main/ - HEAD - - - - - 1.4.8 - 2.1 - 1.2.17 - 2.20.0 - 2.1.19.Final - 5.9.3 - 2.0.7 - - - 5.1.3 - - true - ${project.build.directory}${file.separator}cp-test-classes - - - - - - org.junit - junit-bom - ${version.org.junit} - pom - import - - - - - - - org.jboss.logmanager - jboss-logmanager - ${version.org.jboss.logmanager} - provided - - - log4j - log4j - ${version.org.apache.log4j} - provided - - - com.sun.jdmk - jmxtools - - - com.sun.jmx - jmxri - - - - - org.apache.logging.log4j - log4j-api - ${version.org.apache.logging.log4j} - provided - - - org.slf4j - slf4j-api - ${version.org.sfl4j} - provided - - - - - org.junit.jupiter - junit-jupiter - test - - - ch.qos.logback - logback-classic - ${version.ch.qos.logback} - test - - - org.apache.logging.log4j - log4j-core - ${version.org.apache.logging.log4j} - test - - - - - - - net.revelc.code.formatter - formatter-maven-plugin - - - net.revelc.code - impsort-maven-plugin - - - maven-compiler-plugin - - false - - - - default-testCompile - - testCompile - - test-compile - - - **/*ClassPathTestCase.java - - - - - cp-test-compile - - testCompile - - test-compile - - ${cp.test.classes.dir} - ${skip.cp.tests} - - **/*ClassPathTestCase.java - - - - - - - maven-source-plugin - - - maven-surefire-plugin - - ${maven.test.redirectTestOutputToFile} - - false - true - false - - - - default - - test - - - false - - **/*ClassPathTestCase.java - - - - org.jboss.logmanager.LogManager - - - - - jboss-logmanager-cp-test - - test - - - false - false - ${cp.test.classes.dir} - - **/JBossLogManagerClassPathTestCase.java - - - org.apache.logging.log4j - log4j - org.slf4j - ch.qos.logback - - - org.jboss.logmanager.LogManager - - - - - log4j2-cp-test - - test - - test - - false - ${cp.test.classes.dir} - - **/Log4j2ClassPathTestCase.java - - - org.jboss.logmanager - log4j - org.slf4j - ch.qos.logback - - - - - log4j-cp-test - - test - - test - - false - ${cp.test.classes.dir} - - **/Log4jClassPathTestCase.java - - - org.apache.logging.log4j - org.jboss.logmanager - org.slf4j - ch.qos.logback - - - - - slf4j-cp-test - - test - - test - - false - ${cp.test.classes.dir} - - **/Slf4jClassPathTestCase.java - - - org.apache.logging.log4j - org.jboss.logmanager - log4j - - - - - jul-cp-test - - test - - - false - ${cp.test.classes.dir} - - **/JulClassPathTestCase.java - - - org.apache.logging.log4j - org.jboss.logmanager - log4j - org.slf4j - ch.qos.logback - - - - - - - - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - maven-javadoc-plugin - - --no-module-directories - none - - 8 - - - - org.apache.felix - maven-bundle-plugin - true - - - - false - - - org.jboss.logging - - - - - ${project.groupId}.*;version=${project.version};-split-package:=error - - - org.apache.log4j.config;resolution:=optional, - *;resolution:=optional - - - - - - bundle-manifest - process-classes - - manifest - - - - - - io.github.dmlloyd.module-info - module-info - ${version.module-info} - - - module-info - process-classes - - generate - - - - - - - - - - jboss-public-repository-group - JBoss Public Repository Group - - true - never - - - true - never - - https://repository.jboss.org/nexus/content/groups/public/ - default - - - diff --git a/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom.sha1 b/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom.sha1 deleted file mode 100644 index 6b2a4aefe..000000000 --- a/code/arachne/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c8bf5fe8239a4ccacaec31ec08dac57a05c25158 \ No newline at end of file diff --git a/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/_remote.repositories b/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/_remote.repositories deleted file mode 100644 index 47e245ab6..000000000 --- a/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:57 EDT 2024 -logging-parent-1.0.1.Final.pom>central= diff --git a/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom b/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom deleted file mode 100644 index 24c61885d..000000000 --- a/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom +++ /dev/null @@ -1,134 +0,0 @@ - - - - org.jboss - jboss-parent - 39 - - - 4.0.0 - - org.jboss.logging - logging-parent - 1.0.1.Final - pom - - https://jboss.org - - - scm:git:git://github.com/jboss-logging/logging-dev-tools.git - scm:git:git@github.com:jboss-logging/logging-dev-tools.git - https://github.com/jboss-logging/logging-dev-tools/tree/main/ - HEAD - - - - - James R. Perkins - jperkins@redhat.com - Red Hat, Inc. - https://redhat.com - - - - - - Apache License 2.0 - https://repository.jboss.org/licenses/apache-2.0.txt - repo - - - - - - false - true - - - 11 - 11 - 11 - ${maven.compiler.target} - - 3.11.0 - 3.1.0 - 2.23.0 - 1.9.0 - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${maven.compiler.release} - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${maven.test.redirectTestOutputToFile} - - - - net.revelc.code.formatter - formatter-maven-plugin - ${version.formatter.maven.plugin} - - - org.jboss.logging - ide-config - 1.0.1.Final - - - - - .cache - eclipse-code-formatter.xml - jboss-logging-xml.properties - LF - true - true - ${skipFormatting} - - - - format - - format - - process-sources - - - - - net.revelc.code - impsort-maven-plugin - ${version.impsort.maven.plugin} - - - .cache - java.,javax.,jakarta.,org.,com. - * - ${skipFormatting} - true - - - - sort-imports - - sort - - process-sources - - - - - - - diff --git a/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom.sha1 b/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom.sha1 deleted file mode 100644 index 4ec2bd810..000000000 --- a/code/arachne/org/jboss/logging/logging-parent/1.0.1.Final/logging-parent-1.0.1.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1efc675bb87e4b0aadb2e3944d14b4e6102294bc \ No newline at end of file diff --git a/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/_remote.repositories b/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/_remote.repositories deleted file mode 100644 index 6116c5373..000000000 --- a/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:56 EDT 2024 -shrinkwrap-descriptors-bom-2.0.0.pom>jboss-public-repository-group= diff --git a/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom b/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom deleted file mode 100644 index 164ca5f63..000000000 --- a/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - 4.0.0 - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-bom - 2.0.0 - pom - ShrinkWrap Descriptors Bill of Materials - Centralized dependencyManagement for the ShrinkWrap Descriptors Project - http://www.jboss.org/shrinkwrap - - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - jboss.org - JBoss.org Community - JBoss.org - http://www.jboss.org - - - - - - scm:git:git://github.com/shrinkwrap/descriptors.git - scm:git:git@github.com:shrinkwrap/descriptors.git - https://github.com/shrinkwrap/descriptors - 2.0.0 - - - - - - https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ - - https://repository.jboss.org/nexus/content/repositories/snapshots/ - - - - - - - - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-api-base - ${project.version} - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-api-javaee - ${project.version} - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-api-jboss - ${project.version} - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-gen - ${project.version} - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-impl-base - ${project.version} - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-impl-javaee - ${project.version} - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-impl-jboss - ${project.version} - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-spi - ${project.version} - - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-depchain - ${project.version} - pom - - - - - - - - - - maven-release-plugin - 2.1 - - false - true - - - - - - - - - jboss-releases-repository - JBoss Releases Repository - ${jboss.releases.repo.url} - - - jboss-snapshots-repository - JBoss Snapshots Repository - ${jboss.snapshots.repo.url} - - - - diff --git a/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom.sha1 b/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom.sha1 deleted file mode 100644 index 953637fb3..000000000 --- a/code/arachne/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2e54f388c16b5881cba46df310a26c4a9d9cf13d \ No newline at end of file diff --git a/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/_remote.repositories b/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/_remote.repositories deleted file mode 100644 index 598edf00c..000000000 --- a/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:55 EDT 2024 -shrinkwrap-resolver-bom-3.1.4.pom>jboss-public-repository-group= diff --git a/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom b/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom deleted file mode 100644 index 5356646bd..000000000 --- a/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - 4.0.0 - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-bom - 3.1.4 - pom - ShrinkWrap Resolver Bill of Materials - Centralized dependencyManagement for the ShrinkWrap Resolver Project - http://www.jboss.org/shrinkwrap - - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - scm:git:git://github.com/shrinkwrap/shrinkwrap.git - scm:git:git@github.com:shrinkwrap/shrinkwrap.git - https://github.com/shrinkwrap/shrinkwrap - 3.1.4 - - - - - jboss.org - JBoss.org Community - JBoss.org - http://www.jboss.org - - - - - - - https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ - https://repository.jboss.org/nexus/content/repositories/snapshots/ - 3.6.3 - - - - - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-api - ${project.version} - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-spi - ${project.version} - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-api-maven - ${project.version} - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-spi-maven - ${project.version} - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-impl-maven - ${project.version} - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-api-maven-archive - ${project.version} - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-impl-maven-archive - ${project.version} - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-depchain - ${project.version} - pom - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-gradle-depchain - ${project.version} - pom - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-maven-plugin - ${project.version} - runtime - maven-plugin - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-api-gradle-embedded-archive - ${project.version} - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-impl-gradle-embedded-archive - ${project.version} - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-api-maven-embedded - ${project.version} - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-impl-maven-embedded - ${project.version} - - - - - org.apache.maven - maven - ${version.org.apache.maven} - import - pom - - - - - - - - - - maven-release-plugin - - false - true - - - - - - - - - - gpg-sign - - - - - org.apache.maven.plugins - maven-gpg-plugin - - true - - - - - sign - - - - - - - - - - - - jboss-releases-repository - JBoss Releases Repository - ${jboss.releases.repo.url} - - - jboss-snapshots-repository - JBoss Snapshots Repository - ${jboss.snapshots.repo.url} - - - - diff --git a/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom.sha1 b/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom.sha1 deleted file mode 100644 index 5fc54e2f5..000000000 --- a/code/arachne/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ed2a70b523572c65b999e342899d892750e4eee3 \ No newline at end of file diff --git a/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/_remote.repositories b/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/_remote.repositories deleted file mode 100644 index 9b13129e5..000000000 --- a/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:55 EDT 2024 -shrinkwrap-bom-1.2.6.pom>jboss-public-repository-group= diff --git a/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom b/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom deleted file mode 100644 index b98161891..000000000 --- a/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - 4.0.0 - - - org.jboss.shrinkwrap - shrinkwrap-bom - 1.2.6 - pom - ShrinkWrap Bill of Materials - Centralized dependencyManagement for the ShrinkWrap Project - http://www.jboss.org/shrinkwrap - - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - scm:git:git://github.com/shrinkwrap/shrinkwrap.git - scm:git:git@github.com:shrinkwrap/shrinkwrap.git - https://github.com/shrinkwrap/shrinkwrap - 1.2.6 - - - - - jboss.org - JBoss.org Community - JBoss.org - http://www.jboss.org - - - - - - - https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ - https://repository.jboss.org/nexus/content/repositories/snapshots/ - - - - - - - - - org.jboss.shrinkwrap - shrinkwrap-api - ${project.version} - - - org.jboss.shrinkwrap - shrinkwrap-spi - ${project.version} - - - org.jboss.shrinkwrap - shrinkwrap-impl-base - ${project.version} - - - org.jboss.shrinkwrap - shrinkwrap-api-nio2 - ${project.version} - - - org.jboss.shrinkwrap - shrinkwrap-impl-nio2 - ${project.version} - - - - org.jboss.shrinkwrap - shrinkwrap-depchain - ${project.version} - pom - - - - org.jboss.shrinkwrap - shrinkwrap-depchain-java7 - ${project.version} - pom - - - - - - - - - - maven-release-plugin - 2.1 - - false - true - - - - - - - - - jboss-releases-repository - JBoss Releases Repository - ${jboss.releases.repo.url} - - - jboss-snapshots-repository - JBoss Snapshots Repository - ${jboss.snapshots.repo.url} - - - - diff --git a/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom.sha1 b/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom.sha1 deleted file mode 100644 index 23e960418..000000000 --- a/code/arachne/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2d5351aff1cf893fd48e82461ce47c114754e00b \ No newline at end of file diff --git a/code/arachne/org/jetbrains/annotations/17.0.0/_remote.repositories b/code/arachne/org/jetbrains/annotations/17.0.0/_remote.repositories deleted file mode 100644 index d5b5daaf3..000000000 --- a/code/arachne/org/jetbrains/annotations/17.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:12 EDT 2024 -annotations-17.0.0.pom>central= diff --git a/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom b/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom deleted file mode 100644 index afb0b24d0..000000000 --- a/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom +++ /dev/null @@ -1,30 +0,0 @@ - - - 4.0.0 - org.jetbrains - annotations - 17.0.0 - JetBrains Java Annotations - A set of annotations used for code inspection support and code documentation. - https://github.com/JetBrains/java-annotations - - https://github.com/JetBrains/java-annotations - scm:git:git://github.com/JetBrains/java-annotations.git - scm:git:ssh://github.com:JetBrains/java-annotations.git - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - diff --git a/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom.sha1 b/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom.sha1 deleted file mode 100644 index 7180c605e..000000000 --- a/code/arachne/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6fb414405261ca1251f81a29ed920d8621f060c7 \ No newline at end of file diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/_remote.repositories b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/_remote.repositories deleted file mode 100644 index e970e2e28..000000000 --- a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:49 EDT 2024 -kotlin-bom-1.3.72.pom>local-repo= diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom deleted file mode 100644 index 426a27d00..000000000 --- a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom +++ /dev/null @@ -1,219 +0,0 @@ - - - - 4.0.0 - - org.jetbrains.kotlin - kotlin-bom - 1.3.72 - pom - - - - Kotlin Libraries bill-of-materials - Kotlin is a statically typed programming language that compiles to JVM byte codes and JavaScript - https://kotlinlang.org/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - A business-friendly OSS license - - - - - https://github.com/JetBrains/kotlin - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - - - - - ${project.version} - - - - - - - ${project.groupId} - kotlin-stdlib - ${kotlin.version} - - - ${project.groupId} - kotlin-stdlib-jdk7 - ${kotlin.version} - - - ${project.groupId} - kotlin-stdlib-jdk8 - ${kotlin.version} - - - ${project.groupId} - kotlin-stdlib-js - ${kotlin.version} - - - ${project.groupId} - kotlin-stdlib-common - ${kotlin.version} - - - - ${project.groupId} - kotlin-reflect - ${kotlin.version} - - - - ${project.groupId} - kotlin-osgi-bundle - ${kotlin.version} - - - - ${project.groupId} - kotlin-test - ${kotlin.version} - - - ${project.groupId} - kotlin-test-junit - ${kotlin.version} - - - ${project.groupId} - kotlin-test-junit5 - ${kotlin.version} - - - ${project.groupId} - kotlin-test-testng - ${kotlin.version} - - - ${project.groupId} - kotlin-test-js - ${kotlin.version} - - - ${project.groupId} - kotlin-test-common - ${kotlin.version} - - - ${project.groupId} - kotlin-test-annotations-common - ${kotlin.version} - - - - ${project.groupId} - kotlin-main-kts - ${kotlin.version} - - - ${project.groupId} - kotlin-script-runtime - ${kotlin.version} - - - ${project.groupId} - kotlin-script-util - ${kotlin.version} - - - ${project.groupId} - kotlin-scripting-common - ${kotlin.version} - - - ${project.groupId} - kotlin-scripting-jvm - ${kotlin.version} - - - ${project.groupId} - kotlin-scripting-jvm-host - ${kotlin.version} - - - - ${project.groupId} - kotlin-compiler - ${kotlin.version} - - - ${project.groupId} - kotlin-compiler-embeddable - ${kotlin.version} - - - ${project.groupId} - kotlin-daemon-client - ${kotlin.version} - - - - - - - ${deploy-repo} - ${deploy-url} - - - sonatype-nexus-staging - https://oss.sonatype.org/content/repositories/snapshots/ - - - - - - sign-artifacts - - - - maven-gpg-plugin - 1.4 - - ${kotlin.key.passphrase} - ${kotlin.key.name} - ../../.gnupg - - - - sign-artifacts - verify - - sign - - - - - - - - - diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.lastUpdated b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.lastUpdated deleted file mode 100644 index 55980bf90..000000000 --- a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:49 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139889574 -http\://0.0.0.0/.error=Could not transfer artifact org.jetbrains.kotlin\:kotlin-bom\:pom\:1.3.72 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139889330 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139889338 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139889436 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139889532 diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.sha1 b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.sha1 deleted file mode 100644 index e837111a0..000000000 --- a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bc373626aca59c52c3cbf49f046da939e11073f5 \ No newline at end of file diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/_remote.repositories b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/_remote.repositories deleted file mode 100644 index b2b112059..000000000 --- a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:31 EDT 2024 -kotlin-bom-1.9.23.pom>ohdsi= diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom deleted file mode 100644 index e24196d02..000000000 --- a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom +++ /dev/null @@ -1,225 +0,0 @@ - - - - 4.0.0 - - org.jetbrains.kotlin - kotlin-bom - 1.9.23 - pom - - - - Kotlin Libraries bill-of-materials - Kotlin is a statically typed programming language that compiles to JVM byte codes and JavaScript - https://kotlinlang.org/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - A business-friendly OSS license - - - - - https://github.com/JetBrains/kotlin - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - - - - - ${project.version} - - - - - - - ${project.groupId} - kotlin-stdlib - ${kotlin.version} - - - ${project.groupId} - kotlin-stdlib-jdk7 - ${kotlin.version} - - - ${project.groupId} - kotlin-stdlib-jdk8 - ${kotlin.version} - - - ${project.groupId} - kotlin-stdlib-js - ${kotlin.version} - - - ${project.groupId} - kotlin-stdlib-common - ${kotlin.version} - - - - ${project.groupId} - kotlin-reflect - ${kotlin.version} - - - - ${project.groupId} - kotlin-osgi-bundle - ${kotlin.version} - - - - ${project.groupId} - kotlin-test - ${kotlin.version} - - - ${project.groupId} - kotlin-test-junit - ${kotlin.version} - - - ${project.groupId} - kotlin-test-junit5 - ${kotlin.version} - - - ${project.groupId} - kotlin-test-testng - ${kotlin.version} - - - ${project.groupId} - kotlin-test-js - ${kotlin.version} - - - ${project.groupId} - kotlin-test-common - ${kotlin.version} - - - ${project.groupId} - kotlin-test-annotations-common - ${kotlin.version} - - - - ${project.groupId} - kotlin-main-kts - ${kotlin.version} - - - ${project.groupId} - kotlin-script-runtime - ${kotlin.version} - - - ${project.groupId} - kotlin-scripting-common - ${kotlin.version} - - - ${project.groupId} - kotlin-scripting-jvm - ${kotlin.version} - - - ${project.groupId} - kotlin-scripting-jvm-host - ${kotlin.version} - - - ${project.groupId} - kotlin-scripting-ide-services - ${kotlin.version} - - - - ${project.groupId} - kotlin-compiler - ${kotlin.version} - - - ${project.groupId} - kotlin-compiler-embeddable - ${kotlin.version} - - - ${project.groupId} - kotlin-daemon-client - ${kotlin.version} - - - - - - - ${deploy-repo} - ${deploy-url} - - - sonatype-nexus-staging - https://oss.sonatype.org/content/repositories/snapshots/ - - - - - - sign-artifacts - - - - maven-gpg-plugin - 1.6 - - ${kotlin.key.passphrase} - ${kotlin.key.name} - ../../.gnupg - - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.lastUpdated b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.lastUpdated deleted file mode 100644 index 284331383..000000000 --- a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:31 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.jetbrains.kotlin\:kotlin-bom\:pom\:1.9.23 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139811058 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139811194 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139811302 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139811423 diff --git a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.sha1 b/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.sha1 deleted file mode 100644 index c9605908b..000000000 --- a/code/arachne/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bd2c64b0fd5c57c4a01a667ec61a7abb2e769550 \ No newline at end of file diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/_remote.repositories b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/_remote.repositories deleted file mode 100644 index 274d10cb3..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:50 EDT 2024 -kotlinx-coroutines-bom-1.3.6.pom>local-repo= diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom deleted file mode 100644 index 3fe100c99..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom +++ /dev/null @@ -1,142 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlinx - kotlinx-coroutines-bom - 1.3.6 - pom - kotlinx-coroutines-bom - Coroutines support libraries for Kotlin - https://github.com/Kotlin/kotlinx.coroutines - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - - https://github.com/Kotlin/kotlinx.coroutines - - - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-js - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-native - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-common - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-debug - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-guava - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-javafx - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk8 - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk9 - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-play-services - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactive - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx2 - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx3 - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-slf4j - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-swing - 1.3.6 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-test - 1.3.6 - compile - - - - diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.lastUpdated b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.lastUpdated deleted file mode 100644 index 7d53a95b1..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:50 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139890064 -http\://0.0.0.0/.error=Could not transfer artifact org.jetbrains.kotlinx\:kotlinx-coroutines-bom\:pom\:1.3.6 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139889744 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139889752 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139889913 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139890017 diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.sha1 b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.sha1 deleted file mode 100644 index f6b4735c9..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.6/kotlinx-coroutines-bom-1.3.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -87c949e6ac5bc0314d91694952d21becb67fb9bf \ No newline at end of file diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/_remote.repositories b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/_remote.repositories deleted file mode 100644 index 1cd28a2bf..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:31 EDT 2024 -kotlinx-coroutines-bom-1.7.3.pom>ohdsi= diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom deleted file mode 100644 index 623dbfbdd..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom +++ /dev/null @@ -1,119 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlinx - kotlinx-coroutines-bom - 1.7.3 - pom - kotlinx-coroutines-bom - Coroutines support libraries for Kotlin - https://github.com/Kotlin/kotlinx.coroutines - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - - https://github.com/Kotlin/kotlinx.coroutines - - - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-debug - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-guava - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-javafx - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk8 - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk9 - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-play-services - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactive - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx2 - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx3 - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-slf4j - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-swing - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test-jvm - 1.7.3 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test - 1.7.3 - - - - diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.lastUpdated b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.lastUpdated deleted file mode 100644 index d0598943a..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:31 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.jetbrains.kotlinx\:kotlinx-coroutines-bom\:pom\:1.7.3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139811433 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139811529 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139811702 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139811848 diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.sha1 b/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.sha1 deleted file mode 100644 index 1d49b3f7e..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6563a4ccb53e4678a32841c5dbb0dae1c026aa0f \ No newline at end of file diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/_remote.repositories b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/_remote.repositories deleted file mode 100644 index ac59141e2..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:32 EDT 2024 -kotlinx-serialization-bom-1.6.3.pom>ohdsi= diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom deleted file mode 100644 index e72d177d2..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom +++ /dev/null @@ -1,99 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlinx - kotlinx-serialization-bom - 1.6.3 - pom - kotlinx-serialization-bom - Kotlin multiplatform serialization runtime library - https://github.com/Kotlin/kotlinx.serialization - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - - https://github.com/Kotlin/kotlinx.serialization - - - - - org.jetbrains.kotlinx - kotlinx-serialization-cbor-jvm - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-cbor - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-core-jvm - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-core - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-hocon - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-json-jvm - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-json - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-json-okio-jvm - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-json-okio - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-properties-jvm - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-properties - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-protobuf-jvm - 1.6.3 - - - org.jetbrains.kotlinx - kotlinx-serialization-protobuf - 1.6.3 - - - - diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.lastUpdated b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.lastUpdated deleted file mode 100644 index 945699efd..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:32 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.jetbrains.kotlinx\:kotlinx-serialization-bom\:pom\:1.6.3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139811858 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139811964 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139812068 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139812217 diff --git a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.sha1 b/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.sha1 deleted file mode 100644 index 7ddee765b..000000000 --- a/code/arachne/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7c5582389dc60169a84cb882bed09b4ab68833bf \ No newline at end of file diff --git a/code/arachne/org/json/json/20170516/_remote.repositories b/code/arachne/org/json/json/20170516/_remote.repositories deleted file mode 100644 index eb1f8f403..000000000 --- a/code/arachne/org/json/json/20170516/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:57 EDT 2024 -json-20170516.pom>central= diff --git a/code/arachne/org/json/json/20170516/json-20170516.pom b/code/arachne/org/json/json/20170516/json-20170516.pom deleted file mode 100644 index a7bd78b6c..000000000 --- a/code/arachne/org/json/json/20170516/json-20170516.pom +++ /dev/null @@ -1,181 +0,0 @@ - - 4.0.0 - - org.json - json - 20170516 - bundle - - JSON in Java - - JSON is a light-weight, language independent, data interchange format. - See http://www.JSON.org/ - - The files in this package implement JSON encoders/decoders in Java. - It also includes the capability to convert between JSON and XML, HTTP - headers, Cookies, and CDL. - - This is a reference implementation. There is a large number of JSON packages - in Java. Perhaps someday the Java community will standardize on one. Until - then, choose carefully. - - The license includes this restriction: "The software shall be used for good, - not evil." If your conscience cannot live with that, then choose a different - package. - - https://github.com/douglascrockford/JSON-java - - - org.sonatype.oss - oss-parent - 9 - - - - https://github.com/douglascrockford/JSON-java.git - scm:git:git://github.com/douglascrockford/JSON-java.git - scm:git:git@github.com:douglascrockford/JSON-java.git - - - - - The JSON License - http://json.org/license.html - repo - Copyright (c) 2002 JSON.org - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and - associated documentation files (the "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the - following conditions: - - The above copyright notice and this permission notice shall be included in all copies or substantial - portions of the Software. - - The Software shall be used for Good, not Evil. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT - LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - - - - - Douglas Crockford - douglas@crockford.com - - - - - UTF-8 - - - - - - junit - junit - 4.12 - test - - - com.jayway.jsonpath - json-path - 2.1.0 - test - - - org.mockito - mockito-core - 1.9.5 - test - - - - - - - org.apache.felix - maven-bundle-plugin - 3.0.1 - true - - - - org.json - - ${project.artifactId} - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.6 - 1.6 - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - attach-javadocs - - jar - - - -Xdoclint:none - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.3 - true - - ossrh - https://oss.sonatype.org/ - false - - - - - diff --git a/code/arachne/org/json/json/20170516/json-20170516.pom.sha1 b/code/arachne/org/json/json/20170516/json-20170516.pom.sha1 deleted file mode 100644 index 173ec30c1..000000000 --- a/code/arachne/org/json/json/20170516/json-20170516.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -48701bc8a080cbe230a5ea5cdb46fd3b4b57a2f8 \ No newline at end of file diff --git a/code/arachne/org/json/json/20220924/_remote.repositories b/code/arachne/org/json/json/20220924/_remote.repositories deleted file mode 100644 index d0ffd65ca..000000000 --- a/code/arachne/org/json/json/20220924/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:57 EDT 2024 -json-20220924.pom>central= diff --git a/code/arachne/org/json/json/20220924/json-20220924.pom b/code/arachne/org/json/json/20220924/json-20220924.pom deleted file mode 100644 index 4ef85a818..000000000 --- a/code/arachne/org/json/json/20220924/json-20220924.pom +++ /dev/null @@ -1,170 +0,0 @@ - - 4.0.0 - - org.json - json - 20220924 - bundle - - JSON in Java - - JSON is a light-weight, language independent, data interchange format. - See http://www.JSON.org/ - - The files in this package implement JSON encoders/decoders in Java. - It also includes the capability to convert between JSON and XML, HTTP - headers, Cookies, and CDL. - - This is a reference implementation. There is a large number of JSON packages - in Java. Perhaps someday the Java community will standardize on one. Until - then, choose carefully. - - https://github.com/douglascrockford/JSON-java - - - org.sonatype.oss - oss-parent - 9 - - - - https://github.com/douglascrockford/JSON-java.git - scm:git:git://github.com/douglascrockford/JSON-java.git - scm:git:git@github.com:douglascrockford/JSON-java.git - - - - - Public Domain - https://github.com/stleary/JSON-java/blob/master/LICENSE - repo - - - - - - Douglas Crockford - douglas@crockford.com - - - - - UTF-8 - - - - - - junit - junit - 4.13.1 - test - - - com.jayway.jsonpath - json-path - 2.1.0 - test - - - org.mockito - mockito-core - 1.9.5 - test - - - - - - - org.apache.felix - maven-bundle-plugin - 3.0.1 - true - - - - org.json - - ${project.artifactId} - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.6 - 1.6 - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - attach-javadocs - - jar - - - -Xdoclint:none - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.3 - true - - ossrh - https://oss.sonatype.org/ - false - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - - org.json - - - - - - - diff --git a/code/arachne/org/json/json/20220924/json-20220924.pom.sha1 b/code/arachne/org/json/json/20220924/json-20220924.pom.sha1 deleted file mode 100644 index b64fea0c0..000000000 --- a/code/arachne/org/json/json/20220924/json-20220924.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e5b40efbf830f6d6269e01a8914eaf7cb660a37d \ No newline at end of file diff --git a/code/arachne/org/json/json/20230227/_remote.repositories b/code/arachne/org/json/json/20230227/_remote.repositories deleted file mode 100644 index 437823b29..000000000 --- a/code/arachne/org/json/json/20230227/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:57 EDT 2024 -json-20230227.pom>central= diff --git a/code/arachne/org/json/json/20230227/json-20230227.pom b/code/arachne/org/json/json/20230227/json-20230227.pom deleted file mode 100644 index f17e0abfe..000000000 --- a/code/arachne/org/json/json/20230227/json-20230227.pom +++ /dev/null @@ -1,170 +0,0 @@ - - 4.0.0 - - org.json - json - 20230227 - bundle - - JSON in Java - - JSON is a light-weight, language independent, data interchange format. - See http://www.JSON.org/ - - The files in this package implement JSON encoders/decoders in Java. - It also includes the capability to convert between JSON and XML, HTTP - headers, Cookies, and CDL. - - This is a reference implementation. There is a large number of JSON packages - in Java. Perhaps someday the Java community will standardize on one. Until - then, choose carefully. - - https://github.com/douglascrockford/JSON-java - - - org.sonatype.oss - oss-parent - 9 - - - - https://github.com/douglascrockford/JSON-java.git - scm:git:git://github.com/douglascrockford/JSON-java.git - scm:git:git@github.com:douglascrockford/JSON-java.git - - - - - Public Domain - https://github.com/stleary/JSON-java/blob/master/LICENSE - repo - - - - - - Douglas Crockford - douglas@crockford.com - - - - - UTF-8 - - - - - - junit - junit - 4.13.1 - test - - - com.jayway.jsonpath - json-path - 2.1.0 - test - - - org.mockito - mockito-core - 1.9.5 - test - - - - - - - org.apache.felix - maven-bundle-plugin - 3.0.1 - true - - - - org.json - - ${project.artifactId} - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.6 - 1.6 - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - attach-javadocs - - jar - - - -Xdoclint:none - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.3 - true - - ossrh - https://oss.sonatype.org/ - false - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - - org.json - - - - - - - diff --git a/code/arachne/org/json/json/20230227/json-20230227.pom.sha1 b/code/arachne/org/json/json/20230227/json-20230227.pom.sha1 deleted file mode 100644 index 30fe8423d..000000000 --- a/code/arachne/org/json/json/20230227/json-20230227.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -75c0f2b93d350b3329f2a149159f2f2adfff7eb2 \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.10.0/_remote.repositories b/code/arachne/org/junit/junit-bom/5.10.0/_remote.repositories deleted file mode 100644 index 8ba694348..000000000 --- a/code/arachne/org/junit/junit-bom/5.10.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:50 EDT 2024 -junit-bom-5.10.0.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom b/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom deleted file mode 100644 index 1ea4b70fd..000000000 --- a/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.10.0 - pom - JUnit 5 (Bill of Materials) - This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit.jupiter - junit-jupiter - 5.10.0 - - - org.junit.jupiter - junit-jupiter-api - 5.10.0 - - - org.junit.jupiter - junit-jupiter-engine - 5.10.0 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.10.0 - - - org.junit.jupiter - junit-jupiter-params - 5.10.0 - - - org.junit.platform - junit-platform-commons - 1.10.0 - - - org.junit.platform - junit-platform-console - 1.10.0 - - - org.junit.platform - junit-platform-engine - 1.10.0 - - - org.junit.platform - junit-platform-jfr - 1.10.0 - - - org.junit.platform - junit-platform-launcher - 1.10.0 - - - org.junit.platform - junit-platform-reporting - 1.10.0 - - - org.junit.platform - junit-platform-runner - 1.10.0 - - - org.junit.platform - junit-platform-suite - 1.10.0 - - - org.junit.platform - junit-platform-suite-api - 1.10.0 - - - org.junit.platform - junit-platform-suite-commons - 1.10.0 - - - org.junit.platform - junit-platform-suite-engine - 1.10.0 - - - org.junit.platform - junit-platform-testkit - 1.10.0 - - - org.junit.vintage - junit-vintage-engine - 5.10.0 - - - - diff --git a/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom.sha1 b/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom.sha1 deleted file mode 100644 index bf971d8ce..000000000 --- a/code/arachne/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1136f35a5438634393bf628f69b8ca43c8518f7c \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.10.1/_remote.repositories b/code/arachne/org/junit/junit-bom/5.10.1/_remote.repositories deleted file mode 100644 index 2a70eb7d4..000000000 --- a/code/arachne/org/junit/junit-bom/5.10.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:53 EDT 2024 -junit-bom-5.10.1.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom b/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom deleted file mode 100644 index 40f6957e2..000000000 --- a/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.10.1 - pom - JUnit 5 (Bill of Materials) - This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit.jupiter - junit-jupiter - 5.10.1 - - - org.junit.jupiter - junit-jupiter-api - 5.10.1 - - - org.junit.jupiter - junit-jupiter-engine - 5.10.1 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.10.1 - - - org.junit.jupiter - junit-jupiter-params - 5.10.1 - - - org.junit.platform - junit-platform-commons - 1.10.1 - - - org.junit.platform - junit-platform-console - 1.10.1 - - - org.junit.platform - junit-platform-engine - 1.10.1 - - - org.junit.platform - junit-platform-jfr - 1.10.1 - - - org.junit.platform - junit-platform-launcher - 1.10.1 - - - org.junit.platform - junit-platform-reporting - 1.10.1 - - - org.junit.platform - junit-platform-runner - 1.10.1 - - - org.junit.platform - junit-platform-suite - 1.10.1 - - - org.junit.platform - junit-platform-suite-api - 1.10.1 - - - org.junit.platform - junit-platform-suite-commons - 1.10.1 - - - org.junit.platform - junit-platform-suite-engine - 1.10.1 - - - org.junit.platform - junit-platform-testkit - 1.10.1 - - - org.junit.vintage - junit-vintage-engine - 5.10.1 - - - - diff --git a/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom.sha1 b/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom.sha1 deleted file mode 100644 index 1645590f9..000000000 --- a/code/arachne/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -41a86ea51227739a5b7ca3430ae88ce44a64a42a \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.10.2/_remote.repositories b/code/arachne/org/junit/junit-bom/5.10.2/_remote.repositories deleted file mode 100644 index 744022b7a..000000000 --- a/code/arachne/org/junit/junit-bom/5.10.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:31 EDT 2024 -junit-bom-5.10.2.pom>ohdsi= diff --git a/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom b/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom deleted file mode 100644 index 92e6e6009..000000000 --- a/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.10.2 - pom - JUnit 5 (Bill of Materials) - This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit.jupiter - junit-jupiter - 5.10.2 - - - org.junit.jupiter - junit-jupiter-api - 5.10.2 - - - org.junit.jupiter - junit-jupiter-engine - 5.10.2 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.10.2 - - - org.junit.jupiter - junit-jupiter-params - 5.10.2 - - - org.junit.platform - junit-platform-commons - 1.10.2 - - - org.junit.platform - junit-platform-console - 1.10.2 - - - org.junit.platform - junit-platform-engine - 1.10.2 - - - org.junit.platform - junit-platform-jfr - 1.10.2 - - - org.junit.platform - junit-platform-launcher - 1.10.2 - - - org.junit.platform - junit-platform-reporting - 1.10.2 - - - org.junit.platform - junit-platform-runner - 1.10.2 - - - org.junit.platform - junit-platform-suite - 1.10.2 - - - org.junit.platform - junit-platform-suite-api - 1.10.2 - - - org.junit.platform - junit-platform-suite-commons - 1.10.2 - - - org.junit.platform - junit-platform-suite-engine - 1.10.2 - - - org.junit.platform - junit-platform-testkit - 1.10.2 - - - org.junit.vintage - junit-vintage-engine - 5.10.2 - - - - diff --git a/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.lastUpdated b/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.lastUpdated deleted file mode 100644 index c292cbadd..000000000 --- a/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:31 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.junit\:junit-bom\:pom\:5.10.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139810632 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139810733 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139810924 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139811048 diff --git a/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.sha1 b/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.sha1 deleted file mode 100644 index 69f18a06f..000000000 --- a/code/arachne/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b25ed98a5bd08cdda60e569cf22822a760e76019 \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.6.2/_remote.repositories b/code/arachne/org/junit/junit-bom/5.6.2/_remote.repositories deleted file mode 100644 index 715a36c6f..000000000 --- a/code/arachne/org/junit/junit-bom/5.6.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:49 EDT 2024 -junit-bom-5.6.2.pom>local-repo= diff --git a/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom b/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom deleted file mode 100644 index 3909068b8..000000000 --- a/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.6.2 - pom - JUnit 5 (Bill of Materials) - This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit.jupiter - junit-jupiter - 5.6.2 - - - org.junit.jupiter - junit-jupiter-api - 5.6.2 - - - org.junit.jupiter - junit-jupiter-engine - 5.6.2 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.6.2 - - - org.junit.jupiter - junit-jupiter-params - 5.6.2 - - - org.junit.platform - junit-platform-commons - 1.6.2 - - - org.junit.platform - junit-platform-console - 1.6.2 - - - org.junit.platform - junit-platform-engine - 1.6.2 - - - org.junit.platform - junit-platform-launcher - 1.6.2 - - - org.junit.platform - junit-platform-reporting - 1.6.2 - - - org.junit.platform - junit-platform-runner - 1.6.2 - - - org.junit.platform - junit-platform-suite-api - 1.6.2 - - - org.junit.platform - junit-platform-testkit - 1.6.2 - - - org.junit.vintage - junit-vintage-engine - 5.6.2 - - - - diff --git a/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.lastUpdated b/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.lastUpdated deleted file mode 100644 index c546916ad..000000000 --- a/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:49 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -file\:///code/arachne/.lastUpdated=1721139889158 -http\://0.0.0.0/.error=Could not transfer artifact org.junit\:junit-bom\:pom\:5.6.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139888899 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139888906 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139889042 -https\://jitpack.io/.error= -https\://jitpack.io/.lastUpdated=1721139889110 diff --git a/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.sha1 b/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.sha1 deleted file mode 100644 index 3ca4dc9f6..000000000 --- a/code/arachne/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f5a7c889e43500e0ad8d5ae4383c293f4fa85cfc \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.7.2/_remote.repositories b/code/arachne/org/junit/junit-bom/5.7.2/_remote.repositories deleted file mode 100644 index 3bdc50fab..000000000 --- a/code/arachne/org/junit/junit-bom/5.7.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -junit-bom-5.7.2.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom b/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom deleted file mode 100644 index f1ebe9715..000000000 --- a/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.7.2 - pom - JUnit 5 (Bill of Materials) - This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit.jupiter - junit-jupiter - 5.7.2 - - - org.junit.jupiter - junit-jupiter-api - 5.7.2 - - - org.junit.jupiter - junit-jupiter-engine - 5.7.2 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.7.2 - - - org.junit.jupiter - junit-jupiter-params - 5.7.2 - - - org.junit.platform - junit-platform-commons - 1.7.2 - - - org.junit.platform - junit-platform-console - 1.7.2 - - - org.junit.platform - junit-platform-engine - 1.7.2 - - - org.junit.platform - junit-platform-jfr - 1.7.2 - - - org.junit.platform - junit-platform-launcher - 1.7.2 - - - org.junit.platform - junit-platform-reporting - 1.7.2 - - - org.junit.platform - junit-platform-runner - 1.7.2 - - - org.junit.platform - junit-platform-suite-api - 1.7.2 - - - org.junit.platform - junit-platform-testkit - 1.7.2 - - - org.junit.vintage - junit-vintage-engine - 5.7.2 - - - - diff --git a/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 b/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 deleted file mode 100644 index 70a543be8..000000000 --- a/code/arachne/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e8848369738c03e40af5507686216f9b8b44b6a3 \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.9.1/_remote.repositories b/code/arachne/org/junit/junit-bom/5.9.1/_remote.repositories deleted file mode 100644 index 0562d0e93..000000000 --- a/code/arachne/org/junit/junit-bom/5.9.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:08 EDT 2024 -junit-bom-5.9.1.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom b/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom deleted file mode 100644 index 57e6b86cb..000000000 --- a/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.9.1 - pom - JUnit 5 (Bill of Materials) - This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit.jupiter - junit-jupiter - 5.9.1 - - - org.junit.jupiter - junit-jupiter-api - 5.9.1 - - - org.junit.jupiter - junit-jupiter-engine - 5.9.1 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.9.1 - - - org.junit.jupiter - junit-jupiter-params - 5.9.1 - - - org.junit.platform - junit-platform-commons - 1.9.1 - - - org.junit.platform - junit-platform-console - 1.9.1 - - - org.junit.platform - junit-platform-engine - 1.9.1 - - - org.junit.platform - junit-platform-jfr - 1.9.1 - - - org.junit.platform - junit-platform-launcher - 1.9.1 - - - org.junit.platform - junit-platform-reporting - 1.9.1 - - - org.junit.platform - junit-platform-runner - 1.9.1 - - - org.junit.platform - junit-platform-suite - 1.9.1 - - - org.junit.platform - junit-platform-suite-api - 1.9.1 - - - org.junit.platform - junit-platform-suite-commons - 1.9.1 - - - org.junit.platform - junit-platform-suite-engine - 1.9.1 - - - org.junit.platform - junit-platform-testkit - 1.9.1 - - - org.junit.vintage - junit-vintage-engine - 5.9.1 - - - - diff --git a/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom.sha1 b/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom.sha1 deleted file mode 100644 index d6517976f..000000000 --- a/code/arachne/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce71051be5ac4cea4e06a25fc100a0e64bcf6a1c \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.9.2/_remote.repositories b/code/arachne/org/junit/junit-bom/5.9.2/_remote.repositories deleted file mode 100644 index cb3dc2eff..000000000 --- a/code/arachne/org/junit/junit-bom/5.9.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:46 EDT 2024 -junit-bom-5.9.2.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom b/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom deleted file mode 100644 index 70036acba..000000000 --- a/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.9.2 - pom - JUnit 5 (Bill of Materials) - This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit.jupiter - junit-jupiter - 5.9.2 - - - org.junit.jupiter - junit-jupiter-api - 5.9.2 - - - org.junit.jupiter - junit-jupiter-engine - 5.9.2 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.9.2 - - - org.junit.jupiter - junit-jupiter-params - 5.9.2 - - - org.junit.platform - junit-platform-commons - 1.9.2 - - - org.junit.platform - junit-platform-console - 1.9.2 - - - org.junit.platform - junit-platform-engine - 1.9.2 - - - org.junit.platform - junit-platform-jfr - 1.9.2 - - - org.junit.platform - junit-platform-launcher - 1.9.2 - - - org.junit.platform - junit-platform-reporting - 1.9.2 - - - org.junit.platform - junit-platform-runner - 1.9.2 - - - org.junit.platform - junit-platform-suite - 1.9.2 - - - org.junit.platform - junit-platform-suite-api - 1.9.2 - - - org.junit.platform - junit-platform-suite-commons - 1.9.2 - - - org.junit.platform - junit-platform-suite-engine - 1.9.2 - - - org.junit.platform - junit-platform-testkit - 1.9.2 - - - org.junit.vintage - junit-vintage-engine - 5.9.2 - - - - diff --git a/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom.sha1 b/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom.sha1 deleted file mode 100644 index c59706f4d..000000000 --- a/code/arachne/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -645a08cbe455cad14d8bfb25a35d7f594c53cafd \ No newline at end of file diff --git a/code/arachne/org/junit/junit-bom/5.9.3/_remote.repositories b/code/arachne/org/junit/junit-bom/5.9.3/_remote.repositories deleted file mode 100644 index 058b64cda..000000000 --- a/code/arachne/org/junit/junit-bom/5.9.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:57 EDT 2024 -junit-bom-5.9.3.pom>central= diff --git a/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom b/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom deleted file mode 100644 index b49e14dc5..000000000 --- a/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.9.3 - pom - JUnit 5 (Bill of Materials) - This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit.jupiter - junit-jupiter - 5.9.3 - - - org.junit.jupiter - junit-jupiter-api - 5.9.3 - - - org.junit.jupiter - junit-jupiter-engine - 5.9.3 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.9.3 - - - org.junit.jupiter - junit-jupiter-params - 5.9.3 - - - org.junit.platform - junit-platform-commons - 1.9.3 - - - org.junit.platform - junit-platform-console - 1.9.3 - - - org.junit.platform - junit-platform-engine - 1.9.3 - - - org.junit.platform - junit-platform-jfr - 1.9.3 - - - org.junit.platform - junit-platform-launcher - 1.9.3 - - - org.junit.platform - junit-platform-reporting - 1.9.3 - - - org.junit.platform - junit-platform-runner - 1.9.3 - - - org.junit.platform - junit-platform-suite - 1.9.3 - - - org.junit.platform - junit-platform-suite-api - 1.9.3 - - - org.junit.platform - junit-platform-suite-commons - 1.9.3 - - - org.junit.platform - junit-platform-suite-engine - 1.9.3 - - - org.junit.platform - junit-platform-testkit - 1.9.3 - - - org.junit.vintage - junit-vintage-engine - 5.9.3 - - - - diff --git a/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom.sha1 b/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom.sha1 deleted file mode 100644 index 9bfbbf3ac..000000000 --- a/code/arachne/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b1874b6a66656e4f5e4b492ab321249bcb749dc7 \ No newline at end of file diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/_remote.repositories b/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/_remote.repositories deleted file mode 100644 index a3e35e24f..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:09 EDT 2024 -junit-jupiter-api-5.10.2.pom>central= diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom b/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom deleted file mode 100644 index e3af241c2..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.jupiter - junit-jupiter-api - 5.10.2 - JUnit Jupiter API - Module "junit-jupiter-api" of JUnit 5. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit - junit-bom - 5.10.2 - pom - import - - - - - - org.opentest4j - opentest4j - 1.3.0 - compile - - - org.junit.platform - junit-platform-commons - 1.10.2 - compile - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom.sha1 b/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom.sha1 deleted file mode 100644 index f0d18f6c9..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter-api/5.10.2/junit-jupiter-api-5.10.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -93a08d741cad9179423cc229ecbfc016164977d7 \ No newline at end of file diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/_remote.repositories b/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/_remote.repositories deleted file mode 100644 index 9ec7d760b..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:09 EDT 2024 -junit-jupiter-engine-5.10.2.pom>central= diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom b/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom deleted file mode 100644 index 7d5b0eb4e..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.jupiter - junit-jupiter-engine - 5.10.2 - JUnit Jupiter Engine - Module "junit-jupiter-engine" of JUnit 5. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit - junit-bom - 5.10.2 - pom - import - - - - - - org.junit.platform - junit-platform-engine - 1.10.2 - compile - - - org.junit.jupiter - junit-jupiter-api - 5.10.2 - compile - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom.sha1 b/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom.sha1 deleted file mode 100644 index 92622b22d..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter-engine/5.10.2/junit-jupiter-engine-5.10.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1dfac67b8120dd7ac630a658929fbaf9eb673364 \ No newline at end of file diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/_remote.repositories b/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/_remote.repositories deleted file mode 100644 index f43eff693..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:09 EDT 2024 -junit-jupiter-params-5.10.2.pom>central= diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom b/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom deleted file mode 100644 index ef80af08f..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.jupiter - junit-jupiter-params - 5.10.2 - JUnit Jupiter Params - Module "junit-jupiter-params" of JUnit 5. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit - junit-bom - 5.10.2 - pom - import - - - - - - org.junit.jupiter - junit-jupiter-api - 5.10.2 - compile - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom.sha1 b/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom.sha1 deleted file mode 100644 index 06a11b99b..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter-params/5.10.2/junit-jupiter-params-5.10.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c1a88afb73d74acfc2ba7cbfc578d727e81aea45 \ No newline at end of file diff --git a/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/_remote.repositories b/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/_remote.repositories deleted file mode 100644 index 0683c9d95..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:08 EDT 2024 -junit-jupiter-5.10.2.pom>central= diff --git a/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom b/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom deleted file mode 100644 index 142a32499..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.jupiter - junit-jupiter - 5.10.2 - JUnit Jupiter (Aggregator) - Module "junit-jupiter" of JUnit 5. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit - junit-bom - 5.10.2 - pom - import - - - - - - org.junit.jupiter - junit-jupiter-api - 5.10.2 - compile - - - org.junit.jupiter - junit-jupiter-params - 5.10.2 - compile - - - org.junit.jupiter - junit-jupiter-engine - 5.10.2 - runtime - - - diff --git a/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom.sha1 b/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom.sha1 deleted file mode 100644 index 16c7e3ba7..000000000 --- a/code/arachne/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a36a93123b2617c58d321b1c021df77a1ad4a50c \ No newline at end of file diff --git a/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/_remote.repositories b/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/_remote.repositories deleted file mode 100644 index 990b43345..000000000 --- a/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:09 EDT 2024 -junit-platform-commons-1.10.2.pom>central= diff --git a/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom b/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom deleted file mode 100644 index 57557872e..000000000 --- a/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.platform - junit-platform-commons - 1.10.2 - JUnit Platform Commons - Module "junit-platform-commons" of JUnit 5. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit - junit-bom - 5.10.2 - pom - import - - - - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom.sha1 b/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom.sha1 deleted file mode 100644 index 9b11b9c56..000000000 --- a/code/arachne/org/junit/platform/junit-platform-commons/1.10.2/junit-platform-commons-1.10.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -428e90870a1cd83eec09c4d3ae181a71e7e6a467 \ No newline at end of file diff --git a/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/_remote.repositories b/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/_remote.repositories deleted file mode 100644 index dd3a7660a..000000000 --- a/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:09 EDT 2024 -junit-platform-engine-1.10.2.pom>central= diff --git a/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom b/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom deleted file mode 100644 index 1d8a63987..000000000 --- a/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.platform - junit-platform-engine - 1.10.2 - JUnit Platform Engine API - Module "junit-platform-engine" of JUnit 5. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - https://www.eclipse.org/legal/epl-v20.html - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@gmail.com - - - juliette-derancourt - Juliette de Rancourt - derancourt.juliette@gmail.com - - - - scm:git:git://github.com/junit-team/junit5.git - scm:git:git://github.com/junit-team/junit5.git - https://github.com/junit-team/junit5 - - - - - org.junit - junit-bom - 5.10.2 - pom - import - - - - - - org.opentest4j - opentest4j - 1.3.0 - compile - - - org.junit.platform - junit-platform-commons - 1.10.2 - compile - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom.sha1 b/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom.sha1 deleted file mode 100644 index c2f0ad88e..000000000 --- a/code/arachne/org/junit/platform/junit-platform-engine/1.10.2/junit-platform-engine-1.10.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d67d36be92a9dc24fc75cece1a8a9a211ab3641c \ No newline at end of file diff --git a/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/_remote.repositories b/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/_remote.repositories deleted file mode 100644 index 55d78c4f4..000000000 --- a/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:02 EDT 2024 -mimepull-1.9.15.pom>central= diff --git a/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom b/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom deleted file mode 100644 index 38858d3bc..000000000 --- a/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom +++ /dev/null @@ -1,410 +0,0 @@ - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.6 - - - - org.jvnet.mimepull - mimepull - 1.9.15 - jar - MIME streaming extension - Provides a streaming API to access attachments parts in a MIME message. - https://github.com/eclipse-ee4j/metro-mimepull - - - scm:git:ssh://git@github.com/eclipse-ee4j/metro-mimepull.git - scm:git:ssh://git@github.com/eclipse-ee4j/metro-mimepull.git - https://github.com/eclipse-ee4j/metro-mimepull - HEAD - - - - - Eclipse Distribution License - v 1.0 - http://www.eclipse.org/org/documents/edl-v10.php - repo - - - - - - bravehorsie - Roman Grigoriadi - Roman.Grigoriadi@oracle.com - - - - - github - https://github.com/eclipse-ee4j/metro-mimepull/issues - - - - - Eclipse Metro mailing list - metro-dev@eclipse.org - https://accounts.eclipse.org/mailing-list/metro-dev - https://accounts.eclipse.org/mailing-list/metro-dev - https://www.eclipse.org/lists/metro-dev - - - - - ${project.basedir}/copyright-exclude - false - true - false - ${project.basedir}/exclude.xml - false - Low - 4.3.0 - - ${project.basedir} - - - - - - junit - junit - 4.13.2 - test - - - - - - - junit - junit - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0-M5 - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.1 - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.version} - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - [11,) - - - [3.6.0,) - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - ${copyright.exclude} - - ${copyright.scmonly} - - ${copyright.update} - - ${copyright.ignoreyear} - false - - - - validate - - check - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 9 - - -Xlint:all - - true - true - - - - base-compile - - compile - - - 8 - - module-info.java - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - true - false - 7 - - - - validate - - create - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - - java.util.logging.config.file - src/test/resources/logging.properties - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - false - - - - - - org.apache.maven.plugins - maven-source-plugin - - - - false - - - ${project.version} - ${buildNumber} - - - - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - false - - - - <_noextraheaders>true - ${project.version} - ${buildNumber} - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - false - - - 11 - true - - - - com.github.spotbugs - spotbugs-maven-plugin - - ${spotbugs.skip} - ${spotbugs.threshold} - true - - ${spotbugs.exclude} - - true - -Xms64m -Xmx256m - - - - - - - - coverage - - - - - org.jacoco - jacoco-maven-plugin - 0.8.7 - - - - - - org.jacoco - jacoco-maven-plugin - - - default-prepare-agent - - prepare-agent - - - - default-report - - report - - - - - - - - - diff --git a/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom.sha1 b/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom.sha1 deleted file mode 100644 index c20a07718..000000000 --- a/code/arachne/org/jvnet/mimepull/mimepull/1.9.15/mimepull-1.9.15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -39c859aab41f7152db18a55b4a8fd82f37792937 \ No newline at end of file diff --git a/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom b/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom deleted file mode 100644 index 715c11b60..000000000 --- a/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom +++ /dev/null @@ -1,198 +0,0 @@ - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - org.latencyutils - LatencyUtils - 2.0.3 - - LatencyUtils - - http://latencyutils.github.io/LatencyUtils/ - - - LatencyUtils is a package that provides latency recording and reporting utilities. - - - - - - * This code was Written by Gil Tene of Azul Systems, and released to the - * public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/ - - Public Domain, per Creative Commons CC0 - http://creativecommons.org/publicdomain/zero/1.0/ - - - - - - giltene - Gil Tene - https://github.com/giltene - - - - - scm:git:git://github.com/LatencyUtils/LatencyUtils.git - scm:git:git://github.com/LatencyUtils/LatencyUtils.git - scm:git:git@github.com:LatencyUtils/LatencyUtils.git - HEAD - - - - https://github.com/LatencyUtils/LatencyUtils/issues - GitHub Issues - - - jar - - - UTF-8 - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.6 - 1.6 - UTF-8 - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.12.4 - - false - - - - org.apache.maven.plugins - maven-release-plugin - 2.5 - - -Dgpg.passphrase=${gpg.passphrase} - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.8 - - - copy-installed - package - - copy - - - - - ${project.groupId} - ${project.artifactId} - ${project.version} - ${project.packaging} - LatencyUtils.jar - - - ${project.basedir} - - - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - - - - - - - junit - junit - 4.10 - test - - - org.hdrhistogram - HdrHistogram - 2.1.8 - - - - diff --git a/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom.sha1 b/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom.sha1 deleted file mode 100644 index 9e93e63a1..000000000 --- a/code/arachne/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5baec26b6f9e5b17fdd200fc20af85eead4287c4 \ No newline at end of file diff --git a/code/arachne/org/latencyutils/LatencyUtils/2.0.3/_remote.repositories b/code/arachne/org/latencyutils/LatencyUtils/2.0.3/_remote.repositories deleted file mode 100644 index d94fb0830..000000000 --- a/code/arachne/org/latencyutils/LatencyUtils/2.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:54 EDT 2024 -LatencyUtils-2.0.3.pom>central= diff --git a/code/arachne/org/mockito/mockito-bom/4.11.0/_remote.repositories b/code/arachne/org/mockito/mockito-bom/4.11.0/_remote.repositories deleted file mode 100644 index 4bbe653f4..000000000 --- a/code/arachne/org/mockito/mockito-bom/4.11.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:50 EDT 2024 -mockito-bom-4.11.0.pom>central= diff --git a/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom b/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom deleted file mode 100644 index e04228892..000000000 --- a/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom +++ /dev/null @@ -1,103 +0,0 @@ - - - 4.0.0 - org.mockito - mockito-bom - 4.11.0 - pom - mockito-bom - Mockito Bill of Materials (BOM) - https://github.com/mockito/mockito - - - The MIT License - https://github.com/mockito/mockito/blob/main/LICENSE - repo - - - - - mockitoguy - Szczepan Faber - https://github.com/mockitoguy - - Core developer - - - - bric3 - Brice Dutheil - https://github.com/bric3 - - Core developer - - - - raphw - Rafael Winterhalter - https://github.com/raphw - - Core developer - - - - TimvdLippe - Tim van der Lippe - https://github.com/TimvdLippe - - Core developer - - - - - https://github.com/mockito/mockito.git - - - GitHub issues - https://github.com/mockito/mockito/issues - - - GH Actions - https://github.com/mockito/mockito/actions - - - - - org.mockito - mockito-core - 4.11.0 - - - org.mockito - mockito-android - 4.11.0 - - - org.mockito - mockito-errorprone - 4.11.0 - - - org.mockito - mockito-inline - 4.11.0 - - - org.mockito - mockito-junit-jupiter - 4.11.0 - - - org.mockito - mockito-proxy - 4.11.0 - - - org.mockito - mockito-subclass - 4.11.0 - - - - diff --git a/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom.sha1 b/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom.sha1 deleted file mode 100644 index eca6b1c77..000000000 --- a/code/arachne/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -001c271051b650e8dd5ae2c9726ee5953887030d \ No newline at end of file diff --git a/code/arachne/org/mockito/mockito-bom/5.7.0/_remote.repositories b/code/arachne/org/mockito/mockito-bom/5.7.0/_remote.repositories deleted file mode 100644 index 6b1807a4c..000000000 --- a/code/arachne/org/mockito/mockito-bom/5.7.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:34 EDT 2024 -mockito-bom-5.7.0.pom>ohdsi= diff --git a/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom b/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom deleted file mode 100644 index 3b7536ade..000000000 --- a/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom +++ /dev/null @@ -1,98 +0,0 @@ - - - 4.0.0 - org.mockito - mockito-bom - 5.7.0 - pom - mockito-bom - Mockito Bill of Materials (BOM) - https://github.com/mockito/mockito - - - MIT - https://opensource.org/licenses/MIT - repo - - - - - mockitoguy - Szczepan Faber - https://github.com/mockitoguy - - Core developer - - - - bric3 - Brice Dutheil - https://github.com/bric3 - - Core developer - - - - raphw - Rafael Winterhalter - https://github.com/raphw - - Core developer - - - - TimvdLippe - Tim van der Lippe - https://github.com/TimvdLippe - - Core developer - - - - - https://github.com/mockito/mockito.git - - - GitHub issues - https://github.com/mockito/mockito/issues - - - GH Actions - https://github.com/mockito/mockito/actions - - - - - org.mockito - mockito-core - 5.7.0 - - - org.mockito - mockito-android - 5.7.0 - - - org.mockito - mockito-errorprone - 5.7.0 - - - org.mockito - mockito-junit-jupiter - 5.7.0 - - - org.mockito - mockito-proxy - 5.7.0 - - - org.mockito - mockito-subclass - 5.7.0 - - - - diff --git a/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.lastUpdated b/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.lastUpdated deleted file mode 100644 index cb5e70d71..000000000 --- a/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:34 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.mockito\:mockito-bom\:pom\:5.7.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139814402 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139814503 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139814606 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139814738 diff --git a/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.sha1 b/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.sha1 deleted file mode 100644 index 7928a92aa..000000000 --- a/code/arachne/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c4c2dc5e4b502a505a31fc4038a606dab7be4616 \ No newline at end of file diff --git a/code/arachne/org/mockito/mockito-core/5.7.0/_remote.repositories b/code/arachne/org/mockito/mockito-core/5.7.0/_remote.repositories deleted file mode 100644 index 76189b334..000000000 --- a/code/arachne/org/mockito/mockito-core/5.7.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:09 EDT 2024 -mockito-core-5.7.0.pom>central= diff --git a/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom b/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom deleted file mode 100644 index 363c8e29c..000000000 --- a/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - org.mockito - mockito-core - 5.7.0 - mockito-core - Mockito mock objects library core API and implementation - https://github.com/mockito/mockito - - - MIT - https://opensource.org/licenses/MIT - repo - - - - - mockitoguy - Szczepan Faber - https://github.com/mockitoguy - - Core developer - - - - bric3 - Brice Dutheil - https://github.com/bric3 - - Core developer - - - - raphw - Rafael Winterhalter - https://github.com/raphw - - Core developer - - - - TimvdLippe - Tim van der Lippe - https://github.com/TimvdLippe - - Core developer - - - - - https://github.com/mockito/mockito.git - - - GitHub issues - https://github.com/mockito/mockito/issues - - - GH Actions - https://github.com/mockito/mockito/actions - - - - net.bytebuddy - byte-buddy - 1.14.9 - compile - - - net.bytebuddy - byte-buddy-agent - 1.14.9 - compile - - - org.objenesis - objenesis - 3.3 - runtime - - - diff --git a/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom.sha1 b/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom.sha1 deleted file mode 100644 index ed83ec5a7..000000000 --- a/code/arachne/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f91d0528c70aad773a9ed472d9f9da3be9ad6b7b \ No newline at end of file diff --git a/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/_remote.repositories b/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/_remote.repositories deleted file mode 100644 index c607daac4..000000000 --- a/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:09 EDT 2024 -mockito-junit-jupiter-5.7.0.pom>central= diff --git a/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom b/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom deleted file mode 100644 index 2be155ae4..000000000 --- a/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom +++ /dev/null @@ -1,77 +0,0 @@ - - - 4.0.0 - org.mockito - mockito-junit-jupiter - 5.7.0 - mockito-junit-jupiter - Mockito JUnit 5 support - https://github.com/mockito/mockito - - - MIT - https://opensource.org/licenses/MIT - repo - - - - - mockitoguy - Szczepan Faber - https://github.com/mockitoguy - - Core developer - - - - bric3 - Brice Dutheil - https://github.com/bric3 - - Core developer - - - - raphw - Rafael Winterhalter - https://github.com/raphw - - Core developer - - - - TimvdLippe - Tim van der Lippe - https://github.com/TimvdLippe - - Core developer - - - - - https://github.com/mockito/mockito.git - - - GitHub issues - https://github.com/mockito/mockito/issues - - - GH Actions - https://github.com/mockito/mockito/actions - - - - org.mockito - mockito-core - 5.7.0 - compile - - - org.junit.jupiter - junit-jupiter-api - 5.10.0 - runtime - - - diff --git a/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom.sha1 b/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom.sha1 deleted file mode 100644 index a6ef472e1..000000000 --- a/code/arachne/org/mockito/mockito-junit-jupiter/5.7.0/mockito-junit-jupiter-5.7.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b08e449a3557e81d108cde7fd1c8785e5a2a09b9 \ No newline at end of file diff --git a/code/arachne/org/mozilla/rhino/1.7R4/_remote.repositories b/code/arachne/org/mozilla/rhino/1.7R4/_remote.repositories deleted file mode 100644 index a6b5c3c34..000000000 --- a/code/arachne/org/mozilla/rhino/1.7R4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:09 EDT 2024 -rhino-1.7R4.pom>central= diff --git a/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom b/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom deleted file mode 100644 index c7ec5885d..000000000 --- a/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom +++ /dev/null @@ -1,34 +0,0 @@ - - 4.0.0 - org.mozilla - rhino - Mozilla Rhino - 1.7R4 - jar - Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically embedded into Java applications to provide scripting to end users. - https://developer.mozilla.org/en/Rhino - - - - Mozilla Public License, Version 2.0 - http://www.mozilla.org/MPL/2.0/index.txt - - - - - org.sonatype.oss - oss-parent - 7 - - - - scm:git:git@github.com:mozilla/rhino.git - scm:git:git@github.com:mozilla/rhino.git - git@github.com:mozilla/rhino.git - - - - The Mozilla Foundation - http://www.mozilla.org - - diff --git a/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom.sha1 b/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom.sha1 deleted file mode 100644 index b011085e5..000000000 --- a/code/arachne/org/mozilla/rhino/1.7R4/rhino-1.7R4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9e6af638328b8c8fc49e68c5496bddcbfd82f313 \ No newline at end of file diff --git a/code/arachne/org/objenesis/objenesis-parent/3.3/_remote.repositories b/code/arachne/org/objenesis/objenesis-parent/3.3/_remote.repositories deleted file mode 100644 index 3e8d31e13..000000000 --- a/code/arachne/org/objenesis/objenesis-parent/3.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:09 EDT 2024 -objenesis-parent-3.3.pom>central= diff --git a/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom b/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom deleted file mode 100644 index 7c308712f..000000000 --- a/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom +++ /dev/null @@ -1,575 +0,0 @@ - - - - 4.0.0 - org.objenesis - objenesis-parent - 3.3 - pom - - Objenesis parent project - A library for instantiating Java objects - http://objenesis.org - 2006 - - - test - main - exotic - tck - - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Joe Walnes, Henri Tremblay, Leonardo Mesquita - - - - https://github.com/easymock/objenesis - scm:git:git@github.com:easymock/objenesis.git - scm:git:https://github.com/easymock/objenesis.git - 3.3 - - - - - joe - Joe Walnes - -5 - - - henri - Henri Tremblay - -5 - - - leonardo - Leonardo Mesquita - -5 - - - - - 1.8 - UTF-8 - 5.9.0 - 4.7.1.1 - - - - - - org.junit.jupiter - junit-jupiter - ${junit5.version} - - - org.junit.vintage - junit-vintage-engine - ${junit5.version} - - - junit - junit - 4.13.2 - - - - - - - org.junit.jupiter - junit-jupiter - test - - - - - - - maven-compiler-plugin - - ${java.version} - ${java.version} - - - - maven-jar-plugin - - - true - false - - true - true - - - - - - maven-release-plugin - - - true - - @{project.version} - - false - - false - - release,full,all - - true - - - - maven-site-plugin - false - - ${project.basedir}/website - - - - com.mycila - license-maven-plugin - false - - - true - - - - maven-enforcer-plugin - 3.1.0 - - - - 3.5.0 - - - - - - enforce-versions - - enforce - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://oss.sonatype.org - false - - - - org.gaul - modernizer-maven-plugin - 2.4.0 - - 8 - - - - - - org.apache.maven.wagon - wagon-ssh-external - 3.5.2 - - - - - - maven-assembly-plugin - 3.4.2 - - - maven-compiler-plugin - 3.10.1 - - - maven-jar-plugin - 3.2.2 - - - maven-surefire-plugin - 3.0.0-M7 - - - maven-clean-plugin - 3.2.0 - - - maven-deploy-plugin - 3.0.0 - - - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - 3.0.1 - - - maven-release-plugin - 3.0.0-M6 - - - maven-resources-plugin - 3.3.0 - - - maven-shade-plugin - 3.3.0 - - - maven-site-plugin - 3.12.0 - - - maven-source-plugin - 3.2.1 - - - maven-javadoc-plugin - 3.4.0 - - - maven-war-plugin - 3.3.2 - - - org.apache.felix - maven-bundle-plugin - 5.1.7 - - - com.keyboardsamurais.maven - maven-timestamp-plugin - 1.0 - - - year - - create - - - year - yyyy - - - - - - com.mycila - license-maven-plugin - 4.1 - -
    ${project.basedir}/../header.txt
    - true - - SLASHSTAR_STYLE - - - - .gitignore - - target/** - - dependency-reduced-pom.xml - - eclipse_config/** - - website/** - - **/*.bat - - project.properties - lint.xml - gen/** - bin/** - - **/*.txt - - **/*.launch - - **/*.md - - website/site/resources/CNAME - website/site/resources/.nojekyll - - - ${project.inceptionYear} - ${year} - -
    -
    - - maven-remote-resources-plugin - 3.0.0 - - - - process - - - - org.apache:apache-jar-resource-bundle:1.3 - - - - - - - org.codehaus.mojo - exec-maven-plugin - 3.1.0 - - - org.codehaus.mojo - versions-maven-plugin - 2.11.0 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs-maven-plugin.version} - - true - Naming - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - com.keyboardsamurais.maven - maven-timestamp-plugin - [1.0,) - - create - - - - - - - - - maven-remote-resources-plugin - [1.0,) - - process - - - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - [2.5.5,) - - spotbugs - - - - - - - - - - -
    -
    -
    - - - - maven-project-info-reports-plugin - 3.4.0 - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs-maven-plugin.version} - - - maven-pmd-plugin - 3.17.0 - - 1.8 - - - - - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - - - - full - - - - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - - spotbugs - - spotbugs - - - - - - com.mycila - license-maven-plugin - - - check - - check - - - - - - - - - - website - - website - - - - - android - - tck-android - - - - - benchmark - - benchmark - - - - - gae - - gae - - - - - release - - - - maven-gpg-plugin - - - - - - all - - benchmark - - - - gae - website - - - -
    diff --git a/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom.sha1 b/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom.sha1 deleted file mode 100644 index 5533a5d93..000000000 --- a/code/arachne/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -60b46fea1dc4cb9c3123f8c366f8b33d0c774fa3 \ No newline at end of file diff --git a/code/arachne/org/objenesis/objenesis/3.3/_remote.repositories b/code/arachne/org/objenesis/objenesis/3.3/_remote.repositories deleted file mode 100644 index b8bec032e..000000000 --- a/code/arachne/org/objenesis/objenesis/3.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:09 EDT 2024 -objenesis-3.3.pom>central= diff --git a/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom b/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom deleted file mode 100644 index 8a9e05703..000000000 --- a/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - - 4.0.0 - - org.objenesis - objenesis-parent - 3.3 - - objenesis - - Objenesis - A library for instantiating Java objects - - - - org.objenesis - objenesis-test - ${project.version} - test - - - - - - - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - org.objenesis - jdk.unsupported - - - - - - com.keyboardsamurais.maven - maven-timestamp-plugin - - - com.mycila - license-maven-plugin - - - maven-remote-resources-plugin - - - org.apache.felix - maven-bundle-plugin - true - - - - COM.newmonics.PercClassLoader;resolution:=optional, - sun.misc;resolution:=optional, - sun.reflect;resolution:=optional - - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - diff --git a/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom.sha1 b/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom.sha1 deleted file mode 100644 index cb4a0deb9..000000000 --- a/code/arachne/org/objenesis/objenesis/3.3/objenesis-3.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8da1208285232e541d0bbb869bbe66af6ec6abb4 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom deleted file mode 100644 index 636771b16..000000000 --- a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom +++ /dev/null @@ -1,142 +0,0 @@ - - - 4.0.0 - - org.ohdsi - SkeletonCohortCharacterization - 1.2.1 - - ${basedir}/src/main/java - ${basedir}/target/classes - - - org.apache.maven.plugins - maven-compiler-plugin - 2.5.1 - - 1.8 - 1.8 - - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.1.1 - - - copy-installed - install - - copy - - - - - ${project.groupId} - ${project.artifactId} - ${project.version} - ${project.packaging} - - - inst/java - - - - copy-dependencies - package - - copy-dependencies - - - inst/java - test - SqlRender,featureExtraction,hamcrest,hamcrest-core,junit - - - - - - - cohortCharacterization - - scm:git:https://github.com/OHDSI/SkeletonCohortCharacterization - scm:git:https://github.com/OHDSI/SkeletonCohortCharacterization - https://github.com/OHDSI/SkeletonCohortCharacterization - HEAD - - - UTF-8 - java - test - 1.16.2-SNAPSHOT - - - - ohdsi - repo.ohdsi.org - http://repo.ohdsi.org:8085/nexus/content/repositories/releases - - - ohdsi.snapshots - repo.ohdsi.org-snapshots - http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots - - false - - - true - - - - - - - - org.ohdsi.sql - SqlRender - 1.6.5 - - - org.json - json - 20170516 - - - org.ohdsi - standardized-analysis-specs - 1.2.1-SNAPSHOT - - - org.ohdsi - standardized-analysis-utils - 1.2.1-SNAPSHOT - - - org.ohdsi - featureExtraction - 2.2.0 - - - com.odysseusinc.arachne - arachne-common-utils - ${arachne.version} - - - junit - junit - 4.12 - test - - - org.hamcrest - hamcrest - 2.1 - test - - - - - diff --git a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.lastUpdated b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.lastUpdated deleted file mode 100644 index 7483f493b..000000000 --- a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:04 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:SkeletonCohortCharacterization\:pom\:1.2.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139904335 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139904342 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139904549 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139904620 -https\://repo1.maven.org/maven2/.lastUpdated=1721139904242 diff --git a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.sha1 b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.sha1 deleted file mode 100644 index 6e29f5799..000000000 --- a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/SkeletonCohortCharacterization-1.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6066931b205e3317553e923ea5490f769dd55185 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/_remote.repositories b/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/_remote.repositories deleted file mode 100644 index f6bd2dc10..000000000 --- a/code/arachne/org/ohdsi/SkeletonCohortCharacterization/1.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:04 EDT 2024 -SkeletonCohortCharacterization-1.2.1.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/circe/1.11.1/_remote.repositories b/code/arachne/org/ohdsi/circe/1.11.1/_remote.repositories deleted file mode 100644 index 0d6f190e6..000000000 --- a/code/arachne/org/ohdsi/circe/1.11.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:04 EDT 2024 -circe-1.11.1.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom b/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom deleted file mode 100644 index 407c1edc2..000000000 --- a/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom +++ /dev/null @@ -1,202 +0,0 @@ - - - 4.0.0 - org.ohdsi - circe - 1.11.1 - - 1.8 - 1.8 - 2.3.0.RELEASE - - - - - org.springframework.boot - spring-boot-dependencies - ${spring.dependencies.version} - pom - import - - - - - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - - pre-unit-test - - prepare-agent - - - - ${project.build.directory}/coverage-reports/jacoco-ut.exec - - surefireArgLine - - - - - post-unit-test - test - - report - - - - ${project.build.directory}/coverage-reports/jacoco-ut.exec - - ${project.reporting.outputDirectory}/jacoco-ut - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0 - - - ${surefireArgLine} - - ${skip.unit.tests} - - - **/IT*.java - - - - - - - - ohdsi - repo.ohdsi.org - https://repo.ohdsi.org/nexus/content/groups/public - - - - - central - https://repo.maven.apache.org/maven2 - - - ohdsi - repo.ohdsi.org - https://repo.ohdsi.org/nexus/content/groups/public - - - - - com.fasterxml.jackson.core - jackson-annotations - - - com.fasterxml.jackson.core - jackson-databind - - - org.apache.commons - commons-lang3 - - - commons-io - commons-io - 2.11.0 - - - junit - junit - test - - - org.hamcrest - hamcrest - test - - - org.ohdsi - standardized-analysis-utils - 1.4.0 - - - org.freemarker - freemarker - - - org.ohdsi.sql - SqlRender - 1.6.8 - test - - - com.opentable.components - otj-pg-embedded - 0.13.3 - test - - - org.springframework.boot - spring-boot-starter-test - test - - - org.springframework.boot - spring-boot-starter-jdbc - test - - - org.dbunit - dbunit - 2.7.3 - test - - - com.github.mjeanroy - dbunit-plus - 2.2.1 - test - - - com.atlassian.commonmark - commonmark - 0.15.2 - test - - - - - developer-mac-darwin-aarch64 - - - net.java.dev.jna - jna - 5.13.0 - test - - - com.opentable.components - otj-pg-embedded - 1.0.1 - test - - - - - diff --git a/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.lastUpdated b/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.lastUpdated deleted file mode 100644 index 430151af0..000000000 --- a/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:04 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:circe\:pom\:1.11.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139903929 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139903934 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139904079 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139904154 -https\://repo1.maven.org/maven2/.lastUpdated=1721139903825 diff --git a/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.sha1 b/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.sha1 deleted file mode 100644 index 1c63740ed..000000000 --- a/code/arachne/org/ohdsi/circe/1.11.1/circe-1.11.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c34c77ee1a0e71fbde10fec3d15354e8e09d35c9 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/circe/1.11.2/_remote.repositories b/code/arachne/org/ohdsi/circe/1.11.2/_remote.repositories deleted file mode 100644 index 014c798ad..000000000 --- a/code/arachne/org/ohdsi/circe/1.11.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:44 EDT 2024 -circe-1.11.2.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom b/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom deleted file mode 100644 index c5c39b484..000000000 --- a/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom +++ /dev/null @@ -1,202 +0,0 @@ - - - 4.0.0 - org.ohdsi - circe - 1.11.2 - - 1.8 - 1.8 - 2.3.0.RELEASE - - - - - org.springframework.boot - spring-boot-dependencies - ${spring.dependencies.version} - pom - import - - - - - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - - pre-unit-test - - prepare-agent - - - - ${project.build.directory}/coverage-reports/jacoco-ut.exec - - surefireArgLine - - - - - post-unit-test - test - - report - - - - ${project.build.directory}/coverage-reports/jacoco-ut.exec - - ${project.reporting.outputDirectory}/jacoco-ut - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0 - - - ${surefireArgLine} - - ${skip.unit.tests} - - - **/IT*.java - - - - - - - - ohdsi - repo.ohdsi.org - https://repo.ohdsi.org/nexus/content/groups/public - - - - - central - https://repo.maven.apache.org/maven2 - - - ohdsi - repo.ohdsi.org - https://repo.ohdsi.org/nexus/content/groups/public - - - - - com.fasterxml.jackson.core - jackson-annotations - - - com.fasterxml.jackson.core - jackson-databind - - - org.apache.commons - commons-lang3 - - - commons-io - commons-io - 2.11.0 - - - junit - junit - test - - - org.hamcrest - hamcrest - test - - - org.ohdsi - standardized-analysis-utils - 1.4.0 - - - org.freemarker - freemarker - - - org.ohdsi.sql - SqlRender - 1.6.8 - test - - - com.opentable.components - otj-pg-embedded - 0.13.3 - test - - - org.springframework.boot - spring-boot-starter-test - test - - - org.springframework.boot - spring-boot-starter-jdbc - test - - - org.dbunit - dbunit - 2.7.3 - test - - - com.github.mjeanroy - dbunit-plus - 2.2.1 - test - - - com.atlassian.commonmark - commonmark - 0.15.2 - test - - - - - developer-mac-darwin-aarch64 - - - net.java.dev.jna - jna - 5.13.0 - test - - - com.opentable.components - otj-pg-embedded - 1.0.1 - test - - - - - diff --git a/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.lastUpdated b/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.lastUpdated deleted file mode 100644 index 2436fefa3..000000000 --- a/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:44 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:circe\:pom\:1.11.2 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139884745 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139884753 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139884865 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139884938 -https\://repo1.maven.org/maven2/.lastUpdated=1721139884618 diff --git a/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.sha1 b/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.sha1 deleted file mode 100644 index 819963256..000000000 --- a/code/arachne/org/ohdsi/circe/1.11.2/circe-1.11.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c45616c215e0cc8a7c695d062261e736859b4958 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/featureExtraction/3.2.0/_remote.repositories b/code/arachne/org/ohdsi/featureExtraction/3.2.0/_remote.repositories deleted file mode 100644 index 9e09e3acc..000000000 --- a/code/arachne/org/ohdsi/featureExtraction/3.2.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:57 EDT 2024 -featureExtraction-3.2.0.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom b/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom deleted file mode 100644 index a1c2bb75b..000000000 --- a/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom +++ /dev/null @@ -1,197 +0,0 @@ - - - 4.0.0 - - org.ohdsi - featureExtraction - jar - 3.2.0 - featureExtraction - - scm:git:https://github.com/OHDSI/featureExtraction - scm:git:https://github.com/OHDSI/featureExtraction - https://github.com/OHDSI/featureExtraction - HEAD - - - 1.8 - 1.8 - UTF-8 - java - test - 1.7.0 - - - - ohdsi - repo.ohdsi.org - https://repo.ohdsi.org/nexus/content/groups/public - - - - - org.json - json - 20170516 - - - org.ohdsi.sql - SqlRender - ${SqlRender.version} - - - - - ${src.dir} - - - ${src.dir} - - **/*.java - - **/*.jardesc - - - - - - - maven-resources-plugin - 2.7 - - - copy-csv - validate - - copy-resources - - - ${project.build.outputDirectory}/inst/csv - - - inst/csv - false - - **/*.csv - - - - - - - copy-sql - validate - - copy-resources - - - ${project.build.outputDirectory}/inst/sql/sql_server - - - inst/sql/sql_server - false - - **/*.sql - - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.0.2 - - - - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.1 - - ${javadoc.doclint.none} - true - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - attach-sources - package - - jar-no-fork - test-jar-no-fork - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.1.1 - - - copy-jar - package - - copy - - - - - ${project.groupId} - ${project.artifactId} - ${project.version} - ${project.packaging} - - - inst/java - - - - copy-dependencies - package - - copy-dependencies - - - inst/java - test - - - - - - - - - java8-disable-strict-javadoc - - [1.8,) - - - -Xdoclint:none - - - - \ No newline at end of file diff --git a/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.lastUpdated b/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.lastUpdated deleted file mode 100644 index 4c9494f7e..000000000 --- a/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:57 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:featureExtraction\:pom\:3.2.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139897560 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139897565 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139897695 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139897795 -https\://repo1.maven.org/maven2/.lastUpdated=1721139897390 diff --git a/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.sha1 b/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.sha1 deleted file mode 100644 index 5477cc80a..000000000 --- a/code/arachne/org/ohdsi/featureExtraction/3.2.0/featureExtraction-3.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c7ab49704e489afbc7cd904a8a25d6bc2b43a416 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/hydra/0.4.0/_remote.repositories b/code/arachne/org/ohdsi/hydra/0.4.0/_remote.repositories deleted file mode 100644 index 969da7fa5..000000000 --- a/code/arachne/org/ohdsi/hydra/0.4.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:57 EDT 2024 -hydra-0.4.0.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom b/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom deleted file mode 100644 index 492774858..000000000 --- a/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom +++ /dev/null @@ -1,154 +0,0 @@ - - 4.0.0 - - org.ohdsi - hydra - jar - 0.4.0 - - - 1.8 - 1.8 - UTF-8 - java - - - - - org.json - json - 20220924 - - - org.ohdsi - circe - 1.10.1 - - - org.apache.commons - commons-csv - 1.9.0 - - - - - - ohdsi - repo.ohdsi.org - https://repo.ohdsi.org/nexus/content/groups/public - - - - - inst/java - - - ${src.dir} - - - ${src.dir} - - **/*.java - - **/*.jardesc - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - 1.8 - 1.8 - - - - - maven-resources-plugin - 3.3.0 - - - copy-resources - validate - - copy-resources - - - ${project.build.outputDirectory} - - - inst/skeletons - false - - **/*.zip - - - - - - - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.5.0 - - - copy-dependencies - package - - copy-dependencies - - - ${project.build.directory} - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.1 - - ${javadoc.doclint.none} - true - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - attach-sources - package - - jar-no-fork - test-jar-no-fork - - - - - - - - - diff --git a/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.lastUpdated b/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.lastUpdated deleted file mode 100644 index 8e72b6f11..000000000 --- a/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:57 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:hydra\:pom\:0.4.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139896823 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139896830 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139896962 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139897032 -https\://repo1.maven.org/maven2/.lastUpdated=1721139896716 diff --git a/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.sha1 b/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.sha1 deleted file mode 100644 index 2ba6232ba..000000000 --- a/code/arachne/org/ohdsi/hydra/0.4.0/hydra-0.4.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -06e329726961ef671ce6c55758b7e42ec3f7a0aa \ No newline at end of file diff --git a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom deleted file mode 100644 index 73aef25d4..000000000 --- a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom +++ /dev/null @@ -1,140 +0,0 @@ - - - 4.0.0 - - org.ohdsi.sql - SqlRender - jar - 1.16.1 - SqlRender - - scm:git:https://github.com/OHDSI/SqlRender - scm:git:https://github.com/OHDSI/SqlRender - https://github.com/OHDSI/SqlRender - HEAD - - - UTF-8 - java - test - 1.8 - 1.8 - - - - internal - http://repo.ohdsi.org:8085/nexus/content/repositories/releases - - - snapshots - http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots - - - - - ohdsi - repo.ohdsi.org - http://repo.ohdsi.org:8085/nexus/content/repositories/releases - - - - - ${src.dir} - - - ${src.dir} - - **/*.java - - **/*.jardesc - - - - - - - maven-resources-plugin - 2.7 - - - copy-resources - validate - - copy-resources - - - ${project.build.outputDirectory}/inst/csv - - - inst/csv - false - - **/*.csv - - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.0.2 - - - - true - org.ohdsi.sql.MainClass - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.1 - - ${javadoc.doclint.none} - true - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - attach-sources - package - - jar-no-fork - test-jar-no-fork - - - - - - - - - java8-disable-strict-javadoc - - [1.8,) - - - -Xdoclint:none - - - - diff --git a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.lastUpdated b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.lastUpdated deleted file mode 100644 index 3ae346d54..000000000 --- a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi.sql\:SqlRender\:pom\:1.16.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139846909 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139846917 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139847097 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139847165 -https\://repo1.maven.org/maven2/.lastUpdated=1721139846642 diff --git a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.sha1 b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.sha1 deleted file mode 100644 index 399f627ab..000000000 --- a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/SqlRender-1.16.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5ec8524eb73ede455b0ebdc8558fb7df1adf0ead \ No newline at end of file diff --git a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/_remote.repositories b/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/_remote.repositories deleted file mode 100644 index e56647044..000000000 --- a/code/arachne/org/ohdsi/sql/SqlRender/1.16.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:07 EDT 2024 -SqlRender-1.16.1.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/_remote.repositories b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/_remote.repositories deleted file mode 100644 index a47b95485..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:05 EDT 2024 -standardized-analysis-specs-1.2.1-20201204.180243-3.pom>ohdsi.snapshots= diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml deleted file mode 100644 index feaf1a05c..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - org.ohdsi - standardized-analysis-specs - 1.2.1-SNAPSHOT - - - 20201204.180243 - 3 - - 20201204180243 - - - jar - 1.2.1-20201204.180243-3 - 20201204180243 - - - pom - 1.2.1-20201204.180243-3 - 20201204180243 - - - - diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 deleted file mode 100644 index 97ddd213a..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -ca08c5e7a223ee2e110ca7ff3b82adb07430a5e8 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml deleted file mode 100644 index feaf1a05c..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - org.ohdsi - standardized-analysis-specs - 1.2.1-SNAPSHOT - - - 20201204.180243 - 3 - - 20201204180243 - - - jar - 1.2.1-20201204.180243-3 - 20201204180243 - - - pom - 1.2.1-20201204.180243-3 - 20201204180243 - - - - diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 deleted file mode 100644 index 97ddd213a..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -ca08c5e7a223ee2e110ca7ff3b82adb07430a5e8 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/resolver-status.properties b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/resolver-status.properties deleted file mode 100644 index b546e2b2b..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,14 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 12:51:18 EDT 2024 -maven-metadata-ohdsi.snapshots.xml.lastUpdated=1721139904903 -maven-metadata-maven-default-http-blocker.xml.error=Could not transfer metadata org.ohdsi\:standardized-analysis-specs\:1.2.1-SNAPSHOT/maven-metadata.xml from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots)] -maven-metadata-jboss-public-repository-group.xml.error= -maven-metadata-jboss-public-repository-group.xml.lastUpdated=1721139904890 -maven-metadata-central.xml.error= -maven-metadata-maven-default-http-blocker.xml/@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148678110 -maven-metadata-jitpack.io.xml.lastUpdated=1721139904910 -maven-metadata-local-repo.xml.error= -maven-metadata-local-repo.xml.lastUpdated=1721139904914 -maven-metadata-central.xml.lastUpdated=1721139904884 -maven-metadata-ohdsi.xml.lastUpdated=1721139904907 -maven-metadata-jitpack.io.xml.error= diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom deleted file mode 100644 index 8fa349cf1..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom +++ /dev/null @@ -1,85 +0,0 @@ - - - 4.0.0 - - org.ohdsi - standardized-analysis-specs - 1.2.1-SNAPSHOT - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - 1.8 - 1.8 - - - - - - - - central - Central Repository - http://repo.maven.apache.org/maven2/ - - - ohdsi - repo.ohdsi.org - http://repo.ohdsi.org:8085/nexus/content/repositories/releases - - - ohdsi.snapshots - repo.ohdsi.org-snapshots - http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots - - false - - - true - - - - - - com.fasterxml.jackson.core - jackson-core - 2.9.6 - - - junit - junit - 4.12 - test - - - com.google.guava - guava - 25.1-jre - - - - org.ohdsi - standardized-analysis-utils - ${project.version} - - - org.ohdsi - circe - 1.9.0-SNAPSHOT - - - - org.skyscreamer - jsonassert - 1.5.0 - test - - - - \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.lastUpdated b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.lastUpdated deleted file mode 100644 index 29df6b8a0..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:05 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -https\://repo.ohdsi.org/nexus/content/repositories/snapshots/.lastUpdated=1721139905547 -http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:standardized-analysis-specs\:pom\:1.2.1-20201204.180243-3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139905451 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139905459 -https\://repo1.maven.org/maven2/.lastUpdated=1721139905078 diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.sha1 b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.sha1 deleted file mode 100644 index 16f605088..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-20201204.180243-3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -05396007ad6a9a8ac12bdd6a45f66d8d66cf6eda \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-SNAPSHOT.pom b/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-SNAPSHOT.pom deleted file mode 100644 index 8fa349cf1..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.2.1-SNAPSHOT/standardized-analysis-specs-1.2.1-SNAPSHOT.pom +++ /dev/null @@ -1,85 +0,0 @@ - - - 4.0.0 - - org.ohdsi - standardized-analysis-specs - 1.2.1-SNAPSHOT - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - 1.8 - 1.8 - - - - - - - - central - Central Repository - http://repo.maven.apache.org/maven2/ - - - ohdsi - repo.ohdsi.org - http://repo.ohdsi.org:8085/nexus/content/repositories/releases - - - ohdsi.snapshots - repo.ohdsi.org-snapshots - http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots - - false - - - true - - - - - - com.fasterxml.jackson.core - jackson-core - 2.9.6 - - - junit - junit - 4.12 - test - - - com.google.guava - guava - 25.1-jre - - - - org.ohdsi - standardized-analysis-utils - ${project.version} - - - org.ohdsi - circe - 1.9.0-SNAPSHOT - - - - org.skyscreamer - jsonassert - 1.5.0 - test - - - - \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/_remote.repositories b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/_remote.repositories deleted file mode 100644 index 1b458605c..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:03 EDT 2024 -standardized-analysis-specs-1.5.0.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom deleted file mode 100644 index 4d871afb3..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - 4.0.0 - - org.ohdsi - standardized-analysis-specs - 1.5.0 - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - 1.8 - 1.8 - - - - - - - ohdsi - repo.ohdsi.org - https://repo.ohdsi.org/nexus/content/groups/public - - - - - ohdsi - repo.ohdsi.org - https://repo.ohdsi.org/nexus/content/groups/public - - - - - com.fasterxml.jackson.core - jackson-core - 2.10.5 - - - junit - junit - 4.13.1 - test - - - com.google.guava - guava - 29.0-jre - - - - org.ohdsi - standardized-analysis-utils - 1.4.0 - - - org.ohdsi - circe - 1.11.1 - - - - org.skyscreamer - jsonassert - 1.5.0 - test - - - - diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.lastUpdated b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.lastUpdated deleted file mode 100644 index 4c7c4c5bd..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:03 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:standardized-analysis-specs\:pom\:1.5.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139903150 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139903157 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139903283 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139903356 -https\://repo1.maven.org/maven2/.lastUpdated=1721139903055 diff --git a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.sha1 b/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.sha1 deleted file mode 100644 index 08e4d27c2..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-specs/1.5.0/standardized-analysis-specs-1.5.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f626a3322714775ff16f84c0eaa0960441f09d46 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/_remote.repositories b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/_remote.repositories deleted file mode 100644 index fa2c01a4f..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -standardized-analysis-utils-1.2.1-20201204.180243-3.pom>ohdsi.snapshots= diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml deleted file mode 100644 index ba1c248a8..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - org.ohdsi - standardized-analysis-utils - 1.2.1-SNAPSHOT - - - 20201204.180243 - 3 - - 20201204180243 - - - jar - 1.2.1-20201204.180243-3 - 20201204180243 - - - pom - 1.2.1-20201204.180243-3 - 20201204180243 - - - - diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 deleted file mode 100644 index 213b7518a..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -174df8d28a4ab4736122c57b95580fed318de0a8 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml deleted file mode 100644 index ba1c248a8..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - org.ohdsi - standardized-analysis-utils - 1.2.1-SNAPSHOT - - - 20201204.180243 - 3 - - 20201204180243 - - - jar - 1.2.1-20201204.180243-3 - 20201204180243 - - - pom - 1.2.1-20201204.180243-3 - 20201204180243 - - - - diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 deleted file mode 100644 index 213b7518a..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/maven-metadata-ohdsi.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -174df8d28a4ab4736122c57b95580fed318de0a8 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/resolver-status.properties b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/resolver-status.properties deleted file mode 100644 index a32b07a1a..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,14 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 12:51:18 EDT 2024 -maven-metadata-ohdsi.snapshots.xml.lastUpdated=1721139906615 -maven-metadata-maven-default-http-blocker.xml.error=Could not transfer metadata org.ohdsi\:standardized-analysis-utils\:1.2.1-SNAPSHOT/maven-metadata.xml from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots), central (http\://repo.maven.apache.org/maven2/, default, releases+snapshots)] -maven-metadata-jboss-public-repository-group.xml.error= -maven-metadata-jboss-public-repository-group.xml.lastUpdated=1721139906607 -maven-metadata-central.xml.error= -maven-metadata-maven-default-http-blocker.xml/@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721148678537 -maven-metadata-jitpack.io.xml.lastUpdated=1721139906622 -maven-metadata-local-repo.xml.error= -maven-metadata-local-repo.xml.lastUpdated=1721139906625 -maven-metadata-central.xml.lastUpdated=1721139906604 -maven-metadata-ohdsi.xml.lastUpdated=1721139906617 -maven-metadata-jitpack.io.xml.error= diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom deleted file mode 100644 index 6f888f294..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom +++ /dev/null @@ -1,118 +0,0 @@ - - - 4.0.0 - - org.ohdsi - standardized-analysis-utils - 1.2.1-SNAPSHOT - - 1.0.0-rc15 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - 1.8 - 1.8 - - - - - - - - central - Central Repository - http://repo.maven.apache.org/maven2/ - - - ohdsi - repo.ohdsi.org - http://repo.ohdsi.org:8085/nexus/content/repositories/releases - - - ohdsi.snapshots - repo.ohdsi.org-snapshots - http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots - - false - - - true - - - - - - com.fasterxml.jackson.core - jackson-core - 2.9.8 - - - com.fasterxml.jackson.core - jackson-annotations - 2.9.8 - - - com.fasterxml.jackson.core - jackson-databind - 2.9.8 - - - org.apache.commons - commons-lang3 - 3.9 - - - org.apache.commons - commons-io - 1.3.2 - - - junit - junit - 4.12 - test - - - com.google.guava - guava - 25.1-jre - - - com.github.zafarkhaja - java-semver - 0.9.0 - - - - org.graalvm.sdk - graal-sdk - ${graalvm.version} - - - org.graalvm.js - js - ${graalvm.version} - runtime - - - org.graalvm.js - js-scriptengine - ${graalvm.version} - - - org.skyscreamer - jsonassert - 1.5.0 - test - - - - \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.lastUpdated b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.lastUpdated deleted file mode 100644 index d24c34a30..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -https\://repo.ohdsi.org/nexus/content/repositories/snapshots/.lastUpdated=1721139907027 -http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:standardized-analysis-utils\:pom\:1.2.1-20201204.180243-3 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases), ohdsi (http\://repo.ohdsi.org\:8085/nexus/content/repositories/releases, default, releases+snapshots), ohdsi.snapshots (http\://repo.ohdsi.org\:8085/nexus/content/repositories/snapshots, default, snapshots), central (http\://repo.maven.apache.org/maven2/, default, releases+snapshots)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139906914 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139906922 -https\://repo1.maven.org/maven2/.lastUpdated=1721139906760 diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.sha1 b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.sha1 deleted file mode 100644 index 797fad117..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-20201204.180243-3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3f99440d64d70fc40e758ff3f0475033a0bbb0a8 \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-SNAPSHOT.pom b/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-SNAPSHOT.pom deleted file mode 100644 index 6f888f294..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.2.1-SNAPSHOT/standardized-analysis-utils-1.2.1-SNAPSHOT.pom +++ /dev/null @@ -1,118 +0,0 @@ - - - 4.0.0 - - org.ohdsi - standardized-analysis-utils - 1.2.1-SNAPSHOT - - 1.0.0-rc15 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - 1.8 - 1.8 - - - - - - - - central - Central Repository - http://repo.maven.apache.org/maven2/ - - - ohdsi - repo.ohdsi.org - http://repo.ohdsi.org:8085/nexus/content/repositories/releases - - - ohdsi.snapshots - repo.ohdsi.org-snapshots - http://repo.ohdsi.org:8085/nexus/content/repositories/snapshots - - false - - - true - - - - - - com.fasterxml.jackson.core - jackson-core - 2.9.8 - - - com.fasterxml.jackson.core - jackson-annotations - 2.9.8 - - - com.fasterxml.jackson.core - jackson-databind - 2.9.8 - - - org.apache.commons - commons-lang3 - 3.9 - - - org.apache.commons - commons-io - 1.3.2 - - - junit - junit - 4.12 - test - - - com.google.guava - guava - 25.1-jre - - - com.github.zafarkhaja - java-semver - 0.9.0 - - - - org.graalvm.sdk - graal-sdk - ${graalvm.version} - - - org.graalvm.js - js - ${graalvm.version} - runtime - - - org.graalvm.js - js-scriptengine - ${graalvm.version} - - - org.skyscreamer - jsonassert - 1.5.0 - test - - - - \ No newline at end of file diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/_remote.repositories b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/_remote.repositories deleted file mode 100644 index 9d59b196a..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:56 EDT 2024 -standardized-analysis-utils-1.4.0.pom>ohdsi= diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom deleted file mode 100644 index cccb7e698..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - - org.ohdsi - standardized-analysis-utils - 1.4.0 - - org.springframework.boot - spring-boot-starter-parent - 2.3.0.RELEASE - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - 1.8 - 1.8 - - - - - - - - ohdsi - repo.ohdsi.org - https://repo.ohdsi.org/nexus/content/groups/public - - - - - - central - https://repo.maven.apache.org/maven2 - - - ohdsi - repo.ohdsi.org - https://repo.ohdsi.org/nexus/content/groups/public - - - - - - com.fasterxml.jackson.core - jackson-core - - - com.fasterxml.jackson.core - jackson-annotations - - - com.fasterxml.jackson.core - jackson-databind - - - org.apache.commons - commons-lang3 - - - commons-io - commons-io - 2.11.0 - - - junit - junit - test - - - org.semver4j - semver4j - 4.3.0 - - - - diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.lastUpdated b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.lastUpdated deleted file mode 100644 index c5e929afc..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:56 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.ohdsi\:standardized-analysis-utils\:pom\:1.4.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139896040 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139896046 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139896166 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139896239 -https\://repo1.maven.org/maven2/.lastUpdated=1721139895933 diff --git a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.sha1 b/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.sha1 deleted file mode 100644 index 39f298b19..000000000 --- a/code/arachne/org/ohdsi/standardized-analysis-utils/1.4.0/standardized-analysis-utils-1.4.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -223064ed602618b0954afd33850dc65d8a581659 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/_remote.repositories deleted file mode 100644 index 11a6e317f..000000000 --- a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:28 EDT 2024 -opensaml-core-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom deleted file mode 100644 index db277bdab..000000000 --- a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom +++ /dev/null @@ -1,96 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: Core API - Core API - opensaml-core-api - jar - - - org.opensaml.core - - - - - - commons-codec - commons-codec - - - - com.google.guava - guava - - - - io.dropwizard.metrics - metrics-core - - - - - - - - - org.xmlunit - xmlunit-core - test - - - org.xmlunit - xmlunit-matchers - test - - - - - - - maven-jar-plugin - - - true - - org.opensaml.core.Version - - - - org/opensaml/core/ - - ${project.artifactId} - ${project.version} - opensaml.org - - - - - - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.lastUpdated deleted file mode 100644 index 0e0d9d02c..000000000 --- a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:28 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-core-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139868100 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139868107 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139868354 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139868513 -https\://repo1.maven.org/maven2/.lastUpdated=1721139867995 diff --git a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.sha1 deleted file mode 100644 index ecb095c46..000000000 --- a/code/arachne/org/opensaml/opensaml-core-api/5.0.0/opensaml-core-api-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -97e6c62f57bbc9edd820d20b74218b1ca578e10a \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/_remote.repositories deleted file mode 100644 index ff580d5cd..000000000 --- a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:39 EDT 2024 -opensaml-core-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom deleted file mode 100644 index cae15d011..000000000 --- a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom +++ /dev/null @@ -1,137 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: Core Implementation - Core Implementation - opensaml-core-impl - jar - - - org.opensaml.core.impl - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - ${project.groupId} - opensaml-security-api - ${project.version} - - - - ${shib-shared.groupId} - shib-networking - - - - io.dropwizard.metrics - metrics-core - - - io.dropwizard.metrics - metrics-json - - - - com.fasterxml.jackson.core - jackson-databind - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - - - - ${httpclient.groupId} - ${httpclient.artifactId} - - - ${httpclient.httpcore.groupId} - ${httpclient.httpcore.artifactId} - - - - - - - - - ${project.groupId} - opensaml-testing - ${project.version} - test - - - - com.google.guava - guava - test - - - - org.xmlunit - xmlunit-core - test - - - org.xmlunit - xmlunit-matchers - test - - - - - - - maven-jar-plugin - - - true - - org.opensaml.core.Version - - - - org/opensaml/core/ - - ${project.artifactId} - ${project.version} - opensaml.org - - - - - - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.lastUpdated deleted file mode 100644 index 34caa2b13..000000000 --- a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:39 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-core-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139879035 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139879043 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139879147 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139879288 -https\://repo1.maven.org/maven2/.lastUpdated=1721139878941 diff --git a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.sha1 deleted file mode 100644 index 677c2cbc8..000000000 --- a/code/arachne/org/opensaml/opensaml-core-impl/5.0.0/opensaml-core-impl-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ed4f4cde1b3822de2604aad55698c4b992f4ea8e \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/_remote.repositories deleted file mode 100644 index 21c4e1012..000000000 --- a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:33 EDT 2024 -opensaml-messaging-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom deleted file mode 100644 index 6b3ad649b..000000000 --- a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom +++ /dev/null @@ -1,66 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: Messaging API - Messaging API - opensaml-messaging-api - jar - - - org.opensaml.messaging - - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - - ${httpclient.groupId} - ${httpclient.artifactId} - - - ${httpclient.httpcore.groupId} - ${httpclient.httpcore.artifactId} - - - - - jakarta.servlet - jakarta.servlet-api - - - - - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.lastUpdated deleted file mode 100644 index 72171f87a..000000000 --- a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:33 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-messaging-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139873661 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139873665 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139873804 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139873946 -https\://repo1.maven.org/maven2/.lastUpdated=1721139873563 diff --git a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.sha1 deleted file mode 100644 index af22a6616..000000000 --- a/code/arachne/org/opensaml/opensaml-messaging-api/5.0.0/opensaml-messaging-api-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d491ec570715605b98768ab24d21c22d5ae44b89 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/_remote.repositories deleted file mode 100644 index 0f27eed56..000000000 --- a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:43 EDT 2024 -opensaml-messaging-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom deleted file mode 100644 index 8a611c4dd..000000000 --- a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: Messaging Implementations - Messaging Implementations - opensaml-messaging-impl - jar - - - org.opensaml.messaging.impl - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - ${shib-shared.groupId} - shib-networking - - - - - - - - - - - ${project.groupId} - opensaml-core-impl - ${project.version} - test - - - - ${project.groupId} - opensaml-testing - ${project.version} - test - - - ${spring.groupId} - spring-core - test - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.lastUpdated deleted file mode 100644 index e273db8df..000000000 --- a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:43 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-messaging-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139882780 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139882787 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139882915 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139883118 -https\://repo1.maven.org/maven2/.lastUpdated=1721139882636 diff --git a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.sha1 deleted file mode 100644 index 1aa8d8a99..000000000 --- a/code/arachne/org/opensaml/opensaml-messaging-impl/5.0.0/opensaml-messaging-impl-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -427ecfe3eb6fd10875e9bd6d3d8469c0ab3c105b \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-parent/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-parent/5.0.0/_remote.repositories deleted file mode 100644 index bc7db7855..000000000 --- a/code/arachne/org/opensaml/opensaml-parent/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:28 EDT 2024 -opensaml-parent-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom b/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom deleted file mode 100644 index 842b3da9a..000000000 --- a/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom +++ /dev/null @@ -1,178 +0,0 @@ - - - - 4.0.0 - - - net.shibboleth - parent - 17.0.1 - - - OpenSAML - - A library for creating, reading, writing and performing some processing of SAML messages. - - For further information see https://wiki.shibboleth.net/confluence/display/OS30/Home - - - org.opensaml - opensaml-parent - 5.0.0 - - pom - - - ../opensaml-core-api - ../opensaml-storage-api - ../opensaml-security-api - ../opensaml-xmlsec-api - ../opensaml-messaging-api - ../opensaml-soap-api - ../opensaml-saml-api - ../opensaml-xacml-api - ../opensaml-xacml-saml-api - ../opensaml-profile-api - - ../opensaml-core-impl - ../opensaml-storage-impl - ../opensaml-security-impl - ../opensaml-xmlsec-impl - ../opensaml-messaging-impl - ../opensaml-soap-impl - ../opensaml-saml-impl - ../opensaml-xacml-impl - ../opensaml-xacml-saml-impl - ../opensaml-profile-impl - - ../opensaml-spring - - ../opensaml-testing - - ../opensaml-bom - - - - net.shibboleth - 9.0.0 - ${project.basedir}/../opensaml-parent/resources/checkstyle/checkstyle.xml - ${shibboleth.site.deploy.url}java-opensaml/${project.version}/ - ${opensaml-parent.site.url}${project.artifactId} - - - - - - - ${slf4j.groupId} - slf4j-api - - - - com.google.code.findbugs - jsr305 - - - - ${shib-shared.groupId} - shib-support - ${shib-shared.version} - - - - - - - - - org.testng - testng - test - - - ch.qos.logback - logback-classic - test - - - - - - - - - ${shib-shared.groupId} - shib-shared-bom - ${shib-shared.version} - pom - import - - - - - net.spy - spymemcached - 2.12.3 - - - - - - - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-parent.site.url} - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - ../opensaml-parent/src/site - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${automatic.module.name} - true - - - - - - - - diff --git a/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.lastUpdated deleted file mode 100644 index 90ee0fd7b..000000000 --- a/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:28 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-parent\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139868740 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139868748 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139868844 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139868964 -https\://repo1.maven.org/maven2/.lastUpdated=1721139868621 diff --git a/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.sha1 deleted file mode 100644 index 641a7b29b..000000000 --- a/code/arachne/org/opensaml/opensaml-parent/5.0.0/opensaml-parent-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c6bf0fad28e90bba494ade9021aa1d2131278671 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/_remote.repositories deleted file mode 100644 index bf7949216..000000000 --- a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:34 EDT 2024 -opensaml-profile-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom deleted file mode 100644 index dda3d0430..000000000 --- a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom +++ /dev/null @@ -1,98 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: Profile API - Profile API - opensaml-profile-api - jar - - - org.opensaml.profile - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - - ${shib-shared.groupId} - shib-security - - - ${shib-shared.groupId} - shib-networking - - - com.google.guava - guava - - - io.dropwizard.metrics - metrics-core - - - - - jakarta.servlet - jakarta.servlet-api - provided - - - - - - - ${spring.groupId} - spring-core - test - - - ${spring.groupId} - spring-context - test - - - ${spring.groupId} - spring-test - test - - - ${shib-shared.groupId} - shib-spring - test - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.lastUpdated deleted file mode 100644 index 5d35ec657..000000000 --- a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:34 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-profile-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139874134 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139874142 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139874266 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139874393 -https\://repo1.maven.org/maven2/.lastUpdated=1721139874041 diff --git a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.sha1 deleted file mode 100644 index 8f24cf27e..000000000 --- a/code/arachne/org/opensaml/opensaml-profile-api/5.0.0/opensaml-profile-api-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4882072bd34237834c9c6e4ecc36a0e16bfb866c \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/_remote.repositories deleted file mode 100644 index bd4b87676..000000000 --- a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:42 EDT 2024 -opensaml-profile-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom deleted file mode 100644 index 7337f2bb3..000000000 --- a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: Profile Implementations - Profile Implementations - opensaml-profile-impl - jar - - - org.opensaml.profile.impl - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - - ${project.groupId} - opensaml-profile-api - ${project.version} - - - - ${project.groupId} - opensaml-security-api - ${project.version} - - - - ${project.groupId} - opensaml-xmlsec-api - ${project.version} - - - - ${project.groupId} - opensaml-xmlsec-impl - ${project.version} - - - - ${shib-shared.groupId} - shib-security - - - - io.dropwizard.metrics - metrics-core - - - - - jakarta.servlet - jakarta.servlet-api - provided - - - - - - - ${project.groupId} - opensaml-testing - ${project.version} - test - - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.lastUpdated deleted file mode 100644 index bf9e36c35..000000000 --- a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:42 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-profile-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139882284 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139882298 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139882423 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139882549 -https\://repo1.maven.org/maven2/.lastUpdated=1721139882192 diff --git a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.sha1 deleted file mode 100644 index 4054d6868..000000000 --- a/code/arachne/org/opensaml/opensaml-profile-impl/5.0.0/opensaml-profile-impl-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -637f55d0752b087911557c71ea8fc3e79379535d \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/_remote.repositories deleted file mode 100644 index 61755aef3..000000000 --- a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:33 EDT 2024 -opensaml-saml-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom deleted file mode 100644 index 51cfabe1f..000000000 --- a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom +++ /dev/null @@ -1,105 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: SAML Provider API - SAML Provider API - opensaml-saml-api - jar - - - org.opensaml.saml - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - - ${project.groupId} - opensaml-profile-api - ${project.version} - - - - ${project.groupId} - opensaml-security-api - ${project.version} - - - - ${project.groupId} - opensaml-soap-api - ${project.version} - - - - ${project.groupId} - opensaml-xmlsec-api - ${project.version} - - - - ${shib-shared.groupId} - shib-security - - - - commons-codec - commons-codec - - - - com.google.guava - guava - - - - org.apache.santuario - xmlsec - - - - - jakarta.servlet - jakarta.servlet-api - - - - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.lastUpdated deleted file mode 100644 index de80775ea..000000000 --- a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:33 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-saml-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139873134 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139873141 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139873319 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139873450 -https\://repo1.maven.org/maven2/.lastUpdated=1721139873015 diff --git a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.sha1 deleted file mode 100644 index 64b97a180..000000000 --- a/code/arachne/org/opensaml/opensaml-saml-api/5.0.0/opensaml-saml-api-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6b3e50d4b2ea2c5d4186a92c511188a0caa94d17 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/_remote.repositories deleted file mode 100644 index 23841ca65..000000000 --- a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:38 EDT 2024 -opensaml-saml-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom deleted file mode 100644 index 35bdd0f0e..000000000 --- a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom +++ /dev/null @@ -1,245 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: SAML Provider Implementations - SAML Provider Implementations - opensaml-saml-impl - jar - - - org.opensaml.saml.impl - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - - ${project.groupId} - opensaml-core-impl - ${project.version} - - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - - ${project.groupId} - opensaml-profile-api - ${project.version} - - - - ${project.groupId} - opensaml-saml-api - ${project.version} - - - - ${project.groupId} - opensaml-security-api - ${project.version} - - - - ${project.groupId} - opensaml-security-impl - ${project.version} - - - - ${project.groupId} - opensaml-soap-api - ${project.version} - - - - ${project.groupId} - opensaml-soap-impl - ${project.version} - - - - ${project.groupId} - opensaml-storage-api - ${project.version} - - - - ${project.groupId} - opensaml-xmlsec-api - ${project.version} - - - - ${project.groupId} - opensaml-xmlsec-impl - ${project.version} - - - - ${shib-shared.groupId} - shib-security - - - ${shib-shared.groupId} - shib-networking - - - ${shib-shared.groupId} - shib-velocity - - - - commons-codec - commons-codec - - - - com.google.guava - guava - - - - io.dropwizard.metrics - metrics-core - - - - org.apache.santuario - xmlsec - - - - org.apache.velocity - velocity-engine-core - - - - ${httpclient.groupId} - ${httpclient.artifactId} - - - ${httpclient.httpcore.groupId} - ${httpclient.httpcore.artifactId} - - - - - jakarta.servlet - jakarta.servlet-api - - - - - - - ${project.groupId} - opensaml-storage-impl - ${project.version} - test - - - ${project.groupId} - opensaml-testing - ${project.version} - test - - - ${shib-shared.groupId} - shib-testing - test - - - ${shib-shared.groupId} - shib-spring - test - - - - org.xmlunit - xmlunit-core - test - - - org.xmlunit - xmlunit-matchers - test - - - - org.jsoup - jsoup - test - - - - ${spring.groupId} - spring-test - test - - - - ${spring.groupId} - spring-web - test - - - ${spring.groupId} - spring-core - test - - - - - - - get-nashorn - - [15, - - - - org.openjdk.nashorn - nashorn-core - ${nashorn.jdk.version} - test - - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.lastUpdated deleted file mode 100644 index c984453a4..000000000 --- a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:38 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-saml-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139878012 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139878018 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139878714 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139878850 -https\://repo1.maven.org/maven2/.lastUpdated=1721139877922 diff --git a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.sha1 deleted file mode 100644 index ba9ec3a45..000000000 --- a/code/arachne/org/opensaml/opensaml-saml-impl/5.0.0/opensaml-saml-impl-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d38803d4413fb53d8a90a43a65c1f3ae25562209 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/_remote.repositories deleted file mode 100644 index 61dfc833f..000000000 --- a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:36 EDT 2024 -opensaml-security-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom deleted file mode 100644 index a054e1ff0..000000000 --- a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom +++ /dev/null @@ -1,120 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: Security API - Security API - opensaml-security-api - jar - - - org.opensaml.security - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - - ${shib-shared.groupId} - shib-networking - - - ${shib-shared.groupId} - shib-security - - - - commons-codec - commons-codec - - - - com.google.guava - guava - - - - org.cryptacular - cryptacular - - - - org.bouncycastle - bcprov-jdk18on - - - org.bouncycastle - bcpkix-jdk18on - - - - ${httpclient.httpcore.groupId} - ${httpclient.httpcore.artifactId} - - - ${httpclient.groupId} - ${httpclient.artifactId} - - - - - jakarta.servlet - jakarta.servlet-api - - - - - - - ${shib-shared.groupId} - shib-networking-spring - test - - - - ${shib-shared.groupId} - shib-testing - test - - - - ${spring.groupId} - spring-core - test - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.lastUpdated deleted file mode 100644 index ac7e268d7..000000000 --- a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:36 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-security-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139875985 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139875997 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139876237 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139876375 -https\://repo1.maven.org/maven2/.lastUpdated=1721139875793 diff --git a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.sha1 deleted file mode 100644 index b63e46e5f..000000000 --- a/code/arachne/org/opensaml/opensaml-security-api/5.0.0/opensaml-security-api-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a2735824e4d5629fe5aafc287a28c3ac22852ab2 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/_remote.repositories deleted file mode 100644 index 2e9bef07f..000000000 --- a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:39 EDT 2024 -opensaml-security-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom deleted file mode 100644 index 703ce8ee5..000000000 --- a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom +++ /dev/null @@ -1,143 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: Security Implementation - Security Implementation - opensaml-security-impl - jar - - - org.opensaml.security.impl - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - - ${project.groupId} - opensaml-security-api - ${project.version} - - - - ${shib-shared.groupId} - shib-networking - - - - commons-codec - commons-codec - - - - com.google.guava - guava - - - - ${httpclient.groupId} - ${httpclient.artifactId} - true - - - ${httpclient.httpcore.groupId} - ${httpclient.httpcore.artifactId} - true - - - - - jakarta.servlet - jakarta.servlet-api - - - - - - - ${project.groupId} - opensaml-core-impl - ${project.version} - test - - - - ${project.groupId} - opensaml-testing - ${project.version} - test - - - - ${shib-shared.groupId} - shib-testing - test - - - - org.cryptacular - cryptacular - test - - - - org.bouncycastle - bcprov-jdk18on - test - - - - org.ldaptive - ldaptive - test - - - - ${spring.groupId} - spring-core - test - - - - ${slf4j.groupId} - jcl-over-slf4j - test - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.lastUpdated deleted file mode 100644 index 2da6be1c6..000000000 --- a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:39 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-security-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139879564 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139879572 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139879695 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139879824 -https\://repo1.maven.org/maven2/.lastUpdated=1721139879456 diff --git a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.sha1 deleted file mode 100644 index eb0b867b1..000000000 --- a/code/arachne/org/opensaml/opensaml-security-impl/5.0.0/opensaml-security-impl-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1b15aa910d356de431855aa700caf5e0ae311d9a \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/_remote.repositories deleted file mode 100644 index d3b751bd6..000000000 --- a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:37 EDT 2024 -opensaml-soap-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom deleted file mode 100644 index 148079a80..000000000 --- a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: SOAP Provider API - SOAP Provider API - opensaml-soap-api - jar - - - org.opensaml.soap - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - - ${project.groupId} - opensaml-security-api - ${project.version} - - - - ${project.groupId} - opensaml-xmlsec-api - ${project.version} - - - - ${httpclient.groupId} - ${httpclient.artifactId} - - - ${httpclient.httpcore.groupId} - ${httpclient.httpcore.artifactId} - - - - - - - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.lastUpdated deleted file mode 100644 index ce1fe1305..000000000 --- a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:37 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-soap-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139876663 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139876670 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139876933 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139877050 -https\://repo1.maven.org/maven2/.lastUpdated=1721139876558 diff --git a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.sha1 deleted file mode 100644 index 9ae88e68a..000000000 --- a/code/arachne/org/opensaml/opensaml-soap-api/5.0.0/opensaml-soap-api-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d613e493eb0401b36a2b9f39cd731baef87ad501 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/_remote.repositories deleted file mode 100644 index 92b90d282..000000000 --- a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:40 EDT 2024 -opensaml-soap-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom deleted file mode 100644 index 723fbdb78..000000000 --- a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom +++ /dev/null @@ -1,129 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: SOAP Provider Implementations - SOAP Provider Implementations - opensaml-soap-impl - jar - - - org.opensaml.soap.impl - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - - ${project.groupId} - opensaml-core-impl - ${project.version} - - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - - ${project.groupId} - opensaml-profile-api - ${project.version} - - - - ${project.groupId} - opensaml-soap-api - ${project.version} - - - - ${project.groupId} - opensaml-xmlsec-api - ${project.version} - - - - ${shib-shared.groupId} - shib-networking - - - ${shib-shared.groupId} - shib-security - - - - com.google.guava - guava - - - - ${httpclient.groupId} - ${httpclient.artifactId} - - - ${httpclient.httpcore.groupId} - ${httpclient.httpcore.artifactId} - - - - - jakarta.servlet - jakarta.servlet-api - - - - - - - ${project.groupId} - opensaml-testing - ${project.version} - test - - - ${shib-shared.groupId} - shib-testing - test - - - ${spring.groupId} - spring-test - - - - ${spring.groupId} - spring-web - test - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.lastUpdated deleted file mode 100644 index 9ee36322f..000000000 --- a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:40 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-soap-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139880022 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139880027 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139880118 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139880236 -https\://repo1.maven.org/maven2/.lastUpdated=1721139879911 diff --git a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.sha1 deleted file mode 100644 index 40acba9d7..000000000 --- a/code/arachne/org/opensaml/opensaml-soap-impl/5.0.0/opensaml-soap-impl-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a51b7c874ba7b41518a5fa136fae244e11ae1be6 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/_remote.repositories deleted file mode 100644 index 266f42f95..000000000 --- a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:40 EDT 2024 -opensaml-storage-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom deleted file mode 100644 index c62413794..000000000 --- a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom +++ /dev/null @@ -1,53 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: Storage API - Storage API - opensaml-storage-api - jar - - - org.opensaml.storage - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - - - - - - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.lastUpdated deleted file mode 100644 index fbe227026..000000000 --- a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:40 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-storage-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139880404 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139880410 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139880536 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139880665 -https\://repo1.maven.org/maven2/.lastUpdated=1721139880316 diff --git a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.sha1 deleted file mode 100644 index 3653e041d..000000000 --- a/code/arachne/org/opensaml/opensaml-storage-api/5.0.0/opensaml-storage-api-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ff955bc360b5a3569abdafa6c1b1108ba7b63ffd \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/_remote.repositories deleted file mode 100644 index 5cfe98d91..000000000 --- a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:43 EDT 2024 -opensaml-storage-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom deleted file mode 100644 index 517a1de4a..000000000 --- a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom +++ /dev/null @@ -1,203 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: Storage Implementation - Storage Implementation - opensaml-storage-impl - jar - - - org.opensaml.storage.impl - - - - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - - ${project.groupId} - opensaml-profile-api - ${project.version} - - - - ${project.groupId} - opensaml-storage-api - ${project.version} - - - - ${shib-shared.groupId} - shib-security - - - - ${shib-shared.groupId} - shib-networking - - - - com.google.guava - guava - - - - - net.spy - spymemcached - true - - - - org.cryptacular - cryptacular - - - - commons-codec - commons-codec - - - - - jakarta.json - jakarta.json-api - provided - - - jakarta.servlet - jakarta.servlet-api - provided - - - - - org.glassfish - jakarta.json - runtime - - - - - ${project.groupId} - opensaml-testing - ${project.version} - test - - - - ${shib-shared.groupId} - shib-testing - test - - - - org.hsqldb - hsqldb - test - - - - org.apache.commons - commons-dbcp2 - test - - - - - - - ${shib-shared.groupId} - shib-spring - test - - - - ${spring.groupId} - spring-core - test - - - ${spring.groupId} - spring-test - test - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${excluded.test.groups} - - - - - - - - - default - true - - needs-external-fixture - - - - all - - - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.lastUpdated deleted file mode 100644 index 94765540a..000000000 --- a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:43 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-storage-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139883311 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139883319 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139883424 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139883566 -https\://repo1.maven.org/maven2/.lastUpdated=1721139883209 diff --git a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.sha1 deleted file mode 100644 index df424de62..000000000 --- a/code/arachne/org/opensaml/opensaml-storage-impl/5.0.0/opensaml-storage-impl-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ee1a0a70a550f4817cc429b279d199bab4f32212 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/_remote.repositories deleted file mode 100644 index a52242548..000000000 --- a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:37 EDT 2024 -opensaml-xmlsec-api-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom deleted file mode 100644 index 4b023968f..000000000 --- a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: XML Security API - XML Security API - opensaml-xmlsec-api - jar - - - org.opensaml.xmlsec - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - - ${project.groupId} - opensaml-security-api - ${project.version} - - - - ${shib-shared.groupId} - shib-security - - - - com.google.guava - guava - - - - org.bouncycastle - bcprov-jdk18on - - - - org.apache.santuario - xmlsec - - - - - - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.lastUpdated deleted file mode 100644 index 5931315ed..000000000 --- a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:37 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-xmlsec-api\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139877234 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139877242 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139877470 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139877611 -https\://repo1.maven.org/maven2/.lastUpdated=1721139877138 diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.sha1 deleted file mode 100644 index c3d69dbd6..000000000 --- a/code/arachne/org/opensaml/opensaml-xmlsec-api/5.0.0/opensaml-xmlsec-api-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4ea1e52be6269f3232ab85a19ce5d8ec9d7666d0 \ No newline at end of file diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/_remote.repositories b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/_remote.repositories deleted file mode 100644 index 77b4fd801..000000000 --- a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:41 EDT 2024 -opensaml-xmlsec-impl-5.0.0.pom>ohdsi= diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom deleted file mode 100644 index 562bcb561..000000000 --- a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom +++ /dev/null @@ -1,118 +0,0 @@ - - - - 4.0.0 - - - org.opensaml - opensaml-parent - 5.0.0 - ../opensaml-parent - - - OpenSAML :: XML Security Implementation - XML Security Implementation - opensaml-xmlsec-impl - jar - - - org.opensaml.xmlsec.impl - - - - - - ${project.groupId} - opensaml-core-api - ${project.version} - - - ${project.groupId} - opensaml-core-impl - ${project.version} - - - ${project.groupId} - opensaml-messaging-api - ${project.version} - - - ${project.groupId} - opensaml-security-api - ${project.version} - - - ${project.groupId} - opensaml-xmlsec-api - ${project.version} - - - - ${shib-shared.groupId} - shib-support - - - - com.google.guava - guava - - - commons-codec - commons-codec - - - org.apache.santuario - xmlsec - - - org.bouncycastle - bcprov-jdk18on - - - - ${project.groupId} - opensaml-security-impl - ${project.version} - - - - - - - - - ${project.groupId} - opensaml-testing - ${project.version} - test - - - - ${shib-shared.groupId} - shib-testing - test - - - - org.cryptacular - cryptacular - test - - - - - - ${shibboleth.scm.connection}java-opensaml - ${shibboleth.scm.developerConnection}java-opensaml - ${shibboleth.scm.url}java-opensaml.git - - - - - site - scp:${opensaml-module.site.url} - - - - diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.lastUpdated b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.lastUpdated deleted file mode 100644 index ac7de1d37..000000000 --- a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:41 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.opensaml\:opensaml-xmlsec-impl\:pom\:5.0.0 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139880863 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139880870 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139881300 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139881417 -https\://repo1.maven.org/maven2/.lastUpdated=1721139880769 diff --git a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.sha1 b/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.sha1 deleted file mode 100644 index 4f3a2bdd0..000000000 --- a/code/arachne/org/opensaml/opensaml-xmlsec-impl/5.0.0/opensaml-xmlsec-impl-5.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -609bf3606a2aabce451c9c18886800c19e0acb27 \ No newline at end of file diff --git a/code/arachne/org/opentest4j/opentest4j/1.3.0/_remote.repositories b/code/arachne/org/opentest4j/opentest4j/1.3.0/_remote.repositories deleted file mode 100644 index c9a2ae0e9..000000000 --- a/code/arachne/org/opentest4j/opentest4j/1.3.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:09 EDT 2024 -opentest4j-1.3.0.pom>central= diff --git a/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom b/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom deleted file mode 100644 index c89bd0314..000000000 --- a/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - 4.0.0 - org.opentest4j - opentest4j - 1.3.0 - org.opentest4j:opentest4j - Open Test Alliance for the JVM - https://github.com/ota4j-team/opentest4j - - - The Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - matthias.merdes@heidelpay.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - - scm:git:git://github.com/ota4j-team/opentest4j.git - scm:git:git://github.com/ota4j-team/opentest4j.git - https://github.com/ota4j-team/opentest4j - - diff --git a/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom.sha1 b/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom.sha1 deleted file mode 100644 index 598cb5f48..000000000 --- a/code/arachne/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -73f3c942f86fd30bcf1759e2f9db6e9cc0e59c32 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-analysis/6.2.1/_remote.repositories b/code/arachne/org/ow2/asm/asm-analysis/6.2.1/_remote.repositories deleted file mode 100644 index 241c963da..000000000 --- a/code/arachne/org/ow2/asm/asm-analysis/6.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:08 EDT 2024 -asm-analysis-6.2.1.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom b/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom deleted file mode 100644 index aa67b8aff..000000000 --- a/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom +++ /dev/null @@ -1,102 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm-analysis - 6.2.1 - asm-analysis - Static code analysis API of ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.org/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD - http://asm.ow2.org/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm-tree - 6.2.1 - compile - - - org.ow2.asm - asm-test - 6.2.1 - test - - - org.junit.jupiter - junit-jupiter-api - 5.1.0 - test - - - org.junit.jupiter - junit-jupiter-params - 5.1.0 - test - - - diff --git a/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom.sha1 b/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom.sha1 deleted file mode 100644 index 6ae55e5c4..000000000 --- a/code/arachne/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cef816eba61efd5c2d599c3ae316b363a511b419 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-analysis/9.6/_remote.repositories b/code/arachne/org/ow2/asm/asm-analysis/9.6/_remote.repositories deleted file mode 100644 index c2dd90873..000000000 --- a/code/arachne/org/ow2/asm/asm-analysis/9.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -asm-analysis-9.6.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom b/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom deleted file mode 100644 index c0ecccdba..000000000 --- a/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-analysis - 9.6 - asm-analysis - Static code analysis API of ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.io/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD-3-Clause - https://asm.ow2.io/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm-tree - 9.6 - compile - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom.sha1 b/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom.sha1 deleted file mode 100644 index 8286c7842..000000000 --- a/code/arachne/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6d72da882f75491c24ba711c50c345703a0bb8c0 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-bom/9.5/_remote.repositories b/code/arachne/org/ow2/asm/asm-bom/9.5/_remote.repositories deleted file mode 100644 index 84ffc67e4..000000000 --- a/code/arachne/org/ow2/asm/asm-bom/9.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:49 EDT 2024 -asm-bom-9.5.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom b/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom deleted file mode 100644 index 87773b992..000000000 --- a/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-bom - 9.5 - asm-bom - ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.io/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD-3-Clause - https://asm.ow2.io/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - - org.ow2.asm - asm - 9.5 - - - org.ow2.asm - asm-tree - 9.5 - - - org.ow2.asm - asm-analysis - 9.5 - - - org.ow2.asm - asm-util - 9.5 - - - org.ow2.asm - asm-commons - 9.5 - - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1 b/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1 deleted file mode 100644 index 96055562c..000000000 --- a/code/arachne/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2b5d6f54150ef4cbef69c3b09b281353f42e1366 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-commons/6.2.1/_remote.repositories b/code/arachne/org/ow2/asm/asm-commons/6.2.1/_remote.repositories deleted file mode 100644 index dfbf7cfeb..000000000 --- a/code/arachne/org/ow2/asm/asm-commons/6.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:08 EDT 2024 -asm-commons-6.2.1.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom b/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom deleted file mode 100644 index 4859fc1cf..000000000 --- a/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom +++ /dev/null @@ -1,120 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm-commons - 6.2.1 - asm-commons - Usefull class adapters based on ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.org/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD - http://asm.ow2.org/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm - 6.2.1 - compile - - - org.ow2.asm - asm-tree - 6.2.1 - compile - - - org.ow2.asm - asm-analysis - 6.2.1 - compile - - - org.ow2.asm - asm-util - 6.2.1 - test - - - org.ow2.asm - asm-test - 6.2.1 - test - - - org.junit.jupiter - junit-jupiter-api - 5.1.0 - test - - - org.junit.jupiter - junit-jupiter-params - 5.1.0 - test - - - diff --git a/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom.sha1 b/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom.sha1 deleted file mode 100644 index dc0e45857..000000000 --- a/code/arachne/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -16e56569d8bbf574809bb51b6a8bd8ae6bc5d137 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-commons/9.6/_remote.repositories b/code/arachne/org/ow2/asm/asm-commons/9.6/_remote.repositories deleted file mode 100644 index aa6c92551..000000000 --- a/code/arachne/org/ow2/asm/asm-commons/9.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -asm-commons-9.6.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom b/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom deleted file mode 100644 index eb241e0d2..000000000 --- a/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom +++ /dev/null @@ -1,89 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-commons - 9.6 - asm-commons - Usefull class adapters based on ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.io/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD-3-Clause - https://asm.ow2.io/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm - 9.6 - compile - - - org.ow2.asm - asm-tree - 9.6 - compile - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom.sha1 b/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom.sha1 deleted file mode 100644 index c382bcc67..000000000 --- a/code/arachne/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fb17682f6b9f1a62cb1870336ccc167363a657bf \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-tree/6.2.1/_remote.repositories b/code/arachne/org/ow2/asm/asm-tree/6.2.1/_remote.repositories deleted file mode 100644 index 807f1338c..000000000 --- a/code/arachne/org/ow2/asm/asm-tree/6.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:08 EDT 2024 -asm-tree-6.2.1.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom b/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom deleted file mode 100644 index abbd1570b..000000000 --- a/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom +++ /dev/null @@ -1,102 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm-tree - 6.2.1 - asm-tree - Tree API of ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.org/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD - http://asm.ow2.org/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm - 6.2.1 - compile - - - org.ow2.asm - asm-test - 6.2.1 - test - - - org.junit.jupiter - junit-jupiter-api - 5.1.0 - test - - - org.junit.jupiter - junit-jupiter-params - 5.1.0 - test - - - diff --git a/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 b/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 deleted file mode 100644 index 2bda6097e..000000000 --- a/code/arachne/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3bad0a0614f250e411c769f8be2c0d57e027ecca \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-tree/9.6/_remote.repositories b/code/arachne/org/ow2/asm/asm-tree/9.6/_remote.repositories deleted file mode 100644 index d1cec55cc..000000000 --- a/code/arachne/org/ow2/asm/asm-tree/9.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -asm-tree-9.6.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom b/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom deleted file mode 100644 index 3a731210c..000000000 --- a/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-tree - 9.6 - asm-tree - Tree API of ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.io/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD-3-Clause - https://asm.ow2.io/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm - 9.6 - compile - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom.sha1 b/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom.sha1 deleted file mode 100644 index e79455165..000000000 --- a/code/arachne/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8871f9681c20388b2212e2db082f4d9b608a6944 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-util/6.2.1/_remote.repositories b/code/arachne/org/ow2/asm/asm-util/6.2.1/_remote.repositories deleted file mode 100644 index b19df36d9..000000000 --- a/code/arachne/org/ow2/asm/asm-util/6.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:08 EDT 2024 -asm-util-6.2.1.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom b/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom deleted file mode 100644 index 459981c8a..000000000 --- a/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom +++ /dev/null @@ -1,120 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm-util - 6.2.1 - asm-util - Utilities for ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.org/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD - http://asm.ow2.org/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm - 6.2.1 - compile - - - org.ow2.asm - asm-tree - 6.2.1 - compile - - - org.ow2.asm - asm-analysis - 6.2.1 - compile - - - org.codehaus.janino - janino - 3.0.7 - test - - - org.ow2.asm - asm-test - 6.2.1 - test - - - org.junit.jupiter - junit-jupiter-api - 5.1.0 - test - - - org.junit.jupiter - junit-jupiter-params - 5.1.0 - test - - - diff --git a/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom.sha1 b/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom.sha1 deleted file mode 100644 index 642b121fd..000000000 --- a/code/arachne/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -95d3e50b3266ec9bdf7b6aaca8471f119558df9a \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm-util/9.6/_remote.repositories b/code/arachne/org/ow2/asm/asm-util/9.6/_remote.repositories deleted file mode 100644 index eba7acca1..000000000 --- a/code/arachne/org/ow2/asm/asm-util/9.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:00 EDT 2024 -asm-util-9.6.pom>central= diff --git a/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom b/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom deleted file mode 100644 index 084e7d224..000000000 --- a/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-util - 9.6 - asm-util - Utilities for ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.io/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD-3-Clause - https://asm.ow2.io/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm - 9.6 - compile - - - org.ow2.asm - asm-tree - 9.6 - compile - - - org.ow2.asm - asm-analysis - 9.6 - compile - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom.sha1 b/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom.sha1 deleted file mode 100644 index 2325d16fe..000000000 --- a/code/arachne/org/ow2/asm/asm-util/9.6/asm-util-9.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -baf106bdef43eca497ce057d6feacde7a4a67e85 \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm/6.2.1/_remote.repositories b/code/arachne/org/ow2/asm/asm/6.2.1/_remote.repositories deleted file mode 100644 index f56c28136..000000000 --- a/code/arachne/org/ow2/asm/asm/6.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -asm-6.2.1.pom>central= diff --git a/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom b/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom deleted file mode 100644 index 4b4b3187b..000000000 --- a/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom +++ /dev/null @@ -1,96 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm - 6.2.1 - asm - ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.org/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD - http://asm.ow2.org/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm-test - 6.2.1 - test - - - org.junit.jupiter - junit-jupiter-api - 5.1.0 - test - - - org.junit.jupiter - junit-jupiter-params - 5.1.0 - test - - - diff --git a/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 b/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 deleted file mode 100644 index c8e165648..000000000 --- a/code/arachne/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3bc91be104d9292ff1dcc3dbf1002b7c320e767d \ No newline at end of file diff --git a/code/arachne/org/ow2/asm/asm/9.6/_remote.repositories b/code/arachne/org/ow2/asm/asm/9.6/_remote.repositories deleted file mode 100644 index 3a0327af9..000000000 --- a/code/arachne/org/ow2/asm/asm/9.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:08 EDT 2024 -asm-9.6.pom>central= diff --git a/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom b/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom deleted file mode 100644 index 65717e8e3..000000000 --- a/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm - 9.6 - asm - ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.io/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD-3-Clause - https://asm.ow2.io/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom.sha1 b/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom.sha1 deleted file mode 100644 index 2ea42a223..000000000 --- a/code/arachne/org/ow2/asm/asm/9.6/asm-9.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d18179bac08cecb6a4901e36d32ab057e460bd35 \ No newline at end of file diff --git a/code/arachne/org/ow2/ow2/1.5.1/_remote.repositories b/code/arachne/org/ow2/ow2/1.5.1/_remote.repositories deleted file mode 100644 index cc376e13d..000000000 --- a/code/arachne/org/ow2/ow2/1.5.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:49 EDT 2024 -ow2-1.5.1.pom>central= diff --git a/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom b/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom deleted file mode 100644 index 49837b773..000000000 --- a/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom +++ /dev/null @@ -1,309 +0,0 @@ - - - - 4.0.0 - - org.ow2 - ow2 - 1.5.1 - pom - - OW2 Consortium - - 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. - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - OW2 Consortium - http://www.ow2.org - - - - http://www.ow2.org - - - - - sauthieg - Guillaume Sauthier - guillaume.sauthier@ow2.org - - - - - - - http://www.ow2.org/xwiki/bin/download/NewsEvents/MarketingResources/ow2_logo_small_transp.png - - - UTF-8 - - - https://repository.ow2.org/nexus/content/repositories/snapshots - https://repository.ow2.org/nexus/service/local/staging/deploy/maven2 - source-release - ow2-release - 1.0.1 - - - 2.3 - 1.4 - 2.8.1 - 2.1.2 - 2.3.2 - - - - - scm:git:git@gitlab.ow2.org:ow2-lifecycle/ow2-parent-pom.git - scm:git:git@gitlab.ow2.org:ow2-lifecycle/ow2-parent-pom.git - https://gitlab.ow2.org/ow2-lifecycle/ow2-parent-pom/ - 1.5.1 - - - - - - - - - - ow2.release - OW2 Maven Releases Repository - ${ow2DistMgmtReleasesUrl} - - - - - ow2.snapshot - OW2 Maven Snapshots Repository - ${ow2DistMgmtSnapshotsUrl} - - - - - - - - - - - - ow2-plugin-snapshot - OW2 Snapshot Plugin Repository - https://repository.ow2.org/nexus/content/repositories/snapshots - - false - - - - - - - - - - - ow2-snapshot - OW2 Snapshot Repository - https://repository.ow2.org/nexus/content/repositories/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-beta-1 - - - enforce-maven - - enforce - - - - - (,2.1.0),(2.1.0,2.2.0),(2.2.0,) - Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. - - - - - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - ${maven-release-plugin.version} - - forked-path - - - false - - ${ow2ReleaseProfiles} - - - - - - - - - - - ow2-release - - - - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - - attach-sources - - jar-no-fork - - - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - - attach-javadocs - - jar - - - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven-gpg-plugin.version} - - - sign-artifacts - verify - - - sign - - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${maven-assembly-plugin.version} - - - source-release-assembly - package - - single - - - - true - - ${ow2SourceAssemblyDescriptorRef} - - - gnu - - - - - - org.ow2 - maven-source-assemblies - ${maven-source-assemblies.version} - - - - - - - - - - - - - diff --git a/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 b/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 deleted file mode 100644 index cc66a5962..000000000 --- a/code/arachne/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bda66fa5f1b68fa7d2de3d569bdc8508b2af82d4 \ No newline at end of file diff --git a/code/arachne/org/ow2/ow2/1.5/_remote.repositories b/code/arachne/org/ow2/ow2/1.5/_remote.repositories deleted file mode 100644 index 6e7e3e753..000000000 --- a/code/arachne/org/ow2/ow2/1.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:07 EDT 2024 -ow2-1.5.pom>central= diff --git a/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom b/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom deleted file mode 100644 index d6d62a459..000000000 --- a/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom +++ /dev/null @@ -1,309 +0,0 @@ - - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - pom - - OW2 Consortium - - 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. - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - OW2 Consortium - http://www.ow2.org - - - - http://www.ow2.org - - - - - sauthieg - Guillaume Sauthier - guillaume.sauthier@ow2.org - - - - - - - http://www.ow2.org/xwiki/bin/download/NewsEvents/MarketingResources/ow2_logo_small_transp.png - - - UTF-8 - - - http://repository.ow2.org/nexus/content/repositories/snapshots - http://repository.ow2.org/nexus/service/local/staging/deploy/maven2 - source-release - ow2-release - 1.0.1 - - - 2.3 - 1.4 - 2.8.1 - 2.1.2 - 2.3.2 - - - - - scm:git:git@gitorious.ow2.org:ow2/pom.git - scm:git:git@gitorious.ow2.org:ow2/pom.git - http://gitorious.ow2.org/ow2/pom - ow2-1.5 - - - - - - - - - - ow2.release - OW2 Maven Releases Repository - ${ow2DistMgmtReleasesUrl} - - - - - ow2.snapshot - OW2 Maven Snapshots Repository - ${ow2DistMgmtSnapshotsUrl} - - - - - - - - - - - - ow2-plugin-snapshot - OW2 Snapshot Plugin Repository - http://repository.ow2.org/nexus/content/repositories/snapshots - - false - - - - - - - - - - - ow2-snapshot - OW2 Snapshot Repository - http://repository.ow2.org/nexus/content/repositories/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-beta-1 - - - enforce-maven - - enforce - - - - - (,2.1.0),(2.1.0,2.2.0),(2.2.0,) - Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. - - - - - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - ${maven-release-plugin.version} - - forked-path - - - false - - ${ow2ReleaseProfiles} - - - - - - - - - - - ow2-release - - - - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - - attach-sources - - jar-no-fork - - - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - - attach-javadocs - - jar - - - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven-gpg-plugin.version} - - - sign-artifacts - verify - - - sign - - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${maven-assembly-plugin.version} - - - source-release-assembly - package - - single - - - - true - - ${ow2SourceAssemblyDescriptorRef} - - - gnu - - - - - - org.ow2 - maven-source-assemblies - ${maven-source-assemblies.version} - - - - - - - - - - - - - diff --git a/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 b/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 deleted file mode 100644 index f9682a2b4..000000000 --- a/code/arachne/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d8edc69335f4d9f95f511716fb689c86fb0ebaae \ No newline at end of file diff --git a/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/_remote.repositories b/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/_remote.repositories deleted file mode 100644 index d388cddee..000000000 --- a/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:21 EDT 2024 -encoder-parent-1.2.3.pom>central= diff --git a/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom b/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom deleted file mode 100644 index d3ea0741d..000000000 --- a/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom +++ /dev/null @@ -1,492 +0,0 @@ - - - - - 4.0.0 - - org.owasp.encoder - encoder-parent - 1.2.3 - pom - - OWASP Java Encoder Project - - The OWASP Encoders package is a collection of high-performance low-overhead - contextual encoders, that when utilized correctly, is an effective tool in - preventing Web Application security vulnerabilities such as Cross-Site - Scripting. - - - - core - jsp - esapi - - - https://www.owasp.org/index.php/OWASP_Java_Encoder_Project - 2011 - - OWASP (Open Web-Application Security Project) - https://www.owasp.org/ - - - - - The BSD 3-Clause License - http://www.opensource.org/licenses/BSD-3-Clause - repo - - - - - org.sonatype.oss - oss-parent - 9 - - - - scm:git:git@github.com:owasp/owasp-java-encoder.git - scm:git:git@github.com:owasp/owasp-java-encoder.git - https://github.com/owasp/owasp-java-encoder - - - - gh-pages - gh-pages - http://owasp.github.io/owasp-java-encoder - - - - - Owasp-java-encoder-project - https://lists.owasp.org/mailman/listinfo/owasp-java-encoder-project - https://lists.owasp.org/mailman/listinfo/owasp-java-encoder-project - owasp-java-encoder-project@lists.owasp.org - http://lists.owasp.org/pipermail/owasp-java-encoder-project/ - - - - - github - https://github.com/owasp/owasp-java-encoder/issues - - - - - Jeff Ichnowski - - Project Owner - Architect - Developer - - - - Jim Manico - OWASP - https://www.owasp.org/ - - Architect - Developer - - - - Jeremy Long - jeremy.long@owasp.org - OWASP - https://www.owasp.org/ - - developer - - - - - - UTF-8 - UTF-8 - - - - - - junit - junit - 3.8.2 - - - - - - junit - junit - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.5.1 - - - org.apache.maven.plugins - maven-jar-plugin - 3.0.2 - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - - org.codehaus.mojo - cobertura-maven-plugin - 2.6 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.19.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.19.1 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - org.apache.maven.plugins - maven-site-plugin - - 3.4 - - - lt.velykis.maven.skins - reflow-velocity-tools - 1.1.1 - - - - org.apache.velocity - velocity - 1.7 - - - org.apache.maven.doxia - doxia-module-markdown - 1.6 - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.9 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.6 - - - org.apache.felix - maven-bundle-plugin - 3.3.0 - - - org.codehaus.mojo - versions-maven-plugin - 2.3 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.5 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.4 - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - - - - org.apache.felix - maven-bundle-plugin - - - default-bundle - process-classes - - manifest - - - true - - <_noee>true - <_nouses>true - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - - - 85 - 85 - false - 85 - 85 - 85 - 85 - - - - - - clean - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - org/owasp/encoder/BenchmarkTest.java - - -Xmx1024m -XX:MaxPermSize=256m - - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - package - - jar - - - true - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - package - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - package - - jar - - - - - - org.apache.maven.plugins - maven-site-plugin - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - index - summary - license - scm - mailing-list - issue-tracking - dependencies - plugin-management - project-team - - - - - - org.codehaus.mojo - versions-maven-plugin - - - - dependency-updates-report - plugin-updates-report - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - - report-only - failsafe-report-only - - - - - - org.codehaus.mojo - cobertura-maven-plugin - - - org.apache.maven.plugins - maven-pmd-plugin - - 1.5 - true - utf-8 - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - default - - javadoc - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - src/main/config/checkstyle.xml - src/main/config/checkstyle-header.txt - - - - org.codehaus.mojo - findbugs-maven-plugin - - - - - - sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - diff --git a/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom.sha1 b/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom.sha1 deleted file mode 100644 index ac745ec42..000000000 --- a/code/arachne/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -37df76d2b909a4e9d4b83863009bd97d21c17b14 \ No newline at end of file diff --git a/code/arachne/org/owasp/encoder/encoder/1.2.3/_remote.repositories b/code/arachne/org/owasp/encoder/encoder/1.2.3/_remote.repositories deleted file mode 100644 index 2cade9d56..000000000 --- a/code/arachne/org/owasp/encoder/encoder/1.2.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:21 EDT 2024 -encoder-1.2.3.pom>central= diff --git a/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom b/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom deleted file mode 100644 index 687e433cf..000000000 --- a/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom +++ /dev/null @@ -1,99 +0,0 @@ - - - - - 4.0.0 - - - org.owasp.encoder - encoder-parent - 1.2.3 - - - encoder - jar - - Java Encoder - - The OWASP Encoders package is a collection of high-performance low-overhead - contextual encoders, that when utilized correctly, is an effective tool in - preventing Web Application security vulnerabilities such as Cross-Site - Scripting. - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - org/owasp/encoder/BenchmarkTest.java - - - - - - - - benchmark - - - - org.apache.maven.plugins - maven-failsafe-plugin - - -Xmx1024m -XX:MaxPermSize=256m - - org/owasp/encoder/BenchmarkTest.java - - - - - - integration-test - verify - - - - - - - - - diff --git a/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom.sha1 b/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom.sha1 deleted file mode 100644 index 7e770b220..000000000 --- a/code/arachne/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d6283d28ef5108d3098df4f138c02f40f498246a \ No newline at end of file diff --git a/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/_remote.repositories b/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/_remote.repositories deleted file mode 100644 index e4f956e68..000000000 --- a/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -jakartaee-pac4j-8.0.1.pom>central= diff --git a/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom b/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom deleted file mode 100644 index 8fe94b32f..000000000 --- a/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom +++ /dev/null @@ -1,30 +0,0 @@ - - - 4.0.0 - - - org.pac4j - jee-pac4j-parent - 8.0.1 - - - org.pac4j - jakartaee-pac4j - jar - pac4j implementation for JakartaEE - Security library for JakartaEE based on pac4j - - - - org.pac4j - pac4j-jakartaee - ${pac4j.version} - - - jakarta.platform - jakarta.jakartaee-web-api - 9.1.0 - provided - - - diff --git a/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom.sha1 b/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom.sha1 deleted file mode 100644 index 840e94b62..000000000 --- a/code/arachne/org/pac4j/jakartaee-pac4j/8.0.1/jakartaee-pac4j-8.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -05f7de96877277ce262b6b6982d8237618b87a8c \ No newline at end of file diff --git a/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/_remote.repositories b/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/_remote.repositories deleted file mode 100644 index f86380acc..000000000 --- a/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -jee-pac4j-parent-8.0.1.pom>central= diff --git a/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom b/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom deleted file mode 100644 index 9a6685c0d..000000000 --- a/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom +++ /dev/null @@ -1,211 +0,0 @@ - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 9 - - - org.pac4j - jee-pac4j-parent - pom - jee-pac4j parent - 8.0.1 - JEE pac4j libraries - https://github.com/pac4j/jee-pac4j - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - https://github.com/pac4j/jee-pac4j.git - scm:git:git@github.com:pac4j/jee-pac4j.git - scm:git:git@github.com:pac4j/jee-pac4j.git - - - - - leleuj - Jerome LELEU - leleuj@gmail.com - - - - - javaee-pac4j - jakartaee-pac4j - - - - 6.0.2 - 17 - 6.55.0 - - - - - org.projectlombok - lombok - 1.18.32 - provided - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.13.0 - - ${java.version} - UTF-8 - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - UTF-8 - UTF-8 - UTF-8 - - - - attach-javadocs - - jar - - - - - - com.github.spotbugs - spotbugs-maven-plugin - 4.8.5.0 - - Low - Max - true - ${basedir}/../spotbugs-exclude.xml - true - - - - run-sportbugs - compile - - check - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.21.2 - - true - true - - - - run-pmd - compile - - check - - - - - - net.sourceforge.pmd - pmd-core - ${pmdVersion} - - - net.sourceforge.pmd - pmd-java - ${pmdVersion} - - - net.sourceforge.pmd - pmd-javascript - ${pmdVersion} - - - net.sourceforge.pmd - pmd-jsp - ${pmdVersion} - - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.2.4 - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom.sha1 b/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom.sha1 deleted file mode 100644 index 5ffb9b99b..000000000 --- a/code/arachne/org/pac4j/jee-pac4j-parent/8.0.1/jee-pac4j-parent-8.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d5896c51e8f277238e556c4e8e8cf24782b0a856 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-cas/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-cas/6.0.3/_remote.repositories deleted file mode 100644 index 9982ee567..000000000 --- a/code/arachne/org/pac4j/pac4j-cas/6.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:10 EDT 2024 -pac4j-cas-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom b/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom deleted file mode 100644 index be0c9cf62..000000000 --- a/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - 4.0.0 - - - org.pac4j - pac4j-parent - 6.0.3 - - - pac4j-cas - jar - pac4j: Java web security for CAS - - - 4.0.4 - - - - - org.pac4j - pac4j-core - - - org.apereo.cas.client - cas-client-core - ${cas.version} - - - org.apereo.cas.client - cas-client-support-saml - ${cas.version} - - - com.google.guava - guava - - - - org.pac4j - pac4j-core - test-jar - test - - - junit - junit - test - - - ch.qos.logback - logback-classic - test - - - - - - - - org.apache.felix - maven-bundle-plugin - - - pac4j.cas - org.pac4j.cas - org.pac4j.cas.*;version=${project.version} - * - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom.sha1 deleted file mode 100644 index 66413be1a..000000000 --- a/code/arachne/org/pac4j/pac4j-cas/6.0.3/pac4j-cas-6.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -43b30e22affe3267438b4c78e020e5b0205d40fb \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-core/5.7.4/_remote.repositories b/code/arachne/org/pac4j/pac4j-core/5.7.4/_remote.repositories deleted file mode 100644 index 31d8fb35f..000000000 --- a/code/arachne/org/pac4j/pac4j-core/5.7.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:27 EDT 2024 -pac4j-core-5.7.4.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom b/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom deleted file mode 100644 index f87f352a4..000000000 --- a/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom +++ /dev/null @@ -1,122 +0,0 @@ - - - 4.0.0 - - - org.pac4j - pac4j-parent - 5.7.4 - - - pac4j-core - jar - pac4j core - - - org.slf4j - slf4j-api - - - com.google.guava - guava - true - - - org.springframework.security - spring-security-crypto - true - - - org.apache.shiro - shiro-core - true - - - de.svenkubiak - jBCrypt - true - - - com.fasterxml.jackson.core - jackson-databind - true - - - - junit - junit - test - - - org.slf4j - jcl-over-slf4j - test - - - ch.qos.logback - logback-classic - test - - - org.mockito - mockito-core - test - - - - - - - - org.apache.felix - maven-bundle-plugin - - - pac4j.core - org.pac4j.core - org.pac4j.core.*;version=${project.version} - * - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - test-jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - test-jar - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom.sha1 b/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom.sha1 deleted file mode 100644 index 1a5b5e004..000000000 --- a/code/arachne/org/pac4j/pac4j-core/5.7.4/pac4j-core-5.7.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1d459adca8c1f1e02def0b11d1479a0a3ab22e6d \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.2/_remote.repositories b/code/arachne/org/pac4j/pac4j-core/6.0.2/_remote.repositories deleted file mode 100644 index 42b2df0d9..000000000 --- a/code/arachne/org/pac4j/pac4j-core/6.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:25 EDT 2024 -pac4j-core-6.0.2.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom b/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom deleted file mode 100644 index 3db0d5959..000000000 --- a/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom +++ /dev/null @@ -1,132 +0,0 @@ - - - 4.0.0 - - - org.pac4j - pac4j-parent - 6.0.2 - - - pac4j-core - jar - pac4j core - - - org.slf4j - slf4j-api - - - org.apache.commons - commons-text - - - com.fasterxml.jackson.core - jackson-databind - - - - com.google.guava - guava - true - - - org.springframework.security - spring-security-crypto - true - - - org.apache.shiro - shiro-core - true - - - de.svenkubiak - jBCrypt - true - - - org.springframework - spring-core - true - - - - - junit - junit - test - - - org.slf4j - jcl-over-slf4j - test - - - ch.qos.logback - logback-classic - test - - - org.mockito - mockito-core - test - - - - - - - - org.apache.felix - maven-bundle-plugin - - - pac4j.core - org.pac4j.core - org.pac4j.core.*;version=${project.version} - * - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - test-jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - test-jar - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom.sha1 b/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom.sha1 deleted file mode 100644 index 72bff15bd..000000000 --- a/code/arachne/org/pac4j/pac4j-core/6.0.2/pac4j-core-6.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a22fd5ee6f91d74dbf0f9bf9d94635e9a165c826 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-core/6.0.3/_remote.repositories deleted file mode 100644 index cc00f0df6..000000000 --- a/code/arachne/org/pac4j/pac4j-core/6.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:25 EDT 2024 -pac4j-core-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom b/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom deleted file mode 100644 index 01178b9b5..000000000 --- a/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom +++ /dev/null @@ -1,132 +0,0 @@ - - - 4.0.0 - - - org.pac4j - pac4j-parent - 6.0.3 - - - pac4j-core - jar - pac4j core - - - org.slf4j - slf4j-api - - - org.apache.commons - commons-text - - - com.fasterxml.jackson.core - jackson-databind - - - - com.google.guava - guava - true - - - org.springframework.security - spring-security-crypto - true - - - org.apache.shiro - shiro-core - true - - - de.svenkubiak - jBCrypt - true - - - org.springframework - spring-core - true - - - - - junit - junit - test - - - org.slf4j - jcl-over-slf4j - test - - - ch.qos.logback - logback-classic - test - - - org.mockito - mockito-core - test - - - - - - - - org.apache.felix - maven-bundle-plugin - - - pac4j.core - org.pac4j.core - org.pac4j.core.*;version=${project.version} - com.google.common.cache;version=!,com.google.common.collect;version=!,* - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - test-jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - test-jar - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom.sha1 deleted file mode 100644 index 4ab5f432c..000000000 --- a/code/arachne/org/pac4j/pac4j-core/6.0.3/pac4j-core-6.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f535f27d777a07b8a6ef080a1af7af8482fe3591 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-http/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-http/6.0.3/_remote.repositories deleted file mode 100644 index 5f891ef68..000000000 --- a/code/arachne/org/pac4j/pac4j-http/6.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:27 EDT 2024 -pac4j-http-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom b/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom deleted file mode 100644 index e46203f16..000000000 --- a/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom +++ /dev/null @@ -1,119 +0,0 @@ - - - 4.0.0 - - - org.pac4j - pac4j-parent - 6.0.3 - - - pac4j-http - jar - pac4j for HTTP protocol - - - - org.pac4j - pac4j-core - - - commons-codec - commons-codec - true - - - com.fasterxml.jackson.core - jackson-databind - - - - org.pac4j - pac4j-core - test-jar - test - - - junit - junit - test - - - ch.qos.logback - logback-classic - test - - - org.mockito - mockito-core - test - - - com.google.guava - guava - test - - - org.nanohttpd - nanohttpd - ${nanohttpd.version} - test - - - - - - - - org.apache.felix - maven-bundle-plugin - - - pac4j.http - org.pac4j.http - org.pac4j.http.*;version=${project.version} - * - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - test-jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - test-jar - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom.sha1 deleted file mode 100644 index 488c3328c..000000000 --- a/code/arachne/org/pac4j/pac4j-http/6.0.3/pac4j-http-6.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0b726ba0393d5a5b99e82a70b0bee0a04d6e8cbb \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/_remote.repositories b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/_remote.repositories deleted file mode 100644 index 31198f859..000000000 --- a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -pac4j-jakartaee-6.0.2.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom deleted file mode 100644 index 82cd449bb..000000000 --- a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom +++ /dev/null @@ -1,77 +0,0 @@ - - - 4.0.0 - - - org.pac4j - pac4j-parent - 6.0.2 - - - pac4j-jakartaee - jar - pac4j JakartaEE components - - - org.pac4j - pac4j-core - - - org.pac4j - pac4j-saml - true - - - jakarta.servlet - jakarta.servlet-api - provided - - - jakarta.annotation - jakarta.annotation-api - 2.1.1 - provided - - - - org.pac4j - pac4j-core - test-jar - test - - - junit - junit - test - - - ch.qos.logback - logback-classic - test - - - org.mockito - mockito-core - test - - - - - - - - org.apache.felix - maven-bundle-plugin - - - pac4j.jakartaee - org.pac4j.jakartaee - org.pac4j.jee.*;version=${project.version} - * - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom.sha1 b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom.sha1 deleted file mode 100644 index 165fb8cdb..000000000 --- a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.2/pac4j-jakartaee-6.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8bdb2d58337be2763d77bc86a52a1e70b2e2217a \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/_remote.repositories deleted file mode 100644 index 17f0f8eb2..000000000 --- a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:25 EDT 2024 -pac4j-jakartaee-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom deleted file mode 100644 index a63182026..000000000 --- a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom +++ /dev/null @@ -1,77 +0,0 @@ - - - 4.0.0 - - - org.pac4j - pac4j-parent - 6.0.3 - - - pac4j-jakartaee - jar - pac4j JakartaEE components - - - org.pac4j - pac4j-core - - - org.pac4j - pac4j-saml - true - - - jakarta.servlet - jakarta.servlet-api - provided - - - jakarta.annotation - jakarta.annotation-api - 3.0.0 - provided - - - - org.pac4j - pac4j-core - test-jar - test - - - junit - junit - test - - - ch.qos.logback - logback-classic - test - - - org.mockito - mockito-core - test - - - - - - - - org.apache.felix - maven-bundle-plugin - - - pac4j.jakartaee - org.pac4j.jakartaee - org.pac4j.jee.*;version=${project.version} - * - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom.sha1 deleted file mode 100644 index 25d457dcc..000000000 --- a/code/arachne/org/pac4j/pac4j-jakartaee/6.0.3/pac4j-jakartaee-6.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ca3272681ee3b376fd392c202e1d7d63468d644c \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-oauth/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-oauth/6.0.3/_remote.repositories deleted file mode 100644 index 936991ac8..000000000 --- a/code/arachne/org/pac4j/pac4j-oauth/6.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -pac4j-oauth-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom b/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom deleted file mode 100644 index e702037fe..000000000 --- a/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - 4.0.0 - - - org.pac4j - pac4j-parent - 6.0.3 - - - pac4j-oauth - jar - pac4j: Java web security for OAuth - - - 8.3.3 - - - - - org.pac4j - pac4j-core - - - commons-codec - commons-codec - - - com.github.scribejava - scribejava-apis - ${scribe.version} - - - com.fasterxml.jackson.core - jackson-databind - - - org.reflections - reflections - - - - org.pac4j - pac4j-core - test-jar - test - - - junit - junit - test - - - ch.qos.logback - logback-classic - test - - - - - - - - org.apache.felix - maven-bundle-plugin - - - pac4j.oauth - org.pac4j.oauth - org.pac4j.oauth.*;version=${project.version} - * - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom.sha1 deleted file mode 100644 index 1f3df63f2..000000000 --- a/code/arachne/org/pac4j/pac4j-oauth/6.0.3/pac4j-oauth-6.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b629bbd985c59a5fd0a0751bd14d422429fa43ea \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-oidc/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-oidc/6.0.3/_remote.repositories deleted file mode 100644 index d096487d4..000000000 --- a/code/arachne/org/pac4j/pac4j-oidc/6.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -pac4j-oidc-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom b/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom deleted file mode 100644 index 433b48c50..000000000 --- a/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom +++ /dev/null @@ -1,109 +0,0 @@ - - - 4.0.0 - - - org.pac4j - pac4j-parent - 6.0.3 - - - pac4j-oidc - jar - pac4j: Java web security for OpenID Connect - - - 11.12 - - - - - org.pac4j - pac4j-core - - - com.nimbusds - oauth2-oidc-sdk - ${oauth-oidc-sdk.version} - - - com.nimbusds - nimbus-jose-jwt - - - - - com.nimbusds - nimbus-jose-jwt - - - com.fasterxml.jackson.core - jackson-databind - - - com.google.guava - guava - - - org.springframework - spring-core - - - - org.pac4j - pac4j-core - test-jar - test - - - org.pac4j - pac4j-jwt - test - - - org.pac4j - pac4j-http - test - test-jar - - - junit - junit - test - - - ch.qos.logback - logback-classic - test - - - org.nanohttpd - nanohttpd - test - - - org.mockito - mockito-core - test - - - - - - - - org.apache.felix - maven-bundle-plugin - - - pac4j.oidc - org.pac4j.oidc - org.pac4j.oidc.*;version=${project.version} - * - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom.sha1 deleted file mode 100644 index cc0689621..000000000 --- a/code/arachne/org/pac4j/pac4j-oidc/6.0.3/pac4j-oidc-6.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -981e7ce28160ad90bf09a095b868ab166ebd24a9 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-parent/5.7.4/_remote.repositories b/code/arachne/org/pac4j/pac4j-parent/5.7.4/_remote.repositories deleted file mode 100644 index 25f71164b..000000000 --- a/code/arachne/org/pac4j/pac4j-parent/5.7.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:27 EDT 2024 -pac4j-parent-5.7.4.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom b/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom deleted file mode 100644 index 81cb3bb0d..000000000 --- a/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom +++ /dev/null @@ -1,633 +0,0 @@ - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 9 - - - org.pac4j - pac4j-parent - pom - pac4j parent - 5.7.4 - Profile & Authentication Client for Java - https://github.com/pac4j/pac4j - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - https://github.com/pac4j/pac4j.git - scm:git:git@github.com:pac4j/pac4j.git - scm:git:git@github.com:pac4j/pac4j.git - - - - - leleuj - Jerome LELEU - leleuj@gmail.com - - - - - pac4j-javaee - pac4j-jakartaee - pac4j-core - pac4j-config - pac4j-oauth - pac4j-cas - pac4j-cas-clientv4 - pac4j-http - pac4j-saml - pac4j-saml-opensamlv5 - pac4j-gae - pac4j-oidc - pac4j-jwt - pac4j-ldap - pac4j-sql - pac4j-mongo - pac4j-couch - pac4j-kerberos - pac4j-springboot - pac4j-springbootv3 - - - - 4.8.0 - 3.5.2 - 4.13.2 - 4.0.1 - 6.0.0 - 1.4.4 - 1.15 - 2.11.0 - 3.12.0 - 31.1-jre - 9.37.2 - 5.3.24 - 5.7.5 - 1.10.0 - 0.4.3 - 1.33 - 4.9.0 - 2.0.3 - 6.0.6 - 2.1.214 - 11 - 2.14.0 - 0.10.2 - 2.3.1 - 5.10 - UTF-8 - UTF-8 - - - - - - org.pac4j - pac4j-core - ${project.version} - - - org.pac4j - pac4j-config - ${project.version} - - - org.pac4j - pac4j-oauth - ${project.version} - - - org.pac4j - pac4j-cas - ${project.version} - - - org.pac4j - pac4j-saml - ${project.version} - - - org.pac4j - pac4j-oidc - ${project.version} - - - org.pac4j - pac4j-ldap - ${project.version} - - - org.pac4j - pac4j-http - ${project.version} - - - org.pac4j - pac4j-sql - ${project.version} - - - org.pac4j - pac4j-jwt - ${project.version} - - - org.mongodb - mongodb-driver-sync - ${mongo-driver.version} - - - org.mongodb - bson - ${mongo-driver.version} - - - org.mongodb - mongodb-driver-core - ${mongo-driver.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.springframework.security - spring-security-crypto - ${spring.security.version} - - - org.apache.shiro - shiro-core - ${shiro.version} - - - de.svenkubiak - jBCrypt - ${jbcrypt.version} - - - commons-codec - commons-codec - ${commons-codec.version} - - - commons-io - commons-io - ${commons-io.version} - - - org.apache.commons - commons-lang3 - ${commons-lang3.version} - - - javax.servlet - javax.servlet-api - ${servlet-api.version} - - - jakarta.servlet - jakarta.servlet-api - ${jakarta-servlet-api.version} - - - com.google.guava - guava - ${guava.version} - - - com.nimbusds - nimbus-jose-jwt - ${nimbus-jose-jwt.version} - - - com.fasterxml.jackson.core - jackson-databind - 2.14.0 - - - org.reflections - reflections - ${reflections.version} - - - org.yaml - snakeyaml - ${snakeyaml.version} - - - - org.pac4j - pac4j-core - ${project.version} - test-jar - - - org.pac4j - pac4j-ldap - ${project.version} - test-jar - - - org.pac4j - pac4j-sql - ${project.version} - test-jar - - - org.pac4j - pac4j-http - ${project.version} - test-jar - - - de.flapdoodle.embed - de.flapdoodle.embed.mongo - ${flapdoodle.version} - test - - - junit - junit - ${junit.version} - - - org.springframework - spring-test - ${spring.version} - - - commons-logging - commons-logging - - - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - - - ch.qos.logback - logback-classic - ${logback.version} - - - org.mockito - mockito-core - ${mockito.version} - - - com.unboundid - unboundid-ldapsdk - ${unboundid.version} - - - com.h2database - h2 - ${h2.version} - - - org.nanohttpd - nanohttpd - ${nanohttpd.version} - - - com.github.tomakehurst - wiremock-jre8 - 2.35.0 - test - - - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 3.4.1 - - - package - - shade - - - false - ${project.artifactId}-${project.version}-all.jar - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - - **/*Tests.java - **/*Test.java - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.2.0 - - - com.puppycrawl.tools - checkstyle - 10.4 - - - - checkstyle.xml - - - - checkstyle - validate - - check - - - true - true - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - true - - **/*IT.java - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.10.1 - - ${java.version} - ${java.version} - UTF-8 - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - regex-property - - regex-property - - - module.suffix - ${project.artifactId} - ^(pac4j\-)(.*)$ - $2 - false - - - - set-osgi-version - verify - - parse-version - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - verify - - jar - - - - - - - 2 - ${project.name} - ${project.groupId}.${module.suffix}.source - ${organization.name} - ${parsedVersion.osgiVersion} - ${project.groupId}.${module.suffix};version="${parsedVersion.osgiVersion}";roots:="." - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${java.version} - ${java.version} - - - - attach-javadocs - - jar - - - - - - com.github.spotbugs - spotbugs-maven-plugin - 4.2.3 - - Low - Max - true - ${basedir}/../spotbugs-exclude.xml - true - - - - run-spotbugs - compile - - check - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.19.0 - - true - true - - - - run-pmd - compile - - check - - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.1 - - 1.8 - false - none - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.felix - maven-bundle-plugin - 5.1.8 - true - - - bundle-manifest - process-classes - - manifest - - - - - - - jar - - - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.22.2 - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - - - - - - forceIT - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - false - - **/*IT.java - - - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom.sha1 b/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom.sha1 deleted file mode 100644 index c530a9722..000000000 --- a/code/arachne/org/pac4j/pac4j-parent/5.7.4/pac4j-parent-5.7.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d7571bed4a319b7659c867cd30fce2d00c7cb3f0 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.2/_remote.repositories b/code/arachne/org/pac4j/pac4j-parent/6.0.2/_remote.repositories deleted file mode 100644 index c77d7152c..000000000 --- a/code/arachne/org/pac4j/pac4j-parent/6.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:25 EDT 2024 -pac4j-parent-6.0.2.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom b/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom deleted file mode 100644 index 281d2b7c9..000000000 --- a/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom +++ /dev/null @@ -1,668 +0,0 @@ - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 9 - - - org.pac4j - pac4j-parent - pom - pac4j parent - 6.0.2 - Profile & Authentication Client for Java - https://github.com/pac4j/pac4j - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - https://github.com/pac4j/pac4j.git - scm:git:git@github.com:pac4j/pac4j.git - scm:git:git@github.com:pac4j/pac4j.git - - - - - leleuj - Jerome LELEU - leleuj@gmail.com - - - - - pac4j-javaee - pac4j-jakartaee - pac4j-core - pac4j-config - pac4j-oauth - pac4j-cas - pac4j-http - pac4j-saml - pac4j-gae - pac4j-oidc - pac4j-jwt - pac4j-ldap - pac4j-sql - pac4j-mongo - pac4j-couch - pac4j-kerberos - pac4j-springboot - - - - 5.0.0 - 3.5.4 - 4.13.2 - 4.0.1 - 6.0.0 - 1.5.3 - 1.16.1 - 2.15.1 - 3.14.0 - 1.11.0 - 33.1.0-jre - 9.37.3 - 6.1.5 - 6.2.3 - 1.13.0 - 0.4.3 - 2.2 - 5.11.0 - 2.0.12 - 5.3.1 - 7.0.0 - 2.2.224 - 17 - 2.16.2 - 0.10.2 - 2.3.1 - 5.10 - 1.18.32 - UTF-8 - UTF-8 - - - - - - org.pac4j - pac4j-core - ${project.version} - - - org.pac4j - pac4j-config - ${project.version} - - - org.pac4j - pac4j-oauth - ${project.version} - - - org.pac4j - pac4j-cas - ${project.version} - - - org.pac4j - pac4j-saml - ${project.version} - - - org.pac4j - pac4j-oidc - ${project.version} - - - org.pac4j - pac4j-ldap - ${project.version} - - - org.pac4j - pac4j-http - ${project.version} - - - org.pac4j - pac4j-sql - ${project.version} - - - org.pac4j - pac4j-jwt - ${project.version} - - - org.mongodb - mongodb-driver-sync - ${mongo-driver.version} - - - org.mongodb - bson - ${mongo-driver.version} - - - org.mongodb - mongodb-driver-core - ${mongo-driver.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.springframework.security - spring-security-crypto - ${spring.security.version} - - - org.springframework - spring-core - ${spring.version} - - - spring-jcl - org.springframework - - - - - org.apache.httpcomponents.client5 - httpclient5 - ${httpclient.version} - - - org.apache.shiro - shiro-core - ${shiro.version} - - - de.svenkubiak - jBCrypt - ${jbcrypt.version} - - - commons-codec - commons-codec - ${commons-codec.version} - - - commons-io - commons-io - ${commons-io.version} - - - org.apache.commons - commons-lang3 - ${commons-lang3.version} - - - org.apache.commons - commons-text - ${commons-text.version} - - - javax.servlet - javax.servlet-api - ${servlet-api.version} - - - jakarta.servlet - jakarta.servlet-api - ${jakarta-servlet-api.version} - - - com.google.guava - guava - ${guava.version} - - - com.nimbusds - nimbus-jose-jwt - ${nimbus-jose-jwt.version} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - org.reflections - reflections - ${reflections.version} - - - org.yaml - snakeyaml - ${snakeyaml.version} - - - - org.pac4j - pac4j-core - ${project.version} - test-jar - - - org.pac4j - pac4j-ldap - ${project.version} - test-jar - - - org.pac4j - pac4j-sql - ${project.version} - test-jar - - - org.pac4j - pac4j-http - ${project.version} - test-jar - - - de.flapdoodle.embed - de.flapdoodle.embed.mongo - ${flapdoodle.version} - test - - - junit - junit - ${junit.version} - - - org.springframework - spring-test - ${spring.version} - - - commons-logging - commons-logging - - - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - - - ch.qos.logback - logback-classic - ${logback.version} - - - org.mockito - mockito-core - ${mockito.version} - - - com.unboundid - unboundid-ldapsdk - ${unboundid.version} - - - com.h2database - h2 - ${h2.version} - - - org.nanohttpd - nanohttpd - ${nanohttpd.version} - - - com.github.tomakehurst - wiremock-jre8 - 2.35.2 - test - - - - - - - - org.projectlombok - lombok - ${lombok.version} - - - com.google.code.findbugs - findbugs-annotations - 3.0.1 - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 3.5.2 - - - package - - shade - - - false - ${project.artifactId}-${project.version}-all.jar - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.5 - - - **/*Tests.java - **/*Test.java - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.1 - - - com.puppycrawl.tools - checkstyle - 10.14.2 - - - - checkstyle.xml - - - - checkstyle - validate - - check - - - true - true - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - true - - **/*IT.java - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.13.0 - - ${java.version} - ${java.version} - UTF-8 - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - regex-property - - regex-property - - - module.suffix - ${project.artifactId} - ^(pac4j\-)(.*)$ - $2 - false - - - - set-osgi-version - verify - - parse-version - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - verify - - jar - - - - - - - 2 - ${project.name} - ${project.groupId}.${module.suffix}.source - ${organization.name} - ${parsedVersion.osgiVersion} - ${project.groupId}.${module.suffix};version="${parsedVersion.osgiVersion}";roots:="." - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - src/main/java - ${java.version} - ${java.version} - - - - attach-javadocs - - jar - - - - - - com.github.spotbugs - spotbugs-maven-plugin - 4.7.3.6 - - Low - Max - true - ${basedir}/../spotbugs-exclude.xml - true - - - - run-spotbugs - compile - - check - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.21.2 - - true - true - - - - run-pmd - compile - - check - - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - 1.8 - false - none - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.5.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - true - - - bundle-manifest - process-classes - - manifest - - - - - - - jar - - - - - org.apache.maven.plugins - maven-failsafe-plugin - 3.2.5 - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.2.1 - - - sign-artifacts - verify - - sign - - - - - - - - - forceIT - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - false - - **/*IT.java - - - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom.sha1 b/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom.sha1 deleted file mode 100644 index 2938708c3..000000000 --- a/code/arachne/org/pac4j/pac4j-parent/6.0.2/pac4j-parent-6.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e90569aeabcbcbde418e504e2773a16849fa0066 \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.3/_remote.repositories b/code/arachne/org/pac4j/pac4j-parent/6.0.3/_remote.repositories deleted file mode 100644 index 644407ed3..000000000 --- a/code/arachne/org/pac4j/pac4j-parent/6.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:25 EDT 2024 -pac4j-parent-6.0.3.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom b/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom deleted file mode 100644 index fc843fc8e..000000000 --- a/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom +++ /dev/null @@ -1,669 +0,0 @@ - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 9 - - - org.pac4j - pac4j-parent - pom - pac4j parent - 6.0.3 - Profile & Authentication Client for Java - https://github.com/pac4j/pac4j - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - https://github.com/pac4j/pac4j.git - scm:git:git@github.com:pac4j/pac4j.git - scm:git:git@github.com:pac4j/pac4j.git - - - - - leleuj - Jerome LELEU - leleuj@gmail.com - - - - - pac4j-javaee - pac4j-jakartaee - pac4j-core - pac4j-config - pac4j-oauth - pac4j-cas - pac4j-http - pac4j-saml - pac4j-gae - pac4j-oidc - pac4j-jwt - pac4j-ldap - pac4j-sql - pac4j-mongo - pac4j-couch - pac4j-kerberos - pac4j-springboot - - - - 5.1.0 - 3.5.4 - 4.13.2 - 4.0.1 - 6.0.0 - 1.5.6 - 1.17.0 - 2.16.1 - 3.14.0 - 1.12.0 - 33.2.0-jre - 9.39.1 - 6.1.8 - 6.3.0 - 1.13.0 - 0.4.3 - 2.2 - 5.12.0 - 2.0.13 - 5.3.1 - 7.0.0 - 2.2.224 - 17 - 2.17.1 - 0.10.2 - 2.3.1 - 5.10 - 1.18.32 - UTF-8 - UTF-8 - - - - - - org.pac4j - pac4j-core - ${project.version} - - - org.pac4j - pac4j-config - ${project.version} - - - org.pac4j - pac4j-oauth - ${project.version} - - - org.pac4j - pac4j-cas - ${project.version} - - - org.pac4j - pac4j-saml - ${project.version} - - - org.pac4j - pac4j-oidc - ${project.version} - - - org.pac4j - pac4j-ldap - ${project.version} - - - org.pac4j - pac4j-http - ${project.version} - - - org.pac4j - pac4j-sql - ${project.version} - - - org.pac4j - pac4j-jwt - ${project.version} - - - org.mongodb - mongodb-driver-sync - ${mongo-driver.version} - - - org.mongodb - bson - ${mongo-driver.version} - - - org.mongodb - mongodb-driver-core - ${mongo-driver.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.springframework.security - spring-security-crypto - ${spring.security.version} - - - org.springframework - spring-core - ${spring.version} - - - spring-jcl - org.springframework - - - - - org.apache.httpcomponents.client5 - httpclient5 - ${httpclient.version} - - - org.apache.shiro - shiro-core - ${shiro.version} - - - de.svenkubiak - jBCrypt - ${jbcrypt.version} - - - commons-codec - commons-codec - ${commons-codec.version} - - - commons-io - commons-io - ${commons-io.version} - - - org.apache.commons - commons-lang3 - ${commons-lang3.version} - - - org.apache.commons - commons-text - ${commons-text.version} - - - javax.servlet - javax.servlet-api - ${servlet-api.version} - - - jakarta.servlet - jakarta.servlet-api - ${jakarta-servlet-api.version} - - - com.google.guava - guava - ${guava.version} - - - com.nimbusds - nimbus-jose-jwt - ${nimbus-jose-jwt.version} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - org.reflections - reflections - ${reflections.version} - - - org.yaml - snakeyaml - ${snakeyaml.version} - - - - org.pac4j - pac4j-core - ${project.version} - test-jar - - - org.pac4j - pac4j-ldap - ${project.version} - test-jar - - - org.pac4j - pac4j-sql - ${project.version} - test-jar - - - org.pac4j - pac4j-http - ${project.version} - test-jar - - - de.flapdoodle.embed - de.flapdoodle.embed.mongo - ${flapdoodle.version} - test - - - junit - junit - ${junit.version} - - - org.springframework - spring-test - ${spring.version} - - - commons-logging - commons-logging - - - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - - - ch.qos.logback - logback-classic - ${logback.version} - - - org.mockito - mockito-core - ${mockito.version} - - - com.unboundid - unboundid-ldapsdk - ${unboundid.version} - - - com.h2database - h2 - ${h2.version} - - - org.nanohttpd - nanohttpd - ${nanohttpd.version} - - - com.github.tomakehurst - wiremock-jre8 - 2.35.2 - test - - - - - - - - org.projectlombok - lombok - ${lombok.version} - provided - - - com.google.code.findbugs - findbugs-annotations - 3.0.1 - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 3.5.3 - - - package - - shade - - - false - ${project.artifactId}-${project.version}-all.jar - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.5 - - - **/*Tests.java - **/*Test.java - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.1 - - - com.puppycrawl.tools - checkstyle - 10.16.0 - - - - checkstyle.xml - - - - checkstyle - validate - - check - - - true - true - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - true - - **/*IT.java - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.13.0 - - ${java.version} - ${java.version} - UTF-8 - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - regex-property - - regex-property - - - module.suffix - ${project.artifactId} - ^(pac4j\-)(.*)$ - $2 - false - - - - set-osgi-version - verify - - parse-version - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - verify - - jar - - - - - - - 2 - ${project.name} - ${project.groupId}.${module.suffix}.source - ${organization.name} - ${parsedVersion.osgiVersion} - ${project.groupId}.${module.suffix};version="${parsedVersion.osgiVersion}";roots:="." - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - src/main/java - ${java.version} - ${java.version} - - - - attach-javadocs - - jar - - - - - - com.github.spotbugs - spotbugs-maven-plugin - 4.7.3.6 - - Low - Max - true - ${basedir}/../spotbugs-exclude.xml - true - - - - run-spotbugs - compile - - check - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.21.2 - - true - true - - - - run-pmd - compile - - check - - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.4.1 - - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - 1.8 - false - none - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.3.1 - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - true - - - bundle-manifest - process-classes - - manifest - - - - - - - jar - - - - - org.apache.maven.plugins - maven-failsafe-plugin - 3.2.5 - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.2.4 - - - sign-artifacts - verify - - sign - - - - - - - - - forceIT - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - false - - **/*IT.java - - - - - - - - - diff --git a/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom.sha1 b/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom.sha1 deleted file mode 100644 index d3fd01bf9..000000000 --- a/code/arachne/org/pac4j/pac4j-parent/6.0.3/pac4j-parent-6.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4d9b7baf601324ecd8fa61c0c3387b1555f9192d \ No newline at end of file diff --git a/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/_remote.repositories b/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/_remote.repositories deleted file mode 100644 index d013bdf00..000000000 --- a/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:27 EDT 2024 -pac4j-saml-opensamlv5-5.7.4.pom>central= diff --git a/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom b/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom deleted file mode 100644 index 7dbb6b815..000000000 --- a/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom +++ /dev/null @@ -1,285 +0,0 @@ - - - 4.0.0 - - - org.pac4j - pac4j-parent - 5.7.4 - - - pac4j-saml-opensamlv5 - jar - pac4j: Java web security for SAML (OpenSAML v5) - - - 5.0.0 - 5.2.1 - 2.12.1 - 2.3 - 3.0.1 - 1.2.5 - 5.2.1 - 17 - - - - - - org.apache.santuario - xmlsec - ${xmlsec.version} - - - - - - - org.pac4j - pac4j-core - - - org.opensaml - opensaml-core-api - ${opensaml.version} - compile - - - org.opensaml - opensaml-saml-api - ${opensaml.version} - compile - - - org.opensaml - opensaml-saml-impl - ${opensaml.version} - compile - - - org.opensaml - opensaml-soap-api - ${opensaml.version} - compile - - - org.opensaml - opensaml-xmlsec-api - ${opensaml.version} - - - org.opensaml - opensaml-security-api - ${opensaml.version} - - - org.opensaml - opensaml-security-impl - ${opensaml.version} - - - org.opensaml - opensaml-profile-api - ${opensaml.version} - - - org.opensaml - opensaml-profile-impl - ${opensaml.version} - - - org.opensaml - opensaml-messaging-api - ${opensaml.version} - - - org.opensaml - opensaml-messaging-impl - ${opensaml.version} - - - org.opensaml - opensaml-storage-impl - ${opensaml.version} - - - org.springframework - spring-beans - ${spring.version} - - - org.apache.httpcomponents.client5 - httpclient5 - ${httpclient.version} - - - org.springframework - spring-orm - ${spring.version} - - - org.opensaml - opensaml-xmlsec-impl - ${opensaml.version} - - - com.fasterxml.jackson.core - jackson-databind - - - com.google.guava - guava - - - org.cryptacular - cryptacular - ${cryptacular.version} - - - bcprov-jdk15on - org.bouncycastle - - - - - org.apache.commons - commons-lang3 - - - commons-io - commons-io - - - joda-time - joda-time - ${joda-time.version} - - - org.apache.velocity - velocity-engine-core - ${velocity.version} - - - org.apache.commons - commons-lang3 - - - - - org.slf4j - jcl-over-slf4j - - - org.springframework - spring-core - compile - - - spring-jcl - org.springframework - - - ${spring.version} - - - com.hazelcast - hazelcast - ${hazelcast.version} - true - - - org.mongodb - mongodb-driver-sync - true - - - org.mongodb - bson - true - - - org.mongodb - mongodb-driver-core - true - - - - org.pac4j - pac4j-core - test-jar - test - - - com.h2database - h2 - 2.1.214 - test - - - junit - junit - test - - - ch.qos.logback - logback-classic - test - - - org.mockito - mockito-core - test - - - com.github.tomakehurst - wiremock-jre8 - test - - - de.flapdoodle.embed - de.flapdoodle.embed.mongo - test - - - - - - - - org.apache.felix - maven-bundle-plugin - - - pac4j.saml - org.pac4j.saml2 - org.pac4j.saml.*;version=${project.version} - org.joda.time;version="[1.6,3)",* - - - - - - - - - shib-snapshots - https://build.shibboleth.net/nexus/content/repositories/snapshots - - true - - - false - - - - shib-release - https://build.shibboleth.net/nexus/content/groups/public - - false - - - true - - - - diff --git a/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom.sha1 b/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom.sha1 deleted file mode 100644 index 36de5d285..000000000 --- a/code/arachne/org/pac4j/pac4j-saml-opensamlv5/5.7.4/pac4j-saml-opensamlv5-5.7.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -eee191fa7112ad29a3ab5fc75153b022cff2d089 \ No newline at end of file diff --git a/code/arachne/org/postgresql/postgresql/42.6.2/_remote.repositories b/code/arachne/org/postgresql/postgresql/42.6.2/_remote.repositories deleted file mode 100644 index 1224a9bfc..000000000 --- a/code/arachne/org/postgresql/postgresql/42.6.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:17 EDT 2024 -postgresql-42.6.2.pom>central= diff --git a/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom b/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom deleted file mode 100644 index 9402c9fdc..000000000 --- a/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - 4.0.0 - org.postgresql - postgresql - 42.6.2 - PostgreSQL JDBC Driver - PostgreSQL JDBC Driver Postgresql - https://jdbc.postgresql.org - 1997 - - PostgreSQL Global Development Group - https://jdbc.postgresql.org/ - - - - BSD-2-Clause - https://jdbc.postgresql.org/about/license.html - repo - BSD-2-Clause, copyright PostgreSQL Global Development Group - - - - - davecramer - Dave Cramer - - - jurka - Kris Jurka - - - oliver - Oliver Jowett - - - ringerc - Craig Ringer - - - vlsi - Vladimir Sitnikov - - - bokken - Brett Okken - - - - - PostgreSQL JDBC development list - https://lists.postgresql.org/ - https://lists.postgresql.org/unsubscribe/ - pgsql-jdbc@postgresql.org - https://www.postgresql.org/list/pgsql-jdbc/ - - - - scm:git:https://github.com/pgjdbc/pgjdbc.git - scm:git:https://github.com/pgjdbc/pgjdbc.git - https://github.com/pgjdbc/pgjdbc - - - GitHub issues - https://github.com/pgjdbc/pgjdbc/issues - - - - org.checkerframework - checker-qual - 3.31.0 - runtime - - - com.github.waffle - waffle-jna - 1.9.1 - true - - - diff --git a/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom.sha1 b/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom.sha1 deleted file mode 100644 index de4012fec..000000000 --- a/code/arachne/org/postgresql/postgresql/42.6.2/postgresql-42.6.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -10abab0585bfd968a7134e07805ef7b4eecca067 \ No newline at end of file diff --git a/code/arachne/org/projectlombok/lombok/1.18.32/_remote.repositories b/code/arachne/org/projectlombok/lombok/1.18.32/_remote.repositories deleted file mode 100644 index 1deae0f72..000000000 --- a/code/arachne/org/projectlombok/lombok/1.18.32/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:24 EDT 2024 -lombok-1.18.32.pom>central= diff --git a/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom b/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom deleted file mode 100644 index 2a0e1a839..000000000 --- a/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom +++ /dev/null @@ -1,43 +0,0 @@ - - 4.0.0 - org.projectlombok - lombok - jar - 1.18.32 - Project Lombok - https://projectlombok.org - Spice up your java: Automatic Resource Management, automatic generation of getters, setters, equals, hashCode and toString, and more! - - - - The MIT License - https://projectlombok.org/LICENSE - repo - - - - scm:git:git://github.com/projectlombok/lombok.git - http://github.com/projectlombok/lombok - - - GitHub Issues - https://github.com/projectlombok/lombok/issues - - - - rzwitserloot - Reinier Zwitserloot - reinier@projectlombok.org - http://zwitserloot.com - Europe/Amsterdam - - - rspilker - Roel Spilker - roel@projectlombok.org - Europe/Amsterdam - - - - diff --git a/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom.sha1 b/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom.sha1 deleted file mode 100644 index 2c2994e36..000000000 --- a/code/arachne/org/projectlombok/lombok/1.18.32/lombok-1.18.32.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b48898e1ae2980d01c4bccf67b24cefb77296a7b \ No newline at end of file diff --git a/code/arachne/org/reactivestreams/reactive-streams/1.0.4/_remote.repositories b/code/arachne/org/reactivestreams/reactive-streams/1.0.4/_remote.repositories deleted file mode 100644 index 0a1586b81..000000000 --- a/code/arachne/org/reactivestreams/reactive-streams/1.0.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:13 EDT 2024 -reactive-streams-1.0.4.pom>central= diff --git a/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom b/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom deleted file mode 100644 index c5c02469a..000000000 --- a/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom +++ /dev/null @@ -1,30 +0,0 @@ - - - 4.0.0 - org.reactivestreams - reactive-streams - 1.0.4 - reactive-streams - A Protocol for Asynchronous Non-Blocking Data Sequence - http://www.reactive-streams.org/ - 2014 - - - MIT-0 - https://spdx.org/licenses/MIT-0.html - repo - - - - - reactive-streams-sig - Reactive Streams SIG - http://www.reactive-streams.org/ - - - - scm:git:git@github.com:reactive-streams/reactive-streams.git - git@github.com:reactive-streams/reactive-streams.git - - diff --git a/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom.sha1 b/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom.sha1 deleted file mode 100644 index 991887eda..000000000 --- a/code/arachne/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1ca52a3b51493500972199a713c886d38e03ac15 \ No newline at end of file diff --git a/code/arachne/org/reflections/reflections/0.10.2/_remote.repositories b/code/arachne/org/reflections/reflections/0.10.2/_remote.repositories deleted file mode 100644 index 690408279..000000000 --- a/code/arachne/org/reflections/reflections/0.10.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:26 EDT 2024 -reflections-0.10.2.pom>central= diff --git a/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom b/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom deleted file mode 100644 index 925656cc0..000000000 --- a/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom +++ /dev/null @@ -1,249 +0,0 @@ - - 4.0.0 - - org.reflections - reflections - 0.10.2 - jar - - Reflections - Reflections - Java runtime metadata analysis - http://github.com/ronmamo/reflections - - - - WTFPL - http://www.wtfpl.net/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - https://github.com/ronmamo/reflections/issues - scm:git:git://github.com/ronmamo/reflections.git - - - - https://github.com/ronmamo/reflections/issues - GitHub Issues - - - - - ronmamo at gmail - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - - 3.28.0-GA - 1.8 - none - - - - - org.javassist - javassist - ${javassist.version} - false - - - - com.google.code.findbugs - jsr305 - 3.0.2 - compile - - - - org.slf4j - slf4j-api - 1.7.32 - - - - org.dom4j - dom4j - 2.1.3 - true - - - - com.google.code.gson - gson - 2.8.8 - true - - - - javax.servlet - servlet-api - 2.5 - provided - true - - - - org.slf4j - slf4j-simple - 1.7.32 - true - - - - org.jboss - jboss-vfs - 3.2.15.Final - provided - true - - - - org.junit.jupiter - junit-jupiter-engine - 5.8.1 - test - - - - org.hamcrest - hamcrest - 2.2 - test - - - - - - - - release - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.3.1 - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - - - - - maven-compiler-plugin - - ${jdk.version} - ${jdk.version} - - - - org.apache.felix - maven-bundle-plugin - 5.1.2 - - - bundle-manifest - process-classes - - manifest - - - - - - - - org.jboss.vfs.*;resolution:=optional, - !javax.annotation, - * - - org.reflections - - - - - maven-jar-plugin - 3.2.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - org.reflections - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - - - - diff --git a/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom.sha1 b/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom.sha1 deleted file mode 100644 index 336d0405f..000000000 --- a/code/arachne/org/reflections/reflections/0.10.2/reflections-0.10.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -79c2b5f8150ae55c4f46c77a5f8f5ea9ad2850a2 \ No newline at end of file diff --git a/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/_remote.repositories b/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/_remote.repositories deleted file mode 100644 index 4642e5fc7..000000000 --- a/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:12 EDT 2024 -duct-tape-1.0.8.pom>central= diff --git a/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom b/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom deleted file mode 100644 index de4adbc48..000000000 --- a/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - 4.0.0 - - org.rnorth.duct-tape - duct-tape - 1.0.8 - - - - Duct Tape - - General purpose resilience utilities for Java 8 (circuit breakers, timeouts, rate limiters, and handlers for unreliable or inconsistent results) - - https://github.com/rnorth/${project.artifactId} - - - MIT - http://opensource.org/licenses/MIT - - - - - rnorth - Richard North - rich.north@gmail.com - - - - - - org.slf4j - slf4j-api - 1.7.7 - provided - - - junit - junit - 4.12 - test - - - org.mockito - mockito-all - 1.9.5 - test - - - org.slf4j - slf4j-simple - 1.7.7 - test - - - org.rnorth.visible-assertions - visible-assertions - 1.0.5 - test - - - org.jetbrains - annotations - 17.0.0 - - - - - - - maven-compiler-plugin - 3.1 - - 1.8 - 1.8 - - - - maven-scm-plugin - 1.9.4 - - ${project.version} - - - - maven-release-plugin - 2.5.1 - - false - true - - - - maven-source-plugin - 2.4 - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - 2.10.3 - - - attach-javadocs - - jar - - - - - true - public - true -
    ${project.name}, ${project.version}
    -
    ${project.name}, ${project.version}
    - ${project.name}, ${project.version} -
    -
    - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0-beta-2 - - - publish-javadocs - site-deploy - - publish-scm - - - - - ${project.build.directory}/scmpublish - Publishing javadoc for ${project.artifactId}:${project.version} - ${project.reporting.outputDirectory}/apidocs - true - scm:git:git@github.com:rnorth/${project.artifactId}.git - gh-pages - - -
    -
    - - - scm:git:https://github.com/rnorth/${project.artifactId}.git - scm:git:git@github.com:rnorth/${project.artifactId}.git - https://github.com/rnorth/${project.artifactId} - HEAD - - - - - bintray - https://api.bintray.com/maven/richnorth/maven/${project.artifactId} - - -
    diff --git a/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom.sha1 b/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom.sha1 deleted file mode 100644 index 2e5106c0b..000000000 --- a/code/arachne/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3fe5741e9fdb97f00708d45d849b93a280f5e9d6 \ No newline at end of file diff --git a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/_remote.repositories b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/_remote.repositories deleted file mode 100644 index cfaa5dd0b..000000000 --- a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:39 EDT 2024 -selenium-bom-4.14.1.pom>ohdsi= diff --git a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom deleted file mode 100644 index ce20f8d39..000000000 --- a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom +++ /dev/null @@ -1,179 +0,0 @@ - - - - 4.0.0 - - org.seleniumhq.selenium - selenium-bom - 4.14.1 - pom - - org.seleniumhq.selenium:selenium-bom - Selenium automates browsers. That's it! What you do with that power is entirely up to you. - https://selenium.dev/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - https://github.com/SeleniumHQ/selenium/ - scm:git:https://github.com/SeleniumHQ/selenium.git - scm:git:git@github.com:SeleniumHQ/selenium.git - - - - - simon.m.stewart - Simon Stewart - - Owner - - - - barancev - Alexei Barantsev - - Committer - - - - diemol - Diego Molina - - Committer - - - - james.h.evans.jr - Jim Evans - - Committer - - - - theautomatedtester - David Burns - - Committer - - - - titusfortner - Titus Fortner - - Committer - - - - - - - - org.seleniumhq.selenium - selenium-api - 4.14.1 - - - org.seleniumhq.selenium - selenium-chrome-driver - 4.14.1 - - - org.seleniumhq.selenium - selenium-chromium-driver - 4.14.1 - - - org.seleniumhq.selenium - selenium-devtools-v116 - 4.14.1 - - - org.seleniumhq.selenium - selenium-devtools-v117 - 4.14.1 - - - org.seleniumhq.selenium - selenium-devtools-v118 - 4.14.1 - - - org.seleniumhq.selenium - selenium-devtools-v85 - 4.14.1 - - - org.seleniumhq.selenium - selenium-edge-driver - 4.14.1 - - - org.seleniumhq.selenium - selenium-firefox-driver - 4.14.1 - - - org.seleniumhq.selenium - selenium-grid - 4.14.1 - - - org.seleniumhq.selenium - selenium-http - 4.14.1 - - - org.seleniumhq.selenium - selenium-ie-driver - 4.14.1 - - - org.seleniumhq.selenium - selenium-java - 4.14.1 - - - org.seleniumhq.selenium - selenium-json - 4.14.1 - - - org.seleniumhq.selenium - selenium-manager - 4.14.1 - - - org.seleniumhq.selenium - selenium-remote-driver - 4.14.1 - - - org.seleniumhq.selenium - selenium-safari-driver - 4.14.1 - - - org.seleniumhq.selenium - selenium-session-map-jdbc - 4.14.1 - - - org.seleniumhq.selenium - selenium-session-map-redis - 4.14.1 - - - org.seleniumhq.selenium - selenium-support - 4.14.1 - - - - diff --git a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.lastUpdated b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.lastUpdated deleted file mode 100644 index 312cc04b8..000000000 --- a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:39 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.seleniumhq.selenium\:selenium-bom\:pom\:4.14.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139819228 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139819328 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139819757 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139819882 diff --git a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.sha1 b/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.sha1 deleted file mode 100644 index 8e25d09dd..000000000 --- a/code/arachne/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -35233c4c2f5d377698ae2d50c8e1400ff2df34d7 \ No newline at end of file diff --git a/code/arachne/org/semver4j/semver4j/4.3.0/_remote.repositories b/code/arachne/org/semver4j/semver4j/4.3.0/_remote.repositories deleted file mode 100644 index 8b082d54a..000000000 --- a/code/arachne/org/semver4j/semver4j/4.3.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:56 EDT 2024 -semver4j-4.3.0.pom>central= diff --git a/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom b/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom deleted file mode 100644 index 9216413e3..000000000 --- a/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom +++ /dev/null @@ -1,230 +0,0 @@ - - 4.0.0 - - org.semver4j - semver4j - 4.3.0 - jar - - semver4j - Semantic versioning for Java apps. - https://github.com/semver4j/semver4j - - - - The MIT License - https://opensource.org/licenses/MIT - repo - - - - - - Piotr Olaszewski - piotroo89@gmail.com - - - - - GitHub - https://github.com/semver4j/semver4j/issues - - - - scm:git:git@github.com:semver4j/semver4j.git - scm:git:git@github.com:semver4j/semver4j.git - git@github.com:semver4j/semver4j.git - HEAD - - - - 1.8 - 1.8 - - UTF-8 - - - - - org.junit.jupiter - junit-jupiter - 5.9.2 - test - - - org.assertj - assertj-core - 3.24.2 - test - - - org.mockito - mockito-core - 5.1.1 - test - - - - - ${project.artifactId} - - - - maven-surefire-plugin - 2.22.2 - - - maven-compiler-plugin - 3.11.0 - - 8 - 8 - 8 - 8 - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - org.semver4j - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - - attach-javadocs - - jar - - - - - - org.jacoco - jacoco-maven-plugin - 0.8.8 - - - - prepare-agent - - - - report - test - - report - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://s01.oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.2.1 - - config/checkstyle/checkstyle.xml - - - - de.thetaphi - forbiddenapis - 3.4 - - true - - false - - true - - - jdk-unsafe - jdk-deprecated - - jdk-non-portable - - jdk-reflection - - - - - - check - testCheck - - - - - - - - - - ossrh - Nexus Release Repository - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - ossrh - Sonatype Nexus Snapshots - https://s01.oss.sonatype.org/content/repositories/snapshots/ - - - diff --git a/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom.sha1 b/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom.sha1 deleted file mode 100644 index dbd27eb8b..000000000 --- a/code/arachne/org/semver4j/semver4j/4.3.0/semver4j-4.3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -51e9edd70b151d49fadae57f8bd3045b5c7ac958 \ No newline at end of file diff --git a/code/arachne/org/skyscreamer/jsonassert/1.5.1/_remote.repositories b/code/arachne/org/skyscreamer/jsonassert/1.5.1/_remote.repositories deleted file mode 100644 index c73115448..000000000 --- a/code/arachne/org/skyscreamer/jsonassert/1.5.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:10 EDT 2024 -jsonassert-1.5.1.pom>central= diff --git a/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom b/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom deleted file mode 100644 index c6d53ffd7..000000000 --- a/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom +++ /dev/null @@ -1,147 +0,0 @@ - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - org.skyscreamer - jsonassert - 1.5.1 - jar - - JSONassert - A library to develop RESTful but flexible APIs - https://github.com/skyscreamer/JSONassert - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:git@github.com:skyscreamer/JSONassert.git - scm:git:git@github.com:skyscreamer/JSONassert.git - git@github.com:skyscreamer/JSONassert.git - - - - carterpage - Carter Page - carter@skyscreamer.org - - - cepage - Corby Page - corby@skyscreamer.org - - - sduskis - Solomon Duskis - solomon@skyscreamer.org - - - - - - - com.vaadin.external.google - android-json - 0.0.20131108.vaadin1 - - - junit - junit - 4.13.1 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.1 - - 1.6 - 1.6 - - - - org.apache.maven.plugins - maven-site-plugin - 3.3 - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.1 - - - - - - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.3 - - - org.apache.maven.scm - maven-scm-manager-plexus - 1.3 - - - org.kathrynhuxtable.maven.wagon - wagon-gitsite - 0.3.1 - - - - - - - github-project-site - gitsite:git@github.com/skyscreamer/JSONassert.git - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom.sha1 b/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom.sha1 deleted file mode 100644 index 7e26dea07..000000000 --- a/code/arachne/org/skyscreamer/jsonassert/1.5.1/jsonassert-1.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -74dc250fbeda03e4421e22ce85e55576b37844fe \ No newline at end of file diff --git a/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/_remote.repositories b/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/_remote.repositories deleted file mode 100644 index e0f45160e..000000000 --- a/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:15 EDT 2024 -jcl-over-slf4j-2.0.13.pom>central= diff --git a/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom b/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom deleted file mode 100644 index 9f6ddb354..000000000 --- a/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom +++ /dev/null @@ -1,58 +0,0 @@ - - - - - org.slf4j - slf4j-parent - 2.0.13 - ../parent/pom.xml - - - 4.0.0 - - jcl-over-slf4j - jar - JCL 1.2 implemented over SLF4J - JCL 1.2 implemented over SLF4J - http://www.slf4j.org - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - org.apache.commons.logging - - - - - org.slf4j - slf4j-api - - - org.slf4j - slf4j-jdk14 - test - - - - - - - org.apache.felix - maven-bundle-plugin - - - <_exportcontents>org.apache.commons.logging*;version=${jcl.version};-noimport:=true - - - - - - - diff --git a/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom.sha1 b/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom.sha1 deleted file mode 100644 index 6bcbcafc2..000000000 --- a/code/arachne/org/slf4j/jcl-over-slf4j/2.0.13/jcl-over-slf4j-2.0.13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -38847aac3e6cff7b762ff7c8c5f028abd20105ce \ No newline at end of file diff --git a/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/_remote.repositories b/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/_remote.repositories deleted file mode 100644 index 8cdc9f01b..000000000 --- a/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:51 EDT 2024 -jul-to-slf4j-2.0.13.pom>central= diff --git a/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom b/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom deleted file mode 100644 index 5fe756111..000000000 --- a/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - - 4.0.0 - - - org.slf4j - slf4j-parent - 2.0.13 - ../parent/pom.xml - - - jul-to-slf4j - - jar - JUL to SLF4J bridge - JUL to SLF4J bridge - - http://www.slf4j.org - - - - org.slf4j - slf4j-api - - - org.slf4j - slf4j-reload4j - ${project.version} - test - - - - - - - - - diff --git a/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom.sha1 b/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom.sha1 deleted file mode 100644 index 163b1adb8..000000000 --- a/code/arachne/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2ede0aee61cae4efda113e4d4110d61976ad0f4b \ No newline at end of file diff --git a/code/arachne/org/slf4j/slf4j-api/2.0.13/_remote.repositories b/code/arachne/org/slf4j/slf4j-api/2.0.13/_remote.repositories deleted file mode 100644 index e0b341430..000000000 --- a/code/arachne/org/slf4j/slf4j-api/2.0.13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -slf4j-api-2.0.13.pom>central= diff --git a/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom b/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom deleted file mode 100644 index f0c819609..000000000 --- a/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - 4.0.0 - - - org.slf4j - slf4j-parent - 2.0.13 - ../parent/pom.xml - - - slf4j-api - - jar - SLF4J API Module - The slf4j API - - http://www.slf4j.org - - - org.slf4j - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - once - plain - false - - **/AllTest.java - **/PackageTest.java - - - - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - bundle-test-jar - package - - test-jar - - - - - - - org.apache.felix - maven-bundle-plugin - - - org.slf4j.spi;version="${range;[===,+);${version_cleanup;${project.version}}}" - - <_exportcontents> - =1.0.0)(!(version>=2.0.0)))", - osgi.serviceloader;filter:="(osgi.serviceloader=org.slf4j.spi.SLF4JServiceProvider)";osgi.serviceloader="org.slf4j.spi.SLF4JServiceProvider" - ]]> - - - - - - - - - diff --git a/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom.sha1 b/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom.sha1 deleted file mode 100644 index 559b236ad..000000000 --- a/code/arachne/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cfe027e08f55e8e5b45f84cbabb4e74e8cd915ec \ No newline at end of file diff --git a/code/arachne/org/slf4j/slf4j-bom/2.0.13/_remote.repositories b/code/arachne/org/slf4j/slf4j-bom/2.0.13/_remote.repositories deleted file mode 100644 index 22d782e5b..000000000 --- a/code/arachne/org/slf4j/slf4j-bom/2.0.13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -slf4j-bom-2.0.13.pom>central= diff --git a/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom b/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom deleted file mode 100644 index a744d2de7..000000000 --- a/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom +++ /dev/null @@ -1,249 +0,0 @@ - - - - 4.0.0 - - org.slf4j - slf4j-bom - 2.0.13 - pom - - http://www.slf4j.org - - SLF4J BOM - SLF4J project BOM - - - - MIT License - http://www.opensource.org/licenses/mit-license.php - repo - - - - - https://github.com/qos-ch/slf4j - scm:git:https://github.com/qos-ch/slf4j.git - - - - - - - parent - slf4j-api - slf4j-simple - slf4j-nop - slf4j-jdk14 - slf4j-jdk-platform-logging - slf4j-log4j12 - slf4j-reload4j - slf4j-ext - jcl-over-slf4j - log4j-over-slf4j - jul-to-slf4j - osgi-over-slf4j - integration - slf4j-migrator - - - - - - - org.slf4j - slf4j-api - ${project.version} - - - - org.slf4j - slf4j-simple - ${project.version} - - - - org.slf4j - slf4j-nop - ${project.version} - - - - org.slf4j - slf4j-jdk14 - ${project.version} - - - - - org.slf4j - slf4j-jdk-platform-logging - ${project.version} - - - - org.slf4j - slf4j-log4j12 - ${project.version} - - - - org.slf4j - slf4j-reload4j - ${project.version} - - - - org.slf4j - slf4j-ext - ${project.version} - - - - org.slf4j - jcl-over-slf4j - ${project.version} - - - - org.slf4j - log4j-over-slf4j - ${project.version} - - - - org.slf4j - jul-to-slf4j - ${project.version} - - - - org.slf4j - osgi-over-slf4j - ${project.version} - - - - - - - - - - sonatype-nexus-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - ceki - Ceki Gulcu - ceki@qos.ch - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - true - - slf4j-jdk-platform-logging,slf4j-migrator,osgi-over-slf4j - - true - SLF4J project modules ${project.version} - SLF4J javadoc - - true - - -Xdoclint:none - - - - SLF4J API packages - org.slf4j:org.slf4j.spi:org.slf4j.event:org.slf4j.helpers - - - - slf4j-simple package - org.slf4j.simple - - - - slf4j-nop package - org.slf4j.nop - - - - - slf4j-jdk14 package - org.slf4j.jul - - - - - slf4j-reload4j package - org.slf4j.reload4j - - - - - SLF4J extensions - - org.slf4j.cal10n:org.slf4j.profiler:org.slf4j.ext:org.slf4j.instrumentation:org.slf4j.agent - - - - - Jakarta Commons Logging packages - org.apache.commons.* - - - - java.util.logging (JUL) to SLF4J bridge - org.slf4j.bridge - - - - log4j-over-slf4j redirection - org.apache.log4j:org.apache.log4j.* - - - - - - - - - - - - sign-artifacts - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom.sha1 b/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom.sha1 deleted file mode 100644 index dad3b400b..000000000 --- a/code/arachne/org/slf4j/slf4j-bom/2.0.13/slf4j-bom-2.0.13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7154be9a411f51d833e40a654ec8bf738aaa394a \ No newline at end of file diff --git a/code/arachne/org/slf4j/slf4j-parent/2.0.13/_remote.repositories b/code/arachne/org/slf4j/slf4j-parent/2.0.13/_remote.repositories deleted file mode 100644 index 4a03f6cea..000000000 --- a/code/arachne/org/slf4j/slf4j-parent/2.0.13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -slf4j-parent-2.0.13.pom>central= diff --git a/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom b/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom deleted file mode 100644 index 7f8171e9b..000000000 --- a/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom +++ /dev/null @@ -1,397 +0,0 @@ - - - - 4.0.0 - - - org.slf4j - slf4j-bom - 2.0.13 - ../pom.xml - - - slf4j-parent - pom - SLF4J Parent POM - SLF4J project parent pom.xml file - - - - QOS.ch - http://www.qos.ch - - 2005 - - - - - 2024-04-12T14:20:00Z - 1.7.36 - - 8 - ${jdk.version} - ${jdk.version} - UTF-8 - UTF-8 - UTF-8 - - 0.8.1 - 1.2.22 - 1.2.10 - 1.2 - 4.13.1 - 3.7.1 - 3.10.1 - 3.0.0-M7 - 3.6.3 - 3.2.1 - 3.0.0-M1 - 3.2.0 - 3.1.1 - 5.1.9 - - - - - - junit - junit - ${junit.version} - test - - - - - - - - ch.qos.reload4j - reload4j - ${reload4j.version} - - - - ch.qos.cal10n - cal10n-api - ${cal10n.version} - - - - - - - - - org.apache.maven.wagon - wagon-ssh - 2.10 - - - - - - ${project.basedir}/src/main/resources - true - - - - .. - META-INF - - LICENSE.txt - - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.14 - - - org.codehaus.mojo.signature - java16 - 1.0 - - - - - - org.apache.maven.plugins - maven-deploy-plugin - ${maven-deploy-plugin.version} - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - - - default-compile - - compile - - - ${jdk.version} - ${jdk.version} - - - - - module-compile - compile - - compile - - - 9 - - ${project.basedir}/src/main/java9 - - true - - - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - - default-jar - package - - jar - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - - - - - - - org.apache.felix - maven-bundle-plugin - ${maven-bundle-plugin.version} - - true - - - ${replacestring;${project.artifactId};-;.} - SLF4J.ORG - <_snapshot/> - <_exportcontents>!META-INF.versions.9,*;-noimport:=true - ${project.description} - ${project.url} - ${maven.compiler.source} - ${maven.compiler.target} - ${project.version} - ${project.artifactId} - true - <_removeheaders>Private-Package,Bundle-SCM, Bundle-Developers, Include-Resource - - - - - bundle-manifest - process-classes - - manifest - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - 1 - false - plain - false - - **/AllTest.java - **/PackageTest.java - - - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - package - - jar - - - - - - - org.apache.maven.plugins - maven-site-plugin - ${maven-site-plugin.version} - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.0.0 - - - - - - - - skipTests - - true - - - - - javadocjar - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - attach-javadocs - - jar - - - - - -Xdoclint:none - false - - **/module-info.java - - - - - - - - - license - - - - com.google.code.maven-license-plugin - maven-license-plugin - -
    src/main/licenseHeader.txt
    - false - true - true - - src/**/*.java - - true - true - - 1999 - - - src/main/javadocHeaders.xml - -
    -
    -
    -
    - - - -
    - - - - generate-osgi-service-loader-mediator-entries - - - src/main/resources/META-INF/services/org.slf4j.spi.SLF4JServiceProvider - - - - - - - org.apache.felix - maven-bundle-plugin - - - ="org.slf4j.spi.SLF4JServiceProvider";type=${slf4j.provider.type};effective:=active, - osgi.serviceloader;osgi.serviceloader="org.slf4j.spi.SLF4JServiceProvider";register:="${slf4j.provider.implementation}";type=${slf4j.provider.type} - ]]> - =1.0.0)(!(version>=2.0.0)))" - ]]> - - - - - - - - -
    - - -
    diff --git a/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom.sha1 b/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom.sha1 deleted file mode 100644 index a54124b19..000000000 --- a/code/arachne/org/slf4j/slf4j-parent/2.0.13/slf4j-parent-2.0.13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -47cc245b4e806907ef2612563e4c124c15f99a44 \ No newline at end of file diff --git a/code/arachne/org/sonatype/oss/oss-parent/7/_remote.repositories b/code/arachne/org/sonatype/oss/oss-parent/7/_remote.repositories deleted file mode 100644 index b2552c31a..000000000 --- a/code/arachne/org/sonatype/oss/oss-parent/7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:35 EDT 2024 -oss-parent-7.pom>ohdsi= diff --git a/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom b/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom deleted file mode 100644 index 396395255..000000000 --- a/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom +++ /dev/null @@ -1,155 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - pom - - Sonatype OSS Parent - http://nexus.sonatype.org/oss-repository-hosting.html - Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ - - - scm:svn:http://svn.sonatype.org/spice/tags/oss-parent-7 - scm:svn:https://svn.sonatype.org/spice/tags/oss-parent-7 - http://svn.sonatype.org/spice/tags/oss-parent-7 - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0 - - - enforce-maven - - enforce - - - - - (,2.1.0),(2.1.0,2.2.0),(2.2.0,) - Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. - - - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - forked-path - false - -Psonatype-oss-release - - - - - - - - UTF-8 - https://oss.sonatype.org/content/repositories/snapshots/ - - - - - sonatype-oss-release - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.lastUpdated b/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.lastUpdated deleted file mode 100644 index 09b76b275..000000000 --- a/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:35 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.sonatype.oss\:oss-parent\:pom\:7 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139815216 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139815351 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139815496 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139815617 diff --git a/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 b/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 deleted file mode 100644 index 800e2841a..000000000 --- a/code/arachne/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -46b8a785b60a2767095b8611613b58577e96d4c9 \ No newline at end of file diff --git a/code/arachne/org/sonatype/oss/oss-parent/9/_remote.repositories b/code/arachne/org/sonatype/oss/oss-parent/9/_remote.repositories deleted file mode 100644 index 71512a9d4..000000000 --- a/code/arachne/org/sonatype/oss/oss-parent/9/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:45 EDT 2024 -oss-parent-9.pom>central= diff --git a/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom b/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom deleted file mode 100644 index cc10b9821..000000000 --- a/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom +++ /dev/null @@ -1,156 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 9 - pom - - Sonatype OSS Parent - http://nexus.sonatype.org/oss-repository-hosting.html - Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ - - - scm:svn:http://svn.sonatype.org/spice/trunk/oss/oss-parenti-9 - scm:svn:https://svn.sonatype.org/spice/trunk/oss/oss-parent-9 - http://svn.sonatype.org/spice/trunk/oss/oss-parent-9 - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.2 - - - enforce-maven - - enforce - - - - - (,2.1.0),(2.1.0,2.2.0),(2.2.0,) - Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. - - - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - forked-path - false - ${arguments} -Psonatype-oss-release - - - - - - - - UTF-8 - https://oss.sonatype.org/content/repositories/snapshots/ - - - - - - sonatype-oss-release - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 b/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 deleted file mode 100644 index 7e0d2b672..000000000 --- a/code/arachne/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e5cdc4d23b86d79c436f16fed20853284e868f65 \ No newline at end of file diff --git a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/_remote.repositories b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/_remote.repositories deleted file mode 100644 index d2ae48e12..000000000 --- a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:40 EDT 2024 -spring-amqp-bom-3.1.4.pom>ohdsi= diff --git a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom deleted file mode 100644 index 75ceeabd5..000000000 --- a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.amqp - spring-amqp-bom - 3.1.4 - pom - Spring for RabbitMQ (Bill of Materials) - Spring for RabbitMQ (Bill of Materials) - https://github.com/spring-projects/spring-amqp - - Spring IO - https://spring.io/projects/spring-amqp - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - artembilan - Artem Bilan - artem.bilan@broadcom.com - - project lead - - - - garyrussell - Gary Russell - github@gprussell.net - - project lead emeritus - - - - sobychacko - Soby Chacko - soby.chacko@broadcom.com - - contributor - - - - dsyer - Dave Syer - david.syer@broadcom.com - - project founder - - - - markfisher - Mark Fisher - mark.fisher@broadcom.com - - project founder - - - - markpollack - Mark Pollack - mark.pollack@broadcom.com - - project founder - - - - - git://github.com/spring-projects/spring-amqp.git - git@github.com:spring-projects/spring-amqp.git - https://github.com/spring-projects/spring-amqp - - - GitHub - https://jira.spring.io/browse/AMQP - - - - - org.springframework.amqp - spring-amqp - 3.1.4 - - - org.springframework.amqp - spring-rabbit - 3.1.4 - - - org.springframework.amqp - spring-rabbit-junit - 3.1.4 - - - org.springframework.amqp - spring-rabbit-stream - 3.1.4 - - - org.springframework.amqp - spring-rabbit-test - 3.1.4 - - - - diff --git a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.lastUpdated b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.lastUpdated deleted file mode 100644 index 4e6df7e7a..000000000 --- a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:40 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.amqp\:spring-amqp-bom\:pom\:3.1.4 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139819892 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139819992 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139820160 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139820280 diff --git a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.sha1 b/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.sha1 deleted file mode 100644 index 7feb24c96..000000000 --- a/code/arachne/org/springframework/amqp/spring-amqp-bom/3.1.4/spring-amqp-bom-3.1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a2a47c903546b0a5a8f49874013f0d17ce8abed1 \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/_remote.repositories deleted file mode 100644 index 4b92c374e..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:16 EDT 2024 -spring-batch-admin-domain-2.0.0.M1.pom>ohdsi= diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom deleted file mode 100644 index fbabf683f..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom +++ /dev/null @@ -1,97 +0,0 @@ - - - 4.0.0 - spring-batch-admin-domain - jar - - - spring-batch-admin-parent - org.springframework.batch - 2.0.0.M1 - ../spring-batch-admin-parent - - Domain - - - junit - junit - - - org.springframework - spring-test - - - org.springframework - spring-context-support - - - org.springframework - spring-context - - - org.springframework.batch - spring-batch-core - - - org.springframework - spring-aop - - - commons-logging - commons-logging - - - org.slf4j - slf4j-api - runtime - - - org.slf4j - slf4j-log4j12 - runtime - true - - - log4j - log4j - true - - - com.fasterxml.jackson.core - jackson-databind - - - org.springframework.data - spring-data-commons - - - org.springframework.hateoas - spring-hateoas - - - org.springframework - spring-oxm - - - com.jayway.jsonpath - json-path - test - - - joda-time - joda-time - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.6 - 1.6 - - - - - diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.lastUpdated b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.lastUpdated deleted file mode 100644 index 34cada9b1..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:16 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.batch\:spring-batch-admin-domain\:pom\:2.0.0.M1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139856527 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139856532 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139856638 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139856788 -https\://repo1.maven.org/maven2/.lastUpdated=1721139856427 diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.sha1 deleted file mode 100644 index 9a1f84359..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-domain/2.0.0.M1/spring-batch-admin-domain-2.0.0.M1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -80f1bbceb513b8b3f60edd6fd8faa57e2356e2a2 \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/_remote.repositories deleted file mode 100644 index 77a524e41..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:12 EDT 2024 -spring-batch-admin-manager-2.0.0.M1.pom>ohdsi= diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom deleted file mode 100644 index c359c53f2..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom +++ /dev/null @@ -1,221 +0,0 @@ - - - 4.0.0 - spring-batch-admin-manager - jar - - - spring-batch-admin-parent - org.springframework.batch - 2.0.0.M1 - ../spring-batch-admin-parent - - Manager - - - junit - junit - - - javax.servlet - javax.servlet-api - - - org.aspectj - aspectjrt - - - org.aspectj - aspectjweaver - - - org.springframework - spring-test - - - org.springframework - spring-context-support - - - org.springframework - spring-context - - - commons-logging - commons-logging - - - - - org.springframework.batch - spring-batch-test - test - - - org.springframework.batch - spring-batch-core - - - org.springframework - spring-jdbc - - - org.springframework - spring-aop - - - org.springframework - spring-web - true - - - org.springframework - spring-webmvc - true - - - org.springframework.batch - spring-batch-integration - - - org.springframework.integration - spring-integration-core - - - org.springframework.integration - spring-integration-jmx - - - org.springframework.integration - spring-integration-http - - - xerces - xercesImpl - - - - - org.springframework.integration - spring-integration-file - - - commons-dbcp - commons-dbcp - - - commons-io - commons-io - - - commons-lang - commons-lang - - - commons-fileupload - commons-fileupload - - - org.slf4j - jcl-over-slf4j - - - org.slf4j - slf4j-api - runtime - - - org.slf4j - slf4j-log4j12 - runtime - true - - - log4j - log4j - true - - - commons-collections - commons-collections - - - org.hsqldb - hsqldb - test - - - org.apache.derby - derby - test - - - com.h2database - h2 - test - - - mysql - mysql-connector-java - test - - - org.freemarker - freemarker - - - org.springframework.batch - spring-batch-admin-resources - ${project.parent.version} - - - com.fasterxml.jackson.core - jackson-databind - - - org.mockito - mockito-all - test - - - org.springframework.data - spring-data-commons - - - org.springframework.hateoas - spring-hateoas - - - org.springframework.plugin - spring-plugin-core - - - org.springframework - spring-oxm - - - com.jayway.jsonpath - json-path - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.6 - 1.6 - - - - org.mortbay.jetty - maven-jetty-plugin - - /steps - - - - - diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.lastUpdated b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.lastUpdated deleted file mode 100644 index cb4962487..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:12 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.batch\:spring-batch-admin-manager\:pom\:2.0.0.M1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139852624 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139852633 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139852807 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139852942 -https\://repo1.maven.org/maven2/.lastUpdated=1721139852486 diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.sha1 deleted file mode 100644 index 820abfb76..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-manager/2.0.0.M1/spring-batch-admin-manager-2.0.0.M1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -74e0e41abd560d4810607158d9af469fb7647135 \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/_remote.repositories deleted file mode 100644 index 7fb3b554b..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:13 EDT 2024 -spring-batch-admin-parent-2.0.0.M1.pom>ohdsi= diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom deleted file mode 100644 index fcd9d1a48..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom +++ /dev/null @@ -1,656 +0,0 @@ - - - 4.0.0 - org.springframework.batch - spring-batch-admin-parent - 2.0.0.M1 - Spring Batch Admin Parent - A set of services (Java, JSON) and a UI (webapp) for managing and launching Spring Batch jobs. - http://docs.spring.io/spring-batch-admin - pom - - http://github.com/spring-projects/spring-batch-admin - scm:git:git://github.com/spring-projects/spring-batch-admin.git - scm:git:git://github.com/spring-projects/spring-batch-admin.git - 2.0.0.M1 - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - dsyer - Dave Syer - dsyer@vmware.com - - - mminella - Michael Minella - mminella@vmware.com - - - cschaefer - Chris Schaefer - cschaefer@gopivotal.com - - - - false - 3.0.3.RELEASE - 4.1.2.RELEASE - 4.1.2.RELEASE - 1.1.0.RELEASE - 1.9.1.RELEASE - 0.16.0.RELEASE - 1.7.7 - - - - strict - - false - - - - fast - - true - true - - - - staging - - - staging - file:///${user.dir}/target/staging - - - staging - file:///${user.dir}/target/staging - - - staging - file:///${user.dir}/target/staging - - - - - central - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - dist - - - - maven-javadoc-plugin - - - javadoc - package - - jar - - - - - - maven-source-plugin - - - attach-sources - - jar - - - - - - - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.apache.maven.plugins - maven-antrun-plugin - [1.0,) - - run - - - - - - - - - - - - maven-site-plugin - 2.0 - - - org.apache.maven.doxia - doxia-module-confluence - 1.0 - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - org.apache.ant - ant - 1.7.0 - - - org.apache.ant - ant-trax - 1.7.0 - - - org.apache.ant - ant-apache-regexp - 1.7.0 - - - foundrylogic.vpp - vpp - 2.2.1 - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.6 - 1.6 - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Tests.java - - - **/Abstract*.java - - junit:junit - - - - - - - - maven-jxr-plugin - - true - - - - maven-surefire-report-plugin - - true - - - - maven-project-info-reports-plugin - 2.1 - - - maven-javadoc-plugin - - true - - - - - javadoc - - - - - - - - - - org.aspectj - aspectjrt - 1.8.2 - - - org.aspectj - aspectjweaver - 1.8.2 - runtime - - - junit - junit - 4.11 - test - - - com.fasterxml.jackson.core - jackson-databind - 2.4.2 - compile - - - org.hibernate - hibernate-core - 4.3.6.Final - - - cglib - cglib - - - asm - asm - - - asm - asm-attrs - - - javax.transaction - jta - - - - - org.hibernate - hibernate-entitymanager - 4.3.6.Final - - - edu.oswego.cs.concurrent - edu.oswego.cs.dl.util.concurrent - - - - - org.hibernate - hibernate-annotations - 4.3.6.Final - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - runtime - - - org.slf4j - slf4j-log4j12 - ${slf4j.version} - runtime - - - commons-lang - commons-lang - 2.6 - - - commons-logging - commons-logging - 1.2 - - - commons-io - commons-io - 2.4 - - - commons-collections - commons-collections - 3.2.1 - - - commons-dbcp - commons-dbcp - runtime - 1.4 - - - commons-fileupload - commons-fileupload - runtime - 1.3.1 - - - log4j - log4j - 1.2.17 - runtime - - - com.h2database - h2 - 1.3.176 - test - - - org.hsqldb - hsqldb - 2.3.2 - runtime - - - mysql - mysql-connector-java - 5.1.32 - runtime - - - org.apache.derby - derby - 10.10.2.0 - test - - - com.thoughtworks.xstream - xstream - 1.4.7 - - - org.codehaus.jettison - jettison - 1.2 - runtime - - - javax.servlet - javax.servlet-api - 3.0.1 - provided - - - org.freemarker - freemarker - 2.3.20 - - - javax.servlet - jstl - 1.2 - - - org.springframework.security - spring-security-taglibs - 3.2.5.RELEASE - - - org.springframework - spring-support - - - - - org.springframework.batch - spring-batch-infrastructure - ${spring.batch.version} - - - org.springframework.batch - spring-batch-integration - ${spring.batch.version} - - - org.springframework.batch - spring-batch-core - ${spring.batch.version} - - - org.springframework.batch - spring-batch-test - ${spring.batch.version} - - - org.springframework - spring-aop - ${spring.framework.version} - - - org.springframework - spring-beans - ${spring.framework.version} - - - org.springframework - spring-context - ${spring.framework.version} - - - commons-logging - commons-logging - - - - - org.springframework - spring-context-support - ${spring.framework.version} - - - quartz - quartz - - - javax.transaction - jta - - - - - org.springframework - spring-core - ${spring.framework.version} - - - commons-logging - commons-logging - - - - - org.springframework - spring-expression - ${spring.framework.version} - - - org.springframework - spring-jdbc - ${spring.framework.version} - - - org.springframework - spring-jms - ${spring.framework.version} - - - org.springframework - spring-orm - ${spring.framework.version} - - - org.springframework - spring-test - ${spring.framework.version} - test - - - org.springframework - spring-tx - ${spring.framework.version} - - - org.springframework - spring-oxm - ${spring.framework.version} - - - org.springframework - spring-web - ${spring.framework.version} - - - org.springframework - spring-webmvc - ${spring.framework.version} - - - org.springframework.integration - spring-integration-core - ${spring.integration.version} - compile - - - org.springframework.integration - spring-integration-jmx - ${spring.integration.version} - runtime - - - org.springframework.integration - spring-integration-http - ${spring.integration.version} - compile - - - org.springframework.integration - spring-integration-file - ${spring.integration.version} - compile - - - org.springframework.integration - spring-integration-jms - ${spring.integration.version} - compile - - - org.springframework.data - spring-data-commons - ${spring.data.version} - - - org.springframework.hateoas - spring-hateoas - ${spring.hateoas.version} - - - org.springframework.plugin - spring-plugin-core - 1.1.0.RELEASE - - - org.springframework - spring-oxm - ${spring.framework.version} - - - org.codehaus.castor - castor-xml - 1.3.3 - - - org.mockito - mockito-all - 1.9.5 - test - - - joda-time - joda-time - 2.5 - - - com.jayway.jsonpath - json-path - 1.2.0 - - - - - - static.springframework.org - scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-batch-admin/trunk - - - spring-release - Spring Release Repository - s3://maven.springframework.org/release - - - spring-snapshot - Spring Snapshot Repository - s3://maven.springframework.org/snapshot - - - - diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.lastUpdated b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.lastUpdated deleted file mode 100644 index 128d2fa18..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:13 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.batch\:spring-batch-admin-parent\:pom\:2.0.0.M1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139853165 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139853171 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139853321 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139853492 -https\://repo1.maven.org/maven2/.lastUpdated=1721139853064 diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.sha1 deleted file mode 100644 index 175552fc0..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-parent/2.0.0.M1/spring-batch-admin-parent-2.0.0.M1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cb4b8e40dd4cf6d33c91b1fe61e17d11d0c0ab0e \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/_remote.repositories deleted file mode 100644 index 72172397d..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:16 EDT 2024 -spring-batch-admin-resources-2.0.0.M1.pom>ohdsi= diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom deleted file mode 100644 index 8fa63d3e6..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom +++ /dev/null @@ -1,125 +0,0 @@ - - - 4.0.0 - Extensible UI framework and basic styles and layout for Spring Batch Admin console. - - org.springframework.batch - spring-batch-admin-parent - 2.0.0.M1 - ../spring-batch-admin-parent - - spring-batch-admin-resources - jar - Resources - - - junit - junit - - - javax.servlet - javax.servlet-api - true - - - org.freemarker - freemarker - true - - - org.springframework - spring-test - - - org.springframework - spring-aop - - - org.springframework - spring-web - true - - - org.springframework - spring-webmvc - true - - - commons-dbcp - commons-dbcp - - - log4j - log4j - true - - - org.slf4j - jcl-over-slf4j - - - org.slf4j - slf4j-api - - - org.slf4j - slf4j-log4j12 - - - commons-io - commons-io - - - commons-collections - commons-collections - - - javax.servlet - jstl - true - - - org.springframework - spring-context-support - - - org.springframework.security - spring-security-taglibs - true - - - org.springframework.data - spring-data-commons - - - org.springframework.hateoas - spring-hateoas - - - com.fasterxml.jackson.core - jackson-databind - - - org.mockito - mockito-all - test - - - org.springframework.batch - spring-batch-admin-domain - ${project.parent.version} - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.6 - 1.6 - - - - - diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.lastUpdated b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.lastUpdated deleted file mode 100644 index 7b1f5ed73..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.lastUpdated +++ /dev/null @@ -1,11 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:16 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.batch\:spring-batch-admin-resources\:pom\:2.0.0.M1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -https\://repo1.maven.org/maven2/.error= -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139855918 -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139855926 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139856064 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139856217 -https\://repo1.maven.org/maven2/.lastUpdated=1721139855817 diff --git a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.sha1 deleted file mode 100644 index 2d0343295..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-admin-resources/2.0.0.M1/spring-batch-admin-resources-2.0.0.M1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7216e7ff3ed181251fbad87d6c7cd8e89901ca7e \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/_remote.repositories deleted file mode 100644 index 7c389776d..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:40 EDT 2024 -spring-batch-bom-5.1.1.pom>ohdsi= diff --git a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom deleted file mode 100644 index 1a5802e62..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - 4.0.0 - org.springframework.batch - spring-batch-bom - 5.1.1 - pom - Spring Batch BOM - Bill of materials for Spring Batch modules - https://projects.spring.io/spring-batch - - Spring - https://spring.io - - - - Apache 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - dsyer - Dave Syer - dsyer@vmware.com - - - nebhale - Ben Hale - bhale@vmware.com - - - lward - Lucas Ward - - - robokaso - Robert Kasanicky - robokaso@gmail.com - - - trisberg - Thomas Risberg - trisberg@vmware.com - - - dhgarrette - Dan Garrette - dhgarrette@gmail.com - - - mminella - Michael Minella - mminella@vmware.com - - Project Lead - - - - chrisjs - Chris Schaefer - cschaefer@vmware.com - - - fmbenhassine - Mahmoud Ben Hassine - mbenhassine@vmware.com - - Project Lead - - - - - git://github.com/spring-projects/spring-batch.git - git@github.com:spring-projects/spring-batch.git - https://github.com/spring-projects/spring-batch - - - - - org.springframework.batch - spring-batch-core - 5.1.1 - - - org.springframework.batch - spring-batch-infrastructure - 5.1.1 - - - org.springframework.batch - spring-batch-integration - 5.1.1 - - - org.springframework.batch - spring-batch-test - 5.1.1 - - - - diff --git a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.lastUpdated b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.lastUpdated deleted file mode 100644 index 6c018ce58..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.lastUpdated +++ /dev/null @@ -1,9 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:40 EDT 2024 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.error= -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.batch\:spring-batch-bom\:pom\:5.1.1 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139820289 -https\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1721139820396 -https\://repo.fusesource.com/nexus/content/groups/public/.error= -https\://repo.fusesource.com/nexus/content/groups/public/.lastUpdated=1721139820526 -https\://repo.ohdsi.org/nexus/content/groups/public/.lastUpdated=1721139820657 diff --git a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.sha1 deleted file mode 100644 index 69ec67ba4..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6ed9e5db22ab303d242e6fef8010ea7db2541f17 \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/_remote.repositories deleted file mode 100644 index cbf4f52cc..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:53 EDT 2024 -spring-batch-core-5.1.1.pom>central= diff --git a/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom b/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom deleted file mode 100644 index f5ac366cb..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom +++ /dev/null @@ -1,170 +0,0 @@ - - - 4.0.0 - org.springframework.batch - spring-batch-core - 5.1.1 - Spring Batch Core - Core domain for batch processing, expressing a domain of Jobs, Steps, Chunks, etc - https://projects.spring.io/spring-batch - - Spring - https://spring.io - - - - Apache 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - dsyer - Dave Syer - dsyer@vmware.com - - - nebhale - Ben Hale - bhale@vmware.com - - - lward - Lucas Ward - - - robokaso - Robert Kasanicky - robokaso@gmail.com - - - trisberg - Thomas Risberg - trisberg@vmware.com - - - dhgarrette - Dan Garrette - dhgarrette@gmail.com - - - mminella - Michael Minella - mminella@vmware.com - - Project Lead - - - - chrisjs - Chris Schaefer - cschaefer@vmware.com - - - fmbenhassine - Mahmoud Ben Hassine - mbenhassine@vmware.com - - Project Lead - - - - - git://github.com/spring-projects/spring-batch.git - git@github.com:spring-projects/spring-batch.git - https://github.com/spring-projects/spring-batch - - - - org.springframework.batch - spring-batch-infrastructure - 5.1.1 - compile - - - org.springframework - spring-aop - 6.1.4 - compile - - - org.springframework - spring-beans - 6.1.4 - compile - - - org.springframework - spring-context - 6.1.4 - compile - - - org.springframework - spring-tx - 6.1.4 - compile - - - org.springframework - spring-jdbc - 6.1.4 - compile - - - io.micrometer - micrometer-core - 1.12.3 - compile - - - io.micrometer - micrometer-observation - 1.12.3 - compile - - - com.fasterxml.jackson.core - jackson-databind - 2.15.4 - compile - true - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - 2.15.4 - compile - true - - - jakarta.annotation - jakarta.annotation-api - 2.1.1 - compile - true - - - org.aspectj - aspectjrt - 1.9.21.1 - compile - true - - - org.aspectj - aspectjweaver - 1.9.21.1 - compile - true - - - com.google.code.findbugs - jsr305 - 3.0.2 - provided - - - diff --git a/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom.sha1 deleted file mode 100644 index c1c27a134..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-core/5.1.1/spring-batch-core-5.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -68941a8a8e267ed73cfd3a825476b4ef80f96e37 \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/_remote.repositories deleted file mode 100644 index 1b7af506b..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:53 EDT 2024 -spring-batch-infrastructure-5.1.1.pom>central= diff --git a/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom b/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom deleted file mode 100644 index 570d1c436..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom +++ /dev/null @@ -1,312 +0,0 @@ - - - 4.0.0 - org.springframework.batch - spring-batch-infrastructure - 5.1.1 - Spring Batch Infrastructure - The Spring Batch Infrastructure is a set of - low-level components, interfaces and tools for batch processing - applications and optimisations - https://projects.spring.io/spring-batch - - Spring - https://spring.io - - - - Apache 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - dsyer - Dave Syer - dsyer@vmware.com - - - nebhale - Ben Hale - bhale@vmware.com - - - lward - Lucas Ward - - - robokaso - Robert Kasanicky - robokaso@gmail.com - - - trisberg - Thomas Risberg - trisberg@vmware.com - - - dhgarrette - Dan Garrette - dhgarrette@gmail.com - - - mminella - Michael Minella - mminella@vmware.com - - Project Lead - - - - chrisjs - Chris Schaefer - cschaefer@vmware.com - - - fmbenhassine - Mahmoud Ben Hassine - mbenhassine@vmware.com - - Project Lead - - - - - git://github.com/spring-projects/spring-batch.git - git@github.com:spring-projects/spring-batch.git - https://github.com/spring-projects/spring-batch - - - - org.springframework - spring-core - 6.1.4 - compile - - - org.springframework.retry - spring-retry - 2.0.5 - compile - - - org.springframework - spring-context-support - 6.1.4 - compile - true - - - org.springframework - spring-jdbc - 6.1.4 - compile - true - - - org.springframework - spring-orm - 6.1.4 - compile - true - - - org.springframework - spring-oxm - 6.1.4 - compile - true - - - org.springframework - spring-jms - 6.1.4 - compile - true - - - org.neo4j - neo4j-ogm-core - 4.0.9 - compile - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - - - true - - - org.springframework.kafka - spring-kafka - 3.1.2 - compile - true - - - org.springframework.amqp - spring-amqp - 3.1.2 - compile - true - - - org.apache.avro - avro - 1.11.3 - compile - - - com.fasterxml.jackson.core - jackson-core - - - org.slf4j - slf4j-api - - - true - - - com.google.code.gson - gson - 2.10.1 - compile - true - - - com.fasterxml.jackson.core - jackson-databind - 2.15.4 - compile - true - - - org.hibernate.orm - hibernate-core - 6.3.2.Final - compile - true - - - jakarta.mail - jakarta.mail-api - 2.1.2 - compile - true - - - jakarta.jms - jakarta.jms-api - 3.1.0 - compile - true - - - jakarta.persistence - jakarta.persistence-api - 3.1.0 - compile - true - - - org.springframework.data - spring-data-commons - 3.2.3 - compile - - - org.slf4j - slf4j-api - - - true - - - org.springframework.data - spring-data-mongodb - 4.2.3 - compile - - - org.slf4j - slf4j-api - - - true - - - org.springframework.data - spring-data-jpa - 3.2.3 - compile - - - org.slf4j - slf4j-api - - - true - - - org.springframework.data - spring-data-redis - 3.2.3 - compile - - - org.slf4j - slf4j-api - - - true - - - org.mongodb - mongodb-driver-sync - 4.11.1 - compile - true - - - org.springframework.ldap - spring-ldap-core - 3.2.2 - compile - - - org.slf4j - slf4j-api - - - true - - - org.springframework.ldap - spring-ldap-ldif-core - 3.2.2 - compile - true - - - jakarta.validation - jakarta.validation-api - 3.0.2 - compile - true - - - com.google.code.findbugs - jsr305 - 3.0.2 - provided - - - diff --git a/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom.sha1 deleted file mode 100644 index 08685afd7..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-infrastructure/5.1.1/spring-batch-infrastructure-5.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ae574bd86acd0bfb1015552ef3e167b0e185694e \ No newline at end of file diff --git a/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/_remote.repositories b/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/_remote.repositories deleted file mode 100644 index aa2466fd6..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:13 EDT 2024 -spring-batch-integration-5.1.1.pom>central= diff --git a/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom b/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom deleted file mode 100644 index 27d981b9e..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom +++ /dev/null @@ -1,133 +0,0 @@ - - - 4.0.0 - org.springframework.batch - spring-batch-integration - 5.1.1 - Spring Batch Integration - Implementation of Spring Batch scaling techniques with Spring integration - https://projects.spring.io/spring-batch - - Spring - https://spring.io - - - - Apache 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - dsyer - Dave Syer - dsyer@vmware.com - - - nebhale - Ben Hale - bhale@vmware.com - - - lward - Lucas Ward - - - robokaso - Robert Kasanicky - robokaso@gmail.com - - - trisberg - Thomas Risberg - trisberg@vmware.com - - - dhgarrette - Dan Garrette - dhgarrette@gmail.com - - - mminella - Michael Minella - mminella@vmware.com - - Project Lead - - - - chrisjs - Chris Schaefer - cschaefer@vmware.com - - - fmbenhassine - Mahmoud Ben Hassine - mbenhassine@vmware.com - - Project Lead - - - - - git://github.com/spring-projects/spring-batch.git - git@github.com:spring-projects/spring-batch.git - https://github.com/spring-projects/spring-batch - - - - org.springframework.batch - spring-batch-core - 5.1.1 - compile - - - org.springframework.integration - spring-integration-core - 6.2.2 - compile - - - org.springframework - spring-messaging - 6.1.4 - compile - - - org.springframework - spring-jms - 6.1.4 - compile - true - - - org.springframework.integration - spring-integration-jms - 6.2.2 - compile - true - - - org.springframework.integration - spring-integration-jdbc - 6.2.2 - compile - true - - - jakarta.jms - jakarta.jms-api - 3.1.0 - compile - true - - - com.google.code.findbugs - jsr305 - 3.0.2 - provided - - - diff --git a/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom.sha1 b/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom.sha1 deleted file mode 100644 index e724dc0d5..000000000 --- a/code/arachne/org/springframework/batch/spring-batch-integration/5.1.1/spring-batch-integration-5.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4af139771f5d0714db1025d75f6e37f94d79f8e4 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/_remote.repositories deleted file mode 100644 index f250d7af4..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:48 EDT 2024 -spring-boot-autoconfigure-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom deleted file mode 100644 index 8da1387cd..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-autoconfigure - 3.2.5 - spring-boot-autoconfigure - Spring Boot AutoConfigure - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - - org.springframework.boot - spring-boot - 3.2.5 - compile - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom.sha1 deleted file mode 100644 index e2aee8348..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -53b2f4cd54c38eb0f379d7ee14d830c9d8a6fee6 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/_remote.repositories deleted file mode 100644 index a3f696f62..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:25:13 EDT 2024 -spring-boot-configuration-processor-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom deleted file mode 100644 index 5ec00af4b..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-configuration-processor - 3.2.5 - spring-boot-configuration-processor - Spring Boot Configuration Annotation Processor - https://spring.io/projects/spring-boot - - VMware, Inc. - https://spring.io - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - diff --git a/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom.sha1 deleted file mode 100644 index 71c814739..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-configuration-processor/3.2.5/spring-boot-configuration-processor-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -90c256e79f96db476430d65b1f329259dd3bdd68 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/_remote.repositories deleted file mode 100644 index f1bcd9c39..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:24:45 EDT 2024 -spring-boot-dependencies-2.3.0.RELEASE.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom b/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom deleted file mode 100644 index 5b989af9a..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom +++ /dev/null @@ -1,3248 +0,0 @@ - - - 4.0.0 - org.springframework.boot - spring-boot-dependencies - 2.3.0.RELEASE - pom - spring-boot-dependencies - Spring Boot Dependencies - https://spring.io/projects/spring-boot - - Pivotal Software, Inc. - https://spring.io - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - Pivotal - info@pivotal.io - Pivotal Software, Inc. - https://www.spring.io - - - - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - https://github.com/spring-projects/spring-boot - - - GitHub - https://github.com/spring-projects/spring-boot/issues - - - 5.15.12 - 2.7.7 - 1.9.80 - 2.12.0 - 1.9.5 - 3.16.1 - 4.0.6 - 4.0.2 - 2.1.4 - 3.1.0 - 1.10.10 - 2.8.2 - 4.6.1 - 1.5.1 - 1.14 - 2.7.0 - 3.10 - 1.6 - 2.8.0 - 3.0.4 - 11.5.0.0 - 1.0.9.RELEASE - 10.14.2.0 - 4.1.7 - 2.10.6 - 3.8.1 - 7.6.2 - 2.2.0 - 1.6.0 - 1.2.2 - 6.4.1 - 2.3.30 - 3.0.1 - 3.0.3 - 2.3.3 - 2.5.11 - 2.8.6 - 1.4.200 - 2.2 - 3.12.7 - 1.3.2 - 5.4.15.Final - 6.1.5.Final - 3.4.5 - 2.5.0 - 2.40.0 - 4.1.4 - 4.5.12 - 4.4.13 - 10.1.8.Final - 2.18 - 2.11.0 - 1.2.2 - 1.3.5 - 2.0.3 - 1.1.6 - 1.0.2 - 1.6.5 - 2.2.3 - 4.0.3 - 1.2.7 - 1.3.3 - 2.0.2 - 1.1.2 - 2.1.6 - 2.3.3 - 1.4.2 - 2.3.3 - 3.1.2 - 1.2.0 - 1.3.2 - 1.1.1 - 2.3.1 - 2.3.1 - 2.0.1 - 1.1.4 - 1.0 - 1.6.2 - 1.0.3 - 2.2 - 1.3 - 2.0.1.Final - 1.1 - 1.2.0 - 3.0.8 - 3.4.1.Final - 7.6.0.Final - 2.0.6 - 3.3.0 - 2.30.1 - 8.5.54 - 2.2.0.v201112011158 - 1.1.2 - 9.4.28.v20200408 - 1.15 - 1.2.5 - 1.6.2 - 3.13.2 - 2.4.0 - 1.5.0 - 1.2 - 1.3.1 - 4.13 - 5.6.2 - 2.5.0 - 1.3.72 - 1.3.6 - 5.3.0.RELEASE - 3.8.9 - 2.13.2 - 1.2.3 - 1.18.12 - 2.6.0 - 1.8 - 3.3.0 - 3.1.0 - 3.8.1 - 3.1.2 - 2.8.2 - 3.0.0-M3 - 2.22.2 - 3.2.0 - 2.5.2 - 3.2.1 - 3.2.0 - 3.2.0 - 3.1.0 - 3.2.2 - 3.2.1 - 2.22.2 - 3.2.3 - 1.5.1 - 1.9.13 - 3.3.3 - 4.0.3 - 7.4.1.jre8 - 8.0.20 - 1.9.22 - 3.2.11 - 4.1.49.Final - 2.0.30.Final - 1.1.0 - 7.1.1 - 19.3.0.0 - 3.14.8 - 1.1.1 - 42.2.12 - 0.9.0 - 2.3.2 - 4.3.1 - Arabba-SR3 - 5.9.0 - 1.0.3 - Dysprosium-SR7 - 3.3.0 - 1.0.0 - 1.3.8 - 1.2.1 - 2.2.19 - 2.3.0.RELEASE - 1.5.2 - 3.141.59 - 2.40.0 - 4.4.8 - 4.0.1 - 1.7.30 - 1.26 - 8.5.1 - 2.2.6.RELEASE - 4.2.2.RELEASE - Neumann-RELEASE - 5.2.6.RELEASE - 1.1.0.RELEASE - 5.3.0.RELEASE - 2.5.0.RELEASE - 2.3.3.RELEASE - 2.0.4.RELEASE - 1.2.5.RELEASE - 5.3.2.RELEASE - Dragonfruit-RELEASE - 3.0.9.RELEASE - 3.31.1 - 1.6.5 - 3.0.11.RELEASE - 2.0.1 - 3.0.4.RELEASE - 3.0.4.RELEASE - 2.4.1 - 9.0.35 - 4.0.14 - 2.1.0.Final - 2.7 - 3325375 - 0.45 - 1.6.3 - 1.0.2 - 2.7.0 - - - - - org.apache.activemq - activemq-amqp - ${activemq.version} - - - org.apache.activemq - activemq-blueprint - ${activemq.version} - - - org.apache.activemq - activemq-broker - ${activemq.version} - - - org.apache.activemq - activemq-camel - ${activemq.version} - - - org.apache.activemq - activemq-client - ${activemq.version} - - - org.apache.activemq - activemq-console - ${activemq.version} - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-http - ${activemq.version} - - - org.apache.activemq - activemq-jaas - ${activemq.version} - - - org.apache.activemq - activemq-jdbc-store - ${activemq.version} - - - org.apache.activemq - activemq-jms-pool - ${activemq.version} - - - org.apache.activemq - activemq-kahadb-store - ${activemq.version} - - - org.apache.activemq - activemq-karaf - ${activemq.version} - - - org.apache.activemq - activemq-leveldb-store - ${activemq.version} - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-log4j-appender - ${activemq.version} - - - org.apache.activemq - activemq-mqtt - ${activemq.version} - - - org.apache.activemq - activemq-openwire-generator - ${activemq.version} - - - org.apache.activemq - activemq-openwire-legacy - ${activemq.version} - - - org.apache.activemq - activemq-osgi - ${activemq.version} - - - org.apache.activemq - activemq-partition - ${activemq.version} - - - org.apache.activemq - activemq-pool - ${activemq.version} - - - org.apache.activemq - activemq-ra - ${activemq.version} - - - org.apache.activemq - activemq-run - ${activemq.version} - - - org.apache.activemq - activemq-runtime-config - ${activemq.version} - - - org.apache.activemq - activemq-shiro - ${activemq.version} - - - org.apache.activemq - activemq-spring - ${activemq.version} - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-stomp - ${activemq.version} - - - org.apache.activemq - activemq-web - ${activemq.version} - - - antlr - antlr - ${antlr2.version} - - - com.google.appengine - appengine-api-1.0-sdk - ${appengine-sdk.version} - - - org.apache.activemq - artemis-amqp-protocol - ${artemis.version} - - - org.apache.activemq - artemis-commons - ${artemis.version} - - - commons-logging - commons-logging - - - - - org.apache.activemq - artemis-core-client - ${artemis.version} - - - org.apache.geronimo.specs - geronimo-json_1.0_spec - - - - - org.apache.activemq - artemis-jms-client - ${artemis.version} - - - org.apache.geronimo.specs - geronimo-json_1.0_spec - - - - - org.apache.activemq - artemis-jms-server - ${artemis.version} - - - org.apache.geronimo.specs - geronimo-json_1.0_spec - - - - - org.apache.activemq - artemis-journal - ${artemis.version} - - - org.apache.activemq - artemis-selector - ${artemis.version} - - - org.apache.activemq - artemis-server - ${artemis.version} - - - commons-logging - commons-logging - - - org.apache.geronimo.specs - geronimo-json_1.0_spec - - - - - org.apache.activemq - artemis-service-extensions - ${artemis.version} - - - org.aspectj - aspectjrt - ${aspectj.version} - - - org.aspectj - aspectjtools - ${aspectj.version} - - - org.aspectj - aspectjweaver - ${aspectj.version} - - - org.assertj - assertj-core - ${assertj.version} - - - com.atomikos - transactions-jdbc - ${atomikos.version} - - - com.atomikos - transactions-jms - ${atomikos.version} - - - com.atomikos - transactions-jta - ${atomikos.version} - - - org.awaitility - awaitility - ${awaitility.version} - - - org.awaitility - awaitility-groovy - ${awaitility.version} - - - org.awaitility - awaitility-kotlin - ${awaitility.version} - - - org.awaitility - awaitility-scala - ${awaitility.version} - - - org.codehaus.btm - btm - ${bitronix.version} - - - net.bytebuddy - byte-buddy - ${byte-buddy.version} - - - net.bytebuddy - byte-buddy-agent - ${byte-buddy.version} - - - com.github.ben-manes.caffeine - caffeine - ${caffeine.version} - - - com.github.ben-manes.caffeine - guava - ${caffeine.version} - - - com.github.ben-manes.caffeine - jcache - ${caffeine.version} - - - com.github.ben-manes.caffeine - simulator - ${caffeine.version} - - - com.datastax.oss - java-driver-core - ${cassandra-driver.version} - - - org.slf4j - jcl-over-slf4j - - - - - com.fasterxml - classmate - ${classmate.version} - - - commons-codec - commons-codec - ${commons-codec.version} - - - org.apache.commons - commons-dbcp2 - ${commons-dbcp2.version} - - - commons-logging - commons-logging - - - - - org.apache.commons - commons-lang3 - ${commons-lang3.version} - - - commons-pool - commons-pool - ${commons-pool.version} - - - org.apache.commons - commons-pool2 - ${commons-pool2.version} - - - com.couchbase.client - java-client - ${couchbase-client.version} - - - com.ibm.db2 - jcc - ${db2-jdbc.version} - - - io.spring.gradle - dependency-management-plugin - ${dependency-management-plugin.version} - - - org.apache.derby - derby - ${derby.version} - - - org.apache.derby - derbyclient - ${derby.version} - - - net.sf.ehcache - ehcache - ${ehcache.version} - - - org.ehcache - ehcache - ${ehcache3.version} - - - org.ehcache - ehcache-clustered - ${ehcache3.version} - - - org.ehcache - ehcache-transactions - ${ehcache3.version} - - - org.elasticsearch - elasticsearch - ${elasticsearch.version} - - - org.elasticsearch.client - transport - ${elasticsearch.version} - - - org.elasticsearch.client - elasticsearch-rest-client - ${elasticsearch.version} - - - commons-logging - commons-logging - - - - - org.elasticsearch.client - elasticsearch-rest-high-level-client - ${elasticsearch.version} - - - org.elasticsearch.distribution.integ-test-zip - elasticsearch - ${elasticsearch.version} - - - org.elasticsearch.plugin - transport-netty4-client - ${elasticsearch.version} - - - de.flapdoodle.embed - de.flapdoodle.embed.mongo - ${embedded-mongo.version} - - - org.flywaydb - flyway-core - ${flyway.version} - - - org.freemarker - freemarker - ${freemarker.version} - - - org.glassfish - jakarta.el - ${glassfish-el.version} - - - org.glassfish.jaxb - codemodel - ${glassfish-jaxb.version} - - - org.glassfish.jaxb - codemodel-annotation-compiler - ${glassfish-jaxb.version} - - - org.glassfish.jaxb - jaxb-jxc - ${glassfish-jaxb.version} - - - org.glassfish.jaxb - jaxb-runtime - ${glassfish-jaxb.version} - - - org.glassfish.jaxb - jaxb-xjc - ${glassfish-jaxb.version} - - - org.glassfish.jaxb - txw2 - ${glassfish-jaxb.version} - - - org.glassfish.jaxb - txwc2 - ${glassfish-jaxb.version} - - - org.glassfish.jaxb - xsom - ${glassfish-jaxb.version} - - - org.codehaus.groovy - groovy - ${groovy.version} - - - org.codehaus.groovy - groovy-ant - ${groovy.version} - - - org.codehaus.groovy - groovy-backports-compat23 - ${groovy.version} - - - org.codehaus.groovy - groovy-bsf - ${groovy.version} - - - org.codehaus.groovy - groovy-cli-commons - ${groovy.version} - - - org.codehaus.groovy - groovy-cli-picocli - ${groovy.version} - - - org.codehaus.groovy - groovy-console - ${groovy.version} - - - org.codehaus.groovy - groovy-datetime - ${groovy.version} - - - org.codehaus.groovy - groovy-dateutil - ${groovy.version} - - - org.codehaus.groovy - groovy-docgenerator - ${groovy.version} - - - org.codehaus.groovy - groovy-groovydoc - ${groovy.version} - - - org.codehaus.groovy - groovy-groovysh - ${groovy.version} - - - org.codehaus.groovy - groovy-jaxb - ${groovy.version} - - - org.codehaus.groovy - groovy-jmx - ${groovy.version} - - - org.codehaus.groovy - groovy-json - ${groovy.version} - - - org.codehaus.groovy - groovy-json-direct - ${groovy.version} - - - org.codehaus.groovy - groovy-jsr223 - ${groovy.version} - - - org.codehaus.groovy - groovy-macro - ${groovy.version} - - - org.codehaus.groovy - groovy-nio - ${groovy.version} - - - org.codehaus.groovy - groovy-servlet - ${groovy.version} - - - org.codehaus.groovy - groovy-sql - ${groovy.version} - - - org.codehaus.groovy - groovy-swing - ${groovy.version} - - - org.codehaus.groovy - groovy-templates - ${groovy.version} - - - org.codehaus.groovy - groovy-test - ${groovy.version} - - - org.codehaus.groovy - groovy-test-junit5 - ${groovy.version} - - - org.codehaus.groovy - groovy-testng - ${groovy.version} - - - org.codehaus.groovy - groovy-xml - ${groovy.version} - - - com.google.code.gson - gson - ${gson.version} - - - com.h2database - h2 - ${h2.version} - - - org.hamcrest - hamcrest - ${hamcrest.version} - - - org.hamcrest - hamcrest-core - ${hamcrest.version} - - - org.hamcrest - hamcrest-library - ${hamcrest.version} - - - com.hazelcast - hazelcast - ${hazelcast.version} - - - com.hazelcast - hazelcast-client - ${hazelcast.version} - - - com.hazelcast - hazelcast-spring - ${hazelcast.version} - - - com.hazelcast - hazelcast-hibernate52 - ${hazelcast-hibernate5.version} - - - com.hazelcast - hazelcast-hibernate53 - ${hazelcast-hibernate5.version} - - - org.hibernate - hibernate-c3p0 - ${hibernate.version} - - - org.hibernate - hibernate-core - ${hibernate.version} - - - org.hibernate - hibernate-ehcache - ${hibernate.version} - - - org.hibernate - hibernate-entitymanager - ${hibernate.version} - - - org.hibernate - hibernate-envers - ${hibernate.version} - - - org.hibernate - hibernate-hikaricp - ${hibernate.version} - - - org.hibernate - hibernate-java8 - ${hibernate.version} - - - org.hibernate - hibernate-jcache - ${hibernate.version} - - - org.hibernate - hibernate-jpamodelgen - ${hibernate.version} - - - org.hibernate - hibernate-proxool - ${hibernate.version} - - - org.hibernate - hibernate-spatial - ${hibernate.version} - - - org.hibernate - hibernate-testing - ${hibernate.version} - - - org.hibernate - hibernate-vibur - ${hibernate.version} - - - org.hibernate.validator - hibernate-validator - ${hibernate-validator.version} - - - org.hibernate.validator - hibernate-validator-annotation-processor - ${hibernate-validator.version} - - - com.zaxxer - HikariCP - ${hikaricp.version} - - - org.hsqldb - hsqldb - ${hsqldb.version} - - - net.sourceforge.htmlunit - htmlunit - ${htmlunit.version} - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents - httpasyncclient - ${httpasyncclient.version} - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents - fluent-hc - ${httpclient.version} - - - org.apache.httpcomponents - httpclient - ${httpclient.version} - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents - httpclient-cache - ${httpclient.version} - - - org.apache.httpcomponents - httpclient-osgi - ${httpclient.version} - - - org.apache.httpcomponents - httpclient-win - ${httpclient.version} - - - org.apache.httpcomponents - httpmime - ${httpclient.version} - - - org.apache.httpcomponents - httpcore - ${httpcore.version} - - - org.apache.httpcomponents - httpcore-nio - ${httpcore.version} - - - org.infinispan - infinispan-api - ${infinispan.version} - - - org.infinispan - infinispan-cachestore-jdbc - ${infinispan.version} - - - org.infinispan - infinispan-cachestore-jpa - ${infinispan.version} - - - org.infinispan - infinispan-cachestore-remote - ${infinispan.version} - - - org.infinispan - infinispan-cachestore-rest - ${infinispan.version} - - - org.infinispan - infinispan-cachestore-rocksdb - ${infinispan.version} - - - org.infinispan - infinispan-cdi-common - ${infinispan.version} - - - org.infinispan - infinispan-cdi-embedded - ${infinispan.version} - - - org.infinispan - infinispan-cdi-remote - ${infinispan.version} - - - org.infinispan - infinispan-client-hotrod - ${infinispan.version} - - - org.infinispan - infinispan-client-rest - ${infinispan.version} - - - org.infinispan - infinispan-clustered-counter - ${infinispan.version} - - - org.infinispan - infinispan-clustered-lock - ${infinispan.version} - - - org.infinispan - infinispan-commons - ${infinispan.version} - - - org.infinispan - infinispan-component-annotations - ${infinispan.version} - - - org.infinispan - infinispan-core - ${infinispan.version} - - - org.infinispan - infinispan-directory-provider - ${infinispan.version} - - - org.infinispan - infinispan-hibernate-cache-v53 - ${infinispan.version} - - - org.infinispan - infinispan-jboss-marshalling - ${infinispan.version} - - - org.infinispan - infinispan-jcache - ${infinispan.version} - - - org.infinispan - infinispan-jcache-commons - ${infinispan.version} - - - org.infinispan - infinispan-jcache-remote - ${infinispan.version} - - - org.infinispan - infinispan-key-value-store-client - ${infinispan.version} - - - org.infinispan - infinispan-lucene-directory - ${infinispan.version} - - - org.infinispan - infinispan-objectfilter - ${infinispan.version} - - - org.infinispan - infinispan-osgi - ${infinispan.version} - - - org.infinispan - infinispan-persistence-soft-index - ${infinispan.version} - - - org.infinispan - infinispan-query - ${infinispan.version} - - - org.infinispan - infinispan-query-core - ${infinispan.version} - - - org.infinispan - infinispan-query-dsl - ${infinispan.version} - - - org.infinispan - infinispan-remote-query-client - ${infinispan.version} - - - org.infinispan - infinispan-remote-query-server - ${infinispan.version} - - - org.infinispan - infinispan-scripting - ${infinispan.version} - - - org.infinispan - infinispan-server-core - ${infinispan.version} - - - org.infinispan - infinispan-server-hotrod - ${infinispan.version} - - - org.infinispan - infinispan-server-memcached - ${infinispan.version} - - - org.infinispan - infinispan-server-rest - ${infinispan.version} - - - org.infinispan - infinispan-server-router - ${infinispan.version} - - - org.infinispan - infinispan-spring5-common - ${infinispan.version} - - - org.infinispan - infinispan-spring5-embedded - ${infinispan.version} - - - org.infinispan - infinispan-spring5-remote - ${infinispan.version} - - - org.infinispan - infinispan-tasks - ${infinispan.version} - - - org.infinispan - infinispan-tasks-api - ${infinispan.version} - - - org.infinispan - infinispan-tools - ${infinispan.version} - - - org.influxdb - influxdb-java - ${influxdb-java.version} - - - com.sun.activation - jakarta.activation - ${jakarta-activation.version} - - - jakarta.activation - jakarta.activation-api - ${jakarta-activation.version} - - - jakarta.annotation - jakarta.annotation-api - ${jakarta-annotation.version} - - - jakarta.jms - jakarta.jms-api - ${jakarta-jms.version} - - - jakarta.json - jakarta.json-api - ${jakarta-json.version} - - - jakarta.json.bind - jakarta.json.bind-api - ${jakarta-json-bind.version} - - - jakarta.mail - jakarta.mail-api - ${jakarta-mail.version} - - - jakarta.persistence - jakarta.persistence-api - ${jakarta-persistence.version} - - - jakarta.servlet - jakarta.servlet-api - ${jakarta-servlet.version} - - - jakarta.servlet.jsp.jstl - jakarta.servlet.jsp.jstl-api - ${jakarta-servlet-jsp-jstl.version} - - - jakarta.transaction - jakarta.transaction-api - ${jakarta-transaction.version} - - - jakarta.validation - jakarta.validation-api - ${jakarta-validation.version} - - - jakarta.websocket - jakarta.websocket-api - ${jakarta-websocket.version} - - - jakarta.ws.rs - jakarta.ws.rs-api - ${jakarta-ws-rs.version} - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jakarta-xml-bind.version} - - - jakarta.xml.soap - jakarta.xml.soap-api - ${jakarta-xml-soap.version} - - - jakarta.xml.ws - jakarta.xml.ws-api - ${jakarta-xml-ws.version} - - - org.codehaus.janino - commons-compiler - ${janino.version} - - - org.codehaus.janino - commons-compiler-jdk - ${janino.version} - - - org.codehaus.janino - janino - ${janino.version} - - - javax.activation - javax.activation-api - ${javax-activation.version} - - - javax.annotation - javax.annotation-api - ${javax-annotation.version} - - - javax.cache - cache-api - ${javax-cache.version} - - - javax.xml.bind - jaxb-api - ${javax-jaxb.version} - - - javax.xml.ws - jaxws-api - ${javax-jaxws.version} - - - javax.jms - javax.jms-api - ${javax-jms.version} - - - javax.json - javax.json-api - ${javax-json.version} - - - javax.json.bind - javax.json.bind-api - ${javax-jsonb.version} - - - javax.mail - javax.mail-api - ${javax-mail.version} - - - javax.money - money-api - ${javax-money.version} - - - javax.persistence - javax.persistence-api - ${javax-persistence.version} - - - javax.transaction - javax.transaction-api - ${javax-transaction.version} - - - javax.validation - validation-api - ${javax-validation.version} - - - javax.websocket - javax.websocket-api - ${javax-websocket.version} - - - jaxen - jaxen - ${jaxen.version} - - - org.firebirdsql.jdbc - jaybird-jdk17 - ${jaybird.version} - - - org.firebirdsql.jdbc - jaybird-jdk18 - ${jaybird.version} - - - org.jboss.logging - jboss-logging - ${jboss-logging.version} - - - org.jboss - jboss-transaction-spi - ${jboss-transaction-spi.version} - - - org.jdom - jdom2 - ${jdom2.version} - - - redis.clients - jedis - ${jedis.version} - - - org.mortbay.jasper - apache-el - ${jetty-el.version} - - - org.eclipse.jetty.orbit - javax.servlet.jsp - ${jetty-jsp.version} - - - org.eclipse.jetty - jetty-reactive-httpclient - ${jetty-reactive-httpclient.version} - - - com.samskivert - jmustache - ${jmustache.version} - - - org.apache.johnzon - johnzon-core - ${johnzon.version} - - - org.apache.johnzon - johnzon-jaxrs - ${johnzon.version} - - - org.apache.johnzon - johnzon-jsonb - ${johnzon.version} - - - org.apache.johnzon - johnzon-jsonb-extras - ${johnzon.version} - - - org.apache.johnzon - johnzon-jsonschema - ${johnzon.version} - - - org.apache.johnzon - johnzon-mapper - ${johnzon.version} - - - org.apache.johnzon - johnzon-websocket - ${johnzon.version} - - - org.jolokia - jolokia-core - ${jolokia.version} - - - org.jooq - jooq - ${jooq.version} - - - org.jooq - jooq-meta - ${jooq.version} - - - org.jooq - jooq-codegen - ${jooq.version} - - - com.jayway.jsonpath - json-path - ${json-path.version} - - - com.jayway.jsonpath - json-path-assert - ${json-path.version} - - - org.skyscreamer - jsonassert - ${jsonassert.version} - - - javax.servlet - jstl - ${jstl.version} - - - net.sourceforge.jtds - jtds - ${jtds.version} - - - junit - junit - ${junit.version} - - - org.apache.kafka - connect-api - ${kafka.version} - - - org.apache.kafka - connect-basic-auth-extension - ${kafka.version} - - - org.apache.kafka - connect-file - ${kafka.version} - - - org.apache.kafka - connect-json - ${kafka.version} - - - org.apache.kafka - connect-runtime - ${kafka.version} - - - org.apache.kafka - connect-transforms - ${kafka.version} - - - org.apache.kafka - kafka-clients - ${kafka.version} - - - org.apache.kafka - kafka-log4j-appender - ${kafka.version} - - - org.apache.kafka - kafka-streams - ${kafka.version} - - - org.apache.kafka - kafka-streams-scala_2.11 - ${kafka.version} - - - org.apache.kafka - kafka-streams-scala_2.12 - ${kafka.version} - - - org.apache.kafka - kafka-streams-scala_2.13 - ${kafka.version} - - - org.apache.kafka - kafka-streams-test-utils - ${kafka.version} - - - org.apache.kafka - kafka-tools - ${kafka.version} - - - org.apache.kafka - kafka_2.11 - ${kafka.version} - - - org.apache.kafka - kafka_2.12 - ${kafka.version} - - - org.apache.kafka - kafka_2.13 - ${kafka.version} - - - io.lettuce - lettuce-core - ${lettuce.version} - - - org.liquibase - liquibase-core - ${liquibase.version} - - - ch.qos.logback - logback-classic - - - - - org.apache.logging.log4j - log4j-to-slf4j - ${log4j2.version} - - - ch.qos.logback - logback-access - ${logback.version} - - - ch.qos.logback - logback-classic - ${logback.version} - - - ch.qos.logback - logback-core - ${logback.version} - - - org.projectlombok - lombok - ${lombok.version} - - - org.mariadb.jdbc - mariadb-java-client - ${mariadb.version} - - - io.micrometer - micrometer-registry-stackdriver - ${micrometer.version} - - - javax.annotation - javax.annotation-api - - - - - org.jvnet.mimepull - mimepull - ${mimepull.version} - - - org.mockito - mockito-core - ${mockito.version} - - - org.mockito - mockito-inline - ${mockito.version} - - - org.mockito - mockito-junit-jupiter - ${mockito.version} - - - org.mongodb - bson - ${mongodb.version} - - - org.mongodb - mongodb-driver-core - ${mongodb.version} - - - org.mongodb - mongodb-driver-legacy - ${mongodb.version} - - - org.mongodb - mongodb-driver-reactivestreams - ${mongodb.version} - - - org.mongodb - mongodb-driver-sync - ${mongodb.version} - - - com.microsoft.sqlserver - mssql-jdbc - ${mssql-jdbc.version} - - - mysql - mysql-connector-java - ${mysql.version} - - - com.google.protobuf - protobuf-java - - - - - net.sourceforge.nekohtml - nekohtml - ${nekohtml.version} - - - org.neo4j - neo4j-ogm-api - ${neo4j-ogm.version} - - - org.neo4j - neo4j-ogm-bolt-driver - ${neo4j-ogm.version} - - - org.neo4j - neo4j-ogm-bolt-native-types - ${neo4j-ogm.version} - - - org.neo4j - neo4j-ogm-core - ${neo4j-ogm.version} - - - org.neo4j - neo4j-ogm-embedded-driver - ${neo4j-ogm.version} - - - org.neo4j - neo4j-ogm-embedded-native-types - ${neo4j-ogm.version} - - - org.neo4j - neo4j-ogm-http-driver - ${neo4j-ogm.version} - - - io.netty - netty-tcnative-boringssl-static - ${netty-tcnative.version} - - - org.synchronoss.cloud - nio-multipart-parser - ${nio-multipart-parser.version} - - - com.nimbusds - oauth2-oidc-sdk - ${oauth2-oidc-sdk.version} - - - com.oracle.ojdbc - dms - ${ojdbc.version} - - - com.oracle.ojdbc - ojdbc10 - ${ojdbc.version} - - - com.oracle.ojdbc - ojdbc10_g - ${ojdbc.version} - - - com.oracle.ojdbc - ojdbc10dms - ${ojdbc.version} - - - com.oracle.ojdbc - ojdbc10dms_g - ${ojdbc.version} - - - com.oracle.ojdbc - ojdbc8 - ${ojdbc.version} - - - com.oracle.ojdbc - ojdbc8_g - ${ojdbc.version} - - - com.oracle.ojdbc - ojdbc8dms - ${ojdbc.version} - - - com.oracle.ojdbc - ojdbc8dms_g - ${ojdbc.version} - - - com.oracle.ojdbc - ons - ${ojdbc.version} - - - com.oracle.ojdbc - oraclepki - ${ojdbc.version} - - - com.oracle.ojdbc - orai18n - ${ojdbc.version} - - - com.oracle.ojdbc - osdt_cert - ${ojdbc.version} - - - com.oracle.ojdbc - osdt_core - ${ojdbc.version} - - - com.oracle.ojdbc - simplefan - ${ojdbc.version} - - - com.oracle.ojdbc - ucp - ${ojdbc.version} - - - com.oracle.ojdbc - xdb - ${ojdbc.version} - - - com.oracle.ojdbc - xmlparserv2 - ${ojdbc.version} - - - com.squareup.okhttp3 - logging-interceptor - ${okhttp3.version} - - - com.squareup.okhttp3 - mockwebserver - ${okhttp3.version} - - - com.squareup.okhttp3 - okcurl - ${okhttp3.version} - - - com.squareup.okhttp3 - okhttp - ${okhttp3.version} - - - com.squareup.okhttp3 - okhttp-dnsoverhttps - ${okhttp3.version} - - - com.squareup.okhttp3 - okhttp-sse - ${okhttp3.version} - - - com.squareup.okhttp3 - okhttp-testing-support - ${okhttp3.version} - - - com.squareup.okhttp3 - okhttp-tls - ${okhttp3.version} - - - com.squareup.okhttp3 - okhttp-urlconnection - ${okhttp3.version} - - - org.messaginghub - pooled-jms - ${pooled-jms.version} - - - org.postgresql - postgresql - ${postgresql.version} - - - io.prometheus - simpleclient_pushgateway - ${prometheus-pushgateway.version} - - - org.quartz-scheduler - quartz - ${quartz.version} - - - com.mchange - c3p0 - - - com.zaxxer - * - - - - - org.quartz-scheduler - quartz-jobs - ${quartz.version} - - - com.querydsl - querydsl-apt - ${querydsl.version} - - - com.querydsl - querydsl-collections - ${querydsl.version} - - - com.querydsl - querydsl-core - ${querydsl.version} - - - com.querydsl - querydsl-jpa - ${querydsl.version} - - - com.querydsl - querydsl-mongodb - ${querydsl.version} - - - org.mongodb - mongo-java-driver - - - - - com.rabbitmq - amqp-client - ${rabbit-amqp-client.version} - - - org.reactivestreams - reactive-streams - ${reactive-streams.version} - - - io.rest-assured - json-path - ${rest-assured.version} - - - io.rest-assured - json-schema-validator - ${rest-assured.version} - - - io.rest-assured - rest-assured - ${rest-assured.version} - - - io.rest-assured - scala-support - ${rest-assured.version} - - - io.rest-assured - spring-mock-mvc - ${rest-assured.version} - - - io.rest-assured - spring-web-test-client - ${rest-assured.version} - - - io.rest-assured - xml-path - ${rest-assured.version} - - - io.reactivex - rxjava - ${rxjava.version} - - - io.reactivex - rxjava-reactive-streams - ${rxjava-adapter.version} - - - io.reactivex.rxjava2 - rxjava - ${rxjava2.version} - - - org.springframework.boot - spring-boot - ${spring-boot.version} - - - org.springframework.boot - spring-boot-test - ${spring-boot.version} - - - org.springframework.boot - spring-boot-test-autoconfigure - ${spring-boot.version} - - - org.springframework.boot - spring-boot-actuator - ${spring-boot.version} - - - org.springframework.boot - spring-boot-actuator-autoconfigure - ${spring-boot.version} - - - org.springframework.boot - spring-boot-autoconfigure - ${spring-boot.version} - - - org.springframework.boot - spring-boot-autoconfigure-processor - ${spring-boot.version} - - - org.springframework.boot - spring-boot-buildpack-platform - ${spring-boot.version} - - - org.springframework.boot - spring-boot-configuration-metadata - ${spring-boot.version} - - - org.springframework.boot - spring-boot-configuration-processor - ${spring-boot.version} - - - org.springframework.boot - spring-boot-devtools - ${spring-boot.version} - - - org.springframework.boot - spring-boot-jarmode-layertools - ${spring-boot.version} - - - org.springframework.boot - spring-boot-loader - ${spring-boot.version} - - - org.springframework.boot - spring-boot-loader-tools - ${spring-boot.version} - - - org.springframework.boot - spring-boot-properties-migrator - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-activemq - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-actuator - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-amqp - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-aop - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-artemis - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-batch - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-cache - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-cassandra - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-cassandra-reactive - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-couchbase - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-couchbase-reactive - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-elasticsearch - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-jdbc - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-jpa - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-ldap - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-mongodb - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-mongodb-reactive - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-r2dbc - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-redis - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-redis-reactive - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-neo4j - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-rest - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-data-solr - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-freemarker - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-groovy-templates - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-hateoas - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-integration - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-jdbc - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-jersey - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-jetty - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-jooq - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-json - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-jta-atomikos - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-jta-bitronix - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-log4j2 - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-logging - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-mail - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-mustache - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-oauth2-client - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-oauth2-resource-server - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-quartz - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-reactor-netty - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-rsocket - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-security - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-test - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-thymeleaf - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-tomcat - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-undertow - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-validation - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-web - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-webflux - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-websocket - ${spring-boot.version} - - - org.springframework.boot - spring-boot-starter-web-services - ${spring-boot.version} - - - com.sun.xml.messaging.saaj - saaj-impl - ${saaj-impl.version} - - - org.seleniumhq.selenium - selenium-api - ${selenium.version} - - - org.seleniumhq.selenium - selenium-chrome-driver - ${selenium.version} - - - org.seleniumhq.selenium - selenium-edge-driver - ${selenium.version} - - - org.seleniumhq.selenium - selenium-firefox-driver - ${selenium.version} - - - org.seleniumhq.selenium - selenium-ie-driver - ${selenium.version} - - - org.seleniumhq.selenium - selenium-java - ${selenium.version} - - - org.seleniumhq.selenium - selenium-opera-driver - ${selenium.version} - - - org.seleniumhq.selenium - selenium-remote-driver - ${selenium.version} - - - org.seleniumhq.selenium - selenium-safari-driver - ${selenium.version} - - - org.seleniumhq.selenium - selenium-support - ${selenium.version} - - - org.seleniumhq.selenium - htmlunit-driver - ${selenium-htmlunit.version} - - - com.sendgrid - sendgrid-java - ${sendgrid.version} - - - javax.servlet - javax.servlet-api - ${servlet-api.version} - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - - - org.slf4j - jul-to-slf4j - ${slf4j.version} - - - org.slf4j - log4j-over-slf4j - ${slf4j.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.slf4j - slf4j-ext - ${slf4j.version} - - - org.slf4j - slf4j-jcl - ${slf4j.version} - - - org.slf4j - slf4j-jdk14 - ${slf4j.version} - - - org.slf4j - slf4j-log4j12 - ${slf4j.version} - - - org.slf4j - slf4j-nop - ${slf4j.version} - - - org.slf4j - slf4j-simple - ${slf4j.version} - - - org.yaml - snakeyaml - ${snakeyaml.version} - - - org.apache.solr - solr-analysis-extras - ${solr.version} - - - org.apache.solr - solr-analytics - ${solr.version} - - - org.apache.solr - solr-cell - ${solr.version} - - - org.apache.solr - solr-clustering - ${solr.version} - - - org.apache.solr - solr-core - ${solr.version} - - - org.apache.solr - solr-dataimporthandler - ${solr.version} - - - org.apache.solr - solr-dataimporthandler-extras - ${solr.version} - - - org.apache.solr - solr-langid - ${solr.version} - - - org.apache.solr - solr-ltr - ${solr.version} - - - org.apache.solr - solr-solrj - ${solr.version} - - - org.slf4j - jcl-over-slf4j - - - - - org.apache.solr - solr-test-framework - ${solr.version} - - - org.apache.solr - solr-velocity - ${solr.version} - - - org.springframework.amqp - spring-amqp - ${spring-amqp.version} - - - org.springframework.amqp - spring-rabbit - ${spring-amqp.version} - - - org.springframework.amqp - spring-rabbit-junit - ${spring-amqp.version} - - - org.springframework.amqp - spring-rabbit-test - ${spring-amqp.version} - - - org.springframework.batch - spring-batch-core - ${spring-batch.version} - - - org.springframework.batch - spring-batch-infrastructure - ${spring-batch.version} - - - org.springframework.batch - spring-batch-integration - ${spring-batch.version} - - - org.springframework.batch - spring-batch-test - ${spring-batch.version} - - - org.springframework.hateoas - spring-hateoas - ${spring-hateoas.version} - - - org.springframework.kafka - spring-kafka - ${spring-kafka.version} - - - org.springframework.kafka - spring-kafka-test - ${spring-kafka.version} - - - org.springframework.ldap - spring-ldap-core - ${spring-ldap.version} - - - org.springframework.ldap - spring-ldap-core-tiger - ${spring-ldap.version} - - - org.springframework.ldap - spring-ldap-ldif-batch - ${spring-ldap.version} - - - org.springframework.ldap - spring-ldap-ldif-core - ${spring-ldap.version} - - - org.springframework.ldap - spring-ldap-odm - ${spring-ldap.version} - - - org.springframework.ldap - spring-ldap-test - ${spring-ldap.version} - - - org.springframework.restdocs - spring-restdocs-asciidoctor - ${spring-restdocs.version} - - - org.springframework.restdocs - spring-restdocs-core - ${spring-restdocs.version} - - - org.springframework.restdocs - spring-restdocs-mockmvc - ${spring-restdocs.version} - - - org.springframework.restdocs - spring-restdocs-restassured - ${spring-restdocs.version} - - - org.springframework.restdocs - spring-restdocs-webtestclient - ${spring-restdocs.version} - - - org.springframework.retry - spring-retry - ${spring-retry.version} - - - org.springframework.ws - spring-ws-core - ${spring-ws.version} - - - org.springframework.ws - spring-ws-security - ${spring-ws.version} - - - org.springframework.ws - spring-ws-support - ${spring-ws.version} - - - org.springframework.ws - spring-ws-test - ${spring-ws.version} - - - org.springframework.ws - spring-xml - ${spring-ws.version} - - - org.xerial - sqlite-jdbc - ${sqlite-jdbc.version} - - - com.sun.mail - jakarta.mail - ${sun-mail.version} - - - org.thymeleaf - thymeleaf - ${thymeleaf.version} - - - org.thymeleaf - thymeleaf-spring5 - ${thymeleaf.version} - - - com.github.mxab.thymeleaf.extras - thymeleaf-extras-data-attribute - ${thymeleaf-extras-data-attribute.version} - - - org.thymeleaf.extras - thymeleaf-extras-java8time - ${thymeleaf-extras-java8time.version} - - - org.thymeleaf.extras - thymeleaf-extras-springsecurity5 - ${thymeleaf-extras-springsecurity.version} - - - nz.net.ultraq.thymeleaf - thymeleaf-layout-dialect - ${thymeleaf-layout-dialect.version} - - - org.apache.tomcat - tomcat-annotations-api - ${tomcat.version} - - - org.apache.tomcat - tomcat-jdbc - ${tomcat.version} - - - org.apache.tomcat - tomcat-jsp-api - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-core - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-el - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-jasper - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-websocket - ${tomcat.version} - - - com.unboundid - unboundid-ldapsdk - ${unboundid-ldapsdk.version} - - - io.undertow - undertow-core - ${undertow.version} - - - io.undertow - undertow-servlet - ${undertow.version} - - - io.undertow - undertow-websockets-jsr - ${undertow.version} - - - org.webjars - hal-browser - ${webjars-hal-browser.version} - - - org.webjars - webjars-locator-core - ${webjars-locator-core.version} - - - wsdl4j - wsdl4j - ${wsdl4j.version} - - - org.xmlunit - xmlunit-assertj - ${xmlunit2.version} - - - org.xmlunit - xmlunit-core - ${xmlunit2.version} - - - org.xmlunit - xmlunit-legacy - ${xmlunit2.version} - - - org.xmlunit - xmlunit-matchers - ${xmlunit2.version} - - - org.xmlunit - xmlunit-placeholders - ${xmlunit2.version} - - - com.datastax.oss - java-driver-bom - ${cassandra-driver.version} - pom - import - - - io.dropwizard.metrics - metrics-bom - ${dropwizard-metrics.version} - pom - import - - - com.fasterxml.jackson - jackson-bom - ${jackson-bom.version} - pom - import - - - org.glassfish.jersey - jersey-bom - ${jersey.version} - pom - import - - - org.eclipse.jetty - jetty-bom - ${jetty.version} - pom - import - - - org.junit - junit-bom - ${junit-jupiter.version} - pom - import - - - org.jetbrains.kotlin - kotlin-bom - ${kotlin.version} - pom - import - - - org.jetbrains.kotlinx - kotlinx-coroutines-bom - ${kotlin-coroutines.version} - pom - import - - - org.apache.logging.log4j - log4j-bom - ${log4j2.version} - pom - import - - - io.micrometer - micrometer-bom - ${micrometer.version} - pom - import - - - io.netty - netty-bom - ${netty.version} - pom - import - - - io.r2dbc - r2dbc-bom - ${r2dbc-bom.version} - pom - import - - - io.projectreactor - reactor-bom - ${reactor-bom.version} - pom - import - - - io.rsocket - rsocket-bom - ${rsocket.version} - pom - import - - - org.springframework.data - spring-data-releasetrain - ${spring-data-releasetrain.version} - pom - import - - - org.springframework - spring-framework-bom - ${spring-framework.version} - pom - import - - - org.springframework.integration - spring-integration-bom - ${spring-integration.version} - pom - import - - - org.springframework.security - spring-security-bom - ${spring-security.version} - pom - import - - - org.springframework.session - spring-session-bom - ${spring-session-bom.version} - pom - import - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - ${build-helper-maven-plugin.version} - - - org.codehaus.mojo - exec-maven-plugin - ${exec-maven-plugin.version} - - - org.codehaus.mojo - flatten-maven-plugin - ${flatten-maven-plugin.version} - - - org.flywaydb - flyway-maven-plugin - ${flyway.version} - - - pl.project13.maven - git-commit-id-plugin - ${git-commit-id-plugin.version} - - - org.apache.johnzon - johnzon-maven-plugin - ${johnzon.version} - - - org.jooq - jooq-codegen-maven - ${jooq.version} - - - org.jetbrains.kotlin - kotlin-maven-plugin - ${kotlin.version} - - - org.apache.maven.plugins - maven-antrun-plugin - ${maven-antrun-plugin.version} - - - org.apache.maven.plugins - maven-assembly-plugin - ${maven-assembly-plugin.version} - - - org.apache.maven.plugins - maven-clean-plugin - ${maven-clean-plugin.version} - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - - org.apache.maven.plugins - maven-dependency-plugin - ${maven-dependency-plugin.version} - - - org.apache.maven.plugins - maven-deploy-plugin - ${maven-deploy-plugin.version} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${maven-enforcer-plugin.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${maven-failsafe-plugin.version} - - - org.apache.maven.plugins - maven-help-plugin - ${maven-help-plugin.version} - - - org.apache.maven.plugins - maven-install-plugin - ${maven-install-plugin.version} - - - org.apache.maven.plugins - maven-invoker-plugin - ${maven-invoker-plugin.version} - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - org.apache.maven.plugins - maven-resources-plugin - ${maven-resources-plugin.version} - - - org.apache.maven.plugins - maven-shade-plugin - ${maven-shade-plugin.version} - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - org.apache.maven.plugins - maven-war-plugin - ${maven-war-plugin.version} - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - - org.codehaus.mojo - versions-maven-plugin - ${versions-maven-plugin.version} - - - org.codehaus.mojo - xml-maven-plugin - ${xml-maven-plugin.version} - - - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom.sha1 deleted file mode 100644 index d5ed49726..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-dependencies/2.3.0.RELEASE/spring-boot-dependencies-2.3.0.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a42af67dd8f7ca06a86ee1105c7d8831085d538b \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/_remote.repositories deleted file mode 100644 index e63b8987c..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:20 EDT 2024 -spring-boot-dependencies-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom deleted file mode 100644 index d26598d6a..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom +++ /dev/null @@ -1,2951 +0,0 @@ - - - 4.0.0 - org.springframework.boot - spring-boot-dependencies - 3.2.5 - pom - spring-boot-dependencies - Spring Boot Dependencies - https://spring.io/projects/spring-boot - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - - - - - Spring - ask@spring.io - VMware, Inc. - https://www.spring.io - - - - https://github.com/spring-projects/spring-boot - - - 5.18.4 - 2.0.3 - 2.31.2 - 1.9.22 - 3.24.2 - 4.2.1 - 5.16.0 - 3.4.0 - 1.14.13 - 2.6.1.Final - 3.1.8 - 4.17.0 - 1.6.0 - 1.16.1 - 2.10.0 - 3.13.0 - 1.6 - 2.12.0 - 3.4.11 - 1.4.0 - 11.5.9.0 - 1.1.4 - 10.16.1.1 - 4.2.25 - 3.10.8 - 8.10.4 - 9.22.3 - 2.3.32 - 6.0.0 - 4.0.5 - 3.0.1 - 21.4 - 4.0.21 - 2.10.1 - 2.2.224 - 2.2 - 5.3.7 - 6.4.4.Final - 8.0.1.Final - 5.0.1 - 2.7.2 - 2.70.0 - 4.1.5 - 5.2.3 - 4.4.16 - 5.2.4 - 14.0.27.Final - 2.23 - 2.15.4 - 2.1.3 - 2.1.1 - 3.1.0 - 2.1.3 - 3.0.1 - 2.1.3 - 1.1.4 - 3.1.0 - 6.0.0 - 3.0.0 - 2.0.1 - 3.0.2 - 2.1.1 - 3.1.0 - 4.0.2 - 3.0.1 - 4.0.1 - 3.1.12 - 1.1.1 - 1.1 - 2.0.0 - 5.0.4.java11 - 3.5.3.Final - 2.0.6.1 - 5.0.2 - 3.1.6 - 4.0.3 - 12.0.8 - 1.15 - 3.18.14 - 2.9.0 - 2.5.1 - 1.5.1 - 1.3.1 - 4.13.2 - 5.10.2 - 3.6.2 - 1.9.23 - 1.7.3 - 1.6.3 - 6.3.2.RELEASE - 4.24.0 - 2.21.1 - 1.4.14 - 1.18.32 - 3.3.3 - 3.1.0 - 3.6.0 - 3.3.2 - 3.11.0 - 3.6.1 - 3.1.1 - 3.4.1 - 3.1.2 - 3.4.0 - 3.1.1 - 3.6.1 - 3.3.0 - 3.6.3 - 3.3.1 - 3.5.2 - 3.3.1 - 3.1.2 - 3.4.0 - 1.12.5 - 1.2.5 - 5.7.0 - 4.11.2 - 12.4.2.jre11 - 8.3.0 - 0.9.28 - 1.9.22 - 5.19.0 - 4.1.109.Final - 4.12.0 - 1.31.0 - 21.9.0.0 - 1.1.1 - 3.1.5 - 42.6.2 - 0.16.0 - 3.1.3 - 0.5.4 - 2.3.2 - 5.0.0 - 1.0.0.RELEASE - 1.1.4 - 1.0.2.RELEASE - 1.0.6 - 1.0.1.RELEASE - 1.0.5.RELEASE - 1.1.4.RELEASE - 1.0.0.RELEASE - 5.19.0 - 0.14.0 - 1.0.4 - 2023.0.5 - 5.3.2 - 1.1.3 - 3.1.8 - 3.0.3 - 4.14.1 - 4.13.0 - 4.9.3 - 2.0.13 - 2.2 - 3.1.4 - 1.2.4 - 5.1.1 - 2023.1.5 - 6.1.6 - 1.2.6 - 2.2.2 - 6.2.4 - 3.1.4 - 3.2.3 - 1.0.5 - 3.0.1 - 2.0.5 - 6.2.4 - 3.2.2 - 4.0.10 - 3.43.2.0 - 1.19.7 - 3.1.2.RELEASE - 2.0.1 - 3.1.2.RELEASE - 3.3.0 - 10.1.20 - 6.0.11 - 2.3.12.Final - 2.16.2 - 0.55 - 1.6.3 - 1.1.0 - 2.9.1 - 3.0.3 - - - - - org.apache.activemq - activemq-amqp - ${activemq.version} - - - org.apache.activemq - activemq-blueprint - ${activemq.version} - - - org.apache.activemq - activemq-broker - ${activemq.version} - - - org.apache.activemq - activemq-client - ${activemq.version} - - - org.apache.activemq - activemq-client-jakarta - ${activemq.version} - - - org.apache.activemq - activemq-console - ${activemq.version} - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-http - ${activemq.version} - - - org.apache.activemq - activemq-jaas - ${activemq.version} - - - org.apache.activemq - activemq-jdbc-store - ${activemq.version} - - - org.apache.activemq - activemq-jms-pool - ${activemq.version} - - - org.apache.activemq - activemq-kahadb-store - ${activemq.version} - - - org.apache.activemq - activemq-karaf - ${activemq.version} - - - org.apache.activemq - activemq-log4j-appender - ${activemq.version} - - - org.apache.activemq - activemq-mqtt - ${activemq.version} - - - org.apache.activemq - activemq-openwire-generator - ${activemq.version} - - - org.apache.activemq - activemq-openwire-legacy - ${activemq.version} - - - org.apache.activemq - activemq-osgi - ${activemq.version} - - - org.apache.activemq - activemq-partition - ${activemq.version} - - - org.apache.activemq - activemq-pool - ${activemq.version} - - - org.apache.activemq - activemq-ra - ${activemq.version} - - - org.apache.activemq - activemq-run - ${activemq.version} - - - org.apache.activemq - activemq-runtime-config - ${activemq.version} - - - org.apache.activemq - activemq-shiro - ${activemq.version} - - - org.apache.activemq - activemq-spring - ${activemq.version} - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-stomp - ${activemq.version} - - - org.apache.activemq - activemq-web - ${activemq.version} - - - org.eclipse.angus - angus-core - ${angus-mail.version} - - - org.eclipse.angus - angus-mail - ${angus-mail.version} - - - org.eclipse.angus - dsn - ${angus-mail.version} - - - org.eclipse.angus - gimap - ${angus-mail.version} - - - org.eclipse.angus - imap - ${angus-mail.version} - - - org.eclipse.angus - jakarta.mail - ${angus-mail.version} - - - org.eclipse.angus - logging-mailhandler - ${angus-mail.version} - - - org.eclipse.angus - pop3 - ${angus-mail.version} - - - org.eclipse.angus - smtp - ${angus-mail.version} - - - org.apache.activemq - artemis-amqp-protocol - ${artemis.version} - - - org.apache.activemq - artemis-commons - ${artemis.version} - - - org.apache.activemq - artemis-core-client - ${artemis.version} - - - org.apache.activemq - artemis-jakarta-client - ${artemis.version} - - - org.apache.activemq - artemis-jakarta-server - ${artemis.version} - - - org.apache.activemq - artemis-jakarta-service-extensions - ${artemis.version} - - - org.apache.activemq - artemis-jdbc-store - ${artemis.version} - - - org.apache.activemq - artemis-journal - ${artemis.version} - - - org.apache.activemq - artemis-quorum-api - ${artemis.version} - - - org.apache.activemq - artemis-selector - ${artemis.version} - - - org.apache.activemq - artemis-server - ${artemis.version} - - - org.apache.activemq - artemis-service-extensions - ${artemis.version} - - - org.aspectj - aspectjrt - ${aspectj.version} - - - org.aspectj - aspectjtools - ${aspectj.version} - - - org.aspectj - aspectjweaver - ${aspectj.version} - - - org.awaitility - awaitility - ${awaitility.version} - - - org.awaitility - awaitility-groovy - ${awaitility.version} - - - org.awaitility - awaitility-kotlin - ${awaitility.version} - - - org.awaitility - awaitility-scala - ${awaitility.version} - - - net.bytebuddy - byte-buddy - ${byte-buddy.version} - - - net.bytebuddy - byte-buddy-agent - ${byte-buddy.version} - - - org.cache2k - cache2k-api - ${cache2k.version} - - - org.cache2k - cache2k-config - ${cache2k.version} - - - org.cache2k - cache2k-core - ${cache2k.version} - - - org.cache2k - cache2k-jcache - ${cache2k.version} - - - org.cache2k - cache2k-micrometer - ${cache2k.version} - - - org.cache2k - cache2k-spring - ${cache2k.version} - - - com.github.ben-manes.caffeine - caffeine - ${caffeine.version} - - - com.github.ben-manes.caffeine - guava - ${caffeine.version} - - - com.github.ben-manes.caffeine - jcache - ${caffeine.version} - - - com.github.ben-manes.caffeine - simulator - ${caffeine.version} - - - com.datastax.oss - java-driver-core - ${cassandra-driver.version} - - - com.fasterxml - classmate - ${classmate.version} - - - commons-codec - commons-codec - ${commons-codec.version} - - - org.apache.commons - commons-dbcp2 - ${commons-dbcp2.version} - - - commons-logging - commons-logging - - - - - org.apache.commons - commons-lang3 - ${commons-lang3.version} - - - commons-pool - commons-pool - ${commons-pool.version} - - - org.apache.commons - commons-pool2 - ${commons-pool2.version} - - - com.couchbase.client - java-client - ${couchbase-client.version} - - - org.crac - crac - ${crac.version} - - - com.ibm.db2 - jcc - ${db2-jdbc.version} - - - io.spring.gradle - dependency-management-plugin - ${dependency-management-plugin.version} - - - org.apache.derby - derby - ${derby.version} - - - org.apache.derby - derbyclient - ${derby.version} - - - org.apache.derby - derbynet - ${derby.version} - - - org.apache.derby - derbyoptionaltools - ${derby.version} - - - org.apache.derby - derbyshared - ${derby.version} - - - org.apache.derby - derbytools - ${derby.version} - - - org.ehcache - ehcache - ${ehcache3.version} - - - org.ehcache - ehcache - ${ehcache3.version} - jakarta - - - org.ehcache - ehcache-clustered - ${ehcache3.version} - - - org.ehcache - ehcache-transactions - ${ehcache3.version} - - - org.ehcache - ehcache-transactions - ${ehcache3.version} - jakarta - - - org.elasticsearch.client - elasticsearch-rest-client - ${elasticsearch-client.version} - - - commons-logging - commons-logging - - - - - org.elasticsearch.client - elasticsearch-rest-client-sniffer - ${elasticsearch-client.version} - - - commons-logging - commons-logging - - - - - co.elastic.clients - elasticsearch-java - ${elasticsearch-client.version} - - - org.flywaydb - flyway-core - ${flyway.version} - - - org.flywaydb - flyway-database-oracle - ${flyway.version} - - - org.flywaydb - flyway-firebird - ${flyway.version} - - - org.flywaydb - flyway-mysql - ${flyway.version} - - - org.flywaydb - flyway-sqlserver - ${flyway.version} - - - org.freemarker - freemarker - ${freemarker.version} - - - org.glassfish.web - jakarta.servlet.jsp.jstl - ${glassfish-jstl.version} - - - com.graphql-java - graphql-java - ${graphql-java.version} - - - com.google.code.gson - gson - ${gson.version} - - - com.h2database - h2 - ${h2.version} - - - org.hamcrest - hamcrest - ${hamcrest.version} - - - org.hamcrest - hamcrest-core - ${hamcrest.version} - - - org.hamcrest - hamcrest-library - ${hamcrest.version} - - - com.hazelcast - hazelcast - ${hazelcast.version} - - - com.hazelcast - hazelcast-spring - ${hazelcast.version} - - - org.hibernate.orm - hibernate-agroal - ${hibernate.version} - - - org.hibernate.orm - hibernate-ant - ${hibernate.version} - - - org.hibernate.orm - hibernate-c3p0 - ${hibernate.version} - - - org.hibernate.orm - hibernate-community-dialects - ${hibernate.version} - - - org.hibernate.orm - hibernate-core - ${hibernate.version} - - - org.hibernate.orm - hibernate-envers - ${hibernate.version} - - - org.hibernate.orm - hibernate-graalvm - ${hibernate.version} - - - org.hibernate.orm - hibernate-hikaricp - ${hibernate.version} - - - org.hibernate.orm - hibernate-jcache - ${hibernate.version} - - - org.hibernate.orm - hibernate-jpamodelgen - ${hibernate.version} - - - org.hibernate.orm - hibernate-micrometer - ${hibernate.version} - - - org.hibernate.orm - hibernate-proxool - ${hibernate.version} - - - org.hibernate.orm - hibernate-spatial - ${hibernate.version} - - - org.hibernate.orm - hibernate-testing - ${hibernate.version} - - - org.hibernate.orm - hibernate-vibur - ${hibernate.version} - - - org.hibernate.validator - hibernate-validator - ${hibernate-validator.version} - - - org.hibernate.validator - hibernate-validator-annotation-processor - ${hibernate-validator.version} - - - com.zaxxer - HikariCP - ${hikaricp.version} - - - org.hsqldb - hsqldb - ${hsqldb.version} - - - net.sourceforge.htmlunit - htmlunit - ${htmlunit.version} - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents - httpasyncclient - ${httpasyncclient.version} - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents.client5 - httpclient5 - ${httpclient5.version} - - - org.apache.httpcomponents.client5 - httpclient5-cache - ${httpclient5.version} - - - org.apache.httpcomponents.client5 - httpclient5-fluent - ${httpclient5.version} - - - org.apache.httpcomponents.client5 - httpclient5-win - ${httpclient5.version} - - - org.apache.httpcomponents - httpcore - ${httpcore.version} - - - org.apache.httpcomponents - httpcore-nio - ${httpcore.version} - - - org.apache.httpcomponents.core5 - httpcore5 - ${httpcore5.version} - - - org.apache.httpcomponents.core5 - httpcore5-h2 - ${httpcore5.version} - - - org.apache.httpcomponents.core5 - httpcore5-reactive - ${httpcore5.version} - - - org.influxdb - influxdb-java - ${influxdb-java.version} - - - jakarta.activation - jakarta.activation-api - ${jakarta-activation.version} - - - jakarta.annotation - jakarta.annotation-api - ${jakarta-annotation.version} - - - jakarta.jms - jakarta.jms-api - ${jakarta-jms.version} - - - jakarta.json - jakarta.json-api - ${jakarta-json.version} - - - jakarta.json.bind - jakarta.json.bind-api - ${jakarta-json-bind.version} - - - jakarta.mail - jakarta.mail-api - ${jakarta-mail.version} - - - jakarta.management.j2ee - jakarta.management.j2ee-api - ${jakarta-management.version} - - - jakarta.persistence - jakarta.persistence-api - ${jakarta-persistence.version} - - - jakarta.servlet - jakarta.servlet-api - ${jakarta-servlet.version} - - - jakarta.servlet.jsp.jstl - jakarta.servlet.jsp.jstl-api - ${jakarta-servlet-jsp-jstl.version} - - - jakarta.transaction - jakarta.transaction-api - ${jakarta-transaction.version} - - - jakarta.validation - jakarta.validation-api - ${jakarta-validation.version} - - - jakarta.websocket - jakarta.websocket-api - ${jakarta-websocket.version} - - - jakarta.websocket - jakarta.websocket-client-api - ${jakarta-websocket.version} - - - jakarta.ws.rs - jakarta.ws.rs-api - ${jakarta-ws-rs.version} - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jakarta-xml-bind.version} - - - jakarta.xml.soap - jakarta.xml.soap-api - ${jakarta-xml-soap.version} - - - jakarta.xml.ws - jakarta.xml.ws-api - ${jakarta-xml-ws.version} - - - org.codehaus.janino - commons-compiler - ${janino.version} - - - org.codehaus.janino - commons-compiler-jdk - ${janino.version} - - - org.codehaus.janino - janino - ${janino.version} - - - javax.cache - cache-api - ${javax-cache.version} - - - javax.money - money-api - ${javax-money.version} - - - jaxen - jaxen - ${jaxen.version} - - - org.firebirdsql.jdbc - jaybird - ${jaybird.version} - - - org.jboss.logging - jboss-logging - ${jboss-logging.version} - - - org.jdom - jdom2 - ${jdom2.version} - - - redis.clients - jedis - ${jedis.version} - - - org.eclipse.jetty - jetty-reactive-httpclient - ${jetty-reactive-httpclient.version} - - - com.samskivert - jmustache - ${jmustache.version} - - - org.jooq - jooq - ${jooq.version} - - - org.jooq - jooq-codegen - ${jooq.version} - - - org.jooq - jooq-kotlin - ${jooq.version} - - - org.jooq - jooq-meta - ${jooq.version} - - - com.jayway.jsonpath - json-path - ${json-path.version} - - - com.jayway.jsonpath - json-path-assert - ${json-path.version} - - - net.minidev - json-smart - ${json-smart.version} - - - org.skyscreamer - jsonassert - ${jsonassert.version} - - - net.sourceforge.jtds - jtds - ${jtds.version} - - - junit - junit - ${junit.version} - - - org.apache.kafka - connect - ${kafka.version} - - - org.apache.kafka - connect-api - ${kafka.version} - - - org.apache.kafka - connect-basic-auth-extension - ${kafka.version} - - - org.apache.kafka - connect-file - ${kafka.version} - - - org.apache.kafka - connect-json - ${kafka.version} - - - org.apache.kafka - connect-mirror - ${kafka.version} - - - org.apache.kafka - connect-mirror-client - ${kafka.version} - - - org.apache.kafka - connect-runtime - ${kafka.version} - - - org.apache.kafka - connect-transforms - ${kafka.version} - - - org.apache.kafka - generator - ${kafka.version} - - - org.apache.kafka - kafka-clients - ${kafka.version} - - - org.apache.kafka - kafka-clients - ${kafka.version} - test - - - org.apache.kafka - kafka-log4j-appender - ${kafka.version} - - - org.apache.kafka - kafka-metadata - ${kafka.version} - - - org.apache.kafka - kafka-raft - ${kafka.version} - - - org.apache.kafka - kafka-server-common - ${kafka.version} - - - org.apache.kafka - kafka-server-common - ${kafka.version} - test - - - org.apache.kafka - kafka-shell - ${kafka.version} - - - org.apache.kafka - kafka-storage - ${kafka.version} - - - org.apache.kafka - kafka-storage-api - ${kafka.version} - - - org.apache.kafka - kafka-streams - ${kafka.version} - - - org.apache.kafka - kafka-streams-scala_2.12 - ${kafka.version} - - - org.apache.kafka - kafka-streams-scala_2.13 - ${kafka.version} - - - org.apache.kafka - kafka-streams-test-utils - ${kafka.version} - - - org.apache.kafka - kafka-tools - ${kafka.version} - - - org.apache.kafka - kafka_2.12 - ${kafka.version} - - - org.apache.kafka - kafka_2.12 - ${kafka.version} - test - - - org.apache.kafka - kafka_2.13 - ${kafka.version} - - - org.apache.kafka - kafka_2.13 - ${kafka.version} - test - - - org.apache.kafka - trogdor - ${kafka.version} - - - io.lettuce - lettuce-core - ${lettuce.version} - - - org.liquibase - liquibase-cdi - ${liquibase.version} - - - org.liquibase - liquibase-core - ${liquibase.version} - - - ch.qos.logback - logback-access - ${logback.version} - - - ch.qos.logback - logback-classic - ${logback.version} - - - ch.qos.logback - logback-core - ${logback.version} - - - org.projectlombok - lombok - ${lombok.version} - - - org.mariadb.jdbc - mariadb-java-client - ${mariadb.version} - - - io.micrometer - micrometer-registry-stackdriver - ${micrometer.version} - - - javax.annotation - javax.annotation-api - - - - - org.mongodb - bson - ${mongodb.version} - - - org.mongodb - bson-record-codec - ${mongodb.version} - - - org.mongodb - mongodb-driver-core - ${mongodb.version} - - - org.mongodb - mongodb-driver-legacy - ${mongodb.version} - - - org.mongodb - mongodb-driver-reactivestreams - ${mongodb.version} - - - org.mongodb - mongodb-driver-sync - ${mongodb.version} - - - com.microsoft.sqlserver - mssql-jdbc - ${mssql-jdbc.version} - - - com.mysql - mysql-connector-j - ${mysql.version} - - - com.google.protobuf - protobuf-java - - - - - net.sourceforge.nekohtml - nekohtml - ${nekohtml.version} - - - org.neo4j.driver - neo4j-java-driver - ${neo4j-java-driver.version} - - - com.oracle.database.r2dbc - oracle-r2dbc - ${oracle-r2dbc.version} - - - org.messaginghub - pooled-jms - ${pooled-jms.version} - - - org.postgresql - postgresql - ${postgresql.version} - - - org.apache.pulsar - bouncy-castle-bc - ${pulsar.version} - - - org.apache.pulsar - bouncy-castle-bcfips - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-1x-base - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-1x - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-2x-shaded - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-admin-api - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-admin-original - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-admin - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-all - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-api - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-auth-athenz - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-auth-sasl - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-messagecrypto-bc - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-original - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-tools-api - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-tools - ${pulsar.version} - - - org.apache.pulsar - pulsar-client - ${pulsar.version} - - - org.apache.pulsar - pulsar-common - ${pulsar.version} - - - org.apache.pulsar - pulsar-config-validation - ${pulsar.version} - - - org.apache.pulsar - pulsar-functions-api - ${pulsar.version} - - - org.apache.pulsar - pulsar-functions-proto - ${pulsar.version} - - - org.apache.pulsar - pulsar-functions-utils - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-aerospike - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-alluxio - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-aws - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-batch-data-generator - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-batch-discovery-triggerers - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-canal - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-cassandra - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-common - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-core - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-data-generator - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-debezium-core - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-debezium-mongodb - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-debezium-mssql - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-debezium-mysql - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-debezium-oracle - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-debezium-postgres - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-debezium - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-dynamodb - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-elastic-search - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-file - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-flume - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-hbase - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-hdfs2 - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-hdfs3 - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-http - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-influxdb - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-jdbc-clickhouse - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-jdbc-core - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-jdbc-mariadb - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-jdbc-openmldb - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-jdbc-postgres - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-jdbc-sqlite - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-jdbc - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-kafka-connect-adaptor-nar - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-kafka-connect-adaptor - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-kafka - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-kinesis - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-mongo - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-netty - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-nsq - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-rabbitmq - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-redis - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-solr - ${pulsar.version} - - - org.apache.pulsar - pulsar-io-twitter - ${pulsar.version} - - - org.apache.pulsar - pulsar-io - ${pulsar.version} - - - org.apache.pulsar - pulsar-metadata - ${pulsar.version} - - - org.apache.pulsar - pulsar-presto-connector-original - ${pulsar.version} - - - org.apache.pulsar - pulsar-presto-connector - ${pulsar.version} - - - org.apache.pulsar - pulsar-sql - ${pulsar.version} - - - org.apache.pulsar - pulsar-transaction-common - ${pulsar.version} - - - org.apache.pulsar - pulsar-websocket - ${pulsar.version} - - - org.apache.pulsar - pulsar-client-reactive-adapter - ${pulsar-reactive.version} - - - org.apache.pulsar - pulsar-client-reactive-api - ${pulsar-reactive.version} - - - org.apache.pulsar - pulsar-client-reactive-jackson - ${pulsar-reactive.version} - - - org.apache.pulsar - pulsar-client-reactive-producer-cache-caffeine-shaded - ${pulsar-reactive.version} - - - org.apache.pulsar - pulsar-client-reactive-producer-cache-caffeine - ${pulsar-reactive.version} - - - org.quartz-scheduler - quartz - ${quartz.version} - - - com.mchange - c3p0 - - - com.zaxxer - * - - - - - org.quartz-scheduler - quartz-jobs - ${quartz.version} - - - io.r2dbc - r2dbc-h2 - ${r2dbc-h2.version} - - - org.mariadb - r2dbc-mariadb - ${r2dbc-mariadb.version} - - - io.r2dbc - r2dbc-mssql - ${r2dbc-mssql.version} - - - io.asyncer - r2dbc-mysql - ${r2dbc-mysql.version} - - - io.r2dbc - r2dbc-pool - ${r2dbc-pool.version} - - - org.postgresql - r2dbc-postgresql - ${r2dbc-postgresql.version} - - - io.r2dbc - r2dbc-proxy - ${r2dbc-proxy.version} - - - io.r2dbc - r2dbc-spi - ${r2dbc-spi.version} - - - com.rabbitmq - amqp-client - ${rabbit-amqp-client.version} - - - com.rabbitmq - stream-client - ${rabbit-stream-client.version} - - - org.reactivestreams - reactive-streams - ${reactive-streams.version} - - - io.reactivex.rxjava3 - rxjava - ${rxjava3.version} - - - org.springframework.boot - spring-boot - 3.2.5 - - - org.springframework.boot - spring-boot-test - 3.2.5 - - - org.springframework.boot - spring-boot-test-autoconfigure - 3.2.5 - - - org.springframework.boot - spring-boot-testcontainers - 3.2.5 - - - org.springframework.boot - spring-boot-actuator - 3.2.5 - - - org.springframework.boot - spring-boot-actuator-autoconfigure - 3.2.5 - - - org.springframework.boot - spring-boot-autoconfigure - 3.2.5 - - - org.springframework.boot - spring-boot-autoconfigure-processor - 3.2.5 - - - org.springframework.boot - spring-boot-buildpack-platform - 3.2.5 - - - org.springframework.boot - spring-boot-configuration-metadata - 3.2.5 - - - org.springframework.boot - spring-boot-configuration-processor - 3.2.5 - - - org.springframework.boot - spring-boot-devtools - 3.2.5 - - - org.springframework.boot - spring-boot-docker-compose - 3.2.5 - - - org.springframework.boot - spring-boot-jarmode-layertools - 3.2.5 - - - org.springframework.boot - spring-boot-loader - 3.2.5 - - - org.springframework.boot - spring-boot-loader-classic - 3.2.5 - - - org.springframework.boot - spring-boot-loader-tools - 3.2.5 - - - org.springframework.boot - spring-boot-properties-migrator - 3.2.5 - - - org.springframework.boot - spring-boot-starter - 3.2.5 - - - org.springframework.boot - spring-boot-starter-activemq - 3.2.5 - - - org.springframework.boot - spring-boot-starter-actuator - 3.2.5 - - - org.springframework.boot - spring-boot-starter-amqp - 3.2.5 - - - org.springframework.boot - spring-boot-starter-aop - 3.2.5 - - - org.springframework.boot - spring-boot-starter-artemis - 3.2.5 - - - org.springframework.boot - spring-boot-starter-batch - 3.2.5 - - - org.springframework.boot - spring-boot-starter-cache - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-cassandra - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-cassandra-reactive - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-couchbase - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-couchbase-reactive - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-elasticsearch - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-jdbc - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-jpa - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-ldap - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-mongodb - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-mongodb-reactive - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-r2dbc - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-redis - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-redis-reactive - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-neo4j - 3.2.5 - - - org.springframework.boot - spring-boot-starter-data-rest - 3.2.5 - - - org.springframework.boot - spring-boot-starter-freemarker - 3.2.5 - - - org.springframework.boot - spring-boot-starter-graphql - 3.2.5 - - - org.springframework.boot - spring-boot-starter-groovy-templates - 3.2.5 - - - org.springframework.boot - spring-boot-starter-hateoas - 3.2.5 - - - org.springframework.boot - spring-boot-starter-integration - 3.2.5 - - - org.springframework.boot - spring-boot-starter-jdbc - 3.2.5 - - - org.springframework.boot - spring-boot-starter-jersey - 3.2.5 - - - org.springframework.boot - spring-boot-starter-jetty - 3.2.5 - - - org.springframework.boot - spring-boot-starter-jooq - 3.2.5 - - - org.springframework.boot - spring-boot-starter-json - 3.2.5 - - - org.springframework.boot - spring-boot-starter-log4j2 - 3.2.5 - - - org.springframework.boot - spring-boot-starter-logging - 3.2.5 - - - org.springframework.boot - spring-boot-starter-mail - 3.2.5 - - - org.springframework.boot - spring-boot-starter-mustache - 3.2.5 - - - org.springframework.boot - spring-boot-starter-oauth2-authorization-server - 3.2.5 - - - org.springframework.boot - spring-boot-starter-oauth2-client - 3.2.5 - - - org.springframework.boot - spring-boot-starter-oauth2-resource-server - 3.2.5 - - - org.springframework.boot - spring-boot-starter-pulsar - 3.2.5 - - - org.springframework.boot - spring-boot-starter-pulsar-reactive - 3.2.5 - - - org.springframework.boot - spring-boot-starter-quartz - 3.2.5 - - - org.springframework.boot - spring-boot-starter-reactor-netty - 3.2.5 - - - org.springframework.boot - spring-boot-starter-rsocket - 3.2.5 - - - org.springframework.boot - spring-boot-starter-security - 3.2.5 - - - org.springframework.boot - spring-boot-starter-test - 3.2.5 - - - org.springframework.boot - spring-boot-starter-thymeleaf - 3.2.5 - - - org.springframework.boot - spring-boot-starter-tomcat - 3.2.5 - - - org.springframework.boot - spring-boot-starter-undertow - 3.2.5 - - - org.springframework.boot - spring-boot-starter-validation - 3.2.5 - - - org.springframework.boot - spring-boot-starter-web - 3.2.5 - - - org.springframework.boot - spring-boot-starter-webflux - 3.2.5 - - - org.springframework.boot - spring-boot-starter-websocket - 3.2.5 - - - org.springframework.boot - spring-boot-starter-web-services - 3.2.5 - - - com.sun.xml.messaging.saaj - saaj-impl - ${saaj-impl.version} - - - org.seleniumhq.selenium - htmlunit-driver - ${selenium-htmlunit.version} - - - com.sendgrid - sendgrid-java - ${sendgrid.version} - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - - - org.slf4j - jul-to-slf4j - ${slf4j.version} - - - org.slf4j - log4j-over-slf4j - ${slf4j.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.slf4j - slf4j-ext - ${slf4j.version} - - - org.slf4j - slf4j-jdk-platform-logging - ${slf4j.version} - - - org.slf4j - slf4j-jdk14 - ${slf4j.version} - - - org.slf4j - slf4j-log4j12 - ${slf4j.version} - - - org.slf4j - slf4j-nop - ${slf4j.version} - - - org.slf4j - slf4j-reload4j - ${slf4j.version} - - - org.slf4j - slf4j-simple - ${slf4j.version} - - - org.yaml - snakeyaml - ${snakeyaml.version} - - - org.springframework.security - spring-security-oauth2-authorization-server - ${spring-authorization-server.version} - - - org.springframework.graphql - spring-graphql - ${spring-graphql.version} - - - org.springframework.graphql - spring-graphql-test - ${spring-graphql.version} - - - org.springframework.hateoas - spring-hateoas - ${spring-hateoas.version} - - - org.springframework.kafka - spring-kafka - ${spring-kafka.version} - - - org.springframework.kafka - spring-kafka-test - ${spring-kafka.version} - - - org.springframework.ldap - spring-ldap-core - ${spring-ldap.version} - - - org.springframework.ldap - spring-ldap-ldif-core - ${spring-ldap.version} - - - org.springframework.ldap - spring-ldap-odm - ${spring-ldap.version} - - - org.springframework.ldap - spring-ldap-test - ${spring-ldap.version} - - - org.springframework.retry - spring-retry - ${spring-retry.version} - - - org.xerial - sqlite-jdbc - ${sqlite-jdbc.version} - - - org.thymeleaf - thymeleaf - ${thymeleaf.version} - - - org.thymeleaf - thymeleaf-spring6 - ${thymeleaf.version} - - - com.github.mxab.thymeleaf.extras - thymeleaf-extras-data-attribute - ${thymeleaf-extras-data-attribute.version} - - - org.thymeleaf.extras - thymeleaf-extras-springsecurity6 - ${thymeleaf-extras-springsecurity.version} - - - nz.net.ultraq.thymeleaf - thymeleaf-layout-dialect - ${thymeleaf-layout-dialect.version} - - - org.apache.tomcat - tomcat-annotations-api - ${tomcat.version} - - - org.apache.tomcat - tomcat-jdbc - ${tomcat.version} - - - org.apache.tomcat - tomcat-jsp-api - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-core - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-el - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-jasper - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-websocket - ${tomcat.version} - - - com.unboundid - unboundid-ldapsdk - ${unboundid-ldapsdk.version} - - - io.undertow - undertow-core - ${undertow.version} - - - io.undertow - undertow-servlet - ${undertow.version} - - - io.undertow - undertow-websockets-jsr - ${undertow.version} - - - org.webjars - webjars-locator-core - ${webjars-locator-core.version} - - - wsdl4j - wsdl4j - ${wsdl4j.version} - - - org.xmlunit - xmlunit-assertj - ${xmlunit2.version} - - - org.xmlunit - xmlunit-assertj3 - ${xmlunit2.version} - - - org.xmlunit - xmlunit-core - ${xmlunit2.version} - - - org.xmlunit - xmlunit-jakarta-jaxb-impl - ${xmlunit2.version} - - - org.xmlunit - xmlunit-legacy - ${xmlunit2.version} - - - org.xmlunit - xmlunit-matchers - ${xmlunit2.version} - - - org.xmlunit - xmlunit-placeholders - ${xmlunit2.version} - - - org.eclipse - yasson - ${yasson.version} - - - org.assertj - assertj-bom - ${assertj.version} - pom - import - - - io.zipkin.brave - brave-bom - ${brave.version} - pom - import - - - com.datastax.oss - java-driver-bom - ${cassandra-driver.version} - pom - import - - - io.dropwizard.metrics - metrics-bom - ${dropwizard-metrics.version} - pom - import - - - org.glassfish.jaxb - jaxb-bom - ${glassfish-jaxb.version} - pom - import - - - org.apache.groovy - groovy-bom - ${groovy.version} - pom - import - - - org.infinispan - infinispan-bom - ${infinispan.version} - pom - import - - - com.fasterxml.jackson - jackson-bom - ${jackson-bom.version} - pom - import - - - org.glassfish.jersey - jersey-bom - ${jersey.version} - pom - import - - - org.eclipse.jetty.ee10 - jetty-ee10-bom - ${jetty.version} - pom - import - - - org.eclipse.jetty - jetty-bom - ${jetty.version} - pom - import - - - org.junit - junit-bom - ${junit-jupiter.version} - pom - import - - - org.jetbrains.kotlin - kotlin-bom - ${kotlin.version} - pom - import - - - org.jetbrains.kotlinx - kotlinx-coroutines-bom - ${kotlin-coroutines.version} - pom - import - - - org.jetbrains.kotlinx - kotlinx-serialization-bom - ${kotlin-serialization.version} - pom - import - - - org.apache.logging.log4j - log4j-bom - ${log4j2.version} - pom - import - - - io.micrometer - micrometer-bom - ${micrometer.version} - pom - import - - - io.micrometer - micrometer-tracing-bom - ${micrometer-tracing.version} - pom - import - - - org.mockito - mockito-bom - ${mockito.version} - pom - import - - - io.netty - netty-bom - ${netty.version} - pom - import - - - com.squareup.okhttp3 - okhttp-bom - ${okhttp.version} - pom - import - - - io.opentelemetry - opentelemetry-bom - ${opentelemetry.version} - pom - import - - - com.oracle.database.jdbc - ojdbc-bom - ${oracle-database.version} - pom - import - - - io.prometheus - simpleclient_bom - ${prometheus-client.version} - pom - import - - - com.querydsl - querydsl-bom - ${querydsl.version} - pom - import - - - io.projectreactor - reactor-bom - ${reactor-bom.version} - pom - import - - - io.rest-assured - rest-assured-bom - ${rest-assured.version} - pom - import - - - io.rsocket - rsocket-bom - ${rsocket.version} - pom - import - - - org.seleniumhq.selenium - selenium-bom - ${selenium.version} - pom - import - - - org.springframework.amqp - spring-amqp-bom - ${spring-amqp.version} - pom - import - - - org.springframework.batch - spring-batch-bom - ${spring-batch.version} - pom - import - - - org.springframework.data - spring-data-bom - ${spring-data-bom.version} - pom - import - - - org.springframework - spring-framework-bom - ${spring-framework.version} - pom - import - - - org.springframework.integration - spring-integration-bom - ${spring-integration.version} - pom - import - - - org.springframework.pulsar - spring-pulsar-bom - ${spring-pulsar.version} - pom - import - - - org.springframework.restdocs - spring-restdocs-bom - ${spring-restdocs.version} - pom - import - - - org.springframework.security - spring-security-bom - ${spring-security.version} - pom - import - - - org.springframework.session - spring-session-bom - ${spring-session.version} - pom - import - - - org.springframework.ws - spring-ws-bom - ${spring-ws.version} - pom - import - - - org.testcontainers - testcontainers-bom - ${testcontainers.version} - pom - import - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - ${build-helper-maven-plugin.version} - - - org.flywaydb - flyway-maven-plugin - ${flyway.version} - - - io.github.git-commit-id - git-commit-id-maven-plugin - ${git-commit-id-maven-plugin.version} - - - org.jooq - jooq-codegen-maven - ${jooq.version} - - - org.jetbrains.kotlin - kotlin-maven-plugin - ${kotlin.version} - - - org.liquibase - liquibase-maven-plugin - ${liquibase.version} - - - org.apache.maven.plugins - maven-antrun-plugin - ${maven-antrun-plugin.version} - - - org.apache.maven.plugins - maven-assembly-plugin - ${maven-assembly-plugin.version} - - - org.apache.maven.plugins - maven-clean-plugin - ${maven-clean-plugin.version} - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - - org.apache.maven.plugins - maven-dependency-plugin - ${maven-dependency-plugin.version} - - - org.apache.maven.plugins - maven-deploy-plugin - ${maven-deploy-plugin.version} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${maven-enforcer-plugin.version} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${maven-failsafe-plugin.version} - - - org.apache.maven.plugins - maven-help-plugin - ${maven-help-plugin.version} - - - org.apache.maven.plugins - maven-install-plugin - ${maven-install-plugin.version} - - - org.apache.maven.plugins - maven-invoker-plugin - ${maven-invoker-plugin.version} - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - org.apache.maven.plugins - maven-resources-plugin - ${maven-resources-plugin.version} - - - org.apache.maven.plugins - maven-shade-plugin - ${maven-shade-plugin.version} - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - org.apache.maven.plugins - maven-war-plugin - ${maven-war-plugin.version} - - - org.graalvm.buildtools - native-maven-plugin - ${native-build-tools-plugin.version} - - - org.springframework.boot - spring-boot-maven-plugin - 3.2.5 - - - org.codehaus.mojo - versions-maven-plugin - ${versions-maven-plugin.version} - - - org.codehaus.mojo - xml-maven-plugin - ${xml-maven-plugin.version} - - - - - diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.lastUpdated b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.lastUpdated deleted file mode 100644 index ea1ac695e..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.lastUpdated +++ /dev/null @@ -1,5 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:20 EDT 2024 -http\://0.0.0.0/.error=Could not transfer artifact org.springframework.boot\:spring-boot-dependencies\:pom\:3.2.5 from/to maven-default-http-blocker (http\://0.0.0.0/)\: Blocked mirror for repositories\: [jboss-ga-repository (http\://maven.repository.redhat.com/techpreview/all, default, releases), jboss-public-repository (http\://repository.jboss.org/nexus/content/repositories/public/, default, releases), fusesource (http\://repo.fusesource.com/nexus/content/groups/public/, default, releases), redhat-ga-repository (http\://maven.repository.redhat.com/ga/, default, releases)] -@default-maven-default-http-blocker-http\://0.0.0.0/.lastUpdated=1721139799066 -https\://repo1.maven.org/maven2/.lastUpdated=1721139800172 diff --git a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.sha1 b/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.sha1 deleted file mode 100644 index 5b679e7f7..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-dependencies/3.2.5/spring-boot-dependencies-3.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e3401e488de7f6b0849f7cfe3a2877cef1c1f6b4 \ No newline at end of file diff --git a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/_remote.repositories b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/_remote.repositories deleted file mode 100644 index 02adbf7f3..000000000 --- a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Tue Jul 16 10:23:44 EDT 2024 -spring-boot-maven-plugin-3.2.5.jar>central= -spring-boot-maven-plugin-3.2.5.pom>central= diff --git a/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar b/code/arachne/org/springframework/boot/spring-boot-maven-plugin/3.2.5/spring-boot-maven-plugin-3.2.5.jar deleted file mode 100644 index 0feb86e9fb3cb80f3ae9f096c4efa713645459e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134585 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